So 네이밍 변경

This commit is contained in:
NTG_Lenovo 2025-07-14 14:11:22 +09:00
parent 510d2a1466
commit c1ac0130c5
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
using UnityEngine;
using UnityEngine.InputSystem;
namespace DDD
{
[CreateAssetMenu(fileName = "RestaurantPlayerDataSo", menuName = "ScriptableObjects/RestaurantPlayerDataSo")]
public class RestaurantPlayerDataSo : ScriptableObject
{
public bool IsMoveEnabled = true;
public float MoveSpeed = 7f;
public bool IsDashEnabled = true;
public float DashSpeed = 20f;
public float DashTime = 0.2f;
public float DashCooldown = 2f;
public string WalkingSfxName;
public string DashSfxName;
public InputActionReference MoveActionReference;
public InputActionReference DashActionReference;
}
}

View File

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 5583898a24cc9c7419aec8b01ee0fde4