mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:35:34 +00:00
3D Explosions
This commit is contained in:
parent
aa8f6c6fa8
commit
ad63d2ff43
20 changed files with 207 additions and 19 deletions
12
Scripts/Components/Actors/PooledAnimatedSpritePlayer3D.cs
Normal file
12
Scripts/Components/Actors/PooledAnimatedSpritePlayer3D.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using Godot;
|
||||
|
||||
namespace Cirno.Scripts.Components.Actors;
|
||||
|
||||
public partial class PooledAnimatedSpritePlayer3D : AnimatedSprite3D
|
||||
{
|
||||
public void PlayAnimation()
|
||||
{
|
||||
this.SetFrame(0);
|
||||
this.Play();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
uid://cvk4jbit45sfi
|
||||
Loading…
Add table
Add a link
Reference in a new issue