Pixel-Composer/scripts/node_fracture/node_fracture.gml

12 lines
264 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
function Node_create_Fracture(_x, _y) {
var node = new Node_Fracture(_x, _y);
ds_list_add(PANEL_GRAPH.nodes_list, node);
return node;
}
function Node_Fracture(_x, _y) : Node(_x, _y) constructor {
name = "Fracture";
2022-01-14 02:44:58 +01:00
auto_update = false;
use_cache = true;
2022-01-13 05:24:03 +01:00
}