Difference between revisions of "TrainCarts/Signs/Animate"
Jump to navigation
Jump to search
Bergerkiller (talk | contribs) (Add note about reverse playback) |
Bergerkiller (talk | contribs) (Add note about scenes) |
||
Line 12: | Line 12: | ||
− | {{sign|[train]|animate | + | {{sign|[train]|animate lr|rotate|0.5 0.4}} |
Line 19: | Line 19: | ||
* Third line: animation name. By default animations ''rotate'', ''roll'' and ''pitch'' can be used to animate the entire Minecart | * Third line: animation name. By default animations ''rotate'', ''roll'' and ''pitch'' can be used to animate the entire Minecart | ||
* Fourth line: can be left empty, otherwise the speed and delay for playing the animation can be specified. The speed is multiplied with the speed(s) of the animations played, and the delay is added. First number is speed, if a second number is specified with a space between it, that is the delay. To play an animation in reverse, use a negative speed. | * Fourth line: can be left empty, otherwise the speed and delay for playing the animation can be specified. The speed is multiplied with the speed(s) of the animations played, and the delay is added. First number is speed, if a second number is specified with a space between it, that is the delay. To play an animation in reverse, use a negative speed. | ||
+ | |||
+ | == Scenes == | ||
+ | As of version 1.17.1-v2 it is possible to create scenes in the animations of trains. To play a specific scene with a sign, put it on the sign as such: | ||
+ | {{sign|[train]|animate|doors[open]|1.0}} | ||
+ | |||
+ | Which will play scene 'open' of animation 'doors'. You can also specify a range of scenes to play using ''animation[scenestart:sceneend]'', or ''animation[:scene]'' to play from the beginning of the animation to this scene, or ''animation[scene:]'' to play from the scene to the end of the animation. |
Revision as of 00:11, 29 November 2021
Introduction
The animate sign plays animations stored inside the train's attachments. It can override certain properties of the animation, such as speed and whether to loop it. Animations can be played for all minecarts in the train, for a single minecart, or for a remote train using remote control.
Syntax
[train]
animate
rotate
[train]
animate looped
roll
0.5
[train]
animate lr
rotate
0.5 0.4
- First line: [train] to play the animation in all Minecarts, [cart] to only play it for the Minecart that is above the sign right now. Remote control can also be used.
- Second line: animate, optionally followed up by looped (to loop it) or reset (to reset to the start of the animation). To do both, use l r
- Third line: animation name. By default animations rotate, roll and pitch can be used to animate the entire Minecart
- Fourth line: can be left empty, otherwise the speed and delay for playing the animation can be specified. The speed is multiplied with the speed(s) of the animations played, and the delay is added. First number is speed, if a second number is specified with a space between it, that is the delay. To play an animation in reverse, use a negative speed.
Scenes
As of version 1.17.1-v2 it is possible to create scenes in the animations of trains. To play a specific scene with a sign, put it on the sign as such:
[train]
animate
doors[open]
1.0
Which will play scene 'open' of animation 'doors'. You can also specify a range of scenes to play using animation[scenestart:sceneend], or animation[:scene] to play from the beginning of the animation to this scene, or animation[scene:] to play from the scene to the end of the animation.