Intialize and cleanup repo
This commit is contained in:
BIN
client/scenes/game.scn
Normal file
BIN
client/scenes/game.scn
Normal file
Binary file not shown.
37
client/scenes/icon.tscn
Normal file
37
client/scenes/icon.tscn
Normal file
File diff suppressed because one or more lines are too long
19
client/scenes/loader.tscn
Normal file
19
client/scenes/loader.tscn
Normal file
@ -0,0 +1,19 @@
|
||||
[gd_scene load_steps=2 format=2]
|
||||
|
||||
[sub_resource type="GDScript" id=1]
|
||||
script/source = "extends Node
|
||||
|
||||
var music = preload(\"res://nodes/MusicManager.tscn\")
|
||||
var network = preload(\"res://nodes/NetworkManager.tscn\")
|
||||
|
||||
func _ready():
|
||||
var root : Node = get_node(\"/root\")
|
||||
var m = music.instance()
|
||||
root.add_child(m)
|
||||
var n = network.instance()
|
||||
root.add_child(n)
|
||||
get_tree().change_scene(\"res://scenes/login.scn\")
|
||||
"
|
||||
|
||||
[node name="Node" type="Node"]
|
||||
script = SubResource( 1 )
|
BIN
client/scenes/login.scn
Normal file
BIN
client/scenes/login.scn
Normal file
Binary file not shown.
Reference in New Issue
Block a user