mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-26 15:06:22 +01:00
12 lines
No EOL
264 B
Text
12 lines
No EOL
264 B
Text
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";
|
|
auto_update = false;
|
|
use_cache = true;
|
|
|
|
} |