This commit is contained in:
何嘉峣 2025-03-20 15:28:20 +08:00
parent 179d6093d9
commit 2c9a271d1d
7 changed files with 259 additions and 2778 deletions

View File

@ -9,10 +9,9 @@ Material:
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: dianchi m_Name: dianchi
m_Shader: {fileID: 47, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 47, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords: m_ValidKeywords: []
- _EMISSION
m_InvalidKeywords: [] m_InvalidKeywords: []
m_LightmapFlags: 1 m_LightmapFlags: 4
m_EnableInstancingVariants: 0 m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0 m_DoubleSidedGI: 0
m_CustomRenderQueue: -1 m_CustomRenderQueue: -1
@ -80,6 +79,6 @@ Material:
- _UVSec: 0 - _UVSec: 0
- _ZWrite: 1 - _ZWrite: 1
m_Colors: m_Colors:
- _Color: {r: 0.124000005, g: 0.4, b: 0.15445665, a: 1} - _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0.04111784, g: 0.7924528, b: 0.10663007, a: 1} - _EmissionColor: {r: 0.04111784, g: 0.7924528, b: 0.10663007, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1018 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 974 KiB

File diff suppressed because it is too large Load Diff

View File

@ -136,6 +136,7 @@ public class ChangeObjMat : MonoBehaviour
p.Init($"2.您的爱车现已进行充电检测,请在大屏幕上查看检测情况!", 5); p.Init($"2.您的爱车现已进行充电检测,请在大屏幕上查看检测情况!", 5);
}); });
yield return new WaitForSeconds(6); yield return new WaitForSeconds(6);
yield return new WaitUntil(() => Input.GetKeyDown(KeyCode.Space));
#endregion #endregion
#region #region
if (Bootstrap.UIMgr != null) Bootstrap.UIMgr.ShowPanel<UI_MiddleTipPanel>(this, E_UI_Layer.Top, (p) => if (Bootstrap.UIMgr != null) Bootstrap.UIMgr.ShowPanel<UI_MiddleTipPanel>(this, E_UI_Layer.Top, (p) =>

View File

@ -48,7 +48,7 @@ public class WebViewController : MonoBehaviour
{ {
Debug.Log("网页加载完成."); Debug.Log("网页加载完成.");
canvasWebViewPrefab.WebView.ConsoleMessageLogged += HandleConsoleMessage; canvasWebViewPrefab.WebView.ConsoleMessageLogged += HandleConsoleMessage;
//Bootstrap.Instance.eventCenter.EventTrigger(Enum_EventType.ChangeCarSwitch); Bootstrap.Instance.eventCenter.EventTrigger(Enum_EventType.ChangeCarSwitch);
await Task.Delay(2000); await Task.Delay(2000);
WGDetection.SetActive(true); WGDetection.SetActive(true);
HWDetection.SetActive(true); HWDetection.SetActive(true);