Small Godot Wild Jam game
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove uneeded main scene load vars

+7 -7
+7 -7
Scenes/menu/menu.gd
··· 27 27 28 28 var params := { 29 29 "show_progress_bar": true, 30 - "a_number": 10, 31 - "a_string": "Ciao!", 32 - "an_array": [1, 2, 3, 4], 33 - "a_dict": { 34 - "name": "test", 35 - "val": 15 36 - }, 30 + #"a_number": 10, 31 + #"a_string": "Ciao!", 32 + #"an_array": [1, 2, 3, 4], 33 + #"a_dict": { 34 + #"name": "test", 35 + #"val": 15 36 + #}, 37 37 } 38 38 Game.change_scene_to_file("res://Scenes/gameplay/gameplay.tscn", params) 39 39