This commit is contained in:
2026-04-23 09:34:04 +03:00
commit 2c795a2938
26 changed files with 434 additions and 0 deletions

17
main.gd Normal file
View File

@@ -0,0 +1,17 @@
extends Node2D
@onready var ANOTHERHIM = $AnotherHim
func startMusic() -> void:
ANOTHERHIM.pitch_scale = 0.1
ANOTHERHIM.play()
create_tween() \
.tween_property(ANOTHERHIM, "pitch_scale", 1.0, 2.0) \
.set_trans(Tween.TRANS_SINE) \
.set_ease(Tween.EASE_IN)
func _ready() -> void:
startMusic()
func _process(delta: float) -> void:
pass