Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created January 1, 2025 09:13
Show Gist options
  • Select an option

  • Save todorok1/f2febabe81da7f3f56232d5066b91d29 to your computer and use it in GitHub Desktop.

Select an option

Save todorok1/f2febabe81da7f3f56232d5066b91d29 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第6回 アニメーション関係の定義値用クラス
namespace SimpleRpg
{
/// <summary>
/// アニメーションに関する定義値を保持するクラスです。
/// </summary>
public static class AnimationSettings
{
/// <summary>
/// 移動アニメーションの方向のパラメータ名です。
/// </summary>
public static readonly string DirectionParameterName = "Direction";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment