mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
fix process node
This commit is contained in:
parent
0bc814a38b
commit
6d8e64b90a
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ func _event_received(event_name: StringName, event_data: Dictionary = {}) -> voi
|
||||||
if event_name != &"process":
|
if event_name != &"process":
|
||||||
return
|
return
|
||||||
|
|
||||||
var run := resolve_input_port_value(0) != null
|
var run = resolve_input_port_value(0) == true
|
||||||
|
|
||||||
if !run:
|
if !run:
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue