조이스틱 동작이 자연스럽게 구현하도록 수정 및 에디터 상에서 좌우 입력과 점프 동작 추가 적용함

This commit is contained in:
aube.lee
2025-01-28 18:45:33 +09:00
parent 752d02324a
commit e04ef0c613
11 changed files with 367 additions and 207 deletions

View File

@@ -5,6 +5,9 @@ using UnityEngine.EventSystems;
namespace TON
{
/// <summary>
/// Joystick Assets에서 가져온 조이스틱 초기화 스크립트
/// </summary>
public class VariableJoystick : Joystick
{
public float MoveThreshold { get { return moveThreshold; } set { moveThreshold = Mathf.Abs(value); } }