-
-
Save todorok1/5801c4bfec0ed254b114dd6f4d3598eb to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第70回 味方キャラクターのステータスをセットアップするクラス
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] | |
List<int> _partyCharacters = new() {1}; | |
/// <summary> | |
/// 味方キャラクターのレベルです。 | |
/// </summary> | |
[SerializeField] | |
int _playerLevel = 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment