mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-21 13:56:50 +01:00
9 lines
116 B
GDScript3
9 lines
116 B
GDScript3
|
extends Camera
|
||
|
|
||
|
|
||
|
func _ready() -> void:
|
||
|
if is_network_master():
|
||
|
current = true
|
||
|
else:
|
||
|
set_process_input(false)
|