Overhauled camera

This commit is contained in:
Sch1nken 2024-03-23 16:18:30 +01:00
parent 5fe8f22ccb
commit da78e7f287
21 changed files with 385 additions and 71 deletions

21
Networking/Networking.gd Normal file
View file

@ -0,0 +1,21 @@
extends Node
func create_enet_server(port: int) -> void:
# use timer to send udp broadcast packets to notify other LAN clients
pass
func connect_with_webrtc() -> void:
pass
func connect_with_enet() -> void:
pass
func lan_mode() -> void:
pass
func online_mode() -> void:
pass
func offline_mode() -> void:
multiplayer.multiplayer_peer = OfflineMultiplayerPeer.new()
pass