-
-
Save todorok1/26b22493743917996ddc638950f27fb1 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第72回 味方キャラクターのステータスをセットアップするクラス
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] | |
| int _playerLevel = 1; | |
| /// <summary> | |
| /// 装備中の武器のIDです。 | |
| /// </summary> | |
| [SerializeField] | |
| int _weaponId; | |
| /// <summary> | |
| /// 装備中の防具のIDです。 | |
| /// </summary> | |
| [SerializeField] | |
| int _armorId; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment