实名认证逻辑实现
This commit is contained in:
parent
a94daba6fa
commit
f52d485aaa
File diff suppressed because it is too large
Load Diff
@ -1,18 +1,21 @@
|
|||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using TMPro;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
public class SMFinishPanel : MonoBehaviour
|
public class SMFinishPanel : MonoBehaviour
|
||||||
{
|
{
|
||||||
// Start is called before the first frame update
|
//姓名
|
||||||
void Start()
|
public TMP_Text inputName;
|
||||||
|
//身份证号
|
||||||
|
public TMP_Text inputIDNum;
|
||||||
|
//银行卡
|
||||||
|
public TMP_Text inputBankNum;
|
||||||
|
|
||||||
|
public void UpdatePanel(RealName realName)
|
||||||
{
|
{
|
||||||
|
inputName.text = realName.realName;
|
||||||
}
|
inputBankNum.text=realName.bank;
|
||||||
|
inputIDNum.text=realName.idCard;
|
||||||
// Update is called once per frame
|
|
||||||
void Update()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,30 +1,57 @@
|
|||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Text.RegularExpressions;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using TMPro;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.UI;
|
using UnityEngine.UI;
|
||||||
|
using UnityEngine.Windows;
|
||||||
using static OrderPanel;
|
using static OrderPanel;
|
||||||
|
|
||||||
|
//实名认证消息体
|
||||||
|
public class RealName
|
||||||
|
{
|
||||||
|
//身份证
|
||||||
|
public string idCard;
|
||||||
|
//银行卡
|
||||||
|
public string bank;
|
||||||
|
//名字
|
||||||
|
public string realName;
|
||||||
|
}
|
||||||
|
|
||||||
public class ShiMingPanel : MonoBehaviour
|
public class ShiMingPanel : MonoBehaviour
|
||||||
{
|
{
|
||||||
//姓名
|
//姓名
|
||||||
public InputField inputName;
|
public TMP_InputField inputName;
|
||||||
//身份证号
|
//身份证号
|
||||||
public InputField inputIDNum;
|
public TMP_InputField inputIDNum;
|
||||||
//银行卡
|
//银行卡
|
||||||
public InputField inputBankNum;
|
public TMP_InputField inputBankNum;
|
||||||
//手机号
|
//手机号
|
||||||
public InputField inputPhone;
|
public TMP_InputField inputPhone;
|
||||||
|
|
||||||
//认证按钮
|
//认证按钮
|
||||||
public Button btnProve;
|
public Button btnProve;
|
||||||
|
|
||||||
private RealName realName;
|
//实名认证完成页面
|
||||||
|
public GameObject smFinishPanel;
|
||||||
|
|
||||||
|
private RealName realNameMsg=new RealName();
|
||||||
|
|
||||||
|
//准备请求的头部信息,包含授权令牌
|
||||||
|
Dictionary<string, string> headInfo = new Dictionary<string, string>();
|
||||||
|
|
||||||
|
|
||||||
// Start is called before the first frame update
|
// Start is called before the first frame update
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
|
btnProve.onClick.AddListener(() =>
|
||||||
|
{
|
||||||
|
realNameMsg.realName = inputName.text;
|
||||||
|
realNameMsg.bank = inputBankNum.text;
|
||||||
|
realNameMsg.idCard = inputIDNum.text;
|
||||||
|
ReGetOrder();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update is called once per frame
|
// Update is called once per frame
|
||||||
@ -33,27 +60,32 @@ public class ShiMingPanel : MonoBehaviour
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//实名认证消息体
|
|
||||||
public class RealName
|
|
||||||
{
|
|
||||||
//身份证
|
|
||||||
public string idCard;
|
|
||||||
public string bank;
|
|
||||||
public string realName;
|
|
||||||
}
|
|
||||||
|
|
||||||
//准备请求的头部信息,包含授权令牌
|
|
||||||
private Dictionary<string, string> headInfo = new Dictionary<string, string>
|
public class ReturnMsg
|
||||||
{
|
{
|
||||||
{ "Authorization", Global.global.serverResponse.data.token }
|
public int code;
|
||||||
};
|
public string message;
|
||||||
|
public string data;
|
||||||
|
}
|
||||||
|
|
||||||
public async Task ReGetOrder()
|
public async Task ReGetOrder()
|
||||||
{
|
{
|
||||||
|
headInfo.Add("Authorization", Global.global.serverResponse.data.token);
|
||||||
// 请求体
|
// 请求体
|
||||||
//异步发送请求
|
//异步发送请求
|
||||||
//string responsel6 = await web.SendRequest(web.URL + "/snail/order/queryPage", "POST", JsonUtility.ToJson(msg), headInfo);
|
string responsel6 = await web.SendRequest(web.URL + "/snail/user/cert", "POST", JsonUtility.ToJson(realNameMsg), headInfo);
|
||||||
|
|
||||||
//Debug.Log(responsel6);
|
ReturnMsg msg = JsonUtility.FromJson<ReturnMsg>(responsel6);
|
||||||
|
|
||||||
|
if (msg.code == 200)
|
||||||
|
{
|
||||||
|
Transform parentTransform = transform.parent;
|
||||||
|
GameObject go = Instantiate(smFinishPanel, parentTransform, false);
|
||||||
|
go.GetComponent<SMFinishPanel>().UpdatePanel(realNameMsg);
|
||||||
|
Destroy(this.gameObject);
|
||||||
|
}
|
||||||
|
Debug.Log(responsel6);
|
||||||
|
Debug.Log(msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -70,14 +70,12 @@ public class OrderPanel : MonoBehaviour
|
|||||||
OrderMsg msg = new OrderMsg() { orderByDesc = 1 };
|
OrderMsg msg = new OrderMsg() { orderByDesc = 1 };
|
||||||
|
|
||||||
//准备请求的头部信息,包含授权令牌
|
//准备请求的头部信息,包含授权令牌
|
||||||
private Dictionary<string, string> headInfo = new Dictionary<string, string>
|
private Dictionary<string, string> headInfo = new Dictionary<string, string>();
|
||||||
{
|
|
||||||
{ "Authorization", Global.global.serverResponse.data.token }
|
|
||||||
};
|
|
||||||
|
|
||||||
//
|
//
|
||||||
public async Task ReGetOrder()
|
public async Task ReGetOrder()
|
||||||
{
|
{
|
||||||
|
headInfo.Add("Authorization", Global.global.serverResponse.data.token);
|
||||||
// 请求体
|
// 请求体
|
||||||
//异步发送请求
|
//异步发送请求
|
||||||
string responsel6 = await web.SendRequest(web.URL + "/snail/order/queryPage", "POST", JsonUtility.ToJson(msg), headInfo);
|
string responsel6 = await web.SendRequest(web.URL + "/snail/order/queryPage", "POST", JsonUtility.ToJson(msg), headInfo);
|
||||||
|
@ -1297,6 +1297,7 @@ GameObject:
|
|||||||
- component: {fileID: 9180338299762767603}
|
- component: {fileID: 9180338299762767603}
|
||||||
- component: {fileID: 9180338299762767601}
|
- component: {fileID: 9180338299762767601}
|
||||||
- component: {fileID: 9180338299762767602}
|
- component: {fileID: 9180338299762767602}
|
||||||
|
- component: {fileID: -7797351827186868306}
|
||||||
m_Layer: 5
|
m_Layer: 5
|
||||||
m_Name: SMFinishPanel
|
m_Name: SMFinishPanel
|
||||||
m_TagString: Untagged
|
m_TagString: Untagged
|
||||||
@ -1325,7 +1326,7 @@ RectTransform:
|
|||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: 7.0596, y: -48.1713}
|
m_AnchoredPosition: {x: 0, y: 0}
|
||||||
m_SizeDelta: {x: 1185.9861, y: 1269.5222}
|
m_SizeDelta: {x: 1185.9861, y: 1269.5222}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!222 &9180338299762767601
|
--- !u!222 &9180338299762767601
|
||||||
@ -1366,6 +1367,21 @@ MonoBehaviour:
|
|||||||
m_FillOrigin: 0
|
m_FillOrigin: 0
|
||||||
m_UseSpriteMesh: 0
|
m_UseSpriteMesh: 0
|
||||||
m_PixelsPerUnitMultiplier: 1
|
m_PixelsPerUnitMultiplier: 1
|
||||||
|
--- !u!114 &-7797351827186868306
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 9180338299762767612}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: c62e20e09a7c2b149b3eff923e89874c, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
inputName: {fileID: 9180338299091930227}
|
||||||
|
inputIDNum: {fileID: 9180338299743217749}
|
||||||
|
inputBankNum: {fileID: 9180338298789206889}
|
||||||
--- !u!1 &9180338299797677305
|
--- !u!1 &9180338299797677305
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
@ -3826,6 +3826,7 @@ GameObject:
|
|||||||
- component: {fileID: 3485144752579768852}
|
- component: {fileID: 3485144752579768852}
|
||||||
- component: {fileID: 3485144752579768850}
|
- component: {fileID: 3485144752579768850}
|
||||||
- component: {fileID: 3485144752579768853}
|
- component: {fileID: 3485144752579768853}
|
||||||
|
- component: {fileID: 2249459622083793841}
|
||||||
m_Layer: 5
|
m_Layer: 5
|
||||||
m_Name: ShiMingPanel
|
m_Name: ShiMingPanel
|
||||||
m_TagString: Untagged
|
m_TagString: Untagged
|
||||||
@ -3897,6 +3898,24 @@ MonoBehaviour:
|
|||||||
m_FillOrigin: 0
|
m_FillOrigin: 0
|
||||||
m_UseSpriteMesh: 0
|
m_UseSpriteMesh: 0
|
||||||
m_PixelsPerUnitMultiplier: 1
|
m_PixelsPerUnitMultiplier: 1
|
||||||
|
--- !u!114 &2249459622083793841
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 3485144752579768855}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 39c81b58d2f7a0e4087b7dcff84082ef, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
inputName: {fileID: 3485144751743269890}
|
||||||
|
inputIDNum: {fileID: 3485144752410830448}
|
||||||
|
inputBankNum: {fileID: 3485144751451059108}
|
||||||
|
inputPhone: {fileID: 3485144750604374056}
|
||||||
|
btnProve: {fileID: 3485144750615921453}
|
||||||
|
smFinishPanel: {fileID: 9180338299762767612, guid: 78183fe970ab5ef41a9ef3204049b95b, type: 3}
|
||||||
--- !u!1001 &2905030397198865495
|
--- !u!1001 &2905030397198865495
|
||||||
PrefabInstance:
|
PrefabInstance:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
@ -8,13 +8,13 @@ EditorBuildSettings:
|
|||||||
- enabled: 1
|
- enabled: 1
|
||||||
path: Assets/Scenes/logo.unity
|
path: Assets/Scenes/logo.unity
|
||||||
guid: 9fc0d4010bbf28b4594072e72b8655ab
|
guid: 9fc0d4010bbf28b4594072e72b8655ab
|
||||||
- enabled: 1
|
- enabled: 0
|
||||||
path: Assets/Scenes/Scene_main.unity
|
path: Assets/Scenes/Scene_main.unity
|
||||||
guid: b2ee18c586f834546a5c45ec06ab9586
|
guid: b2ee18c586f834546a5c45ec06ab9586
|
||||||
- enabled: 1
|
- enabled: 0
|
||||||
path: Assets/Scenes/Battle_Royale.unity
|
path: Assets/Scenes/Battle_Royale.unity
|
||||||
guid: 2887fa9858caa6e4c86521fa5b1ff30e
|
guid: 2887fa9858caa6e4c86521fa5b1ff30e
|
||||||
- enabled: 1
|
- enabled: 1
|
||||||
path: Assets/Scenes/RacingPanel.unity
|
path: Assets/Scenes/RacingPanel.unity
|
||||||
guid: a2bebb49a4b91194ab60c57e4d9eb478
|
guid: 26314edeaf5c014428f021cff2f22a53
|
||||||
m_configObjects: {}
|
m_configObjects: {}
|
||||||
|
@ -370,6 +370,103 @@ PlayerSettings:
|
|||||||
m_Height: 36
|
m_Height: 36
|
||||||
m_Kind: 0
|
m_Kind: 0
|
||||||
m_SubKind:
|
m_SubKind:
|
||||||
|
- m_BuildTarget: iPhone
|
||||||
|
m_Icons:
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 180
|
||||||
|
m_Height: 180
|
||||||
|
m_Kind: 0
|
||||||
|
m_SubKind: iPhone
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 120
|
||||||
|
m_Height: 120
|
||||||
|
m_Kind: 0
|
||||||
|
m_SubKind: iPhone
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 167
|
||||||
|
m_Height: 167
|
||||||
|
m_Kind: 0
|
||||||
|
m_SubKind: iPad
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 152
|
||||||
|
m_Height: 152
|
||||||
|
m_Kind: 0
|
||||||
|
m_SubKind: iPad
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 76
|
||||||
|
m_Height: 76
|
||||||
|
m_Kind: 0
|
||||||
|
m_SubKind: iPad
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 120
|
||||||
|
m_Height: 120
|
||||||
|
m_Kind: 3
|
||||||
|
m_SubKind: iPhone
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 80
|
||||||
|
m_Height: 80
|
||||||
|
m_Kind: 3
|
||||||
|
m_SubKind: iPhone
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 80
|
||||||
|
m_Height: 80
|
||||||
|
m_Kind: 3
|
||||||
|
m_SubKind: iPad
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 40
|
||||||
|
m_Height: 40
|
||||||
|
m_Kind: 3
|
||||||
|
m_SubKind: iPad
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 87
|
||||||
|
m_Height: 87
|
||||||
|
m_Kind: 1
|
||||||
|
m_SubKind: iPhone
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 58
|
||||||
|
m_Height: 58
|
||||||
|
m_Kind: 1
|
||||||
|
m_SubKind: iPhone
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 29
|
||||||
|
m_Height: 29
|
||||||
|
m_Kind: 1
|
||||||
|
m_SubKind: iPhone
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 58
|
||||||
|
m_Height: 58
|
||||||
|
m_Kind: 1
|
||||||
|
m_SubKind: iPad
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 29
|
||||||
|
m_Height: 29
|
||||||
|
m_Kind: 1
|
||||||
|
m_SubKind: iPad
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 60
|
||||||
|
m_Height: 60
|
||||||
|
m_Kind: 2
|
||||||
|
m_SubKind: iPhone
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 40
|
||||||
|
m_Height: 40
|
||||||
|
m_Kind: 2
|
||||||
|
m_SubKind: iPhone
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 40
|
||||||
|
m_Height: 40
|
||||||
|
m_Kind: 2
|
||||||
|
m_SubKind: iPad
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 20
|
||||||
|
m_Height: 20
|
||||||
|
m_Kind: 2
|
||||||
|
m_SubKind: iPad
|
||||||
|
- m_Textures: []
|
||||||
|
m_Width: 1024
|
||||||
|
m_Height: 1024
|
||||||
|
m_Kind: 4
|
||||||
|
m_SubKind: App Store
|
||||||
m_BuildTargetBatching: []
|
m_BuildTargetBatching: []
|
||||||
m_BuildTargetShaderSettings: []
|
m_BuildTargetShaderSettings: []
|
||||||
m_BuildTargetGraphicsJobs: []
|
m_BuildTargetGraphicsJobs: []
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
m_EditorVersion: 2021.3.44f1c1
|
m_EditorVersion: 2021.3.43f1c1
|
||||||
m_EditorVersionWithRevision: 2021.3.44f1c1 (0c301d0bd4e3)
|
m_EditorVersionWithRevision: 2021.3.43f1c1 (fc9da3dccad9)
|
||||||
|
@ -6,35 +6,35 @@ EditorUserSettings:
|
|||||||
serializedVersion: 4
|
serializedVersion: 4
|
||||||
m_ConfigSettings:
|
m_ConfigSettings:
|
||||||
RecentlyUsedSceneGuid-0:
|
RecentlyUsedSceneGuid-0:
|
||||||
value: 060505555d565c590b5c5d7249205d444e4f4c292e7970342e784a31e4e4626a
|
|
||||||
flags: 0
|
|
||||||
RecentlyUsedSceneGuid-1:
|
|
||||||
value: 51040400040151090b5f5d7a45260c4415164d2b7f7e71357f7c1862e0e36060
|
|
||||||
flags: 0
|
|
||||||
RecentlyUsedSceneGuid-2:
|
|
||||||
value: 51090c510354500358560f2311755a44154f4e7f7e792031782b4c35e4b3643d
|
value: 51090c510354500358560f2311755a44154f4e7f7e792031782b4c35e4b3643d
|
||||||
flags: 0
|
flags: 0
|
||||||
RecentlyUsedSceneGuid-3:
|
RecentlyUsedSceneGuid-1:
|
||||||
value: 01505655570550095a0b5e7742270844124e4c2b2d2c7f682e284d64bbb8656e
|
value: 01505655570550095a0b5e7742270844124e4c2b2d2c7f682e284d64bbb8656e
|
||||||
flags: 0
|
flags: 0
|
||||||
RecentlyUsedSceneGuid-4:
|
RecentlyUsedSceneGuid-2:
|
||||||
value: 52000d5100545d5f5c5d0a2146215e444e164f282d2a70627b2d1c6bbbe1613c
|
value: 52000d5100545d5f5c5d0a2146215e444e164f282d2a70627b2d1c6bbbe1613c
|
||||||
flags: 0
|
flags: 0
|
||||||
RecentlyUsedSceneGuid-5:
|
RecentlyUsedSceneGuid-3:
|
||||||
value: 0206565f5d0d5e0e5d575e2645770c44424e1c7d2a7f72347f7f4860e6b26568
|
value: 0206565f5d0d5e0e5d575e2645770c44424e1c7d2a7f72347f7f4860e6b26568
|
||||||
flags: 0
|
flags: 0
|
||||||
RecentlyUsedSceneGuid-6:
|
RecentlyUsedSceneGuid-4:
|
||||||
value: 0001515403055e5f0f0b557316205a44414e412c7b2c70662f2b1966b0e1366c
|
value: 0001515403055e5f0f0b557316205a44414e412c7b2c70662f2b1966b0e1366c
|
||||||
flags: 0
|
flags: 0
|
||||||
RecentlyUsedSceneGuid-7:
|
RecentlyUsedSceneGuid-5:
|
||||||
value: 0203560307575d020c5a0e7b4172064417154e7a2f7d7135792d4436e0b46360
|
value: 0203560307575d020c5a0e7b4172064417154e7a2f7d7135792d4436e0b46360
|
||||||
flags: 0
|
flags: 0
|
||||||
RecentlyUsedSceneGuid-8:
|
RecentlyUsedSceneGuid-6:
|
||||||
value: 01035103540d0a0e55580a7a43770a4440164d29787d23337d7f1c31bbb56c6e
|
value: 01035103540d0a0e55580a7a43770a4440164d29787d23337d7f1c31bbb56c6e
|
||||||
flags: 0
|
flags: 0
|
||||||
RecentlyUsedSceneGuid-9:
|
RecentlyUsedSceneGuid-7:
|
||||||
|
value: 54545057550c5902095c5e27492059444f154b7b747124697f7a4463b0b03239
|
||||||
|
flags: 0
|
||||||
|
RecentlyUsedSceneGuid-8:
|
||||||
value: 5a5757560101590a5d0c0e24427b5d44434e4c7a7b7a23677f2b4565b7b5353a
|
value: 5a5757560101590a5d0c0e24427b5d44434e4c7a7b7a23677f2b4565b7b5353a
|
||||||
flags: 0
|
flags: 0
|
||||||
|
RecentlyUsedSceneGuid-9:
|
||||||
|
value: 5107075751500d5e0c08592140720b44444f1e7a7e7925362b7b1b61b0e1616b
|
||||||
|
flags: 0
|
||||||
vcSharedLogLevel:
|
vcSharedLogLevel:
|
||||||
value: 0d5e400f0650
|
value: 0d5e400f0650
|
||||||
flags: 0
|
flags: 0
|
||||||
|
@ -15,144 +15,16 @@ MonoBehaviour:
|
|||||||
m_PixelRect:
|
m_PixelRect:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 42.666668
|
y: 43
|
||||||
width: 1706.6667
|
width: 1920
|
||||||
height: 1024
|
height: 997
|
||||||
m_ShowMode: 4
|
m_ShowMode: 4
|
||||||
m_Title: "\u9879\u76EE"
|
m_Title: Hierarchy
|
||||||
m_RootView: {fileID: 7}
|
m_RootView: {fileID: 2}
|
||||||
m_MinSize: {x: 875, y: 300}
|
m_MinSize: {x: 875, y: 492}
|
||||||
m_MaxSize: {x: 10000, y: 10000}
|
m_MaxSize: {x: 10000, y: 10000}
|
||||||
m_Maximized: 1
|
m_Maximized: 1
|
||||||
--- !u!114 &2
|
--- !u!114 &2
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 52
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
m_Name: SceneView
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Children: []
|
|
||||||
m_Position:
|
|
||||||
serializedVersion: 2
|
|
||||||
x: 573.3333
|
|
||||||
y: 0
|
|
||||||
width: 460.00006
|
|
||||||
height: 790.6667
|
|
||||||
m_MinSize: {x: 202, y: 221}
|
|
||||||
m_MaxSize: {x: 4002, y: 4021}
|
|
||||||
m_ActualView: {fileID: 19}
|
|
||||||
m_Panes:
|
|
||||||
- {fileID: 19}
|
|
||||||
m_Selected: 0
|
|
||||||
m_LastSelected: 0
|
|
||||||
--- !u!114 &3
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 52
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
m_Name: ConsoleWindow
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Children: []
|
|
||||||
m_Position:
|
|
||||||
serializedVersion: 2
|
|
||||||
x: 0
|
|
||||||
y: 790.6667
|
|
||||||
width: 1706.6666
|
|
||||||
height: 183.33331
|
|
||||||
m_MinSize: {x: 100, y: 121}
|
|
||||||
m_MaxSize: {x: 4000, y: 4021}
|
|
||||||
m_ActualView: {fileID: 14}
|
|
||||||
m_Panes:
|
|
||||||
- {fileID: 14}
|
|
||||||
m_Selected: 0
|
|
||||||
m_LastSelected: 0
|
|
||||||
--- !u!114 &4
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 52
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Children:
|
|
||||||
- {fileID: 9}
|
|
||||||
- {fileID: 3}
|
|
||||||
m_Position:
|
|
||||||
serializedVersion: 2
|
|
||||||
x: 0
|
|
||||||
y: 30
|
|
||||||
width: 1706.6666
|
|
||||||
height: 974
|
|
||||||
m_MinSize: {x: 400, y: 300}
|
|
||||||
m_MaxSize: {x: 32384, y: 24288}
|
|
||||||
vertical: 1
|
|
||||||
controlID: 24
|
|
||||||
--- !u!114 &5
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 52
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
m_Name: ProjectBrowser
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Children: []
|
|
||||||
m_Position:
|
|
||||||
serializedVersion: 2
|
|
||||||
x: 0
|
|
||||||
y: 372
|
|
||||||
width: 436
|
|
||||||
height: 418.6667
|
|
||||||
m_MinSize: {x: 232, y: 271}
|
|
||||||
m_MaxSize: {x: 10002, y: 10021}
|
|
||||||
m_ActualView: {fileID: 17}
|
|
||||||
m_Panes:
|
|
||||||
- {fileID: 17}
|
|
||||||
m_Selected: 0
|
|
||||||
m_LastSelected: 0
|
|
||||||
--- !u!114 &6
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 52
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Children:
|
|
||||||
- {fileID: 11}
|
|
||||||
- {fileID: 5}
|
|
||||||
m_Position:
|
|
||||||
serializedVersion: 2
|
|
||||||
x: 1033.3334
|
|
||||||
y: 0
|
|
||||||
width: 436
|
|
||||||
height: 790.6667
|
|
||||||
m_MinSize: {x: 100, y: 200}
|
|
||||||
m_MaxSize: {x: 8096, y: 16192}
|
|
||||||
vertical: 1
|
|
||||||
controlID: 103
|
|
||||||
--- !u!114 &7
|
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -165,22 +37,22 @@ MonoBehaviour:
|
|||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Children:
|
m_Children:
|
||||||
- {fileID: 8}
|
- {fileID: 3}
|
||||||
- {fileID: 4}
|
- {fileID: 4}
|
||||||
- {fileID: 10}
|
- {fileID: 5}
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 1706.6666
|
width: 1920
|
||||||
height: 1024
|
height: 997
|
||||||
m_MinSize: {x: 875, y: 300}
|
m_MinSize: {x: 875, y: 492}
|
||||||
m_MaxSize: {x: 10000, y: 10000}
|
m_MaxSize: {x: 10000, y: 10000}
|
||||||
m_UseTopView: 1
|
m_UseTopView: 1
|
||||||
m_TopViewHeight: 30
|
m_TopViewHeight: 30
|
||||||
m_UseBottomView: 1
|
m_UseBottomView: 1
|
||||||
m_BottomViewHeight: 20
|
m_BottomViewHeight: 20
|
||||||
--- !u!114 &8
|
--- !u!114 &3
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -197,12 +69,12 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 1706.6666
|
width: 1920
|
||||||
height: 30
|
height: 30
|
||||||
m_MinSize: {x: 0, y: 0}
|
m_MinSize: {x: 0, y: 0}
|
||||||
m_MaxSize: {x: 0, y: 0}
|
m_MaxSize: {x: 0, y: 0}
|
||||||
m_LastLoadedLayoutName:
|
m_LastLoadedLayoutName: 2 by 3
|
||||||
--- !u!114 &9
|
--- !u!114 &4
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -215,21 +87,21 @@ MonoBehaviour:
|
|||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Children:
|
m_Children:
|
||||||
- {fileID: 13}
|
|
||||||
- {fileID: 2}
|
|
||||||
- {fileID: 6}
|
- {fileID: 6}
|
||||||
- {fileID: 12}
|
- {fileID: 7}
|
||||||
|
- {fileID: 8}
|
||||||
|
- {fileID: 9}
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 30
|
||||||
width: 1706.6666
|
width: 1920
|
||||||
height: 790.6667
|
height: 947
|
||||||
m_MinSize: {x: 400, y: 200}
|
m_MinSize: {x: 400, y: 200}
|
||||||
m_MaxSize: {x: 32384, y: 16192}
|
m_MaxSize: {x: 32384, y: 16192}
|
||||||
vertical: 0
|
vertical: 0
|
||||||
controlID: 25
|
controlID: 475
|
||||||
--- !u!114 &10
|
--- !u!114 &5
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -245,11 +117,140 @@ MonoBehaviour:
|
|||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 1004
|
y: 977
|
||||||
width: 1706.6666
|
width: 1920
|
||||||
height: 20
|
height: 20
|
||||||
m_MinSize: {x: 0, y: 0}
|
m_MinSize: {x: 0, y: 0}
|
||||||
m_MaxSize: {x: 0, y: 0}
|
m_MaxSize: {x: 0, y: 0}
|
||||||
|
--- !u!114 &6
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 52
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 1
|
||||||
|
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 10}
|
||||||
|
- {fileID: 11}
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1245
|
||||||
|
height: 947
|
||||||
|
m_MinSize: {x: 100, y: 200}
|
||||||
|
m_MaxSize: {x: 8096, y: 16192}
|
||||||
|
vertical: 1
|
||||||
|
controlID: 448
|
||||||
|
--- !u!114 &7
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 52
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 1
|
||||||
|
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children: []
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 1245
|
||||||
|
y: 0
|
||||||
|
width: 194
|
||||||
|
height: 947
|
||||||
|
m_MinSize: {x: 202, y: 221}
|
||||||
|
m_MaxSize: {x: 4002, y: 4021}
|
||||||
|
m_ActualView: {fileID: 12}
|
||||||
|
m_Panes:
|
||||||
|
- {fileID: 12}
|
||||||
|
m_Selected: 0
|
||||||
|
m_LastSelected: 0
|
||||||
|
--- !u!114 &8
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 52
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 1
|
||||||
|
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children: []
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 1439
|
||||||
|
y: 0
|
||||||
|
width: 208
|
||||||
|
height: 947
|
||||||
|
m_MinSize: {x: 232, y: 271}
|
||||||
|
m_MaxSize: {x: 10002, y: 10021}
|
||||||
|
m_ActualView: {fileID: 14}
|
||||||
|
m_Panes:
|
||||||
|
- {fileID: 14}
|
||||||
|
m_Selected: 0
|
||||||
|
m_LastSelected: 0
|
||||||
|
--- !u!114 &9
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 52
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 1
|
||||||
|
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children: []
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 1647
|
||||||
|
y: 0
|
||||||
|
width: 273
|
||||||
|
height: 947
|
||||||
|
m_MinSize: {x: 276, y: 71}
|
||||||
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
|
m_ActualView: {fileID: 13}
|
||||||
|
m_Panes:
|
||||||
|
- {fileID: 13}
|
||||||
|
m_Selected: 0
|
||||||
|
m_LastSelected: 0
|
||||||
|
--- !u!114 &10
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 52
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 1
|
||||||
|
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children: []
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1245
|
||||||
|
height: 486
|
||||||
|
m_MinSize: {x: 201, y: 221}
|
||||||
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
|
m_ActualView: {fileID: 16}
|
||||||
|
m_Panes:
|
||||||
|
- {fileID: 16}
|
||||||
|
m_Selected: 0
|
||||||
|
m_LastSelected: 0
|
||||||
--- !u!114 &11
|
--- !u!114 &11
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@ -266,98 +267,17 @@ MonoBehaviour:
|
|||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 486
|
||||||
width: 436
|
width: 1245
|
||||||
height: 372
|
height: 461
|
||||||
m_MinSize: {x: 202, y: 221}
|
m_MinSize: {x: 201, y: 221}
|
||||||
m_MaxSize: {x: 4002, y: 4021}
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
m_ActualView: {fileID: 15}
|
m_ActualView: {fileID: 15}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 15}
|
- {fileID: 15}
|
||||||
m_Selected: 0
|
m_Selected: 0
|
||||||
m_LastSelected: 0
|
m_LastSelected: 0
|
||||||
--- !u!114 &12
|
--- !u!114 &12
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 52
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 1
|
|
||||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
m_Name: InspectorWindow
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Children: []
|
|
||||||
m_Position:
|
|
||||||
serializedVersion: 2
|
|
||||||
x: 1469.3334
|
|
||||||
y: 0
|
|
||||||
width: 237.33325
|
|
||||||
height: 790.6667
|
|
||||||
m_MinSize: {x: 276, y: 71}
|
|
||||||
m_MaxSize: {x: 4001, y: 4021}
|
|
||||||
m_ActualView: {fileID: 16}
|
|
||||||
m_Panes:
|
|
||||||
- {fileID: 16}
|
|
||||||
m_Selected: 0
|
|
||||||
m_LastSelected: 0
|
|
||||||
--- !u!114 &13
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 52
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 1
|
|
||||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
m_Name: GameView
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Children: []
|
|
||||||
m_Position:
|
|
||||||
serializedVersion: 2
|
|
||||||
x: 0
|
|
||||||
y: 0
|
|
||||||
width: 573.3333
|
|
||||||
height: 790.6667
|
|
||||||
m_MinSize: {x: 201, y: 221}
|
|
||||||
m_MaxSize: {x: 4001, y: 4021}
|
|
||||||
m_ActualView: {fileID: 18}
|
|
||||||
m_Panes:
|
|
||||||
- {fileID: 18}
|
|
||||||
m_Selected: 0
|
|
||||||
m_LastSelected: 0
|
|
||||||
--- !u!114 &14
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 52
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 0}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_MinSize: {x: 100, y: 100}
|
|
||||||
m_MaxSize: {x: 4000, y: 4000}
|
|
||||||
m_TitleContent:
|
|
||||||
m_Text: "\u63A7\u5236\u53F0"
|
|
||||||
m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, type: 0}
|
|
||||||
m_Tooltip:
|
|
||||||
m_Pos:
|
|
||||||
serializedVersion: 2
|
|
||||||
x: 0
|
|
||||||
y: 863.3334
|
|
||||||
width: 1706.6666
|
|
||||||
height: 162.33331
|
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
|
||||||
m_OverlayCanvas:
|
|
||||||
m_LastAppliedPresetName: Default
|
|
||||||
m_SaveData: []
|
|
||||||
m_OverlaysVisible: 1
|
|
||||||
--- !u!114 &15
|
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -372,15 +292,15 @@ MonoBehaviour:
|
|||||||
m_MinSize: {x: 200, y: 200}
|
m_MinSize: {x: 200, y: 200}
|
||||||
m_MaxSize: {x: 4000, y: 4000}
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
m_TitleContent:
|
m_TitleContent:
|
||||||
m_Text: "\u5C42\u7EA7"
|
m_Text: Hierarchy
|
||||||
m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0}
|
m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 1033.3334
|
x: 1245
|
||||||
y: 72.66667
|
y: 73
|
||||||
width: 434
|
width: 192
|
||||||
height: 351
|
height: 926
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
@ -389,9 +309,9 @@ MonoBehaviour:
|
|||||||
m_SceneHierarchy:
|
m_SceneHierarchy:
|
||||||
m_TreeViewState:
|
m_TreeViewState:
|
||||||
scrollPos: {x: 0, y: 0}
|
scrollPos: {x: 0, y: 0}
|
||||||
m_SelectedIDs: 18640000
|
m_SelectedIDs:
|
||||||
m_LastClickedID: 0
|
m_LastClickedID: 0
|
||||||
m_ExpandedIDs: 58e4fefff226ffff16fbfffff05c0000145d00009a5d00009e5d0000b05d0000265f0000
|
m_ExpandedIDs:
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
@ -407,15 +327,15 @@ MonoBehaviour:
|
|||||||
m_IsRenaming: 0
|
m_IsRenaming: 0
|
||||||
m_OriginalEventType: 11
|
m_OriginalEventType: 11
|
||||||
m_IsRenamingFilename: 0
|
m_IsRenamingFilename: 0
|
||||||
m_ClientGUIView: {fileID: 11}
|
m_ClientGUIView: {fileID: 0}
|
||||||
m_SearchString:
|
m_SearchString:
|
||||||
m_ExpandedScenes: []
|
m_ExpandedScenes: []
|
||||||
m_CurrenRootInstanceID: 0
|
m_CurrenRootInstanceID: 0
|
||||||
m_LockTracker:
|
m_LockTracker:
|
||||||
m_IsLocked: 0
|
m_IsLocked: 0
|
||||||
m_CurrentSortingName: TransformSorting
|
m_CurrentSortingName: TransformSorting
|
||||||
m_WindowGUID: 5249031b5912b6045aa4d76e1d768e90
|
m_WindowGUID: 9fdae3e6618562442b322346071b1a8a
|
||||||
--- !u!114 &16
|
--- !u!114 &13
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -430,15 +350,15 @@ MonoBehaviour:
|
|||||||
m_MinSize: {x: 275, y: 50}
|
m_MinSize: {x: 275, y: 50}
|
||||||
m_MaxSize: {x: 4000, y: 4000}
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
m_TitleContent:
|
m_TitleContent:
|
||||||
m_Text: "\u68C0\u67E5\u5668"
|
m_Text: Inspector
|
||||||
m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0}
|
m_Image: {fileID: -2667387946076563598, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 1469.3334
|
x: 1647
|
||||||
y: 72.66667
|
y: 73
|
||||||
width: 236.33325
|
width: 272
|
||||||
height: 769.6667
|
height: 926
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
@ -457,7 +377,7 @@ MonoBehaviour:
|
|||||||
m_LockTracker:
|
m_LockTracker:
|
||||||
m_IsLocked: 0
|
m_IsLocked: 0
|
||||||
m_PreviewWindow: {fileID: 0}
|
m_PreviewWindow: {fileID: 0}
|
||||||
--- !u!114 &17
|
--- !u!114 &14
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -472,15 +392,15 @@ MonoBehaviour:
|
|||||||
m_MinSize: {x: 230, y: 250}
|
m_MinSize: {x: 230, y: 250}
|
||||||
m_MaxSize: {x: 10000, y: 10000}
|
m_MaxSize: {x: 10000, y: 10000}
|
||||||
m_TitleContent:
|
m_TitleContent:
|
||||||
m_Text: "\u9879\u76EE"
|
m_Text: Project
|
||||||
m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0}
|
m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 1033.3334
|
x: 1439
|
||||||
y: 444.6667
|
y: 73
|
||||||
width: 434
|
width: 206
|
||||||
height: 397.6667
|
height: 926
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
@ -503,16 +423,17 @@ MonoBehaviour:
|
|||||||
m_FilterByTypeIntersection: 0
|
m_FilterByTypeIntersection: 0
|
||||||
m_ViewMode: 0
|
m_ViewMode: 0
|
||||||
m_StartGridSize: 64
|
m_StartGridSize: 64
|
||||||
m_LastFolders: []
|
m_LastFolders:
|
||||||
|
- Assets
|
||||||
m_LastFoldersGridSize: -1
|
m_LastFoldersGridSize: -1
|
||||||
m_LastProjectPath: F:\Git\TheStrongestSnail\_TheStrongestSnail\TheStrongestSnail
|
m_LastProjectPath: E:\Unityxiangmu\woniu\_TheStrongestSnail\_TheStrongestSnail\TheStrongestSnail
|
||||||
m_LockTracker:
|
m_LockTracker:
|
||||||
m_IsLocked: 0
|
m_IsLocked: 0
|
||||||
m_FolderTreeState:
|
m_FolderTreeState:
|
||||||
scrollPos: {x: 0, y: 0}
|
scrollPos: {x: 0, y: 0}
|
||||||
m_SelectedIDs: b6680000
|
m_SelectedIDs: fcd10000
|
||||||
m_LastClickedID: 26806
|
m_LastClickedID: 53756
|
||||||
m_ExpandedIDs: 0000000030610000186400001a6400001c6400001e6400002064000022640000246400002664000028640000
|
m_ExpandedIDs: ffffffff00000000fcd100003ed2000000ca9a3b
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
@ -540,7 +461,7 @@ MonoBehaviour:
|
|||||||
scrollPos: {x: 0, y: 0}
|
scrollPos: {x: 0, y: 0}
|
||||||
m_SelectedIDs:
|
m_SelectedIDs:
|
||||||
m_LastClickedID: 0
|
m_LastClickedID: 0
|
||||||
m_ExpandedIDs: ffffffff0000000030610000186400001a6400001c6400001e64000020640000226400002464000026640000286400009c6400007c7f0100
|
m_ExpandedIDs: ffffffff00000000fcd100003ed20000
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
@ -556,7 +477,7 @@ MonoBehaviour:
|
|||||||
m_IsRenaming: 0
|
m_IsRenaming: 0
|
||||||
m_OriginalEventType: 11
|
m_OriginalEventType: 11
|
||||||
m_IsRenamingFilename: 1
|
m_IsRenamingFilename: 1
|
||||||
m_ClientGUIView: {fileID: 5}
|
m_ClientGUIView: {fileID: 0}
|
||||||
m_SearchString:
|
m_SearchString:
|
||||||
m_CreateAssetUtility:
|
m_CreateAssetUtility:
|
||||||
m_EndAction: {fileID: 0}
|
m_EndAction: {fileID: 0}
|
||||||
@ -596,7 +517,7 @@ MonoBehaviour:
|
|||||||
m_GridSize: 64
|
m_GridSize: 64
|
||||||
m_SkipHiddenPackages: 0
|
m_SkipHiddenPackages: 0
|
||||||
m_DirectoriesAreaWidth: 115
|
m_DirectoriesAreaWidth: 115
|
||||||
--- !u!114 &18
|
--- !u!114 &15
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -611,15 +532,15 @@ MonoBehaviour:
|
|||||||
m_MinSize: {x: 200, y: 200}
|
m_MinSize: {x: 200, y: 200}
|
||||||
m_MaxSize: {x: 4000, y: 4000}
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
m_TitleContent:
|
m_TitleContent:
|
||||||
m_Text: "\u6E38\u620F"
|
m_Text: Game
|
||||||
m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0}
|
m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 72.66667
|
y: 559
|
||||||
width: 572.3333
|
width: 1244
|
||||||
height: 769.6667
|
height: 440
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
@ -631,7 +552,7 @@ MonoBehaviour:
|
|||||||
m_ShowGizmos: 0
|
m_ShowGizmos: 0
|
||||||
m_TargetDisplay: 0
|
m_TargetDisplay: 0
|
||||||
m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
|
m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
|
||||||
m_TargetSize: {x: 1372, y: 2436}
|
m_TargetSize: {x: 1244, y: 419}
|
||||||
m_TextureFilterMode: 0
|
m_TextureFilterMode: 0
|
||||||
m_TextureHideFlags: 61
|
m_TextureHideFlags: 61
|
||||||
m_RenderIMGUI: 1
|
m_RenderIMGUI: 1
|
||||||
@ -640,16 +561,16 @@ MonoBehaviour:
|
|||||||
m_VSyncEnabled: 0
|
m_VSyncEnabled: 0
|
||||||
m_Gizmos: 0
|
m_Gizmos: 0
|
||||||
m_Stats: 0
|
m_Stats: 0
|
||||||
m_SelectedSizes: 0c000000000000000000000012000000000000000000000000000000000000000000000000000000
|
m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
m_ZoomArea:
|
m_ZoomArea:
|
||||||
m_HRangeLocked: 0
|
m_HRangeLocked: 0
|
||||||
m_VRangeLocked: 0
|
m_VRangeLocked: 0
|
||||||
hZoomLockedByDefault: 0
|
hZoomLockedByDefault: 0
|
||||||
vZoomLockedByDefault: 0
|
vZoomLockedByDefault: 0
|
||||||
m_HBaseRangeMin: -457.33334
|
m_HBaseRangeMin: -622
|
||||||
m_HBaseRangeMax: 457.33334
|
m_HBaseRangeMax: 622
|
||||||
m_VBaseRangeMin: -812
|
m_VBaseRangeMin: -209.5
|
||||||
m_VBaseRangeMax: 812
|
m_VBaseRangeMax: 209.5
|
||||||
m_HAllowExceedBaseRangeMin: 1
|
m_HAllowExceedBaseRangeMin: 1
|
||||||
m_HAllowExceedBaseRangeMax: 1
|
m_HAllowExceedBaseRangeMax: 1
|
||||||
m_VAllowExceedBaseRangeMin: 1
|
m_VAllowExceedBaseRangeMin: 1
|
||||||
@ -667,29 +588,29 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 21
|
y: 21
|
||||||
width: 572.3333
|
width: 1244
|
||||||
height: 748.6667
|
height: 419
|
||||||
m_Scale: {x: 0.4610017, y: 0.46100166}
|
m_Scale: {x: 1, y: 1}
|
||||||
m_Translation: {x: 286.16666, y: 374.33334}
|
m_Translation: {x: 622, y: 209.5}
|
||||||
m_MarginLeft: 0
|
m_MarginLeft: 0
|
||||||
m_MarginRight: 0
|
m_MarginRight: 0
|
||||||
m_MarginTop: 0
|
m_MarginTop: 0
|
||||||
m_MarginBottom: 0
|
m_MarginBottom: 0
|
||||||
m_LastShownAreaInsideMargins:
|
m_LastShownAreaInsideMargins:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: -620.7497
|
x: -622
|
||||||
y: -812
|
y: -209.5
|
||||||
width: 1241.4994
|
width: 1244
|
||||||
height: 1624
|
height: 419
|
||||||
m_MinimalGUI: 1
|
m_MinimalGUI: 1
|
||||||
m_defaultScale: 0.46100166
|
m_defaultScale: 1
|
||||||
m_LastWindowPixelSize: {x: 858.5, y: 1154.5}
|
m_LastWindowPixelSize: {x: 1244, y: 440}
|
||||||
m_ClearInEditMode: 1
|
m_ClearInEditMode: 1
|
||||||
m_NoCameraWarning: 1
|
m_NoCameraWarning: 1
|
||||||
m_LowResolutionForAspectRatios: 00000000000000000000
|
m_LowResolutionForAspectRatios: 01000000000000000000
|
||||||
m_XRRenderMode: 0
|
m_XRRenderMode: 0
|
||||||
m_RenderTexture: {fileID: 0}
|
m_RenderTexture: {fileID: 0}
|
||||||
--- !u!114 &19
|
--- !u!114 &16
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@ -704,15 +625,15 @@ MonoBehaviour:
|
|||||||
m_MinSize: {x: 200, y: 200}
|
m_MinSize: {x: 200, y: 200}
|
||||||
m_MaxSize: {x: 4000, y: 4000}
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
m_TitleContent:
|
m_TitleContent:
|
||||||
m_Text: "\u573A\u666F"
|
m_Text: Scene
|
||||||
m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0}
|
m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 573.3334
|
x: 0
|
||||||
y: 72.66667
|
y: 73
|
||||||
width: 458.00006
|
width: 1244
|
||||||
height: 769.6667
|
height: 465
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
@ -722,8 +643,8 @@ MonoBehaviour:
|
|||||||
floating: 0
|
floating: 0
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 1
|
displayed: 1
|
||||||
snapOffset: {x: -101, y: -26}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: -101, y: -26}
|
||||||
snapCorner: 3
|
snapCorner: 3
|
||||||
id: Tool Settings
|
id: Tool Settings
|
||||||
index: 0
|
index: 0
|
||||||
@ -744,7 +665,7 @@ MonoBehaviour:
|
|||||||
floating: 0
|
floating: 0
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 1
|
displayed: 1
|
||||||
snapOffset: {x: 0, y: 24.666666}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: unity-scene-view-toolbar
|
id: unity-scene-view-toolbar
|
||||||
@ -766,7 +687,7 @@ MonoBehaviour:
|
|||||||
floating: 0
|
floating: 0
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 1
|
displayed: 1
|
||||||
snapOffset: {x: 0, y: 25.333334}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
id: unity-transform-toolbar
|
id: unity-transform-toolbar
|
||||||
@ -948,42 +869,20 @@ MonoBehaviour:
|
|||||||
id: Cinemachine
|
id: Cinemachine
|
||||||
index: 2
|
index: 2
|
||||||
layout: 4
|
layout: 4
|
||||||
- dockPosition: 1
|
|
||||||
containerId: overlay-toolbar__top
|
|
||||||
floating: 0
|
|
||||||
collapsed: 0
|
|
||||||
displayed: 0
|
|
||||||
snapOffset: {x: 0, y: 0}
|
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
|
||||||
snapCorner: 0
|
|
||||||
id: Scene View/Open Tile Palette
|
|
||||||
index: 3
|
|
||||||
layout: 4
|
|
||||||
- dockPosition: 1
|
|
||||||
containerId: overlay-toolbar__top
|
|
||||||
floating: 0
|
|
||||||
collapsed: 0
|
|
||||||
displayed: 0
|
|
||||||
snapOffset: {x: 0, y: 0}
|
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
|
||||||
snapCorner: 0
|
|
||||||
id: Scene View/Tilemap Focus
|
|
||||||
index: 4
|
|
||||||
layout: 4
|
|
||||||
m_OverlaysVisible: 1
|
m_OverlaysVisible: 1
|
||||||
m_WindowGUID: 54e7e9968d9f02749a8e52ad32571406
|
m_WindowGUID: 26088512f2b00b24592a13e1e7b447cc
|
||||||
m_Gizmos: 1
|
m_Gizmos: 1
|
||||||
m_OverrideSceneCullingMask: 6917529027641081856
|
m_OverrideSceneCullingMask: 6917529027641081856
|
||||||
m_SceneIsLit: 1
|
m_SceneIsLit: 1
|
||||||
m_SceneLighting: 1
|
m_SceneLighting: 1
|
||||||
m_2DMode: 1
|
m_2DMode: 0
|
||||||
m_isRotationLocked: 0
|
m_isRotationLocked: 0
|
||||||
m_PlayAudio: 0
|
m_PlayAudio: 0
|
||||||
m_AudioPlay: 0
|
m_AudioPlay: 0
|
||||||
m_Position:
|
m_Position:
|
||||||
m_Target: {x: 657.3133, y: 2509.9055, z: -0.99219}
|
m_Target: {x: 0, y: 0, z: 0}
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: {x: 662.7645, y: 2494.2263, z: -0.6061075}
|
m_Value: {x: 0, y: 0, z: 0}
|
||||||
m_RenderMode: 0
|
m_RenderMode: 0
|
||||||
m_CameraMode:
|
m_CameraMode:
|
||||||
drawMode: 0
|
drawMode: 0
|
||||||
@ -1011,14 +910,6 @@ MonoBehaviour:
|
|||||||
m_Pivot: {x: 0, y: 0, z: 0}
|
m_Pivot: {x: 0, y: 0, z: 0}
|
||||||
m_Size: {x: 0, y: 0}
|
m_Size: {x: 0, y: 0}
|
||||||
yGrid:
|
yGrid:
|
||||||
m_Fade:
|
|
||||||
m_Target: 0
|
|
||||||
speed: 2
|
|
||||||
m_Value: 0
|
|
||||||
m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
|
|
||||||
m_Pivot: {x: 0, y: 0, z: 0}
|
|
||||||
m_Size: {x: 1, y: 1}
|
|
||||||
zGrid:
|
|
||||||
m_Fade:
|
m_Fade:
|
||||||
m_Target: 1
|
m_Target: 1
|
||||||
speed: 2
|
speed: 2
|
||||||
@ -1026,21 +917,29 @@ MonoBehaviour:
|
|||||||
m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
|
m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
|
||||||
m_Pivot: {x: 0, y: 0, z: 0}
|
m_Pivot: {x: 0, y: 0, z: 0}
|
||||||
m_Size: {x: 1, y: 1}
|
m_Size: {x: 1, y: 1}
|
||||||
|
zGrid:
|
||||||
|
m_Fade:
|
||||||
|
m_Target: 0
|
||||||
|
speed: 2
|
||||||
|
m_Value: 0
|
||||||
|
m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
|
||||||
|
m_Pivot: {x: 0, y: 0, z: 0}
|
||||||
|
m_Size: {x: 0, y: 0}
|
||||||
m_ShowGrid: 1
|
m_ShowGrid: 1
|
||||||
m_GridAxis: 1
|
m_GridAxis: 1
|
||||||
m_gridOpacity: 0.5
|
m_gridOpacity: 0.5
|
||||||
m_Rotation:
|
m_Rotation:
|
||||||
m_Target: {x: 0, y: 0, z: 0, w: 1}
|
m_Target: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226}
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: {x: 0, y: 0, z: 0, w: 1}
|
m_Value: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226}
|
||||||
m_Size:
|
m_Size:
|
||||||
m_Target: 896.56635
|
m_Target: 10
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: 857.95825
|
m_Value: 10
|
||||||
m_Ortho:
|
m_Ortho:
|
||||||
m_Target: 1
|
m_Target: 0
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: 1
|
m_Value: 0
|
||||||
m_CameraSettings:
|
m_CameraSettings:
|
||||||
m_Speed: 1
|
m_Speed: 1
|
||||||
m_SpeedNormalized: 0.5
|
m_SpeedNormalized: 0.5
|
||||||
@ -1054,7 +953,7 @@ MonoBehaviour:
|
|||||||
m_FarClip: 10000
|
m_FarClip: 10000
|
||||||
m_DynamicClip: 1
|
m_DynamicClip: 1
|
||||||
m_OcclusionCulling: 0
|
m_OcclusionCulling: 0
|
||||||
m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226}
|
m_LastSceneViewRotation: {x: 0, y: 0, z: 0, w: 0}
|
||||||
m_LastSceneViewOrtho: 0
|
m_LastSceneViewOrtho: 0
|
||||||
m_ReplacementShader: {fileID: 0}
|
m_ReplacementShader: {fileID: 0}
|
||||||
m_ReplacementString:
|
m_ReplacementString:
|
||||||
|
Loading…
Reference in New Issue
Block a user