程序包 org.bukkit.block
接口 TileState
- 所有超级接口:
BlockState
,Metadatable
,PersistentDataHolder
- 所有已知子接口:
Banner
,Barrel
,Beacon
,Bed
,Beehive
,Bell
,BlastFurnace
,BrewingStand
,BrushableBlock
,CalibratedSculkSensor
,Campfire
,Chest
,ChiseledBookshelf
,CommandBlock
,Comparator
,Conduit
,Container
,Crafter
,CreatureSpawner
,DaylightDetector
,DecoratedPot
,Dispenser
,Dropper
,EnchantingTable
,EnderChest
,EndGateway
,EntityBlockStorage<T>
,Furnace
,HangingSign
,Hopper
,Jigsaw
,Jukebox
,Lectern
,SculkCatalyst
,SculkSensor
,SculkShrieker
,ShulkerBox
,Sign
,Skull
,Smoker
,Structure
,SuspiciousSand
,TrialSpawner
,Vault
代表持有指定位置的 tile entity 的方块状态.
接口本身只是一个不提供任何数据的类型标记.
有关 tile entities 的数据由各自 tile entity 类型对应的接口提供.
在修改由 TileState 提供的数据后, 别忘了使用
BlockState.update()
来存储修改的数据.-
方法概要
从接口继承的方法 org.bukkit.block.BlockState
copy, copy, getBlock, getBlockData, getChunk, getData, getLightLevel, getLocation, getLocation, getRawData, getType, getWorld, getX, getY, getZ, isPlaced, setBlockData, setData, setRawData, setType, update, update, update
从接口继承的方法 org.bukkit.metadata.Metadatable
getMetadata, hasMetadata, removeMetadata, setMetadata
-
方法详细资料
-
getPersistentDataContainer
返回一个可在此对象上存储标签的自定义标签容器. 注意:存储于此容器的标签全部存储于它们自己自定义的命名空间, 因此使用本PersistentDataHolder
修改默认标签是不可能的.本
PersistentDataHolder
对象只与由BlockState
存储的快照实例相关联 (另注:实际的 tile entity 上数据更新时也不会反应到此容器中, 也就是说, 本方法获取到的容器也是一种快照). 当更新存储于PersistentDataHolder
中的内容时, 更新的内容需要调用BlockState.update()
方法才会应用于实际的 tile entity.原文:Returns a custom tag container capable of storing tags on the object. Note that the tags stored on this container are all stored under their own custom namespace therefore modifying default tags using this
PersistentDataHolder
is impossible.This
PersistentDataHolder
is only linked to the snapshot instance stored by theBlockState
. When storing changes on thePersistentDataHolder
, the updated content will only be applied to the actual tile entity after one of theBlockState.update()
methods is called.- 指定者:
getPersistentDataContainer
在接口中PersistentDataHolder
- 返回:
- 自定义标签容器
-