Files
armorpaint/Sources/arm/logicnode/StringNode.hx
T
Lubos Lenco bda8b2d54f Init
2017-12-14 11:12:51 +01:00

25 lines
483 B
Haxe

package arm.logicnode;
import armory.logicnode.LogicNode;
import armory.logicnode.LogicTree;
class StringNode extends LogicNode {
public var value:String;
public function new(tree:LogicTree, value = "") {
super(tree);
this.value = value;
}
override function get(from:Int):Dynamic {
if (inputs.length > 0) return inputs[0].get();
return value;
}
override function set(value:Dynamic) {
if (inputs.length > 0) inputs[0].set(value);
else this.value = value;
}
}