mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
29 lines
730 B
Plaintext
29 lines
730 B
Plaintext
function Node_create_Timeline_Preview(_x, _y) {
|
|
var node = new Node_Timeline_Preview(_x, _y);
|
|
ds_list_add(PANEL_GRAPH.nodes_list, node);
|
|
return node;
|
|
}
|
|
|
|
function Node_Timeline_Preview(_x, _y) : Node(_x, _y) constructor {
|
|
name = "Timeline";
|
|
use_cache = true;
|
|
color = c_ui_cyan;
|
|
|
|
w = 96;
|
|
min_h = 0;
|
|
|
|
PANEL_ANIMATION.timeline_preview = self;
|
|
|
|
inputs[| 0] = nodeValue(0, "Surface", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, 0);
|
|
|
|
function update() {
|
|
var _inSurf = inputs[| 0].getValue();
|
|
if(_inSurf == 0) return;
|
|
|
|
if(is_array(_inSurf)) {
|
|
if(surface_exists(_inSurf[preview_index]))
|
|
cacheCurrentFrame(_inSurf[preview_index]);
|
|
} else if(surface_exists(_inSurf))
|
|
cacheCurrentFrame(_inSurf);
|
|
}
|
|
} |