-
-
Save todorok1/af87d2525648d357f9892996d7054f8f to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第107回 キャラクターの移動を行うクラスの基底クラス
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
| /// <summary> | |
| /// 移動後に実行する処理を確認するフラグです。 | |
| /// </summary> | |
| protected bool _isCheckPostMove = true; | |
| /// <summary> | |
| /// 移動後に実行する処理を確認するコールバックです。 | |
| /// </summary> | |
| protected ICharacterMoveCallback _moveCallback; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment