조아혜

0614: add cameraMoving.cs and step comparing function

Showing 864 changed files with 461 additions and 946 deletions
1 +using System.Collections;
2 +using System.Collections.Generic;
3 +using UnityEngine;
4 +using UnityEngine.UI;
5 +using UnityEngine.EventSystems;
6 +using Windows.Kinect;
7 +using System;
8 +using System.IO;
9 +
10 +public class cameraMoving : MonoBehaviour
11 +{
12 + private KinectSensor _Sensor;
13 + private BodyFrameReader _Reader;
14 + private Body[] _Data = null;
15 +
16 + public Text stepText;
17 +
18 + public Body[] GetData()
19 + {
20 + return _Data;
21 + }
22 +
23 + int step = 0;
24 + float speed = 2f;
25 +
26 + KinectManager manager;
27 +
28 + /*
29 + Windows.Kinect.KinectSensor sensor;
30 + KinectManager manager;
31 + Windows.Kinect.Body body;
32 + Windows.Kinect.BodyIndexFrameArrivedEventArgs e;
33 + Windows.Kinect.BodyFrameReader bodyFrameReader;
34 +
35 + Vector3 moveToPosition;
36 + float speed = 2f;
37 + bool started = false;
38 +
39 +
40 + BodyIndexFrameReader bodyIndexFrameReader = null;
41 + FrameDescription bodyIndexFrameDescription = null;
42 + //byte[] bodyIndexBuffer = null;
43 + */
44 + // Start is called before the first frame update
45 + void Start()
46 + {
47 + _Sensor = KinectSensor.GetDefault();
48 +
49 + if (_Sensor != null)
50 + {
51 + _Reader = _Sensor.BodyFrameSource.OpenReader();
52 +
53 + if (!_Sensor.IsOpen)
54 + {
55 + _Sensor.Open();
56 + Debug.Log(_Sensor.IsOpen);
57 +
58 + }
59 + }
60 +
61 +
62 + //Debug.Log(_Sensor.IsAvailable);
63 +
64 + /*
65 + sensor = Windows.Kinect.KinectSensor.GetDefault();
66 + sensor.Open();
67 + //bodyIndexFrameDescription = sensor.BodyIndexFrameSource.FrameDescription;
68 + bodyIndexFrameReader = sensor.BodyIndexFrameSource.OpenReader();
69 + bodyFrameReader = sensor.BodyFrameSource.OpenReader();
70 +
71 + Debug.Log(sensor.IsOpen);
72 + Debug.Log(sensor.IsAvailable);
73 + Debug.Log(e);
74 + Debug.Log(bodyIndexFrameReader);
75 + var bodyIndexFrame = e.FrameReference.AcquireFrame();
76 + bodyIndexFrame.CopyFrameDataToArray(bodyIndexBuffer);
77 + for (int i = 0; i < bodyIndexBuffer.Length; i++)
78 + {
79 + var index = bodyIndexBuffer[i];
80 + if (index != 255) {}
81 + }
82 + //bodyIndexFrameReader.FrameArrived += bodyIndexBuffer;
83 + //bodyIndexFrameReader.FrameArrived += KinectManager.BodyIndexFrameReader_FrameArrived(sensor, e);
84 + //var bodyIndexFrame =
85 + //bodyFrameReader = sensor.BodyFrameSource.OpenReader();
86 + //sensor.Open();
87 + //bodyFrameReader.FrameArrived += Reader_FrameArrived;
88 + //body = Windows.Kinect.BodyFrameSource;
89 + moveToPosition = new Vector3(0, 2, 0);
90 + Debug.Log("started");
91 + //Debug.Log(body);
92 + started = true;
93 + */
94 + }
95 +
96 + // Update is called once per frame
97 + void Update()
98 + {
99 + if (_Reader != null)
100 + {
101 + var frame = _Reader.AcquireLatestFrame();
102 + if (frame != null)
103 + {
104 + //Debug.Log("frame");
105 +
106 + if (_Data == null)
107 + {
108 + //Debug.Log("data");
109 +
110 + _Data = new Body[_Sensor.BodyFrameSource.BodyCount];
111 + Debug.Log("2");
112 +
113 + transform.Translate(Vector3.forward * Time.deltaTime * speed);
114 + //Debug.Log("3");
115 +
116 + //Camera.main.transform.position = Vector3.Lerp(transform.position, moveToPosition, speed);
117 + //transform.position = Vector3.Lerp(transform.position, moveToPosition, speed);
118 + step = manager.UpdateKinect(_Data);
119 + Debug.Log(step);
120 +
121 + stepText.text = "Step: " + step;
122 +
123 + }
124 +
125 + frame.GetAndRefreshBodyData(_Data);
126 +
127 +
128 + frame.Dispose();
129 + frame = null;
130 + }
131 + }
132 +
133 + }
134 +}
135 +
136 +public class KinectManager
137 +{
138 + int step_num = 0;
139 +
140 + //var bodyIndexFrame =
141 +
142 + public int UpdateKinect(Windows.Kinect.Body[] bodies)
143 + {
144 + //Debug.Log("1");
145 + var body = bodies[0];
146 + var joints = body.Joints;
147 + //Debug.Log("2");
148 +
149 + //if (body == null || !body.IsTracked) return 0;
150 +
151 + JointType left_knee = (Windows.Kinect.JointType)13;
152 + JointType right_knee = (Windows.Kinect.JointType)17;
153 + //Debug.Log("3");
154 +
155 + var left_knee_position = joints[left_knee].Position;
156 + var right_knee_position = joints[right_knee].Position;
157 + //Debug.Log("4");
158 + //Walking
159 + if (right_knee_position.X < left_knee_position.X && right_knee_position.Y < left_knee_position.Y)
160 + {
161 + Debug.Log(string.Format("{0} STEP", step_num.ToString()));
162 + //Console.WriteLine(string.Format("{0} STEP", step_num.ToString()));
163 + step_num++;
164 + }
165 + else if (right_knee_position.X > left_knee_position.X && right_knee_position.Y > left_knee_position.Y)
166 + {
167 + Debug.Log(string.Format("{0} STEP", step_num.ToString()));
168 + //Console.WriteLine(string.Format("{0} STEP", step_num.ToString()));
169 + step_num++;
170 + }
171 + else
172 + {
173 + Debug.Log("not walking");
174 + //Console.WriteLine("not walking");
175 + }
176 + return step_num;
177 + }
178 +
179 +}
...@@ -13,12 +13,13 @@ public class GaugeIncreasing : MonoBehaviour ...@@ -13,12 +13,13 @@ public class GaugeIncreasing : MonoBehaviour
13 GameObject clue; 13 GameObject clue;
14 GameObject panel; 14 GameObject panel;
15 GameObject apple; 15 GameObject apple;
16 + GameObject step;
17 + Text stepText;
18 + int beforeStep;
19 + int afterStep;
16 20
17 Color color; 21 Color color;
18 - //Text textBlink;
19 22
20 - float timeSpan;
21 - float checkTime;
22 23
23 // Start is called before the first frame update 24 // Start is called before the first frame update
24 void Start() 25 void Start()
...@@ -30,9 +31,11 @@ public class GaugeIncreasing : MonoBehaviour ...@@ -30,9 +31,11 @@ public class GaugeIncreasing : MonoBehaviour
30 panel = GameObject.Find("Panel"); 31 panel = GameObject.Find("Panel");
31 apple = GameObject.Find("SweetPepper"); 32 apple = GameObject.Find("SweetPepper");
32 cheerUp = GameObject.Find("CheerUp"); 33 cheerUp = GameObject.Find("CheerUp");
34 + step = GameObject.Find("Step");
35 + stepText = step.GetComponent<Text>();
36 + beforeStep = int.Parse(stepText.text);
37 +
33 color = new Color(255f, 0, 0); 38 color = new Color(255f, 0, 0);
34 - timeSpan = 0.0f;
35 - checkTime = 0.1667f;
36 39
37 afterText.SetActive(false); 40 afterText.SetActive(false);
38 panel.SetActive(false); 41 panel.SetActive(false);
...@@ -44,6 +47,7 @@ public class GaugeIncreasing : MonoBehaviour ...@@ -44,6 +47,7 @@ public class GaugeIncreasing : MonoBehaviour
44 // Update is called once per frame 47 // Update is called once per frame
45 void Update() 48 void Update()
46 { 49 {
50 +
47 if (gauge.value >= 0.5f && gauge.value < 1) 51 if (gauge.value >= 0.5f && gauge.value < 1)
48 cheerUp.SetActive(true); 52 cheerUp.SetActive(true);
49 else if (gauge.value >= 1) 53 else if (gauge.value >= 1)
...@@ -64,13 +68,14 @@ public class GaugeIncreasing : MonoBehaviour ...@@ -64,13 +68,14 @@ public class GaugeIncreasing : MonoBehaviour
64 } 68 }
65 } 69 }
66 70
67 - timeSpan += Time.deltaTime; 71 + afterStep = int.Parse(stepText.text);
68 - if (timeSpan > checkTime) 72 +
73 + if (beforeStep != afterStep)
69 { 74 {
70 gauge.value += 0.01f; 75 gauge.value += 0.01f;
71 apple.transform.localScale += new Vector3(0.05f, 0.05f, 0.05f); 76 apple.transform.localScale += new Vector3(0.05f, 0.05f, 0.05f);
72 - 77 +
73 - timeSpan = 0; 78 + beforeStep = afterStep;
74 } 79 }
75 80
76 } 81 }
......
...@@ -11115,6 +11115,7 @@ RectTransform: ...@@ -11115,6 +11115,7 @@ RectTransform:
11115 - {fileID: 266829199} 11115 - {fileID: 266829199}
11116 - {fileID: 1925813590} 11116 - {fileID: 1925813590}
11117 - {fileID: 258223669} 11117 - {fileID: 258223669}
11118 + - {fileID: 1350118847}
11118 m_Father: {fileID: 0} 11119 m_Father: {fileID: 0}
11119 m_RootOrder: 33 11120 m_RootOrder: 33
11120 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 11121 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
...@@ -12067,6 +12068,85 @@ Transform: ...@@ -12067,6 +12068,85 @@ Transform:
12067 m_CorrespondingSourceObject: {fileID: 4208458315195486, guid: c96016c34e7be62488e588470988ef5b, type: 3} 12068 m_CorrespondingSourceObject: {fileID: 4208458315195486, guid: c96016c34e7be62488e588470988ef5b, type: 3}
12068 m_PrefabInstance: {fileID: 1345181705} 12069 m_PrefabInstance: {fileID: 1345181705}
12069 m_PrefabAsset: {fileID: 0} 12070 m_PrefabAsset: {fileID: 0}
12071 +--- !u!1 &1350118846
12072 +GameObject:
12073 + m_ObjectHideFlags: 0
12074 + m_CorrespondingSourceObject: {fileID: 0}
12075 + m_PrefabInstance: {fileID: 0}
12076 + m_PrefabAsset: {fileID: 0}
12077 + serializedVersion: 6
12078 + m_Component:
12079 + - component: {fileID: 1350118847}
12080 + - component: {fileID: 1350118849}
12081 + - component: {fileID: 1350118848}
12082 + m_Layer: 5
12083 + m_Name: Step
12084 + m_TagString: Untagged
12085 + m_Icon: {fileID: 0}
12086 + m_NavMeshLayer: 0
12087 + m_StaticEditorFlags: 0
12088 + m_IsActive: 1
12089 +--- !u!224 &1350118847
12090 +RectTransform:
12091 + m_ObjectHideFlags: 0
12092 + m_CorrespondingSourceObject: {fileID: 0}
12093 + m_PrefabInstance: {fileID: 0}
12094 + m_PrefabAsset: {fileID: 0}
12095 + m_GameObject: {fileID: 1350118846}
12096 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
12097 + m_LocalPosition: {x: 0, y: 0, z: 0}
12098 + m_LocalScale: {x: 1, y: 1, z: 1}
12099 + m_Children: []
12100 + m_Father: {fileID: 1213300144}
12101 + m_RootOrder: 5
12102 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
12103 + m_AnchorMin: {x: 0.5, y: 0.5}
12104 + m_AnchorMax: {x: 0.5, y: 0.5}
12105 + m_AnchoredPosition: {x: 49.8, y: -92.9}
12106 + m_SizeDelta: {x: 160, y: 30}
12107 + m_Pivot: {x: 0.5, y: 0.5}
12108 +--- !u!114 &1350118848
12109 +MonoBehaviour:
12110 + m_ObjectHideFlags: 0
12111 + m_CorrespondingSourceObject: {fileID: 0}
12112 + m_PrefabInstance: {fileID: 0}
12113 + m_PrefabAsset: {fileID: 0}
12114 + m_GameObject: {fileID: 1350118846}
12115 + m_Enabled: 1
12116 + m_EditorHideFlags: 0
12117 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
12118 + m_Name:
12119 + m_EditorClassIdentifier:
12120 + m_Material: {fileID: 0}
12121 + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
12122 + m_RaycastTarget: 1
12123 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
12124 + m_Maskable: 1
12125 + m_OnCullStateChanged:
12126 + m_PersistentCalls:
12127 + m_Calls: []
12128 + m_FontData:
12129 + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
12130 + m_FontSize: 14
12131 + m_FontStyle: 0
12132 + m_BestFit: 0
12133 + m_MinSize: 10
12134 + m_MaxSize: 40
12135 + m_Alignment: 0
12136 + m_AlignByGeometry: 0
12137 + m_RichText: 1
12138 + m_HorizontalOverflow: 0
12139 + m_VerticalOverflow: 0
12140 + m_LineSpacing: 1
12141 + m_Text: 'Step: 0'
12142 +--- !u!222 &1350118849
12143 +CanvasRenderer:
12144 + m_ObjectHideFlags: 0
12145 + m_CorrespondingSourceObject: {fileID: 0}
12146 + m_PrefabInstance: {fileID: 0}
12147 + m_PrefabAsset: {fileID: 0}
12148 + m_GameObject: {fileID: 1350118846}
12149 + m_CullTransparentMesh: 1
12070 --- !u!1001 &1350335654 12150 --- !u!1001 &1350335654
12071 PrefabInstance: 12151 PrefabInstance:
12072 m_ObjectHideFlags: 0 12152 m_ObjectHideFlags: 0
......
...@@ -8,22 +8,22 @@ MonoBehaviour: ...@@ -8,22 +8,22 @@ MonoBehaviour:
8 m_PrefabAsset: {fileID: 0} 8 m_PrefabAsset: {fileID: 0}
9 m_GameObject: {fileID: 0} 9 m_GameObject: {fileID: 0}
10 m_Enabled: 1 10 m_Enabled: 1
11 - m_EditorHideFlags: 1 11 + m_EditorHideFlags: 0
12 m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0} 12 m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0}
13 m_Name: 13 m_Name:
14 m_EditorClassIdentifier: 14 m_EditorClassIdentifier:
15 m_PixelRect: 15 m_PixelRect:
16 serializedVersion: 2 16 serializedVersion: 2
17 - x: 0 17 + x: 7.2000003
18 - y: 42.666668 18 + y: 50.4
19 - width: 1280 19 + width: 1521.6
20 - height: 637.3334 20 + height: 637.60004
21 m_ShowMode: 4 21 m_ShowMode: 4
22 m_Title: Scene 22 m_Title: Scene
23 m_RootView: {fileID: 6} 23 m_RootView: {fileID: 6}
24 - m_MinSize: {x: 875, y: 321} 24 + m_MinSize: {x: 875, y: 300}
25 m_MaxSize: {x: 10000, y: 10000} 25 m_MaxSize: {x: 10000, y: 10000}
26 - m_Maximized: 1 26 + m_Maximized: 0
27 --- !u!114 &2 27 --- !u!114 &2
28 MonoBehaviour: 28 MonoBehaviour:
29 m_ObjectHideFlags: 52 29 m_ObjectHideFlags: 52
...@@ -41,17 +41,16 @@ MonoBehaviour: ...@@ -41,17 +41,16 @@ MonoBehaviour:
41 serializedVersion: 2 41 serializedVersion: 2
42 x: 0 42 x: 0
43 y: 0 43 y: 0
44 - width: 644 44 + width: 662.4
45 - height: 587.3334 45 + height: 587.6
46 m_MinSize: {x: 202, y: 221} 46 m_MinSize: {x: 202, y: 221}
47 m_MaxSize: {x: 4002, y: 4021} 47 m_MaxSize: {x: 4002, y: 4021}
48 m_ActualView: {fileID: 14} 48 m_ActualView: {fileID: 14}
49 m_Panes: 49 m_Panes:
50 - {fileID: 14} 50 - {fileID: 14}
51 - {fileID: 15} 51 - {fileID: 15}
52 - - {fileID: 10}
53 m_Selected: 0 52 m_Selected: 0
54 - m_LastSelected: 2 53 + m_LastSelected: 1
55 --- !u!114 &3 54 --- !u!114 &3
56 MonoBehaviour: 55 MonoBehaviour:
57 m_ObjectHideFlags: 52 56 m_ObjectHideFlags: 52
...@@ -72,12 +71,12 @@ MonoBehaviour: ...@@ -72,12 +71,12 @@ MonoBehaviour:
72 serializedVersion: 2 71 serializedVersion: 2
73 x: 0 72 x: 0
74 y: 30 73 y: 30
75 - width: 1280 74 + width: 1521.6
76 - height: 587.3334 75 + height: 587.6
77 - m_MinSize: {x: 679, y: 221} 76 + m_MinSize: {x: 504, y: 221}
78 m_MaxSize: {x: 12004, y: 4021} 77 m_MaxSize: {x: 12004, y: 4021}
79 vertical: 0 78 vertical: 0
80 - controlID: 26 79 + controlID: 244
81 --- !u!114 &4 80 --- !u!114 &4
82 MonoBehaviour: 81 MonoBehaviour:
83 m_ObjectHideFlags: 52 82 m_ObjectHideFlags: 52
...@@ -88,24 +87,24 @@ MonoBehaviour: ...@@ -88,24 +87,24 @@ MonoBehaviour:
88 m_Enabled: 1 87 m_Enabled: 1
89 m_EditorHideFlags: 1 88 m_EditorHideFlags: 1
90 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} 89 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
91 - m_Name: InspectorWindow 90 + m_Name: ConsoleWindow
92 m_EditorClassIdentifier: 91 m_EditorClassIdentifier:
93 m_Children: [] 92 m_Children: []
94 m_Position: 93 m_Position:
95 serializedVersion: 2 94 serializedVersion: 2
96 - x: 938 95 + x: 1012
97 y: 0 96 y: 0
98 - width: 342 97 + width: 509.59998
99 - height: 587.3334 98 + height: 587.6
100 - m_MinSize: {x: 276, y: 71} 99 + m_MinSize: {x: 101, y: 121}
101 m_MaxSize: {x: 4001, y: 4021} 100 m_MaxSize: {x: 4001, y: 4021}
102 - m_ActualView: {fileID: 12} 101 + m_ActualView: {fileID: 16}
103 m_Panes: 102 m_Panes:
104 - {fileID: 12} 103 - {fileID: 12}
105 - {fileID: 11} 104 - {fileID: 11}
106 - {fileID: 16} 105 - {fileID: 16}
107 - m_Selected: 0 106 + m_Selected: 2
108 - m_LastSelected: 1 107 + m_LastSelected: 0
109 --- !u!114 &5 108 --- !u!114 &5
110 MonoBehaviour: 109 MonoBehaviour:
111 m_ObjectHideFlags: 52 110 m_ObjectHideFlags: 52
...@@ -123,8 +122,8 @@ MonoBehaviour: ...@@ -123,8 +122,8 @@ MonoBehaviour:
123 serializedVersion: 2 122 serializedVersion: 2
124 x: 0 123 x: 0
125 y: 0 124 y: 0
126 - width: 294 125 + width: 349.6
127 - height: 587.3334 126 + height: 587.6
128 m_MinSize: {x: 201, y: 221} 127 m_MinSize: {x: 201, y: 221}
129 m_MaxSize: {x: 4001, y: 4021} 128 m_MaxSize: {x: 4001, y: 4021}
130 m_ActualView: {fileID: 13} 129 m_ActualView: {fileID: 13}
...@@ -152,8 +151,8 @@ MonoBehaviour: ...@@ -152,8 +151,8 @@ MonoBehaviour:
152 serializedVersion: 2 151 serializedVersion: 2
153 x: 0 152 x: 0
154 y: 0 153 y: 0
155 - width: 1280 154 + width: 1521.6
156 - height: 637.3334 155 + height: 637.6
157 m_MinSize: {x: 875, y: 300} 156 m_MinSize: {x: 875, y: 300}
158 m_MaxSize: {x: 10000, y: 10000} 157 m_MaxSize: {x: 10000, y: 10000}
159 m_UseTopView: 1 158 m_UseTopView: 1
...@@ -177,7 +176,7 @@ MonoBehaviour: ...@@ -177,7 +176,7 @@ MonoBehaviour:
177 serializedVersion: 2 176 serializedVersion: 2
178 x: 0 177 x: 0
179 y: 0 178 y: 0
180 - width: 1280 179 + width: 1521.6
181 height: 30 180 height: 30
182 m_MinSize: {x: 0, y: 0} 181 m_MinSize: {x: 0, y: 0}
183 m_MaxSize: {x: 0, y: 0} 182 m_MaxSize: {x: 0, y: 0}
...@@ -201,8 +200,8 @@ MonoBehaviour: ...@@ -201,8 +200,8 @@ MonoBehaviour:
201 m_Position: 200 m_Position:
202 serializedVersion: 2 201 serializedVersion: 2
203 x: 0 202 x: 0
204 - y: 617.3334 203 + y: 617.6
205 - width: 1280 204 + width: 1521.6
206 height: 20 205 height: 20
207 m_MinSize: {x: 0, y: 0} 206 m_MinSize: {x: 0, y: 0}
208 m_MaxSize: {x: 0, y: 0} 207 m_MaxSize: {x: 0, y: 0}
...@@ -222,14 +221,14 @@ MonoBehaviour: ...@@ -222,14 +221,14 @@ MonoBehaviour:
222 - {fileID: 2} 221 - {fileID: 2}
223 m_Position: 222 m_Position:
224 serializedVersion: 2 223 serializedVersion: 2
225 - x: 294 224 + x: 349.6
226 y: 0 225 y: 0
227 - width: 644 226 + width: 662.4
228 - height: 587.3334 227 + height: 587.6
229 m_MinSize: {x: 202, y: 221} 228 m_MinSize: {x: 202, y: 221}
230 m_MaxSize: {x: 4002, y: 4021} 229 m_MaxSize: {x: 4002, y: 4021}
231 vertical: 0 230 vertical: 0
232 - controlID: 27 231 + controlID: 194
233 --- !u!114 &10 232 --- !u!114 &10
234 MonoBehaviour: 233 MonoBehaviour:
235 m_ObjectHideFlags: 52 234 m_ObjectHideFlags: 52
...@@ -273,14 +272,14 @@ MonoBehaviour: ...@@ -273,14 +272,14 @@ MonoBehaviour:
273 m_MaxSize: {x: 10000, y: 10000} 272 m_MaxSize: {x: 10000, y: 10000}
274 m_TitleContent: 273 m_TitleContent:
275 m_Text: Project 274 m_Text: Project
276 - m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0} 275 + m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0}
277 m_Tooltip: 276 m_Tooltip:
278 m_Pos: 277 m_Pos:
279 serializedVersion: 2 278 serializedVersion: 2
280 - x: 938 279 + x: 1126.4
281 - y: 72.66667 280 + y: 73.6
282 - width: 341 281 + width: 409
283 - height: 566.3334 282 + height: 710
284 m_ViewDataDictionary: {fileID: 0} 283 m_ViewDataDictionary: {fileID: 0}
285 m_SearchFilter: 284 m_SearchFilter:
286 m_NameFilter: 285 m_NameFilter:
...@@ -295,22 +294,22 @@ MonoBehaviour: ...@@ -295,22 +294,22 @@ MonoBehaviour:
295 m_SkipHidden: 0 294 m_SkipHidden: 0
296 m_SearchArea: 1 295 m_SearchArea: 1
297 m_Folders: 296 m_Folders:
298 - - Assets/TopDown 2D RPG BE3/Sprites 297 + - Assets/RPGPP_LT/Scene
299 m_Globs: [] 298 m_Globs: []
300 m_OriginalText: 299 m_OriginalText:
301 m_ViewMode: 1 300 m_ViewMode: 1
302 m_StartGridSize: 64 301 m_StartGridSize: 64
303 m_LastFolders: 302 m_LastFolders:
304 - - Assets/TopDown 2D RPG BE3/Sprites 303 + - Assets/RPGPP_LT/Scene
305 m_LastFoldersGridSize: -1 304 m_LastFoldersGridSize: -1
306 - m_LastProjectPath: "C:\\Users\\CHUNG EUN SEO\\Desktop\\\uCEA1\uC2A4\uD1A4\uB514\uC790\uC778\\JSH_Project1\\src\\unity\\creating-map" 305 + m_LastProjectPath: C:\Users\ahhye\Desktop\Programming\2021-1_Capstone_Design1\JSH_Project1\src\unity\creating-map
307 m_LockTracker: 306 m_LockTracker:
308 m_IsLocked: 0 307 m_IsLocked: 0
309 m_FolderTreeState: 308 m_FolderTreeState:
310 - scrollPos: {x: 0, y: 273.66663} 309 + scrollPos: {x: 0, y: 469.554}
311 - m_SelectedIDs: 64550000 310 + m_SelectedIDs: 0e8e0000
312 - m_LastClickedID: 21860 311 + m_LastClickedID: 36366
313 - m_ExpandedIDs: 00000000843b0000863b0000883b00008a3b00008c3b00008e3b0000903b0000923b0000943b0000963b0000983b00009a3b00009c3b00009e3b0000a03b0000a23b0000a43b0000a63b0000a83b0000aa3b0000ac3b0000ae3b0000b03b0000b23b0000b43b00005c5500006055000062550000fa68000000ca9a3b 312 + m_ExpandedIDs: 00000000443a000000ca9a3b
314 m_RenameOverlay: 313 m_RenameOverlay:
315 m_UserAcceptedRename: 0 314 m_UserAcceptedRename: 0
316 m_Name: 315 m_Name:
...@@ -338,7 +337,7 @@ MonoBehaviour: ...@@ -338,7 +337,7 @@ MonoBehaviour:
338 scrollPos: {x: 0, y: 0} 337 scrollPos: {x: 0, y: 0}
339 m_SelectedIDs: 338 m_SelectedIDs:
340 m_LastClickedID: 0 339 m_LastClickedID: 0
341 - m_ExpandedIDs: 00000000843b0000863b0000883b00008a3b00008c3b00008e3b0000903b0000923b0000943b0000963b0000983b00009a3b00009c3b00009e3b0000a03b0000a23b0000a43b0000a63b0000a83b0000aa3b0000ac3b0000ae3b0000b03b0000b23b0000b43b0000 340 + m_ExpandedIDs: 00000000443a000000ca9a3b
342 m_RenameOverlay: 341 m_RenameOverlay:
343 m_UserAcceptedRename: 0 342 m_UserAcceptedRename: 0
344 m_Name: 343 m_Name:
...@@ -363,8 +362,8 @@ MonoBehaviour: ...@@ -363,8 +362,8 @@ MonoBehaviour:
363 m_Icon: {fileID: 0} 362 m_Icon: {fileID: 0}
364 m_ResourceFile: 363 m_ResourceFile:
365 m_ListAreaState: 364 m_ListAreaState:
366 - m_SelectedInstanceIDs: 8a960000 365 + m_SelectedInstanceIDs: aaa7ffff
367 - m_LastClickedInstanceID: 38538 366 + m_LastClickedInstanceID: -22614
368 m_HadKeyboardFocusLastEvent: 1 367 m_HadKeyboardFocusLastEvent: 1
369 m_ExpandedInstanceIDs: c623000000000000c83b000094550000 368 m_ExpandedInstanceIDs: c623000000000000c83b000094550000
370 m_RenameOverlay: 369 m_RenameOverlay:
...@@ -393,7 +392,7 @@ MonoBehaviour: ...@@ -393,7 +392,7 @@ MonoBehaviour:
393 m_ScrollPosition: {x: 0, y: 0} 392 m_ScrollPosition: {x: 0, y: 0}
394 m_GridSize: 64 393 m_GridSize: 64
395 m_SkipHiddenPackages: 0 394 m_SkipHiddenPackages: 0
396 - m_DirectoriesAreaWidth: 113.333374 395 + m_DirectoriesAreaWidth: 185.33337
397 --- !u!114 &12 396 --- !u!114 &12
398 MonoBehaviour: 397 MonoBehaviour:
399 m_ObjectHideFlags: 52 398 m_ObjectHideFlags: 52
...@@ -410,14 +409,14 @@ MonoBehaviour: ...@@ -410,14 +409,14 @@ MonoBehaviour:
410 m_MaxSize: {x: 4000, y: 4000} 409 m_MaxSize: {x: 4000, y: 4000}
411 m_TitleContent: 410 m_TitleContent:
412 m_Text: Inspector 411 m_Text: Inspector
413 - m_Image: {fileID: -2667387946076563598, guid: 0000000000000000d000000000000000, type: 0} 412 + m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0}
414 m_Tooltip: 413 m_Tooltip:
415 m_Pos: 414 m_Pos:
416 serializedVersion: 2 415 serializedVersion: 2
417 - x: 938 416 + x: 1122.4
418 - y: 72.66667 417 + y: 80.8
419 - width: 341 418 + width: 405.40002
420 - height: 566.3334 419 + height: 566.6
421 m_ViewDataDictionary: {fileID: 0} 420 m_ViewDataDictionary: {fileID: 0}
422 m_ObjectsLockedBeforeSerialization: [] 421 m_ObjectsLockedBeforeSerialization: []
423 m_InstanceIDsLockedBeforeSerialization: 422 m_InstanceIDsLockedBeforeSerialization:
...@@ -447,35 +446,35 @@ MonoBehaviour: ...@@ -447,35 +446,35 @@ MonoBehaviour:
447 m_MaxSize: {x: 4000, y: 4000} 446 m_MaxSize: {x: 4000, y: 4000}
448 m_TitleContent: 447 m_TitleContent:
449 m_Text: Hierarchy 448 m_Text: Hierarchy
450 - m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0} 449 + m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0}
451 m_Tooltip: 450 m_Tooltip:
452 m_Pos: 451 m_Pos:
453 serializedVersion: 2 452 serializedVersion: 2
454 - x: 0 453 + x: 7.2000003
455 - y: 72.66667 454 + y: 80.8
456 - width: 293 455 + width: 348.6
457 - height: 566.3334 456 + height: 566.6
458 m_ViewDataDictionary: {fileID: 0} 457 m_ViewDataDictionary: {fileID: 0}
459 m_SceneHierarchy: 458 m_SceneHierarchy:
460 m_TreeViewState: 459 m_TreeViewState:
461 - scrollPos: {x: 0, y: 1150.6666} 460 + scrollPos: {x: 0, y: 126.400024}
462 - m_SelectedIDs: 408c0000 461 + m_SelectedIDs: 764f0000
463 - m_LastClickedID: 35904 462 + m_LastClickedID: 0
464 - m_ExpandedIDs: 2a72ffff3472ffff3e72ffff4872ffff5272ffff5c72ffffb88affffc68affff8e9dffffc29dffffd29dffffdce3ffffe6e3ffff48efffff52efffff58effffffcf9ffff52fbffff5c4a0000889200001a96000066960000f6960000 463 + m_ExpandedIDs: 6afaffffb44c0000
465 m_RenameOverlay: 464 m_RenameOverlay:
466 m_UserAcceptedRename: 0 465 m_UserAcceptedRename: 0
467 - m_Name: DialogAsset 466 + m_Name:
468 - m_OriginalName: DialogAsset 467 + m_OriginalName:
469 m_EditFieldRect: 468 m_EditFieldRect:
470 serializedVersion: 2 469 serializedVersion: 2
471 x: 0 470 x: 0
472 y: 0 471 y: 0
473 width: 0 472 width: 0
474 height: 0 473 height: 0
475 - m_UserData: -25134 474 + m_UserData: 0
476 m_IsWaitingForDelay: 0 475 m_IsWaitingForDelay: 0
477 m_IsRenaming: 0 476 m_IsRenaming: 0
478 - m_OriginalEventType: 0 477 + m_OriginalEventType: 11
479 m_IsRenamingFilename: 0 478 m_IsRenamingFilename: 0
480 m_ClientGUIView: {fileID: 5} 479 m_ClientGUIView: {fileID: 5}
481 m_SearchString: 480 m_SearchString:
...@@ -501,14 +500,14 @@ MonoBehaviour: ...@@ -501,14 +500,14 @@ MonoBehaviour:
501 m_MaxSize: {x: 4000, y: 4000} 500 m_MaxSize: {x: 4000, y: 4000}
502 m_TitleContent: 501 m_TitleContent:
503 m_Text: Scene 502 m_Text: Scene
504 - m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, type: 0} 503 + m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0}
505 m_Tooltip: 504 m_Tooltip:
506 m_Pos: 505 m_Pos:
507 serializedVersion: 2 506 serializedVersion: 2
508 - x: 294 507 + x: 356.80002
509 - y: 72.66667 508 + y: 80.8
510 - width: 642 509 + width: 660.4
511 - height: 566.3334 510 + height: 566.6
512 m_ViewDataDictionary: {fileID: 0} 511 m_ViewDataDictionary: {fileID: 0}
513 m_ShowContextualTools: 0 512 m_ShowContextualTools: 0
514 m_WindowGUID: cc27987af1a868c49b0894db9c0f5429 513 m_WindowGUID: cc27987af1a868c49b0894db9c0f5429
...@@ -521,9 +520,9 @@ MonoBehaviour: ...@@ -521,9 +520,9 @@ MonoBehaviour:
521 m_PlayAudio: 0 520 m_PlayAudio: 0
522 m_AudioPlay: 0 521 m_AudioPlay: 0
523 m_Position: 522 m_Position:
524 - m_Target: {x: 43.07145, y: 24.590223, z: 23.835794} 523 + m_Target: {x: 341.1892, y: 378.55045, z: -89.38086}
525 speed: 2 524 speed: 2
526 - m_Value: {x: 43.07145, y: 24.590223, z: 23.835794} 525 + m_Value: {x: 341.1892, y: 378.55045, z: -89.38086}
527 m_RenderMode: 0 526 m_RenderMode: 0
528 m_CameraMode: 527 m_CameraMode:
529 drawMode: 0 528 drawMode: 0
...@@ -570,13 +569,13 @@ MonoBehaviour: ...@@ -570,13 +569,13 @@ MonoBehaviour:
570 m_GridAxis: 1 569 m_GridAxis: 1
571 m_gridOpacity: 0.5 570 m_gridOpacity: 0.5
572 m_Rotation: 571 m_Rotation:
573 - m_Target: {x: 0, y: 1, z: 0, w: 0} 572 + m_Target: {x: 0, y: 0, z: 0, w: 1}
574 speed: 2 573 speed: 2
575 - m_Value: {x: 0, y: -0.99999994, z: -0, w: 0} 574 + m_Value: {x: 0, y: 0, z: 0, w: 1}
576 m_Size: 575 m_Size:
577 - m_Target: 19.933702 576 + m_Target: 172.01643
578 speed: 2 577 speed: 2
579 - m_Value: 19.075314 578 + m_Value: 172.01643
580 m_Ortho: 579 m_Ortho:
581 m_Target: 0 580 m_Target: 0
582 speed: 2 581 speed: 2
...@@ -617,14 +616,14 @@ MonoBehaviour: ...@@ -617,14 +616,14 @@ MonoBehaviour:
617 m_MaxSize: {x: 4000, y: 4000} 616 m_MaxSize: {x: 4000, y: 4000}
618 m_TitleContent: 617 m_TitleContent:
619 m_Text: Game 618 m_Text: Game
620 - m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0} 619 + m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0}
621 m_Tooltip: 620 m_Tooltip:
622 m_Pos: 621 m_Pos:
623 serializedVersion: 2 622 serializedVersion: 2
624 - x: 294 623 + x: 352.80002
625 - y: 72.66667 624 + y: 73.6
626 - width: 642 625 + width: 771
627 - height: 566.3334 626 + height: 710
628 m_ViewDataDictionary: {fileID: 0} 627 m_ViewDataDictionary: {fileID: 0}
629 m_SerializedViewNames: [] 628 m_SerializedViewNames: []
630 m_SerializedViewValues: [] 629 m_SerializedViewValues: []
...@@ -632,7 +631,7 @@ MonoBehaviour: ...@@ -632,7 +631,7 @@ MonoBehaviour:
632 m_ShowGizmos: 0 631 m_ShowGizmos: 0
633 m_TargetDisplay: 0 632 m_TargetDisplay: 0
634 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} 633 m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
635 - m_TargetSize: {x: 642, y: 545.3334} 634 + m_TargetSize: {x: 771, y: 689}
636 m_TextureFilterMode: 0 635 m_TextureFilterMode: 0
637 m_TextureHideFlags: 61 636 m_TextureHideFlags: 61
638 m_RenderIMGUI: 1 637 m_RenderIMGUI: 1
...@@ -647,19 +646,19 @@ MonoBehaviour: ...@@ -647,19 +646,19 @@ MonoBehaviour:
647 m_VRangeLocked: 0 646 m_VRangeLocked: 0
648 hZoomLockedByDefault: 0 647 hZoomLockedByDefault: 0
649 vZoomLockedByDefault: 0 648 vZoomLockedByDefault: 0
650 - m_HBaseRangeMin: -214 649 + m_HBaseRangeMin: -308.4
651 - m_HBaseRangeMax: 214 650 + m_HBaseRangeMax: 308.4
652 - m_VBaseRangeMin: -181.7778 651 + m_VBaseRangeMin: -275.6
653 - m_VBaseRangeMax: 181.7778 652 + m_VBaseRangeMax: 275.6
654 m_HAllowExceedBaseRangeMin: 1 653 m_HAllowExceedBaseRangeMin: 1
655 m_HAllowExceedBaseRangeMax: 1 654 m_HAllowExceedBaseRangeMax: 1
656 m_VAllowExceedBaseRangeMin: 1 655 m_VAllowExceedBaseRangeMin: 1
657 m_VAllowExceedBaseRangeMax: 1 656 m_VAllowExceedBaseRangeMax: 1
658 m_ScaleWithWindow: 0 657 m_ScaleWithWindow: 0
659 - m_HSlider: 1 658 + m_HSlider: 0
660 - m_VSlider: 1 659 + m_VSlider: 0
661 m_IgnoreScrollWheelUntilClicked: 0 660 m_IgnoreScrollWheelUntilClicked: 0
662 - m_EnableMouseInput: 1 661 + m_EnableMouseInput: 0
663 m_EnableSliderZoomHorizontal: 0 662 m_EnableSliderZoomHorizontal: 0
664 m_EnableSliderZoomVertical: 0 663 m_EnableSliderZoomVertical: 0
665 m_UniformScale: 1 664 m_UniformScale: 1
...@@ -668,23 +667,23 @@ MonoBehaviour: ...@@ -668,23 +667,23 @@ MonoBehaviour:
668 serializedVersion: 2 667 serializedVersion: 2
669 x: 0 668 x: 0
670 y: 21 669 y: 21
671 - width: 642 670 + width: 771
672 - height: 545.3334 671 + height: 689
673 - m_Scale: {x: 1.5561485, y: 1.5561485} 672 + m_Scale: {x: 1.5561485, y: 1.5561484}
674 - m_Translation: {x: 312.6442, y: 268.5901} 673 + m_Translation: {x: 377.1442, y: 340.4234}
675 m_MarginLeft: 0 674 m_MarginLeft: 0
676 m_MarginRight: 0 675 m_MarginRight: 0
677 m_MarginTop: 0 676 m_MarginTop: 0
678 m_MarginBottom: 0 677 m_MarginBottom: 0
679 m_LastShownAreaInsideMargins: 678 m_LastShownAreaInsideMargins:
680 serializedVersion: 2 679 serializedVersion: 2
681 - x: -200.90897 680 + x: -242.35745
682 - y: -172.59926 681 + y: -218.76024
683 - width: 412.557 682 + width: 495.45398
684 - height: 350.43787 683 + height: 442.75983
685 m_MinimalGUI: 1 684 m_MinimalGUI: 1
686 m_defaultScale: 1 685 m_defaultScale: 1
687 - m_LastWindowPixelSize: {x: 963, y: 849.50006} 686 + m_LastWindowPixelSize: {x: 963.75, y: 887.5}
688 m_ClearInEditMode: 1 687 m_ClearInEditMode: 1
689 m_NoCameraWarning: 1 688 m_NoCameraWarning: 1
690 m_LowResolutionForAspectRatios: 01000000000000000000 689 m_LowResolutionForAspectRatios: 01000000000000000000
...@@ -706,14 +705,14 @@ MonoBehaviour: ...@@ -706,14 +705,14 @@ MonoBehaviour:
706 m_MaxSize: {x: 4000, y: 4000} 705 m_MaxSize: {x: 4000, y: 4000}
707 m_TitleContent: 706 m_TitleContent:
708 m_Text: Console 707 m_Text: Console
709 - m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0} 708 + m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, type: 0}
710 m_Tooltip: 709 m_Tooltip:
711 m_Pos: 710 m_Pos:
712 serializedVersion: 2 711 serializedVersion: 2
713 - x: 937.3334 712 + x: 1019.2
714 - y: 72.66667 713 + y: 80.8
715 - width: 341.6667 714 + width: 508.59998
716 - height: 566 715 + height: 566.6
717 m_ViewDataDictionary: {fileID: 0} 716 m_ViewDataDictionary: {fileID: 0}
718 --- !u!114 &17 717 --- !u!114 &17
719 MonoBehaviour: 718 MonoBehaviour:
......
...@@ -3,3 +3,7 @@ sceneSetups: ...@@ -3,3 +3,7 @@ sceneSetups:
3 isLoaded: 1 3 isLoaded: 1
4 isActive: 1 4 isActive: 1
5 isSubScene: 0 5 isSubScene: 0
6 +- path: Assets/RPGPP_LT/Scene/IntervalTraining.unity
7 + isLoaded: 1
8 + isActive: 0
9 + isSubScene: 0
......
1 m_ProjectFiles: 1 m_ProjectFiles:
2 m_ManifestFileStatus: 2 m_ManifestFileStatus:
3 - m_FilePath: "C:/Users/CHUNG EUN SEO/Desktop/\uCEA1\uC2A4\uD1A4\uB514\uC790\uC778/JSH_Project1/src/unity/creating-map/Packages/manifest.json" 3 + m_FilePath: C:/Users/ahhye/Desktop/Programming/2021-1_Capstone_Design1/JSH_Project1/src/unity/creating-map/Packages/manifest.json
4 m_PathExists: 1 4 m_PathExists: 1
5 m_ContentTrackingEnabled: 1 5 m_ContentTrackingEnabled: 1
6 m_ModificationDate: 6 m_ModificationDate:
7 serializedVersion: 2 7 serializedVersion: 2
8 - ticks: 637577099054935712 8 + ticks: 637592264193977574
9 - m_Hash: 800617708 9 + m_Hash: 2825518969
10 m_LockFileStatus: 10 m_LockFileStatus:
11 - m_FilePath: "C:/Users/CHUNG EUN SEO/Desktop/\uCEA1\uC2A4\uD1A4\uB514\uC790\uC778/JSH_Project1/src/unity/creating-map/Packages/packages-lock.json" 11 + m_FilePath: C:/Users/ahhye/Desktop/Programming/2021-1_Capstone_Design1/JSH_Project1/src/unity/creating-map/Packages/packages-lock.json
12 m_PathExists: 1 12 m_PathExists: 1
13 m_ContentTrackingEnabled: 1 13 m_ContentTrackingEnabled: 1
14 m_ModificationDate: 14 m_ModificationDate:
15 serializedVersion: 2 15 serializedVersion: 2
16 - ticks: 637577099082000853 16 + ticks: 637592264193997586
17 - m_Hash: 3849099112 17 + m_Hash: 346107864
18 m_EmbeddedPackageManifests: 18 m_EmbeddedPackageManifests:
19 m_ManifestsStatus: {} 19 m_ManifestsStatus: {}
20 m_PackageAssets: 20 m_PackageAssets:
...@@ -76,7 +76,7 @@ m_PackageAssets: ...@@ -76,7 +76,7 @@ m_PackageAssets:
76 isDirectDependency: 1 76 isDirectDependency: 1
77 version: 1.3.9 77 version: 1.3.9
78 source: 1 78 source: 1
79 - resolvedPath: "C:\\Users\\CHUNG EUN SEO\\Desktop\\\uCEA1\uC2A4\uD1A4\uB514\uC790\uC778\\JSH_Project1\\src\\unity\\creating-map\\Library\\PackageCache\\com.unity.collab-proxy@1.3.9" 79 + resolvedPath: C:\Users\ahhye\Desktop\Programming\2021-1_Capstone_Design1\JSH_Project1\src\unity\creating-map\Library\PackageCache\com.unity.collab-proxy@1.3.9
80 assetPath: Packages/com.unity.collab-proxy 80 assetPath: Packages/com.unity.collab-proxy
81 name: com.unity.collab-proxy 81 name: com.unity.collab-proxy
82 displayName: Unity Collaborate 82 displayName: Unity Collaborate
...@@ -173,7 +173,7 @@ m_PackageAssets: ...@@ -173,7 +173,7 @@ m_PackageAssets:
173 isDirectDependency: 1 173 isDirectDependency: 1
174 version: 2.0.7 174 version: 2.0.7
175 source: 1 175 source: 1
176 - resolvedPath: "C:\\Users\\CHUNG EUN SEO\\Desktop\\\uCEA1\uC2A4\uD1A4\uB514\uC790\uC778\\JSH_Project1\\src\\unity\\creating-map\\Library\\PackageCache\\com.unity.ide.rider@2.0.7" 176 + resolvedPath: C:\Users\ahhye\Desktop\Programming\2021-1_Capstone_Design1\JSH_Project1\src\unity\creating-map\Library\PackageCache\com.unity.ide.rider@2.0.7
177 assetPath: Packages/com.unity.ide.rider 177 assetPath: Packages/com.unity.ide.rider
178 name: com.unity.ide.rider 178 name: com.unity.ide.rider
179 displayName: JetBrains Rider Editor 179 displayName: JetBrains Rider Editor
...@@ -280,7 +280,7 @@ m_PackageAssets: ...@@ -280,7 +280,7 @@ m_PackageAssets:
280 isDirectDependency: 1 280 isDirectDependency: 1
281 version: 2.0.7 281 version: 2.0.7
282 source: 1 282 source: 1
283 - resolvedPath: "C:\\Users\\CHUNG EUN SEO\\Desktop\\\uCEA1\uC2A4\uD1A4\uB514\uC790\uC778\\JSH_Project1\\src\\unity\\creating-map\\Library\\PackageCache\\com.unity.ide.visualstudio@2.0.7" 283 + resolvedPath: C:\Users\ahhye\Desktop\Programming\2021-1_Capstone_Design1\JSH_Project1\src\unity\creating-map\Library\PackageCache\com.unity.ide.visualstudio@2.0.7
284 assetPath: Packages/com.unity.ide.visualstudio 284 assetPath: Packages/com.unity.ide.visualstudio
285 name: com.unity.ide.visualstudio 285 name: com.unity.ide.visualstudio
286 displayName: Visual Studio Editor 286 displayName: Visual Studio Editor
...@@ -363,7 +363,7 @@ m_PackageAssets: ...@@ -363,7 +363,7 @@ m_PackageAssets:
363 isDirectDependency: 1 363 isDirectDependency: 1
364 version: 1.2.3 364 version: 1.2.3
365 source: 1 365 source: 1
366 - resolvedPath: "C:\\Users\\CHUNG EUN SEO\\Desktop\\\uCEA1\uC2A4\uD1A4\uB514\uC790\uC778\\JSH_Project1\\src\\unity\\creating-map\\Library\\PackageCache\\com.unity.ide.vscode@1.2.3" 366 + resolvedPath: C:\Users\ahhye\Desktop\Programming\2021-1_Capstone_Design1\JSH_Project1\src\unity\creating-map\Library\PackageCache\com.unity.ide.vscode@1.2.3
367 assetPath: Packages/com.unity.ide.vscode 367 assetPath: Packages/com.unity.ide.vscode
368 name: com.unity.ide.vscode 368 name: com.unity.ide.vscode
369 displayName: Visual Studio Code Editor 369 displayName: Visual Studio Code Editor
...@@ -432,7 +432,7 @@ m_PackageAssets: ...@@ -432,7 +432,7 @@ m_PackageAssets:
432 isDirectDependency: 1 432 isDirectDependency: 1
433 version: 1.1.24 433 version: 1.1.24
434 source: 1 434 source: 1
435 - resolvedPath: "C:\\Users\\CHUNG EUN SEO\\Desktop\\\uCEA1\uC2A4\uD1A4\uB514\uC790\uC778\\JSH_Project1\\src\\unity\\creating-map\\Library\\PackageCache\\com.unity.test-framework@1.1.24" 435 + resolvedPath: C:\Users\ahhye\Desktop\Programming\2021-1_Capstone_Design1\JSH_Project1\src\unity\creating-map\Library\PackageCache\com.unity.test-framework@1.1.24
436 assetPath: Packages/com.unity.test-framework 436 assetPath: Packages/com.unity.test-framework
437 name: com.unity.test-framework 437 name: com.unity.test-framework
438 displayName: Test Framework 438 displayName: Test Framework
...@@ -522,7 +522,7 @@ m_PackageAssets: ...@@ -522,7 +522,7 @@ m_PackageAssets:
522 isDirectDependency: 1 522 isDirectDependency: 1
523 version: 3.0.4 523 version: 3.0.4
524 source: 1 524 source: 1
525 - resolvedPath: "C:\\Users\\CHUNG EUN SEO\\Desktop\\\uCEA1\uC2A4\uD1A4\uB514\uC790\uC778\\JSH_Project1\\src\\unity\\creating-map\\Library\\PackageCache\\com.unity.textmeshpro@3.0.4" 525 + resolvedPath: C:\Users\ahhye\Desktop\Programming\2021-1_Capstone_Design1\JSH_Project1\src\unity\creating-map\Library\PackageCache\com.unity.textmeshpro@3.0.4
526 assetPath: Packages/com.unity.textmeshpro 526 assetPath: Packages/com.unity.textmeshpro
527 name: com.unity.textmeshpro 527 name: com.unity.textmeshpro
528 displayName: TextMeshPro 528 displayName: TextMeshPro
...@@ -681,7 +681,7 @@ m_PackageAssets: ...@@ -681,7 +681,7 @@ m_PackageAssets:
681 isDirectDependency: 1 681 isDirectDependency: 1
682 version: 1.4.6 682 version: 1.4.6
683 source: 1 683 source: 1
684 - resolvedPath: "C:\\Users\\CHUNG EUN SEO\\Desktop\\\uCEA1\uC2A4\uD1A4\uB514\uC790\uC778\\JSH_Project1\\src\\unity\\creating-map\\Library\\PackageCache\\com.unity.timeline@1.4.6" 684 + resolvedPath: C:\Users\ahhye\Desktop\Programming\2021-1_Capstone_Design1\JSH_Project1\src\unity\creating-map\Library\PackageCache\com.unity.timeline@1.4.6
685 assetPath: Packages/com.unity.timeline 685 assetPath: Packages/com.unity.timeline
686 name: com.unity.timeline 686 name: com.unity.timeline
687 displayName: Timeline 687 displayName: Timeline
...@@ -2634,7 +2634,7 @@ m_PackageAssets: ...@@ -2634,7 +2634,7 @@ m_PackageAssets:
2634 isDirectDependency: 0 2634 isDirectDependency: 0
2635 version: 1.0.6 2635 version: 1.0.6
2636 source: 1 2636 source: 1
2637 - resolvedPath: "C:\\Users\\CHUNG EUN SEO\\Desktop\\\uCEA1\uC2A4\uD1A4\uB514\uC790\uC778\\JSH_Project1\\src\\unity\\creating-map\\Library\\PackageCache\\com.unity.ext.nunit@1.0.6" 2637 + resolvedPath: C:\Users\ahhye\Desktop\Programming\2021-1_Capstone_Design1\JSH_Project1\src\unity\creating-map\Library\PackageCache\com.unity.ext.nunit@1.0.6
2638 assetPath: Packages/com.unity.ext.nunit 2638 assetPath: Packages/com.unity.ext.nunit
2639 name: com.unity.ext.nunit 2639 name: com.unity.ext.nunit
2640 displayName: Custom NUnit 2640 displayName: Custom NUnit
...@@ -2692,5 +2692,5 @@ m_PackageAssets: ...@@ -2692,5 +2692,5 @@ m_PackageAssets:
2692 path: 2692 path:
2693 m_LocalPackages: 2693 m_LocalPackages:
2694 m_LocalFileStatus: [] 2694 m_LocalFileStatus: []
2695 -m_ProjectPath: "C:/Users/CHUNG EUN SEO/Desktop/\uCEA1\uC2A4\uD1A4\uB514\uC790\uC778/JSH_Project1/src/unity/creating-map/Packages" 2695 +m_ProjectPath: C:/Users/ahhye/Desktop/Programming/2021-1_Capstone_Design1/JSH_Project1/src/unity/creating-map/Packages
2696 m_EditorVersion: 2020.3.3f1 (76626098c1c4) 2696 m_EditorVersion: 2020.3.3f1 (76626098c1c4)
......
1 -b2b5895e87d69568ff617e37001154f2
...\ No newline at end of file ...\ No newline at end of file
1 +066c3c9a0103ac4ee4d3037afafd459a
...\ No newline at end of file ...\ No newline at end of file
......
1 -08d8f186a5a6aa00.08d8f186b0613f00
...\ No newline at end of file ...\ No newline at end of file
1 -{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":false,"pivot":{"x":43.071449279785159,"y":24.59022331237793,"z":23.83579444885254},"rotation":{"x":0.0,"y":1.0,"z":0.0,"w":0.0},"size":19.93370246887207,"orthographic":false}
...\ No newline at end of file ...\ No newline at end of file
1 +{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":false,"pivot":{"x":341.189208984375,"y":378.5504455566406,"z":-89.380859375},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":172.0164337158203,"orthographic":false}
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -48,3 +48,64 @@ C# parse time : 229ms ...@@ -48,3 +48,64 @@ C# parse time : 229ms
48 candidates check time : 30ms 48 candidates check time : 30ms
49 console write time : 0ms 49 console write time : 0ms
50 50
51 +[api-updater (non-obsolete-error-filter)] 2021-06-14 AM 11:22:08 : Starting C:/Program Files/Unity/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe
52 +[api-updater (non-obsolete-error-filter)]
53 +----------------------------------
54 +jit/startup time : 397.963ms
55 +moved types parse time: 139ms
56 +candidates parse time : 4ms
57 +C# parse time : 546ms
58 +candidates check time : 113ms
59 +console write time : 2ms
60 +
61 +[api-updater (non-obsolete-error-filter)] 2021-06-14 PM 7:17:00 : Starting C:/Program Files/Unity/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe
62 +[api-updater (non-obsolete-error-filter)] Exception caught while loading types from C:\Users\ahhye\Desktop\Programming\2021-1_Capstone_Design1\JSH_Project1\src\unity\creating-map\Library\ScriptAssemblies\Unity.TextMeshPro.Editor.dll (some types may not be loaded)
63 + Exception of type 'System.Reflection.ReflectionTypeLoadException' was thrown.
64 + at (wrapper managed-to-native) System.Reflection.Assembly.GetTypes(System.Reflection.Assembly,bool)
65 + at System.Reflection.Assembly.GetTypes () [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0
66 + at APIUpdater.NonObsoleteApiUpdaterDetector.ExtraInfoParser+<LoadTypesWithMovedFromAttributeAsync>d__3.MoveNext () [0x000c8] in <68bff7873e0e4aa69a14dfc30bebbe3e>:0
67 + Could not load file or assembly 'UnityEditor.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies.
68 +
69 +[api-updater (non-obsolete-error-filter)]
70 +----------------------------------
71 +jit/startup time : 329.2435ms
72 +moved types parse time: 83ms
73 +candidates parse time : 6ms
74 +C# parse time : 457ms
75 +candidates check time : 72ms
76 +console write time : 2ms
77 +
78 +[api-updater (non-obsolete-error-filter)] 2021-06-14 PM 7:19:12 : Starting C:/Program Files/Unity/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe
79 +[api-updater (non-obsolete-error-filter)] Exception caught while loading types from C:\Users\ahhye\Desktop\Programming\2021-1_Capstone_Design1\JSH_Project1\src\unity\creating-map\Library\ScriptAssemblies\Unity.TextMeshPro.Editor.dll (some types may not be loaded)
80 + Exception of type 'System.Reflection.ReflectionTypeLoadException' was thrown.
81 + at (wrapper managed-to-native) System.Reflection.Assembly.GetTypes(System.Reflection.Assembly,bool)
82 + at System.Reflection.Assembly.GetTypes () [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0
83 + at APIUpdater.NonObsoleteApiUpdaterDetector.ExtraInfoParser+<LoadTypesWithMovedFromAttributeAsync>d__3.MoveNext () [0x000c8] in <68bff7873e0e4aa69a14dfc30bebbe3e>:0
84 + Could not load file or assembly 'UnityEditor.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies.
85 +
86 +[api-updater (non-obsolete-error-filter)]
87 +----------------------------------
88 +jit/startup time : 211.0279ms
89 +moved types parse time: 106ms
90 +candidates parse time : 9ms
91 +C# parse time : 395ms
92 +candidates check time : 51ms
93 +console write time : 0ms
94 +
95 +[api-updater (non-obsolete-error-filter)] 2021-06-14 PM 7:22:00 : Starting C:/Program Files/Unity/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe
96 +[api-updater (non-obsolete-error-filter)] Exception caught while loading types from C:\Users\ahhye\Desktop\Programming\2021-1_Capstone_Design1\JSH_Project1\src\unity\creating-map\Library\ScriptAssemblies\Unity.TextMeshPro.Editor.dll (some types may not be loaded)
97 + Exception of type 'System.Reflection.ReflectionTypeLoadException' was thrown.
98 + at (wrapper managed-to-native) System.Reflection.Assembly.GetTypes(System.Reflection.Assembly,bool)
99 + at System.Reflection.Assembly.GetTypes () [0x00000] in <eae584ce26bc40229c1b1aa476bfa589>:0
100 + at APIUpdater.NonObsoleteApiUpdaterDetector.ExtraInfoParser+<LoadTypesWithMovedFromAttributeAsync>d__3.MoveNext () [0x000c8] in <68bff7873e0e4aa69a14dfc30bebbe3e>:0
101 + Could not load file or assembly 'UnityEditor.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies.
102 +
103 +[api-updater (non-obsolete-error-filter)]
104 +----------------------------------
105 +jit/startup time : 156.2131ms
106 +moved types parse time: 74ms
107 +candidates parse time : 4ms
108 +C# parse time : 517ms
109 +candidates check time : 71ms
110 +console write time : 1ms
111 +
......
1 -Using pre-set license
2 -Built from '2020.3/staging' branch; Version is '2020.3.3f1 (76626098c1c4) revision 7758432'; Using compiler version '192528614'; Build Type 'Release'
3 -OS: 'Windows 10 Home; OS build 19043.962; Version 2009; 64bit' Language: 'ko' Physical Memory: 3929 MB
4 -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
5 -
6 - COMMAND LINE ARGUMENTS:
7 -C:\Program Files\Unity\Editor\Unity.exe
8 --adb2
9 --batchMode
10 --noUpm
11 --name
12 -AssetImportWorker0
13 --projectPath
14 -C:/Users/CHUNG EUN SEO/Desktop/캡스톤디자인/JSH_Project1/src/unity/creating-map
15 --logFile
16 -Logs/AssetImportWorker0.log
17 --srvPort
18 -53260
19 -Successfully changed project path to: C:/Users/CHUNG EUN SEO/Desktop/캡스톤디자인/JSH_Project1/src/unity/creating-map
20 -C:/Users/CHUNG EUN SEO/Desktop/캡스톤디자인/JSH_Project1/src/unity/creating-map
21 -Using Asset Import Pipeline V2.
22 -Refreshing native plugins compatible for Editor in 216.82 ms, found 0 plugins.
23 -Preloading 0 native plugins for Editor in 0.00 ms.
24 -Initialize engine version: 2020.3.3f1 (76626098c1c4)
25 -[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Editor/Data/Resources/UnitySubsystems
26 -[Subsystems] Discovering subsystems at path C:/Users/CHUNG EUN SEO/Desktop/캡스톤디자인/JSH_Project1/src/unity/creating-map/Assets
27 -GfxDevice: creating device client; threaded=0
28 -Direct3D:
29 - Version: Direct3D 11.0 [level 11.1]
30 - Renderer: Intel(R) HD Graphics 620 (ID=0x5916)
31 - Vendor:
32 - VRAM: 1964 MB
33 - Driver: 23.20.16.4849
34 -Initialize mono
35 -Mono path[0] = 'C:/Program Files/Unity/Editor/Data/Managed'
36 -Mono path[1] = 'C:/Program Files/Unity/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
37 -Mono config path = 'C:/Program Files/Unity/Editor/Data/MonoBleedingEdge/etc'
38 -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56416
39 -Begin MonoManager ReloadAssembly
40 -Registering precompiled unity dll's ...
41 -Register platform support module: C:/Program Files/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
42 -Registered in 0.013010 seconds.
43 -Native extension for WindowsStandalone target not found
44 -Refreshing native plugins compatible for Editor in 61.80 ms, found 0 plugins.
45 -Preloading 0 native plugins for Editor in 0.00 ms.
46 -Invoked RoslynAnalysisRunner static constructor.
47 -RoslynAnalysisRunner will not be running.
48 -RoslynAnalysisRunner has terminated.
49 -Mono: successfully reloaded assembly
50 -- Completed reload, in 8.563 seconds
51 -Platform modules already initialized, skipping
52 -Registering precompiled user dll's ...
53 -Registered in 0.004771 seconds.
54 -Begin MonoManager ReloadAssembly
55 -Native extension for WindowsStandalone target not found
56 -Refreshing native plugins compatible for Editor in 0.77 ms, found 0 plugins.
57 -Preloading 0 native plugins for Editor in 0.00 ms.
58 -Invoked RoslynAnalysisRunner static constructor.
59 -RoslynAnalysisRunner will not be running.
60 -RoslynAnalysisRunner has terminated.
61 -Mono: successfully reloaded assembly
62 -- Completed reload, in 1.928 seconds
63 -Platform modules already initialized, skipping
64 -========================================================================
65 -Worker process is ready to serve import requests
66 -Launched and connected shader compiler UnityShaderCompiler.exe after 0.17 seconds
67 -Refreshing native plugins compatible for Editor in 0.54 ms, found 0 plugins.
68 -Preloading 0 native plugins for Editor in 0.00 ms.
69 -Unloading 1122 Unused Serialized files (Serialized files now loaded: 0)
70 -System memory in use before: 59.4 MB.
71 -System memory in use after: 59.4 MB.
72 -
73 -Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 1570.
74 -Total: 3.834900 ms (FindLiveObjects: 0.345800 ms CreateObjectMapping: 0.127000 ms MarkObjects: 3.176200 ms DeleteObjects: 0.183300 ms)
75 -
76 -========================================================================
77 -Received Import Request.
78 - path: Assets/Cattleya/sources/clothingSet_04_And_nackedSet.fbx
79 - artifactKey: Guid(ebaf91e845e67ac4f85b03ca6c72bd32) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
80 -Start importing Assets/Cattleya/sources/clothingSet_04_And_nackedSet.fbx using Guid(ebaf91e845e67ac4f85b03ca6c72bd32) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3a128ca3e79962e3666a2db14f4f946') in 1.652921 seconds
81 - Import took 1.679445 seconds .
82 -
83 -========================================================================
84 -Received Import Request.
85 - Time since last request: 0.001710 seconds.
86 - path: Assets/Cattleya/sources/clothingSet_04.fbx
87 - artifactKey: Guid(8c2451cba12610a4b83716d152a35013) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
88 -Start importing Assets/Cattleya/sources/clothingSet_04.fbx using Guid(8c2451cba12610a4b83716d152a35013) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a972688aa457f5e8d9208a69d480d0fd') in 0.181986 seconds
89 - Import took 0.187196 seconds .
90 -
91 -========================================================================
92 -Received Import Request.
93 - Time since last request: 0.001235 seconds.
94 - path: Assets/Cattleya/sources/nackedSet.fbx
95 - artifactKey: Guid(83559fbceef558949926fe1ed703e4f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
96 -Start importing Assets/Cattleya/sources/nackedSet.fbx using Guid(83559fbceef558949926fe1ed703e4f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec9cf9c907bfa6ca9f1b478a95f7dd8f') in 0.163982 seconds
97 - Import took 0.170907 seconds .
98 -
99 -========================================================================
100 -Received Import Request.
101 - Time since last request: 0.000963 seconds.
102 - path: Assets/Cattleya/sources/Materials/clothingSet_04_tex.mat
103 - artifactKey: Guid(2a7782c65c7520d45be3e8ef87b3b9d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
104 -Start importing Assets/Cattleya/sources/Materials/clothingSet_04_tex.mat using Guid(2a7782c65c7520d45be3e8ef87b3b9d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4441b468e575467c271199a5fcf51f91') in 0.479483 seconds
105 - Import took 0.485823 seconds .
106 -
107 -AssetImportWorkerClient::OnTransportError - code=2 error=End of file
1 -Using pre-set license
2 -Built from '2020.3/staging' branch; Version is '2020.3.3f1 (76626098c1c4) revision 7758432'; Using compiler version '192528614'; Build Type 'Release'
3 -OS: 'Windows 10 Home; OS build 19043.962; Version 2009; 64bit' Language: 'ko' Physical Memory: 3929 MB
4 -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
5 -
6 - COMMAND LINE ARGUMENTS:
7 -C:\Program Files\Unity\Editor\Unity.exe
8 --adb2
9 --batchMode
10 --noUpm
11 --name
12 -AssetImportWorker0
13 --projectPath
14 -C:/Users/CHUNG EUN SEO/Desktop/캡스톤디자인/JSH_Project1/src/unity/creating-map
15 --logFile
16 -Logs/AssetImportWorker0.log
17 --srvPort
18 -53321
19 -Successfully changed project path to: C:/Users/CHUNG EUN SEO/Desktop/캡스톤디자인/JSH_Project1/src/unity/creating-map
20 -C:/Users/CHUNG EUN SEO/Desktop/캡스톤디자인/JSH_Project1/src/unity/creating-map
21 -Using Asset Import Pipeline V2.
22 -Refreshing native plugins compatible for Editor in 117.64 ms, found 0 plugins.
23 -Preloading 0 native plugins for Editor in 0.00 ms.
24 -Initialize engine version: 2020.3.3f1 (76626098c1c4)
25 -[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Editor/Data/Resources/UnitySubsystems
26 -[Subsystems] Discovering subsystems at path C:/Users/CHUNG EUN SEO/Desktop/캡스톤디자인/JSH_Project1/src/unity/creating-map/Assets
27 -GfxDevice: creating device client; threaded=0
28 -Direct3D:
29 - Version: Direct3D 11.0 [level 11.1]
30 - Renderer: Intel(R) HD Graphics 620 (ID=0x5916)
31 - Vendor:
32 - VRAM: 1964 MB
33 - Driver: 23.20.16.4849
34 -Initialize mono
35 -Mono path[0] = 'C:/Program Files/Unity/Editor/Data/Managed'
36 -Mono path[1] = 'C:/Program Files/Unity/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
37 -Mono config path = 'C:/Program Files/Unity/Editor/Data/MonoBleedingEdge/etc'
38 -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56400
39 -Begin MonoManager ReloadAssembly
40 -Registering precompiled unity dll's ...
41 -Register platform support module: C:/Program Files/Unity/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
42 -Registered in 0.013707 seconds.
43 -Native extension for WindowsStandalone target not found
44 -Refreshing native plugins compatible for Editor in 56.30 ms, found 0 plugins.
45 -Preloading 0 native plugins for Editor in 0.00 ms.
46 -Invoked RoslynAnalysisRunner static constructor.
47 -RoslynAnalysisRunner will not be running.
48 -RoslynAnalysisRunner has terminated.
49 -Mono: successfully reloaded assembly
50 -- Completed reload, in 6.460 seconds
51 -Platform modules already initialized, skipping
52 -Registering precompiled user dll's ...
53 -Registered in 0.004211 seconds.
54 -Begin MonoManager ReloadAssembly
55 -Native extension for WindowsStandalone target not found
56 -Refreshing native plugins compatible for Editor in 0.88 ms, found 0 plugins.
57 -Preloading 0 native plugins for Editor in 0.00 ms.
58 -Invoked RoslynAnalysisRunner static constructor.
59 -RoslynAnalysisRunner will not be running.
60 -RoslynAnalysisRunner has terminated.
61 -Mono: successfully reloaded assembly
62 -- Completed reload, in 1.867 seconds
63 -Platform modules already initialized, skipping
64 -========================================================================
65 -Worker process is ready to serve import requests
66 -Launched and connected shader compiler UnityShaderCompiler.exe after 0.17 seconds
67 -Refreshing native plugins compatible for Editor in 0.60 ms, found 0 plugins.
68 -Preloading 0 native plugins for Editor in 0.00 ms.
69 -Unloading 1122 Unused Serialized files (Serialized files now loaded: 0)
70 -System memory in use before: 59.4 MB.
71 -System memory in use after: 59.4 MB.
72 -
73 -Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 1570.
74 -Total: 7.334900 ms (FindLiveObjects: 0.309100 ms CreateObjectMapping: 0.111500 ms MarkObjects: 6.712800 ms DeleteObjects: 0.198500 ms)
75 -
76 -========================================================================
77 -Received Import Request.
78 - path: Assets/RPGPP_LT/Textures/rpgpp_lt_tex_a.tga
79 - artifactKey: Guid(0bb174f69c9851a48b09bf7d8180c39e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
80 -Start importing Assets/RPGPP_LT/Textures/rpgpp_lt_tex_a.tga using Guid(0bb174f69c9851a48b09bf7d8180c39e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2282a885b12784c9e6bf282c702e02f8') in 0.586124 seconds
81 - Import took 0.597747 seconds .
82 -
83 -========================================================================
84 -Received Import Request.
85 - Time since last request: 0.000812 seconds.
86 - path: Assets/RPGPP_LT/Materials/rpgpp_lt_sky_a.mat
87 - artifactKey: Guid(ff33af19770dd3e489f9c65e388009fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
88 -Start importing Assets/RPGPP_LT/Materials/rpgpp_lt_sky_a.mat using Guid(ff33af19770dd3e489f9c65e388009fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'be2800c69bf62f15691dbfd44c8fc3fa') in 1.311534 seconds
89 - Import took 1.319584 seconds .
90 -
91 -========================================================================
92 -Received Import Request.
93 - Time since last request: 0.001074 seconds.
94 - path: Assets/RPGPP_LT/Materials/rpgpp_lt_mat_a.mat
95 - artifactKey: Guid(58d53420af384224ea4cfee8973d18cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
96 -Start importing Assets/RPGPP_LT/Materials/rpgpp_lt_mat_a.mat using Guid(58d53420af384224ea4cfee8973d18cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a49f8c59798e0b3710e60b6a7e8419a8') in 1.903503 seconds
97 - Import took 1.912271 seconds .
98 -
99 -========================================================================
100 -Received Import Request.
101 - Time since last request: 0.000992 seconds.
102 - path: Assets/RPGPP_LT/Textures/rpgpp_lt_sky_a.tga
103 - artifactKey: Guid(5c4fa0e44769f8f46a06d96031e56a4e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
104 -Start importing Assets/RPGPP_LT/Textures/rpgpp_lt_sky_a.tga using Guid(5c4fa0e44769f8f46a06d96031e56a4e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9d7ed9c7f6bc4021e84502ca1f22853') in 0.115832 seconds
105 - Import took 0.192525 seconds .
106 -
107 -========================================================================
108 -Received Import Request.
109 - Time since last request: 0.000971 seconds.
110 - path: Assets/RPGPP_LT/Materials/rpgpp_lt_cloud_a.mat
111 - artifactKey: Guid(434bfd6528d84e643ade0d2cd5c6fe1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
112 -Start importing Assets/RPGPP_LT/Materials/rpgpp_lt_cloud_a.mat using Guid(434bfd6528d84e643ade0d2cd5c6fe1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aec94705d1c859e3b75746cf456bfa7a') in 0.443375 seconds
113 - Import took 0.450991 seconds .
114 -
115 -========================================================================
116 -Received Import Request.
117 - Time since last request: 0.001053 seconds.
118 - path: Assets/RPGPP_LT/Materials/rpgpp_lt_tex_a.mat
119 - artifactKey: Guid(0ee6a137c07caef47bbfed29b2785304) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
120 -Start importing Assets/RPGPP_LT/Materials/rpgpp_lt_tex_a.mat using Guid(0ee6a137c07caef47bbfed29b2785304) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '589b434cef4b0e00b64141fd3f639494') in 0.117017 seconds
121 - Import took 0.127548 seconds .
122 -
123 -========================================================================
124 -Received Import Request.
125 - Time since last request: 1.369521 seconds.
126 - path: Assets/RPGPP_LT/Scene/rpgpp_lt_scene_1.0.unity
127 - artifactKey: Guid(d2809ab9b90eea7419d8d90d4c505d35) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
128 -Start importing Assets/RPGPP_LT/Scene/rpgpp_lt_scene_1.0.unity using Guid(d2809ab9b90eea7419d8d90d4c505d35) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b30dd706a7b79d8232f3f919ebf655a') in 0.011828 seconds
129 - Import took 0.018517 seconds .
130 -
131 -========================================================================
132 -Received Import Request.
133 - Time since last request: 0.021680 seconds.
134 - path: Assets/RPGPP_LT/Scene/rpgpp_lt_scene_1.0.unity
135 - artifactKey: Guid(d2809ab9b90eea7419d8d90d4c505d35) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
136 -Start importing Assets/RPGPP_LT/Scene/rpgpp_lt_scene_1.0.unity using Guid(d2809ab9b90eea7419d8d90d4c505d35) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b30dd706a7b79d8232f3f919ebf655a') in 0.013110 seconds
137 - Import took 0.020414 seconds .
138 -
139 -========================================================================
140 -Received Prepare
141 -Registering precompiled user dll's ...
142 -Registered in 0.005331 seconds.
143 -Begin MonoManager ReloadAssembly
144 -Native extension for WindowsStandalone target not found
145 -Refreshing native plugins compatible for Editor in 0.42 ms, found 0 plugins.
146 -Preloading 0 native plugins for Editor in 0.00 ms.
147 -Invoked RoslynAnalysisRunner static constructor.
148 -RoslynAnalysisRunner will not be running.
149 -RoslynAnalysisRunner has terminated.
150 -Mono: successfully reloaded assembly
151 -- Completed reload, in 2.517 seconds
152 -Platform modules already initialized, skipping
153 -Refreshing native plugins compatible for Editor in 1.45 ms, found 0 plugins.
154 -Preloading 0 native plugins for Editor in 0.00 ms.
155 -Unloading 1150 Unused Serialized files (Serialized files now loaded: 0)
156 -System memory in use before: 63.6 MB.
157 -System memory in use after: 63.7 MB.
158 -
159 -Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1649.
160 -Total: 7.181200 ms (FindLiveObjects: 0.417600 ms CreateObjectMapping: 0.117200 ms MarkObjects: 6.280900 ms DeleteObjects: 0.362100 ms)
161 -
162 -========================================================================
163 -Received Prepare
164 -Registering precompiled user dll's ...
165 -Registered in 0.008646 seconds.
166 -Begin MonoManager ReloadAssembly
167 -Native extension for WindowsStandalone target not found
168 -Refreshing native plugins compatible for Editor in 0.50 ms, found 0 plugins.
169 -Preloading 0 native plugins for Editor in 0.00 ms.
170 -Invoked RoslynAnalysisRunner static constructor.
171 -RoslynAnalysisRunner will not be running.
172 -RoslynAnalysisRunner has terminated.
173 -Mono: successfully reloaded assembly
174 -- Completed reload, in 1.868 seconds
175 -Platform modules already initialized, skipping
176 -Refreshing native plugins compatible for Editor in 0.63 ms, found 0 plugins.
177 -Preloading 0 native plugins for Editor in 0.00 ms.
178 -Unloading 1152 Unused Serialized files (Serialized files now loaded: 0)
179 -System memory in use before: 63.7 MB.
180 -System memory in use after: 63.8 MB.
181 -
182 -Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1654.
183 -Total: 5.103200 ms (FindLiveObjects: 0.393100 ms CreateObjectMapping: 0.176900 ms MarkObjects: 4.351800 ms DeleteObjects: 0.178500 ms)
184 -
185 -========================================================================
186 -Received Import Request.
187 - Time since last request: 531.188330 seconds.
188 - path: Assets/TopDown 2D RPG BE3/App Icon.png
189 - artifactKey: Guid(e15a0aaf619d8aa429bd091186fb29a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
190 -Start importing Assets/TopDown 2D RPG BE3/App Icon.png using Guid(e15a0aaf619d8aa429bd091186fb29a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed45c713b1863b68a4b8669c8ef1296a') in 0.478870 seconds
191 - Import took 0.489622 seconds .
192 -
193 -========================================================================
194 -Received Import Request.
195 - Time since last request: 0.000460 seconds.
196 - path: Assets/TopDown 2D RPG BE3/Readme.asset
197 - artifactKey: Guid(4ff280a9fdc784d46beb69b6da783245) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
198 -Start importing Assets/TopDown 2D RPG BE3/Readme.asset using Guid(4ff280a9fdc784d46beb69b6da783245) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '14141579f85309e273514fa0390dfe29') in 0.074516 seconds
199 - Import took 0.079115 seconds .
200 -
201 -========================================================================
202 -Received Import Request.
203 - Time since last request: 0.011583 seconds.
204 - path: Assets/TopDown 2D RPG BE3/Readme.asset
205 - artifactKey: Guid(4ff280a9fdc784d46beb69b6da783245) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
206 -Start importing Assets/TopDown 2D RPG BE3/Readme.asset using Guid(4ff280a9fdc784d46beb69b6da783245) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '14141579f85309e273514fa0390dfe29') in 0.047875 seconds
207 - Import took 0.058471 seconds .
208 -
209 -========================================================================
210 -Received Import Request.
211 - Time since last request: 283.295626 seconds.
212 - path: Assets/TopDown 2D RPG BE3/Sprites/NPC Portrait.png
213 - artifactKey: Guid(d79edf18a76e2654a9ac99f15de8b2b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
214 -Start importing Assets/TopDown 2D RPG BE3/Sprites/NPC Portrait.png using Guid(d79edf18a76e2654a9ac99f15de8b2b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a80b67b3823cfddeb451d11f46c9988f') in 0.246269 seconds
215 - Import took 0.298873 seconds .
216 -
217 -========================================================================
218 -Received Import Request.
219 - Time since last request: 0.000722 seconds.
220 - path: Assets/TopDown 2D RPG BE3/Sprites/Tiles.png
221 - artifactKey: Guid(dc747d0a3cdf6594f9f275fdd2a48b4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
222 -Start importing Assets/TopDown 2D RPG BE3/Sprites/Tiles.png using Guid(dc747d0a3cdf6594f9f275fdd2a48b4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fa55c6a8810ce7327df1595e52d3590b') in 0.222919 seconds
223 - Import took 0.229404 seconds .
224 -
225 -========================================================================
226 -Received Import Request.
227 - Time since last request: 0.000513 seconds.
228 - path: Assets/TopDown 2D RPG BE3/Sprites/NPC.png
229 - artifactKey: Guid(2f90eb840bd0cf4438d49759bc08d718) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
230 -Start importing Assets/TopDown 2D RPG BE3/Sprites/NPC.png using Guid(2f90eb840bd0cf4438d49759bc08d718) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd04456917d49789b90a212bace1acbb8') in 0.144673 seconds
231 - Import took 0.150615 seconds .
232 -
233 -========================================================================
234 -Received Import Request.
235 - Time since last request: 0.000713 seconds.
236 - path: Assets/TopDown 2D RPG BE3/Sprites/Objects.png
237 - artifactKey: Guid(20d6cce5c7ac33b4e97f0f98a09aa347) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
238 -Start importing Assets/TopDown 2D RPG BE3/Sprites/Objects.png using Guid(20d6cce5c7ac33b4e97f0f98a09aa347) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b26c30eb798ef9487cc4c0019712d694') in 0.174295 seconds
239 - Import took 0.178515 seconds .
240 -
241 -========================================================================
242 -Received Import Request.
243 - Time since last request: 0.000577 seconds.
244 - path: Assets/TopDown 2D RPG BE3/Sprites/Player.png
245 - artifactKey: Guid(23748c298f885bf4c89671f6d30f562b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
246 -Start importing Assets/TopDown 2D RPG BE3/Sprites/Player.png using Guid(23748c298f885bf4c89671f6d30f562b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd8655e8e62aedf189d7047668132cc96') in 0.115477 seconds
247 - Import took 0.119907 seconds .
248 -
249 -========================================================================
250 -Received Import Request.
251 - Time since last request: 0.000654 seconds.
252 - path: Assets/TopDown 2D RPG BE3/Sprites/User Interface.png
253 - artifactKey: Guid(1c9bc0d104c01934da10d4333b9dc48b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
254 -Start importing Assets/TopDown 2D RPG BE3/Sprites/User Interface.png using Guid(1c9bc0d104c01934da10d4333b9dc48b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '15318315e0e7b31f3d7496d6f11b861d') in 0.098364 seconds
255 - Import took 0.102414 seconds .
256 -
257 -========================================================================
258 -Received Import Request.
259 - Time since last request: 31.608361 seconds.
260 - path: Assets/TopDown 2D RPG BE3/ReadMe/Icon.png
261 - artifactKey: Guid(71ded8f6cdc30b14aa6ff9cc311ed0c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
262 -Start importing Assets/TopDown 2D RPG BE3/ReadMe/Icon.png using Guid(71ded8f6cdc30b14aa6ff9cc311ed0c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b370022318aca8e5184781ac26b0a734') in 0.033785 seconds
263 - Import took 0.038459 seconds .
264 -
265 -========================================================================
266 -Received Import Request.
267 - Time since last request: 84.162315 seconds.
268 - path: Assets/DDSystem/Demo/Graphic/BackGround.png
269 - artifactKey: Guid(cdd462abd453053419a990cea66008bb) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
270 -Start importing Assets/DDSystem/Demo/Graphic/BackGround.png using Guid(cdd462abd453053419a990cea66008bb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a7efb88a9ad732ca2d276460624d08e') in 0.121004 seconds
271 - Import took 0.126354 seconds .
272 -
273 -========================================================================
274 -Received Import Request.
275 - Time since last request: 0.001679 seconds.
276 - path: Assets/City Pack/Sprites/Animations/BD001.png
277 - artifactKey: Guid(b79f22cd227d76c4b9c9986dcf0514f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
278 -Start importing Assets/City Pack/Sprites/Animations/BD001.png using Guid(b79f22cd227d76c4b9c9986dcf0514f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fdcfff1fa8fb88536b3b095818496fff') in 0.378113 seconds
279 - Import took 0.386780 seconds .
280 -
281 -========================================================================
282 -Received Import Request.
283 - Time since last request: 0.004479 seconds.
284 - path: Assets/City Pack/Sprites/Animations/BD001.png
285 - artifactKey: Guid(b79f22cd227d76c4b9c9986dcf0514f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
286 -Start importing Assets/City Pack/Sprites/Animations/BD001.png using Guid(b79f22cd227d76c4b9c9986dcf0514f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fdcfff1fa8fb88536b3b095818496fff') in 0.165529 seconds
287 - Import took 0.171427 seconds .
288 -
289 -========================================================================
290 -Received Import Request.
291 - Time since last request: 4.615784 seconds.
292 - path: Assets/City Pack/Sprites/Animations/BL001.png
293 - artifactKey: Guid(9c7711ccb0a37d744b6f5071d082d28c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
294 -Start importing Assets/City Pack/Sprites/Animations/BL001.png using Guid(9c7711ccb0a37d744b6f5071d082d28c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9b128b77eeb05f5d24b59017c75f44c9') in 0.167796 seconds
295 - Import took 0.173969 seconds .
296 -
297 -========================================================================
298 -Received Import Request.
299 - Time since last request: 0.001298 seconds.
300 - path: Assets/City Pack/Sprites/CP_V1.0.4_nyknck/CP_V1.0.4.png
301 - artifactKey: Guid(2529f58c0f0f4784d925363eac539680) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
302 -Start importing Assets/City Pack/Sprites/CP_V1.0.4_nyknck/CP_V1.0.4.png using Guid(2529f58c0f0f4784d925363eac539680) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ef157dd6ebfcd6d78d061c114add452') in 0.754845 seconds
303 - Import took 0.764125 seconds .
304 -
305 -========================================================================
306 -Received Import Request.
307 - Time since last request: 3.091646 seconds.
308 - path: Assets/DDSystem/Demo/Graphic/Happy.png
309 - artifactKey: Guid(77fa19401d8472a498f2164bce0d7a4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
310 -Start importing Assets/DDSystem/Demo/Graphic/Happy.png using Guid(77fa19401d8472a498f2164bce0d7a4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3206580848516fcb6003ac1f9379815c') in 0.051516 seconds
311 - Import took 0.062994 seconds .
312 -
313 -========================================================================
314 -Received Import Request.
315 - Time since last request: 0.172420 seconds.
316 - path: Assets/DDSystem/Demo/Graphic/Normal.png
317 - artifactKey: Guid(34f96a43c2ac0804b95b2e3ab9751332) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
318 -Start importing Assets/DDSystem/Demo/Graphic/Normal.png using Guid(34f96a43c2ac0804b95b2e3ab9751332) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8666254c015dbd359fbfef8744d2dabf') in 0.062781 seconds
319 - Import took 0.071328 seconds .
320 -
321 -========================================================================
322 -Received Import Request.
323 - Time since last request: 0.141660 seconds.
324 - path: Assets/DDSystem/Demo/Graphic/Sa_Happy.png
325 - artifactKey: Guid(055c44a6ee790d743bcf692c99bfef6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
326 -Start importing Assets/DDSystem/Demo/Graphic/Sa_Happy.png using Guid(055c44a6ee790d743bcf692c99bfef6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '312f4d525edc38fcdbf9d819df56efe4') in 0.088710 seconds
327 - Import took 0.094698 seconds .
328 -
329 -========================================================================
330 -Received Import Request.
331 - Time since last request: 0.000749 seconds.
332 - path: Assets/DDSystem/Demo/Graphic/Sad.png
333 - artifactKey: Guid(8f01fa9aca81c9142a73bb0c759a88de) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
334 -Start importing Assets/DDSystem/Demo/Graphic/Sad.png using Guid(8f01fa9aca81c9142a73bb0c759a88de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7e11b392c4d5d6b08512b23c5dc48c3f') in 0.098857 seconds
335 - Import took 0.472842 seconds .
336 -
337 -========================================================================
338 -Received Import Request.
339 - Time since last request: 0.001143 seconds.
340 - path: Assets/City Pack/Sprites/Animations/SL001.png
341 - artifactKey: Guid(f5bd07fe5e2679644ace619c8df24f8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
342 -Start importing Assets/City Pack/Sprites/Animations/SL001.png using Guid(f5bd07fe5e2679644ace619c8df24f8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6aa64d7b638e3b16581b82c87c1279da') in 0.468170 seconds
343 - Import took 0.473241 seconds .
344 -
345 -========================================================================
346 -Received Prepare
347 -Registering precompiled user dll's ...
348 -Registered in 0.004709 seconds.
349 -Begin MonoManager ReloadAssembly
350 -Native extension for WindowsStandalone target not found
351 -Refreshing native plugins compatible for Editor in 0.56 ms, found 0 plugins.
352 -Preloading 0 native plugins for Editor in 0.00 ms.
353 -Invoked RoslynAnalysisRunner static constructor.
354 -RoslynAnalysisRunner will not be running.
355 -RoslynAnalysisRunner has terminated.
356 -Mono: successfully reloaded assembly
357 -- Completed reload, in 3.629 seconds
358 -Platform modules already initialized, skipping
359 -Refreshing native plugins compatible for Editor in 24.02 ms, found 0 plugins.
360 -Preloading 0 native plugins for Editor in 0.00 ms.
361 -Unloading 1152 Unused Serialized files (Serialized files now loaded: 0)
362 -System memory in use before: 64.0 MB.
363 -System memory in use after: 64.1 MB.
364 -
365 -Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1762.
366 -Total: 15.914800 ms (FindLiveObjects: 0.931100 ms CreateObjectMapping: 0.443800 ms MarkObjects: 13.710000 ms DeleteObjects: 0.813200 ms)
367 -
368 -========================================================================
369 -Received Import Request.
370 - Time since last request: 1287.472444 seconds.
371 - path: Assets/DDSystem/Demo/Graphic/test02.PNG
372 - artifactKey: Guid(02ba6bee2195f46479dfe6cf1f0bf242) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
373 -Start importing Assets/DDSystem/Demo/Graphic/test02.PNG using Guid(02ba6bee2195f46479dfe6cf1f0bf242) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '95b6a41704f341b198d3cf3b5e776848') in 0.208705 seconds
374 - Import took 0.216651 seconds .
375 -
376 -========================================================================
377 -Received Prepare
378 -Registering precompiled user dll's ...
379 -Registered in 0.120953 seconds.
380 -Begin MonoManager ReloadAssembly
381 -Native extension for WindowsStandalone target not found
382 -Refreshing native plugins compatible for Editor in 0.41 ms, found 0 plugins.
383 -Preloading 0 native plugins for Editor in 0.00 ms.
384 -Invoked RoslynAnalysisRunner static constructor.
385 -RoslynAnalysisRunner will not be running.
386 -RoslynAnalysisRunner has terminated.
387 -Mono: successfully reloaded assembly
388 -- Completed reload, in 2.553 seconds
389 -Platform modules already initialized, skipping
390 -Refreshing native plugins compatible for Editor in 0.56 ms, found 0 plugins.
391 -Preloading 0 native plugins for Editor in 0.00 ms.
392 -Unloading 1152 Unused Serialized files (Serialized files now loaded: 0)
393 -System memory in use before: 64.1 MB.
394 -System memory in use after: 64.1 MB.
395 -
396 -Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1766.
397 -Total: 4.947500 ms (FindLiveObjects: 0.574100 ms CreateObjectMapping: 0.238700 ms MarkObjects: 3.846700 ms DeleteObjects: 0.284600 ms)
398 -
399 -========================================================================
400 -Received Import Request.
401 - Time since last request: 5294.221800 seconds.
402 - path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B06_Ch_04_Avatar.fbx
403 - artifactKey: Guid(7f1972951ac6fc345881da2aa3dc3442) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
404 -Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B06_Ch_04_Avatar.fbx using Guid(7f1972951ac6fc345881da2aa3dc3442) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '339bb0854c614c1f20d81d8082b7e521') in 2.981763 seconds
405 - Import took 3.235916 seconds .
406 -
407 -========================================================================
408 -Received Import Request.
409 - Time since last request: 0.002086 seconds.
410 - path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B25_Ch_04_Avatar.fbx
411 - artifactKey: Guid(df988c47aa443964a8924d60247c7a1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
412 -Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B25_Ch_04_Avatar.fbx using Guid(df988c47aa443964a8924d60247c7a1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c62490a1071448f29720a29125cbe8d0') in 0.117455 seconds
413 - Import took 0.126249 seconds .
414 -
415 -========================================================================
416 -Received Import Request.
417 - Time since last request: 0.003244 seconds.
418 - path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B18_Ch_01_AvatarZombie.fbx
419 - artifactKey: Guid(2c7fb3d27117eeb4a9182ee87a7025b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
420 -Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B18_Ch_01_AvatarZombie.fbx using Guid(2c7fb3d27117eeb4a9182ee87a7025b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'faf55813a01a593faad09931572b57aa') in 0.143775 seconds
421 - Import took 0.152091 seconds .
422 -
423 -========================================================================
424 -Received Import Request.
425 - Time since last request: 0.001136 seconds.
426 - path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B12_Ch_02_Avatar.fbx
427 - artifactKey: Guid(30eacfcb4c137bf4a9aaa3266373bd9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
428 -Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B12_Ch_02_Avatar.fbx using Guid(30eacfcb4c137bf4a9aaa3266373bd9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '613c007af9d8af7b3ce154701f5ab064') in 0.125888 seconds
429 - Import took 0.136426 seconds .
430 -
431 -========================================================================
432 -Received Import Request.
433 - Time since last request: 0.000607 seconds.
434 - path: Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B20_Ch_01_Avatar.fbx
435 - artifactKey: Guid(3d15d42cbf37faf4cb25ebab81c2f973) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
436 -Start importing Assets/Avatars_Animations_Bible_Demo/Humanoid avatars/B20_Ch_01_Avatar.fbx using Guid(3d15d42cbf37faf4cb25ebab81c2f973) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd08106b4fe6bf7939721f9fa596f49be') in 0.121307 seconds
437 - Import took 0.126846 seconds .
438 -
439 -========================================================================
440 -Received Prepare
441 -Registering precompiled user dll's ...
442 -Registered in 0.006980 seconds.
443 -Begin MonoManager ReloadAssembly
444 -Native extension for WindowsStandalone target not found
445 -Refreshing native plugins compatible for Editor in 1.13 ms, found 0 plugins.
446 -Preloading 0 native plugins for Editor in 0.00 ms.
447 -Invoked RoslynAnalysisRunner static constructor.
448 -RoslynAnalysisRunner will not be running.
449 -RoslynAnalysisRunner has terminated.
450 -Mono: successfully reloaded assembly
451 -- Completed reload, in 3.917 seconds
452 -Platform modules already initialized, skipping
453 -Refreshing native plugins compatible for Editor in 0.77 ms, found 0 plugins.
454 -Preloading 0 native plugins for Editor in 0.00 ms.
455 -Unloading 1171 Unused Serialized files (Serialized files now loaded: 0)
456 -System memory in use before: 78.8 MB.
457 -System memory in use after: 78.8 MB.
458 -
459 -Unloading 5 unused Assets to reduce memory usage. Loaded Objects now: 1793.
460 -Total: 18.957200 ms (FindLiveObjects: 0.696400 ms CreateObjectMapping: 0.210100 ms MarkObjects: 15.902500 ms DeleteObjects: 2.143000 ms)
461 -
462 -========================================================================
463 -Received Import Request.
464 - Time since last request: 1749.807987 seconds.
465 - path: Assets/VIDE/Data/Resources/Sprites/Capsule_Angry.jpg
466 - artifactKey: Guid(9e5eefef3b3fdff40a66f9c9db42ac9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
467 -Start importing Assets/VIDE/Data/Resources/Sprites/Capsule_Angry.jpg using Guid(9e5eefef3b3fdff40a66f9c9db42ac9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b383baa684812643c9b6e086e359d7d') in 0.324901 seconds
468 - Import took 0.336021 seconds .
469 -
470 -========================================================================
471 -Received Import Request.
472 - Time since last request: 0.001188 seconds.
473 - path: Assets/VIDE/Data/Resources/Sprites/Blue_2.jpg
474 - artifactKey: Guid(d54f1dfd3256b57488f3b348dca8b2bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
475 -Start importing Assets/VIDE/Data/Resources/Sprites/Blue_2.jpg using Guid(d54f1dfd3256b57488f3b348dca8b2bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd58faa8ba513d1d574a5c2a33a54a073') in 0.060844 seconds
476 - Import took 0.076655 seconds .
477 -
478 -========================================================================
479 -Received Import Request.
480 - Time since last request: 49.673633 seconds.
481 - path: Assets/VIDE/Data/Resources/Sprites/Capsule_Josh.jpg
482 - artifactKey: Guid(93b2f40e970e7eb4cbee6cd846766f5f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
483 -Start importing Assets/VIDE/Data/Resources/Sprites/Capsule_Josh.jpg using Guid(93b2f40e970e7eb4cbee6cd846766f5f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f8fb22bee110de2a4135e73d5b478752') in 0.052277 seconds
484 - Import took 0.062593 seconds .
485 -
486 -========================================================================
487 -Received Import Request.
488 - Time since last request: 0.001364 seconds.
489 - path: Assets/VIDE/Data/Resources/Sprites/Capsule_Sophie.jpg
490 - artifactKey: Guid(b125c913cebe86249bbefc6732d811db) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
491 -Start importing Assets/VIDE/Data/Resources/Sprites/Capsule_Sophie.jpg using Guid(b125c913cebe86249bbefc6732d811db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '89993a5fba375fa19c32e502c8c21da4') in 0.035436 seconds
492 - Import took 0.047432 seconds .
493 -
494 -========================================================================
495 -Received Import Request.
496 - Time since last request: 0.000625 seconds.
497 - path: Assets/VIDE/Data/Resources/Sprites/Capsule_Player.jpg
498 - artifactKey: Guid(80fe9d6e5fdb5db4bb20bdd4f61d96fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
499 -Start importing Assets/VIDE/Data/Resources/Sprites/Capsule_Player.jpg using Guid(80fe9d6e5fdb5db4bb20bdd4f61d96fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '25bc508a88d6cbbdd69b1a911536ff2a') in 0.072431 seconds
500 - Import took 0.083069 seconds .
501 -
502 -========================================================================
503 -Received Import Request.
504 - Time since last request: 0.000610 seconds.
505 - path: Assets/VIDE/Data/Resources/Sprites/Capsule_Normal.jpg
506 - artifactKey: Guid(c438947a01291e34db8ab2df540dc13a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
507 -Start importing Assets/VIDE/Data/Resources/Sprites/Capsule_Normal.jpg using Guid(c438947a01291e34db8ab2df540dc13a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1cea3082b3556f6714efff9ccf926e8c') in 0.112728 seconds
508 - Import took 0.124153 seconds .
509 -
510 -========================================================================
511 -Received Import Request.
512 - Time since last request: 0.000948 seconds.
513 - path: Assets/VIDE/Data/Resources/Sprites/Capsule_Wowed.jpg
514 - artifactKey: Guid(8b547fe9d26af744cb624a90abcbc953) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
515 -Start importing Assets/VIDE/Data/Resources/Sprites/Capsule_Wowed.jpg using Guid(8b547fe9d26af744cb624a90abcbc953) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40142aea113b2710ddb7638574e2cbdb') in 0.040715 seconds
516 - Import took 0.045349 seconds .
517 -
518 -========================================================================
519 -Received Import Request.
520 - Time since last request: 2.195450 seconds.
521 - path: Assets/VIDE/Data/Resources/Sprites/Item.jpg
522 - artifactKey: Guid(3ee04ceb05556014984f5cfa5767a2fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
523 -Start importing Assets/VIDE/Data/Resources/Sprites/Item.jpg using Guid(3ee04ceb05556014984f5cfa5767a2fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7607c618daf54f0ef668246fe02b8fd5') in 0.183020 seconds
524 - Import took 0.275122 seconds .
525 -
526 -========================================================================
527 -Received Import Request.
528 - Time since last request: 7.872013 seconds.
529 - path: Assets/VIDE/Data/Resources/fl_english.jpg
530 - artifactKey: Guid(13d229cf51f3f3f47ac4fb7963719d10) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
531 -Start importing Assets/VIDE/Data/Resources/fl_english.jpg using Guid(13d229cf51f3f3f47ac4fb7963719d10) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29b525ab7c88a4b83565b36dd789df63') in 1.301311 seconds
532 - Import took 1.312951 seconds .
533 -
534 -========================================================================
535 -Received Import Request.
536 - Time since last request: 0.000816 seconds.
537 - path: Assets/VIDE/Data/Resources/fl_spanish.jpg
538 - artifactKey: Guid(e032c91ede25e0140812f8b0b5ceb22b) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
539 -Start importing Assets/VIDE/Data/Resources/fl_spanish.jpg using Guid(e032c91ede25e0140812f8b0b5ceb22b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '776e065259c9c970e9c0985d535446e6') in 0.047453 seconds
540 - Import took 0.056105 seconds .
541 -
542 -========================================================================
543 -Received Import Request.
544 - Time since last request: 0.004410 seconds.
545 - path: Assets/VIDE/Data/Resources/fl_french.jpg
546 - artifactKey: Guid(386589efb5fbf274590df95f4eca2846) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
547 -Start importing Assets/VIDE/Data/Resources/fl_french.jpg using Guid(386589efb5fbf274590df95f4eca2846) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '70b62d47f5d89e5f6ccbca85b96c1058') in 0.057093 seconds
548 - Import took 0.063123 seconds .
549 -
550 -========================================================================
551 -Received Import Request.
552 - Time since last request: 9.284848 seconds.
553 - path: Assets/VIDE/Data/Resources/Sprites/Blue_1.jpg
554 - artifactKey: Guid(84a9114ab28f94e469a62b9feae04bf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
555 -Start importing Assets/VIDE/Data/Resources/Sprites/Blue_1.jpg using Guid(84a9114ab28f94e469a62b9feae04bf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c477635ca160c5386087fedcd89f2d33') in 0.470344 seconds
556 - Import took 0.586098 seconds .
557 -
558 -========================================================================
559 -Received Import Request.
560 - Time since last request: 352.775992 seconds.
561 - path: Assets/VIDE/Data/assignIcon.png
562 - artifactKey: Guid(17e4c23917a8d1b448cfc8223c092c78) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
563 -Start importing Assets/VIDE/Data/assignIcon.png using Guid(17e4c23917a8d1b448cfc8223c092c78) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '392ea53f42f2d8b5fc6a174e0c51539f') in 0.185829 seconds
564 - Import took 0.425048 seconds .
565 -
566 -========================================================================
567 -Received Import Request.
568 - Time since last request: 0.004295 seconds.
569 - path: Assets/VIDE/Data/DiagDataIcon.png
570 - artifactKey: Guid(23b2090b735db3f46a53cb2741368b81) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
571 -Start importing Assets/VIDE/Data/DiagDataIcon.png using Guid(23b2090b735db3f46a53cb2741368b81) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb68e66dbdcc7f3da44b18b8b1579608') in 0.069329 seconds
572 - Import took 0.076070 seconds .
573 -
574 -========================================================================
575 -Received Import Request.
576 - Time since last request: 0.000682 seconds.
577 - path: Assets/VIDE/Data/skinBoxText.png
578 - artifactKey: Guid(83ee4a513d59e744cb89e21b719cf9a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
579 -Start importing Assets/VIDE/Data/skinBoxText.png using Guid(83ee4a513d59e744cb89e21b719cf9a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a76b2a4218018e46906bfa05d3a26182') in 0.062295 seconds
580 - Import took 0.068542 seconds .
581 -
582 -========================================================================
583 -Received Import Request.
584 - Time since last request: 0.000416 seconds.
585 - path: Assets/VIDE/Data/DiagDataIcon.png
586 - artifactKey: Guid(23b2090b735db3f46a53cb2741368b81) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
587 -Start importing Assets/VIDE/Data/DiagDataIcon.png using Guid(23b2090b735db3f46a53cb2741368b81) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb68e66dbdcc7f3da44b18b8b1579608') in 0.024898 seconds
588 - Import took 0.030205 seconds .
589 -
590 -========================================================================
591 -Received Import Request.
592 - Time since last request: 0.000434 seconds.
593 - path: Assets/VIDE/Data/newNode.png
594 - artifactKey: Guid(aabb01e3800b2d14a98d38b0b311366f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
595 -Start importing Assets/VIDE/Data/newNode.png using Guid(aabb01e3800b2d14a98d38b0b311366f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9e2d74b4cebaf1509a2312d652f6048a') in 0.107966 seconds
596 - Import took 0.126874 seconds .
597 -
598 -========================================================================
599 -Received Import Request.
600 - Time since last request: 0.000785 seconds.
601 - path: Assets/VIDE/Data/twit.jpg
602 - artifactKey: Guid(db6601d97b6d2394e98df8794f1805ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
603 -Start importing Assets/VIDE/Data/twit.jpg using Guid(db6601d97b6d2394e98df8794f1805ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '59707a09f68725fbd1b5fa2d1ec2043c') in 0.057308 seconds
604 - Import took 0.073924 seconds .
605 -
606 -========================================================================
607 -Received Import Request.
608 - Time since last request: 0.000646 seconds.
609 - path: Assets/VIDE/Data/mmSpr.png
610 - artifactKey: Guid(0f34330d9ebfd7d4baf1075e5f07b82f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
611 -Start importing Assets/VIDE/Data/mmSpr.png using Guid(0f34330d9ebfd7d4baf1075e5f07b82f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b2163fc50450e689f7d094ee8c100fad') in 0.066779 seconds
612 - Import took 0.075104 seconds .
613 -
614 -========================================================================
615 -Received Import Request.
616 - Time since last request: 0.000682 seconds.
617 - path: Assets/VIDE/Data/skinBox.png
618 - artifactKey: Guid(0a536559198576e45a0c74e2133909cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
619 -Start importing Assets/VIDE/Data/skinBox.png using Guid(0a536559198576e45a0c74e2133909cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3126e9110dab000e615365599fdd3214') in 0.067941 seconds
620 - Import took 0.075196 seconds .
621 -
622 -========================================================================
623 -Received Import Request.
624 - Time since last request: 0.000488 seconds.
625 - path: Assets/VIDE/Data/mmSprWhite.png
626 - artifactKey: Guid(800ee521c9306f441ac01cdc69797db0) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
627 -Start importing Assets/VIDE/Data/mmSprWhite.png using Guid(800ee521c9306f441ac01cdc69797db0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '652cbe1b303f0375897aab5551a72711') in 0.066420 seconds
628 - Import took 0.070540 seconds .
629 -
630 -========================================================================
631 -Received Import Request.
632 - Time since last request: 0.000767 seconds.
633 - path: Assets/VIDE/Data/newNode2.png
634 - artifactKey: Guid(f56ae2b4239a65843980c15e02f875e2) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
635 -Start importing Assets/VIDE/Data/newNode2.png using Guid(f56ae2b4239a65843980c15e02f875e2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b1d56da615aedb13d25c761bae29581') in 0.065644 seconds
636 - Import took 0.076414 seconds .
637 -
638 -========================================================================
639 -Received Import Request.
640 - Time since last request: 0.000579 seconds.
641 - path: Assets/VIDE/Data/lineIcon.png
642 - artifactKey: Guid(b66a1365345845342b9cb847d0b18d97) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
643 -Start importing Assets/VIDE/Data/lineIcon.png using Guid(b66a1365345845342b9cb847d0b18d97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'af41f5d0507f2a4b41f3e18c78de4488') in 0.060331 seconds
644 - Import took 0.067021 seconds .
645 -
646 -========================================================================
647 -Received Import Request.
648 - Time since last request: 1.690580 seconds.
649 - path: Assets/VIDE/Data/windowStyle.png
650 - artifactKey: Guid(6509249c536ddaf44901ac44ff688a2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
651 -Start importing Assets/VIDE/Data/windowStyle.png using Guid(6509249c536ddaf44901ac44ff688a2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aec7035cd72a12ee1b51535a067629bf') in 0.024806 seconds
652 - Import took 0.030219 seconds .
653 -
1 -Base path: 'C:/Program Files/Unity/Editor/Data', plugins path 'C:/Program Files/Unity/Editor/Data/PlaybackEngines'
2 -Cmd: initializeCompiler
3 -
4 -Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4)
5 -
6 -Quitting shader compiler process
1 Base path: 'C:/Program Files/Unity/Editor/Data', plugins path 'C:/Program Files/Unity/Editor/Data/PlaybackEngines' 1 Base path: 'C:/Program Files/Unity/Editor/Data', plugins path 'C:/Program Files/Unity/Editor/Data/PlaybackEngines'
2 Cmd: initializeCompiler 2 Cmd: initializeCompiler
3 3
4 -Cmd: initializeCompiler 4 +Cmd: shutdown
5 -
......
1 -Base path: 'C:/Program Files/Unity/Editor/Data', plugins path 'C:/Program Files/Unity/Editor/Data/PlaybackEngines'
2 -Cmd: initializeCompiler
3 -
4 -Cmd: initializeCompiler
5 -
6 -Cmd: compileSnippet
7 - insize=1489 path=Assets/DefaultResourcesExtra cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=5 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR UNITY_PASS_FORWARDBASE uKW=DIRECTIONAL LIGHTPROBE_SH FOG_LINEAR _METALLICGLOSSMAP dKW=FOG_EXP FOG_EXP2 INSTANCING_ON _NORMALMAP _ALPHATEST_ON _ALPHABLEND_ON _ALPHAPREMULTIPLY_ON _PARALLAXMAP SHADOWS_SHADOWMASK DYNAMICLIGHTMAP_ON LIGHTMAP_ON LIGHTMAP_SHADOW_MIXING DIRLIGHTMAP_COMBINED SHADOWS_SCREEN VERTEXLIGHT_ON UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Vertex platform=d3d11 reqs=227 mask=6 start=68 ok=1 outsize=1914
8 -
9 -Cmd: compileSnippet
10 - insize=1489 path=Assets/DefaultResourcesExtra cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=5 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR UNITY_PASS_FORWARDBASE uKW=DIRECTIONAL LIGHTPROBE_SH FOG_LINEAR _EMISSION _METALLICGLOSSMAP dKW=FOG_EXP FOG_EXP2 INSTANCING_ON _NORMALMAP _ALPHATEST_ON _ALPHABLEND_ON _ALPHAPREMULTIPLY_ON _DETAIL_MULX2 _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A _SPECULARHIGHLIGHTS_OFF _GLOSSYREFLECTIONS_OFF _PARALLAXMAP SHADOWS_SHADOWMASK DYNAMICLIGHTMAP_ON LIGHTMAP_ON LIGHTMAP_SHADOW_MIXING DIRLIGHTMAP_COMBINED SHADOWS_SCREEN UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Fragment platform=d3d11 reqs=227 mask=6 start=68 ok=1 outsize=7266
11 -
12 -Cmd: compileSnippet
13 - insize=1489 path=Assets/DefaultResourcesExtra cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=5 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR UNITY_PASS_FORWARDBASE uKW=DIRECTIONAL LIGHTPROBE_SH FOG_LINEAR _ALPHATEST_ON _METALLICGLOSSMAP dKW=FOG_EXP FOG_EXP2 INSTANCING_ON _NORMALMAP _ALPHABLEND_ON _ALPHAPREMULTIPLY_ON _PARALLAXMAP SHADOWS_SHADOWMASK DYNAMICLIGHTMAP_ON LIGHTMAP_ON LIGHTMAP_SHADOW_MIXING DIRLIGHTMAP_COMBINED SHADOWS_SCREEN VERTEXLIGHT_ON UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Vertex platform=d3d11 reqs=227 mask=6 start=68 ok=1 outsize=1914
14 -
15 -Cmd: compileSnippet
16 - insize=1489 path=Assets/DefaultResourcesExtra cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=5 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR UNITY_PASS_FORWARDBASE uKW=DIRECTIONAL SHADOWS_SCREEN LIGHTPROBE_SH FOG_LINEAR _EMISSION dKW=FOG_EXP FOG_EXP2 INSTANCING_ON _NORMALMAP _ALPHATEST_ON _ALPHABLEND_ON _ALPHAPREMULTIPLY_ON _METALLICGLOSSMAP _DETAIL_MULX2 _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A _SPECULARHIGHLIGHTS_OFF _GLOSSYREFLECTIONS_OFF _PARALLAXMAP SHADOWS_SHADOWMASK DYNAMICLIGHTMAP_ON LIGHTMAP_ON LIGHTMAP_SHADOW_MIXING DIRLIGHTMAP_COMBINED UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Fragment platform=d3d11 reqs=227 mask=6 start=68 ok=1 outsize=7554
17 -
1 -Base path: 'C:/Program Files/Unity/Editor/Data', plugins path 'C:/Program Files/Unity/Editor/Data/PlaybackEngines'
2 -Cmd: initializeCompiler
3 -
4 -Cmd: initializeCompiler
5 -
6 -Cmd: compileSnippet
7 - insize=1485 path=Assets/DefaultResourcesExtra cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=5 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR UNITY_PASS_FORWARDBASE uKW=DIRECTIONAL LIGHTPROBE_SH FOG_LINEAR _NORMALMAP _SPECGLOSSMAP dKW=_EMISSION FOG_EXP FOG_EXP2 INSTANCING_ON _ALPHATEST_ON _ALPHABLEND_ON _ALPHAPREMULTIPLY_ON _DETAIL_MULX2 _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A _SPECULARHIGHLIGHTS_OFF _GLOSSYREFLECTIONS_OFF _PARALLAXMAP SHADOWS_SHADOWMASK DYNAMICLIGHTMAP_ON LIGHTMAP_ON LIGHTMAP_SHADOW_MIXING DIRLIGHTMAP_COMBINED SHADOWS_SCREEN UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Fragment platform=d3d11 reqs=227 mask=6 start=67 ok=1 outsize=7474
8 -
9 -Cmd: compileSnippet
10 - insize=17274 path=Assets/DefaultResourcesExtra/Mobile cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=5 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR UNITY_PASS_FORWARDBASE uKW=DIRECTIONAL LIGHTPROBE_SH FOG_LINEAR dKW=INSTANCING_ON FOG_EXP FOG_EXP2 SHADOWS_SHADOWMASK DYNAMICLIGHTMAP_ON LIGHTMAP_ON LIGHTMAP_SHADOW_MIXING DIRLIGHTMAP_COMBINED SHADOWS_SCREEN VERTEXLIGHT_ON UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=23 ok=1 outsize=2142
11 -
12 -Cmd: compileSnippet
13 - insize=17274 path=Assets/DefaultResourcesExtra/Mobile cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=5 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR UNITY_PASS_FORWARDBASE uKW=DIRECTIONAL LIGHTPROBE_SH FOG_LINEAR dKW=INSTANCING_ON FOG_EXP FOG_EXP2 SHADOWS_SHADOWMASK DYNAMICLIGHTMAP_ON LIGHTMAP_ON LIGHTMAP_SHADOW_MIXING DIRLIGHTMAP_COMBINED SHADOWS_SCREEN UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=23 ok=1 outsize=1402
14 -
1 -Base path: 'C:/Program Files/Unity/Editor/Data', plugins path 'C:/Program Files/Unity/Editor/Data/PlaybackEngines'
2 -Cmd: initializeCompiler
3 -
4 -Cmd: initializeCompiler
5 -
6 -Cmd: compileSnippet
7 - insize=1485 path=Assets/DefaultResourcesExtra cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=5 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR UNITY_PASS_FORWARDBASE uKW=DIRECTIONAL LIGHTPROBE_SH FOG_LINEAR _NORMALMAP _SPECGLOSSMAP dKW=FOG_EXP FOG_EXP2 INSTANCING_ON _ALPHATEST_ON _ALPHABLEND_ON _ALPHAPREMULTIPLY_ON _PARALLAXMAP SHADOWS_SHADOWMASK DYNAMICLIGHTMAP_ON LIGHTMAP_ON LIGHTMAP_SHADOW_MIXING DIRLIGHTMAP_COMBINED SHADOWS_SCREEN VERTEXLIGHT_ON UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Vertex platform=d3d11 reqs=227 mask=6 start=67 ok=1 outsize=2274
8 -
9 -Cmd: compileSnippet
10 - insize=1489 path=Assets/DefaultResourcesExtra cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=5 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR UNITY_PASS_FORWARDBASE uKW=DIRECTIONAL LIGHTPROBE_SH FOG_LINEAR _METALLICGLOSSMAP dKW=_EMISSION FOG_EXP FOG_EXP2 INSTANCING_ON _NORMALMAP _ALPHATEST_ON _ALPHABLEND_ON _ALPHAPREMULTIPLY_ON _DETAIL_MULX2 _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A _SPECULARHIGHLIGHTS_OFF _GLOSSYREFLECTIONS_OFF _PARALLAXMAP SHADOWS_SHADOWMASK DYNAMICLIGHTMAP_ON LIGHTMAP_ON LIGHTMAP_SHADOW_MIXING DIRLIGHTMAP_COMBINED SHADOWS_SCREEN UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Fragment platform=d3d11 reqs=227 mask=6 start=68 ok=1 outsize=7162
11 -
12 -Cmd: compileSnippet
13 - insize=1489 path=Assets/DefaultResourcesExtra cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=5 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR UNITY_PASS_FORWARDBASE uKW=DIRECTIONAL LIGHTPROBE_SH FOG_LINEAR _ALPHATEST_ON _METALLICGLOSSMAP dKW=_EMISSION FOG_EXP FOG_EXP2 INSTANCING_ON _NORMALMAP _ALPHABLEND_ON _ALPHAPREMULTIPLY_ON _DETAIL_MULX2 _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A _SPECULARHIGHLIGHTS_OFF _GLOSSYREFLECTIONS_OFF _PARALLAXMAP SHADOWS_SHADOWMASK DYNAMICLIGHTMAP_ON LIGHTMAP_ON LIGHTMAP_SHADOW_MIXING DIRLIGHTMAP_COMBINED SHADOWS_SCREEN UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Fragment platform=d3d11 reqs=227 mask=6 start=68 ok=1 outsize=7250
14 -