— — — — —
— — — — —
— — — — —
— — — — —
— — — — —
— — — — —
— — — — —
— — — — —
Moves the platform tile to the specified waypoint at its assigned movement speed.
move_platform(tile, waypoint_name, pause)
Argument | Description | Type | Required |
---|---|---|---|
tile | Platform tile that will be moved. | Entity | Yes |
waypoint_name | Name of the destination waypoint. | String | Yes |
pause | Whether or not script should be paused until the waypoint has been reached. Defaults to false. | Boolean | No |
A tile can be configured as a platform by selecting it in the Map Editor and enabling the “Moving Platform” option from the Entity Properties panel. See Platforms for more information.
move_platform(entity["wooden_platform"], "Across Pit");
Results: The platform tile with an ID of “wooden_platform” moves from its current location to the coordinate for the waypoint named “Across Pit”.
Use the Move Platform function to transport the player character on an elevator to the upper floor of a building or on a raft across a wide river.