mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-06-30 19:15:31 +02:00
Adds process_mode property to PTY which can be set to IDLE or PHYSICS. Determines whether the PTY will be updated in the `_process()` or `_physics_process()` step. Defaults to PHYSICS.
9 lines
156 B
GDScript
9 lines
156 B
GDScript
extends "res://addons/godot_xterm/nodes/pty/pty_native.gd"
|
|
|
|
|
|
func write(data):
|
|
emit_signal("data_received", data)
|
|
|
|
|
|
func run_process(_delta: float):
|
|
pass
|