2026-02-02 12:41:06 +00:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
[CreateAssetMenu(fileName = "NewPlayerData", menuName = "Scriptable Objects/Player Data")]
|
|
|
|
|
public class PlayerData : ScriptableObject
|
|
|
|
|
{
|
|
|
|
|
[Header("Base Info")]
|
|
|
|
|
public float playerDefaultSpeed;
|
|
|
|
|
public float playerDashSpeed;
|
|
|
|
|
public float playerJumpPower;
|
|
|
|
|
public int playerMaxJumpCount;
|
|
|
|
|
public int playerHp;
|
|
|
|
|
public int playerStamina;
|
2026-02-03 08:26:37 +00:00
|
|
|
public float playerCurrentGauge;
|
|
|
|
|
public float playerMaxGauge;
|
|
|
|
|
public int playerTagCount;
|
2026-02-02 12:41:06 +00:00
|
|
|
}
|