移植问题解决
This commit is contained in:
parent
64b9c02ef7
commit
fca038e67d
@ -1,3 +1,4 @@
|
|||||||
|
#if UNITY_EDITOR
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
@ -21,4 +22,5 @@ public class AxiPrefabCache_Com2GUID
|
|||||||
public string ToPATH;
|
public string ToPATH;
|
||||||
public string ToGUID;
|
public string ToGUID;
|
||||||
public MonoScript monoScript;
|
public MonoScript monoScript;
|
||||||
}
|
}
|
||||||
|
#endif
|
@ -1,3 +1,4 @@
|
|||||||
|
#if UNITY_EDITOR
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
@ -5,7 +6,6 @@ using System.Linq;
|
|||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEditor.SceneManagement;
|
using UnityEditor.SceneManagement;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.SceneManagement;
|
|
||||||
|
|
||||||
public class AxiProjectTools : EditorWindow
|
public class AxiProjectTools : EditorWindow
|
||||||
{
|
{
|
||||||
@ -412,4 +412,5 @@ public class AxiProjectTools : EditorWindow
|
|||||||
textureImporter.SaveAndReimport();
|
textureImporter.SaveAndReimport();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
@ -1,4 +1,6 @@
|
|||||||
using AxibugEmuOnline.Client.Event;
|
using AxibugEmuOnline.Client.ClientCore;
|
||||||
|
using AxibugEmuOnline.Client.Common;
|
||||||
|
using AxibugEmuOnline.Client.Event;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
@ -189,7 +191,14 @@ namespace AxibugEmuOnline.Client
|
|||||||
|
|
||||||
public static KeyListener GetKey(int controllerInput, EnumButtonType nesConBtnType)
|
public static KeyListener GetKey(int controllerInput, EnumButtonType nesConBtnType)
|
||||||
{
|
{
|
||||||
string configKey = $"NES_{controllerInput}_{nesConBtnType}";
|
string configKey = $"NES_{controllerInput}_{nesConBtnType}";
|
||||||
|
|
||||||
|
//PSV平台固定键值
|
||||||
|
if (UnityEngine.Application.platform == RuntimePlatform.PSP2)
|
||||||
|
{
|
||||||
|
return KeyListener.GetPSVitaKey(controllerInput, nesConBtnType);
|
||||||
|
}
|
||||||
|
|
||||||
if (PlayerPrefs.HasKey(configKey))
|
if (PlayerPrefs.HasKey(configKey))
|
||||||
{
|
{
|
||||||
return new KeyListener(PlayerPrefs.GetString(configKey));
|
return new KeyListener(PlayerPrefs.GetString(configKey));
|
||||||
@ -334,6 +343,38 @@ namespace AxibugEmuOnline.Client
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return default(KeyListener);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static KeyListener GetPSVitaKey(int controllerIndex, EnumButtonType nesConBtnType)
|
||||||
|
{
|
||||||
|
switch (controllerIndex)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
switch (nesConBtnType)
|
||||||
|
{
|
||||||
|
case EnumButtonType.LEFT:
|
||||||
|
return new KeyListener(PSVitaKey.Left);
|
||||||
|
case EnumButtonType.RIGHT:
|
||||||
|
return new KeyListener(PSVitaKey.Right);
|
||||||
|
case EnumButtonType.UP:
|
||||||
|
return new KeyListener(PSVitaKey.Up);
|
||||||
|
case EnumButtonType.DOWN:
|
||||||
|
return new KeyListener(PSVitaKey.Down);
|
||||||
|
case EnumButtonType.START:
|
||||||
|
return new KeyListener(PSVitaKey.Start);
|
||||||
|
case EnumButtonType.SELECT:
|
||||||
|
return new KeyListener(PSVitaKey.Select);
|
||||||
|
case EnumButtonType.A:
|
||||||
|
return new KeyListener(PSVitaKey.Circle);
|
||||||
|
case EnumButtonType.B:
|
||||||
|
return new KeyListener(PSVitaKey.Cross);
|
||||||
|
case EnumButtonType.MIC:
|
||||||
|
return new KeyListener(PSVitaKey.Block);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
return default(KeyListener);
|
return default(KeyListener);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -212,12 +212,10 @@ namespace AxibugEmuOnline.Client
|
|||||||
EditorUtility.SetDirty(db);
|
EditorUtility.SetDirty(db);
|
||||||
AssetDatabase.SaveAssets();
|
AssetDatabase.SaveAssets();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
public IControllerSetuper GetControllerSetuper()
|
public IControllerSetuper GetControllerSetuper()
|
||||||
{
|
{
|
||||||
return ControllerMapper;
|
return ControllerMapper;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user