Browse Source

修改部分材质丢失问题

DGJ 1 year ago
parent
commit
3e307f52bc

+ 1 - 1
Assets/MediaSoup/NetWorkHeadersConfig.cs

@@ -1,4 +1,4 @@
-using System.Collections;
+using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 

+ 10 - 5
Assets/Remote/ShowLogin/LoginDlg.prefab

@@ -1101,6 +1101,7 @@ MonoBehaviour:
   m_CustomPosition: {x: 0, y: 0, z: 0}
   m_CustomRotation: {x: 0, y: 0, z: 0}
   m_CustomLocalScale: {x: 0, y: 0, z: 0}
+  m_ShouldActivateOnSelect: 0
 --- !u!114 &2573122986336397919
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -3252,6 +3253,7 @@ MonoBehaviour:
   m_CustomPosition: {x: 0, y: 0, z: 0}
   m_CustomRotation: {x: 0, y: 0, z: 0}
   m_CustomLocalScale: {x: 0, y: 0, z: 0}
+  m_ShouldActivateOnSelect: 0
 --- !u!65 &8812677215767668155
 BoxCollider:
   m_ObjectHideFlags: 0
@@ -4516,7 +4518,7 @@ RectTransform:
   m_GameObject: {fileID: 177754138177047791}
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0}
-  m_LocalScale: {x: 0.33333337, y: 0.33333337, z: 0.33333337}
+  m_LocalScale: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
   m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 177754138319851265}
@@ -5297,6 +5299,7 @@ MonoBehaviour:
   m_CustomPosition: {x: 0, y: 0, z: 0}
   m_CustomRotation: {x: 0, y: 0, z: 0}
   m_CustomLocalScale: {x: 0, y: 0, z: 0}
+  m_ShouldActivateOnSelect: 0
 --- !u!65 &8812677215176426206
 BoxCollider:
   m_ObjectHideFlags: 0
@@ -10082,6 +10085,7 @@ MonoBehaviour:
   m_CustomPosition: {x: 0, y: 0, z: 0}
   m_CustomRotation: {x: 0, y: 0, z: 0}
   m_CustomLocalScale: {x: 0, y: 0, z: 0}
+  m_ShouldActivateOnSelect: 0
 --- !u!114 &2756228983076809729
 MonoBehaviour:
   m_ObjectHideFlags: 0
@@ -11198,6 +11202,7 @@ MonoBehaviour:
   m_CustomPosition: {x: 0, y: 0, z: 0}
   m_CustomRotation: {x: 0, y: 0, z: 0}
   m_CustomLocalScale: {x: 0, y: 0, z: 0}
+  m_ShouldActivateOnSelect: 0
 --- !u!65 &4495120971768289207
 BoxCollider:
   m_ObjectHideFlags: 0
@@ -11890,7 +11895,7 @@ MeshRenderer:
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
-  - {fileID: 2100000, guid: 329cdefad4cf0f14e9b6767d0af094b0, type: 2}
+  - {fileID: 2100000, guid: cbec7d18a89d019489777c3af327da4f, type: 2}
   m_StaticBatchInfo:
     firstSubMesh: 0
     subMeshCount: 0
@@ -12104,7 +12109,7 @@ MeshRenderer:
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
-  - {fileID: 2100000, guid: 38a587e9218b3284485088c9925af61f, type: 2}
+  - {fileID: 2100000, guid: 096d4768aa5e44841a08a5e26bbb1ea2, type: 2}
   m_StaticBatchInfo:
     firstSubMesh: 0
     subMeshCount: 0
@@ -12346,7 +12351,7 @@ MeshRenderer:
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
-  - {fileID: 2100000, guid: 38a587e9218b3284485088c9925af61f, type: 2}
+  - {fileID: 2100000, guid: cbec7d18a89d019489777c3af327da4f, type: 2}
   m_StaticBatchInfo:
     firstSubMesh: 0
     subMeshCount: 0
@@ -12526,7 +12531,7 @@ MeshRenderer:
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
-  - {fileID: 2100000, guid: 329cdefad4cf0f14e9b6767d0af094b0, type: 2}
+  - {fileID: 2100000, guid: cbec7d18a89d019489777c3af327da4f, type: 2}
   m_StaticBatchInfo:
     firstSubMesh: 0
     subMeshCount: 0

+ 35 - 17
Assets/Remote/ShowRoom/RemoteVideoControl.cs

@@ -46,18 +46,20 @@ public class RemoteVideoControl : MonoBehaviour
     {
         IsStart = true;
         slider.onValueChanged.AddListener(delegate { ChangeVideo(slider.value); });
+
+        StartCoroutine(VideoTimer());
     }
 
     public void ChangeVideo(float value)
     {
-        if ( avProVideoPlayer.GetMaxTimer()!=0)
-        {
-            float tempvalue = max * value;
-            time = tempvalue;
-            hour = (int)time / 60;
-            mint = (int)time % 60;
-            currentTime.text = string.Format("{0}:{1}", hour.ToString("00"), mint.ToString("00"));
-        }
+        //if (avProVideoPlayer.IsVideoReady())
+        //{
+        //    float tempvalue = max * value;
+        //    time = tempvalue;
+        //    hour = (int)time / 60;
+        //    mint = (int)time % 60;
+        //    currentTime.text = string.Format("{0}:{1}", hour.ToString("00"), mint.ToString("00"));
+        //}
         if (value > 0.99)
         {
             Icon.SetActive(true);
@@ -66,17 +68,33 @@ public class RemoteVideoControl : MonoBehaviour
     }
 
     float max;
-    void Update()
+
+    private IEnumerator VideoTimer()
     {
-        if (IsStart && avProVideoPlayer.IsVideoReady())
+        while (true)
         {
-            //max = avProVideoPlayer.GetMaxTimer();
-            //time = max;
-            //hour = (int)time / 60;
-            //mint = (int)time % 60;
-            // textTotalTime.text = string.Format("/ {0:D2}:{1:D2}", hour.ToString(), mint.ToString());
-            textTotalTime.text = string.Format("{0}:{1}",avProVideoPlayer.GetNowTimer().ToString("00"), avProVideoPlayer.GetMaxTimer().ToString("00"));
-            IsStart = !IsStart;
+            yield return new WaitForSeconds(0.5f);
+            if (avProVideoPlayer.IsVideoReady())
+            {
+                textTotalTime.text = string.Format("{0}:{1}", (avProVideoPlayer.GetMaxTimer() / 60).ToString("00"), (avProVideoPlayer.GetMaxTimer() % 60).ToString("00"));
+                currentTime.text = string.Format("{0}:{1}", (avProVideoPlayer.GetNowTimer() / 60).ToString("00"), (avProVideoPlayer.GetNowTimer() % 60).ToString("00"));
+                slider.value = avProVideoPlayer.GetNowTimer() / avProVideoPlayer.GetMaxTimer();
+            
+            }
+
         }
     }
+    //void Update()
+    //{
+    //    if (IsStart && avProVideoPlayer.IsVideoReady())
+    //    {
+    //        //max = avProVideoPlayer.GetMaxTimer();
+    //        //time = max;
+    //        //hour = (int)time / 60;
+    //        //mint = (int)time % 60;
+    //        // textTotalTime.text = string.Format("/ {0:D2}:{1:D2}", hour.ToString(), mint.ToString());
+    //        textTotalTime.text = string.Format("{0}:{1}",avProVideoPlayer.GetNowTimer().ToString("00"), avProVideoPlayer.GetMaxTimer().ToString("00"));
+    //        IsStart = !IsStart;
+    //    }
+    //}
 }

+ 2 - 2
Assets/Remote/ShowRoom/RoomInvite/Prefab/Mp4Item.prefab

@@ -1829,7 +1829,7 @@ RectTransform:
   m_PrefabAsset: {fileID: 0}
   m_GameObject: {fileID: 6349363836886034463}
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
-  m_LocalPosition: {x: 0, y: 0, z: -0.004118616}
+  m_LocalPosition: {x: 0, y: 0, z: -0.0073}
   m_LocalScale: {x: 0.00007749998, y: 0.00007749998, z: 0.00007749998}
   m_ConstrainProportionsScale: 0
   m_Children:
@@ -2078,7 +2078,7 @@ MonoBehaviour:
   PointerDrag:
     m_PersistentCalls:
       m_Calls: []
-  vidoPlayer: {fileID: 0}
+  aVideoPlayer: {fileID: 2795984278497288442}
   slider: {fileID: 6349363836886034461}
 --- !u!1 &6887656132263376784
 GameObject:

+ 37 - 1
Assets/Remote/ShowRoom/RoomMain.prefab

@@ -28,6 +28,7 @@ RectTransform:
   m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0}
   m_LocalScale: {x: 1, y: 1, z: 1}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 557765135052244206}
   m_RootOrder: 0
@@ -101,6 +102,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: 0.000000014901161, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.74421}
   m_LocalScale: {x: 0.0004541287, y: 0.0004541287, z: 0.0004541287}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 2241088651101507120}
   m_Father: {fileID: 2241088652506551529}
@@ -233,6 +235,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: -17.100073}
   m_LocalScale: {x: 0.93, y: 0.93, z: 0.93}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088652691173816}
   m_RootOrder: 1
@@ -309,6 +312,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: 0.000000014901161, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.7439}
   m_LocalScale: {x: 0.00035, y: 0.00035, z: 0.00035}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 2241088651824551324}
   m_Father: {fileID: 2241088652506551529}
@@ -441,6 +445,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: 0.92387867, w: 0.38268548}
   m_LocalPosition: {x: 0, y: 0, z: -13.8}
   m_LocalScale: {x: 1, y: 1, z: 1}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088650822641914}
   m_RootOrder: 0
@@ -516,6 +521,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: -17.2}
   m_LocalScale: {x: 0.93, y: 0.93, z: 0.93}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088651471683786}
   m_RootOrder: 1
@@ -591,6 +597,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: 0.46064693, w: 0.88758355}
   m_LocalPosition: {x: 0, y: 0, z: -17.100014}
   m_LocalScale: {x: 0.9437227, y: 0.9437227, z: 0.94372237}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088651301450027}
   m_RootOrder: 0
@@ -667,6 +674,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: 0.000000014901161, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.22515564}
   m_LocalScale: {x: 0.004584152, y: 0.009628611, z: 0.027173914}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 2241088651245932929}
   - {fileID: 2241088651789104370}
@@ -800,6 +808,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: 0.46064693, w: 0.88758355}
   m_LocalPosition: {x: 0, y: 0, z: -17.100014}
   m_LocalScale: {x: 0.9437227, y: 0.9437227, z: 0.94372237}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088651471683786}
   m_RootOrder: 0
@@ -876,6 +885,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: 0.000000014901161, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.22515564}
   m_LocalScale: {x: 0.004584152, y: 0.009628611, z: 0.027173914}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 2241088651505987570}
   - {fileID: 2241088651986104161}
@@ -1010,6 +1020,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: 0.000000014901161, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.22515564}
   m_LocalScale: {x: 0.004584152, y: 0.009628611, z: 0.027173914}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 2241088651333374837}
   - {fileID: 2241088651136368614}
@@ -1143,6 +1154,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: 0.46064693, w: 0.88758355}
   m_LocalPosition: {x: 0, y: 0, z: -17.100073}
   m_LocalScale: {x: 0.93, y: 0.93, z: 0.93}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088651403055103}
   m_RootOrder: 0
@@ -1218,6 +1230,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.7443}
   m_LocalScale: {x: 0.00018999999, y: 0.00018999999, z: 0.00018999999}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088652506551529}
   m_RootOrder: 4
@@ -1295,6 +1308,7 @@ Transform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0.145, y: -0.212, z: 0.741}
   m_LocalScale: {x: 0.076349996, y: 0.03635, z: 0.012879999}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 2241088651301450027}
   - {fileID: 2241088651471683786}
@@ -1327,6 +1341,7 @@ Transform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: -0.0446, y: -0.212, z: 0.741}
   m_LocalScale: {x: 0.076349996, y: 0.03635, z: 0.012879999}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 2241088651403055103}
   - {fileID: 2241088652691173816}
@@ -1361,6 +1376,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: -17.2}
   m_LocalScale: {x: 0.93, y: 0.93, z: 0.93}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088651301450027}
   m_RootOrder: 1
@@ -1436,6 +1452,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: -17.2}
   m_LocalScale: {x: 0.93, y: 0.93, z: 0.93}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088651005219372}
   m_RootOrder: 0
@@ -1511,6 +1528,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: -17.100073}
   m_LocalScale: {x: 0.93, y: 0.93, z: 0.93}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088651403055103}
   m_RootOrder: 1
@@ -1586,6 +1604,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.748}
   m_LocalScale: {x: 1, y: 1, z: 1}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088652506551529}
   m_RootOrder: 0
@@ -1662,6 +1681,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: 0.000000014901161, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.7439}
   m_LocalScale: {x: 0.00035, y: 0.00035, z: 0.00035}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 2241088652363412356}
   m_Father: {fileID: 2241088652506551529}
@@ -1794,6 +1814,7 @@ Transform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0.04809998, y: -0.100400016, z: 0.748}
   m_LocalScale: {x: 0.4466444, y: 0.25123748, z: 0}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088652506551529}
   m_RootOrder: 3
@@ -1817,6 +1838,7 @@ MeshRenderer:
   m_CastShadows: 1
   m_ReceiveShadows: 1
   m_DynamicOccludee: 1
+  m_StaticShadowCaster: 0
   m_MotionVectors: 1
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
@@ -1875,6 +1897,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: -17.2}
   m_LocalScale: {x: 0.93, y: 0.93, z: 0.93}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088652138189772}
   m_RootOrder: 0
@@ -1950,6 +1973,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: 0.46064693, w: 0.88758355}
   m_LocalPosition: {x: 0, y: 0, z: -17.100073}
   m_LocalScale: {x: 0.93, y: 0.93, z: 0.93}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088652691173816}
   m_RootOrder: 0
@@ -2024,6 +2048,7 @@ Transform:
   m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0}
   m_LocalScale: {x: 1, y: 1, z: 1}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 2241088652006308204}
   - {fileID: 557765135052244206}
@@ -2104,6 +2129,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: 0.000000014901161, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.22515564}
   m_LocalScale: {x: 0.004584152, y: 0.009628611, z: 0.027173914}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 2241088652453441502}
   - {fileID: 2241088650922395686}
@@ -2238,6 +2264,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: 0.000000014901161, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.7439}
   m_LocalScale: {x: 0.00034999996, y: 0.00035000002, z: 0.00035}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 2430319748161568938}
   m_Father: {fileID: 2241088652506551529}
@@ -2370,6 +2397,7 @@ Transform:
   m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
   m_LocalPosition: {x: -0.5, y: -8, z: 9.0701}
   m_LocalScale: {x: 56.116302, y: 28.558998, z: 56.1161}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 7854522133779884649}
   m_RootOrder: 0
@@ -2393,6 +2421,7 @@ MeshRenderer:
   m_CastShadows: 0
   m_ReceiveShadows: 0
   m_DynamicOccludee: 0
+  m_StaticShadowCaster: 0
   m_MotionVectors: 1
   m_LightProbeUsage: 0
   m_ReflectionProbeUsage: 0
@@ -2401,7 +2430,7 @@ MeshRenderer:
   m_RenderingLayerMask: 4294967295
   m_RendererPriority: 0
   m_Materials:
-  - {fileID: 2100000, guid: d5334c45caee46be937b095a1e977dc6, type: 2}
+  - {fileID: 2100000, guid: 923bfab439683cc45ba3e92ef6d4601f, type: 2}
   m_StaticBatchInfo:
     firstSubMesh: 0
     subMeshCount: 0
@@ -2454,6 +2483,7 @@ RectTransform:
   m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.7433}
   m_LocalScale: {x: 1, y: 1, z: 1}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088652506551529}
   m_RootOrder: 13
@@ -2595,6 +2625,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: -17.100073}
   m_LocalScale: {x: 0.93, y: 0.93, z: 0.93}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 6496188556605830589}
   m_RootOrder: 0
@@ -2671,6 +2702,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.748}
   m_LocalScale: {x: 0.004, y: 0.002, z: 1}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 2889834287218932637}
   m_Father: {fileID: 2241088652506551529}
@@ -2770,6 +2802,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: -0.000038079914}
   m_LocalScale: {x: 0.8898, y: 0.8898, z: 0.8898}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 2857122719881289197}
   m_Father: {fileID: 6461517007280632282}
@@ -2846,6 +2879,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.7443}
   m_LocalScale: {x: 0.00018999999, y: 0.00018999999, z: 0.00018999999}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088652506551529}
   m_RootOrder: 11
@@ -2925,6 +2959,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.7443}
   m_LocalScale: {x: 0.00018999999, y: 0.00018999999, z: 0.00018999999}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 2241088652506551529}
   m_RootOrder: 10
@@ -3006,6 +3041,7 @@ RectTransform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 0.74}
   m_LocalScale: {x: 0.00025, y: 0.00025, z: 0.00025}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 7854522133779884649}
   m_Father: {fileID: 2241088652506551529}

+ 50 - 6
Assets/Studio/Resources/loading.prefab

@@ -28,6 +28,7 @@ Transform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: -0.0039644707, y: 0.251859, z: 0}
   m_LocalScale: {x: 0.028219325, y: 0.16376035, z: 0.21761608}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 6122161799222914194}
   m_RootOrder: 0
@@ -43,9 +44,12 @@ MeshRenderer:
   m_CastShadows: 1
   m_ReceiveShadows: 1
   m_DynamicOccludee: 1
+  m_StaticShadowCaster: 0
   m_MotionVectors: 1
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -70,6 +74,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!102 &653432196
 TextMesh:
   serializedVersion: 3
@@ -120,6 +125,7 @@ Transform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0.022, y: 0.022, z: 0}
   m_LocalScale: {x: 0.015388798, y: 0.015388798, z: 0.015388798}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 5776359367491109919}
   m_RootOrder: 0
@@ -143,13 +149,16 @@ MeshRenderer:
   m_CastShadows: 1
   m_ReceiveShadows: 1
   m_DynamicOccludee: 1
+  m_StaticShadowCaster: 0
   m_MotionVectors: 1
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 4294967295
   m_RendererPriority: 0
   m_Materials:
-  - {fileID: 2100000, guid: d5334c45caee46be937b095a1e977dc6, type: 2}
+  - {fileID: 2100000, guid: 923bfab439683cc45ba3e92ef6d4601f, type: 2}
   m_StaticBatchInfo:
     firstSubMesh: 0
     subMeshCount: 0
@@ -170,6 +179,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!1 &538992736897589321
 GameObject:
   m_ObjectHideFlags: 0
@@ -198,6 +208,7 @@ Transform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: -0.022, y: -0.022, z: 0}
   m_LocalScale: {x: 0.017495334, y: 0.017495334, z: 0.017495334}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 5776359367491109919}
   m_RootOrder: 1
@@ -221,13 +232,16 @@ MeshRenderer:
   m_CastShadows: 1
   m_ReceiveShadows: 1
   m_DynamicOccludee: 1
+  m_StaticShadowCaster: 0
   m_MotionVectors: 1
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 4294967295
   m_RendererPriority: 0
   m_Materials:
-  - {fileID: 2100000, guid: d5334c45caee46be937b095a1e977dc6, type: 2}
+  - {fileID: 2100000, guid: 923bfab439683cc45ba3e92ef6d4601f, type: 2}
   m_StaticBatchInfo:
     firstSubMesh: 0
     subMeshCount: 0
@@ -248,6 +262,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!1 &630416592058703439
 GameObject:
   m_ObjectHideFlags: 0
@@ -276,6 +291,7 @@ Transform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: -0.022, y: -0.022, z: 0}
   m_LocalScale: {x: 0.026504666, y: 0.026504666, z: 0.026504666}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 1658018779900584412}
   m_RootOrder: 1
@@ -299,13 +315,16 @@ MeshRenderer:
   m_CastShadows: 1
   m_ReceiveShadows: 1
   m_DynamicOccludee: 1
+  m_StaticShadowCaster: 0
   m_MotionVectors: 1
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 4294967295
   m_RendererPriority: 0
   m_Materials:
-  - {fileID: 2100000, guid: d5334c45caee46be937b095a1e977dc6, type: 2}
+  - {fileID: 2100000, guid: 923bfab439683cc45ba3e92ef6d4601f, type: 2}
   m_StaticBatchInfo:
     firstSubMesh: 0
     subMeshCount: 0
@@ -326,6 +345,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!1 &919938857894041390
 GameObject:
   m_ObjectHideFlags: 0
@@ -354,6 +374,7 @@ Transform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0.01046, y: -0.06892, z: 0}
   m_LocalScale: {x: 0.19170257, y: 0.033034354, z: 0.024858998}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 653432195}
   m_Father: {fileID: 4224219778496941085}
@@ -378,9 +399,12 @@ MeshRenderer:
   m_CastShadows: 0
   m_ReceiveShadows: 0
   m_DynamicOccludee: 1
+  m_StaticShadowCaster: 0
   m_MotionVectors: 2
   m_LightProbeUsage: 0
   m_ReflectionProbeUsage: 0
+  m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 1
   m_RendererPriority: 0
   m_Materials:
@@ -405,6 +429,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!1 &1444461044828559130
 GameObject:
   m_ObjectHideFlags: 0
@@ -432,6 +457,7 @@ Transform:
   m_LocalRotation: {x: 0, y: 0, z: 0.8980982, w: 0.43979508}
   m_LocalPosition: {x: 0.008049243, y: -0.02047461, z: 0}
   m_LocalScale: {x: 1, y: 1, z: 1}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 1939256888591535208}
   - {fileID: 3846077120627871540}
@@ -491,6 +517,7 @@ Transform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: 0.022, y: 0.022, z: 0}
   m_LocalScale: {x: 0.026504666, y: 0.026504666, z: 0.026504666}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 1658018779900584412}
   m_RootOrder: 0
@@ -514,13 +541,16 @@ MeshRenderer:
   m_CastShadows: 1
   m_ReceiveShadows: 1
   m_DynamicOccludee: 1
+  m_StaticShadowCaster: 0
   m_MotionVectors: 1
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 4294967295
   m_RendererPriority: 0
   m_Materials:
-  - {fileID: 2100000, guid: d5334c45caee46be937b095a1e977dc6, type: 2}
+  - {fileID: 2100000, guid: 923bfab439683cc45ba3e92ef6d4601f, type: 2}
   m_StaticBatchInfo:
     firstSubMesh: 0
     subMeshCount: 0
@@ -541,6 +571,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!1 &4177054230960668903
 GameObject:
   m_ObjectHideFlags: 0
@@ -568,6 +599,7 @@ Transform:
   m_LocalRotation: {x: 0.12794673, y: 0.02581979, z: -0.9718537, w: -0.19612113}
   m_LocalPosition: {x: 0.008049243, y: 0.0106, z: 0}
   m_LocalScale: {x: 1, y: 1, z: 1}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 7575165021654079019}
   - {fileID: 4177054231461491965}
@@ -627,6 +659,7 @@ Transform:
   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
   m_LocalPosition: {x: -0.022, y: -0.022, z: 0}
   m_LocalScale: {x: 0.017495334, y: 0.017495334, z: 0.017495334}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 4177054230960668902}
   m_RootOrder: 1
@@ -650,13 +683,16 @@ MeshRenderer:
   m_CastShadows: 1
   m_ReceiveShadows: 1
   m_DynamicOccludee: 1
+  m_StaticShadowCaster: 0
   m_MotionVectors: 1
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 4294967295
   m_RendererPriority: 0
   m_Materials:
-  - {fileID: 2100000, guid: d5334c45caee46be937b095a1e977dc6, type: 2}
+  - {fileID: 2100000, guid: 923bfab439683cc45ba3e92ef6d4601f, type: 2}
   m_StaticBatchInfo:
     firstSubMesh: 0
     subMeshCount: 0
@@ -677,6 +713,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!1 &5412518047448769138
 GameObject:
   m_ObjectHideFlags: 0
@@ -705,6 +742,7 @@ Transform:
   m_LocalRotation: {x: -0.033081636, y: -0.12626413, z: 0.6035525, w: 0.7865668}
   m_LocalPosition: {x: 0.0102, y: -0.0093, z: 0.0015}
   m_LocalScale: {x: 0.015388802, y: 0.015388803, z: 0.015388797}
+  m_ConstrainProportionsScale: 0
   m_Children: []
   m_Father: {fileID: 4177054230960668902}
   m_RootOrder: 0
@@ -728,13 +766,16 @@ MeshRenderer:
   m_CastShadows: 1
   m_ReceiveShadows: 1
   m_DynamicOccludee: 1
+  m_StaticShadowCaster: 0
   m_MotionVectors: 1
   m_LightProbeUsage: 1
   m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 2
+  m_RayTraceProcedural: 0
   m_RenderingLayerMask: 4294967295
   m_RendererPriority: 0
   m_Materials:
-  - {fileID: 2100000, guid: d5334c45caee46be937b095a1e977dc6, type: 2}
+  - {fileID: 2100000, guid: 923bfab439683cc45ba3e92ef6d4601f, type: 2}
   m_StaticBatchInfo:
     firstSubMesh: 0
     subMeshCount: 0
@@ -755,6 +796,7 @@ MeshRenderer:
   m_SortingLayerID: 0
   m_SortingLayer: 0
   m_SortingOrder: 0
+  m_AdditionalVertexStreams: {fileID: 0}
 --- !u!1 &6968925582765509134
 GameObject:
   m_ObjectHideFlags: 0
@@ -782,6 +824,7 @@ Transform:
   m_LocalRotation: {x: 0, y: 0, z: -0.8980982, w: 0.43979508}
   m_LocalPosition: {x: 0.008049243, y: 0.02047461, z: 0}
   m_LocalScale: {x: 1, y: 1, z: 1}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 7807475286907687124}
   - {fileID: 2906218570582868143}
@@ -840,6 +883,7 @@ Transform:
   m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
   m_LocalPosition: {x: 0, y: 0, z: 1}
   m_LocalScale: {x: 1, y: 1, z: 1}
+  m_ConstrainProportionsScale: 0
   m_Children:
   - {fileID: 1658018779900584412}
   - {fileID: 5776359367491109919}

+ 8 - 0
Assets/远程协助UI/Textures.meta

@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 841303049f048ff4983c3a95522c9fec
+folderAsset: yes
+DefaultImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 

BIN
Assets/远程协助UI/Textures/text2.png


+ 91 - 0
Assets/远程协助UI/Textures/text2.png.meta

@@ -0,0 +1,91 @@
+fileFormatVersion: 2
+guid: 2b8513865a3af884ebf8d5c55b14adb7
+TextureImporter:
+  internalIDToNameTable: []
+  externalObjects: {}
+  serializedVersion: 10
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 1
+    sRGBTexture: 1
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: -1
+    aniso: -1
+    mipBias: -100
+    wrapU: -1
+    wrapV: -1
+    wrapW: -1
+  nPOTScale: 1
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 0
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 100
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 0
+  spriteTessellationDetail: -1
+  textureType: 0
+  textureShape: 1
+  singleChannelComponent: 0
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  platformSettings:
+  - serializedVersion: 3
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 
+    internalID: 0
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+    secondaryTextures: []
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 

+ 193 - 0
Assets/远程协助UI/materials/interfaceAnalysis1.mat

@@ -0,0 +1,193 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+  serializedVersion: 6
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: interfaceAnalysis1
+  m_Shader: {fileID: 4800000, guid: 5bdea20278144b11916d77503ba1467a, type: 3}
+  m_ShaderKeywords: _BORDER_LIGHT _DISABLE_ALBEDO_MAP _HOVER_LIGHT _INNER_GLOW _IRIDESCENCE
+    _METALLIC_TEXTURE_ALBEDO_CHANNEL_A _ROUND_CORNERS
+  m_LightmapFlags: 4
+  m_EnableInstancingVariants: 1
+  m_DoubleSidedGI: 0
+  m_CustomRenderQueue: 2000
+  stringTagMap:
+    RenderType: Opaque
+  disabledShaderPasses: []
+  m_SavedProperties:
+    serializedVersion: 3
+    m_TexEnvs:
+    - _BumpMap:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _ChannelMap:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _DetailAlbedoMap:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _DetailMask:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _DetailNormalMap:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _EmissionMap:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _IridescentSpectrumMap:
+        m_Texture: {fileID: 2800000, guid: 2b8513865a3af884ebf8d5c55b14adb7, type: 3}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _LightMapTex:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _MainTex:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _MetallicGlossMap:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _NormalMap:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _OcclusionMap:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _ParallaxMap:
+        m_Texture: {fileID: 0}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    m_Floats:
+    - _AlbedoAlphaMode: 1
+    - _AlbedoAlphaSmoothness: 0
+    - _AlbedoAssignedAtRuntime: 0
+    - _BlendOp: 0
+    - _BlendedClippingWidth: 1
+    - _BorderLight: 1
+    - _BorderLightOpaque: 0
+    - _BorderLightOpaqueAlpha: 1
+    - _BorderLightReplacesAlbedo: 0
+    - _BorderLightUsesHoverColor: 0
+    - _BorderMinValue: 0.2
+    - _BorderWidth: 0.01
+    - _BorderWidthHorizontal: 0.1
+    - _BorderWidthVertical: 0.1
+    - _BumpScale: 1
+    - _ClippingBorder: 0
+    - _ClippingBorderWidth: 0
+    - _ClippingBox: 0
+    - _ClippingPlane: 0
+    - _ClippingPlaneBorder: 0
+    - _ClippingPlaneBorderWidth: 0.025
+    - _ClippingSphere: 0
+    - _ColorWriteMask: 15
+    - _CullMode: 0
+    - _CustomMode: 0
+    - _Cutoff: 0.5
+    - _DetailNormalMapScale: 1
+    - _DirectionalLight: 0
+    - _DstBlend: 0
+    - _EdgeSmoothingValue: 0
+    - _EnableChannelMap: 0
+    - _EnableEmission: 0
+    - _EnableHoverColorOpaqueOverride: 0
+    - _EnableHoverColorOverride: 0
+    - _EnableLightMap: 0
+    - _EnableLocalSpaceTriplanarMapping: 0
+    - _EnableNormalMap: 0
+    - _EnableProximityLightColorOverride: 0
+    - _EnableTriplanarMapping: 0
+    - _EnvironmentColorIntensity: 0.5
+    - _EnvironmentColorThreshold: 1.5
+    - _EnvironmentColoring: 0
+    - _FadeBeginDistance: 0.85
+    - _FadeCompleteDistance: 0.5
+    - _FadeMinValue: 0
+    - _FluentLightIntensity: 1
+    - _GlossMapScale: 1
+    - _Glossiness: 0.5
+    - _GlossyReflections: 1
+    - _HoverLight: 1
+    - _HoverLightOpaque: 0
+    - _IgnoreZScale: 0
+    - _IndependentCorners: 0
+    - _InnerGlow: 1
+    - _InnerGlowPower: 4
+    - _InstancedColor: 0
+    - _Iridescence: 1
+    - _IridescenceAngle: -0.78
+    - _IridescenceIntensity: 0.5
+    - _IridescenceThreshold: 0.5
+    - _Metallic: 0
+    - _Mode: 0
+    - _NearLightFade: 0
+    - _NearPlaneFade: 0
+    - _NormalMapScale: 1
+    - _OcclusionStrength: 1
+    - _Parallax: 0.02
+    - _ProximityLight: 0
+    - _ProximityLightSubtractive: 0
+    - _ProximityLightTwoSided: 0
+    - _Reflections: 0
+    - _Refraction: 0
+    - _RefractiveIndex: 1.32
+    - _RenderQueueOverride: -1
+    - _RimLight: 0
+    - _RimPower: 0
+    - _RoundCornerMargin: 0
+    - _RoundCornerRadius: 0.039
+    - _RoundCorners: 1
+    - _Smoothness: 0.5
+    - _SmoothnessTextureChannel: 0
+    - _SpecularHighlights: 0
+    - _SphericalHarmonics: 0
+    - _SrcBlend: 1
+    - _Stencil: 0
+    - _StencilComparison: 0
+    - _StencilOperation: 0
+    - _StencilReference: 0
+    - _TriplanarMappingBlendSharpness: 4
+    - _UVSec: 0
+    - _VertexColors: 0
+    - _VertexExtrusion: 0
+    - _VertexExtrusionSmoothNormals: 0
+    - _VertexExtrusionValue: 0
+    - _ZOffsetFactor: 0
+    - _ZOffsetUnits: 0
+    - _ZTest: 4
+    - _ZWrite: 1
+    m_Colors:
+    - _ClipPlane: {r: 0, g: 1, b: 0, a: 0}
+    - _ClippingBorderColor: {r: 1, g: 0.20000002, b: 0, a: 1}
+    - _ClippingPlaneBorderColor: {r: 1, g: 0.2, b: 0, a: 1}
+    - _Color: {r: 0, g: 0, b: 0, a: 1}
+    - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
+    - _EmissiveColor: {r: 0, g: 0, b: 0, a: 1}
+    - _EnvironmentColorX: {r: 1, g: 0, b: 0, a: 1}
+    - _EnvironmentColorY: {r: 0, g: 1, b: 0, a: 1}
+    - _EnvironmentColorZ: {r: 0, g: 0, b: 1, a: 1}
+    - _HoverColor: {r: 1, g: 0, b: 0, a: 1}
+    - _HoverColorOpaqueOverride: {r: 1, g: 1, b: 1, a: 1}
+    - _HoverColorOverride: {r: 1, g: 1, b: 1, a: 0.566}
+    - _InnerGlowColor: {r: 1, g: 1, b: 1, a: 0.522}
+    - _ProximityLightCenterColorOverride: {r: 1, g: 0, b: 0, a: 0}
+    - _ProximityLightMiddleColorOverride: {r: 0, g: 1, b: 0, a: 0.5}
+    - _ProximityLightOuterColorOverride: {r: 0, g: 0, b: 1, a: 1}
+    - _RimColor: {r: 0, g: 0.94952226, b: 1, a: 0.497}
+    - _RoundCornersRadius: {r: 0.5, g: 0.5, b: 0.5, a: 0.5}

+ 8 - 0
Assets/远程协助UI/materials/interfaceAnalysis1.mat.meta

@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6baa51228cf42254998bdd59f9810792
+NativeFormatImporter:
+  externalObjects: {}
+  mainObjectFileID: 2100000
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: