This commit is contained in:
yulong 2024-03-06 12:20:53 +08:00
parent 2d7ef4a997
commit 88cfe2f530
4 changed files with 6 additions and 3 deletions

View File

@ -147,7 +147,7 @@ public class UIBootstrap : MonoSingleton<UIBootstrap>
private IEnumerator ShowLoad(UnityAction callback = null) private IEnumerator ShowLoad(UnityAction callback = null)
{ {
loadTem.SetActive(true); loadTem.SetActive(true);
yield return new WaitForSeconds(0.1f); yield return new WaitForSeconds(3f);
loadTem.SetActive(false); loadTem.SetActive(false);
callback?.Invoke(); callback?.Invoke();
} }

View File

@ -125,7 +125,7 @@ public class DroneViewDisplay : MonoSingleton<DroneViewDisplay>
public void CreateUI(string deviceID, Camera camera, RawImage rawImage) public void CreateUI(string deviceID, Camera camera, RawImage rawImage)
{ {
if (deviceID.Length < 10) return; if (deviceID.Length < 10) return;
var v = renderTextures.Find(x => x.name == deviceID); var v = renderTextures.Find(x => (x!=null&&x.name == deviceID));
if (v != null) return; if (v != null) return;
RenderTexture renderTexture = new RenderTexture(500, 500, 0); RenderTexture renderTexture = new RenderTexture(500, 500, 0);
renderTexture.name = deviceID; renderTexture.name = deviceID;

View File

@ -17,4 +17,7 @@ EditorBuildSettings:
- enabled: 1 - enabled: 1
path: Assets/Zion/Scenes/AdamTraining_pilot_terminal_panl 1.unity path: Assets/Zion/Scenes/AdamTraining_pilot_terminal_panl 1.unity
guid: 7715b43affb2bbd41ab81007375a0709 guid: 7715b43affb2bbd41ab81007375a0709
- enabled: 1
path: Assets/Zion/Scenes/AdamTraining_pilot_terminal_panl 3.unity
guid: 3fc76af30740490439d741e289eb411f
m_configObjects: {} m_configObjects: {}

View File

@ -91,7 +91,7 @@ PlayerSettings:
xboxEnableFitness: 0 xboxEnableFitness: 0
visibleInBackground: 1 visibleInBackground: 1
allowFullscreenSwitch: 0 allowFullscreenSwitch: 0
fullscreenMode: 3 fullscreenMode: 1
xboxSpeechDB: 0 xboxSpeechDB: 0
xboxEnableHeadOrientation: 0 xboxEnableHeadOrientation: 0
xboxEnableGuest: 0 xboxEnableGuest: 0