oh-my-git/scenes/shell_command.gd

15 lines
238 B
GDScript3
Raw Normal View History

extends Node
class_name ShellCommand
signal done
var command
var output
var exit_code
var crash_on_fail = true
var thread
2020-11-10 22:37:10 +01:00
func _unused():
# This is just to suppress a warning about the signal never being emitted.
emit_signal("done")