This commit is contained in:
luboslenco
2024-02-06 19:32:21 +01:00
parent fd9bdbeec5
commit 779218d9b8
110 changed files with 2367 additions and 2360 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ class FloatNode extends LogicNode {
else this.value = value;
}
static def: TNode = {
static def: zui_node_t = {
id: 0,
name: _tr("Value"),
type: "FloatNode",
+1 -1
View File
@@ -127,7 +127,7 @@ class MathNode extends LogicNode {
});
}
static def: TNode = {
static def: zui_node_t = {
id: 0,
name: _tr("Math"),
type: "MathNode",
+1 -1
View File
@@ -51,7 +51,7 @@ class RandomNode extends LogicNode {
return RandomNode.getInt() / 0x7fffffff;
}
static def: TNode = {
static def: zui_node_t = {
id: 0,
name: _tr("Random"),
type: "RandomNode",
+1 -1
View File
@@ -13,7 +13,7 @@ class SeparateVectorNode extends LogicNode {
});
}
static def: TNode = {
static def: zui_node_t = {
id: 0,
name: _tr("Separate Vector"),
type: "SeparateVectorNode",
+1 -1
View File
@@ -11,7 +11,7 @@ class TimeNode extends LogicNode {
else done(Context.raw.brushTime);
}
static def: TNode = {
static def: zui_node_t = {
id: 0,
name: _tr("Time"),
type: "TimeNode",
+1 -1
View File
@@ -133,7 +133,7 @@ class VectorMathNode extends LogicNode {
});
}
static def: TNode = {
static def: zui_node_t = {
id: 0,
name: _tr("Vector Math"),
type: "VectorMathNode",
+1 -1
View File
@@ -51,7 +51,7 @@ class VectorNode extends LogicNode {
this.inputs[2].set(value.z);
}
static def: TNode = {
static def: zui_node_t = {
id: 0,
name: _tr("Vector"),
type: "VectorNode",