Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Minecraft:Bedrock Edition Preview 1.21.110.25: Difference between revisions

From SAS Gaming Wiki
SyncBot (talk | contribs)
Remove broken links to missing pages
SyncBot (talk | contribs)
Fix template calls: add MC/ prefix
 
Line 59: Line 59:
=== Technical ===
=== Technical ===
'''AI Goals'''
'''AI Goals'''
* The {{cd|minecraft:behavior.transport_items}} AI goal now checks that the entity can see the container it tries to interact with:
* The {{MC/Cd|minecraft:behavior.transport_items}} AI goal now checks that the entity can see the container it tries to interact with:
** It checks once before starting to queue at the container and once before starting to interact.
** It checks once before starting to queue at the container and once before starting to interact.
** If it does not see the container, it fails to open it.
** If it does not see the container, it fails to open it.


'''API'''
'''API'''
* Moved {{cd|LootTableManager}} API from beta into 2.2.0.
* Moved {{MC/Cd|LootTableManager}} API from beta into 2.2.0.
* Changed the following methods on {{cd|Dimension}} to have the read-only privilege so they can be called in "before" events:
* Changed the following methods on {{MC/Cd|Dimension}} to have the read-only privilege so they can be called in "before" events:
** {{cd|getWeather}}, {{cd|findClosestBiome}}, {{cd|getBlockAbove}}, {{cd|getBlockBelow}}, {{cd|getTopmostBlock}},
** {{MC/Cd|getWeather}}, {{MC/Cd|findClosestBiome}}, {{MC/Cd|getBlockAbove}}, {{MC/Cd|getBlockBelow}}, {{MC/Cd|getTopmostBlock}},
** {{cd|getLightLevel}}, {{cd|getSkyLightLevel}}.
** {{MC/Cd|getLightLevel}}, {{MC/Cd|getSkyLightLevel}}.
* Moved {{cd|ItemBookComponent}} from {{cd|beta}} to {{cd|V2.2.0}}.
* Moved {{MC/Cd|ItemBookComponent}} from {{MC/Cd|beta}} to {{MC/Cd|V2.2.0}}.
* Moved {{cd|BookError}} from {{cd|beta}} to {{cd|V2.2.0}}.
* Moved {{MC/Cd|BookError}} from {{MC/Cd|beta}} to {{MC/Cd|V2.2.0}}.
* Moved {{cd|BookPageContentError}} from {{cd|beta}} to {{cd|V2.2.0}}.
* Moved {{MC/Cd|BookPageContentError}} from {{MC/Cd|beta}} to {{MC/Cd|V2.2.0}}.
* Moved {{cd|BookErrorReason}} from {{cd|beta}} to {{cd|V2.2.0}}.
* Moved {{MC/Cd|BookErrorReason}} from {{MC/Cd|beta}} to {{MC/Cd|V2.2.0}}.
* Moved {{cd|InvalidItemStackError}} from {{cd|beta}} to {{cd|V2.2.0}}.
* Moved {{MC/Cd|InvalidItemStackError}} from {{MC/Cd|beta}} to {{MC/Cd|V2.2.0}}.
* Camera
* Camera
** Moved {{cd|setFov(fovCameraOptions?: CameraFovOptions): void}} from {{cd|beta}} to {{cd|V2.2.0}}.
** Moved {{MC/Cd|setFov(fovCameraOptions?: CameraFovOptions): void}} from {{MC/Cd|beta}} to {{MC/Cd|V2.2.0}}.
*** Moved {{cd|setLore(loreList?: (RawMessage | string)[]): void}} from {{cd|beta}} to {{cd|V2.2.0}}.
*** Moved {{MC/Cd|setLore(loreList?: (RawMessage | string)[]): void}} from {{MC/Cd|beta}} to {{MC/Cd|V2.2.0}}.
*** Moved {{cd|getRawLore(): RawMessage[]}} from {{cd|beta}} to {{cd|V2.2.0}}.
*** Moved {{MC/Cd|getRawLore(): RawMessage[]}} from {{MC/Cd|beta}} to {{MC/Cd|V2.2.0}}.
** {{cd|ContainerSlot}}
** {{MC/Cd|ContainerSlot}}
*** Moved {{cd|setLore(loreList?: (RawMessage | string)[]): void}} from {{cd|beta}} to {{cd|V2.2.0}}.
*** Moved {{MC/Cd|setLore(loreList?: (RawMessage | string)[]): void}} from {{MC/Cd|beta}} to {{MC/Cd|V2.2.0}}.
*** Moved {{cd|getRawLore(): RawMessage[]}} from {{cd|beta}} to {{cd|V2.2.0}}.
*** Moved {{MC/Cd|getRawLore(): RawMessage[]}} from {{MC/Cd|beta}} to {{MC/Cd|V2.2.0}}.


'''[[Minecraft:Biome]]s'''
'''[[Minecraft:Biome]]s'''
* Custom biomes are now out of experimental.
* Custom biomes are now out of experimental.
* Added {{cd|underwater_music}} parameter to {{cd|minecraft:biome_music}} client biome component that enables the underwater music for the biome.
* Added {{MC/Cd|underwater_music}} parameter to {{MC/Cd|minecraft:biome_music}} client biome component that enables the underwater music for the biome.


'''Experimental'''
'''Experimental'''
Line 96: Line 96:
==== Technical ====
==== Technical ====
'''API'''
'''API'''
* Added new method {{cd|isChunkLoaded}} to {{cd|Dimension}} which returns true if a chunk at an area is loaded and ticking.
* Added new method {{MC/Cd|isChunkLoaded}} to {{MC/Cd|Dimension}} which returns true if a chunk at an area is loaded and ticking.
* Added enum {{cd|HeldItemOption}} to {{cd|beta}} for {{cd|PlayerSwingEventOptions}}. This specifies options related to the item currently being held at the time of a player swing:
* Added enum {{MC/Cd|HeldItemOption}} to {{MC/Cd|beta}} for {{MC/Cd|PlayerSwingEventOptions}}. This specifies options related to the item currently being held at the time of a player swing:
<syntaxhighlight lang="c++">
<syntaxhighlight lang="c++">
export enum HeldItemOption {   
export enum HeldItemOption {   
Line 104: Line 104:
}
}
</syntaxhighlight>
</syntaxhighlight>
* Added interface {{cd|PlayerSwingEventOptions}} to {{cd|beta}}. Event options/filters for {{cd|PlayerSwingStartAfterEvent}}. - Field {{cd|heldItemOption?: HeldItemOption}}
* Added interface {{MC/Cd|PlayerSwingEventOptions}} to {{MC/Cd|beta}}. Event options/filters for {{MC/Cd|PlayerSwingStartAfterEvent}}. - Field {{MC/Cd|heldItemOption?: HeldItemOption}}
** Added class {{cd|PlayerSwingStartAfterEvent}} to {{cd|beta}}. This contains information regarding a player starting to swing their arm:
** Added class {{MC/Cd|PlayerSwingStartAfterEvent}} to {{MC/Cd|beta}}. This contains information regarding a player starting to swing their arm:
*** Field {{cd|heldItemStack?: ItemStack}}.
*** Field {{MC/Cd|heldItemStack?: ItemStack}}.
*** Field {{cd|player: Player}}.
*** Field {{MC/Cd|player: Player}}.
** Added class {{cd|PlayerSwingStartAfter.EventSignal}} to {{cd|beta}}. This event is fired at the start of a player's swing (e.g. attacking, using an item, interacting). It can be subscribed/unsubscribed via {{cd|world.afterEvents.playerSwingStart}} and optionally filtered by passing in {{cd|PlayerSwingEventOptions}}.
** Added class {{MC/Cd|PlayerSwingStartAfter.EventSignal}} to {{MC/Cd|beta}}. This event is fired at the start of a player's swing (e.g. attacking, using an item, interacting). It can be subscribed/unsubscribed via {{MC/Cd|world.afterEvents.playerSwingStart}} and optionally filtered by passing in {{MC/Cd|PlayerSwingEventOptions}}.


'''[[Minecraft:Block]]s'''
'''[[Minecraft:Block]]s'''
*Added component {{cd|minecraft:redstone_producer}} behind the Upcoming Creator Features toggle.
*Added component {{MC/Cd|minecraft:redstone_producer}} behind the Upcoming Creator Features toggle.


'''Components'''
'''Components'''
* Added new block component {{cd|minecraft:flower_pottable}}:
* Added new block component {{MC/Cd|minecraft:flower_pottable}}:
** It is an empty component defined as such: {{cd|minecraft:flower_pottable: <nowiki>{}</nowiki>}}.
** It is an empty component defined as such: {{cd|minecraft:flower_pottable: <nowiki>{}</nowiki>}}.
** When the component is present on the block, > a player can interact with an empty flowerpot when holding the block in order to embed it.
** When the component is present on the block, > a player can interact with an empty flowerpot when holding the block in order to embed it.
Line 120: Line 120:
** The component requires the Upcoming Creator Features toggle.
** The component requires the Upcoming Creator Features toggle.
** Pottable not potable.
** Pottable not potable.
* Added new block component {{cd|minecraft:embedded_visual}}:
* Added new block component {{MC/Cd|minecraft:embedded_visual}}:
** The component has two required fields, {{cd|geometry}} and {{cd|material_instances}}, similarly to {{cd|minecraft:item_visual}}.
** The component has two required fields, {{MC/Cd|geometry}} and {{MC/Cd|material_instances}}, similarly to {{MC/Cd|minecraft:item_visual}}.
** When the component is present on the block, it defines which {{cd|geometry}} and {{cd|material_instances}} to use when the block is embedded into another block, eg. into a flowerpot.
** When the component is present on the block, it defines which {{MC/Cd|geometry}} and {{MC/Cd|material_instances}} to use when the block is embedded into another block, eg. into a flowerpot.
*** If the component is not present, embedded blocks fallback to their innate {{cd|geometry}} and {{cd|material_instances}}.
*** If the component is not present, embedded blocks fallback to their innate {{MC/Cd|geometry}} and {{MC/Cd|material_instances}}.
*** The component cannot be defined in the {{cd|permutations}} section; only one embedded visual can be achieved per block type.
*** The component cannot be defined in the {{MC/Cd|permutations}} section; only one embedded visual can be achieved per block type.
** The component requires the Upcoming Creator Features toggle.
** The component requires the Upcoming Creator Features toggle.
* Added new field {{cd|embedded}} to the {{cd|item_display_transforms}} object:
* Added new field {{MC/Cd|embedded}} to the {{MC/Cd|item_display_transforms}} object:
** The field defines the overall transformation this geometry should be subject to when embedded into a block, eg. a flowerpot.
** The field defines the overall transformation this geometry should be subject to when embedded into a block, eg. a flowerpot.
** If the field is not defined, the default transformation is a 0.75x scale, similar to the one applied to most Vanilla flowers.
** If the field is not defined, the default transformation is a 0.75x scale, similar to the one applied to most Vanilla flowers.
Line 133: Line 133:
==== Technical ====
==== Technical ====
'''API'''
'''API'''
* Expanded {{cd|LootTableManager}} {{cd|beta}} functionality, which now allows for loot table discovery via the new {{cd|getLootTable}} method.
* Expanded {{MC/Cd|LootTableManager}} {{MC/Cd|beta}} functionality, which now allows for loot table discovery via the new {{MC/Cd|getLootTable}} method.


'''Components'''
'''Components'''
* Modified {{cd|minecraft:material_instances}} to support weighted variations textures with these requirements:
* Modified {{MC/Cd|minecraft:material_instances}} to support weighted variations textures with these requirements:
** {{cd|format_version}} must be greater than or equal to {{cd|1.21.110}}.
** {{MC/Cd|format_version}} must be greater than or equal to {{MC/Cd|1.21.110}}.
** World must have "Upcoming Creator Features" experiment enabled.
** World must have "Upcoming Creator Features" experiment enabled.


Line 143: Line 143:
{{fixes|project=MCPE|fixedin=1.21.110.25 Preview
{{fixes|project=MCPE|fixedin=1.21.110.25 Preview
|;old
|;old
|136930|{{cmd|getlocalplayername}} and {{cmd|geteduclientinfo}} commands are available outside of Education Edition
|136930|{{MC/Cmd|getlocalplayername}} and {{MC/Cmd|geteduclientinfo}} commands are available outside of Education Edition
|181306|Paintings randomly breaking after reloading chunks
|181306|Paintings randomly breaking after reloading chunks
|221572|Husk appears with a white box around its head in the official Classic Texture Pack
|221572|Husk appears with a white box around its head in the official Classic Texture Pack
Line 163: Line 163:
'''Other'''
'''Other'''
*Fixed an issue where a default surface builder was not chosen leading to bare surfaces in some biomes.
*Fixed an issue where a default surface builder was not chosen leading to bare surfaces in some biomes.
*Fixed a bug where setting the precipitation of a biome to 0 in {{cd|biome.json}} files would not stop rain from occurring in the biome.
*Fixed a bug where setting the precipitation of a biome to 0 in {{MC/Cd|biome.json}} files would not stop rain from occurring in the biome.
*Fixed a bug where putting items in a bundle as it is being transferred from one Hopper to another would delete the item.
*Fixed a bug where putting items in a bundle as it is being transferred from one Hopper to another would delete the item.
*Fixed a crash that occurred when treatment packs were removed while loading game or loading into a world.</onlyinclude>
*Fixed a crash that occurred when treatment packs were removed while loading game or loading into a world.</onlyinclude>
Line 171: Line 171:


== References ==
== References ==
{{reflist}}
{{MC/Reflist}}


== Navigation ==
== Navigation ==
{{Navbox Bedrock Edition versions|1.2x}}
{{MC/Navbox Bedrock Edition versions|1.2x}}


[[Category:Bedrock Edition 1.21.111 betas]]
[[Category:Bedrock Edition 1.21.111 betas]]

Latest revision as of 19:21, 9 April 2026

Template:Infobox version


Beta 1.21.110.25 (ChromeOS, Android) or Preview 1.21.110.25 (Windows, iOS, iPadOS, Xbox, PlayStation) is the fifth beta/Preview version for Minecraft:Bedrock Edition 1.21.111Template:Note, released on August 19, 2025,<ref>Template:Cite</ref> which fixes some bugs.

Changes

Blocks

Minecraft:Copper Door

Minecraft:Chest

  • Double chests now visually open when a copper golem opens the second half.

Minecraft:Lightning Rod

  • Removed a white line of pixels on the edge of exposed and weathered copper lightning rods.

Minecraft:Shelf

  • Shelves now produce the same particles as their stripped log counterparts when they break.
  • Items in the shelf will render in the middle of the shelf.
  • Updated the sizes of many items in the shelf to better fit the shelf.

General

File:New UI - Pause Menu "Social" Tab - People Screen Menu (Bedrock Preview 1.21.110.25).png
The redesigned social drawer.

Panorama

  • Updated the panorama to show a scene with copper golems in a village.Template:Note

Pause menu

  • Removed the player list, permissions, and "Invite to Game" button and renamed the "Friends" button to "Social", which opens an updated player list with new buttons to open the player permissions screen, view each player's permissions, invite players, and manage some options for a player.Template:Note

Mobs

Copper Golem

  • Copper golems can now pathfind through 1 block high passages.
  • The copper golem will no longer interact with chests and copper chests that it cannot see.
  • Chests now close immediately when a copper golem starts panicking while looking inside.

Technical

AI Goals

  • The
  1. REDIRECT Template:Code

Template:Redr AI goal now checks that the entity can see the container it tries to interact with:

    • It checks once before starting to queue at the container and once before starting to interact.
    • If it does not see the container, it fails to open it.

API

  • Moved
  1. REDIRECT Template:Code

Template:Redr API from beta into 2.2.0.

  • Changed the following methods on
  1. REDIRECT Template:Code

Template:Redr to have the read-only privilege so they can be called in "before" events:

  1. REDIRECT Template:Code

Template:Redr,

  1. REDIRECT Template:Code

Template:Redr,

  1. REDIRECT Template:Code

Template:Redr,

  1. REDIRECT Template:Code

Template:Redr,

  1. REDIRECT Template:Code

Template:Redr,

  1. REDIRECT Template:Code

Template:Redr,

  1. REDIRECT Template:Code

Template:Redr.

  • Moved
  1. REDIRECT Template:Code

Template:Redr from

  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr.

  • Moved
  1. REDIRECT Template:Code

Template:Redr from

  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr.

  • Moved
  1. REDIRECT Template:Code

Template:Redr from

  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr.

  • Moved
  1. REDIRECT Template:Code

Template:Redr from

  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr.

  • Moved
  1. REDIRECT Template:Code

Template:Redr from

  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr.

  • Camera
    • Moved
  1. REDIRECT Template:Code

Template:Redr from

  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr.

      • Moved
  1. REDIRECT Template:Code

Template:Redr from

  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr.

      • Moved
  1. REDIRECT Template:Code

Template:Redr from

  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr.

  1. REDIRECT Template:Code

Template:Redr

      • Moved
  1. REDIRECT Template:Code

Template:Redr from

  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr.

      • Moved
  1. REDIRECT Template:Code

Template:Redr from

  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr.

Minecraft:Biomes

  • Custom biomes are now out of experimental.
  • Added
  1. REDIRECT Template:Code

Template:Redr parameter to

  1. REDIRECT Template:Code

Template:Redr client biome component that enables the underwater music for the biome.

Experimental

  • Camera custom FOV command no longer requires the "Experimental Creator Cameras" experimental toggle.
  • The experimental "Custom Biomes" option has been removed.
    • This change has not been mentioned in the changelog.

Experimental

These additions and changes are accessible by enabling the Beta APIs, and Upcoming Creator Features experimental toggles.

Additions

Technical

API

  • Added new method
  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr which returns true if a chunk at an area is loaded and ticking.

  • Added enum
  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr for

  1. REDIRECT Template:Code

Template:Redr. This specifies options related to the item currently being held at the time of a player swing: <syntaxhighlight lang="c++"> export enum HeldItemOption {

   AnyItem = 'AnyItem',       
   NoItem = 'NoItem'  

} </syntaxhighlight>

  • Added interface
  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr. Event options/filters for

  1. REDIRECT Template:Code

Template:Redr. - Field

  1. REDIRECT Template:Code

Template:Redr

    • Added class
  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr. This contains information regarding a player starting to swing their arm:

      • Field
  1. REDIRECT Template:Code

Template:Redr.

      • Field
  1. REDIRECT Template:Code

Template:Redr.

    • Added class
  1. REDIRECT Template:Code

Template:Redr to

  1. REDIRECT Template:Code

Template:Redr. This event is fired at the start of a player's swing (e.g. attacking, using an item, interacting). It can be subscribed/unsubscribed via

  1. REDIRECT Template:Code

Template:Redr and optionally filtered by passing in

  1. REDIRECT Template:Code

Template:Redr.

Minecraft:Blocks

  • Added component
  1. REDIRECT Template:Code

Template:Redr behind the Upcoming Creator Features toggle.

Components

  • Added new block component
  1. REDIRECT Template:Code

Template:Redr:

    • It is an empty component defined as such: Template:Cd.
    • When the component is present on the block, > a player can interact with an empty flowerpot when holding the block in order to embed it.
    • Similar to other Vanilla pottable blocks, a player can remove the potted block by interacting with the pot with an empty hand.
    • The component requires the Upcoming Creator Features toggle.
    • Pottable not potable.
  • Added new block component
  1. REDIRECT Template:Code

Template:Redr:

    • The component has two required fields,
  1. REDIRECT Template:Code

Template:Redr and

  1. REDIRECT Template:Code

Template:Redr, similarly to

  1. REDIRECT Template:Code

Template:Redr.

    • When the component is present on the block, it defines which
  1. REDIRECT Template:Code

Template:Redr and

  1. REDIRECT Template:Code

Template:Redr to use when the block is embedded into another block, eg. into a flowerpot.

      • If the component is not present, embedded blocks fallback to their innate
  1. REDIRECT Template:Code

Template:Redr and

  1. REDIRECT Template:Code

Template:Redr.

      • The component cannot be defined in the
  1. REDIRECT Template:Code

Template:Redr section; only one embedded visual can be achieved per block type.

    • The component requires the Upcoming Creator Features toggle.
  • Added new field
  1. REDIRECT Template:Code

Template:Redr to the

  1. REDIRECT Template:Code

Template:Redr object:

    • The field defines the overall transformation this geometry should be subject to when embedded into a block, eg. a flowerpot.
    • If the field is not defined, the default transformation is a 0.75x scale, similar to the one applied to most Vanilla flowers.

Changes

Technical

API

  • Expanded
  1. REDIRECT Template:Code

Template:Redr

  1. REDIRECT Template:Code

Template:Redr functionality, which now allows for loot table discovery via the new

  1. REDIRECT Template:Code

Template:Redr method.

Components

  • Modified
  1. REDIRECT Template:Code

Template:Redr to support weighted variations textures with these requirements:

  1. REDIRECT Template:Code

Template:Redr must be greater than or equal to

  1. REDIRECT Template:Code

Template:Redr.

    • World must have "Upcoming Creator Features" experiment enabled.

Fixes

Template:Fixes Other

  • Fixed an issue where a default surface builder was not chosen leading to bare surfaces in some biomes.
  • Fixed a bug where setting the precipitation of a biome to 0 in
  1. REDIRECT Template:Code

Template:Redr files would not stop rain from occurring in the biome.

  • Fixed a bug where putting items in a bundle as it is being transferred from one Hopper to another would delete the item.
  • Fixed a crash that occurred when treatment packs were removed while loading game or loading into a world.

Notes

Template:Notelist

References

<references group="">

 </references>

Navigation

Template:BlockSprite Demo
(Guide)
Template:BlockSprite 0.1
(Guide)
Template:FileLink 0.2
(Guide)
Template:BlockSprite 0.3
(Guide)
Template:BlockSprite 0.4
(Guide)
Template:BlockSprite 0.5
(Guide)
Template:ItemSprite 0.6
(Guide)
Template:ItemSprite 0.7
(Guide)
v0.7.0
Template:LegacyItemSprite 0.8
(Guide)
v0.8.0
Template:LegacyBlockSprite 0.9
(Guide)
v0.9.0
Template:EnvSprite 0.10
(Guide)
v0.10.0
Template:ItemSprite 0.11
(Guide)
v0.11.0
Template:EnvSprite 0.12
(Guide)
v0.12.1
Template:ItemSprite 0.13
(Guide)
v0.13.0
Template:ItemSprite Overworld Update
(Guide)
v0.14.0
Template:EntitySprite Friendly Update
(Guide)
v0.15.0
Realms
v0.15.1
Template:ItemSprite Boss Update
(Guide)
v0.16.0
Template:EntitySprite Ender Update
(Guide)
1.0.0
1.0.3
1.0.4
1.0.5
1.0.6
Template:ItemSprite Discovery Update
(Guide)
1.1.0
1.1.1
1.1.3
Template:FileLink Better Together Update
(Guide)
1.2.0
1.2.3
1.2.5
1.2.6
1.2.10
1.2.13
Template:ItemSprite Update Aquatic (Phase One)
(Guide)
1.4.0
Template:BlockSprite Update Aquatic (Phase Two)
(Guide)
1.5.0
Template:EntitySprite 1.6
(Guide)
1.6.0
Template:BlockSprite 1.7
(Guide)
1.7.0
Template:EntitySprite 1.8
(Guide)
1.8.0
Template:EntitySprite 1.9
(Guide)
1.9.0
Template:BlockSprite Texture Update
(Guide)
1.10.0
Template:EffectSprite Village & Pillage
(Guide)
1.11.0
Template:BlockSprite 1.12
(Guide)
1.12.0
Template:EntitySprite 1.13
(Guide)
1.13.0
Template:EntitySprite Buzzy Bees
(Guide)
1.14.0
1.14.1
1.14.20
1.14.30
Template:ItemSprite Nether Update
(Guide)
1.16.0
1.16.20
1.16.100
1.16.200
RTX Beta
1.16.210
1.16.220
Template:BlockSprite Caves & Cliffs: Part I
(Guide)
1.17.0
1.17.10
1.17.30
1.17.40
Template:BlockSprite Caves & Cliffs: Part II
(Guide)
1.18.0
1.18.10
1.18.30
Template:BlockSprite The Wild Update
(Guide)
1.19.0
1.19.10
1.19.20
1.19.30
1.19.40
1.19.50
1.19.60
1.19.70
1.19.80
Template:ItemSprite Trails & Tales
(Guide)
1.20.0
1.20.10
1.20.30
1.20.40
Template:EntitySprite Bats and Pots
(Guide)
1.20.50
1.20.60
1.20.70
Template:EntitySprite Armored Paws
(Guide)
1.20.80
Template:ItemSprite Tricky Trials
(Guide)
1.21.0
1.21.20
1.21.30
Template:ItemSprite Bundles of Bravery
(Guide)
1.21.40
Template:BlockSprite The Garden Awakens
(Guide)
1.21.50
1.21.60
Template:BlockSprite Spring to Life
(Guide)
1.21.70
1.21.80
Template:EntitySprite Chase the Skies
(Guide)
1.21.90
1.21.100
Template:EntitySprite The Copper Age
(Guide)
1.21.111*
1.21.120
Template:ItemSprite Mounts of Mayhem
(Guide)
1.21.130
26.0
Template:Nowrap

Template:Article other

de:Bedrock Edition beta 1.21.110.25 es:Bedrock Edition Preview 1.21.110.25 pt:Edição Bedrock Preview 1.21.110.25 ru:Preview 1.21.110.25 (Bedrock Edition) uk:Preview 1.21.110.25 (Bedrock Edition) zh:基岩版1.21.110.25