This commit is contained in:
YangHua 2024-06-05 13:16:09 +08:00
parent 7e185ed9f5
commit a26060e685
42 changed files with 8514 additions and 95783 deletions

File diff suppressed because it is too large Load Diff

View File

@ -30,9 +30,10 @@ namespace Adam
//url = WebIPAdress.Instance.dicAdresses["任务书"];
//AssignmentDatas aData = await AsyncWebReq.Get<AssignmentDatas>(url);
string json = FileUtil.ReadFromLocal("Local/任务书.json");
AssignmentDatas aData = JsonConvert.DeserializeObject<AssignmentDatas>(json);
rwsTip.text = aData.message;
//string json = FileUtil.ReadFromLocal("Local/任务书.json");
//AssignmentDatas aData = JsonConvert.DeserializeObject<AssignmentDatas>(json);
rwsTip.text = UIManager.Instance.messageData.questbooks;
originPos = rws.anchoredPosition;
loadBtn.onClick.AddListener(OnLoad);
closeBtn.onClick.AddListener(() => { SwitchPanel(false); });

View File

@ -21,7 +21,7 @@ namespace Components
public bool isMove = false;
public bool isOnce = false;
public bool isLooked = true;
public TextMeshPro customTip;
private TextMeshPro customTip;
// Use this for initialization
private void Start()
{

View File

@ -0,0 +1,80 @@
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[Serializable]
public class UserListItem
{
/// <summary>
/// 工单编号
/// </summary>
public string testpoint;
/// <summary>
///
/// </summary>
public string valuepoint;
}
[Serializable]
public class WorklistItem
{
/// <summary>
/// 总
/// </summary>
public string keywork;
/// <summary>
///
/// </summary>
public string valuework;
}
[Serializable]
public class EnergylistItem
{
/// <summary>
/// 正向有功
/// </summary>
public string work;
/// <summary>
///
/// </summary>
public List<WorklistItem> worklist;
}
[Serializable]
public class MessageData
{
/// <summary>
/// 场景名称
/// </summary>
public string scenename;
/// <summary>
/// 任务书
/// </summary>
public string questbooks;
/// <summary>
/// 用户基本信息
/// </summary>
public string userinformation;
/// <summary>
///
/// </summary>
public List<UserListItem> userList;
/// <summary>
/// 现场电能表信息内容
/// </summary>
public string energyinformation;
/// <summary>
///
/// </summary>
public List<EnergylistItem> energylist;
/// <summary>
/// 电流短接
/// </summary>
public string stubtype;
/// <summary>
/// 电流
/// </summary>
public string electriccurrent;
/// <summary>
/// 电压
/// </summary>
public string voltage;
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: dea3f3e3ba8113c409c215d024ff93b9
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -43,13 +43,13 @@ namespace Adam
}
// Use this for initialization
public void Init(string userNub)
public void Init()
{
//url = WebIPAdress.Instance.dicAdresses["通用数据接口"];
//string _url = url + userNub;
//root = await AsyncWebReq.Get<Root>(_url);
currentEC = GetDateItemByUserID(userNub);
currentEC = GetDateItemByUserID(null);
GlobalFlag.biaojiData = BiaoJiData();
GlobalFlag.Beilv = currentEC.Beilv;

View File

@ -24,19 +24,12 @@ namespace Adam
// Use this for initialization
private void Start()
{
goToSceneBtn.onClick.AddListener(() => OnGo(userID.text));
userID.text = UIManager.Instance.messageData.scenename;
goToSceneBtn.onClick.AddListener(OnGo);
}
public void OnGo(string userid)
public void OnGo()
{
if (string.IsNullOrEmpty(userid))
{
request.text = "编号未输入";
return;
}
userid = ToolUtility.SubUserNum(userid);
if (UIManager.Instance.toolsItemManager.recoverBtn.gameObject.activeSelf)
{
UIManager.Instance.toolsItemManager.recoverBtn.onClick?.Invoke();
@ -44,31 +37,12 @@ namespace Adam
UIManager.Instance.bottomCotroller.BirdEyeView.isOn = false;
SceneLoad.Instance.isOnece = true;
SceneLoad.Instance.MaskLoadInfoPanel();
ExamusersController.Instance.Init(userid);
bool sceneState = ExamusersController.Instance.GetSceneState();
request.text = "";
if (sceneState)
{
string sceneInfo = ExamusersController.Instance.GetSceneInfo();
GlobalFlag.userId = userid;
//Debug.Log(GlobalFlag.userId);
string[] tt = ToolUtility.GetInfos(sceneInfo, '_');
if (!string.IsNullOrWhiteSpace(tt[0]))
{
SceneInfoData sceneInfoData = new SceneInfoData(tt[0], tt[1], tt[2]);
GlobalFlag.sceneData = sceneInfoData;
SwitchPanel();
UIManager.Instance.backToToolBtn.gameObject.SetActive(true);
UIManager.Instance.threeDTip.transform.parent.gameObject.SetActive(false);
SceneLoad.Instance.SceneChange(tt[3]);
}
}
else
{
SceneLoad.Instance.isOnece = false;
SceneLoad.Instance.ResetLoadInfoPanel(false);
request.text = "用户信息不存在";
}
//ExamusersController.Instance.Init();
string sceneInfo = userID.text;
SwitchPanel();
UIManager.Instance.backToToolBtn.gameObject.SetActive(true);
UIManager.Instance.threeDTip.transform.parent.gameObject.SetActive(false);
SceneLoad.Instance.SceneChange(sceneInfo);
}
public void SwitchPanel()

View File

@ -19,139 +19,15 @@ using Utility;
public class MobileTerminalController : MonoBehaviour
{
//private string userViewUrl;
//private string tabelViewUrl;
public InputField number;
/// <summary>
/// 表记数据
/// </summary>
public Button outsideBtn;
/// <summary>
/// 用户数据
/// </summary>
public Button electricitBtn;
public Button backBtn;
public Button closeBtn;
public GameObject tapView;
public GameObject userView;
public Transform userContent;
public Transform tapContent;
public MobileTerminalTipsItem itemPrfab;
//[HideInInspector]
public UserViewData uData = new UserViewData();
public SingleUserData singleUserData = new SingleUserData();
//[HideInInspector]
public TableViewData tData = new TableViewData();
public SingleTableData singleTableData = new SingleTableData();
public JObject jbsx;
public JObject jbxx;
public List<JObject> jlzzxx = new List<JObject>();
public bool isOnLoad = false;
public Text requset;
// Use this for initialization
private void Start()
{
requset.text = "";
closeBtn.onClick.AddListener(() =>
{
UIManager.Instance.bottomCotroller.SwitchFirstPerson(true);
});
string uJson = FileUtil.ReadFromLocal("Local/用户视图.json");
uData = JsonConvert.DeserializeObject<UserViewData>(uJson);
string tJson = FileUtil.ReadFromLocal("Local/表记视图.json");
tData = JsonConvert.DeserializeObject<TableViewData>(uJson);
//userViewUrl = WebIPAdress.Instance.dicAdresses["用户视图"];
//tabelViewUrl = WebIPAdress.Instance.dicAdresses["表记视图"];
outsideBtn.onClick.AddListener(OnOutsideView);
electricitBtn.onClick.AddListener(OnElectricitView);
backBtn.onClick.AddListener(OnBack);
SwitchView(-1);
OnTable();
}
/// <summary>
/// 通过用户编号获取指定用户视图
/// </summary>
/// <param name="userID"></param>
/// <returns></returns>
public SingleUserData GetSingleUserDataByUserID(string userID)
{
SingleUserData singleUserDataTemp = new SingleUserData();
if (uData.data.data.Count > 0)
{
List<SingleUserData> users = uData.data.data;
for (int i = 0; i < users.Count; i++)
{
if (users[i].data[5].Contains(userID))
{
singleUserDataTemp.data = users[i].data;
}
}
}
return singleUserDataTemp;
}
/// <summary>
/// 通过用户编号获取指定用户视图
/// </summary>
/// <param name="userID"></param>
/// <returns></returns>
public SingleTableData GetSingleTableDataByUserID(string userID)
{
SingleTableData singleTableDataTemp = new SingleTableData();
if (tData.data.data.Count > 0)
{
List<SingleTableData> users = tData.data.data;
for (int i = 0; i < users.Count; i++)
{
if (users[i].data[5].Contains(userID))
{
singleTableDataTemp.data = users[i].data;
}
}
}
return singleTableDataTemp;
}
public void OnUser()
{
if (userContent.childCount > 0)
{
for (int i = 0; i < userContent.childCount; i++)
{
Destroy(userContent.GetChild(i).gameObject);
}
}
isOnLoad = true;
string userID = ToolUtility.SubUserNum(number.text);
//string url = userViewUrl + userID;
//uData = await AsyncWebReq.Get<UserViewData>(url);
singleUserData = GetSingleUserDataByUserID(userID);
if (singleUserData.data == null)
{
StopCoroutine(WaitShowRequset(null));
StartCoroutine(WaitShowRequset("用户不存在"));
}
else
{
for (int i = 0; i < singleUserData.data.Count; i++)
{
MobileTerminalTipsItem itemTip = Instantiate(itemPrfab, userContent);
itemTip.SetValue(singleUserData.data[i]);
}
SwitchView(0);
}
isOnLoad = false;
}
public void OnTable()
{
if (tapContent.childCount > 0)
@ -161,75 +37,13 @@ public class MobileTerminalController : MonoBehaviour
Destroy(tapContent.GetChild(i).gameObject);
}
}
isOnLoad = true;
string userID = ToolUtility.SubUserNum(number.text);
//string url = tabelViewUrl + userID;
//tData = await AsyncWebReq.Get<TableViewData>(url);
singleTableData = GetSingleTableDataByUserID(userID);
if (singleTableData.data == null)
List<UserListItem> userList = UIManager.Instance.messageData.userList;
for (int i = 0; i < userList.Count; i++)
{
StopCoroutine(WaitShowRequset(null));
StartCoroutine(WaitShowRequset("用户不存在"));
}
else
{
for (int i = 0; i < singleTableData.data.Count; i++)
{
MobileTerminalTipsItem itemTip = Instantiate(itemPrfab, tapContent);
itemTip.SetValue(singleTableData.data[i]);
}
SwitchView(1);
}
isOnLoad = false;
}
/// <summary>
/// 用户数据
/// </summary>
public void OnElectricitView()
{
if (isOnLoad) return;
if (number.text == "") return;
OnUser();
}
/// <summary>
/// 表记数据
/// </summary>
public void OnOutsideView()
{
if (isOnLoad) return;
if (number.text == "") return;
OnTable();
}
private IEnumerator WaitShowRequset(string info)
{
requset.text = info;
yield return new WaitForSeconds(3f);
requset.text = "";
}
public void SwitchView(int index)
{
userView.SetActive(index == 0);
tapView.SetActive(index == 1);
if (index == 0 || index == 1)
{
backBtn.gameObject.SetActive(true);
}
else
{
backBtn.gameObject.SetActive(false);
MobileTerminalTipsItem itemTip = Instantiate(itemPrfab, tapContent);
string info = $"{ userList[i].testpoint}:{ userList[i].valuepoint}";
itemTip.SetValue(info);
}
}
public void OnBack()
{
SwitchView(-1);
}
}

View File

@ -50,18 +50,17 @@ public class SceneLoad : MonoSingleton<SceneLoad>
yield return null;
}
loadingPanel.SetActive(false);
if (loadSceneName == "묏야쇌끝쒼" || loadSceneName == "크처懇끝" || loadSceneName == "鬼<>빵" || loadSceneName == "크소있" || loadSceneName == "菱쉔렛")
if (loadSceneName == "室内型高供低计用户" || loadSceneName == "室内型高供高计" || loadSceneName == "室外型低压公配变" || loadSceneName == "室外型高供低计用户" || loadSceneName == "室外型高供高计用户")
{
UIManager.Instance.time.RunTimer();
if (GlobalFlag.isRecord == "1")
{
Camera uiCamera = GameObject.FindGameObjectWithTag("UICamera").GetComponent<Camera>();
if (uiCamera != null)
{
UIManager.Instance.canvas.worldCamera = uiCamera;
}
UIManager.Instance.uis.OnStartRecorad();
}
//if (GlobalFlag.isRecord == "1")
//{
// Camera uiCamera = GameObject.FindGameObjectWithTag("UICamera").GetComponent<Camera>();
// if (uiCamera != null)
// {
// UIManager.Instance.canvas.worldCamera = uiCamera;
// }
//}
}
}

View File

@ -1,4 +1,5 @@
using Adam;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
using System.Threading.Tasks;
@ -25,7 +26,7 @@ public class UIManager : MonoSingleton<UIManager>
public LoginController loginController;
public Reconnection Reconnection;
public GoToSceneController goToScene;
public UIS uis;
//public UIS uis;
public Canvas canvas;
public Button exitBtn;
public Button backToToolBtn;
@ -34,6 +35,13 @@ public class UIManager : MonoSingleton<UIManager>
public GanTanHao ganTanHao;
public bool isChangJing = false;
public bool isBox = false;
public MessageData messageData = new MessageData();
private void Awake()
{
string json = FileUtil.ReadFromLocal("Message.json");
messageData = JsonConvert.DeserializeObject<MessageData>(json);
}
// Use this for initialization
private void Start()
{
@ -41,19 +49,19 @@ public class UIManager : MonoSingleton<UIManager>
{
if (exitCheckController.num_click != 2)
{
if (GlobalFlag.isRecord == "1")
{
uis.OnStopRecorad();
}
//if (GlobalFlag.isRecord == "1")
//{
// uis.OnStopRecorad();
//}
exitCheckController.ResetPlane();
exitCheckController.ExitCheckPanel.SetActive(true);
}
else
{
if (GlobalFlag.isRecord == "1")
{
uis.OnStopRecorad();
}
//if (GlobalFlag.isRecord == "1")
//{
// uis.OnStopRecorad();
//}
Application.Quit();
}
});
@ -69,10 +77,10 @@ public class UIManager : MonoSingleton<UIManager>
backToToolBtn.gameObject.SetActive(false);
bottomCotroller.BirdEyeView.isOn = false;
bottomCotroller.BirdEyeView.gameObject.SetActive(false);
if (GlobalFlag.isRecord == "1")
{
uis.OnStopRecorad();
}
//if (GlobalFlag.isRecord == "1")
//{
// uis.OnStopRecorad();
//}
BackToTool();
});
backToToolBtn.gameObject.SetActive(false);

View File

@ -33,7 +33,7 @@ namespace Views
// Use this for initialization
private void OnEnable ()
{
ttpData = ExamusersController.Instance.GetTTPDs();
//ttpData = ExamusersController.Instance.GetTTPDs();
for (int i = 0; i < ttpData.Count; i++)
{
int index = i;
@ -42,11 +42,11 @@ namespace Views
infos = ttpData[index].rdj;
infos.Add(ttpData[index].AA1.ToString());
infos.Add(ttpData[index].AV1.ToString());
if (GlobalFlag.sceneData.info0 == "单相")
{
textMesh.text = infos[0];
return;
}
//if (GlobalFlag.sceneData.info0 == "单相")
//{
// textMesh.text = infos[0];
// return;
//}
infos.Add(ttpData[index].BA1.ToString());
infos.Add(ttpData[index].BV1.ToString());
infos.Add(ttpData[index].CA1.ToString());

View File

@ -0,0 +1,76 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &2671802278030579037
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2671802278030579039}
- component: {fileID: 2671802278030579038}
- component: {fileID: 2671802278030579024}
m_Layer: 0
m_Name: CameraManager
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &2671802278030579039
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2671802278030579037}
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: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &2671802278030579038
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2671802278030579037}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 01162971d7c67094a817188dbdea753b, type: 3}
m_Name:
m_EditorClassIdentifier:
Btn: {fileID: 0}
trans: {fileID: 0}
tempPos: {x: 0, y: 0, z: 0}
Player: {fileID: 0}
isGang: 0
tips:
id: 0
score: 0
--- !u!114 &2671802278030579024
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2671802278030579037}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 2102f562e13e08d4886f40f856d36e66, type: 3}
m_Name:
m_EditorClassIdentifier:
id: 0
CompletedorNot: 0
Erroritem: 0
scorercontinuer: 2
name:
orderName:
Enable: 0
stepName:
isOnce: 1

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 4752b7ce9df9a844a988998eb3e34d4c
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,88 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &3497283653043674449
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 3497283653043674451}
- component: {fileID: 3497283653043674448}
m_Layer: 0
m_Name: GameManager
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &3497283653043674451
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3497283653043674449}
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: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &3497283653043674448
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3497283653043674449}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 3a29dededd306804aac614d485d2e387, type: 3}
m_Name:
m_EditorClassIdentifier:
Player: {fileID: 0}
CameraManager: {fileID: 0}
QianXing: {fileID: 0}
WanYon: {fileID: 0}
YanDianBi: {fileID: 0}
dataStr:
GFGame: []
SceneData: {fileID: 0}
Inverter:
- {fileID: 8814916775944311458, guid: 65bfd8393f8649845a55ae25b42f6099, type: 3}
- {fileID: 7067006512732022887, guid: d5b330a2e78038440a252f22576f42a6, type: 3}
- {fileID: 5869344655596831337, guid: 9d6d1b907a0e2f241b5ea21918dc1c57, type: 3}
- {fileID: 4358485102403047296, guid: 0e90fa63ba3e56749b502a9a4e00b64f, type: 3}
- {fileID: 6770620356190950818, guid: 3f1b779e277f8e34f9589b937e2e1915, type: 3}
trans: {fileID: 0}
WanStopValve: {fileID: 0}
QianStopValve: {fileID: 0}
NiBianQi: {fileID: 0}
XiangWeiUI: {fileID: 0}
temp: {fileID: 0}
interactive: []
RedWanYon: {fileID: 0}
RedWanYonPos: {x: 0, y: 0, z: 0}
BlackWanYon: {fileID: 0}
BlackWanYonPos: {x: 0, y: 0, z: 0}
FuAnBiao: {fileID: 0}
interactiveEnum: 0
biaojiPos: {fileID: 0}
toolsCam: {fileID: 0}
MultimeterIm: {fileID: 0}
DianFuIm: {fileID: 0}
DianFuTex: {fileID: 0}
FirstPersonController: {fileID: 0}
SceneName:
GanTan: {fileID: 0}
GonZuoZheng: 0
JiaoHu: 0
YanDian: 0
HuiFuim: {fileID: 0}
redok: 0
redData:
DoolsPlayer: {fileID: 0}

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: ae8abf8c4406dc749837eda21c6b1c60
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,478 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &1530819393981207667
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 2194731364714483401}
- component: {fileID: 1873490784390113573}
- component: {fileID: 1530819393981207668}
m_Layer: 0
m_Name: NPC
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &2194731364714483401
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1530819393981207667}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -16.81, y: -0.19, z: 26.47}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 8036840173969310371}
- {fileID: 1873490784713911016}
- {fileID: 2194731364050689183}
- {fileID: 3811460558194847452}
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!136 &1873490784390113573
CapsuleCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1530819393981207667}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
m_Radius: 0.4
m_Height: 1.8
m_Direction: 1
m_Center: {x: 0, y: 0.9, z: 0}
--- !u!114 &1530819393981207668
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1530819393981207667}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 116e73b071222f8499967697228559a1, type: 3}
m_Name:
m_EditorClassIdentifier:
waypoints:
- {fileID: 0}
- {fileID: 0}
- {fileID: 0}
npcAnimator: {fileID: 1873490785053916023}
isMove: 0
isOnce: 0
isLooked: 1
customTip: {fileID: 0}
--- !u!1 &1873490784713911015
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 1873490784713911016}
- component: {fileID: 1873490784713911018}
- component: {fileID: 1873490784713911017}
m_Layer: 0
m_Name: Cube
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &1873490784713911016
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1873490784713911015}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 1.14, y: 1.0394, z: 1.2417}
m_LocalScale: {x: 4.886088, y: 3.0788, z: 1.7833}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 2194731364714483401}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!65 &1873490784713911018
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1873490784713911015}
m_Material: {fileID: 0}
m_IsTrigger: 1
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 1.2104658, y: 0.7603224, z: 2.1158533}
m_Center: {x: 0.04403628, y: -0.119836465, z: 0.54118615}
--- !u!114 &1873490784713911017
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1873490784713911015}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 21832ca312e89134ab72400d39f7023e, type: 3}
m_Name:
m_EditorClassIdentifier:
g1: {fileID: 0}
name: "\u5DE5\u4F5C\u8BC1"
dialogue: "\u4F60\u597D\uFF0C\u6211\u4EEC\u662Fxx\u4F9B\u7535\u516C\u53F8\u5DE5\u4F5C\u4EBA\u5458\uFF0C\u8FD9\u662F\u6211\u7684\u5DE5\u4F5C\u8BC1\uFF0C\u73B0\u5728\u6211\u4EEC\u8981\u5BF9\u8D35\u6237\u8FDB\u884C\u73B0\u573A\u68C0\u67E5\u3002"
isok: 0
g12: {fileID: 8036840173969310370}
socre: 2
tips: "\u51FA\u793A\u5DE5\u4F5C\u8BC1"
id: 3
--- !u!1 &8036840173969310370
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 8036840173969310371}
- component: {fileID: 8036840173969310372}
- component: {fileID: 8036840173969310373}
m_Layer: 9
m_Name: "\u611F\u53F9\u53F7"
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &8036840173969310371
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8036840173969310370}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 1.775, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 8036840174918287333}
m_Father: {fileID: 2194731364714483401}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &8036840173969310372
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8036840173969310370}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: c2e67cf68f404b94fb132877657f6877, type: 3}
m_Name:
m_EditorClassIdentifier:
"\u7269\u54C1\u540D\u79F0": "\u611F\u53F9\u53F7"
"\u7269\u54C1\u5206\u7C7B": 4
"\u7269\u54C1\u72B6\u6001": 2
"\u4EA4\u4E92\u5B8C\u6210": 0
inHandPos: {x: 0, y: 0, z: 0}
inHandRot: {x: 0, y: 0, z: 0}
game: {fileID: 0}
name: "\u611F\u53F9\u53F7"
dialogue: {fileID: 0}
--- !u!114 &8036840173969310373
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8036840173969310370}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1590dd0be229e0b4cba1631e4b434ffd, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Delegates: []
--- !u!1 &8036840174918287332
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 8036840174918287333}
- component: {fileID: 8036840174918287352}
- component: {fileID: 8036840174918287335}
- component: {fileID: 8036840174918287336}
m_Layer: 9
m_Name: "\u611F\u53F9\u53F7"
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &8036840174918287333
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8036840174918287332}
m_LocalRotation: {x: 0, y: 1, z: 0, w: 0}
m_LocalPosition: {x: 0.055, y: 0.309, z: -0.047}
m_LocalScale: {x: 0.42722997, y: 0.4, z: 0.5}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 8036840173969310371}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
--- !u!33 &8036840174918287352
MeshFilter:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8036840174918287332}
m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}
--- !u!23 &8036840174918287335
MeshRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8036840174918287332}
m_Enabled: 1
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:
- {fileID: 2100000, guid: 6677b80613394cf48b0d56e8cb5d470d, type: 2}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
m_StaticBatchRoot: {fileID: 0}
m_ProbeAnchor: {fileID: 0}
m_LightProbeVolumeOverride: {fileID: 0}
m_ScaleInLightmap: 1
m_ReceiveGI: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 1
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!65 &8036840174918287336
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8036840174918287332}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 0.99999976, y: 5.6853576, z: 0.9852514}
m_Center: {x: -0.000005720147, y: -2.3426774, z: 0.0014581088}
--- !u!1001 &1501691192271930155
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 2194731364714483401}
m_Modifications:
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_Pivot.x
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_Pivot.y
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_RootOrder
value: 3
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_AnchorMax.x
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_AnchorMax.y
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_AnchorMin.x
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_AnchorMin.y
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_SizeDelta.x
value: 20
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_SizeDelta.y
value: 5
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_LocalPosition.z
value: 0.0049991608
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_LocalRotation.w
value: 0.08386724
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_LocalRotation.x
value: -0
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_LocalRotation.y
value: 0.99647695
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_LocalRotation.z
value: -0
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_AnchoredPosition.x
value: 0.031
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_AnchoredPosition.y
value: 1.7789999
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 170.378
objectReference: {fileID: 0}
- target: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3992741034969977438, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_text
value: "\u5BA2\u6237"
objectReference: {fileID: 0}
- target: {fileID: 9071954252016149054, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
propertyPath: m_Name
value: CustomTips
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
--- !u!224 &3811460558194847452 stripped
RectTransform:
m_CorrespondingSourceObject: {fileID: 2319937656742358519, guid: d900a32d5d0bf254490837e7d5d88d60, type: 3}
m_PrefabInstance: {fileID: 1501691192271930155}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &4006085610264257851
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 2194731364714483401}
m_Modifications:
- target: {fileID: 2496939794732213022, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
propertyPath: m_Name
value: Women-01
objectReference: {fileID: 0}
- target: {fileID: 3021133799199914404, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
propertyPath: m_RootOrder
value: 2
objectReference: {fileID: 0}
- target: {fileID: 3021133799199914404, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3021133799199914404, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3021133799199914404, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
propertyPath: m_LocalPosition.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3021133799199914404, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 3021133799199914404, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3021133799199914404, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
propertyPath: m_LocalRotation.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3021133799199914404, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
propertyPath: m_LocalRotation.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3021133799199914404, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3021133799199914404, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3021133799199914404, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
--- !u!95 &1873490785053916023 stripped
Animator:
m_CorrespondingSourceObject: {fileID: 3343782340009778764, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
m_PrefabInstance: {fileID: 4006085610264257851}
m_PrefabAsset: {fileID: 0}
--- !u!4 &2194731364050689183 stripped
Transform:
m_CorrespondingSourceObject: {fileID: 3021133799199914404, guid: 3032f44b8ab77cf41a1730be444e2914, type: 3}
m_PrefabInstance: {fileID: 4006085610264257851}
m_PrefabAsset: {fileID: 0}

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 6e9427575a5fea94ead87af117effe45
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: b3f4df6faf51bac478652e7e0aa2b512
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: fd7bf7d1951db7d45837e40450a11ddc
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,285 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &9199873682519555842
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 9199873682519555843}
- component: {fileID: 9199873682519555841}
- component: {fileID: 9199873682519555840}
m_Layer: 5
m_Name: RawImage
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &9199873682519555843
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9199873682519555842}
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: 9199873683467470681}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 263.1, y: 251.1}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &9199873682519555841
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9199873682519555842}
m_CullTransparentMesh: 1
--- !u!114 &9199873682519555840
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9199873682519555842}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1344c3c82d62a2a41a3576d8abb8e3ea, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Texture: {fileID: 8400000, guid: d700b26cd5499064fb24562a9af02546, type: 2}
m_UVRect:
serializedVersion: 2
x: 0
y: 0
width: 1
height: 1
--- !u!1 &9199873682797800494
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 9199873682797800495}
m_Layer: 5
m_Name: UIMap
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &9199873682797800495
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9199873682797800494}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 34.9543}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 9199873684025469753}
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &9199873683467470680
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 9199873683467470681}
- component: {fileID: 9199873683467470687}
- component: {fileID: 9199873683467470686}
m_Layer: 5
m_Name: "\u5C0F\u5730\u56FE"
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &9199873683467470681
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9199873683467470680}
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: 9199873682519555843}
m_Father: {fileID: 9199873684025469753}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 1, y: 1}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: -183, y: -240}
m_SizeDelta: {x: 300, y: 300}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &9199873683467470687
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9199873683467470680}
m_CullTransparentMesh: 1
--- !u!114 &9199873683467470686
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9199873683467470680}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: 21839061cd4e51f438e69b12377cf32e, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!1 &9199873684025469752
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 9199873684025469753}
- component: {fileID: 9199873684025469756}
- component: {fileID: 9199873684025469759}
- component: {fileID: 9199873684025469758}
m_Layer: 5
m_Name: MainUI
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &9199873684025469753
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9199873684025469752}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 0, y: 0, z: 0}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 9199873683467470681}
m_Father: {fileID: 9199873682797800495}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 0, y: 0}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0, y: 0}
--- !u!223 &9199873684025469756
Canvas:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9199873684025469752}
m_Enabled: 1
serializedVersion: 3
m_RenderMode: 1
m_Camera: {fileID: 0}
m_PlaneDistance: 1
m_PixelPerfect: 0
m_ReceivesEvents: 1
m_OverrideSorting: 0
m_OverridePixelPerfect: 0
m_SortingBucketNormalizedSize: 0
m_AdditionalShaderChannelsFlag: 0
m_SortingLayerID: 0
m_SortingOrder: -1
m_TargetDisplay: 0
--- !u!114 &9199873684025469759
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9199873684025469752}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
m_Name:
m_EditorClassIdentifier:
m_UiScaleMode: 1
m_ReferencePixelsPerUnit: 100
m_ScaleFactor: 1
m_ReferenceResolution: {x: 1920, y: 1080}
m_ScreenMatchMode: 1
m_MatchWidthOrHeight: 0
m_PhysicalUnit: 3
m_FallbackScreenDPI: 96
m_DefaultSpriteDPI: 96
m_DynamicPixelsPerUnit: 1
m_PresetInfoIsWorld: 0
--- !u!114 &9199873684025469758
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9199873684025469752}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}
m_Name:
m_EditorClassIdentifier:
m_IgnoreReversedGraphics: 1
m_BlockingObjects: 0
m_BlockingMask:
serializedVersion: 2
m_Bits: 4294967295

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: c2fd5580509f3704eb81d36584f37be3
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 3032f44b8ab77cf41a1730be444e2914
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -116,7 +116,7 @@ public class Reconnection : MonoBehaviour
UIManager.Instance.loginController.gameObject.SetActive(false);
UIManager.Instance.jobCardController.show(DisconnectedData.timuAnd);
im.gameObject.SetActive(false);
UIManager.Instance.goToScene.OnGo(DisconnectedData.userBianHao);
//UIManager.Instance.goToScene.OnGo(DisconnectedData.userBianHao);
UIManager.Instance.goToScene.userID.text = DisconnectedData.userBianHao;
UIManager.Instance.exitBtn.gameObject.SetActive(true);
te.text = "¿¼ÉúÐÕÃû£º"+DisconnectedData.UserName;

View File

@ -14,7 +14,6 @@ public class GameManager : MonoBehaviour
{
public static GameManager Instance;
public GameObject Player;
public CameraManager CameraManager;
[SerializeField] GameObject QianXing;
[SerializeField] GameObject WanYon;
[SerializeField] GameObject YanDianBi;
@ -68,7 +67,7 @@ public class GameManager : MonoBehaviour
}
}
// Start is called before the first frame update
private async void Start()
private void Start()
{
UIManager.Instance.toolsItemManager.ItemClick.AddListener(ToolsShow);
UIManager.Instance.toolsItemManager.recoverEvent.AddListener(() =>
@ -79,8 +78,8 @@ public class GameManager : MonoBehaviour
interactiveEnum = Interactive.none;
FirstPersonController.enabled = true;
});
string sceneInfo = GlobalFlag.SceneInfo();
var tempStr = sceneInfo.Split('_');
//string sceneInfo = GlobalFlag.SceneInfo();
//var tempStr = sceneInfo.Split('_');
int pvwCount = 0;
if (GlobalFlag.userType == "Õý³£")
@ -92,13 +91,13 @@ public class GameManager : MonoBehaviour
pvwCount = GlobalFlag.pvwNum;
}
if (tempStr[tempStr.Length - 1].Equals("Óйâ·ü"))
{
for (int i = 0; i < pvwCount; i++)
{
GFGame[i].gameObject.SetActive(true);
}
}
//if (tempStr[tempStr.Length - 1].Equals("Óйâ·ü"))
//{
// for (int i = 0; i < pvwCount; i++)
// {
// GFGame[i].gameObject.SetActive(true);
// }
//}
else
{
if (NiBianQi != null)
@ -106,18 +105,18 @@ public class GameManager : MonoBehaviour
}
for (int i = 0; i < Inverter.Count; i++)
{
if (sceneInfo.Equals(Inverter[i].name))
{
GameObject obj = Instantiate(Inverter[i]);
obj.transform.localPosition = biaojiPos.localPosition;
obj.transform.localEulerAngles = biaojiPos.localEulerAngles;
interactive.Add(obj.GetComponentInChildren<door_control>().gameObject);
}
}
if (tempStr[tempStr.Length - 1].Equals("ÎÞ¹â·ü"))
{
await FractionManager.Instance.overAsync(5, 10, "¼ì²é¹â·ü");
//if (sceneInfo.Equals(Inverter[i].name))
//{
// GameObject obj = Instantiate(Inverter[i]);
// obj.transform.localPosition = biaojiPos.localPosition;
// obj.transform.localEulerAngles = biaojiPos.localEulerAngles;
// interactive.Add(obj.GetComponentInChildren<door_control>().gameObject);
//}
}
//if (tempStr[tempStr.Length - 1].Equals("ÎÞ¹â·ü"))
//{
// await FractionManager.Instance.overAsync(5, 10, "¼ì²é¹â·ü");
//}
}
public void init()
{

View File

@ -25,7 +25,7 @@ public class CameraManager : MonoBehaviour
await Task.Delay(100);
BtnOnClick(UIManager.Instance.bottomCotroller.BirdEyeView);
UIManager.Instance.toolsItemManager.SwitchAllToolItems();
f = Player.transform.GetComponent<FirstPersonController>();
//f = Player.transform.GetComponent<FirstPersonController>();
}
/// <summary>

View File

@ -41,21 +41,6 @@ public class newfollow : MonoBehaviour
}
}
}
//if (Input.GetKeyDown(KeyCode.Escape))
//{
// if (_focusedPrefab != null)
// {
// _focusedPrefab.gameObject.SetActive(false);
// isOnce = true;
// }
//}
//if (Input.GetKey(KeyCode.LeftControl) && Input.GetKey(KeyCode.C))
//{
// if (_focusedPrefab != null)
// _focusedPrefab.WebView.Copy();
//}
}
/// <summary>
/// 使用工具打开链接
@ -77,130 +62,10 @@ public class newfollow : MonoBehaviour
{
//Application.OpenURL(url);
//_focusedPrefab.InitialUrl = _url;
_canvas.gameObject.SetActive(true);
//_canvas.gameObject.SetActive(true);
}
public void OnClose()
{
_canvas.gameObject.SetActive(false);
//_canvas.gameObject.SetActive(false);
}
//private void _setUpHardwareKeyboard()
//{
// if (_hardwareKeyboard == null)
// {
// _hardwareKeyboard = HardwareKeyboardListener.Instantiate();
// _hardwareKeyboard.KeyDownReceived += (sender, eventArgs) =>
// {
// var webViewWithKeyDown = _focusedPrefab.WebView as IWithKeyDownAndUp;
// if (webViewWithKeyDown == null)
// {
// //_focusedPrefab.WebView.HandleKeyboardInput(eventArgs.Value);
// }
// else
// {
// webViewWithKeyDown.KeyDown(eventArgs.Value, eventArgs.Modifiers);
// }
// };
// }
//}
//private void CreatView(string _url)
//{
// var mainWebViewPrefab = CanvasWebViewPrefab.Instantiate();
// mainWebViewPrefab.transform.SetParent(_canvas.transform, false);
// var rectTransform = mainWebViewPrefab.transform as RectTransform;
// rectTransform.anchoredPosition3D = Vector3.zero;
// rectTransform.offsetMin = Vector2.zero;
// rectTransform.offsetMax = Vector2.zero;
// mainWebViewPrefab.transform.localScale = Vector3.one;
// _focusedPrefab = mainWebViewPrefab;
// mainWebViewPrefab.Initialized += (s, e) =>
// {
// var webViewWithPopups = mainWebViewPrefab.WebView as IWithPopups;
// if (webViewWithPopups == null)
// {
// mainWebViewPrefab.WebView.LoadHtml(NOT_SUPPORTED_HTML);
// return;
// }
// mainWebViewPrefab.WebView.LoadUrl(_url);
// webViewWithPopups.SetPopupMode(PopupMode.LoadInNewWebView);
// webViewWithPopups.PopupRequested += (webView, eventArgs) =>
// {
// var popupPrefab = CanvasWebViewPrefab.Instantiate(eventArgs.WebView);
// _focusedPrefab = popupPrefab;
// popupPrefab.transform.SetParent(_canvas.transform, false);
// var popupRectTransform = popupPrefab.transform as RectTransform;
// popupRectTransform.anchoredPosition3D = Vector3.zero;
// popupRectTransform.offsetMin = Vector2.zero;
// popupRectTransform.offsetMax = Vector2.zero;
// popupPrefab.transform.localScale = Vector3.one;
// // Place the popup in front of the main webview.
// var localPosition = popupPrefab.transform.localPosition;
// localPosition.z = 0.1f;
// popupPrefab.transform.localPosition = localPosition;
// popupPrefab.Initialized += (sender, initializedEventArgs) =>
// {
// popupPrefab.WebView.CloseRequested += (popupWebView, closeEventArgs) =>
// {
// _focusedPrefab = mainWebViewPrefab;
// showAsync();
// popupPrefab.Destroy();
// };
// };
// };
// };
//}
//private async void showAsync()
//{
// //await Task.Delay(2000);
// await _focusedPrefab.WaitUntilInitialized();
// //await _focusedPrefab.WebView.WaitForNextPageLoadToFinish();
// var headerText = await _focusedPrefab.WebView.ExecuteJavaScript("toggleVisibility()");
// _setUpHardwareKeyboard();
// Debug.Log("H1 text: " + headerText);
//}
//const string NOT_SUPPORTED_HTML = @"
// <body>
// <style>
// body {
// font-family: sans-serif;
// display: flex;
// justify-content: center;
// align-items: center;
// line-height: 1.25;
// }
// div {
// max-width: 80%;
// }
// li {
// margin: 10px 0;
// }
// </style>
// <div>
// <p>
// Sorry, but this 3D WebView package doesn't support yet the <a href='https://developer.vuplex.com/webview/IWithPopups'>IWithPopups</a> interface. Current packages that support popups:
// </p>
// <ul>
// <li>
// <a href='https://developer.vuplex.com/webview/StandaloneWebView'>3D WebView for Windows and macOS</a>
// </li>
// <li>
// <a href='https://developer.vuplex.com/webview/AndroidWebView'>3D WebView for Android</a>
// </li>
// <li>
// <a href='https://developer.vuplex.com/webview/AndroidGeckoWebView'>3D WebView for Android with Gecko Engine</a>
// </li>
// </ul>
// </div>
// </body>
// ";
}

View File

@ -130,6 +130,10 @@ PrefabInstance:
m_Modification:
m_TransformParent: {fileID: 1233633457}
m_Modifications:
- target: {fileID: 2095932101935723654, guid: 2ac06dd92c2069f4db98276a4465b943, type: 3}
propertyPath: m_Enabled
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3822654451255398218, guid: 2ac06dd92c2069f4db98276a4465b943, type: 3}
propertyPath: m_RootOrder
value: 7
@ -178,10 +182,18 @@ PrefabInstance:
propertyPath: m_Name
value: "\u76F8\u4F4D\u4F0F\u5B89\u8868"
objectReference: {fileID: 0}
- target: {fileID: 4487585604520154608, guid: 2ac06dd92c2069f4db98276a4465b943, type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 5368955186713773247, guid: 2ac06dd92c2069f4db98276a4465b943, type: 3}
propertyPath: rightAndWrong
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8294673237149712167, guid: 2ac06dd92c2069f4db98276a4465b943, type: 3}
propertyPath: m_Enabled
value: 0
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 2ac06dd92c2069f4db98276a4465b943, type: 3}
--- !u!4 &1875592 stripped
@ -220,7 +232,7 @@ Transform:
- {fileID: 865266376}
- {fileID: 1233633457}
m_Father: {fileID: 0}
m_RootOrder: 7
m_RootOrder: 6
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &15887556
GameObject:
@ -840,7 +852,7 @@ Transform:
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 4
m_RootOrder: 3
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &214298342
GameObject:
@ -3304,112 +3316,6 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 5c40c0afd46c1664cae51160cddf5c6d, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!1 &470497126
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 470497127}
- component: {fileID: 470497129}
- component: {fileID: 470497128}
m_Layer: 0
m_Name: ScreenCapture
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &470497127
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 470497126}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 373, y: 540, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 9
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &470497128
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 470497126}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: b8acf2aa984532a4ab99f93b7ca4063e, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Capture: {fileID: 0}
captureFromScreen: {fileID: 0}
m_FilePath:
--- !u!114 &470497129
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 470497126}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: f41e58c74463edf43a9624fcdf483d19, type: 3}
m_Name:
m_EditorClassIdentifier:
_captureKey: 0
_captureOnStart: 0
_startPaused: 0
_listVideoCodecsOnStart: 0
_isRealTime: 1
_stopMode: 0
_stopFrames: 0
_stopSeconds: 0
_useMediaFoundationH264: 0
_videoCodecPriority:
- Lagarith Lossless Codec
- x264vfw - H.264/MPEG-4 AVC codec
- Xvid MPEG-4 Codec
_frameRate: 30
_downScale: 1
_maxVideoSize: {x: 0, y: 0}
_forceVideoCodecIndex: -1
_flipVertically: 0
_supportAlpha: 0
_noAudio: 1
_audioCodecPriority: []
_forceAudioCodecIndex: -1
_forceAudioDeviceIndex: -1
_audioCapture: {fileID: 0}
_autoGenerateFilename: 1
_outputFolderType: 0
_outputFolderPath:
_autoFilenamePrefix: MovieCapture
_autoFilenameExtension: avi
_forceFilename: movie.avi
_outputType: 0
_renderResolution: 18
_renderSize: {x: 1, y: 1}
_renderAntiAliasing: -1
_useMotionBlur: 0
_motionBlurSamples: 16
_motionBlurCameras: []
_allowVSyncDisable: 1
_supportTextureRecreate: 0
_captureMouseCursor: 0
_mouseCursor: {fileID: 0}
_minimumDiskSpaceMB: -1
_lastCamera: {fileID: 1039716621}
_contribCameras:
- {fileID: 1039716620}
_useContributingCameras: 1
--- !u!1001 &485612228
PrefabInstance:
m_ObjectHideFlags: 0
@ -3578,139 +3484,6 @@ MeshFilter:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 508911602}
m_Mesh: {fileID: 2954858793080512207, guid: 20ffa010543df1a46896595ac300588e, type: 3}
--- !u!1 &524804605
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 524804606}
- component: {fileID: 524804608}
- component: {fileID: 524804607}
- component: {fileID: 524804609}
m_Layer: 5
m_Name: CloseBtn
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!224 &524804606
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 524804605}
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: 994553433}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 1, y: 1}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 32.1572, y: 32.1572}
m_Pivot: {x: 1, y: 1}
--- !u!114 &524804607
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 524804605}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 0.11320752, g: 0.11320752, b: 0.11320752, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: 21004a0ccc040014aad83a7a156ecd3f, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!222 &524804608
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 524804605}
m_CullTransparentMesh: 1
--- !u!114 &524804609
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 524804605}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Navigation:
m_Mode: 3
m_WrapAround: 0
m_SelectOnUp: {fileID: 0}
m_SelectOnDown: {fileID: 0}
m_SelectOnLeft: {fileID: 0}
m_SelectOnRight: {fileID: 0}
m_Transition: 1
m_Colors:
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
m_ColorMultiplier: 1
m_FadeDuration: 0.1
m_SpriteState:
m_HighlightedSprite: {fileID: 0}
m_PressedSprite: {fileID: 0}
m_SelectedSprite: {fileID: 0}
m_DisabledSprite: {fileID: 0}
m_AnimationTriggers:
m_NormalTrigger: Normal
m_HighlightedTrigger: Highlighted
m_PressedTrigger: Pressed
m_SelectedTrigger: Selected
m_DisabledTrigger: Disabled
m_Interactable: 1
m_TargetGraphic: {fileID: 524804607}
m_OnClick:
m_PersistentCalls:
m_Calls:
- m_Target: {fileID: 1265359522}
m_TargetAssemblyTypeName: newfollow, Assembly-CSharp
m_MethodName: OnClose
m_Mode: 1
m_Arguments:
m_ObjectArgument: {fileID: 0}
m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
m_IntArgument: 0
m_FloatArgument: 0
m_StringArgument:
m_BoolArgument: 0
m_CallState: 2
--- !u!1 &527774026
GameObject:
m_ObjectHideFlags: 0
@ -4656,108 +4429,6 @@ BoxCollider:
serializedVersion: 2
m_Size: {x: 0.14851537, y: 0.23546849, z: 0.07517852}
m_Center: {x: -0.19069736, y: -0.028084066, z: 0.000000059604645}
--- !u!1 &994553429
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 994553433}
- component: {fileID: 994553432}
- component: {fileID: 994553431}
- component: {fileID: 994553430}
m_Layer: 5
m_Name: WebCanvas
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 0
--- !u!114 &994553430
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 994553429}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}
m_Name:
m_EditorClassIdentifier:
m_IgnoreReversedGraphics: 1
m_BlockingObjects: 0
m_BlockingMask:
serializedVersion: 2
m_Bits: 4294967295
--- !u!114 &994553431
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 994553429}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
m_Name:
m_EditorClassIdentifier:
m_UiScaleMode: 1
m_ReferencePixelsPerUnit: 100
m_ScaleFactor: 1
m_ReferenceResolution: {x: 1920, y: 1080}
m_ScreenMatchMode: 0
m_MatchWidthOrHeight: 0
m_PhysicalUnit: 3
m_FallbackScreenDPI: 96
m_DefaultSpriteDPI: 96
m_DynamicPixelsPerUnit: 1
m_PresetInfoIsWorld: 0
--- !u!223 &994553432
Canvas:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 994553429}
m_Enabled: 1
serializedVersion: 3
m_RenderMode: 0
m_Camera: {fileID: 0}
m_PlaneDistance: 100
m_PixelPerfect: 0
m_ReceivesEvents: 1
m_OverrideSorting: 0
m_OverridePixelPerfect: 0
m_SortingBucketNormalizedSize: 0
m_AdditionalShaderChannelsFlag: 0
m_SortingLayerID: 0
m_SortingOrder: 3
m_TargetDisplay: 0
--- !u!224 &994553433
RectTransform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 994553429}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 0, y: 0, z: 0}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 1812930677}
- {fileID: 524804606}
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 0, y: 0}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0, y: 0}
--- !u!1001 &1039716617
PrefabInstance:
m_ObjectHideFlags: 0
@ -4771,7 +4442,7 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 3350233854110697392, guid: 5a7d7e9bd76f93b418b1f916781feb6a, type: 3}
propertyPath: m_RootOrder
value: 5
value: 4
objectReference: {fileID: 0}
- target: {fileID: 3350233854110697392, guid: 5a7d7e9bd76f93b418b1f916781feb6a, type: 3}
propertyPath: m_LocalPosition.x
@ -4848,11 +4519,6 @@ Camera:
m_CorrespondingSourceObject: {fileID: 3350233855506296104, guid: 5a7d7e9bd76f93b418b1f916781feb6a, type: 3}
m_PrefabInstance: {fileID: 1039716617}
m_PrefabAsset: {fileID: 0}
--- !u!20 &1039716621 stripped
Camera:
m_CorrespondingSourceObject: {fileID: 72258253025566456, guid: 5a7d7e9bd76f93b418b1f916781feb6a, type: 3}
m_PrefabInstance: {fileID: 1039716617}
m_PrefabAsset: {fileID: 0}
--- !u!1 &1095802958
GameObject:
m_ObjectHideFlags: 0
@ -4945,7 +4611,7 @@ Transform:
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 3
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 4.747, y: 249.743, z: 439.425}
--- !u!1 &1096617073
GameObject:
@ -5153,7 +4819,7 @@ Transform:
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 8
m_RootOrder: 7
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &1233633456
GameObject:
@ -5300,7 +4966,7 @@ GameObject:
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 0
m_IsActive: 1
--- !u!65 &1265359517
BoxCollider:
m_ObjectHideFlags: 0
@ -5371,15 +5037,15 @@ Transform:
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1265359516}
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: -6.138, y: -0.97698975, z: -0.49}
m_LocalRotation: {x: 0, y: -0.7071068, z: 0, w: 0.7071068}
m_LocalPosition: {x: -3.408, y: -0.97698975, z: 4.477}
m_LocalScale: {x: 1.7114836, y: 0.882692, z: 1.3039875}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 2059769794}
m_Father: {fileID: 1740042760}
m_RootOrder: 3
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: -90, z: 0}
--- !u!114 &1265359521
MonoBehaviour:
m_ObjectHideFlags: 0
@ -5455,8 +5121,7 @@ MonoBehaviour:
m_Name:
m_EditorClassIdentifier:
_name: Computer
_focusedPrefab: {fileID: 1812930678}
_canvas: {fileID: 994553429}
_canvas: {fileID: 0}
isOnce: 1
url:
--- !u!1001 &1266954248
@ -6052,7 +5717,6 @@ MonoBehaviour:
- "\u9A8C\u7535\u7B14"
- "\u5B89\u5168\u5E3D"
- "\u7EDD\u7F18\u9774"
- "\u76F8\u4F4D\u4F0F\u5B89\u8868"
- "\u94B3\u5F62\u7535\u6D41\u8868"
- "\u4E07\u7528\u8868"
- "\u87BA\u4E1D\u5200_\u7EDD\u7F18"
@ -6072,7 +5736,7 @@ Transform:
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 10
m_RootOrder: 8
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &1376583997 stripped
GameObject:
@ -6241,6 +5905,46 @@ PrefabInstance:
propertyPath: m_IsActive
value: 1
objectReference: {fileID: 0}
- target: {fileID: 1121899384779011861, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_LocalPosition.x
value: -3.503
objectReference: {fileID: 0}
- target: {fileID: 1121899384779011861, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_LocalPosition.y
value: -0.785
objectReference: {fileID: 0}
- target: {fileID: 1121899384779011861, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_LocalPosition.z
value: 0.038
objectReference: {fileID: 0}
- target: {fileID: 1121899384779011861, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_LocalRotation.w
value: 0.0008754044
objectReference: {fileID: 0}
- target: {fileID: 1121899384779011861, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_LocalRotation.x
value: 0.0008754065
objectReference: {fileID: 0}
- target: {fileID: 1121899384779011861, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_LocalRotation.y
value: -0.70710623
objectReference: {fileID: 0}
- target: {fileID: 1121899384779011861, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_LocalRotation.z
value: -0.70710635
objectReference: {fileID: 0}
- target: {fileID: 1121899384779011861, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 269.862
objectReference: {fileID: 0}
- target: {fileID: 1121899384779011861, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 90.004
objectReference: {fileID: 0}
- target: {fileID: 1121899384779011861, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 89.996
objectReference: {fileID: 0}
- target: {fileID: 1282767432881878678, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_RootOrder
value: 2
@ -6293,6 +5997,18 @@ PrefabInstance:
propertyPath: m_Intensity
value: 1.7
objectReference: {fileID: 0}
- target: {fileID: 4657349111279805854, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_LocalPosition.x
value: -3.797
objectReference: {fileID: 0}
- target: {fileID: 4657349111279805854, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_LocalPosition.y
value: 0.006
objectReference: {fileID: 0}
- target: {fileID: 4657349111279805854, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_LocalPosition.z
value: -1.058
objectReference: {fileID: 0}
- target: {fileID: 6454951830158507283, guid: f0376af4b1342174cb8ffffff3141cd8, type: 3}
propertyPath: m_Name
value: "\u5DE5\u5668\u5177\u95F4"
@ -6515,7 +6231,7 @@ Transform:
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 2
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1001 &1532770825
PrefabInstance:
@ -7222,7 +6938,7 @@ Transform:
- {fileID: 1460706288}
- {fileID: 1265359520}
m_Father: {fileID: 0}
m_RootOrder: 1
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1001 &1772425157
PrefabInstance:
@ -7290,143 +7006,6 @@ Transform:
m_CorrespondingSourceObject: {fileID: 4968934353711217428, guid: d0a3fc52aed68184195c297490f7fdc6, type: 3}
m_PrefabInstance: {fileID: 1772425157}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &1812930676
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 994553433}
m_Modifications:
- target: {fileID: 1535822479614194, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_Name
value: CanvasWebViewPrefab
objectReference: {fileID: 0}
- target: {fileID: 114949863196309792, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: DragMode
value: 1
objectReference: {fileID: 0}
- target: {fileID: 114949863196309792, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: InitialUrl
value: http://127.0.0.1:3633/#/
objectReference: {fileID: 0}
- target: {fileID: 114949863196309792, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: Resolution
value: 1.03
objectReference: {fileID: 0}
- target: {fileID: 114949863196309792, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: PixelDensity
value: 1
objectReference: {fileID: 0}
- target: {fileID: 114949863196309792, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: KeyboardEnabled
value: 1
objectReference: {fileID: 0}
- target: {fileID: 114949863196309792, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: NativeOnScreenKeyboardEnabled
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_Pivot.x
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_Pivot.y
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_RootOrder
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_AnchorMax.x
value: 1
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_AnchorMax.y
value: 1
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_AnchorMin.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_AnchorMin.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_SizeDelta.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_SizeDelta.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_LocalPosition.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_LocalRotation.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_LocalRotation.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_AnchoredPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_AnchoredPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
--- !u!224 &1812930677 stripped
RectTransform:
m_CorrespondingSourceObject: {fileID: 224179541092979990, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
m_PrefabInstance: {fileID: 1812930676}
m_PrefabAsset: {fileID: 0}
--- !u!114 &1812930678 stripped
MonoBehaviour:
m_CorrespondingSourceObject: {fileID: 114949863196309792, guid: 3e10f3b6a733e441c8352020cff2f1f6, type: 3}
m_PrefabInstance: {fileID: 1812930676}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 879d31ebe92b040cbb3ef97e98278140, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!1001 &1850070996
PrefabInstance:
m_ObjectHideFlags: 0
@ -7948,6 +7527,10 @@ PrefabInstance:
propertyPath: m_Name
value: computer
objectReference: {fileID: 0}
- target: {fileID: 7742780737561719692, guid: 483e16a8ce5cebd47a3a743327bb5993, type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 483e16a8ce5cebd47a3a743327bb5993, type: 3}
--- !u!4 &2059769794 stripped
@ -8337,7 +7920,7 @@ Transform:
- {fileID: 1985816336}
- {fileID: 527774027}
m_Father: {fileID: 0}
m_RootOrder: 6
m_RootOrder: 5
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1001 &1126377278564095216
PrefabInstance:

Binary file not shown.

Before

Width:  |  Height:  |  Size: 170 KiB

After

Width:  |  Height:  |  Size: 170 KiB

View File

@ -0,0 +1,334 @@
{
"scenename": "室内型高供高计",
"questbooks": "任务书",
"userinformation": "用户基本信息",
"userList": [
{
"testpoint": "工单编号",
"valuepoint": "14WQ2403130197001"
},
{
"testpoint": "供电公司",
"valuepoint": "山西某供电公司"
},
{
"testpoint": "用电类型/用电类别",
"valuepoint": "商业用电"
},
{
"testpoint": "电能表资产编号",
"valuepoint": "1431410000000000"
},
{
"testpoint": "工单状态",
"valuepoint": "已发布"
},
{
"testpoint": "台区编号",
"valuepoint": "0000141123"
},
{
"testpoint": "用户编号/客户编号",
"valuepoint": "1410000000000"
},
{
"testpoint": "用户地址/用电地址",
"valuepoint": "商场综合楼"
},
{
"testpoint": "防窃电改造状态",
"valuepoint": "未完成"
},
{
"testpoint": "工单来源",
"valuepoint": "模型预警"
},
{
"testpoint": "台区名称",
"valuepoint": "山西某台区"
},
{
"testpoint": "用户名称",
"valuepoint": "赵景"
},
{
"testpoint": "重要等级",
"valuepoint": "非重要"
},
{
"testpoint": "下一环节处理人",
"valuepoint": "已发布"
},
{
"testpoint": "环节名称",
"valuepoint": "工单生成"
},
{
"testpoint": "开始时间",
"valuepoint": "2024/6/20"
},
{
"testpoint": "结束时间",
"valuepoint": "2024/6/20"
},
{
"testpoint": "状态",
"valuepoint": "未完成"
},
{
"testpoint": "处理人",
"valuepoint": "山西供电公司"
},
{
"testpoint": "异常问题详情",
"valuepoint": "电流线短接"
},
{
"testpoint": "模型名称",
"valuepoint": "全部"
},
{
"testpoint": "历史是否违窃",
"valuepoint": "全部"
},
{
"testpoint": "窃电嫌疑度",
"valuepoint": "50"
},
{
"testpoint": "用户类型",
"valuepoint": "全部"
},
{
"testpoint": "行业分类",
"valuepoint": "商业"
},
{
"testpoint": "供电电压",
"valuepoint": "10kV"
},
{
"testpoint": "用户状态",
"valuepoint": "正常用电客户"
},
{
"testpoint": "证件号码",
"valuepoint": "1431410000000000"
},
{
"testpoint": "联系方式",
"valuepoint": "176*****111"
},
{
"testpoint": "用户分类",
"valuepoint": "低压"
},
{
"testpoint": "所属供电所",
"valuepoint": "山西某供电所"
},
{
"testpoint": "负荷特性",
"valuepoint": "窃电"
},
{
"testpoint": "合同容量",
"valuepoint": "48kW"
},
{
"testpoint": "负荷性质",
"valuepoint": "二类"
},
{
"testpoint": "转供标志",
"valuepoint": "无转供"
},
{
"testpoint": "抄表包编号",
"valuepoint": "143141000000"
},
{
"testpoint": "分次结算标志",
"valuepoint": "否"
},
{
"testpoint": "所属区县公司",
"valuepoint": "山西省某县供电公司"
},
{
"testpoint": "停电标志",
"valuepoint": "未停电"
},
{
"testpoint": "城乡类别",
"valuepoint": "城市"
},
{
"testpoint": "运行容量",
"valuepoint": "48kw"
},
{
"testpoint": "立户日期",
"valuepoint": "2009/8/15"
},
{
"testpoint": "保安负荷容量",
"valuepoint": "0kW"
},
{
"testpoint": "临时用电标志",
"valuepoint": "非临时用电"
},
{
"testpoint": "核算包编号",
"valuepoint": "H143141000000"
},
{
"testpoint": "合同账户默认户号标志",
"valuepoint": "是"
},
{
"testpoint": "信用等级",
"valuepoint": ""
},
{
"testpoint": "所属市公司",
"valuepoint": "某市供电公司"
},
{
"testpoint": "市场化属性分类",
"valuepoint": "非市场化客户"
},
{
"testpoint": "重要性等级",
"valuepoint": "非重要客户"
},
{
"testpoint": "交费方式",
"valuepoint": "网点交费"
},
{
"testpoint": "销户日期",
"valuepoint": ""
},
{
"testpoint": "高耗能行业类别",
"valuepoint": "非高能耗"
},
{
"testpoint": "费控标志",
"valuepoint": "否"
},
{
"testpoint": "催费包编号",
"valuepoint": "143000000"
}
],
"energyinformation": "现场电能表信息内容",
"energylist": [
{
"work": "正向有功",
"worklist": [
{
"keywork": "总",
"valuework": "630732.86"
},
{
"keywork": "尖",
"valuework": "0"
},
{
"keywork": "峰",
"valuework": "600227.02"
},
{
"keywork": "平",
"valuework": "0"
},
{
"keywork": "谷",
"valuework": "30505.84"
}
]
},
{
"work": "正向无功",
"worklist": [
{
"keywork": "总",
"valuework": "90704.72"
},
{
"keywork": "尖",
"valuework": "0"
},
{
"keywork": "峰",
"valuework": "82394.39"
},
{
"keywork": "平",
"valuework": "0"
},
{
"keywork": "谷",
"valuework": "8310.33"
}
]
},
{
"work": "反向有功",
"worklist": [
{
"keywork": "总",
"valuework": "0"
},
{
"keywork": "尖",
"valuework": "0"
},
{
"keywork": "峰",
"valuework": "0"
},
{
"keywork": "平",
"valuework": "0"
},
{
"keywork": "谷",
"valuework": "0"
}
]
},
{
"work": "反向无功",
"worklist": [
{
"keywork": "总",
"valuework": "18385.2"
},
{
"keywork": "尖",
"valuework": "0"
},
{
"keywork": "峰",
"valuework": "13222.55"
},
{
"keywork": "平",
"valuework": "0"
},
{
"keywork": "谷",
"valuework": "5162.65"
}
]
}
],
"stubtype": "电流短接",
"electriccurrent": "电流",
"voltage": "电压"
}

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 9f5b93e4c47a18a49a374a042dbe5b53
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -1 +1 @@
Build from ADAM at 2024/5/29 23:00:35
Build from ADAM at 2024/6/5 13:09:47

View File

@ -1 +1 @@
2024-04-16 10:23:03#'test://;1;5;123456;Test/'|
2024-05-15 17:17:01#'sxfz://;1(0:练习1:考试);6试卷id/练习id;581用户信息userId;1实训分类id;90(考试时长);/'|

View File

@ -15,15 +15,18 @@ EditorBuildSettings:
path: "Assets/Scenes/\u5DE5\u5177\u95F4\u573A\u666F.unity"
guid: 9c3f2fccc37312b468a01a18ac50fcd9
- enabled: 1
path: "Assets/Scenes/\u519C\u8D38\u5E02\u573A.unity"
guid: 8f5e8de28c5defb4cafaabb4ec174d27
path: "Assets/Scenes/\u5BA4\u5185\u578B\u9AD8\u4F9B\u4F4E\u8BA1/\u5BA4\u5185\u578B\u9AD8\u4F9B\u4F4E\u8BA1\u7528\u6237.unity"
guid: b9e12f554e1070f419af46ba6716ac76
- enabled: 1
path: "Assets/Scenes/\u5C0F\u5546\u6237.unity"
guid: 3242dae0c87324f41b8f009209999228
path: "Assets/Scenes/\u5BA4\u5185\u578B\u9AD8\u4F9B\u9AD8\u8BA1/\u5BA4\u5185\u578B\u9AD8\u4F9B\u9AD8\u8BA1.unity"
guid: 8d6b9d9929ff22d479aabf1284d24215
- enabled: 1
path: "Assets/Scenes/\u519C\u5BB6\u4E50.unity"
guid: de0336ee94e67ab4c833d43d5a4b97bc
path: "Assets/Scenes/\u5BA4\u5916\u578B\u4F4E\u538B\u516C\u914D\u53D8\u7528\u6237/\u5BA4\u5916\u578B\u4F4E\u538B\u516C\u914D\u53D8.unity"
guid: 87fc4562e9d0bff4b8dcb5b8005bd4b1
- enabled: 1
path: "Assets/Scenes/\u81EA\u5EFA\u623F.unity"
guid: ccaf383122668df419071dd9064687f2
path: "Assets/Scenes/\u5BA4\u5916\u578B\u9AD8\u4F9B\u9AD8\u8BA1/\u5BA4\u5916\u578B\u9AD8\u4F9B\u9AD8\u8BA1\u7528\u6237.unity"
guid: f9f28607361ada64e92ffcb6097957b3
- enabled: 1
path: "Assets/Scenes/\u5BA4\u5916\u578B\u9AD8\u4F9B\u4F4E\u8BA1/\u5BA4\u5916\u578B\u9AD8\u4F9B\u4F4E\u8BA1\u7528\u6237.unity"
guid: 68718b0a532bef14ab2a5a212be4c8a3
m_configObjects: {}