mirror of
https://github.com/thegatesbrowser/godot-multiplayer.git
synced 2025-08-23 00:17:09 -04:00
8 lines
121 B
GDScript
8 lines
121 B
GDScript
extends Camera3D
|
|
|
|
|
|
func _ready() -> void:
|
|
if is_multiplayer_authority():
|
|
make_current()
|
|
else:
|
|
clear_current(false)
|