-
-
Save todorok1/75c49219774c4f3d593d3c9fc02cfc24 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第116回 敵キャラクターとのエンカウントを管理するクラス
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> | |
| [SerializeField] | |
| EventFileData _loseEvent; | |
| /// <summary> | |
| /// 戦闘で使用するBGMの名前です。 | |
| /// </summary> | |
| [SerializeField] | |
| string _battleBgmName = BgmNames.Battle; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment