module

Animated Walls

Endorsements
0
Installs
0.7%
Comments
0
Latest version0.6
Minimum Core0.8.6
Compatible Core0.8.8
Last updated1 year ago
Created2 years ago
Authors
Languages English
Systems All systems
Dependencies socketlib
libWrapper
Project source Project URL

Animated Walls

Animate your walls with rotation and movement animations.

 

 

Forewarning

Animating walls is expensive in terms of performance, on large maps running an animation will cause stuttering, there is no real way around it. That said Animated Walls is not doing anything while walls are not animating so it will never passively impact performance

How to use:

This configuration is added to the wall configuration(only the relevant fields will be displayed depending on the chosen animation:

image

Animations are activated with the door button, so the wall needs to be a door (it can be secret) You have 2 options for animation, move and rotate.

MOVE:

You need the following fields for it to work: Distance: How much the wall will move, this is in pixels, so if your grid size is 100, 100 will move it by 1 square RotationDirection: This is the direction of the movement in degrees, 0 will move to the right, 90 to the bottom 180 to the left 270 to the top, and all the values in-between are supported as well Duration: The time needed from start to finish of the animation

ROTATE:

You need the following fields for it to work: Anchor: The fixed point to use for the rotation, you can use leftrighttopbottom and the system will calculate the point of your wall which is the leftmost,rightmost etc... You can use center, or you can manually set a point (P1P2) there is no way to visualize (currently) which point is which but you can test it out. RotationDirection: This is how many degrees to rotate, use a negative value to reverse the direction of rotation Duration: The time needed from start to finish of the animation

Reverse animation on subsequent activations: This checkbox will play the animation in reverse on subsequent activation (eg opening and closing a door)

Execute macro: The name of the macro to be executed when the door is clicked (this is indipendent of the animation and will work even if the animation is set to none). Note that args[0] is the wall that triggered the event

Execute Animation:

When you have an animation setup, the door icon will show a play button (gm only) when clicking on the door icon the wall will animate instead of openingclosing the door

FAQ

How do i do a door that opens gradually?: (aka a peaking door). Simply set the animation to rotate, input p1 or p2 in the anchor and set the rotation to something like 10 degrees. If you don't check the reverse animation every time you click on the door icon the door will open by 10 degrees, the only side effect is that you are gonna have to close the door manually since there is no reverse animation, you could automate this with a macro (if you really wanted)

Macros and Scripts

You can chain together animation and call them via scripts, this works also well with sequencer, for example you could play a tile animation together with the wall animation

You can create a moving animation or rotating animation via the WallAnimation class. Eg:

Moving animation:

const moveAnim = new WallAnimation(wall, timeInMs,{type: 'move', direction: inRadians, distance: inPixels})

Rotating animation

const rotateAnim = new WallAnimation(wall, timeInMs,{type: 'rotate', rotation: inRadians, anchor: "p1"||"p2"||"c"})

Full example with 2 animations

    const moveAnim = new WallAnimation(wall, 3000,{type: 'move', direction: Math.PI, distance: 1000})
    const rotateAnim = new WallAnimation(wall, 3000,{type: 'rotate', rotation: Math.PI, anchor: "p1"})
    await wall.animate({sequence: [moveAnim, rotateAnim]})
    //Do something after the animation is done
Subscribe
Notify of
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x