* - Fix typo "torse" -> "torso"

* - Added "main_hand" as an equipment location

* - Added support for "beta" version of script modules

* - Update point lights to local light

* - Added precipitation_interactions

* - Added control flags field to more goals

* - Update fire_resistant to not accept direct values

* - Added swing_duration component

* - Added emissive block rendering

* - Added emit_vibrations field to use_modifiers

* - Added underwater ambient sounds
- Added chance field to ambient sound addition

* - Added alpha_masked_tint

* - Added apply_knockback_to_blocking_targets field to projectile
This commit is contained in:
Xterionix
2025-10-15 12:51:49 -05:00
committed by GitHub
parent cbd0262612
commit 6d9e384781
19 changed files with 168 additions and 57 deletions

View File

@@ -25,6 +25,12 @@
"type": "object",
"additionalProperties": false,
"properties": {
"alpha_masked_tint": {
"title": "Alpha Masked Tint",
"description": "Should the tint be multiplied by the alpha channel of texture (similar to grass_block's sides)?",
"type": "boolean",
"default": false
},
"ambient_occlusion": {
"title": "Ambient Occlusion",
"description": "Should this material have ambient occlusion applied when lighting? If true, shadows will be created around and underneath the block.",
@@ -39,6 +45,12 @@
}
]
},
"emissive": {
"title": "Emissive",
"description": "[Experimental] Should this material be rendered as emissive",
"type": "boolean",
"default": false
},
"face_dimming": {
"title": "Face Dimming",
"type": "boolean",

View File

@@ -0,0 +1,16 @@
{
"$id": "blockception.minecraft.behavior.blocks.minecraft.precipitation_interactions",
"title": "Precipitation Interactions",
"description": "Component that determines how the block will interact with rain and snow",
"type": "object",
"additionalProperties": false,
"required": [ "precipitation_behavior" ],
"properties": {
"precipitation_behavior": {
"title": "Precipitation Behavior",
"description": "What behavior should the block have.",
"type": "string",
"enum": [ "obstruct_rain", "obstruct_rain_accumulate_snow", "none" ]
}
}
}

View File

@@ -34,6 +34,7 @@
"minecraft:material_instances": { "$ref": "./components/material_instances.json" },
"minecraft:movable": { "$ref": "./components/movable.json" },
"minecraft:placement_filter": { "$ref": "./components/placement_filter.json" },
"minecraft:precipitation_interactions": { "$ref": "./components/precipitation_interactions.json" },
"minecraft:random_offset": { "$ref": "./components/random_offset.json" },
"minecraft:redstone_conductivity": { "$ref": "./components/redstone_conductivity.json" },
"minecraft:redstone_producer": { "$ref": "./components/redstone_producer.json" },