-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add redstone conductivity block component
- Loading branch information
Showing
2 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
source/behavior/blocks/format/components/redstone_conductivity.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"$id": "blockception.minecraft.behavior.blocks.minecraft.redstone_conductivity", | ||
"title": "Redstone Conductivity", | ||
"description": "The basic redstone properties of a block; if the component is not provided the default values are used. Requires the Upcoming Creator Features experiment.", | ||
"type": "object", | ||
"additionalProperties": false, | ||
"required": [ ], | ||
"properties": { | ||
"allows_wire_to_step_down": { | ||
"title": "Allows Wire To Step Down", | ||
"description": "Specifies if redstone wire can stair-step downward on the block.", | ||
"type": "boolean", | ||
"default": true | ||
}, | ||
"redstone_conductor": { | ||
"title": "Redstone Conductor", | ||
"description": "Specifies if the block can be powered by redstone.", | ||
"type": "boolean", | ||
"default": false | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters