你可以帮助我们来翻译此条目,但请勿使用机器翻译。
FallingSand(落沙) 是一种在最初与普通实体拥有同样的生成方式的、受物理影响的实体,包括普通的沙子或沙砾。正是这一种实体的特性使得它有多种多样的应用。这里讲述的是一些极其简单的、有关命令方块的应用。
Commands
最基础的落沙实体命令是把下面的东西打进命令方块:
/summon FallingSand ~ ~ ~ {TileID:1}
This command summons in a FallingSand entity in the same (x,y,z) coordinates as the command block, marked by ~ ~ ~. Also, it is a stone block, as a stone block has a tile ID number of 1. Alternatively, Block can be used instead of TileID. Despite changes from numeric IDs to letter IDs in Minecraft 1.8, the tile IDs remain in numeric form. To spawn the block in another location, add numbers after the tildes, for example ~5 ~10 ~-3.
Extra data can be inserted in the NBT tags to modify the how long in seconds the block remains in the air. This NBT tag is Time. Time stands for the time (in ticks) for how long the FallingSand has existed. If 0, the entity despawns, if 1 or greater, will continue ticking up, until it reaches its maximum lifetime of 600 ticks, or 30 seconds. Adding a value of time for the block will cause the block to assume a physical form when coming in contact with the ground, just like a normal sand block falling downwards. Ensure that the different data values are separated by commas:
/summon FallingSand ~ ~ ~ {TileID:1,Time:1}
/summon FallingSand ~ ~ ~ {Block:"minecraft:bedrock",Time:1}
/summon FallingSand ~ ~ ~ {Block:netherrack,Time:1b}
If the FallingSand block spawns at the exact same coordinates as another block (if it would spawn inside a block), you will get a message: "Unable to summon object."
FallingSand does not necessarily need to fall. For an explosion-like feel, or even a simple bounce, FallingSand's motion path can be altered. Note the use of square brackets for the Motion tag:
/summon FallingSand ~ ~2 ~ {TileID:1,Time:1,Motion:[x:0.0,y:0.3,z:0.0]}
The maximum lifetime – 30 seconds – cannot realistically be reached from {Time:1} unless the FallingSand is riding another entity (in which case it isn't falling, but its time is still ticking) or is spawned high enough that it can fall for at least 2,050 blocks (assuming an acceleration of 4.56 m/s2).
FallingSand can be used to summon multiple blocks using the 'riding' NBT tag. Summoning multiple command blocks is the way you make 'one block commands'.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

