Move math to c

This commit is contained in:
luboslenco
2024-09-08 21:53:39 +02:00
parent 5332c67ffc
commit 7c4275ea06
37 changed files with 454 additions and 371 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ function string_node_get(self: string_node_t, from: i32): logic_node_value_t {
return logic_node_input_get(self.base.inputs[0]);
}
else {
let v: logic_node_value_t = { _any: self.value };
let v: logic_node_value_t = { _str: self.value };
return v;
}
}