File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 4.0.5]
4
+ - Set alpha to ` 2 ` in ` OverlayToTranslateConverter `
5
+ - Auto publish to npm
6
+
3
7
## [ 4.0.4]
4
8
- Auto publish to npm
5
9
Original file line number Diff line number Diff line change 2
2
"name" : " @ozelot379/convert-minecraft-java-texture-to-bedrock-api" ,
3
3
"type" : " module" ,
4
4
"productName" : " ConvertJavaTextureToBedrockApi" ,
5
- "version" : " 4.0.4 " ,
5
+ "version" : " 4.0.5 " ,
6
6
"description" : " API for convert Minecraft Java texture packs to Bedrock texture packs" ,
7
7
"keywords" : [
8
8
" Minecraft" ,
23
23
},
24
24
"homepage" : " https://github.com/ozelot379/ConvertJavaTextureToBedrockApi#readme" ,
25
25
"dependencies" : {
26
- "@ozelot379/convert-base-api" : " 1.0.3 " ,
26
+ "@ozelot379/convert-base-api" : " 1.0.5 " ,
27
27
"uuid" : " 3.4.0"
28
28
},
29
29
"devDependencies" : {},
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class OverlayToTranslateConverter extends AbstractConverter {
28
28
image . bitmap . data [ idx ] = image_overlay . bitmap . data [ idx ] ;
29
29
image . bitmap . data [ idx + 1 ] = image_overlay . bitmap . data [ idx + 1 ] ;
30
30
image . bitmap . data [ idx + 2 ] = image_overlay . bitmap . data [ idx + 2 ] ;
31
- image . bitmap . data [ idx + 3 ] = Math . min ( 1 , image_overlay . bitmap . data [ idx + 3 ] ) ;
31
+ image . bitmap . data [ idx + 3 ] = 2 ;
32
32
}
33
33
} ) ;
34
34
You can’t perform that action at this time.
0 commit comments