Commit eda0937f authored by 16이상민's avatar 16이상민

Edit Joystick logic

parent f8b91bf3
......@@ -14,6 +14,6 @@ public class ButtonStatus : MonoBehaviour
void Update ()
{
Manager.IsButtonDown = Input.GetKey(KeyCode.Space) ||
Input.GetKey(KeyCode.Joystick1Button0);
Input.GetKey(KeyCode.JoystickButton0);
}
}
......@@ -42,8 +42,27 @@ public class TrackManager : MonoBehaviour
}
}
KeyDown PrevJoyAxis = KeyDown.None, CurrJoyAxis = KeyDown.None;
private KeyDown JoyState
{
get
{
if ((PrevJoyAxis == KeyDown.None &&
CurrJoyAxis == KeyDown.Down))
return KeyDown.Down;
if ((PrevJoyAxis == KeyDown.None &&
CurrJoyAxis == KeyDown.Up))
return KeyDown.Up;
return KeyDown.None;
}
}
bool IsPressedStart
{ get { return Input.GetKey(KeyCode.Space); } }
{ get { return Input.GetKey(KeyCode.Space) ||
Input.GetKey(KeyCode.JoystickButton0); } }
// Use this for initialization
void Start()
......@@ -58,6 +77,14 @@ public class TrackManager : MonoBehaviour
// Update is called once per frame
void Update()
{
PrevJoyAxis = CurrJoyAxis;
if (Input.GetAxis("Vertical") > 0)
CurrJoyAxis = KeyDown.Down;
else if (Input.GetAxis("Vertical") < 0)
CurrJoyAxis = KeyDown.Up;
else
CurrJoyAxis = KeyDown.None;
ScrollTrackList();
if (IsPressedStart)
......@@ -66,9 +93,11 @@ public class TrackManager : MonoBehaviour
void ScrollTrackList()
{
if (Pressed == KeyDown.Down)
if (Pressed == KeyDown.Down ||
JoyState == KeyDown.Down)
DownScroll();
else if (Pressed == KeyDown.Up)
else if (Pressed == KeyDown.Up ||
JoyState == KeyDown.Up)
UpScroll();
}
......
......@@ -34,8 +34,8 @@ InputManager:
sensitivity: 3
snap: 1
invert: 0
type: 0
axis: 0
type: 2
axis: 1
joyNum: 0
- serializedVersion: 3
m_Name: Fire1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment