diff options
| author | Anson Bridges <bridges.anson@gmail.com> | 2022-10-20 13:54:06 -0400 |
|---|---|---|
| committer | Anson Bridges <bridges.anson@gmail.com> | 2022-10-20 13:54:06 -0400 |
| commit | d34c96aa69d2aee1aaa3bb12366b36ff22d674c0 (patch) | |
| tree | 12c32c2c452922c92d1daf84a4bd5bebb539c204 /godot/scripts/machines | |
| parent | 6dd265a0aee5fa0ed21b3d272fa3bc07d5d483d9 (diff) | |
Diffstat (limited to 'godot/scripts/machines')
| -rw-r--r-- | godot/scripts/machines/NetworkedMachineGDS.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/godot/scripts/machines/NetworkedMachineGDS.gd b/godot/scripts/machines/NetworkedMachineGDS.gd index 91dbeb4..19ff29a 100644 --- a/godot/scripts/machines/NetworkedMachineGDS.gd +++ b/godot/scripts/machines/NetworkedMachineGDS.gd @@ -19,7 +19,7 @@ remotesync func net_apply_impulse(impulse_v: Vector3): func _integrate_forces(_state: PhysicsDirectBodyState): if is_network_master() and mode == MODE_RIGID: - rpc("update_phys_transform", transform, linear_velocity, angular_velocity) + rpc_unreliable("update_phys_transform", transform, linear_velocity, angular_velocity) remotesync func set_net_owner(id: int, char_name: String): set_network_master(id) |
