mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-03 16:55:14 +01:00
[Array] Fix hidden junction still showing value.
This commit is contained in:
parent
d164ab9ca9
commit
22ca680fe4
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ function Node_Array(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
|
|||
|
||||
for(var i = input_fix_len; i < array_length(inputs); i += data_length) {
|
||||
var val = inputs[i];
|
||||
if(!val.visible) continue;
|
||||
if(!val.isVisible()) continue;
|
||||
|
||||
var key = getInputData(i, "");
|
||||
|
||||
|
|
Loading…
Reference in a new issue