9 lines
214 B
C#
9 lines
214 B
C#
namespace Movementtests.player_controller.Scripts;
|
|
|
|
public partial class AnimationPlayer : Godot.AnimationPlayer
|
|
{
|
|
public void PlayCameraRotationOnDeath()
|
|
{
|
|
Play(Constants.PLAYERS_HEAD_ANIMATION_ON_DYING);
|
|
}
|
|
} |