We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d46ce51 commit 17217c7Copy full SHA for 17217c7
README.md
@@ -9,9 +9,9 @@ Creating Config:
9
[CreateAssetMenu(menuName = "Game/Configs/Player")]
10
public class PlayerConfig : Config
11
{
12
- [SerializeField] private float _startPlayerHealth = 100f;
+ [SerializeField] private float _startHealth = 100f;
13
14
- public float StartPlayerHealth => _startPlayerHealth;
+ public float StartHealth => _startHealth;
15
}
16
```
17
@@ -26,7 +26,7 @@ Get Data from Config:
26
27
private void Awake()
28
29
- _health = Config.Get<PlayerConfig>().StartPlayerHealth;
+ _health = Config.Get<PlayerConfig>().StartHealth;
30
31
32
0 commit comments