Minecraft:Bedrock Edition Preview 1.21.100.21: Difference between revisions
More actions
imported>ProBot m Bot: Adding ru:Preview 1.21.100.21 (Bedrock Edition) |
Fix template calls: add MC/ prefix |
||
| (One intermediate revision by the same user not shown) | |||
| Line 27: | Line 27: | ||
=== Command format === | === Command format === | ||
'''[[Minecraft:Target selectors]]''' | '''[[Minecraft:Target selectors]]''' | ||
*Added the {{ | *Added the {{MC/Cd|@n}} target selector, which returns the single closest entity. | ||
'''[[Minecraft:Spawn event]]''' | '''[[Minecraft:Spawn event]]''' | ||
* Added two new spawn events: {{Cd|code=minecraft:entity_spawned_with_default_jockey}} and {{Cd|code=minecraft:entity_spawned_with_biome_specific_jockey}}. | * Added two new spawn events: {{MC/Cd|code=minecraft:entity_spawned_with_default_jockey}} and {{MC/Cd|code=minecraft:entity_spawned_with_biome_specific_jockey}}. | ||
** Both of them are only executable on spiders and cave spiders. | ** Both of them are only executable on spiders and cave spiders. | ||
** {{Cd|code=minecraft:entity_spawned_with_default_jockey}} lets spiders and cave spiders spawn as a spider jockey with a skeleton rider, if it's nighttime or underground. | ** {{MC/Cd|code=minecraft:entity_spawned_with_default_jockey}} lets spiders and cave spiders spawn as a spider jockey with a skeleton rider, if it's nighttime or underground. | ||
** {{Cd|code=minecraft:entity_spawned_with_biome_specific_jockey}} lets spiders and cave spiders spawn with a skeleton variant rider depending on the biome they spawn in, if it's nighttime and not underground. | ** {{MC/Cd|code=minecraft:entity_spawned_with_biome_specific_jockey}} lets spiders and cave spiders spawn with a skeleton variant rider depending on the biome they spawn in, if it's nighttime and not underground. | ||
*** It adds a | *** It adds a wither skeleton rider in The Nether. | ||
*** It adds a | *** It adds a stray rider in snowy biomes. | ||
*** It adds a | *** It adds a bogged rider in swamp or mangrove swamp biomes. | ||
*** If executed anywhere else or underground, it adds a regular skeleton rider. | *** If executed anywhere else or underground, it adds a regular skeleton rider. | ||
| Line 52: | Line 52: | ||
=== Mobs === | === Mobs === | ||
'''[[Minecraft:Enderman]]''' | '''[[Minecraft:Enderman]]''' | ||
* Endermen can now pick up all block types they are able to in {{JE}}. | * Endermen can now pick up all block types they are able to in {{MC/JE}}. | ||
''' | '''Spider''' | ||
* [[File:Spider Jockey (Bogged) BE.png|50px]] When spawning as a spider jockey in swamp or mangrove swamp biomes, it now has an 80% chance to have a bogged rider. | * [[File:Spider Jockey (Bogged) BE.png|50px]] When spawning as a spider jockey in swamp or mangrove swamp biomes, it now has an 80% chance to have a bogged rider. | ||
'''Cave Spider''' | |||
* When spawning as a spider jockey in swamp or mangrove swamp biomes, it now has an 80% chance to have a bogged rider. | * When spawning as a spider jockey in swamp or mangrove swamp biomes, it now has an 80% chance to have a bogged rider. | ||
=== Technical === | === Technical === | ||
'''AI Goals''' | '''AI Goals''' | ||
*Added the {{ | *Added the {{MC/Cd|minecraft:behavior.take_block}} AI goal, allows an entity to take blocks from the world with the following options: | ||
**{{ | **{{MC/Cd|blocks}}: Array of block descriptors that the entity can take, if empty can take any block. | ||
**{{ | **{{MC/Cd|can_take}}: Entity filters for when the entity can use the goal. | ||
**{{ | **{{MC/Cd|on_take}}: Trigger ran if the entity does take a block. | ||
**{{ | **{{MC/Cd|xz_range}}: XZ range from which the entity will try and take blocks from. | ||
**{{ | **{{MC/Cd|y_range}}: Y range from which the entity will try and take blocks from. | ||
**{{ | **{{MC/Cd|chance}}: Chance each tick to try and take a block. | ||
**{{ | **{{MC/Cd|affected_by_griefing_rule}}: If the goal is affected by the mob griefing game rule. | ||
**{{ | **{{MC/Cd|requires_line_of_sight}}: If the entity requires line of sight on the block it tries to take. | ||
*Removed the {{ | *Removed the {{MC/Cd|minecraft:behavior.enderman_take_block}} AI goal, it upgrades to the above goal. | ||
*Added the {{ | *Added the {{MC/Cd|minecraft:behavior.place_block}} AI goal, allows an entity to place blocks in the world with the following options: | ||
**{{ | **{{MC/Cd|placeable_carried_blocks}}: Array of block descriptors that the entity can place if its carried item, if empty can place any block from its carried item. | ||
**{{ | **{{MC/Cd|randomly_placeable_blocks}}: Array of weighted block descriptors that the entity can randomly place, if empty the entity will try to place the block in its carried item instead. | ||
**{{ | **{{MC/Cd|can_place}}: Entity filters for when the entity can use the goal. | ||
**{{ | **{{MC/Cd|on_place}}: Trigger ran if the entity does place a block. | ||
**{{ | **{{MC/Cd|xz_range}}: X range from which the entity will try and place blocks in. | ||
**{{ | **{{MC/Cd|y_range}}: Y range from which the entity will try and place blocks in. | ||
**{{ | **{{MC/Cd|chance}}: Chance each tick to try and place a block. | ||
**{{ | **{{MC/Cd|affected_by_griefing_rule}}: If the goal is affected by the mob griefing game rule. | ||
*Removed the {{ | *Removed the {{MC/Cd|minecraft:behavior.enderman_leave_block}} AI goal, it upgrades to the above goal. | ||
''' | '''API''' | ||
*Removed {{ | *Removed {{MC/Cd|minecraft:destruction_particles}}'s block API from {{MC/Cd|beta}}, it was deemed too risky to expose to server scripting API since the component is only being used on client. | ||
*Moved enum {{ | *Moved enum {{MC/Cd|MovementType}} from {{MC/Cd|beta}} to {{MC/Cd|v2.0.0}}. | ||
*Moved enum {{ | *Moved enum {{MC/Cd|StickyType}} from {{MC/Cd|beta}} to {{MC/Cd|v2.0.0}}. | ||
*Moved class {{ | *Moved class {{MC/Cd|BlockMovableComponent}} from {{MC/Cd|beta}} to {{MC/Cd|v2.0.0}}. | ||
*Moved {{ | *Moved {{MC/Cd|localizationKey}} property on {{MC/Cd|Block}}, {{MC/Cd|Entity}}, {{MC/Cd|Dimension}}, and {{MC/Cd|ItemStack}} from {{MC/Cd|beta}} into {{MC/Cd|2.1.0}}. | ||
*Moved {{ | *Moved {{MC/Cd|Container}} methods {{MC/Cd|contains}}, {{MC/Cd|firstEmptySlot}}, {{MC/Cd|firstItem}}, {{MC/Cd|find}}, and {{MC/Cd|findLast}} from {{MC/Cd|beta}} into {{MC/Cd|2.1.0}}. | ||
'''[[Minecraft:Block]]''' | '''[[Minecraft:Block]]''' | ||
*{{ | *{{MC/Cd|alpha_test_to_opaque}}, {{MC/Cd|alpha_test_single_sided_to_opaque}}, and {{MC/Cd|blend_to_opaque}} will now shift to {{MC/Cd|opaque}} in the distance again when used as render method in {{MC/Cd|minecraft:material_instances}}. | ||
*Removed Upcoming Creator Features toggle requirement from Movable Component. | *Removed Upcoming Creator Features toggle requirement from Movable Component. | ||
'''Block Components''' | '''Block Components''' | ||
*Field {{ | *Field {{MC/Cd|uv_lock}} no longer requires Upcoming Creator Features experiment to work. JSON {{MC/Cd|format_version}} still needs to be >= {{MC/Cd|1.21.90}}. | ||
'''Components''' | '''Components''' | ||
| Line 101: | Line 101: | ||
'''[[Minecraft:Molang]]''' | '''[[Minecraft:Molang]]''' | ||
*{{ | *{{MC/Cd|query.is_carrying_block}} is now usable by all entities, not just enderman. | ||
*{{ | *{{MC/Cd|query.is_carrying_block}} returns 1.0 if the entity is carrying any block, including air. | ||
''' | '''Textures''' | ||
*Modified Json parsing of {{ | *Modified Json parsing of {{MC/Cd|variations}} texture objects in {{MC/Cd|terrain_texture.json}} files: | ||
**{{ | **{{MC/Cd|weight}} field clamped to minimum value of 0.05. | ||
**{{ | **{{MC/Cd|weight}} field clamped to maximum value of 1000000. | ||
== Experimental == | == Experimental == | ||
These additions and changes are accessible by enabling the "Beta APIs", and "Custom Biomes" | These additions and changes are accessible by enabling the "Beta APIs", and "Custom Biomes" experimental toggles. | ||
=== Additions === | === Additions === | ||
==== Technical ==== | ==== Technical ==== | ||
'''API''' | '''API''' | ||
*Added {{ | *Added {{MC/Cd|runOnFinish}} method to {{MC/Cd|GameTest}} which runs after the test is completed, regardless if it passed, failed, or timed out. | ||
=== Changes === | === Changes === | ||
| Line 128: | Line 128: | ||
|153135|The fox automatically places items (armor, mob heads, carved pumpkin, etc.) in armor slots. | |153135|The fox automatically places items (armor, mob heads, carved pumpkin, etc.) in armor slots. | ||
|162613|Endermen can pick up warped or crimson fungus and place it onto any full block | |162613|Endermen can pick up warped or crimson fungus and place it onto any full block | ||
|164355|Enderman Does Not Replace Items at {{ | |164355|Enderman Does Not Replace Items at {{MC/Cmd|replaceitem}}. | ||
|178487|Foxes don’t pick up non-stackable items like swords and totems. | |178487|Foxes don’t pick up non-stackable items like swords and totems. | ||
|180453|Some blocks are not highlighted when Outline Selection is disabled. | |180453|Some blocks are not highlighted when Outline Selection is disabled. | ||
| Line 142: | Line 142: | ||
== References == | == References == | ||
{{ | {{MC/Reflist}} | ||
== Navigation == | == Navigation == | ||
{{Navbox Bedrock Edition versions|1.2x}} | {{MC/Navbox Bedrock Edition versions|1.2x}} | ||
[[Category:Bedrock Edition 1.21.100 betas]] | [[Category:Bedrock Edition 1.21.100 betas]] | ||
de:Bedrock Edition beta 1.21.100.21 | |||
pt:Edição Bedrock Preview 1.21.100.21 | |||
ru:Preview 1.21.100.21 (Bedrock Edition) | |||
uk:Preview 1.21.100.21 (Bedrock Edition) | |||
zh:基岩版1.21.100.21 | |||
Latest revision as of 19:21, 9 April 2026
Beta 1.21.100.21 (ChromeOS, Android) or Preview 1.21.100.21 (Windows, iOS, iPadOS, Xbox, PlayStation) is the second beta/Preview version for Minecraft:Bedrock Edition 1.21.100, released on June 18, 2025.<ref>Template:Cite</ref>
Additions
Command format
- Added the
- REDIRECT Template:Code
Template:Redr target selector, which returns the single closest entity. Minecraft:Spawn event
- Added two new spawn events:
- REDIRECT Template:Code
Template:Redr and
- REDIRECT Template:Code
- Both of them are only executable on spiders and cave spiders.
- REDIRECT Template:Code
Template:Redr lets spiders and cave spiders spawn as a spider jockey with a skeleton rider, if it's nighttime or underground.
- REDIRECT Template:Code
Template:Redr lets spiders and cave spiders spawn with a skeleton variant rider depending on the biome they spawn in, if it's nighttime and not underground.
- It adds a wither skeleton rider in The Nether.
- It adds a stray rider in snowy biomes.
- It adds a bogged rider in swamp or mangrove swamp biomes.
- If executed anywhere else or underground, it adds a regular skeleton rider.
Changes
General
- Moved the graphics mode and render distance options to the top of video settings for convenience.
- Added preview sounds for the new audio tab.
Graphical
- Weather events now affect the scene illumination and the color of clouds and sky in Vibrant Visuals.
- Updated Reflections configurations for "Favor Performance" presets on Xbox platforms with Vibrant Visuals.
Mobs
- Endermen can now pick up all block types they are able to in Java Edition.
Spider
- File:Spider Jockey (Bogged) BE.png When spawning as a spider jockey in swamp or mangrove swamp biomes, it now has an 80% chance to have a bogged rider.
Cave Spider
- When spawning as a spider jockey in swamp or mangrove swamp biomes, it now has an 80% chance to have a bogged rider.
Technical
AI Goals
- Added the
- REDIRECT Template:Code
Template:Redr AI goal, allows an entity to take blocks from the world with the following options:
- REDIRECT Template:Code
Template:Redr: Array of block descriptors that the entity can take, if empty can take any block.
- REDIRECT Template:Code
Template:Redr: Entity filters for when the entity can use the goal.
- REDIRECT Template:Code
Template:Redr: Trigger ran if the entity does take a block.
- REDIRECT Template:Code
Template:Redr: XZ range from which the entity will try and take blocks from.
- REDIRECT Template:Code
Template:Redr: Y range from which the entity will try and take blocks from.
- REDIRECT Template:Code
Template:Redr: Chance each tick to try and take a block.
- REDIRECT Template:Code
Template:Redr: If the goal is affected by the mob griefing game rule.
- REDIRECT Template:Code
Template:Redr: If the entity requires line of sight on the block it tries to take.
- Removed the
- REDIRECT Template:Code
Template:Redr AI goal, it upgrades to the above goal.
- Added the
- REDIRECT Template:Code
Template:Redr AI goal, allows an entity to place blocks in the world with the following options:
- REDIRECT Template:Code
Template:Redr: Array of block descriptors that the entity can place if its carried item, if empty can place any block from its carried item.
- REDIRECT Template:Code
Template:Redr: Array of weighted block descriptors that the entity can randomly place, if empty the entity will try to place the block in its carried item instead.
- REDIRECT Template:Code
Template:Redr: Entity filters for when the entity can use the goal.
- REDIRECT Template:Code
Template:Redr: Trigger ran if the entity does place a block.
- REDIRECT Template:Code
Template:Redr: X range from which the entity will try and place blocks in.
- REDIRECT Template:Code
Template:Redr: Y range from which the entity will try and place blocks in.
- REDIRECT Template:Code
Template:Redr: Chance each tick to try and place a block.
- REDIRECT Template:Code
Template:Redr: If the goal is affected by the mob griefing game rule.
- Removed the
- REDIRECT Template:Code
Template:Redr AI goal, it upgrades to the above goal.
API
- Removed
- REDIRECT Template:Code
Template:Redr's block API from
- REDIRECT Template:Code
Template:Redr, it was deemed too risky to expose to server scripting API since the component is only being used on client.
- Moved enum
- REDIRECT Template:Code
Template:Redr from
- REDIRECT Template:Code
- REDIRECT Template:Code
- Moved enum
- REDIRECT Template:Code
Template:Redr from
- REDIRECT Template:Code
- REDIRECT Template:Code
- Moved class
- REDIRECT Template:Code
Template:Redr from
- REDIRECT Template:Code
- REDIRECT Template:Code
- Moved
- REDIRECT Template:Code
Template:Redr property on
- REDIRECT Template:Code
- REDIRECT Template:Code
- REDIRECT Template:Code
Template:Redr, and
- REDIRECT Template:Code
Template:Redr from
- REDIRECT Template:Code
Template:Redr into
- REDIRECT Template:Code
- Moved
- REDIRECT Template:Code
Template:Redr methods
- REDIRECT Template:Code
- REDIRECT Template:Code
- REDIRECT Template:Code
- REDIRECT Template:Code
Template:Redr, and
- REDIRECT Template:Code
Template:Redr from
- REDIRECT Template:Code
Template:Redr into
- REDIRECT Template:Code
- REDIRECT Template:Code
- REDIRECT Template:Code
Template:Redr, and
- REDIRECT Template:Code
Template:Redr will now shift to
- REDIRECT Template:Code
Template:Redr in the distance again when used as render method in
- REDIRECT Template:Code
- Removed Upcoming Creator Features toggle requirement from Movable Component.
Block Components
- Field
- REDIRECT Template:Code
Template:Redr no longer requires Upcoming Creator Features experiment to work. JSON
- REDIRECT Template:Code
Template:Redr still needs to be >=
- REDIRECT Template:Code
Components
- Content warnings will log missing references in Jigsaw Structure, Processor List, Template Pool, and Structure Sets JSON.
- REDIRECT Template:Code
Template:Redr is now usable by all entities, not just enderman.
- REDIRECT Template:Code
Template:Redr returns 1.0 if the entity is carrying any block, including air.
Textures
- Modified Json parsing of
- REDIRECT Template:Code
Template:Redr texture objects in
- REDIRECT Template:Code
Template:Redr files:
- REDIRECT Template:Code
Template:Redr field clamped to minimum value of 0.05.
- REDIRECT Template:Code
Template:Redr field clamped to maximum value of 1000000.
Experimental
These additions and changes are accessible by enabling the "Beta APIs", and "Custom Biomes" experimental toggles.
Additions
Technical
API
- Added
- REDIRECT Template:Code
Template:Redr method to
- REDIRECT Template:Code
Template:Redr which runs after the test is completed, regardless if it passed, failed, or timed out.
Changes
Technical
Gameplay
- When loading a chunk that used a removed custom biome, the removed biome is now replaced with the dimension's default biome, which is ocean in the Overworld.
Fixes
Template:Fixes Other
- Fixed a bug where the death screen could be shown while the player was alive when certain gamepad buttons where pressed at the same time.
- Fixed an issue where endermen could take blocks without having line of sight to them.
References
<references group="">
</references>
de:Bedrock Edition beta 1.21.100.21 pt:Edição Bedrock Preview 1.21.100.21 ru:Preview 1.21.100.21 (Bedrock Edition) uk:Preview 1.21.100.21 (Bedrock Edition) zh:基岩版1.21.100.21