mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-01-25 04:18:07 +01:00
20 lines
No EOL
857 B
Text
20 lines
No EOL
857 B
Text
function nodeValue_Atlas(_name, _node, _value = [], _tooltip = "") { return new __NodeValue_Atlas(_name, _node, _value, _tooltip); }
|
|
|
|
function __NodeValue_Atlas(_name, _node, _value, _tooltip = "") : NodeValue(_name, _node, CONNECT_TYPE.input, VALUE_TYPE.atlas, _value, _tooltip) constructor {
|
|
|
|
animable = false;
|
|
|
|
/////============== 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]; if(!is(nod, NodeValue)) return val;
|
|
|
|
return val;
|
|
}
|
|
|
|
static __getAnimValue = function(_time = CURRENT_FRAME) { return array_empty(animator.values)? noone : animator.processValue(animator.values[0].value); }
|
|
|
|
static arrayLength = arrayLengthSimple;
|
|
} |