mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 03:14:47 +00:00
提交
This commit is contained in:
parent
f04299219c
commit
04043cc6fc
@ -52,6 +52,7 @@
|
||||
<Compile Include="Assets\Game\Plugins\Unity-Logs-Viewer\Reporter\Reporter.cs" />
|
||||
<Compile Include="Assets\Game\Script\demo\DemoMain.cs" />
|
||||
<Compile Include="Assets\Game\Plugins\Unity-Logs-Viewer\Reporter\ReporterMessageReceiver.cs" />
|
||||
<Compile Include="Assets\Game\Script\battle\mode\GWorldSync01ModeScript\PlayerBotAIPath.cs" />
|
||||
<Compile Include="Assets\Game\Script\battle\mode\GWorldSync01Mode.cs" />
|
||||
<Compile Include="Assets\Game\Plugins\Unity-Logs-Viewer\Reporter\Test\Rotate.cs" />
|
||||
<Compile Include="Assets\Game\Script\battle\mode\GWorldSceneMode.cs" />
|
||||
|
@ -8,7 +8,7 @@ namespace Game.Plugins.App
|
||||
|
||||
public static readonly JNGSocket Socket = new JNGSocket();
|
||||
public static readonly JNGSyncFrame Sync = new JNGSyncFrame();
|
||||
public static readonly JAPI Api = new(new JAPIConfig(){BaseURL = "http://192.168.0.120:8080"});
|
||||
public static readonly JAPI Api = new(new JAPIConfig(){BaseURL = "http://127.0.0.1:8080"});
|
||||
public static readonly EventDispatcher Event = EventDispatcher.Event;
|
||||
|
||||
public static SystemBase[] System()
|
||||
|
@ -8,7 +8,7 @@ namespace Game.Plugins.App
|
||||
protected override async UniTask<string> GetUrl()
|
||||
{
|
||||
await UniTask.NextFrame();
|
||||
return "ws://192.168.0.120:8080/websocket";
|
||||
return "ws://127.0.0.1:8080/websocket";
|
||||
}
|
||||
}
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
using Cysharp.Threading.Tasks;
|
||||
using System;
|
||||
using Cysharp.Threading.Tasks;
|
||||
using Plugins.JNGame.Network.Action;
|
||||
using Plugins.JNGame.Sync.Frame;
|
||||
using UnityEngine;
|
||||
@ -16,17 +17,23 @@ namespace Game.Plugins.App
|
||||
protected override async UniTask<JNFrameInfos> OnServerData(int start, int end)
|
||||
{
|
||||
Debug.Log($"OnServerData - {start}");
|
||||
var data = (await App.Api.GetByte($"/sync/frame?start={start}"));
|
||||
if (data is { Length: > 0 })
|
||||
try
|
||||
{
|
||||
JNFrameInfos info = JNFrameInfos.Parser.ParseFrom(data);
|
||||
Debug.Log($"OnServerData - {start} 结束");
|
||||
return info;
|
||||
var data = (await App.Api.GetByte($"/sync/frame?start={start}"));
|
||||
if (data is { Length: > 0 })
|
||||
{
|
||||
JNFrameInfos info = JNFrameInfos.Parser.ParseFrom(data);
|
||||
Debug.Log($"OnServerData - {start} 结束");
|
||||
return info;
|
||||
}
|
||||
}
|
||||
else
|
||||
catch(Exception e)
|
||||
{
|
||||
return new JNFrameInfos();
|
||||
// ignored
|
||||
Debug.LogError(e.Message);
|
||||
}
|
||||
|
||||
return new JNFrameInfos();
|
||||
}
|
||||
}
|
||||
}
|
@ -71,6 +71,7 @@ namespace Pathfinding.Examples {
|
||||
|
||||
// Speed relative to the character size
|
||||
anim.SetFloat("NormalizedSpeed", relVelocity.magnitude / anim.transform.lossyScale.x);
|
||||
anim.Update((float)dt / 1000);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -77,7 +77,7 @@ namespace Plugins.JNGame.Network
|
||||
private void Onbinary(WebSocket websocket, byte[] data)
|
||||
{
|
||||
|
||||
NSystem.Log($"[JNSocket] Onbinary");
|
||||
// NSystem.Log($"[JNSocket] Onbinary");
|
||||
Dispatch(NDataUtil.Parse(data));
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9606b3aa4a2d4390890ae975ea7567d3
|
||||
timeCreated: 1707030980
|
@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Plugins.JNGame.Util;
|
||||
|
||||
namespace Plugins.JNGame.Sync.Frame.game.Time
|
||||
{
|
||||
|
||||
|
||||
public class JNFrameTimeHandler
|
||||
{
|
||||
public int ID;
|
||||
public Action Handler;
|
||||
public int Timeout;
|
||||
}
|
||||
|
||||
//帧同步定时器
|
||||
public class JNFrameTime : Singleton<JNFrameTime>
|
||||
{
|
||||
|
||||
private int _id = 0;
|
||||
private List<JNFrameTimeHandler> _handlers = new();
|
||||
|
||||
//设置定时器
|
||||
public int SetTimeout(Action handler,int timeout = 0)
|
||||
{
|
||||
var funHandler = new JNFrameTimeHandler()
|
||||
{
|
||||
ID = this._id++,
|
||||
Handler = handler,
|
||||
Timeout = timeout
|
||||
};
|
||||
this._handlers.Add(funHandler);
|
||||
return funHandler.ID;
|
||||
}
|
||||
|
||||
public void Update(int dt)
|
||||
{
|
||||
|
||||
this._handlers.ToList().ForEach(action =>
|
||||
{
|
||||
action.Timeout -= dt;
|
||||
if (action.Timeout <= 0)
|
||||
{
|
||||
action.Handler();
|
||||
this._handlers.Remove(action);
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d96b5b6d30384c7482ce18479c06ebfb
|
||||
timeCreated: 1707030984
|
@ -7,6 +7,7 @@ using Cysharp.Threading.Tasks;
|
||||
using Google.Protobuf;
|
||||
using Plugins.JNGame.Sync.Frame.Entity;
|
||||
using Plugins.JNGame.Sync.Frame.game;
|
||||
using Plugins.JNGame.Sync.Frame.game.Time;
|
||||
using Plugins.JNGame.System;
|
||||
using Plugins.JNGame.Util;
|
||||
using UnityEngine;
|
||||
@ -33,7 +34,7 @@ namespace Plugins.JNGame.Sync.Frame
|
||||
//大于多少帧进行快速追帧
|
||||
private int _nMaxFrameLoopBan = 18;
|
||||
//将服务器帧数进行平分
|
||||
private int _nDivideFrame = 3;
|
||||
private int _nDivideFrame = 2;
|
||||
|
||||
public int NSyncTime => _nSyncTime;
|
||||
public int NMaxFrameBan => _nMaxFrameBan;
|
||||
@ -86,6 +87,10 @@ namespace Plugins.JNGame.Sync.Frame
|
||||
//输入更新
|
||||
int dtInputTotal = 0;
|
||||
|
||||
//是否在追帧
|
||||
private Boolean _isLoop = false;
|
||||
public bool IsLoop => _isLoop;
|
||||
|
||||
public JNTime Time => (new JNTime(this));
|
||||
|
||||
public override Task OnInit()
|
||||
@ -122,7 +127,10 @@ namespace Plugins.JNGame.Sync.Frame
|
||||
this.dtInputTotal = 0;
|
||||
this._isRequestServerData = false;
|
||||
|
||||
Physics.SyncTransforms();
|
||||
//清除定时器
|
||||
SingletonUtil<JNFrameTime>.Clean();
|
||||
|
||||
// Physics.SyncTransforms();
|
||||
EventDispatcher.Event.Dispatch(JNSyncFrameEvent.CREATE);
|
||||
|
||||
}
|
||||
@ -140,6 +148,7 @@ namespace Plugins.JNGame.Sync.Frame
|
||||
|
||||
if(nSyncTime > 0){
|
||||
while(nSyncTime != 0 && this.dtTotal > nSyncTime){
|
||||
this._isLoop = false;
|
||||
this.OnUpdate();
|
||||
this.dtTotal -= nSyncTime;
|
||||
nSyncTime = this.DyTime();
|
||||
@ -147,7 +156,9 @@ namespace Plugins.JNGame.Sync.Frame
|
||||
}else{
|
||||
//追帧运行 保持前端 15 帧 刷新
|
||||
long endTime = (new DateTimeOffset(DateTime.UtcNow).ToUnixTimeMilliseconds()) + 66;
|
||||
while(this.DyTime() == 0 && (new DateTimeOffset(DateTime.UtcNow).ToUnixTimeMilliseconds()) < endTime){
|
||||
while(this.DyTime() == 0 && (new DateTimeOffset(DateTime.UtcNow).ToUnixTimeMilliseconds()) < endTime)
|
||||
{
|
||||
this._isLoop = true;
|
||||
this.OnUpdate();
|
||||
}
|
||||
dtTotal = 0;
|
||||
@ -211,7 +222,7 @@ namespace Plugins.JNGame.Sync.Frame
|
||||
inputs[message.NId] = message;
|
||||
}
|
||||
|
||||
Debug.Log(inputs.Count);
|
||||
// Debug.Log(inputs.Count);
|
||||
|
||||
//运行之前帧
|
||||
this._nSyncActors.ToList().ForEach(child =>
|
||||
@ -243,9 +254,11 @@ namespace Plugins.JNGame.Sync.Frame
|
||||
}
|
||||
});
|
||||
|
||||
//执行下一帧物理
|
||||
Physics.Simulate((float)dt / 1000);
|
||||
Physics.SyncTransforms();
|
||||
//执行定时器
|
||||
SingletonUtil<JNFrameTime>.Instance.Update(dt);
|
||||
// //执行下一帧物理
|
||||
// Physics.Simulate((float)dt / 1000);
|
||||
// Physics.SyncTransforms();
|
||||
|
||||
|
||||
}
|
||||
|
@ -15,7 +15,8 @@
|
||||
|
||||
public static void Clean()
|
||||
{
|
||||
Singleton<T>.ins.Clean();
|
||||
if(Singleton<T>.ins != null)
|
||||
Singleton<T>.ins.Clean();
|
||||
Singleton<T>.ins = null;
|
||||
}
|
||||
|
||||
|
@ -11,12 +11,12 @@ GameObject:
|
||||
- component: {fileID: 4954587615955870202}
|
||||
- component: {fileID: 860618204808115368}
|
||||
- component: {fileID: 5015953210996162854}
|
||||
- component: {fileID: 2351950405008071142}
|
||||
- component: {fileID: 547514512587057512}
|
||||
- component: {fileID: 6805233412966097210}
|
||||
- component: {fileID: 1147615059965528429}
|
||||
- component: {fileID: 4780769471509017217}
|
||||
- component: {fileID: 345950735762528131}
|
||||
- component: {fileID: 8400891744945266613}
|
||||
m_Layer: 8
|
||||
m_Name: Bot
|
||||
m_TagString: Untagged
|
||||
@ -54,7 +54,8 @@ MonoBehaviour:
|
||||
m_EditorClassIdentifier:
|
||||
_nId: 0
|
||||
isSyncInitSuccess: 0
|
||||
allow: []
|
||||
allow:
|
||||
- {fileID: 6805233412966097210}
|
||||
--- !u!114 &5015953210996162854
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
@ -85,50 +86,6 @@ MonoBehaviour:
|
||||
tagPenalties: 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
graphMask:
|
||||
value: -1
|
||||
--- !u!114 &2351950405008071142
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 505715710780844734}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: f6eb1402c17e84a9282a7f0f62eb584f, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
_nId: 0
|
||||
isSyncInitSuccess: 0
|
||||
version: 5
|
||||
radius: 0.35
|
||||
height: 0.87
|
||||
canMove: 1
|
||||
maxSpeed: 4
|
||||
gravity: {x: NaN, y: NaN, z: NaN}
|
||||
groundMask:
|
||||
serializedVersion: 2
|
||||
m_Bits: 4294967295
|
||||
centerOffsetCompatibility: NaN
|
||||
repathRateCompatibility: 0.2
|
||||
canSearchCompability: 1
|
||||
orientation: 0
|
||||
enableRotation: 1
|
||||
autoRepath:
|
||||
mode: 2
|
||||
period: 0.2
|
||||
sensitivity: 10
|
||||
maximumPeriod: 1
|
||||
visualizeSensitivity: 0
|
||||
targetCompatibility: {fileID: 0}
|
||||
maxAcceleration: -2.5
|
||||
rotationSpeed: 540
|
||||
slowdownDistance: 0.6
|
||||
pickNextWaypointDist: 1.5
|
||||
endReachedDistance: 0.05
|
||||
alwaysDrawGizmos: 0
|
||||
slowWhenNotFacingTarget: 1
|
||||
whenCloseToDestination: 0
|
||||
constrainInsideGraph: 0
|
||||
--- !u!114 &547514512587057512
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
@ -221,6 +178,52 @@ MonoBehaviour:
|
||||
_nId: 0
|
||||
isSyncInitSuccess: 0
|
||||
key: 0
|
||||
isRobot: 0
|
||||
target: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &8400891744945266613
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 505715710780844734}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 459952d6a3efe0145b231a636579f95c, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
_nId: 0
|
||||
isSyncInitSuccess: 0
|
||||
version: 5
|
||||
radius: 0.35
|
||||
height: 0.87
|
||||
canMove: 1
|
||||
maxSpeed: 5
|
||||
gravity: {x: NaN, y: NaN, z: NaN}
|
||||
groundMask:
|
||||
serializedVersion: 2
|
||||
m_Bits: 4294967295
|
||||
centerOffsetCompatibility: NaN
|
||||
repathRateCompatibility: NaN
|
||||
canSearchCompability: 0
|
||||
orientation: 0
|
||||
enableRotation: 1
|
||||
autoRepath:
|
||||
mode: 2
|
||||
period: 0.5
|
||||
sensitivity: 10
|
||||
maximumPeriod: 2
|
||||
visualizeSensitivity: 0
|
||||
targetCompatibility: {fileID: 0}
|
||||
maxAcceleration: -2.5
|
||||
rotationSpeed: 360
|
||||
slowdownDistance: 0.6
|
||||
pickNextWaypointDist: 2
|
||||
endReachedDistance: 0.2
|
||||
alwaysDrawGizmos: 0
|
||||
slowWhenNotFacingTarget: 1
|
||||
whenCloseToDestination: 0
|
||||
constrainInsideGraph: 0
|
||||
--- !u!1001 &3512763435436934207
|
||||
PrefabInstance:
|
||||
m_ObjectHideFlags: 0
|
||||
@ -324,8 +327,31 @@ PrefabInstance:
|
||||
m_RemovedComponents: []
|
||||
m_RemovedGameObjects: []
|
||||
m_AddedGameObjects: []
|
||||
m_AddedComponents: []
|
||||
m_AddedComponents:
|
||||
- targetCorrespondingSourceObject: {fileID: 2402233671515968589, guid: 0b9c68ddd67ee5b9e8aeca86ac0fbc03, type: 3}
|
||||
insertIndex: 1
|
||||
addedObject: {fileID: 8507333172764042117}
|
||||
m_SourcePrefab: {fileID: 100100000, guid: 0b9c68ddd67ee5b9e8aeca86ac0fbc03, type: 3}
|
||||
--- !u!1 &1290744670267248754 stripped
|
||||
GameObject:
|
||||
m_CorrespondingSourceObject: {fileID: 2402233671515968589, guid: 0b9c68ddd67ee5b9e8aeca86ac0fbc03, type: 3}
|
||||
m_PrefabInstance: {fileID: 3512763435436934207}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!114 &8507333172764042117
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1290744670267248754}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 32f8b8b7207b1a24ea68368f6a1a91b9, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
_nId: 0
|
||||
isSyncInitSuccess: 0
|
||||
allow: []
|
||||
--- !u!4 &1290744670267477074 stripped
|
||||
Transform:
|
||||
m_CorrespondingSourceObject: {fileID: 2402233671516325997, guid: 0b9c68ddd67ee5b9e8aeca86ac0fbc03, type: 3}
|
||||
|
@ -116,7 +116,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &12
|
||||
GameObject:
|
||||
@ -135,7 +135,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &13
|
||||
GameObject:
|
||||
@ -154,7 +154,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &14
|
||||
GameObject:
|
||||
@ -173,7 +173,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &15
|
||||
GameObject:
|
||||
@ -192,7 +192,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &16
|
||||
GameObject:
|
||||
@ -211,7 +211,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &17
|
||||
GameObject:
|
||||
@ -230,7 +230,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &18
|
||||
GameObject:
|
||||
@ -249,7 +249,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &19
|
||||
GameObject:
|
||||
@ -268,7 +268,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &20
|
||||
GameObject:
|
||||
@ -287,7 +287,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &21
|
||||
GameObject:
|
||||
@ -306,7 +306,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &22
|
||||
GameObject:
|
||||
@ -325,7 +325,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &23
|
||||
GameObject:
|
||||
@ -344,7 +344,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &24
|
||||
GameObject:
|
||||
@ -363,7 +363,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &25
|
||||
GameObject:
|
||||
@ -382,7 +382,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &26
|
||||
GameObject:
|
||||
@ -401,7 +401,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &27
|
||||
GameObject:
|
||||
@ -420,7 +420,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &28
|
||||
GameObject:
|
||||
@ -439,7 +439,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &29
|
||||
GameObject:
|
||||
@ -458,7 +458,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &30
|
||||
GameObject:
|
||||
@ -477,7 +477,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &31
|
||||
GameObject:
|
||||
@ -496,7 +496,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &32
|
||||
GameObject:
|
||||
@ -515,7 +515,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &33
|
||||
GameObject:
|
||||
@ -534,7 +534,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &34
|
||||
GameObject:
|
||||
@ -553,7 +553,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &35
|
||||
GameObject:
|
||||
@ -572,7 +572,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &36
|
||||
GameObject:
|
||||
@ -591,7 +591,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &37
|
||||
GameObject:
|
||||
@ -610,7 +610,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &38
|
||||
GameObject:
|
||||
@ -629,7 +629,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &39
|
||||
GameObject:
|
||||
@ -648,7 +648,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &40
|
||||
GameObject:
|
||||
@ -667,7 +667,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &41
|
||||
GameObject:
|
||||
@ -686,7 +686,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &42
|
||||
GameObject:
|
||||
@ -705,7 +705,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &43
|
||||
GameObject:
|
||||
@ -724,7 +724,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &44
|
||||
GameObject:
|
||||
@ -743,7 +743,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &45
|
||||
GameObject:
|
||||
@ -794,7 +794,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &48
|
||||
GameObject:
|
||||
@ -813,7 +813,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &49
|
||||
GameObject:
|
||||
@ -832,7 +832,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &50
|
||||
GameObject:
|
||||
@ -851,7 +851,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &51
|
||||
GameObject:
|
||||
@ -870,7 +870,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &52
|
||||
GameObject:
|
||||
@ -889,7 +889,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &53
|
||||
GameObject:
|
||||
@ -908,7 +908,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &54
|
||||
GameObject:
|
||||
@ -927,7 +927,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &55
|
||||
GameObject:
|
||||
@ -946,7 +946,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &56
|
||||
GameObject:
|
||||
@ -965,7 +965,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &57
|
||||
GameObject:
|
||||
@ -984,7 +984,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &58
|
||||
GameObject:
|
||||
@ -1003,7 +1003,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &59
|
||||
GameObject:
|
||||
@ -1022,7 +1022,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &60
|
||||
GameObject:
|
||||
@ -1041,7 +1041,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &61
|
||||
GameObject:
|
||||
@ -1060,7 +1060,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &62
|
||||
GameObject:
|
||||
@ -1079,7 +1079,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &63
|
||||
GameObject:
|
||||
@ -1098,7 +1098,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &64
|
||||
GameObject:
|
||||
@ -1117,7 +1117,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &65
|
||||
GameObject:
|
||||
@ -1136,7 +1136,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &66
|
||||
GameObject:
|
||||
@ -1155,7 +1155,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &67
|
||||
GameObject:
|
||||
@ -1174,7 +1174,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &68
|
||||
GameObject:
|
||||
@ -1193,7 +1193,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &69
|
||||
GameObject:
|
||||
@ -1212,7 +1212,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &70
|
||||
GameObject:
|
||||
@ -1231,7 +1231,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &71
|
||||
GameObject:
|
||||
@ -1250,7 +1250,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &72
|
||||
GameObject:
|
||||
@ -1269,7 +1269,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &73
|
||||
GameObject:
|
||||
@ -1288,7 +1288,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &74
|
||||
GameObject:
|
||||
@ -1307,7 +1307,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &75
|
||||
GameObject:
|
||||
@ -1326,7 +1326,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &76
|
||||
GameObject:
|
||||
@ -1345,7 +1345,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &77
|
||||
GameObject:
|
||||
@ -1364,7 +1364,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &78
|
||||
GameObject:
|
||||
@ -1383,7 +1383,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &79
|
||||
GameObject:
|
||||
@ -1402,7 +1402,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &80
|
||||
GameObject:
|
||||
@ -1421,7 +1421,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &81
|
||||
GameObject:
|
||||
@ -1440,7 +1440,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &82
|
||||
GameObject:
|
||||
@ -1459,7 +1459,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &83
|
||||
GameObject:
|
||||
@ -1478,7 +1478,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &84
|
||||
GameObject:
|
||||
@ -1497,7 +1497,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &85
|
||||
GameObject:
|
||||
@ -1516,7 +1516,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &86
|
||||
GameObject:
|
||||
@ -1535,7 +1535,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &87
|
||||
GameObject:
|
||||
@ -1554,7 +1554,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &88
|
||||
GameObject:
|
||||
@ -1573,7 +1573,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &89
|
||||
GameObject:
|
||||
@ -1592,7 +1592,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &109
|
||||
GameObject:
|
||||
@ -1611,7 +1611,7 @@ GameObject:
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 4294967295
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!1 &110
|
||||
GameObject:
|
||||
@ -1797,7 +1797,7 @@ Transform:
|
||||
m_GameObject: {fileID: 19}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 7.79195, y: 30.101498, z: -27.93608}
|
||||
m_LocalPosition: {x: 7.79195, y: 30.3, z: -27.93608}
|
||||
m_LocalScale: {x: 3, y: 2, z: 3}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
@ -8686,7 +8686,7 @@ MonoBehaviour:
|
||||
m_Script: {fileID: 11500000, guid: 78396926cbbfc4ac3b48fc5fc34a87d1, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
_nId: 5
|
||||
_nId: 0
|
||||
isSyncInitSuccess: 0
|
||||
version: 1
|
||||
data:
|
||||
@ -8865,55 +8865,6 @@ LightingSettings:
|
||||
m_PVRTiledBaking: 0
|
||||
m_NumRaysToShootPerTexel: -1
|
||||
m_RespectSceneVisibilityWhenBakingGI: 0
|
||||
--- !u!1 &467558785
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 467558787}
|
||||
- component: {fileID: 467558786}
|
||||
m_Layer: 0
|
||||
m_Name: UI
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!114 &467558786
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 467558785}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: e61b94b311b605b4195e022f5370e558, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
mode: {fileID: 855056720}
|
||||
cam: {fileID: 502858440}
|
||||
mask:
|
||||
serializedVersion: 2
|
||||
m_Bits: 1
|
||||
--- !u!4 &467558787
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 467558785}
|
||||
serializedVersion: 2
|
||||
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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1 &502858437
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@ -9096,4 +9047,3 @@ SceneRoots:
|
||||
m_ObjectHideFlags: 0
|
||||
m_Roots:
|
||||
- {fileID: 855056719}
|
||||
- {fileID: 467558787}
|
||||
|
@ -104,7 +104,7 @@ NavMeshSettings:
|
||||
serializedVersion: 2
|
||||
m_ObjectHideFlags: 0
|
||||
m_BuildSettings:
|
||||
serializedVersion: 2
|
||||
serializedVersion: 3
|
||||
agentTypeID: 0
|
||||
agentRadius: 0.5
|
||||
agentHeight: 2
|
||||
@ -117,12 +117,145 @@ NavMeshSettings:
|
||||
cellSize: 0.16666667
|
||||
manualTileSize: 0
|
||||
tileSize: 256
|
||||
accuratePlacement: 0
|
||||
buildHeightMesh: 0
|
||||
maxJobWorkers: 0
|
||||
preserveTilesOutsideBounds: 0
|
||||
debug:
|
||||
m_Flags: 0
|
||||
m_NavMeshData: {fileID: 0}
|
||||
--- !u!1 &81288984
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 81288985}
|
||||
- component: {fileID: 81288988}
|
||||
- component: {fileID: 81288987}
|
||||
- component: {fileID: 81288986}
|
||||
m_Layer: 5
|
||||
m_Name: Button (Legacy) (1)
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!224 &81288985
|
||||
RectTransform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 81288984}
|
||||
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: 1291200674}
|
||||
m_Father: {fileID: 878636056}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0.5, y: 0}
|
||||
m_AnchorMax: {x: 0.5, y: 0}
|
||||
m_AnchoredPosition: {x: 225, y: 104}
|
||||
m_SizeDelta: {x: 180, y: 80}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &81288986
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 81288984}
|
||||
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: 81288987}
|
||||
m_OnClick:
|
||||
m_PersistentCalls:
|
||||
m_Calls:
|
||||
- m_Target: {fileID: 1911778723}
|
||||
m_TargetAssemblyTypeName: GWorldSync01UI, Assembly-CSharp
|
||||
m_MethodName: OnClickJoinGame
|
||||
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!114 &81288987
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 81288984}
|
||||
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: 10905, guid: 0000000000000000f000000000000000, type: 0}
|
||||
m_Type: 1
|
||||
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 &81288988
|
||||
CanvasRenderer:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 81288984}
|
||||
m_CullTransparentMesh: 1
|
||||
--- !u!1 &121702108
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@ -154,7 +287,6 @@ RectTransform:
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 2008468464}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
@ -234,7 +366,6 @@ RectTransform:
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 878636056}
|
||||
m_RootOrder: 1
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
@ -359,7 +490,9 @@ Canvas:
|
||||
m_OverrideSorting: 0
|
||||
m_OverridePixelPerfect: 0
|
||||
m_SortingBucketNormalizedSize: 0
|
||||
m_VertexColorAlwaysGammaSpace: 0
|
||||
m_AdditionalShaderChannelsFlag: 0
|
||||
m_UpdateRectTransformForStandalone: 0
|
||||
m_SortingLayerID: 0
|
||||
m_SortingOrder: 0
|
||||
m_TargetDisplay: 0
|
||||
@ -375,10 +508,12 @@ RectTransform:
|
||||
m_LocalScale: {x: 0, y: 0, z: 0}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children:
|
||||
- {fileID: 1039426510}
|
||||
- {fileID: 2008468464}
|
||||
- {fileID: 81288985}
|
||||
- {fileID: 1188520222}
|
||||
- {fileID: 178957020}
|
||||
m_Father: {fileID: 1911778722}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 0, y: 0}
|
||||
@ -416,9 +551,17 @@ Camera:
|
||||
m_projectionMatrixMode: 1
|
||||
m_GateFitMode: 2
|
||||
m_FOVAxisMode: 0
|
||||
m_Iso: 200
|
||||
m_ShutterSpeed: 0.005
|
||||
m_Aperture: 16
|
||||
m_FocusDistance: 10
|
||||
m_FocalLength: 50
|
||||
m_BladeCount: 5
|
||||
m_Curvature: {x: 2, y: 11}
|
||||
m_BarrelClipping: 0.25
|
||||
m_Anamorphism: 0
|
||||
m_SensorSize: {x: 36, y: 24}
|
||||
m_LensShift: {x: 0, y: 0}
|
||||
m_FocalLength: 50
|
||||
m_NormalizedViewPortRect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
@ -458,7 +601,6 @@ RectTransform:
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 1911778722}
|
||||
m_RootOrder: 1
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||
@ -525,14 +667,437 @@ Transform:
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1035522521}
|
||||
serializedVersion: 2
|
||||
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: 1911778722}
|
||||
m_RootOrder: 2
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1 &1039426509
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1039426510}
|
||||
- component: {fileID: 1039426513}
|
||||
- component: {fileID: 1039426512}
|
||||
- component: {fileID: 1039426511}
|
||||
m_Layer: 5
|
||||
m_Name: Button (Legacy)
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!224 &1039426510
|
||||
RectTransform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1039426509}
|
||||
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: 878636056}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 0, y: 0}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1039426511
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1039426509}
|
||||
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: 0
|
||||
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: 1039426512}
|
||||
m_OnClick:
|
||||
m_PersistentCalls:
|
||||
m_Calls:
|
||||
- m_Target: {fileID: 1911778723}
|
||||
m_TargetAssemblyTypeName: GWorldSync01UI, Assembly-CSharp
|
||||
m_MethodName: OnClickScene
|
||||
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!114 &1039426512
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1039426509}
|
||||
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: 0}
|
||||
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: 10905, guid: 0000000000000000f000000000000000, type: 0}
|
||||
m_Type: 1
|
||||
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 &1039426513
|
||||
CanvasRenderer:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1039426509}
|
||||
m_CullTransparentMesh: 1
|
||||
--- !u!1 &1188520221
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1188520222}
|
||||
- component: {fileID: 1188520225}
|
||||
- component: {fileID: 1188520224}
|
||||
- component: {fileID: 1188520223}
|
||||
m_Layer: 5
|
||||
m_Name: Button (Legacy) (2)
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!224 &1188520222
|
||||
RectTransform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1188520221}
|
||||
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: 1282136035}
|
||||
m_Father: {fileID: 878636056}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0.5, y: 0}
|
||||
m_AnchorMax: {x: 0.5, y: 0}
|
||||
m_AnchoredPosition: {x: -234, y: 104}
|
||||
m_SizeDelta: {x: 180, y: 80}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1188520223
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1188520221}
|
||||
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: 1188520224}
|
||||
m_OnClick:
|
||||
m_PersistentCalls:
|
||||
m_Calls:
|
||||
- m_Target: {fileID: 1911778723}
|
||||
m_TargetAssemblyTypeName: GWorldSync01UI, Assembly-CSharp
|
||||
m_MethodName: OnClickJoinRobot
|
||||
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!114 &1188520224
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1188520221}
|
||||
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: 10905, guid: 0000000000000000f000000000000000, type: 0}
|
||||
m_Type: 1
|
||||
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 &1188520225
|
||||
CanvasRenderer:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1188520221}
|
||||
m_CullTransparentMesh: 1
|
||||
--- !u!1 &1282136034
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1282136035}
|
||||
- component: {fileID: 1282136037}
|
||||
- component: {fileID: 1282136036}
|
||||
m_Layer: 5
|
||||
m_Name: Text (Legacy)
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!224 &1282136035
|
||||
RectTransform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1282136034}
|
||||
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: 1188520222}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 0, y: 0}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1282136036
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1282136034}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Material: {fileID: 0}
|
||||
m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, 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_FontData:
|
||||
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_FontSize: 26
|
||||
m_FontStyle: 0
|
||||
m_BestFit: 0
|
||||
m_MinSize: 2
|
||||
m_MaxSize: 40
|
||||
m_Alignment: 4
|
||||
m_AlignByGeometry: 0
|
||||
m_RichText: 1
|
||||
m_HorizontalOverflow: 0
|
||||
m_VerticalOverflow: 0
|
||||
m_LineSpacing: 1
|
||||
m_Text: "\u6DFB\u52A0\u4EBA\u673A"
|
||||
--- !u!222 &1282136037
|
||||
CanvasRenderer:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1282136034}
|
||||
m_CullTransparentMesh: 1
|
||||
--- !u!1 &1291200673
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1291200674}
|
||||
- component: {fileID: 1291200676}
|
||||
- component: {fileID: 1291200675}
|
||||
m_Layer: 5
|
||||
m_Name: Text (Legacy)
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!224 &1291200674
|
||||
RectTransform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1291200673}
|
||||
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: 81288985}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 0, y: 0}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1291200675
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1291200673}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Material: {fileID: 0}
|
||||
m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, 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_FontData:
|
||||
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_FontSize: 26
|
||||
m_FontStyle: 0
|
||||
m_BestFit: 0
|
||||
m_MinSize: 2
|
||||
m_MaxSize: 40
|
||||
m_Alignment: 4
|
||||
m_AlignByGeometry: 0
|
||||
m_RichText: 1
|
||||
m_HorizontalOverflow: 0
|
||||
m_VerticalOverflow: 0
|
||||
m_LineSpacing: 1
|
||||
m_Text: "\u52A0\u5165\u6E38\u620F"
|
||||
--- !u!222 &1291200676
|
||||
CanvasRenderer:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1291200673}
|
||||
m_CullTransparentMesh: 1
|
||||
--- !u!1 &1911778720
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@ -543,6 +1108,7 @@ GameObject:
|
||||
m_Component:
|
||||
- component: {fileID: 1911778722}
|
||||
- component: {fileID: 1911778721}
|
||||
- component: {fileID: 1911778723}
|
||||
m_Layer: 0
|
||||
m_Name: UIScene
|
||||
m_TagString: Untagged
|
||||
@ -570,6 +1136,7 @@ Transform:
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1911778720}
|
||||
serializedVersion: 2
|
||||
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}
|
||||
@ -579,8 +1146,23 @@ Transform:
|
||||
- {fileID: 923265421}
|
||||
- {fileID: 1035522524}
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &1911778723
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 1911778720}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: e61b94b311b605b4195e022f5370e558, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
mask:
|
||||
serializedVersion: 2
|
||||
m_Bits: 1
|
||||
playerId: 0
|
||||
--- !u!1 &2008468463
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@ -614,7 +1196,6 @@ RectTransform:
|
||||
m_Children:
|
||||
- {fileID: 121702109}
|
||||
m_Father: {fileID: 878636056}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0.5, y: 0}
|
||||
m_AnchorMax: {x: 0.5, y: 0}
|
||||
@ -715,3 +1296,8 @@ CanvasRenderer:
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 2008468463}
|
||||
m_CullTransparentMesh: 1
|
||||
--- !u!1660057539 &9223372036854775807
|
||||
SceneRoots:
|
||||
m_ObjectHideFlags: 0
|
||||
m_Roots:
|
||||
- {fileID: 1911778722}
|
||||
|
@ -4,6 +4,11 @@ namespace Script.battle
|
||||
{
|
||||
public abstract class GBaseMode<T> : JNGSyncFrame<T>
|
||||
{
|
||||
public override void OnSyncLoad()
|
||||
{
|
||||
base.OnSyncLoad();
|
||||
GBattleModeManager.Instance.root = this;
|
||||
}
|
||||
|
||||
public override void OnSyncUpdate(int dt, JNFrameInfo frame, T input)
|
||||
{
|
||||
@ -14,5 +19,6 @@ namespace Script.battle
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -31,13 +31,20 @@ namespace Script.battle
|
||||
//当前模式
|
||||
private GBattleMode _current = GBattleMode.Not;
|
||||
|
||||
//当前模式实体
|
||||
public Object root;
|
||||
|
||||
//获取当前模式
|
||||
public T GetMode<T>() where T : class
|
||||
{
|
||||
return root as T;
|
||||
}
|
||||
|
||||
//初始化管理器
|
||||
public void Init(GBattleModeInfo info)
|
||||
{
|
||||
|
||||
// App.Event.AddListener(JNSyncFrameEvent.CREATE,LoadScene);
|
||||
// App.Event.AddListener(JNSyncFrameEvent.CLEAR,UnloadScene);
|
||||
|
||||
}
|
||||
|
||||
//打开指定模式
|
||||
|
@ -17,6 +17,7 @@ namespace Script.battle.mode
|
||||
public override void OnSyncLoad()
|
||||
{
|
||||
|
||||
base.OnSyncLoad();
|
||||
Physics = new();
|
||||
// BufferPool pool = new BufferPool();
|
||||
// Simulation.Create(pool, new DemoNarrowPhaseCallbacks(), new DemoPoseIntegratorCallbacks(new System.Numerics.Vector3(0, -10, 0)), new PositionFirstTimestepper());
|
||||
|
@ -10,6 +10,7 @@ namespace Game.Script.battle.mode
|
||||
//控制玩家的唯一标识
|
||||
public long Key;
|
||||
public Boolean IsAdd; //是否加入游戏
|
||||
public Boolean IsRobot; //是否是人机
|
||||
|
||||
}
|
||||
public class GWorldSync01Mode : GBaseMode<GWorldSync01ModeInput>
|
||||
@ -27,6 +28,7 @@ namespace Game.Script.battle.mode
|
||||
//加入一个玩家
|
||||
var player1 = Instantiate(this.player, this.transform);
|
||||
player1.GetComponent<PlayerBot>().key = input.Key;
|
||||
player1.GetComponent<PlayerBot>().isRobot = input.IsRobot;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2,34 +2,57 @@ using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Game.Plugins.App;
|
||||
using Game.Script.battle.mode;
|
||||
using Game.Script.battle.mode.GWorldSync01ModeScript;
|
||||
using Script.battle;
|
||||
using UnityEngine;
|
||||
|
||||
public class GWorldSync01UI : MonoBehaviour
|
||||
{
|
||||
|
||||
public GWorldSync01Mode mode;
|
||||
|
||||
//玩家所属的Id
|
||||
private long playerId;
|
||||
|
||||
public Camera cam;
|
||||
// public Camera cam;
|
||||
public LayerMask mask;
|
||||
|
||||
private void Start()
|
||||
//获取模式
|
||||
private GWorldSync01Mode Mode => GBattleModeManager.Instance.GetMode<GWorldSync01Mode>();
|
||||
|
||||
//获取相机
|
||||
private Camera Cam => (Mode != null ? Mode.GetComponentInChildren<Camera>() : null);
|
||||
|
||||
//当前控制的玩家
|
||||
public long playerId = 0;
|
||||
|
||||
//添加玩家
|
||||
public void AddPlayer(Boolean isRobot = false)
|
||||
{
|
||||
playerId = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds();
|
||||
//添加玩家
|
||||
mode.NInput.Key = this.playerId;
|
||||
mode.NInput.IsAdd = true;
|
||||
Mode.NInput.Key = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds();
|
||||
Mode.NInput.IsAdd = true;
|
||||
Mode.NInput.IsRobot = isRobot;
|
||||
if (!isRobot)
|
||||
{
|
||||
playerId = Mode.NInput.Key;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//控制玩家
|
||||
public void Update()
|
||||
//点击加入人机
|
||||
public void OnClickJoinRobot()
|
||||
{
|
||||
var players = mode.GetComponentsInChildren<PlayerBot>();
|
||||
this.AddPlayer(true);
|
||||
}
|
||||
|
||||
//点击加入游戏
|
||||
public void OnClickJoinGame()
|
||||
{
|
||||
this.AddPlayer();
|
||||
}
|
||||
|
||||
//点击场景
|
||||
public void OnClickScene()
|
||||
{
|
||||
|
||||
var players = Mode.GetComponentsInChildren<PlayerBot>();
|
||||
|
||||
foreach (var playerBot in players.Where(item => item.key == playerId))
|
||||
{
|
||||
@ -38,7 +61,7 @@ public class GWorldSync01UI : MonoBehaviour
|
||||
bool positionFound = false;
|
||||
|
||||
RaycastHit hit;
|
||||
if (cam.pixelRect.Contains(Input.mousePosition) && Physics.Raycast(cam.ScreenPointToRay(Input.mousePosition), out hit, Mathf.Infinity, mask)) {
|
||||
if (Cam.pixelRect.Contains(Input.mousePosition) && Physics.Raycast(Cam.ScreenPointToRay(Input.mousePosition), out hit, Mathf.Infinity, mask)) {
|
||||
newPosition = hit.point;
|
||||
positionFound = true;
|
||||
}
|
||||
@ -56,6 +79,11 @@ public class GWorldSync01UI : MonoBehaviour
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
private void Update()
|
||||
{
|
||||
if(this.Cam != null)
|
||||
this.Cam.enabled = !App.Sync.IsLoop;
|
||||
}
|
||||
}
|
||||
|
@ -4,6 +4,8 @@ using Game.Plugins.App.Sync;
|
||||
using Pathfinding;
|
||||
using UnityEngine;
|
||||
using Game.Script.battle.mode;
|
||||
using Plugins.JNGame.Sync.Frame.game.Time;
|
||||
using Plugins.JNGame.Util;
|
||||
|
||||
namespace Game.Script.battle.mode.GWorldSync01ModeScript
|
||||
{
|
||||
@ -21,16 +23,25 @@ namespace Game.Script.battle.mode.GWorldSync01ModeScript
|
||||
//移动控制
|
||||
private AIDestinationSetter move;
|
||||
public long key;
|
||||
public Boolean isRobot = false;
|
||||
public Vector3 target;
|
||||
|
||||
public override void OnSyncLoad()
|
||||
{
|
||||
base.OnSyncLoad();
|
||||
this.move = this.GetComponent<AIDestinationSetter>();
|
||||
//一秒中自动寻路
|
||||
SingletonUtil<JNFrameTime>.Instance.SetTimeout(() =>
|
||||
{
|
||||
if(this.isRobot)
|
||||
this.SetTarget(new Vector3(GetSync().nRandomInt(-30,50),1,GetSync().nRandomInt(-60,20)));
|
||||
},1000);
|
||||
}
|
||||
|
||||
//设置目标位置
|
||||
public void SetTarget(Vector3 pos)
|
||||
{
|
||||
this.target = pos;
|
||||
this.move.SetTarget(pos);
|
||||
}
|
||||
|
||||
@ -42,6 +53,7 @@ namespace Game.Script.battle.mode.GWorldSync01ModeScript
|
||||
//设置位置
|
||||
this.SetTarget(new Vector3(input.x,input.y,input.z));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -0,0 +1,20 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using Game.Script.battle.mode.GWorldSync01ModeScript;
|
||||
using Pathfinding;
|
||||
using UnityEngine;
|
||||
|
||||
public class PlayerBotAIPath : AIPath
|
||||
{
|
||||
public override void OnTargetReached()
|
||||
{
|
||||
|
||||
base.OnTargetReached();
|
||||
//如果寻路结束 自己是AI 则 随机寻路
|
||||
if (this.GetComponent<PlayerBot>().isRobot)
|
||||
{
|
||||
this.GetComponent<PlayerBot>().SetTarget(new Vector3(GetSync().nRandomInt(-30,50),1,GetSync().nRandomInt(-60,20)));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 459952d6a3efe0145b231a636579f95c
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1 +1 @@
|
||||
Build from PC-20230316NUNE at 2024/2/2 18:06:59
|
||||
Build from PC-20230316NUNE at 2024/2/4 16:16:41
|
0
JNFrame/CaseSensitiveTest
Normal file
0
JNFrame/CaseSensitiveTest
Normal file
@ -418,6 +418,7 @@
|
||||
<Compile Include="Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics1\BEPUphysics\CollisionTests\Manifolds\BoxSphereContactManifold.cs" />
|
||||
<Compile Include="Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics1\BEPUphysics\Character\MovementMode.cs" />
|
||||
<Compile Include="Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics1\BEPUphysics\Constraints\TwoEntity\JointLimits\TwistLimit.cs" />
|
||||
<Compile Include="Assets\Game\Plugins\JNGame\Sync\Frame\Game\Time\JNFrameTime.cs" />
|
||||
<Compile Include="Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics1\BEPUphysics\Constraints\IXDImpulseConstraint.cs" />
|
||||
<Compile Include="Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics1\BEPUphysics\Space.cs" />
|
||||
<Compile Include="Assets\Game\Plugins\JNGame\BepuPhysics\Core\BepuPhysics1\BEPUphysics\Entities\Prefabs\TransformableEntity.cs" />
|
||||
|
@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame
|
||||
-logFile
|
||||
Logs/AssetImportWorker0.log
|
||||
-srvPort
|
||||
54515
|
||||
58814
|
||||
Successfully changed project path to: D:/myproject/JisolGame/JNFrame
|
||||
D:/myproject/JisolGame/JNFrame
|
||||
[UnityMemory] Configuration Parameters - Can be set up in boot.config
|
||||
@ -49,12 +49,12 @@ D:/myproject/JisolGame/JNFrame
|
||||
"memorysetup-temp-allocator-size-cloud-worker=32768"
|
||||
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
|
||||
"memorysetup-temp-allocator-size-gfx=262144"
|
||||
Player connection [35360] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 120727545 [EditorId] 120727545 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
|
||||
Player connection [36360] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 384383265 [EditorId] 384383265 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
|
||||
|
||||
Player connection [35360] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 120727545 [EditorId] 120727545 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
|
||||
Player connection [36360] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 384383265 [EditorId] 384383265 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
|
||||
|
||||
[Physics::Module] Initialized MultithreadedJobDispatcher with 11 workers.
|
||||
Refreshing native plugins compatible for Editor in 37.91 ms, found 3 plugins.
|
||||
Refreshing native plugins compatible for Editor in 30.49 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89)
|
||||
[Subsystems] Discovering subsystems at path D:/Unity/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems
|
||||
@ -70,649 +70,4 @@ Initialize mono
|
||||
Mono path[0] = 'D:/Unity/2022.3.16f1c1/Editor/Data/Managed'
|
||||
Mono path[1] = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
|
||||
Mono config path = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc'
|
||||
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56072
|
||||
Begin MonoManager ReloadAssembly
|
||||
Registering precompiled unity dll's ...
|
||||
Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
|
||||
Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
|
||||
Registered in 0.015599 seconds.
|
||||
- Loaded All Assemblies, in 0.365 seconds
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
Android Extension - Scanning For ADB Devices 353 ms
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 0.663 seconds
|
||||
Domain Reload Profiling: 1025ms
|
||||
BeginReloadAssembly (114ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (0ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (1ms)
|
||||
RebuildCommonClasses (30ms)
|
||||
RebuildNativeTypeToScriptingClass (9ms)
|
||||
initialDomainReloadingComplete (68ms)
|
||||
LoadAllAssembliesAndSetupDomain (141ms)
|
||||
LoadAssemblies (109ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (139ms)
|
||||
TypeCache.Refresh (137ms)
|
||||
TypeCache.ScanAssembly (125ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
||||
ResolveRequiredComponents (0ms)
|
||||
FinalizeReload (663ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (612ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (460ms)
|
||||
SetLoadedEditorAssemblies (3ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (2ms)
|
||||
ProcessInitializeOnLoadAttributes (102ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (45ms)
|
||||
AfterProcessingInitializeOnLoad (0ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (0ms)
|
||||
========================================================================
|
||||
Worker process is ready to serve import requests
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 1.102 seconds
|
||||
Refreshing native plugins compatible for Editor in 13.13 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
Package Manager log level set to [2]
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 0.763 seconds
|
||||
Domain Reload Profiling: 1849ms
|
||||
BeginReloadAssembly (190ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (6ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (38ms)
|
||||
RebuildCommonClasses (33ms)
|
||||
RebuildNativeTypeToScriptingClass (10ms)
|
||||
initialDomainReloadingComplete (73ms)
|
||||
LoadAllAssembliesAndSetupDomain (781ms)
|
||||
LoadAssemblies (578ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (310ms)
|
||||
TypeCache.Refresh (272ms)
|
||||
TypeCache.ScanAssembly (245ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (28ms)
|
||||
ResolveRequiredComponents (7ms)
|
||||
FinalizeReload (763ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (563ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (30ms)
|
||||
SetLoadedEditorAssemblies (5ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (101ms)
|
||||
ProcessInitializeOnLoadAttributes (377ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (36ms)
|
||||
AfterProcessingInitializeOnLoad (14ms)
|
||||
EditorAssembliesLoaded (1ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (12ms)
|
||||
Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds
|
||||
Refreshing native plugins compatible for Editor in 17.47 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5948 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 61 unused Assets / (370.9 KB). Loaded Objects now: 6411.
|
||||
Memory consumption went from 203.6 MB to 203.2 MB.
|
||||
Total: 4.533800 ms (FindLiveObjects: 0.433700 ms CreateObjectMapping: 0.246400 ms MarkObjects: 3.547700 ms DeleteObjects: 0.304400 ms)
|
||||
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 169159.215771 seconds.
|
||||
path: Assets/Game/Scenes/Main.unity
|
||||
artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Game/Scenes/Main.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e630f4c774be57077f932819c8a1c67f') in 0.002677 seconds
|
||||
Number of updated asset objects reloaded before import = 0
|
||||
Number of asset objects unloaded after import = 0
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 0.692 seconds
|
||||
Refreshing native plugins compatible for Editor in 12.56 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 1.132 seconds
|
||||
Domain Reload Profiling: 1814ms
|
||||
BeginReloadAssembly (193ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (7ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (48ms)
|
||||
RebuildCommonClasses (34ms)
|
||||
RebuildNativeTypeToScriptingClass (11ms)
|
||||
initialDomainReloadingComplete (51ms)
|
||||
LoadAllAssembliesAndSetupDomain (394ms)
|
||||
LoadAssemblies (477ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (17ms)
|
||||
TypeCache.Refresh (7ms)
|
||||
TypeCache.ScanAssembly (0ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
||||
ResolveRequiredComponents (8ms)
|
||||
FinalizeReload (1132ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (476ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (27ms)
|
||||
SetLoadedEditorAssemblies (4ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (87ms)
|
||||
ProcessInitializeOnLoadAttributes (298ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (40ms)
|
||||
AfterProcessingInitializeOnLoad (20ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (13ms)
|
||||
Refreshing native plugins compatible for Editor in 13.70 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5937 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (343.0 KB). Loaded Objects now: 6414.
|
||||
Memory consumption went from 203.1 MB to 202.7 MB.
|
||||
Total: 3.346800 ms (FindLiveObjects: 0.470400 ms CreateObjectMapping: 0.246600 ms MarkObjects: 2.339000 ms DeleteObjects: 0.289800 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 0.732 seconds
|
||||
Refreshing native plugins compatible for Editor in 14.95 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 1.292 seconds
|
||||
Domain Reload Profiling: 2011ms
|
||||
BeginReloadAssembly (188ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (4ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (51ms)
|
||||
RebuildCommonClasses (28ms)
|
||||
RebuildNativeTypeToScriptingClass (11ms)
|
||||
initialDomainReloadingComplete (44ms)
|
||||
LoadAllAssembliesAndSetupDomain (448ms)
|
||||
LoadAssemblies (518ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (28ms)
|
||||
TypeCache.Refresh (16ms)
|
||||
TypeCache.ScanAssembly (0ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
||||
ResolveRequiredComponents (10ms)
|
||||
FinalizeReload (1292ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (432ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (27ms)
|
||||
SetLoadedEditorAssemblies (4ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (82ms)
|
||||
ProcessInitializeOnLoadAttributes (278ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (29ms)
|
||||
AfterProcessingInitializeOnLoad (14ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (11ms)
|
||||
Refreshing native plugins compatible for Editor in 15.67 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5938 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (343.1 KB). Loaded Objects now: 6417.
|
||||
Memory consumption went from 205.3 MB to 204.9 MB.
|
||||
Total: 3.747100 ms (FindLiveObjects: 0.529800 ms CreateObjectMapping: 0.247700 ms MarkObjects: 2.615300 ms DeleteObjects: 0.353100 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 1700.973210 seconds.
|
||||
path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab
|
||||
artifactKey: Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/Bot.prefab using Guid(4fed39050c35daa41b1aed0f9723e748) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fbbbc895eeb1d49340e023733d1366b4') in 0.100522 seconds
|
||||
Number of updated asset objects reloaded before import = 0
|
||||
Number of asset objects unloaded after import = 174
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 0.648576 seconds.
|
||||
path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity
|
||||
artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0ea6df7f39c2e39e5a63343b0e98f15') in 0.000710 seconds
|
||||
Number of updated asset objects reloaded before import = 0
|
||||
Number of asset objects unloaded after import = 0
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 1.426 seconds
|
||||
Refreshing native plugins compatible for Editor in 27.06 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 1.545 seconds
|
||||
Domain Reload Profiling: 2959ms
|
||||
BeginReloadAssembly (584ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (163ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (97ms)
|
||||
RebuildCommonClasses (48ms)
|
||||
RebuildNativeTypeToScriptingClass (18ms)
|
||||
initialDomainReloadingComplete (56ms)
|
||||
LoadAllAssembliesAndSetupDomain (708ms)
|
||||
LoadAssemblies (767ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (209ms)
|
||||
TypeCache.Refresh (172ms)
|
||||
TypeCache.ScanAssembly (153ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (28ms)
|
||||
ResolveRequiredComponents (8ms)
|
||||
FinalizeReload (1546ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (576ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (38ms)
|
||||
SetLoadedEditorAssemblies (5ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (102ms)
|
||||
ProcessInitializeOnLoadAttributes (387ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (29ms)
|
||||
AfterProcessingInitializeOnLoad (16ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (13ms)
|
||||
Refreshing native plugins compatible for Editor in 19.17 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5937 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (344.1 KB). Loaded Objects now: 6427.
|
||||
Memory consumption went from 207.1 MB to 206.8 MB.
|
||||
Total: 3.922600 ms (FindLiveObjects: 0.533300 ms CreateObjectMapping: 0.266100 ms MarkObjects: 2.793100 ms DeleteObjects: 0.328500 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 614.251239 seconds.
|
||||
path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example2_Terrain
|
||||
artifactKey: Guid(2d3232507ad564e8c891011e5d6413bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example2_Terrain using Guid(2d3232507ad564e8c891011e5d6413bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e10e356ba4b7f1a2ed7576262ac66f92') in 0.035949 seconds
|
||||
Number of updated asset objects reloaded before import = 0
|
||||
Number of asset objects unloaded after import = 0
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 1.946386 seconds.
|
||||
path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example3_Recast_Navmesh1/Debris.prefab
|
||||
artifactKey: Guid(deba0a6f7ec514207b7e850591a6f942) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example3_Recast_Navmesh1/Debris.prefab using Guid(deba0a6f7ec514207b7e850591a6f942) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ffdbd63b10a3fdd23442c76c7aa9119d') in 0.102360 seconds
|
||||
Number of updated asset objects reloaded before import = 0
|
||||
Number of asset objects unloaded after import = 12
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 0.869566 seconds.
|
||||
path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example3_Recast_Navmesh1/RecastExample.unity
|
||||
artifactKey: Guid(d90ceba0148a049e3b56fcde2b55cec1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example3_Recast_Navmesh1/RecastExample.unity using Guid(d90ceba0148a049e3b56fcde2b55cec1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '950eb5cdaee5cfda19e0624cbce42735') in 0.000665 seconds
|
||||
Number of updated asset objects reloaded before import = 0
|
||||
Number of asset objects unloaded after import = 0
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 0.704 seconds
|
||||
Refreshing native plugins compatible for Editor in 12.30 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 0.932 seconds
|
||||
Domain Reload Profiling: 1627ms
|
||||
BeginReloadAssembly (201ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (4ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (61ms)
|
||||
RebuildCommonClasses (36ms)
|
||||
RebuildNativeTypeToScriptingClass (11ms)
|
||||
initialDomainReloadingComplete (44ms)
|
||||
LoadAllAssembliesAndSetupDomain (402ms)
|
||||
LoadAssemblies (449ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (48ms)
|
||||
TypeCache.Refresh (24ms)
|
||||
TypeCache.ScanAssembly (8ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (11ms)
|
||||
ResolveRequiredComponents (10ms)
|
||||
FinalizeReload (933ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (366ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (23ms)
|
||||
SetLoadedEditorAssemblies (3ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (78ms)
|
||||
ProcessInitializeOnLoadAttributes (228ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (23ms)
|
||||
AfterProcessingInitializeOnLoad (12ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (9ms)
|
||||
Refreshing native plugins compatible for Editor in 11.90 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5937 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (342.9 KB). Loaded Objects now: 6431.
|
||||
Memory consumption went from 209.1 MB to 208.8 MB.
|
||||
Total: 4.321700 ms (FindLiveObjects: 0.466200 ms CreateObjectMapping: 0.202200 ms MarkObjects: 3.307900 ms DeleteObjects: 0.344000 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 366.622434 seconds.
|
||||
path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example2_Terrain/checkerGround.psd
|
||||
artifactKey: Guid(ee2523340e7944c4297a80937a51484c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example2_Terrain/checkerGround.psd using Guid(ee2523340e7944c4297a80937a51484c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ac197c060fb96bfcd2a8da4be5645e43') in 0.056184 seconds
|
||||
Number of updated asset objects reloaded before import = 0
|
||||
Number of asset objects unloaded after import = 2
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 0.988294 seconds.
|
||||
path: Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example2_Terrain/Example2.unity
|
||||
artifactKey: Guid(b04e6b995408741cf8dc427c6173f5f8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Game/Plugins/AstarPathfindingProject/ExampleScenes/Example2_Terrain/Example2.unity using Guid(b04e6b995408741cf8dc427c6173f5f8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42cbd719f8b15f916402f6e3919f0205') in 0.000791 seconds
|
||||
Number of updated asset objects reloaded before import = 0
|
||||
Number of asset objects unloaded after import = 0
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 0.940 seconds
|
||||
Refreshing native plugins compatible for Editor in 12.04 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 0.949 seconds
|
||||
Domain Reload Profiling: 1873ms
|
||||
BeginReloadAssembly (199ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (6ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (59ms)
|
||||
RebuildCommonClasses (37ms)
|
||||
RebuildNativeTypeToScriptingClass (12ms)
|
||||
initialDomainReloadingComplete (56ms)
|
||||
LoadAllAssembliesAndSetupDomain (620ms)
|
||||
LoadAssemblies (660ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (53ms)
|
||||
TypeCache.Refresh (29ms)
|
||||
TypeCache.ScanAssembly (8ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (13ms)
|
||||
ResolveRequiredComponents (8ms)
|
||||
FinalizeReload (949ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (357ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (22ms)
|
||||
SetLoadedEditorAssemblies (3ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (74ms)
|
||||
ProcessInitializeOnLoadAttributes (220ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (23ms)
|
||||
AfterProcessingInitializeOnLoad (15ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (12ms)
|
||||
Refreshing native plugins compatible for Editor in 10.67 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5937 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (343.3 KB). Loaded Objects now: 6436.
|
||||
Memory consumption went from 211.0 MB to 210.7 MB.
|
||||
Total: 3.039200 ms (FindLiveObjects: 0.451800 ms CreateObjectMapping: 0.239500 ms MarkObjects: 2.132100 ms DeleteObjects: 0.214800 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 0.790 seconds
|
||||
Refreshing native plugins compatible for Editor in 15.42 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 1.007 seconds
|
||||
Domain Reload Profiling: 1787ms
|
||||
BeginReloadAssembly (251ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (5ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (70ms)
|
||||
RebuildCommonClasses (35ms)
|
||||
RebuildNativeTypeToScriptingClass (10ms)
|
||||
initialDomainReloadingComplete (44ms)
|
||||
LoadAllAssembliesAndSetupDomain (441ms)
|
||||
LoadAssemblies (513ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (49ms)
|
||||
TypeCache.Refresh (27ms)
|
||||
TypeCache.ScanAssembly (8ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (11ms)
|
||||
ResolveRequiredComponents (9ms)
|
||||
FinalizeReload (1007ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (395ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (23ms)
|
||||
SetLoadedEditorAssemblies (3ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (75ms)
|
||||
ProcessInitializeOnLoadAttributes (248ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (33ms)
|
||||
AfterProcessingInitializeOnLoad (13ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (9ms)
|
||||
Refreshing native plugins compatible for Editor in 11.06 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5938 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6439.
|
||||
Memory consumption went from 213.2 MB to 212.9 MB.
|
||||
Total: 4.761800 ms (FindLiveObjects: 0.608100 ms CreateObjectMapping: 0.772400 ms MarkObjects: 3.062500 ms DeleteObjects: 0.316300 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Import Request.
|
||||
Time since last request: 100.837218 seconds.
|
||||
path: Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity
|
||||
artifactKey: Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
|
||||
Start importing Assets/Game/Scenes/Mode/Example3_Recast_Navmesh1/WorldSync01.unity using Guid(3db087e06073e834f99488917ceb5e74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a8bdae2ee89798a10908a07ecc1b4a2') in 0.001994 seconds
|
||||
Number of updated asset objects reloaded before import = 0
|
||||
Number of asset objects unloaded after import = 0
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 0.728 seconds
|
||||
Refreshing native plugins compatible for Editor in 14.48 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 0.978 seconds
|
||||
Domain Reload Profiling: 1698ms
|
||||
BeginReloadAssembly (208ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (6ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (66ms)
|
||||
RebuildCommonClasses (28ms)
|
||||
RebuildNativeTypeToScriptingClass (18ms)
|
||||
initialDomainReloadingComplete (43ms)
|
||||
LoadAllAssembliesAndSetupDomain (423ms)
|
||||
LoadAssemblies (481ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (38ms)
|
||||
TypeCache.Refresh (17ms)
|
||||
TypeCache.ScanAssembly (5ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (11ms)
|
||||
ResolveRequiredComponents (8ms)
|
||||
FinalizeReload (979ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (382ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (23ms)
|
||||
SetLoadedEditorAssemblies (3ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (75ms)
|
||||
ProcessInitializeOnLoadAttributes (239ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (26ms)
|
||||
AfterProcessingInitializeOnLoad (15ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (11ms)
|
||||
Refreshing native plugins compatible for Editor in 11.67 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5937 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (343.2 KB). Loaded Objects now: 6442.
|
||||
Memory consumption went from 214.9 MB to 214.5 MB.
|
||||
Total: 5.930300 ms (FindLiveObjects: 0.869200 ms CreateObjectMapping: 0.643600 ms MarkObjects: 4.063700 ms DeleteObjects: 0.350200 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
Using monoOptions --debugger-agent=transport=dt_socket,address=127.0.0.1:56484,server=n,suspend=y
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -15,7 +15,7 @@ D:/myproject/JisolGame/JNFrame
|
||||
-logFile
|
||||
Logs/AssetImportWorker1.log
|
||||
-srvPort
|
||||
54515
|
||||
58814
|
||||
Successfully changed project path to: D:/myproject/JisolGame/JNFrame
|
||||
D:/myproject/JisolGame/JNFrame
|
||||
[UnityMemory] Configuration Parameters - Can be set up in boot.config
|
||||
@ -49,12 +49,12 @@ D:/myproject/JisolGame/JNFrame
|
||||
"memorysetup-temp-allocator-size-cloud-worker=32768"
|
||||
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
|
||||
"memorysetup-temp-allocator-size-gfx=262144"
|
||||
Player connection [36972] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 4282446386 [EditorId] 4282446386 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
|
||||
Player connection [2144] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 1318428422 [EditorId] 1318428422 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
|
||||
|
||||
Player connection [36972] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 4282446386 [EditorId] 4282446386 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
|
||||
Player connection [2144] Host "[IP] 192.168.0.118 [Port] 0 [Flags] 2 [Guid] 1318428422 [EditorId] 1318428422 [Version] 1048832 [Id] WindowsEditor(7,PC-20230316NUNE) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
|
||||
|
||||
[Physics::Module] Initialized MultithreadedJobDispatcher with 11 workers.
|
||||
Refreshing native plugins compatible for Editor in 40.61 ms, found 3 plugins.
|
||||
Refreshing native plugins compatible for Editor in 29.74 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Initialize engine version: 2022.3.16f1c1 (2f3f1b3bde89)
|
||||
[Subsystems] Discovering subsystems at path D:/Unity/2022.3.16f1c1/Editor/Data/Resources/UnitySubsystems
|
||||
@ -70,577 +70,4 @@ Initialize mono
|
||||
Mono path[0] = 'D:/Unity/2022.3.16f1c1/Editor/Data/Managed'
|
||||
Mono path[1] = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
|
||||
Mono config path = 'D:/Unity/2022.3.16f1c1/Editor/Data/MonoBleedingEdge/etc'
|
||||
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56816
|
||||
Begin MonoManager ReloadAssembly
|
||||
Registering precompiled unity dll's ...
|
||||
Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
|
||||
Register platform support module: D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
|
||||
Registered in 0.010198 seconds.
|
||||
- Loaded All Assemblies, in 0.387 seconds
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
Android Extension - Scanning For ADB Devices 349 ms
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 0.664 seconds
|
||||
Domain Reload Profiling: 1047ms
|
||||
BeginReloadAssembly (116ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (0ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (1ms)
|
||||
RebuildCommonClasses (37ms)
|
||||
RebuildNativeTypeToScriptingClass (11ms)
|
||||
initialDomainReloadingComplete (69ms)
|
||||
LoadAllAssembliesAndSetupDomain (149ms)
|
||||
LoadAssemblies (112ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (147ms)
|
||||
TypeCache.Refresh (146ms)
|
||||
TypeCache.ScanAssembly (134ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
||||
ResolveRequiredComponents (0ms)
|
||||
FinalizeReload (664ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (609ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (457ms)
|
||||
SetLoadedEditorAssemblies (4ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (2ms)
|
||||
ProcessInitializeOnLoadAttributes (103ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (44ms)
|
||||
AfterProcessingInitializeOnLoad (0ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (0ms)
|
||||
========================================================================
|
||||
Worker process is ready to serve import requests
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 1.100 seconds
|
||||
Refreshing native plugins compatible for Editor in 14.26 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
Package Manager log level set to [2]
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 0.777 seconds
|
||||
Domain Reload Profiling: 1866ms
|
||||
BeginReloadAssembly (184ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (5ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (38ms)
|
||||
RebuildCommonClasses (35ms)
|
||||
RebuildNativeTypeToScriptingClass (10ms)
|
||||
initialDomainReloadingComplete (70ms)
|
||||
LoadAllAssembliesAndSetupDomain (790ms)
|
||||
LoadAssemblies (587ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (308ms)
|
||||
TypeCache.Refresh (267ms)
|
||||
TypeCache.ScanAssembly (241ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (31ms)
|
||||
ResolveRequiredComponents (7ms)
|
||||
FinalizeReload (778ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (570ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (32ms)
|
||||
SetLoadedEditorAssemblies (5ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (101ms)
|
||||
ProcessInitializeOnLoadAttributes (379ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (37ms)
|
||||
AfterProcessingInitializeOnLoad (16ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (12ms)
|
||||
Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 seconds
|
||||
Refreshing native plugins compatible for Editor in 17.14 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5948 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 61 unused Assets / (371.3 KB). Loaded Objects now: 6411.
|
||||
Memory consumption went from 203.8 MB to 203.4 MB.
|
||||
Total: 5.490000 ms (FindLiveObjects: 0.628800 ms CreateObjectMapping: 0.403900 ms MarkObjects: 4.149300 ms DeleteObjects: 0.305800 ms)
|
||||
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 0.696 seconds
|
||||
Refreshing native plugins compatible for Editor in 11.81 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 1.099 seconds
|
||||
Domain Reload Profiling: 1782ms
|
||||
BeginReloadAssembly (187ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (4ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (49ms)
|
||||
RebuildCommonClasses (37ms)
|
||||
RebuildNativeTypeToScriptingClass (10ms)
|
||||
initialDomainReloadingComplete (53ms)
|
||||
LoadAllAssembliesAndSetupDomain (396ms)
|
||||
LoadAssemblies (479ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (16ms)
|
||||
TypeCache.Refresh (6ms)
|
||||
TypeCache.ScanAssembly (0ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
||||
ResolveRequiredComponents (8ms)
|
||||
FinalizeReload (1099ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (461ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (24ms)
|
||||
SetLoadedEditorAssemblies (3ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (84ms)
|
||||
ProcessInitializeOnLoadAttributes (296ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (35ms)
|
||||
AfterProcessingInitializeOnLoad (19ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (15ms)
|
||||
Refreshing native plugins compatible for Editor in 14.41 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5938 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6414.
|
||||
Memory consumption went from 203.5 MB to 203.2 MB.
|
||||
Total: 3.685700 ms (FindLiveObjects: 0.578500 ms CreateObjectMapping: 0.290600 ms MarkObjects: 2.540800 ms DeleteObjects: 0.273700 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 0.749 seconds
|
||||
Refreshing native plugins compatible for Editor in 13.88 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 1.292 seconds
|
||||
Domain Reload Profiling: 2029ms
|
||||
BeginReloadAssembly (196ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (5ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (55ms)
|
||||
RebuildCommonClasses (32ms)
|
||||
RebuildNativeTypeToScriptingClass (11ms)
|
||||
initialDomainReloadingComplete (43ms)
|
||||
LoadAllAssembliesAndSetupDomain (455ms)
|
||||
LoadAssemblies (528ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (23ms)
|
||||
TypeCache.Refresh (10ms)
|
||||
TypeCache.ScanAssembly (0ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (0ms)
|
||||
ResolveRequiredComponents (12ms)
|
||||
FinalizeReload (1293ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (428ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (27ms)
|
||||
SetLoadedEditorAssemblies (3ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (82ms)
|
||||
ProcessInitializeOnLoadAttributes (273ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (28ms)
|
||||
AfterProcessingInitializeOnLoad (15ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (9ms)
|
||||
Refreshing native plugins compatible for Editor in 18.51 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5938 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6417.
|
||||
Memory consumption went from 205.4 MB to 205.1 MB.
|
||||
Total: 4.869300 ms (FindLiveObjects: 0.626100 ms CreateObjectMapping: 0.500500 ms MarkObjects: 3.509300 ms DeleteObjects: 0.231100 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 1.446 seconds
|
||||
Refreshing native plugins compatible for Editor in 17.70 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 1.506 seconds
|
||||
Domain Reload Profiling: 2944ms
|
||||
BeginReloadAssembly (587ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (31ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (103ms)
|
||||
RebuildCommonClasses (48ms)
|
||||
RebuildNativeTypeToScriptingClass (13ms)
|
||||
initialDomainReloadingComplete (60ms)
|
||||
LoadAllAssembliesAndSetupDomain (730ms)
|
||||
LoadAssemblies (844ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (200ms)
|
||||
TypeCache.Refresh (148ms)
|
||||
TypeCache.ScanAssembly (131ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (39ms)
|
||||
ResolveRequiredComponents (11ms)
|
||||
FinalizeReload (1507ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (564ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (35ms)
|
||||
SetLoadedEditorAssemblies (5ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (99ms)
|
||||
ProcessInitializeOnLoadAttributes (383ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (27ms)
|
||||
AfterProcessingInitializeOnLoad (14ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (13ms)
|
||||
Refreshing native plugins compatible for Editor in 13.71 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5938 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (344.5 KB). Loaded Objects now: 6420.
|
||||
Memory consumption went from 207.4 MB to 207.1 MB.
|
||||
Total: 3.837500 ms (FindLiveObjects: 0.506400 ms CreateObjectMapping: 0.286400 ms MarkObjects: 2.662900 ms DeleteObjects: 0.379700 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 0.720 seconds
|
||||
Refreshing native plugins compatible for Editor in 11.81 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 0.931 seconds
|
||||
Domain Reload Profiling: 1641ms
|
||||
BeginReloadAssembly (203ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (5ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (63ms)
|
||||
RebuildCommonClasses (37ms)
|
||||
RebuildNativeTypeToScriptingClass (13ms)
|
||||
initialDomainReloadingComplete (43ms)
|
||||
LoadAllAssembliesAndSetupDomain (414ms)
|
||||
LoadAssemblies (470ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (38ms)
|
||||
TypeCache.Refresh (17ms)
|
||||
TypeCache.ScanAssembly (7ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (9ms)
|
||||
ResolveRequiredComponents (11ms)
|
||||
FinalizeReload (932ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (370ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (28ms)
|
||||
SetLoadedEditorAssemblies (3ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (75ms)
|
||||
ProcessInitializeOnLoadAttributes (225ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (27ms)
|
||||
AfterProcessingInitializeOnLoad (12ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (8ms)
|
||||
Refreshing native plugins compatible for Editor in 15.90 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5938 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (344.8 KB). Loaded Objects now: 6423.
|
||||
Memory consumption went from 209.4 MB to 209.0 MB.
|
||||
Total: 3.956200 ms (FindLiveObjects: 0.394100 ms CreateObjectMapping: 0.297400 ms MarkObjects: 2.870000 ms DeleteObjects: 0.393500 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 0.921 seconds
|
||||
Refreshing native plugins compatible for Editor in 13.43 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 0.950 seconds
|
||||
Domain Reload Profiling: 1798ms
|
||||
BeginReloadAssembly (204ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (8ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (63ms)
|
||||
RebuildCommonClasses (38ms)
|
||||
RebuildNativeTypeToScriptingClass (9ms)
|
||||
initialDomainReloadingComplete (58ms)
|
||||
LoadAllAssembliesAndSetupDomain (539ms)
|
||||
LoadAssemblies (583ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (47ms)
|
||||
TypeCache.Refresh (26ms)
|
||||
TypeCache.ScanAssembly (7ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (9ms)
|
||||
ResolveRequiredComponents (10ms)
|
||||
FinalizeReload (951ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (358ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (22ms)
|
||||
SetLoadedEditorAssemblies (3ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (75ms)
|
||||
ProcessInitializeOnLoadAttributes (221ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (23ms)
|
||||
AfterProcessingInitializeOnLoad (14ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (13ms)
|
||||
Refreshing native plugins compatible for Editor in 13.12 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5938 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (344.7 KB). Loaded Objects now: 6426.
|
||||
Memory consumption went from 211.3 MB to 210.9 MB.
|
||||
Total: 3.626500 ms (FindLiveObjects: 0.539800 ms CreateObjectMapping: 0.284900 ms MarkObjects: 2.558700 ms DeleteObjects: 0.241500 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 0.787 seconds
|
||||
Refreshing native plugins compatible for Editor in 15.11 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 1.001 seconds
|
||||
Domain Reload Profiling: 1776ms
|
||||
BeginReloadAssembly (232ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (8ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (65ms)
|
||||
RebuildCommonClasses (45ms)
|
||||
RebuildNativeTypeToScriptingClass (16ms)
|
||||
initialDomainReloadingComplete (57ms)
|
||||
LoadAllAssembliesAndSetupDomain (425ms)
|
||||
LoadAssemblies (497ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (42ms)
|
||||
TypeCache.Refresh (21ms)
|
||||
TypeCache.ScanAssembly (7ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (8ms)
|
||||
ResolveRequiredComponents (10ms)
|
||||
FinalizeReload (1001ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (389ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (22ms)
|
||||
SetLoadedEditorAssemblies (3ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (76ms)
|
||||
ProcessInitializeOnLoadAttributes (244ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (31ms)
|
||||
AfterProcessingInitializeOnLoad (13ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (8ms)
|
||||
Refreshing native plugins compatible for Editor in 13.03 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5938 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6429.
|
||||
Memory consumption went from 213.2 MB to 212.9 MB.
|
||||
Total: 4.589200 ms (FindLiveObjects: 0.546200 ms CreateObjectMapping: 0.358100 ms MarkObjects: 3.336800 ms DeleteObjects: 0.345300 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
========================================================================
|
||||
Received Prepare
|
||||
Begin MonoManager ReloadAssembly
|
||||
- Loaded All Assemblies, in 0.729 seconds
|
||||
Refreshing native plugins compatible for Editor in 14.51 ms, found 3 plugins.
|
||||
Native extension for WindowsStandalone target not found
|
||||
Native extension for Android target not found
|
||||
[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
|
||||
[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
|
||||
[Package Manager] Cannot connect to Unity Package Manager local server
|
||||
Mono: successfully reloaded assembly
|
||||
- Finished resetting the current domain, in 0.978 seconds
|
||||
Domain Reload Profiling: 1697ms
|
||||
BeginReloadAssembly (201ms)
|
||||
ExecutionOrderSort (0ms)
|
||||
DisableScriptedObjects (6ms)
|
||||
BackupInstance (0ms)
|
||||
ReleaseScriptingObjects (0ms)
|
||||
CreateAndSetChildDomain (55ms)
|
||||
RebuildCommonClasses (29ms)
|
||||
RebuildNativeTypeToScriptingClass (11ms)
|
||||
initialDomainReloadingComplete (47ms)
|
||||
LoadAllAssembliesAndSetupDomain (430ms)
|
||||
LoadAssemblies (494ms)
|
||||
RebuildTransferFunctionScriptingTraits (0ms)
|
||||
AnalyzeDomain (37ms)
|
||||
TypeCache.Refresh (17ms)
|
||||
TypeCache.ScanAssembly (4ms)
|
||||
ScanForSourceGeneratedMonoScriptInfo (10ms)
|
||||
ResolveRequiredComponents (8ms)
|
||||
FinalizeReload (979ms)
|
||||
ReleaseScriptCaches (0ms)
|
||||
RebuildScriptCaches (0ms)
|
||||
SetupLoadedEditorAssemblies (383ms)
|
||||
LogAssemblyErrors (0ms)
|
||||
InitializePlatformSupportModulesInManaged (23ms)
|
||||
SetLoadedEditorAssemblies (4ms)
|
||||
RefreshPlugins (0ms)
|
||||
BeforeProcessingInitializeOnLoad (74ms)
|
||||
ProcessInitializeOnLoadAttributes (238ms)
|
||||
ProcessInitializeOnLoadMethodAttributes (28ms)
|
||||
AfterProcessingInitializeOnLoad (15ms)
|
||||
EditorAssembliesLoaded (0ms)
|
||||
ExecutionOrderSort2 (0ms)
|
||||
AwakeInstancesAfterBackupRestoration (11ms)
|
||||
Refreshing native plugins compatible for Editor in 14.09 ms, found 3 plugins.
|
||||
Preloading 0 native plugins for Editor in 0.00 ms.
|
||||
Unloading 5938 Unused Serialized files (Serialized files now loaded: 0)
|
||||
Unloading 44 unused Assets / (343.7 KB). Loaded Objects now: 6432.
|
||||
Memory consumption went from 215.1 MB to 214.8 MB.
|
||||
Total: 4.622500 ms (FindLiveObjects: 0.487100 ms CreateObjectMapping: 0.243300 ms MarkObjects: 3.515100 ms DeleteObjects: 0.375300 ms)
|
||||
|
||||
Prepare: number of updated asset objects reloaded= 0
|
||||
AssetImportParameters requested are different than current active one (requested -> active):
|
||||
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
|
||||
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
|
||||
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
|
||||
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
|
||||
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
|
||||
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
|
||||
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
|
||||
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
|
||||
custom:CustomObjectIndexerAttribute: 43b350a4d6e6d1791af0b5038c4bea17 ->
|
||||
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
|
||||
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
|
||||
Using monoOptions --debugger-agent=transport=dt_socket,address=127.0.0.1:56484,server=n,suspend=y
|
||||
|
File diff suppressed because it is too large
Load Diff
8512
JNFrame/Logs/AssetImportWorker2.log
Normal file
8512
JNFrame/Logs/AssetImportWorker2.log
Normal file
File diff suppressed because it is too large
Load Diff
6
JNFrame/Logs/shadercompiler-AssetImportWorker0.log
Normal file
6
JNFrame/Logs/shadercompiler-AssetImportWorker0.log
Normal file
@ -0,0 +1,6 @@
|
||||
Base path: 'D:/Unity/2022.3.16f1c1/Editor/Data', plugins path 'D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines'
|
||||
Cmd: initializeCompiler
|
||||
|
||||
Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4)
|
||||
|
||||
Quitting shader compiler process
|
@ -1,4 +1,3 @@
|
||||
Base path: 'D:/Unity/2022.3.16f1c1/Editor/Data', plugins path 'D:/Unity/2022.3.16f1c1/Editor/Data/PlaybackEngines'
|
||||
Cmd: initializeCompiler
|
||||
|
||||
Cmd: shutdown
|
||||
|
@ -32,7 +32,7 @@ PhysicsManager:
|
||||
m_Extent: {x: 250, y: 250, z: 250}
|
||||
m_WorldSubdivisions: 8
|
||||
m_FrictionType: 0
|
||||
m_EnableEnhancedDeterminism: 1
|
||||
m_EnableEnhancedDeterminism: 0
|
||||
m_EnableUnifiedHeightmaps: 1
|
||||
m_ImprovedPatchFriction: 0
|
||||
m_SolverType: 0
|
||||
|
@ -21,29 +21,29 @@ EditorUserSettings:
|
||||
value: 184c
|
||||
flags: 0
|
||||
RecentlyUsedSceneGuid-0:
|
||||
value: 5409020704005a585b5a5b7545710a44434e1b782a707168297a1e67b1e1656b
|
||||
flags: 0
|
||||
RecentlyUsedSceneGuid-1:
|
||||
value: 0657515703035b0d58570e2044760b44174f4e7f747074642f281c66b0b6653e
|
||||
flags: 0
|
||||
RecentlyUsedSceneGuid-2:
|
||||
RecentlyUsedSceneGuid-1:
|
||||
value: 07025753065650025e585f7245720a4443164a2e7a7970357f714832b7e3646e
|
||||
flags: 0
|
||||
RecentlyUsedSceneGuid-3:
|
||||
value: 5a03005f0301085d0f5d082043200b444e4e1c7b2d7a7f352c714532b0e6653b
|
||||
flags: 0
|
||||
RecentlyUsedSceneGuid-4:
|
||||
value: 0650065500505e595c5b0824467b06444f16482b2e7f23652f7d4465b3e26c3b
|
||||
flags: 0
|
||||
RecentlyUsedSceneGuid-5:
|
||||
RecentlyUsedSceneGuid-2:
|
||||
value: 0101000353575002585a5c7a47770e13104f1c29787a71337b784a60e4b53260
|
||||
flags: 0
|
||||
RecentlyUsedSceneGuid-6:
|
||||
RecentlyUsedSceneGuid-3:
|
||||
value: 070804050057080b5c5a54234077061545154d7c2a2b22357f2b4866e1e53769
|
||||
flags: 0
|
||||
RecentlyUsedSceneGuid-7:
|
||||
RecentlyUsedSceneGuid-4:
|
||||
value: 0107035e52055d59595e082744265e44131619732e2b75697c2f1b66e4b8646b
|
||||
flags: 0
|
||||
RecentlyUsedSceneGuid-5:
|
||||
value: 0650065500505e595c5b0824467b06444f16482b2e7f23652f7d4465b3e26c3b
|
||||
flags: 0
|
||||
RecentlyUsedSceneGuid-6:
|
||||
value: 5a03005f0301085d0f5d082043200b444e4e1c7b2d7a7f352c714532b0e6653b
|
||||
flags: 0
|
||||
RecentlyUsedSceneGuid-7:
|
||||
value: 5409020704005a585b5a5b7545710a44434e1b782a707168297a1e67b1e1656b
|
||||
flags: 0
|
||||
RecentlyUsedSceneGuid-8:
|
||||
value: 505556565d020c0b5b5e5b71157b0c44104e417e74707f617a2a1831b7e5636c
|
||||
flags: 0
|
||||
|
@ -24,8 +24,209 @@ MonoBehaviour:
|
||||
m_MinSize: {x: 400, y: 100}
|
||||
m_MaxSize: {x: 32384, y: 16192}
|
||||
vertical: 0
|
||||
controlID: 37
|
||||
controlID: 71
|
||||
--- !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: 1
|
||||
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: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 641
|
||||
width: 1498
|
||||
height: 350
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
m_SupportedDataModes:
|
||||
isAutomatic: 1
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
m_SaveData: []
|
||||
m_OverlaysVisible: 1
|
||||
--- !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: 1
|
||||
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Children:
|
||||
- {fileID: 4}
|
||||
- {fileID: 12}
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1499
|
||||
height: 939
|
||||
m_MinSize: {x: 300, y: 100}
|
||||
m_MaxSize: {x: 24288, y: 16192}
|
||||
vertical: 1
|
||||
controlID: 72
|
||||
--- !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: 1
|
||||
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Children:
|
||||
- {fileID: 5}
|
||||
- {fileID: 7}
|
||||
- {fileID: 10}
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1499
|
||||
height: 568
|
||||
m_MinSize: {x: 300, y: 50}
|
||||
m_MaxSize: {x: 24288, y: 8096}
|
||||
vertical: 0
|
||||
controlID: 49
|
||||
--- !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: 1
|
||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 273
|
||||
height: 568
|
||||
m_MinSize: {x: 201, y: 221}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
m_ActualView: {fileID: 6}
|
||||
m_Panes:
|
||||
- {fileID: 6}
|
||||
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: 1
|
||||
m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: "\u5C42\u7EA7"
|
||||
m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 73
|
||||
width: 272
|
||||
height: 547
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
m_SupportedDataModes:
|
||||
isAutomatic: 1
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
m_SaveData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_SceneHierarchy:
|
||||
m_TreeViewState:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs: 22000100
|
||||
m_LastClickedID: 65570
|
||||
m_ExpandedIDs: 0023ffffd225ffff5828ffffd628ffff5a29ffffc42dffff7e32fffffa32ffff423effffb448ffffbe50ffffa268ffffc87dffff6281fffff881ffff4a8afffff296ffff4897ffffc899ffffd499ffffdc99fffff099fffffa99ffff24a8ffff50befffff8c3ffff4ec4ffffcec6ffffdcc6ffffe4c6fffff8c6ffff02c7ffff86d3ffff5ce3ffffb4e3ffff34e6ffff42e6ffff4ae6ffff5ee6ffff68e6ffff98f9ffffd6f9ffff2cfbfffff4ffffffe6880000e8880000e28b0000e68b000080c3000082c3000080c60000f0ea000062ee0000b6ee0000ceee00008ef60000caf6000026fb000062fb000044fc000080fc00000a00010046000100
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
m_OriginalName:
|
||||
m_EditFieldRect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 0
|
||||
height: 0
|
||||
m_UserData: 0
|
||||
m_IsWaitingForDelay: 0
|
||||
m_IsRenaming: 0
|
||||
m_OriginalEventType: 11
|
||||
m_IsRenamingFilename: 0
|
||||
m_ClientGUIView: {fileID: 5}
|
||||
m_SearchString:
|
||||
m_ExpandedScenes: []
|
||||
m_CurrenRootInstanceID: 0
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_CurrentSortingName: TransformSorting
|
||||
m_WindowGUID: 4c969a2b90040154d917609493e03593
|
||||
--- !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: SceneView
|
||||
m_EditorClassIdentifier:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 273
|
||||
y: 0
|
||||
width: 421
|
||||
height: 568
|
||||
m_MinSize: {x: 202, y: 221}
|
||||
m_MaxSize: {x: 4002, y: 4021}
|
||||
m_ActualView: {fileID: 8}
|
||||
m_Panes:
|
||||
- {fileID: 8}
|
||||
- {fileID: 9}
|
||||
m_Selected: 0
|
||||
m_LastSelected: 1
|
||||
--- !u!114 &8
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@ -45,10 +246,10 @@ MonoBehaviour:
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 233
|
||||
x: 273
|
||||
y: 73
|
||||
width: 529
|
||||
height: 617
|
||||
width: 419
|
||||
height: 547
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
@ -372,18 +573,18 @@ MonoBehaviour:
|
||||
sizeOverriden: 0
|
||||
m_OverlaysVisible: 1
|
||||
m_WindowGUID: cc27987af1a868c49b0894db9c0f5429
|
||||
m_Gizmos: 0
|
||||
m_Gizmos: 1
|
||||
m_OverrideSceneCullingMask: 6917529027641081856
|
||||
m_SceneIsLit: 1
|
||||
m_SceneLighting: 1
|
||||
m_2DMode: 0
|
||||
m_2DMode: 1
|
||||
m_isRotationLocked: 0
|
||||
m_PlayAudio: 0
|
||||
m_AudioPlay: 0
|
||||
m_Position:
|
||||
m_Target: {x: -0.3540113, y: 25.61407, z: -20.16048}
|
||||
m_Target: {x: 1096.1888, y: 369.45178, z: 21.23398}
|
||||
speed: 2
|
||||
m_Value: {x: -0.3540113, y: 25.61407, z: -20.16048}
|
||||
m_Value: {x: 1096.1888, y: 369.45178, z: 21.23398}
|
||||
m_RenderMode: 0
|
||||
m_CameraMode:
|
||||
drawMode: 0
|
||||
@ -411,17 +612,17 @@ MonoBehaviour:
|
||||
m_Size: {x: 0, y: 0}
|
||||
yGrid:
|
||||
m_Fade:
|
||||
m_Target: 1
|
||||
m_Target: 0
|
||||
speed: 2
|
||||
m_Value: 1
|
||||
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_Target: 0
|
||||
m_Target: 1
|
||||
speed: 2
|
||||
m_Value: 0
|
||||
m_Value: 1
|
||||
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}
|
||||
@ -429,17 +630,17 @@ MonoBehaviour:
|
||||
m_GridAxis: 1
|
||||
m_gridOpacity: 0.5
|
||||
m_Rotation:
|
||||
m_Target: {x: -0.5459354, y: -0.00096003426, z: -0.0002186964, w: -0.83781517}
|
||||
m_Target: {x: 0, y: 0, z: 0, w: 1}
|
||||
speed: 2
|
||||
m_Value: {x: -0.54594064, y: -0.0009600435, z: -0.00021869851, w: -0.8378233}
|
||||
m_Value: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_Size:
|
||||
m_Target: 7.751215
|
||||
m_Target: 1271.4872
|
||||
speed: 2
|
||||
m_Value: 7.751215
|
||||
m_Value: 1271.4872
|
||||
m_Ortho:
|
||||
m_Target: 0
|
||||
m_Target: 1
|
||||
speed: 2
|
||||
m_Value: 0
|
||||
m_Value: 1
|
||||
m_CameraSettings:
|
||||
m_Speed: 1
|
||||
m_SpeedNormalized: 0.5
|
||||
@ -453,181 +654,14 @@ MonoBehaviour:
|
||||
m_FarClip: 10000
|
||||
m_DynamicClip: 1
|
||||
m_OcclusionCulling: 0
|
||||
m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226}
|
||||
m_LastSceneViewRotation: {x: -0.25791118, y: 0.029583512, z: -0.008634044, w: -0.96566683}
|
||||
m_LastSceneViewOrtho: 0
|
||||
m_ReplacementShader: {fileID: 0}
|
||||
m_ReplacementString:
|
||||
m_SceneVisActive: 1
|
||||
m_LastLockedObject: {fileID: 0}
|
||||
m_ViewIsLockedToObject: 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: 1
|
||||
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Children:
|
||||
- {fileID: 4}
|
||||
- {fileID: 11}
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1352
|
||||
height: 939
|
||||
m_MinSize: {x: 300, y: 100}
|
||||
m_MaxSize: {x: 24288, y: 16192}
|
||||
vertical: 1
|
||||
controlID: 38
|
||||
--- !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: 1
|
||||
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Children:
|
||||
- {fileID: 5}
|
||||
- {fileID: 7}
|
||||
- {fileID: 9}
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1352
|
||||
height: 638
|
||||
m_MinSize: {x: 300, y: 50}
|
||||
m_MaxSize: {x: 24288, y: 8096}
|
||||
vertical: 0
|
||||
controlID: 39
|
||||
--- !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: 1
|
||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 233
|
||||
height: 638
|
||||
m_MinSize: {x: 201, y: 221}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
m_ActualView: {fileID: 6}
|
||||
m_Panes:
|
||||
- {fileID: 6}
|
||||
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: 1
|
||||
m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: "\u5C42\u7EA7"
|
||||
m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 73
|
||||
width: 232
|
||||
height: 617
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
m_SupportedDataModes:
|
||||
isAutomatic: 1
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
m_SaveData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_SceneHierarchy:
|
||||
m_TreeViewState:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs:
|
||||
m_LastClickedID: 0
|
||||
m_ExpandedIDs: 20fbffff
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
m_OriginalName:
|
||||
m_EditFieldRect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 0
|
||||
height: 0
|
||||
m_UserData: 0
|
||||
m_IsWaitingForDelay: 0
|
||||
m_IsRenaming: 0
|
||||
m_OriginalEventType: 11
|
||||
m_IsRenamingFilename: 0
|
||||
m_ClientGUIView: {fileID: 5}
|
||||
m_SearchString:
|
||||
m_ExpandedScenes: []
|
||||
m_CurrenRootInstanceID: 0
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_CurrentSortingName: TransformSorting
|
||||
m_WindowGUID: 4c969a2b90040154d917609493e03593
|
||||
--- !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: SceneView
|
||||
m_EditorClassIdentifier:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 233
|
||||
y: 0
|
||||
width: 531
|
||||
height: 638
|
||||
m_MinSize: {x: 202, y: 221}
|
||||
m_MaxSize: {x: 4002, y: 4021}
|
||||
m_ActualView: {fileID: 2}
|
||||
m_Panes:
|
||||
- {fileID: 2}
|
||||
- {fileID: 8}
|
||||
m_Selected: 0
|
||||
m_LastSelected: 1
|
||||
--- !u!114 &8
|
||||
--- !u!114 &9
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@ -661,32 +695,6 @@ MonoBehaviour:
|
||||
m_LastAppliedPresetName: Default
|
||||
m_SaveData: []
|
||||
m_OverlaysVisible: 1
|
||||
--- !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: 0
|
||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name: GameView
|
||||
m_EditorClassIdentifier:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 764
|
||||
y: 0
|
||||
width: 588
|
||||
height: 638
|
||||
m_MinSize: {x: 102, y: 121}
|
||||
m_MaxSize: {x: 4002, y: 4021}
|
||||
m_ActualView: {fileID: 10}
|
||||
m_Panes:
|
||||
- {fileID: 10}
|
||||
m_Selected: 0
|
||||
m_LastSelected: 0
|
||||
--- !u!114 &10
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@ -696,21 +704,47 @@ MonoBehaviour:
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name: SimulatorWindow
|
||||
m_EditorClassIdentifier:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 694
|
||||
y: 0
|
||||
width: 805
|
||||
height: 568
|
||||
m_MinSize: {x: 202, y: 221}
|
||||
m_MaxSize: {x: 4002, y: 4021}
|
||||
m_ActualView: {fileID: 11}
|
||||
m_Panes:
|
||||
- {fileID: 11}
|
||||
m_Selected: 0
|
||||
m_LastSelected: 0
|
||||
--- !u!114 &11
|
||||
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: 13974, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_MinSize: {x: 100, y: 100}
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: "\u6E38\u620F"
|
||||
m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Text: "\u6A21\u62DF\u5668"
|
||||
m_Image: {fileID: 8720083202187608617, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 764
|
||||
x: 694
|
||||
y: 73
|
||||
width: 586
|
||||
height: 617
|
||||
width: 803
|
||||
height: 547
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
@ -722,72 +756,38 @@ MonoBehaviour:
|
||||
m_SaveData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_SerializedViewNames:
|
||||
- UnityEditor.DeviceSimulation.SimulatorWindow
|
||||
- UnityEditor.GameView
|
||||
m_SerializedViewValues:
|
||||
- D:\Jisol\JisolGame\JNFrame\Library\PlayModeViewStates\8e0847e4bb946f1459608d64c6392b87
|
||||
m_PlayModeViewName: GameView
|
||||
- D:\myproject\JisolGame\JNFrame\Library\PlayModeViewStates\260d3179cf4b30c4e9339973da698e56
|
||||
m_PlayModeViewName: Device Simulator
|
||||
m_ShowGizmos: 0
|
||||
m_TargetDisplay: 0
|
||||
m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_TargetSize: {x: 586, y: 596}
|
||||
m_ClearColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
m_TargetSize: {x: 2532, y: 1170}
|
||||
m_TextureFilterMode: 0
|
||||
m_TextureHideFlags: 61
|
||||
m_RenderIMGUI: 1
|
||||
m_EnterPlayModeBehavior: 2
|
||||
m_UseMipMap: 0
|
||||
m_VSyncEnabled: 0
|
||||
m_Gizmos: 0
|
||||
m_Stats: 0
|
||||
m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
m_ZoomArea:
|
||||
m_HRangeLocked: 0
|
||||
m_VRangeLocked: 0
|
||||
hZoomLockedByDefault: 0
|
||||
vZoomLockedByDefault: 0
|
||||
m_HBaseRangeMin: -293
|
||||
m_HBaseRangeMax: 293
|
||||
m_VBaseRangeMin: -298
|
||||
m_VBaseRangeMax: 298
|
||||
m_HAllowExceedBaseRangeMin: 1
|
||||
m_HAllowExceedBaseRangeMax: 1
|
||||
m_VAllowExceedBaseRangeMin: 1
|
||||
m_VAllowExceedBaseRangeMax: 1
|
||||
m_ScaleWithWindow: 0
|
||||
m_HSlider: 0
|
||||
m_VSlider: 0
|
||||
m_IgnoreScrollWheelUntilClicked: 0
|
||||
m_EnableMouseInput: 1
|
||||
m_EnableSliderZoomHorizontal: 0
|
||||
m_EnableSliderZoomVertical: 0
|
||||
m_UniformScale: 1
|
||||
m_UpDirection: 1
|
||||
m_DrawArea:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 21
|
||||
width: 586
|
||||
height: 596
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Translation: {x: 293, y: 298}
|
||||
m_MarginLeft: 0
|
||||
m_MarginRight: 0
|
||||
m_MarginTop: 0
|
||||
m_MarginBottom: 0
|
||||
m_LastShownAreaInsideMargins:
|
||||
serializedVersion: 2
|
||||
x: -293
|
||||
y: -298
|
||||
width: 586
|
||||
height: 596
|
||||
m_MinimalGUI: 1
|
||||
m_defaultScale: 1
|
||||
m_LastWindowPixelSize: {x: 586, y: 617}
|
||||
m_ClearInEditMode: 1
|
||||
m_NoCameraWarning: 1
|
||||
m_LowResolutionForAspectRatios: 01000001000000000000
|
||||
m_XRRenderMode: 0
|
||||
m_RenderTexture: {fileID: 0}
|
||||
--- !u!114 &11
|
||||
m_SimulatorState:
|
||||
controlPanelVisible: 0
|
||||
controlPanelWidth: 0
|
||||
controlPanelFoldoutKeys:
|
||||
- UnityEditor.DeviceSimulation.ApplicationSettingsPlugin
|
||||
controlPanelFoldoutValues: 00
|
||||
pluginNames:
|
||||
- UnityEditor.DeviceSimulation.ApplicationSettingsPlugin
|
||||
pluginStates:
|
||||
- '{}'
|
||||
scale: 30
|
||||
fitToScreenEnabled: 1
|
||||
rotationDegree: 270
|
||||
highlightSafeAreaEnabled: 0
|
||||
friendlyName: Apple iPhone 12
|
||||
screenIndex: 0
|
||||
networkReachability: 1
|
||||
systemLanguage: 10
|
||||
--- !u!114 &12
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@ -797,24 +797,24 @@ MonoBehaviour:
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 1
|
||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name: ProjectBrowser
|
||||
m_Name: ConsoleWindow
|
||||
m_EditorClassIdentifier:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 638
|
||||
width: 1352
|
||||
height: 301
|
||||
m_MinSize: {x: 231, y: 271}
|
||||
m_MaxSize: {x: 10001, y: 10021}
|
||||
m_ActualView: {fileID: 12}
|
||||
y: 568
|
||||
width: 1499
|
||||
height: 371
|
||||
m_MinSize: {x: 101, y: 121}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
m_ActualView: {fileID: 2}
|
||||
m_Panes:
|
||||
- {fileID: 12}
|
||||
- {fileID: 13}
|
||||
m_Selected: 0
|
||||
m_LastSelected: 1
|
||||
--- !u!114 &12
|
||||
- {fileID: 2}
|
||||
m_Selected: 1
|
||||
m_LastSelected: 0
|
||||
--- !u!114 &13
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@ -835,9 +835,9 @@ MonoBehaviour:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 711
|
||||
width: 1351
|
||||
height: 280
|
||||
y: 641
|
||||
width: 1498
|
||||
height: 350
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
@ -859,7 +859,7 @@ MonoBehaviour:
|
||||
m_SkipHidden: 0
|
||||
m_SearchArea: 1
|
||||
m_Folders:
|
||||
- Assets/Game/Plugins/Unity-Logs-Viewer
|
||||
- Assets/Game/Scenes
|
||||
m_Globs: []
|
||||
m_OriginalText:
|
||||
m_ImportLogFlags: 0
|
||||
@ -867,16 +867,16 @@ MonoBehaviour:
|
||||
m_ViewMode: 1
|
||||
m_StartGridSize: 96
|
||||
m_LastFolders:
|
||||
- Assets/Unity-Logs-Viewer
|
||||
- Assets/Game/Scenes
|
||||
m_LastFoldersGridSize: 96
|
||||
m_LastProjectPath: D:\myproject\JisolGame\JNFrame
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_FolderTreeState:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs: d6700000
|
||||
m_LastClickedID: 28886
|
||||
m_ExpandedIDs: 00000000a4700000a6700000a8700000aa700000ac700000ae700000b0700000b2700000b4700000b670000000ca9a3bffffff7f
|
||||
scrollPos: {x: 0, y: 648}
|
||||
m_SelectedIDs: 08710000
|
||||
m_LastClickedID: 28936
|
||||
m_ExpandedIDs: 00000000027100000471000006710000087100000a7100000c7100000e71000010710000127100001471000016710000187100001a7100001c7100001e71000022710000767100009a71000000ca9a3bffffff7f
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@ -892,7 +892,7 @@ MonoBehaviour:
|
||||
m_IsRenaming: 0
|
||||
m_OriginalEventType: 11
|
||||
m_IsRenamingFilename: 1
|
||||
m_ClientGUIView: {fileID: 11}
|
||||
m_ClientGUIView: {fileID: 12}
|
||||
m_SearchString:
|
||||
m_CreateAssetUtility:
|
||||
m_EndAction: {fileID: 0}
|
||||
@ -904,7 +904,7 @@ MonoBehaviour:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs:
|
||||
m_LastClickedID: 0
|
||||
m_ExpandedIDs: 00000000a4700000a6700000a8700000aa700000ac700000ae700000b0700000b2700000b4700000b6700000
|
||||
m_ExpandedIDs: 00000000027100000471000006710000087100000a7100000c7100000e71000010710000127100001471000016710000187100001a7100001c7100001e7100002071000022710000
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@ -929,8 +929,8 @@ MonoBehaviour:
|
||||
m_Icon: {fileID: 0}
|
||||
m_ResourceFile:
|
||||
m_ListAreaState:
|
||||
m_SelectedInstanceIDs:
|
||||
m_LastClickedInstanceID: 0
|
||||
m_SelectedInstanceIDs: 22000100
|
||||
m_LastClickedInstanceID: 65570
|
||||
m_HadKeyboardFocusLastEvent: 1
|
||||
m_ExpandedInstanceIDs: c623000000000000
|
||||
m_RenameOverlay:
|
||||
@ -948,7 +948,7 @@ MonoBehaviour:
|
||||
m_IsRenaming: 0
|
||||
m_OriginalEventType: 11
|
||||
m_IsRenamingFilename: 1
|
||||
m_ClientGUIView: {fileID: 11}
|
||||
m_ClientGUIView: {fileID: 12}
|
||||
m_CreateAssetUtility:
|
||||
m_EndAction: {fileID: 0}
|
||||
m_InstanceID: 0
|
||||
@ -959,41 +959,7 @@ MonoBehaviour:
|
||||
m_ScrollPosition: {x: 0, y: 0}
|
||||
m_GridSize: 96
|
||||
m_SkipHiddenPackages: 0
|
||||
m_DirectoriesAreaWidth: 412
|
||||
--- !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: 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: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 711
|
||||
width: 1351
|
||||
height: 280
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
m_SupportedDataModes:
|
||||
isAutomatic: 1
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
m_SaveData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_DirectoriesAreaWidth: 295
|
||||
--- !u!114 &14
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@ -1009,12 +975,12 @@ MonoBehaviour:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 1352
|
||||
x: 1499
|
||||
y: 0
|
||||
width: 568
|
||||
width: 421
|
||||
height: 939
|
||||
m_MinSize: {x: 276, y: 71}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
m_MinSize: {x: 275, y: 50}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_ActualView: {fileID: 15}
|
||||
m_Panes:
|
||||
- {fileID: 15}
|
||||
@ -1040,9 +1006,9 @@ MonoBehaviour:
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 1352
|
||||
x: 1499
|
||||
y: 73
|
||||
width: 567
|
||||
width: 420
|
||||
height: 918
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
@ -1061,7 +1027,7 @@ MonoBehaviour:
|
||||
m_ControlHash: -371814159
|
||||
m_PrefName: Preview_InspectorPreview
|
||||
m_LastInspectedObjectInstanceID: -1
|
||||
m_LastVerticalScrollValue: 0
|
||||
m_LastVerticalScrollValue: 64
|
||||
m_GlobalObjectId:
|
||||
m_InspectorMode: 0
|
||||
m_LockTracker:
|
||||
|
@ -19,7 +19,7 @@ MonoBehaviour:
|
||||
width: 1920
|
||||
height: 989
|
||||
m_ShowMode: 4
|
||||
m_Title: "\u63A7\u5236\u53F0"
|
||||
m_Title: "\u68C0\u67E5\u5668"
|
||||
m_RootView: {fileID: 2}
|
||||
m_MinSize: {x: 875, y: 300}
|
||||
m_MaxSize: {x: 10000, y: 10000}
|
||||
@ -119,7 +119,7 @@ MonoBehaviour:
|
||||
m_MinSize: {x: 400, y: 100}
|
||||
m_MaxSize: {x: 32384, y: 16192}
|
||||
vertical: 0
|
||||
controlID: 143
|
||||
controlID: 14254
|
||||
--- !u!114 &6
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@ -139,12 +139,12 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1352
|
||||
width: 1499
|
||||
height: 939
|
||||
m_MinSize: {x: 300, y: 100}
|
||||
m_MaxSize: {x: 24288, y: 16192}
|
||||
vertical: 1
|
||||
controlID: 77
|
||||
controlID: 14218
|
||||
--- !u!114 &7
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@ -165,12 +165,12 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1352
|
||||
height: 485
|
||||
width: 1499
|
||||
height: 568
|
||||
m_MinSize: {x: 300, y: 50}
|
||||
m_MaxSize: {x: 24288, y: 8096}
|
||||
vertical: 0
|
||||
controlID: 44
|
||||
controlID: 14213
|
||||
--- !u!114 &8
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@ -188,10 +188,10 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 233
|
||||
height: 485
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
width: 273
|
||||
height: 568
|
||||
m_MinSize: {x: 201, y: 221}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
m_ActualView: {fileID: 14}
|
||||
m_Panes:
|
||||
- {fileID: 14}
|
||||
@ -212,16 +212,16 @@ MonoBehaviour:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 233
|
||||
x: 273
|
||||
y: 0
|
||||
width: 443
|
||||
height: 485
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_ActualView: {fileID: 13}
|
||||
width: 435
|
||||
height: 568
|
||||
m_MinSize: {x: 202, y: 221}
|
||||
m_MaxSize: {x: 4002, y: 4021}
|
||||
m_ActualView: {fileID: 15}
|
||||
m_Panes:
|
||||
- {fileID: 13}
|
||||
- {fileID: 15}
|
||||
- {fileID: 16}
|
||||
m_Selected: 0
|
||||
m_LastSelected: 1
|
||||
--- !u!114 &10
|
||||
@ -234,20 +234,20 @@ MonoBehaviour:
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name: GameView
|
||||
m_Name: SimulatorWindow
|
||||
m_EditorClassIdentifier:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 676
|
||||
x: 708
|
||||
y: 0
|
||||
width: 676
|
||||
height: 485
|
||||
m_MinSize: {x: 100, y: 100}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_ActualView: {fileID: 16}
|
||||
width: 791
|
||||
height: 568
|
||||
m_MinSize: {x: 202, y: 221}
|
||||
m_MaxSize: {x: 4002, y: 4021}
|
||||
m_ActualView: {fileID: 17}
|
||||
m_Panes:
|
||||
- {fileID: 16}
|
||||
- {fileID: 17}
|
||||
m_Selected: 0
|
||||
m_LastSelected: 0
|
||||
--- !u!114 &11
|
||||
@ -266,15 +266,15 @@ MonoBehaviour:
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 485
|
||||
width: 1352
|
||||
height: 454
|
||||
y: 568
|
||||
width: 1499
|
||||
height: 371
|
||||
m_MinSize: {x: 101, y: 121}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
m_ActualView: {fileID: 18}
|
||||
m_ActualView: {fileID: 13}
|
||||
m_Panes:
|
||||
- {fileID: 17}
|
||||
- {fileID: 18}
|
||||
- {fileID: 13}
|
||||
m_Selected: 1
|
||||
m_LastSelected: 0
|
||||
--- !u!114 &12
|
||||
@ -292,9 +292,9 @@ MonoBehaviour:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 1352
|
||||
x: 1499
|
||||
y: 0
|
||||
width: 568
|
||||
width: 421
|
||||
height: 939
|
||||
m_MinSize: {x: 275, y: 50}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
@ -304,6 +304,103 @@ MonoBehaviour:
|
||||
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: 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: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 641
|
||||
width: 1498
|
||||
height: 350
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
m_SupportedDataModes:
|
||||
isAutomatic: 1
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
m_SaveData: []
|
||||
m_OverlaysVisible: 1
|
||||
--- !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: 1
|
||||
m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: "\u5C42\u7EA7"
|
||||
m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 73
|
||||
width: 272
|
||||
height: 547
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
m_SupportedDataModes:
|
||||
isAutomatic: 1
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
m_SaveData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_SceneHierarchy:
|
||||
m_TreeViewState:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs:
|
||||
m_LastClickedID: 0
|
||||
m_ExpandedIDs: b64afdffa45ffdffccadfefff6aefefff0d9feff2cf5feffaaf5feff160afffffa16ffffe018ffff481dffff0023ffffd225ffff5828ffffd628ffff5a29ffffc42dffff7e32fffffa32ffff423effffb448ffffbe50ffffa268ffffc87dffff6281fffff881ffff4a8afffff296ffff4897ffffc899ffffd499ffffdc99fffff099fffffa99ffff24a8ffff50befffff8c3ffff4ec4ffffcec6ffffdcc6ffffe4c6fffff8c6ffff02c7ffff86d3ffff5ce3ffffb4e3ffff34e6ffff42e6ffff4ae6ffff5ee6ffff68e6ffff98f9ffffd6f9ffff2cfbfffff4ffffffe6880000e8880000e28b0000e68b000080c3000082c3000080c60000f0ea000062ee0000b6ee0000ceee00008ef60000caf6000026fb000062fb000044fc000080fc00000a0001004600010072010100ae0101003a050100760501009c0d0100e2110100e4110100d8140100dc140100a0ff0100ec020200
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
m_OriginalName:
|
||||
m_EditFieldRect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 0
|
||||
height: 0
|
||||
m_UserData: 0
|
||||
m_IsWaitingForDelay: 0
|
||||
m_IsRenaming: 0
|
||||
m_OriginalEventType: 11
|
||||
m_IsRenamingFilename: 0
|
||||
m_ClientGUIView: {fileID: 8}
|
||||
m_SearchString:
|
||||
m_ExpandedScenes: []
|
||||
m_CurrenRootInstanceID: 0
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_CurrentSortingName: TransformSorting
|
||||
m_WindowGUID: 4c969a2b90040154d917609493e03593
|
||||
--- !u!114 &15
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@ -323,10 +420,10 @@ MonoBehaviour:
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 233
|
||||
x: 273
|
||||
y: 73
|
||||
width: 441
|
||||
height: 464
|
||||
width: 433
|
||||
height: 547
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
@ -659,9 +756,9 @@ MonoBehaviour:
|
||||
m_PlayAudio: 0
|
||||
m_AudioPlay: 0
|
||||
m_Position:
|
||||
m_Target: {x: 16.278067, y: -492.84607, z: 313.05194}
|
||||
m_Target: {x: -6.5657153, y: 14.235892, z: 11.881908}
|
||||
speed: 2
|
||||
m_Value: {x: 16.278067, y: -492.84607, z: 313.05194}
|
||||
m_Value: {x: -6.5657153, y: 14.235892, z: 11.881908}
|
||||
m_RenderMode: 0
|
||||
m_CameraMode:
|
||||
drawMode: 0
|
||||
@ -707,13 +804,13 @@ MonoBehaviour:
|
||||
m_GridAxis: 1
|
||||
m_gridOpacity: 0.5
|
||||
m_Rotation:
|
||||
m_Target: {x: -0.4759187, y: -0.039173987, z: 0.020418623, w: -0.8783681}
|
||||
m_Target: {x: -0.14456968, y: -0.84889036, z: 0.41453534, w: -0.29434055}
|
||||
speed: 2
|
||||
m_Value: {x: -0.47592333, y: -0.039174367, z: 0.020418823, w: -0.8783766}
|
||||
m_Value: {x: -0.14457032, y: -0.8488942, z: 0.4145372, w: -0.29434186}
|
||||
m_Size:
|
||||
m_Target: 363.35245
|
||||
m_Target: 21.011448
|
||||
speed: 2
|
||||
m_Value: 363.35245
|
||||
m_Value: 21.011448
|
||||
m_Ortho:
|
||||
m_Target: 0
|
||||
speed: 2
|
||||
@ -731,77 +828,14 @@ MonoBehaviour:
|
||||
m_FarClip: 10000
|
||||
m_DynamicClip: 1
|
||||
m_OcclusionCulling: 0
|
||||
m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226}
|
||||
m_LastSceneViewRotation: {x: -0.5459354, y: -0.00096003426, z: -0.0002186964, w: -0.83781517}
|
||||
m_LastSceneViewOrtho: 0
|
||||
m_ReplacementShader: {fileID: 0}
|
||||
m_ReplacementString:
|
||||
m_SceneVisActive: 1
|
||||
m_LastLockedObject: {fileID: 0}
|
||||
m_ViewIsLockedToObject: 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: 1
|
||||
m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: "\u5C42\u7EA7"
|
||||
m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 73
|
||||
width: 232
|
||||
height: 464
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
m_SupportedDataModes:
|
||||
isAutomatic: 1
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
m_SaveData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_SceneHierarchy:
|
||||
m_TreeViewState:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs: e6b30000
|
||||
m_LastClickedID: 46054
|
||||
m_ExpandedIDs: 3ec1ffffaac7ffff58f4ffffe2f7ffffb2f8ffff2cfbffff5a7d000054b00000
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
m_OriginalName:
|
||||
m_EditFieldRect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 0
|
||||
height: 0
|
||||
m_UserData: 0
|
||||
m_IsWaitingForDelay: 0
|
||||
m_IsRenaming: 0
|
||||
m_OriginalEventType: 11
|
||||
m_IsRenamingFilename: 0
|
||||
m_ClientGUIView: {fileID: 8}
|
||||
m_SearchString:
|
||||
m_ExpandedScenes: []
|
||||
m_CurrenRootInstanceID: 0
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_CurrentSortingName: TransformSorting
|
||||
m_WindowGUID: 4c969a2b90040154d917609493e03593
|
||||
--- !u!114 &15
|
||||
--- !u!114 &16
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@ -821,10 +855,10 @@ MonoBehaviour:
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 233
|
||||
x: 273
|
||||
y: 73
|
||||
width: 529
|
||||
height: 617
|
||||
width: 433
|
||||
height: 547
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
@ -835,7 +869,7 @@ MonoBehaviour:
|
||||
m_LastAppliedPresetName: Default
|
||||
m_SaveData: []
|
||||
m_OverlaysVisible: 1
|
||||
--- !u!114 &16
|
||||
--- !u!114 &17
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@ -844,21 +878,21 @@ MonoBehaviour:
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Script: {fileID: 13974, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_MinSize: {x: 100, y: 100}
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: "\u6E38\u620F"
|
||||
m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Text: "\u6A21\u62DF\u5668"
|
||||
m_Image: {fileID: 8720083202187608617, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 676
|
||||
x: 708
|
||||
y: 73
|
||||
width: 674
|
||||
height: 464
|
||||
width: 789
|
||||
height: 547
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
@ -870,72 +904,38 @@ MonoBehaviour:
|
||||
m_SaveData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_SerializedViewNames:
|
||||
- UnityEditor.DeviceSimulation.SimulatorWindow
|
||||
- UnityEditor.GameView
|
||||
m_SerializedViewValues:
|
||||
- D:\Jisol\JisolGame\JNFrame\Library\PlayModeViewStates\8e0847e4bb946f1459608d64c6392b87
|
||||
m_PlayModeViewName: GameView
|
||||
- D:\myproject\JisolGame\JNFrame\Library\PlayModeViewStates\260d3179cf4b30c4e9339973da698e56
|
||||
m_PlayModeViewName: Device Simulator
|
||||
m_ShowGizmos: 0
|
||||
m_TargetDisplay: 0
|
||||
m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_TargetSize: {x: 674, y: 443}
|
||||
m_ClearColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
m_TargetSize: {x: 2532, y: 1170}
|
||||
m_TextureFilterMode: 0
|
||||
m_TextureHideFlags: 61
|
||||
m_RenderIMGUI: 1
|
||||
m_EnterPlayModeBehavior: 2
|
||||
m_UseMipMap: 0
|
||||
m_VSyncEnabled: 0
|
||||
m_Gizmos: 0
|
||||
m_Stats: 0
|
||||
m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
m_ZoomArea:
|
||||
m_HRangeLocked: 0
|
||||
m_VRangeLocked: 0
|
||||
hZoomLockedByDefault: 0
|
||||
vZoomLockedByDefault: 0
|
||||
m_HBaseRangeMin: -337
|
||||
m_HBaseRangeMax: 337
|
||||
m_VBaseRangeMin: -221.5
|
||||
m_VBaseRangeMax: 221.5
|
||||
m_HAllowExceedBaseRangeMin: 1
|
||||
m_HAllowExceedBaseRangeMax: 1
|
||||
m_VAllowExceedBaseRangeMin: 1
|
||||
m_VAllowExceedBaseRangeMax: 1
|
||||
m_ScaleWithWindow: 0
|
||||
m_HSlider: 0
|
||||
m_VSlider: 0
|
||||
m_IgnoreScrollWheelUntilClicked: 0
|
||||
m_EnableMouseInput: 1
|
||||
m_EnableSliderZoomHorizontal: 0
|
||||
m_EnableSliderZoomVertical: 0
|
||||
m_UniformScale: 1
|
||||
m_UpDirection: 1
|
||||
m_DrawArea:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 21
|
||||
width: 674
|
||||
height: 443
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Translation: {x: 337, y: 221.5}
|
||||
m_MarginLeft: 0
|
||||
m_MarginRight: 0
|
||||
m_MarginTop: 0
|
||||
m_MarginBottom: 0
|
||||
m_LastShownAreaInsideMargins:
|
||||
serializedVersion: 2
|
||||
x: -337
|
||||
y: -221.5
|
||||
width: 674
|
||||
height: 443
|
||||
m_MinimalGUI: 1
|
||||
m_defaultScale: 1
|
||||
m_LastWindowPixelSize: {x: 674, y: 464}
|
||||
m_ClearInEditMode: 1
|
||||
m_NoCameraWarning: 1
|
||||
m_LowResolutionForAspectRatios: 01000001000000000000
|
||||
m_XRRenderMode: 0
|
||||
m_RenderTexture: {fileID: 0}
|
||||
--- !u!114 &17
|
||||
m_SimulatorState:
|
||||
controlPanelVisible: 0
|
||||
controlPanelWidth: 0
|
||||
controlPanelFoldoutKeys:
|
||||
- UnityEditor.DeviceSimulation.ApplicationSettingsPlugin
|
||||
controlPanelFoldoutValues: 00
|
||||
pluginNames:
|
||||
- UnityEditor.DeviceSimulation.ApplicationSettingsPlugin
|
||||
pluginStates:
|
||||
- '{}'
|
||||
scale: 29
|
||||
fitToScreenEnabled: 1
|
||||
rotationDegree: 270
|
||||
highlightSafeAreaEnabled: 0
|
||||
friendlyName: Apple iPhone 12
|
||||
screenIndex: 0
|
||||
networkReachability: 1
|
||||
systemLanguage: 10
|
||||
--- !u!114 &18
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
@ -956,9 +956,9 @@ MonoBehaviour:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 558
|
||||
width: 1351
|
||||
height: 433
|
||||
y: 641
|
||||
width: 1498
|
||||
height: 350
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
@ -994,10 +994,10 @@ MonoBehaviour:
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_FolderTreeState:
|
||||
scrollPos: {x: 0, y: 840}
|
||||
m_SelectedIDs: 3c750000
|
||||
m_LastClickedID: 30012
|
||||
m_ExpandedIDs: 0000000036750000387500003a7500003c7500003e75000040750000427500004475000046750000487500004a7500004c7500004e7500005075000052750000547500005675000000ca9a3bffffff7f
|
||||
scrollPos: {x: 0, y: 648}
|
||||
m_SelectedIDs: 08710000
|
||||
m_LastClickedID: 28936
|
||||
m_ExpandedIDs: 00000000027100000471000006710000087100000a7100000c7100000e71000010710000127100001471000016710000187100001a7100001c7100001e71000022710000767100009a71000000ca9a3bffffff7f
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@ -1025,7 +1025,7 @@ MonoBehaviour:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs:
|
||||
m_LastClickedID: 0
|
||||
m_ExpandedIDs: 0000000036750000387500003a7500003c7500003e75000040750000427500004475000046750000487500004a7500004c7500004e75000050750000527500005475000056750000
|
||||
m_ExpandedIDs: 00000000027100000471000006710000087100000a7100000c7100000e71000010710000127100001471000016710000187100001a7100001c7100001e710000227100007671000000ca9a3bffffff7f
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@ -1050,8 +1050,8 @@ MonoBehaviour:
|
||||
m_Icon: {fileID: 0}
|
||||
m_ResourceFile:
|
||||
m_ListAreaState:
|
||||
m_SelectedInstanceIDs: e6b30000
|
||||
m_LastClickedInstanceID: 46054
|
||||
m_SelectedInstanceIDs: c4710000
|
||||
m_LastClickedInstanceID: 29124
|
||||
m_HadKeyboardFocusLastEvent: 1
|
||||
m_ExpandedInstanceIDs: c623000000000000
|
||||
m_RenameOverlay:
|
||||
@ -1080,41 +1080,7 @@ MonoBehaviour:
|
||||
m_ScrollPosition: {x: 0, y: 0}
|
||||
m_GridSize: 96
|
||||
m_SkipHiddenPackages: 0
|
||||
m_DirectoriesAreaWidth: 412
|
||||
--- !u!114 &18
|
||||
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: 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: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 558
|
||||
width: 1351
|
||||
height: 433
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
m_PreferredDataMode: 0
|
||||
m_SupportedDataModes:
|
||||
isAutomatic: 1
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
m_SaveData: []
|
||||
m_OverlaysVisible: 1
|
||||
m_DirectoriesAreaWidth: 295
|
||||
--- !u!114 &19
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@ -1135,9 +1101,9 @@ MonoBehaviour:
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 1352
|
||||
x: 1499
|
||||
y: 73
|
||||
width: 567
|
||||
width: 420
|
||||
height: 918
|
||||
m_SerializedDataModeController:
|
||||
m_DataMode: 0
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user