File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -500,7 +500,9 @@ animated_java.misc.failed_to_export.button: Ok
500500animated_java.format_category.animated_java : Animated Java
501501
502502# Model Manager Warnings
503+ animated_java.block_model_manager.fluid_warning : Fluids don't render in Block Displays.
503504animated_java.block_model_manager.mob_head_warning : Mob Heads don't render in Block Displays. Use an Item Display instead.
505+ animated_java.block_model_manager.facing_warning : The "facing" blockstate key is not supported in Block Displays.
504506
505507# Project Errors
506508animated_java.error.blueprint_export_path_doesnt_exist.title : Blueprint Export Path Doesn't Exist
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ const LOADER = new THREE.TextureLoader()
2323const BLOCK_MODEL_CACHE = new Map < string , BlockModelMesh > ( )
2424
2525const BLACKLISTED_BLOCKS = new Map ( [
26- [ 'water' , "Fluids are don't render in Block Displays." ] ,
27- [ 'lava' , "Fluids are don't render in Block Displays." ] ,
26+ [ 'water' , translate ( 'block_model_manager.fluid_warning' ) ] ,
27+ [ 'lava' , translate ( 'block_model_manager.fluid_warning' ) ] ,
2828
2929 [ 'player_head' , translate ( 'block_model_manager.mob_head_warning' ) ] ,
3030 [ 'player_wall_head' , translate ( 'block_model_manager.mob_head_warning' ) ] ,
You canβt perform that action at this time.
0 commit comments