musics etc
This commit is contained in:
parent
2e310f4053
commit
bb6404e918
36 changed files with 652 additions and 130 deletions
11
entities/mainMenu/main_menu.gd
Normal file
11
entities/mainMenu/main_menu.gd
Normal file
|
@ -0,0 +1,11 @@
|
|||
extends Control
|
||||
|
||||
|
||||
func _on_button_1_pressed() -> void:
|
||||
get_tree().change_scene_to_packed(CheckPointManager.LEVELS[0])
|
||||
|
||||
func _on_button_2_pressed() -> void:
|
||||
get_tree().change_scene_to_packed(CheckPointManager.LEVELS[0])
|
||||
|
||||
func _on_button_3_pressed() -> void:
|
||||
get_tree().change_scene_to_packed(CheckPointManager.LEVELS[0])
|
1
entities/mainMenu/main_menu.gd.uid
Normal file
1
entities/mainMenu/main_menu.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://cntibc2ih0im7
|
6
entities/mainMenu/moto_rotate.gd
Normal file
6
entities/mainMenu/moto_rotate.gd
Normal file
|
@ -0,0 +1,6 @@
|
|||
extends Node3D
|
||||
|
||||
@export var rotating_speed := 1.0
|
||||
|
||||
func _process(delta: float) -> void:
|
||||
rotate(Vector3.UP, delta*rotating_speed)
|
1
entities/mainMenu/moto_rotate.gd.uid
Normal file
1
entities/mainMenu/moto_rotate.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://dlrn4dviqqsdl
|
Loading…
Add table
Add a link
Reference in a new issue