10 lines
232 B
GDScript
10 lines
232 B
GDScript
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")
|