Newer
Older
DungeonShooting / src / effect / Hit.cs
@小李xl 小李xl on 29 May 2022 193 bytes 子弹击中墙壁特效
using Godot;

public class Hit : AnimatedSprite
{
    /// <summary>
    /// 动画结束, 销毁
    /// </summary>
	private void _on_Hit_animation_finished()
    {
        QueueFree();
    }
}