Pixel-Composer/scripts/node_value_struct/node_value_struct.gml

6 lines
373 B
Text
Raw Normal View History

function nodeValue_Struct(_name, _node, _value, _tooltip = "") { return new __NodeValue_Struct(_name, _node, _value, _tooltip); }
2024-08-07 11:48:39 +02:00
function __NodeValue_Struct(_name, _node, _value, _tooltip = "") : __NodeValue_Object_Generic(_name, _node, VALUE_TYPE.struct, _value, _tooltip) constructor {
2024-08-07 11:48:39 +02:00
2024-11-14 10:45:27 +01:00
static shortenDisplay = function() { editWidget.shorted = true; return self; }
2024-08-07 11:48:39 +02:00
}