跳到主要内容

Minecraft Beta & Preview - 1.21.80.20

Script API

  • Fixed an issue with BlockPermutation::withState in outdated scripts that prevented some states from being set correctly on a number of blocks

    • Affected blocks include any which have had their directional or placement states recently changed
    • Scripts created after these blocks were changed may need to be updated to avoid unintended behavior

Molang

  • query.graphics_mode_is_any no longer requires the Upcoming Creator Features experiment

Biomes

  • Moved Vanilla biome JSON files from an internal folder to the appropriate Vanilla behavior packs

Bug

  • Fixed rotation of Jigsaw sections when Data-Driven Jigsaw Structures is enabled.

Components

  • The "minecraft:rideable" component now has three new additional fields:

    • "dismount_mode" defines where riders are placed when dismounting the entity:
      • "default", riders are placed on a valid ground position around the entity, or at the center of the entity's collision box if none is found
      • "on_top_center", riders are placed at the center of the top of the entity's collision box
    • "on_rider_enter_event", defines the event to execute on the owner entity when an entity starts riding it
    • "on_rider_exit_event", defines the event to execute on the owner entity when an entity stops riding it

Editor

  • Selection system has been completely overhauled and now leverage client widgets
    • Selection Marquee now support click and drag to select
    • Selection Marquee still supports opposing corner mode using CTRL key
    • Marquee and Freehand selection now support undo and redo
    • Widgets colors are integrated with the theme manager
    • Updates to keyboard shortcuts:
      • Keyboard control for selection volumes now supports keyboard repeat
      • (Marquee) SHIFT+Click create multiple volumes
      • (Freehand) SHIFT+CTRL removes brush voxels from selection
      • (Freehand) SHIFT adds brush voxels to existing selection
      • ALT+Arrow keys move the selection volume (Marquee & Freehand)
      • CTRL+Arrow keys resize the selection volume (Marquee only)
      • ENTER selects a volume
      • SHIFT+ENTER selects an additional volume
      • CTRL+S enters selection mode. CTRL+S again (while in selection mode) cycles between Marquee and Freehand
  • Added a new RelativeVolumeListBlockVolume volume type for Editor use to replace CompoundBlockVolume
  • Added a new Client Widget Bounding Box and Volume Outline components
  • Added keyboard repeat to cursor controls
  • Added visualization to Smart Fill tool
  • Added visualization to Extrude tool
  • Added visualization to Line tool
  • Added fields 'Spawn Position', 'Time of Day' and 'Weather' in a new section of initial play settings.
  • Added feedback UI to show the progress and result.
  • Added a 'Custom Mapping' subpane to the Workbench extension which adds the ability to add mappings for custom block properties
  • Added global keybind for activating Workbench
  • Added a tool mode key shortcut for Reload operation, it will be unbound by default
  • Improved performance on Smart Fill & Extrude
  • Updated brush shape settings to be local to the modal tool and specific configuration of that tool
    • Removed registerBrushShape from BrushShapeManager API, only core brushes will be supported for core tools.
  • Updated icon for delete inside the selection tool.
  • Updated naming of color setters and getters in the Widget system to use the same terminology (Outline for borders, Hull for fills, Highlight for specialized borders)
  • Fixed a bug that prevented theme to be changed to Redstone from UI Settings
  • Fixed a bug that caused Keyboard Settings buttons to be misaligned in certain resolutions
  • Removed deprecated property pane API
  • Removed CompoundBlockVolume usage in Editor Script APIss

General

  • Updated the client side biome component 'minecraft:water_appearance' field 'surface_color' to be optional. Added a content error that fires if the component is empty.

Goals

  • minecraft:behavior.float_wander has been updated with new fields:

    • navigate_around_surface: enables the usage of a new algorithm to find random positions to navigate to. The new algorithm aims to find random positions in the vicinity of solid (i.e. non-Air and non-liquid) blocks, and if that fails will fall back to finding a random position in the vicinity of the current dimension's surface level.
    • additional_collision_buffer: makes sure there are no blocks present in an inflated area around the target position.
    • allow_navigating_through_liquids: allow the mob to have target positions inside liquids
    • surface_xz_dist: the distance in the horizontal directions to look for nearby surfaces. Only valid when navigate_around_surface is true.
    • surface_y_dist: the distance in the vertical directions to look for nearby surfaces. Only valid when navigate_around_surface is true.
  • minecraft:behavior.follow_mob has been updated with the following new fields

    • use_home_position_restriction: If true, the mob will respect the 'minecraft:home' component's 'restriction_radius' field when choosing a target to follow. If false, it will choose target position without considering home restrictions.
    • preferred_actor_type: The type of actor to prefer following. If left unspecified, a random actor among those in range will be chosen.
    • filters: If non-empty, provides criteria for filtering which nearby Mobs can be followed. If empty default criteria will be used, which will exclude Players, Squid variants, Fish variants, Tadpoles, Dolphins, and mobs of the same type as the owner of the Goal.

Marketplace

  • Upon reading encrypted files on Xbox we would sometimes lose the last byte, causing some files to become invalid and fail to load.

Network Protocol

  • Added ActorFlags::DOES_SERVER_AUTH_ONLY_DISMOUNT

Structures

  • Fixed mirroring of door blocks when part of a structure that is being placed.

实验性特性

Script API

@minecraft/server 2.0.0-beta

  • EntityPushThroughComponent has been changed to read-only.

  • resetHudElements method on ScreenDisplay has been renamed to resetHudElementsVisibility.

  • ItemStack methods getComponent and getComponents will return ItemCustomComponentInstance for custom components registered with ItemComponentRegistry.

  • ItemStack method hasComponent will return true for custom components registered with ItemComponentRegistry.

@minecraft/server-ui 2.0.0-beta

  • Class ModalFormData.

    • Changed function dropdown.
      • Removed parameter defaultValueIndex?: number.
      • Added parameter dropdownOptions?: ModalFormDataDropdownOptions.
    • Changed function slider.
      • Removed parameter valueStep: number,.
      • Removed parameter defaultValue?: number.
      • Added parameter sliderOptions?: ModalFormDataSliderOptions.
    • Changed function textField.
      • Removed parameter defaultValue?: minecraftserver.RawMessage | string.
      • Added parameter textFieldOptions?: ModalFormDataTextFieldOptions.
    • Changed function toggle.
      • Removed parameter defaultValue?: boolean.
      • Added parameter toggleOptions?: ModalFormDataToggleOptions.
  • Added interface ModalFormDataDropdownOptions:

    export interface ModalFormDataDropdownOptions { defaultValueIndex?: number; tooltip?: minecraftserver.RawMessage | string;}

  • Added interface ModalFormDataSliderOptions:

    export interface ModalFormDataSliderOptions { defaultValue?: number; tooltip?: minecraftserver.RawMessage | string; valueStep?: number;}

  • Added interface ModalFormDataTextFieldOptions:

    export interface ModalFormDataTextFieldOptions { defaultValue?: string; tooltip?: minecraftserver.RawMessage | string;}

  • Added interface ModalFormDataToggleOptions:

    export interface ModalFormDataToggleOptions { defaultValue?: boolean; tooltip?: minecraftserver.RawMessage | string;}

Graphical

  • Added caustics to bodies of water in the Deferred Technical Preview. This new feature is enabled by default, and can be further controlled by resource packs. See updated Deferred Water documentation on the Creator portal for more information.
  • Modified exposure to preserve details in scenes with high contrast in lighting (i.e., local exposure).
  • Improved the lighting handoff between the sun and moon at sunrise and sunset in the Deferred Technical Preview.
  • Made some slight adjustments to volumetric fog density, the sky probe strength and the emissive brightness of the sun and moon sprites in the Deferred Technical Preview.
  • Introduced new 'Off' option to the Point Light Quality slider to fully disable analytical point light evaluation in the Deferred Technical Preview.

Technical Experimental

  • Removed unused experimental json field minecraft:nether_surface in the behavior pack biome file