AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Script/Common/PSVitaKey.cs
2024-09-23 13:21:51 +08:00

33 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using UnityEngine;
namespace AxibugEmuOnline.Client.Common
{
public static class PSVitaKey
{
/// <summary>
/// ×
/// </summary>
public static KeyCode Cross => KeyCode.Joystick1Button0;
/// <summary>
/// ⭕
/// </summary>
public static KeyCode Circle => KeyCode.Joystick1Button1;
/// <summary>
/// □
/// </summary>
public static KeyCode Block => KeyCode.Joystick1Button2;
/// <summary>
/// 🔺
/// </summary>
public static KeyCode Triangle => KeyCode.Joystick1Button3;
public static KeyCode L => KeyCode.Joystick1Button4;
public static KeyCode R => KeyCode.Joystick1Button5;
public static KeyCode Select => KeyCode.Joystick1Button6;
public static KeyCode Start => KeyCode.Joystick1Button7;
public static KeyCode Up => KeyCode.Joystick1Button8;
public static KeyCode Right => KeyCode.Joystick1Button9;
public static KeyCode Down => KeyCode.Joystick1Button10;
public static KeyCode Left => KeyCode.Joystick1Button11
}
}