Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created August 13, 2025 09:05
Show Gist options
  • Select an option

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

Select an option

Save todorok1/881de94cdf7e8c6a60f7a434ff4679eb to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第116回 戦闘機能を呼び出すイベントを処理するクラス
/// <summary>
/// 戦闘に負けた時に呼ばれるイベントの処理です。
/// </summary>
[SerializeField]
EventProcessBase _loseProcess;
/// <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