Godot
[Godot] AnimationPlayer 애니메이션 플레이어
J-sean
2024. 2. 16. 16:24
반응형
애니메이션 플레이어를 사용해 보자.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using Godot;
public partial class Control : Sprite2D
{
public AnimationPlayer Player;
public override void _Ready()
{
Player = GetNode<AnimationPlayer>("../AnimationPlayer");
}
public override void _Process(double delta)
{
if (Input.IsActionJustPressed("ui_accept"))
Player.Play("ani_1");
}
}
|
추가된 스크립트에 위와 같은 코드를 작성한다.
※ 참고
반응형