diff options
| author | Anson Bridges <bridges.anson@gmail.com> | 2022-10-07 15:49:57 -0400 |
|---|---|---|
| committer | Anson Bridges <bridges.anson@gmail.com> | 2022-10-07 15:49:57 -0400 |
| commit | 7dbec964a375598d454e04719576eb6c469a5d7b (patch) | |
| tree | fa819e5e843ecdd88375ad1806ab43358b1ea670 /godot/scripts/machines | |
| parent | 62c33688cf2f48d7669790a89e3d1cdec16798be (diff) | |
ai work
Diffstat (limited to 'godot/scripts/machines')
| -rw-r--r-- | godot/scripts/machines/NetworkedMachineGDS.gd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/godot/scripts/machines/NetworkedMachineGDS.gd b/godot/scripts/machines/NetworkedMachineGDS.gd index a8ee1da..91dbeb4 100644 --- a/godot/scripts/machines/NetworkedMachineGDS.gd +++ b/godot/scripts/machines/NetworkedMachineGDS.gd @@ -1,8 +1,9 @@ extends RigidBody +class_name NetMachine var in_use: bool = false var controllable: bool = false -var user: RigidBody = null +var user: NetChar = null var world: Spatial = null func _ready(): |
