Overhauled camera
This commit is contained in:
parent
5fe8f22ccb
commit
da78e7f287
21 changed files with 385 additions and 71 deletions
21
Networking/Networking.gd
Normal file
21
Networking/Networking.gd
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue