Pixel-Composer/scripts/node_animation_control/node_animation_control.gml
2023-06-04 12:38:40 +02:00

54 lines
1.5 KiB
Plaintext

function Node_Animation_Control(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "Animation Control";
w = 96;
h = 96;
min_h = h;
inputs[| 0] = nodeValue("Toggle Play / Pause", self, JUNCTION_CONNECT.input, VALUE_TYPE.trigger, 0);
inputs[| 1] = nodeValue("Pause", self, JUNCTION_CONNECT.input, VALUE_TYPE.trigger, 0);
inputs[| 2] = nodeValue("Resume", self, JUNCTION_CONNECT.input, VALUE_TYPE.trigger, 0);
inputs[| 3] = nodeValue("Play From Beginning", self, JUNCTION_CONNECT.input, VALUE_TYPE.trigger, 0);
inputs[| 4] = nodeValue("Play once", self, JUNCTION_CONNECT.input, VALUE_TYPE.trigger, 0);
inputs[| 5] = nodeValue("Skip Frames", self, JUNCTION_CONNECT.input, VALUE_TYPE.trigger, 0);
inputs[| 6] = nodeValue("Skip Frames Count", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 1);
static step = function() {
if(inputs[| 0].getValue())
ANIMATOR.toggle();
if(inputs[| 1].getValue())
ANIMATOR.pause();
if(inputs[| 2].getValue())
ANIMATOR.resume();
if(inputs[| 3].getValue()) {
ANIMATOR.stop();
ANIMATOR.play();
}
if(inputs[| 4].getValue())
ANIMATOR.render();
if(inputs[| 5].getValue()) {
var fr = inputs[| 6].getValue();
ANIMATOR.setFrame(ANIMATOR.current_frame + fr);
}
}
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
var bbox = drawGetBbox(xx, yy, _s);
var ind = 0;
if(ANIMATOR.is_playing) ind = 1;
draw_sprite_fit(THEME.sequence_control, ind, bbox.xc, bbox.yc, bbox.w, bbox.h);
}
}