Pixel-Composer/scripts/node_value_rotation/node_value_rotation.gml

24 lines
932 B
Plaintext
Raw Normal View History

2024-08-08 06:57:51 +02:00
function nodeValue_Rotation(_name, _node, _value, _tooltip = "") { return new NodeValue_Rotation(_name, _node, _value, _tooltip); }
2024-08-07 11:48:39 +02:00
2024-08-20 10:15:53 +02:00
function NodeValue_Rotation(_name, _node, _value, _tooltip = "") : NodeValue(_name, _node, CONNECT_TYPE.input, VALUE_TYPE.float, _value, _tooltip) constructor {
2024-08-07 11:48:39 +02:00
setDisplay(VALUE_DISPLAY.rotation);
/////============== GET =============
static getValue = function(_time = CURRENT_FRAME, applyUnit = true, arrIndex = 0, useCache = false, log = false) { //// Get value
getValueRecursive(self.__curr_get_val, _time);
var val = __curr_get_val[0];
var nod = __curr_get_val[1];
2024-08-09 13:30:09 +02:00
var typ = nod.type;
2024-08-07 11:48:39 +02:00
if(typ == VALUE_TYPE.text) val = toNumber(val);
return val;
}
static __getAnimValue = function(_time = CURRENT_FRAME) {
if(is_anim) return animator.getValue(_time);
return array_empty(animator.values)? 0 : animator.values[0].value;
2024-08-07 11:48:39 +02:00
}
static arrayLength = arrayLengthSimple;
2024-08-07 11:48:39 +02:00
}