-
-
Save todorok1/f2febabe81da7f3f56232d5066b91d29 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第6回 アニメーション関係の定義値用クラス
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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