10 lines
232 B
GDScript3
10 lines
232 B
GDScript3
|
|
class_name StartMenu extends Node3D
|
||
|
|
|
||
|
|
|
||
|
|
@onready var base_environment: Node = $base_environment
|
||
|
|
@onready var animation_player: AnimationPlayer = $animation_player
|
||
|
|
|
||
|
|
|
||
|
|
func _ready() -> void:
|
||
|
|
animation_player.play("rotation")
|