My first 2D game in Godot 4.4

This commit is contained in:
2025-08-18 19:39:33 -04:00
commit 35600f72f9
83 changed files with 2512 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
extends Node2D
func _ready():
%Smoke.material.set_shader_parameter("texture_offset", Vector2(randfn(0.0, 1.0), randfn(0.0, 1.0)))
%AnimationPlayer.play("explosion")
await %AnimationPlayer.animation_finished
queue_free()