summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-07-08 22:52:08 +0800
committerchai <chaifix@163.com>2021-07-08 22:52:08 +0800
commita0577c8f3415b3173f8d57af631785b43c18d086 (patch)
tree8f21c6ff4712bc8d4f6e3aaeb7cbbc5ac83a2bc7
parent69f50d88127cdb0a1c52549f24dff70a4a9adb76 (diff)
*Action Editor
-rw-r--r--Assets/ActionTool/ActionToolGizmos.cs21
-rw-r--r--Assets/ActionTool/ActionToolGizmos.cs.meta11
-rw-r--r--Assets/ActionTool/Editor/ActionData.cs52
-rw-r--r--Assets/ActionTool/Editor/ActionEditor.cs23
-rw-r--r--Assets/ActionTool/Editor/ActionEditorStyles.cs18
-rw-r--r--Assets/ActionTool/Editor/ActionEditorUI.cs23
-rw-r--r--Assets/ActionTool/Editor/ActionManager.cs69
-rw-r--r--Assets/ActionTool/Editor/ActionPreviewEditor.cs138
-rw-r--r--Assets/ActionTool/Resources/select_dark.pngbin0 -> 239 bytes
-rw-r--r--Assets/ActionTool/Resources/select_dark.png.meta88
-rw-r--r--Assets/ActionTool/Resources/select_white.pngbin0 -> 246 bytes
-rw-r--r--Assets/ActionTool/Resources/select_white.png.meta88
-rw-r--r--Assets/Data/RootMotionData/Erika/2Handed_HitReaction_Front_04.asset72
-rw-r--r--Assets/Data/RootMotionData/Erika/Air_Attk_1.asset22
-rw-r--r--Assets/Data/RootMotionData/Erika/Air_Attk_2.asset12
-rw-r--r--Assets/Data/RootMotionData/Erika/Air_Combo.asset38
-rw-r--r--Assets/Data/RootMotionData/Erika/Air_Dash.asset6
-rw-r--r--Assets/Data/RootMotionData/Erika/Combo.asset24
-rw-r--r--Assets/Data/RootMotionData/Erika/Heavy_Attk_1.asset34
-rw-r--r--Assets/Data/RootMotionData/Erika/Heavy_Attk_2.asset24
-rw-r--r--Assets/Data/RootMotionData/Erika/Heavy_Attk_Rush.asset32
-rw-r--r--Assets/Data/RootMotionData/Erika/Heavy_Attk_Rush_Third.asset48
-rw-r--r--Assets/Data/RootMotionData/Erika/Idle_Stand.asset118
-rw-r--r--Assets/Data/RootMotionData/Erika/Jump_Down.asset10
-rw-r--r--Assets/Data/RootMotionData/Erika/Jump_End.asset40
-rw-r--r--Assets/Data/RootMotionData/Erika/LongSword_Attk_1.asset58
-rw-r--r--Assets/Data/RootMotionData/Erika/SuperKickCombo.asset12
-rw-r--r--Assets/Data/RootMotionData/Erika/Take 001.asset54
-rw-r--r--Assets/Editor/EditorIcons.cs647
-rw-r--r--Assets/Editor/EditorIcons.cs.meta11
-rw-r--r--Assets/Editor/GUIStyleViwer.cs59
-rw-r--r--Assets/Editor/GUIStyleViwer.cs.meta11
-rw-r--r--Assets/Scripts/Unit/RootMotion/Editor/RootMotionEditor.cs2
-rw-r--r--Assets/Scripts/Unit/RootMotion/RootMotionScene.unity4007
-rw-r--r--Assets/Scripts/Unit/TimelineEvent.cs2
35 files changed, 5525 insertions, 349 deletions
diff --git a/Assets/ActionTool/ActionToolGizmos.cs b/Assets/ActionTool/ActionToolGizmos.cs
new file mode 100644
index 00000000..dfbbae0a
--- /dev/null
+++ b/Assets/ActionTool/ActionToolGizmos.cs
@@ -0,0 +1,21 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class ActionToolGizmos : MonoBehaviour
+{
+
+ private void OnDrawGizmos()
+ {
+ Gizmos.color = Color.yellow;
+ Gizmos.DrawCube(transform.position, new Vector3(0.1f, 0.1f, 0.1f));
+
+ Gizmos.color = Color.red;
+ Gizmos.DrawLine(Vector3.zero, Vector3.right * 1000);
+ Gizmos.color = Color.green;
+ Gizmos.DrawLine(Vector3.zero, Vector3.up * 1000);
+ Gizmos.color = Color.blue;
+ Gizmos.DrawLine(-Vector3.forward * 1000, Vector3.forward * 1000);
+ }
+
+}
diff --git a/Assets/ActionTool/ActionToolGizmos.cs.meta b/Assets/ActionTool/ActionToolGizmos.cs.meta
new file mode 100644
index 00000000..1339ea05
--- /dev/null
+++ b/Assets/ActionTool/ActionToolGizmos.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: f2a6b1bbe8a21fe44b9a3626c5c94ec2
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/ActionTool/Editor/ActionData.cs b/Assets/ActionTool/Editor/ActionData.cs
index 4465d314..958e2c53 100644
--- a/Assets/ActionTool/Editor/ActionData.cs
+++ b/Assets/ActionTool/Editor/ActionData.cs
@@ -20,11 +20,29 @@ namespace ActionTool
private AnimationEventBase m_CurEventInfo; // 当前正在编辑的event
- private float m_TotalFrame;
- private int m_PrevFrame;
+ #region metadata
+ private float m_TotalFrame; //timeline采样的总帧数
+ public float totalFrame { get { return m_TotalFrame; } }
+ private float m_SampleRate; // 每次采样的时间间隔
+ public float sampleRate { get { return m_SampleRate; } }
+ #endregion
+
+ public float curAnimFrame { get { return m_CurAnimFrame; } }
- private float m_AnimRate; // 每帧时间
+ public float curAnimTimeNormal
+ {
+ get
+ {
+ return m_CurAnimFrame / m_TotalFrame;
+ }
+ set
+ {
+ float v = value % m_TotalFrame;
+ m_CurAnimFrame = v * m_TotalFrame;
+ }
+ }
+ private int m_PrevFrame;
private float m_CurAnimFrame;
private double m_PrevLocalTime;
@@ -39,7 +57,7 @@ namespace ActionTool
if(m_Clip != null)
{
m_TotalFrame = m_Clip.length * ActionManager.FPS;
- m_AnimRate = m_Clip.length / m_TotalFrame;
+ m_SampleRate = m_Clip.length / m_TotalFrame;
}
m_PrevFrame = -1;
m_CurAnimFrame = 0;
@@ -114,19 +132,19 @@ namespace ActionTool
public void UpdateFrame()
{
- if (!ActionManager.IsPlay)
- return;
-
- m_CurAnimFrame += (float)(EditorApplication.timeSinceStartup - m_PrevLocalTime) * (ActionManager.FPS * ActionManager.Speed);
+ if (ActionManager.IsPlay)
+ {
+ m_CurAnimFrame += (float)(EditorApplication.timeSinceStartup - m_PrevLocalTime) * (ActionManager.FPS * ActionManager.Speed);
- if (m_CurAnimFrame > m_TotalFrame)
- {
- m_Animator.transform.position = ActionManager.s_InitPosition;
- m_Animator.transform.rotation = ActionManager.s_InitRotation;
+ if (m_CurAnimFrame > m_TotalFrame)
+ {
+ m_Animator.transform.position = ActionManager.s_InitPosition;
+ m_Animator.transform.rotation = ActionManager.s_InitRotation;
+ }
+ m_CurAnimFrame %= m_TotalFrame;
}
- m_CurAnimFrame %= m_TotalFrame;
- SampleFrame(EditorApplication.timeSinceStartup - m_PrevLocalTime);
+ SampleFrame();
RunEvent();
@@ -134,7 +152,7 @@ namespace ActionTool
}
// 播放当前帧
- public void SampleFrame(double dt)
+ public void SampleFrame()
{
if (m_Animator == null)
return;
@@ -154,7 +172,7 @@ namespace ActionTool
public int GetCurrentFrame()
{
- float animTime = m_AnimRate * m_CurAnimFrame;
+ float animTime = sampleRate * m_CurAnimFrame;
int curFrame = Mathf.RoundToInt(animTime * ActionManager.FPS);
return curFrame;
}
@@ -220,7 +238,7 @@ namespace ActionTool
m_CurAnimFrame = 0;
m_PrevFrame = 0;
m_PrevLocalTime = 0;
- m_AnimRate = 0;
+ m_SampleRate = 0;
}
}
diff --git a/Assets/ActionTool/Editor/ActionEditor.cs b/Assets/ActionTool/Editor/ActionEditor.cs
index 71942d34..2835714a 100644
--- a/Assets/ActionTool/Editor/ActionEditor.cs
+++ b/Assets/ActionTool/Editor/ActionEditor.cs
@@ -15,11 +15,13 @@ namespace ActionTool
ActionManager.AnimationWindow = GetWindow<ActionEditor>();
}
- private string m_SearchText = "";
+ string m_SearchText = "";
+ ActionEditorStyles styles;
+ ActionEditorUI ui;
public void OnEnable()
{
-
+ titleContent = new GUIContent("Action Editor");
}
public void OnDisable()
@@ -28,6 +30,11 @@ namespace ActionTool
public void OnGUI()
{
+ if (styles == null) styles = ActionEditorStyles.Get();
+ if (ui == null) ui = ActionEditorUI.Get();
+ if (ActionManager.CurrentUnit == null)
+ ActionManager.Release();
+
GUILayout.Space(5);
GUI_SelectUnit();
GUILayout.Space(5);
@@ -68,7 +75,7 @@ namespace ActionTool
private void GUI_AnimationList()
{
if (!ActionManager.HasSelectObj())
- return;
+ return;
string unitName = ActionManager.GetUnitName();
@@ -102,11 +109,17 @@ namespace ActionTool
if (!show)
continue;
bool bChecked = ActionManager.CurrentAnimationName == animName;
- bool check = GUILayout.Toggle(bChecked, animName, style, GUILayout.Height(15));
+ EditorGUILayout.BeginHorizontal();
+ bool check = GUILayout.Toggle(bChecked, animName, style, GUILayout.Width(position.width - 42), GUILayout.Height(15));
if (check && ActionManager.CurrentAnimationName != animName)
ActionManager.OnSelectAnimation(animName);
+ if(GUILayout.Button("", styles.selectObj, GUILayout.Width(15), GUILayout.Height(15)))
+ {
+ ui.SelectObject(file);
+ }
+ EditorGUILayout.EndHorizontal();
}
-
+
EditorGUILayout.EndScrollView();
style.alignment = prevAnchor;
diff --git a/Assets/ActionTool/Editor/ActionEditorStyles.cs b/Assets/ActionTool/Editor/ActionEditorStyles.cs
index c7c15aaf..664753ef 100644
--- a/Assets/ActionTool/Editor/ActionEditorStyles.cs
+++ b/Assets/ActionTool/Editor/ActionEditorStyles.cs
@@ -8,9 +8,12 @@ namespace ActionTool
internal class ActionEditorStyles
{
public GUIStyle textBold;
+ public GUIStyle selectObj;
+ public GUIStyle textSmall;
- private static ActionEditorStyles s_instance;
+ Texture2D m_SelectIcon;
+ private static ActionEditorStyles s_instance;
public static ActionEditorStyles Get()
{
bool flag = s_instance == null;
@@ -23,9 +26,22 @@ namespace ActionTool
private ActionEditorStyles()
{
+ m_SelectIcon = (Texture2D)Resources.Load<Texture2D>("select_white");
+ m_SelectIcon.filterMode = FilterMode.Point;
+
InitStyle(out textBold, GUI.skin.label, s => {
s.fontStyle = FontStyle.Bold;
});
+ InitStyle(out selectObj, GUI.skin.button, s => {
+ s.normal.background = m_SelectIcon;
+ s.active.background = m_SelectIcon;
+ s.focused.background = m_SelectIcon;
+ s.hover.background = m_SelectIcon;
+ s.normal.background = m_SelectIcon;
+ });
+ InitStyle(out textSmall, GUI.skin.label, s => {
+ s.fontSize = 8;
+ });
}
private delegate void Initter(GUIStyle style);
diff --git a/Assets/ActionTool/Editor/ActionEditorUI.cs b/Assets/ActionTool/Editor/ActionEditorUI.cs
index effa6be7..f04c10ea 100644
--- a/Assets/ActionTool/Editor/ActionEditorUI.cs
+++ b/Assets/ActionTool/Editor/ActionEditorUI.cs
@@ -7,7 +7,11 @@ namespace ActionTool
{
internal class ActionEditorUI
{
- private static ActionEditorUI s_instance;
+ static ActionEditorUI s_instance;
+
+ static Material m_material;
+
+ public Material defaultUIMaterail { get { return m_material; } }
public static ActionEditorUI Get()
{
@@ -21,6 +25,8 @@ namespace ActionTool
private ActionEditorUI()
{
+ m_material = new Material(Shader.Find("Hidden/Internal-Colored"));
+ m_material.hideFlags = HideFlags.HideAndDontSave;
}
public void DrawVerticalLineFast(float x, float minY, float maxY, Color color)
@@ -61,5 +67,20 @@ namespace ActionTool
}
}
+ public void SelectObject(Object obj)
+ {
+ Selection.activeObject = obj;
+ EditorGUIUtility.PingObject(obj);
+ }
+
+ public void SelectObject(string path)
+ {
+ Object obj = AssetDatabase.LoadAssetAtPath(path, typeof(Object)) as Object;
+ if(obj)
+ {
+ SelectObject(obj);
+ }
+ }
+
}
} \ No newline at end of file
diff --git a/Assets/ActionTool/Editor/ActionManager.cs b/Assets/ActionTool/Editor/ActionManager.cs
index 32c71434..08d48781 100644
--- a/Assets/ActionTool/Editor/ActionManager.cs
+++ b/Assets/ActionTool/Editor/ActionManager.cs
@@ -17,6 +17,7 @@ namespace ActionTool
public static ActionEventEditor EventEditWindow;
public static ActionColliderEditor ColliderWindow;
+ //规定timeline上事件的采样频率是30帧
public const int FPS = 30;
public static float Speed = 1;
@@ -44,6 +45,7 @@ namespace ActionTool
private static AnimatorOverrideController s_OverrideContorller;
private static ActionData s_CurActionData;
+ public static ActionData actionData { get { return s_CurActionData; } }
public static Vector3 s_InitPosition = Vector3.zero;
@@ -51,9 +53,18 @@ namespace ActionTool
private static RootMotionData s_RootMotion;
+ private static ActionToolGizmos s_Gizmos;
+ public static ActionToolGizmos gizmos { get { return s_Gizmos; } }
+
+ // 是否在自动播放
private static bool s_IsPlay;
public static bool IsPlay { get { return s_IsPlay; } }
+ private static GameObject s_RootActionTool;
+ private const string kRootActionTool = "RootActionTool";
+
+ public const int kMaxEventsPerFrame = 10;
+
public static void OnSelectObj(GameObject obj)
{
Release();
@@ -79,7 +90,7 @@ namespace ActionTool
s_OverrideContorller["EmptyAction"] = clip;
}
- string rootmotionData = s_RootMotionDataFolder + s_CurrentUnit.name + "/" + animation.Replace(' ', '_') + ".asset";
+ string rootmotionData = s_RootMotionDataFolder + s_CurrentUnit.name + "/" + animation + ".asset";
s_RootMotion = AssetDatabase.LoadAssetAtPath<RootMotionData>(rootmotionData);
if (s_RootMotion == null)
{
@@ -89,7 +100,6 @@ namespace ActionTool
if (s_CurActionData == null)
s_CurActionData = new ActionData();
s_CurActionData.Initialize(s_Animator, clip, s_RootMotion);
-
}
public static bool HasSelectObj()
@@ -112,6 +122,10 @@ namespace ActionTool
s_CurrentUnit = null;
s_CurrentAnimationName = null;
s_Animator = null;
+ s_RootActionTool = GameObject.Find(kRootActionTool);
+ if (s_RootActionTool)
+ GameObject.DestroyImmediate(s_RootActionTool);
+ s_CurActionData = null;
}
private static void InitializeUnitInstance(GameObject unit)
@@ -122,6 +136,12 @@ namespace ActionTool
unit.transform.position = s_InitPosition;
unit.transform.rotation = s_InitRotation;
+ s_RootActionTool = GameObject.Find(kRootActionTool);
+ if(s_RootActionTool == null)
+ s_RootActionTool = new GameObject(kRootActionTool);
+
+ unit.transform.SetParent(s_RootActionTool.transform);
+
s_Animator = unit.GetComponentInChildren<Animator>();
if(s_Animator == null)
{
@@ -141,6 +161,8 @@ namespace ActionTool
s_Animator.runtimeAnimatorController = s_OverrideContorller;
s_Animator.applyRootMotion = false;
+
+ s_Gizmos = unit.AddComponent<ActionToolGizmos>();
}
public static void UpdateFrame()
@@ -154,10 +176,51 @@ namespace ActionTool
s_IsPlay = !s_IsPlay;
if(s_IsPlay && s_CurActionData != null)
{
- s_CurActionData.SetCurrentAnimTime(0);
s_CurActionData.StartFrame();
}
}
+ public static void Start()
+ {
+ if (s_CurActionData != null)
+ s_CurActionData.curAnimTimeNormal = 0;
+ }
+
+ public static void Stop()
+ {
+ if (s_CurActionData != null)
+ {
+ if (s_IsPlay)
+ Pause();
+ s_CurActionData.curAnimTimeNormal = 0;
+ }
+ }
+
+ public static void Previous()
+ {
+ if (s_IsPlay)
+ Pause();
+ float cur = s_CurActionData.curAnimFrame;
+ float pre = Mathf.Ceil(cur - 1);
+ pre = (int)Mathf.Clamp(pre, 0, s_CurActionData.totalFrame);
+ s_CurActionData.SetCurrentAnimTime(pre);
+ }
+
+ public static void Next()
+ {
+ if (s_IsPlay)
+ Pause();
+ float cur = s_CurActionData.curAnimFrame;
+ float next = Mathf.Floor(cur + 1);
+ next = (int)Mathf.Clamp(next, 0, s_CurActionData.totalFrame);
+ s_CurActionData.SetCurrentAnimTime(next);
+ }
+
+ public static void End()
+ {
+ if (s_CurActionData != null)
+ s_CurActionData.curAnimTimeNormal = 1;
+ }
+
}
} \ No newline at end of file
diff --git a/Assets/ActionTool/Editor/ActionPreviewEditor.cs b/Assets/ActionTool/Editor/ActionPreviewEditor.cs
index 9b557128..d0934cf9 100644
--- a/Assets/ActionTool/Editor/ActionPreviewEditor.cs
+++ b/Assets/ActionTool/Editor/ActionPreviewEditor.cs
@@ -8,22 +8,25 @@ namespace ActionTool
public class ActionPreviewEditor : EditorWindow
{
- private Texture m_UITextureStop;
- private Texture m_UITexturePause;
- private Texture m_UITexturePlay;
- private Texture m_UITextureNext;
- private Texture m_UITextureEnd;
- private Texture m_UITexturePrevious;
- private Texture m_UITextureStart;
+ Texture m_UITextureStop;
+ Texture m_UITexturePause;
+ Texture m_UITexturePlay;
+ Texture m_UITextureNext;
+ Texture m_UITextureEnd;
+ Texture m_UITexturePrevious;
+ Texture m_UITextureStart;
- private GUIStyle m_StyleBold;
+ GUIStyle m_StyleBold;
- private const float kToolbarControlMargin = 5;
- private const float kToolbarHeight = 50;
- private const float kToolbarControlSize = kToolbarHeight - kToolbarControlMargin * 2;
+ const float kToolbarControlMargin = 5;
+ const float kToolbarHeight = 50;
+ const float kToolbarControlSize = kToolbarHeight - kToolbarControlMargin * 2;
+ const float kTimeLineViewXOffset = 20;
+ const float kFrameWidth = 10;
+ const float kFrameHeight = 20;
- private ActionEditorStyles styles;
- private ActionEditorUI ui;
+ ActionEditorStyles styles;
+ ActionEditorUI ui;
private void OnEnable()
{
@@ -40,6 +43,11 @@ namespace ActionTool
styles = ActionEditorStyles.Get();
}
+ void Update()
+ {
+ ActionManager.UpdateFrame();
+ }
+
private void OnDisable()
{
ActionManager.PreviewWindow = null;
@@ -58,6 +66,7 @@ namespace ActionTool
GUI_Toolbar();
GUI_Detail();
+ GUI_TimeLineView();
}
void GUI_Toolbar()
@@ -83,7 +92,7 @@ namespace ActionTool
Rect rect = new Rect(x, y, kToolbarControlSize, kToolbarControlSize);
if(GUI.Button(rect, m_UITextureStart))
{
-
+ ActionManager.Start();
}
x += kToolbarControlSize;
}
@@ -94,7 +103,7 @@ namespace ActionTool
Rect rect = new Rect(x, y, kToolbarControlSize, kToolbarControlSize);
if (GUI.Button(rect, m_UITexturePrevious))
{
-
+ ActionManager.Previous();
}
x += kToolbarControlSize;
}
@@ -105,7 +114,7 @@ namespace ActionTool
Rect rect = new Rect(x, y, kToolbarControlSize, kToolbarControlSize);
if (GUI.Button(rect, m_UITextureStop))
{
-
+ ActionManager.Stop();
}
x += kToolbarControlSize;
}
@@ -128,7 +137,7 @@ namespace ActionTool
Rect rect = new Rect(x, y, kToolbarControlSize, kToolbarControlSize);
if (GUI.Button(rect, m_UITextureNext))
{
-
+ ActionManager.Next();
}
x += kToolbarControlSize;
}
@@ -139,7 +148,7 @@ namespace ActionTool
Rect rect = new Rect(x, y, kToolbarControlSize, kToolbarControlSize);
if (GUI.Button(rect, m_UITextureEnd))
{
-
+ ActionManager.End();
}
x += kToolbarControlSize;
}
@@ -153,12 +162,101 @@ namespace ActionTool
x += 105;
GUI.Label(new Rect(x, y, 210, 20), ActionManager.CurrentAnimationName, styles.textBold);
x += 200;
+ }
+ void GUI_TimeLineView()
+ {
+ if (ActionManager.actionData == null)
+ return;
+
+ float y = 80;
+
+ GUI_FrameText(ref y);
+ GUI_Slider(ref y);
+ GUI_Grid(ref y);
+ GUI_Events(ref y);
}
- void Update()
+ void GUI_FrameText(ref float y)
{
- ActionManager.UpdateFrame();
+ ActionData action = ActionManager.actionData;
+ int sampleCount = (int)action.totalFrame + 1;
+ Rect rect = new Rect(0, y, 20, 15);
+ for(int i = 0; i < sampleCount; i++)
+ {
+ rect.x = kTimeLineViewXOffset + i * kFrameWidth - 7;
+ if(i % 5 == 0)
+ {
+ Color c = GUI.color;
+ GUI.color = i % 10 == 0 ? Color.yellow : GUI.color;
+ GUI.Label(rect, i.ToString(), styles.textSmall);
+ GUI.color = c;
+ }
+ }
+ y += 15;
+ }
+
+ void GUI_Slider( ref float y)
+ {
+ ActionData action = ActionManager.actionData;
+ Rect rect = new Rect(kTimeLineViewXOffset - 4, y, action.totalFrame * kFrameWidth + 8, 15);
+ float t = GUI.HorizontalSlider(rect,action.curAnimTimeNormal, 0, 1);
+ if(t != action.curAnimTimeNormal)
+ {
+ if(ActionManager.IsPlay)
+ ActionManager.Pause();
+ action.curAnimTimeNormal = t;
+ }
+
+ if(ActionManager.IsPlay)
+ {
+ this.Repaint();
+ }
+
+ y += 20;
+ }
+
+ void GUI_Grid(ref float y)
+ {
+ ActionData action = ActionManager.actionData;
+ int sampleCount = (int)action.totalFrame + 1;
+
+ Rect bgRect = new Rect(kTimeLineViewXOffset, y, action.totalFrame * kFrameWidth, ActionManager.kMaxEventsPerFrame * kFrameHeight);
+ GUI.Box(bgRect, "");
+
+ ui.defaultUIMaterail.SetPass(0);
+ GL.PushMatrix();
+ GL.LoadPixelMatrix();
+ bool bWin = Application.platform == RuntimePlatform.WindowsEditor;
+ if (bWin)
+ GL.Begin(GL.QUADS);
+ else
+ GL.Begin(GL.LINES);
+ Color lineColor = new Color(0.3f, 0.3f, 0.3f);
+ Color lineColor2 = new Color(0.5f, 0.5f, 0.5f);
+ for (int i = 0; i < ActionManager.kMaxEventsPerFrame + 1; i++)
+ {
+ ui.DrawHorizontalLineFast(y + i * kFrameHeight, kTimeLineViewXOffset, kTimeLineViewXOffset + action.totalFrame * kFrameWidth, lineColor);
+ }
+ for(int i = 0; i <= sampleCount; ++i)
+ {
+ Color c = i % 5 == 0 ? lineColor2 : lineColor;
+ float x = kTimeLineViewXOffset + i * kFrameWidth;
+ x = Mathf.Clamp(x, kTimeLineViewXOffset, kTimeLineViewXOffset + action.totalFrame * kFrameWidth);
+ ui.DrawVerticalLineFast(x, y, y + ActionManager.kMaxEventsPerFrame * kFrameHeight, c);
+ }
+
+ ui.DrawVerticalLineFast(kTimeLineViewXOffset + bgRect.width * action.curAnimTimeNormal, y, y + ActionManager.kMaxEventsPerFrame * kFrameHeight, Color.red);
+
+ GL.PopMatrix();
+ GL.End();
+
+ y += ActionManager.kMaxEventsPerFrame * kFrameHeight;
+ }
+
+ void GUI_Events(ref float y)
+ {
+
}
}
diff --git a/Assets/ActionTool/Resources/select_dark.png b/Assets/ActionTool/Resources/select_dark.png
new file mode 100644
index 00000000..0e2e5d1c
--- /dev/null
+++ b/Assets/ActionTool/Resources/select_dark.png
Binary files differ
diff --git a/Assets/ActionTool/Resources/select_dark.png.meta b/Assets/ActionTool/Resources/select_dark.png.meta
new file mode 100644
index 00000000..fe488367
--- /dev/null
+++ b/Assets/ActionTool/Resources/select_dark.png.meta
@@ -0,0 +1,88 @@
+fileFormatVersion: 2
+guid: 02237789ccf5fb14991c17d178ecc63e
+TextureImporter:
+ fileIDToRecycleName: {}
+ externalObjects: {}
+ serializedVersion: 9
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: -1
+ aniso: -1
+ mipBias: -100
+ wrapU: -1
+ wrapV: -1
+ wrapW: -1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ platformSettings:
+ - serializedVersion: 2
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/ActionTool/Resources/select_white.png b/Assets/ActionTool/Resources/select_white.png
new file mode 100644
index 00000000..7f252f9b
--- /dev/null
+++ b/Assets/ActionTool/Resources/select_white.png
Binary files differ
diff --git a/Assets/ActionTool/Resources/select_white.png.meta b/Assets/ActionTool/Resources/select_white.png.meta
new file mode 100644
index 00000000..b5fcd79c
--- /dev/null
+++ b/Assets/ActionTool/Resources/select_white.png.meta
@@ -0,0 +1,88 @@
+fileFormatVersion: 2
+guid: 075f22766660e094cae3e5f2c82e5522
+TextureImporter:
+ fileIDToRecycleName: {}
+ externalObjects: {}
+ serializedVersion: 9
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: -1
+ aniso: -1
+ mipBias: -100
+ wrapU: -1
+ wrapV: -1
+ wrapW: -1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ platformSettings:
+ - serializedVersion: 2
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Data/RootMotionData/Erika/2Handed_HitReaction_Front_04.asset b/Assets/Data/RootMotionData/Erika/2Handed_HitReaction_Front_04.asset
index 08810e19..4be8aa0d 100644
--- a/Assets/Data/RootMotionData/Erika/2Handed_HitReaction_Front_04.asset
+++ b/Assets/Data/RootMotionData/Erika/2Handed_HitReaction_Front_04.asset
@@ -19,41 +19,41 @@ MonoBehaviour:
- {x: 0, y: 0, z: 0}
- {x: 0, y: 1.264639e-19, z: 8.2509666e-11}
- {x: 0, y: 3.903128e-18, z: 0.0000000032014214}
- - {x: 0, y: -1.4509674e-11, z: -0.009466618}
- - {x: 0, y: -5.5604108e-11, z: -0.036278583}
- - {x: 0, y: -1.472081e-10, z: -0.09604507}
- - {x: 0, y: -2.061769e-10, z: -0.13451903}
- - {x: 0, y: -2.721331e-10, z: -0.17755169}
- - {x: 0, y: -3.6971806e-10, z: -0.24122022}
- - {x: 0, y: -4.4889353e-10, z: -0.29287788}
- - {x: 0, y: -5.3221383e-10, z: -0.34723943}
- - {x: 0, y: -6.483641e-10, z: -0.42302123}
- - {x: 0, y: -7.38331e-10, z: -0.4817197}
- - {x: 0, y: -8.2992674e-10, z: -0.54148024}
- - {x: 0, y: -9.534203e-10, z: -0.6220531}
- - {x: 0, y: -0.000000001046273, z: -0.6826348}
- - {x: 0, y: -0.0000000011386266, z: -0.7428901}
- - {x: 0, y: -0.000000001259978, z: -0.8220648}
- - {x: 0, y: -0.0000000013489562, z: -0.88011837}
- - {x: 0, y: -0.0000000014355676, z: -0.93662727}
- - {x: 0, y: -0.0000000015464534, z: -1.008974}
- - {x: 0, y: -0.0000000016255297, z: -1.060567}
- - {x: 0, y: -0.0000000017005184, z: -1.1094933}
- - {x: 0, y: -0.0000000017932684, z: -1.1700076}
- - {x: 0, y: -0.0000000018567813, z: -1.2114457}
- - {x: 0, y: -0.000000001914527, z: -1.2491215}
- - {x: 0, y: -0.0000000019816593, z: -1.2929217}
- - {x: 0, y: -0.0000000020239668, z: -1.3205249}
- - {x: 0, y: -0.0000000020587703, z: -1.3432322}
- - {x: 0, y: -0.000000002092544, z: -1.3652672}
- - {x: 0, y: -0.0000000021076187, z: -1.3751023}
- - {x: 0, y: -0.0000000021132978, z: -1.378808}
- - {x: 0, y: -0.0000000021134872, z: -1.3789315}
- - {x: 0, y: -0.000000002113469, z: -1.3789307}
- - {x: 0, y: -0.0000000021134687, z: -1.3789315}
- - {x: 0, y: -0.000000002113469, z: -1.3789315}
- - {x: 0, y: -0.000000002113469, z: -1.3789315}
- - {x: 0, y: -0.000000002113469, z: -1.3789315}
- - {x: 0, y: -0.000000002113469, z: -1.3789315}
+ - {x: 0, y: 0, z: -0.009466618}
+ - {x: 0, y: 0, z: -0.036278583}
+ - {x: 0, y: 0, z: -0.09604507}
+ - {x: 0, y: 0, z: -0.13451903}
+ - {x: 0, y: 0, z: -0.17755169}
+ - {x: 0, y: 0, z: -0.24122022}
+ - {x: 0, y: 0, z: -0.29287788}
+ - {x: 0, y: 0, z: -0.34723943}
+ - {x: 0, y: 0, z: -0.42302123}
+ - {x: 0, y: 0, z: -0.4817197}
+ - {x: 0, y: 0, z: -0.54148024}
+ - {x: 0, y: 0, z: -0.6220531}
+ - {x: 0, y: 0, z: -0.6826348}
+ - {x: 0, y: 0, z: -0.7428901}
+ - {x: 0, y: 0, z: -0.8220648}
+ - {x: 0, y: 0, z: -0.88011837}
+ - {x: 0, y: 0, z: -0.93662727}
+ - {x: 0, y: 0, z: -1.008974}
+ - {x: 0, y: 0, z: -1.060567}
+ - {x: 0, y: 0, z: -1.1094933}
+ - {x: 0, y: 0, z: -1.1700076}
+ - {x: 0, y: 0, z: -1.2114457}
+ - {x: 0, y: 0, z: -1.2491215}
+ - {x: 0, y: 0, z: -1.2929217}
+ - {x: 0, y: 0, z: -1.3205249}
+ - {x: 0, y: 0, z: -1.3432322}
+ - {x: 0, y: 0, z: -1.3652672}
+ - {x: 0, y: 0, z: -1.3751023}
+ - {x: 0, y: 0, z: -1.378808}
+ - {x: 0, y: 0, z: -1.3789315}
+ - {x: 0, y: 0, z: -1.3789307}
+ - {x: 0, y: 0, z: -1.3789315}
+ - {x: 0, y: 0, z: -1.3789315}
+ - {x: 0, y: 0, z: -1.3789315}
+ - {x: 0, y: 0, z: -1.3789315}
+ - {x: 0, y: 0, z: -1.3789315}
animationLength: 1.3000001
fps: 30
diff --git a/Assets/Data/RootMotionData/Erika/Air_Attk_1.asset b/Assets/Data/RootMotionData/Erika/Air_Attk_1.asset
index 8cb3ad0e..9945d828 100644
--- a/Assets/Data/RootMotionData/Erika/Air_Attk_1.asset
+++ b/Assets/Data/RootMotionData/Erika/Air_Attk_1.asset
@@ -16,7 +16,7 @@ MonoBehaviour:
frameCount: 53
positionList:
- {x: 0, y: 0, z: 0}
- - {x: 0, y: -0.01402582, z: 0.11685909}
+ - {x: 0, y: 0, z: 0.11685909}
- {x: 0, y: 0.0038920105, z: 0.050758235}
- {x: 0, y: 0.11796358, z: -0.06331767}
- {x: 0, y: 0.21808325, z: -0.11098495}
@@ -58,15 +58,15 @@ MonoBehaviour:
- {x: 0, y: 0.013978141, z: 1.328803}
- {x: 0, y: 0.013088894, z: 1.3285437}
- {x: 0, y: 0.011408583, z: 1.3273901}
- - {x: 0, y: -0.010511359, z: 1.2994208}
- - {x: 0, y: -0.03489442, z: 1.270081}
- - {x: 0, y: -0.056588635, z: 1.2604274}
- - {x: 0, y: -0.06323844, z: 1.2758833}
- - {x: 0, y: -0.06393176, z: 1.2996848}
- - {x: 0, y: -0.057790566, z: 1.3334041}
- - {x: 0, y: -0.04804385, z: 1.3512549}
- - {x: 0, y: -0.03563547, z: 1.3570504}
- - {x: 0, y: -0.016693156, z: 1.3502839}
- - {x: 0, y: -0.0016701594, z: 1.3371003}
+ - {x: 0, y: 0, z: 1.2994208}
+ - {x: 0, y: 0, z: 1.270081}
+ - {x: 0, y: 0, z: 1.2604274}
+ - {x: 0, y: 0, z: 1.2758833}
+ - {x: 0, y: 0, z: 1.2996848}
+ - {x: 0, y: 0, z: 1.3334041}
+ - {x: 0, y: 0, z: 1.3512549}
+ - {x: 0, y: 0, z: 1.3570504}
+ - {x: 0, y: 0, z: 1.3502839}
+ - {x: 0, y: 0, z: 1.3371003}
animationLength: 1.7333335
fps: 30
diff --git a/Assets/Data/RootMotionData/Erika/Air_Attk_2.asset b/Assets/Data/RootMotionData/Erika/Air_Attk_2.asset
index bce12c13..e243dbe5 100644
--- a/Assets/Data/RootMotionData/Erika/Air_Attk_2.asset
+++ b/Assets/Data/RootMotionData/Erika/Air_Attk_2.asset
@@ -19,12 +19,12 @@ MonoBehaviour:
- {x: 0, y: 0.0018861138, z: -0.04854639}
- {x: 0, y: 0.012846799, z: -0.1101374}
- {x: 0, y: 0.0015018163, z: -0.17578407}
- - {x: 0, y: -0.028406397, z: -0.19903976}
- - {x: 0, y: -0.04665906, z: -0.21013288}
- - {x: 0, y: -0.04474539, z: -0.20978637}
- - {x: 0, y: -0.037252817, z: -0.18312216}
- - {x: 0, y: -0.03326225, z: -0.1352357}
- - {x: 0, y: -0.008963844, z: -0.053721294}
+ - {x: 0, y: 0, z: -0.19903976}
+ - {x: 0, y: 0, z: -0.21013288}
+ - {x: 0, y: 0, z: -0.20978637}
+ - {x: 0, y: 0, z: -0.18312216}
+ - {x: 0, y: 0, z: -0.1352357}
+ - {x: 0, y: 0, z: -0.053721294}
- {x: 0, y: 0.1275394, z: -0.0027054865}
- {x: 0, y: 0.43164122, z: 0.040732197}
- {x: 0, y: 0.3585973, z: 0.073963635}
diff --git a/Assets/Data/RootMotionData/Erika/Air_Combo.asset b/Assets/Data/RootMotionData/Erika/Air_Combo.asset
index 8b5461df..d45fbb09 100644
--- a/Assets/Data/RootMotionData/Erika/Air_Combo.asset
+++ b/Assets/Data/RootMotionData/Erika/Air_Combo.asset
@@ -16,11 +16,11 @@ MonoBehaviour:
frameCount: 51
positionList:
- {x: 0, y: 0, z: 0}
- - {x: 0, y: -0.049949616, z: -0.07886212}
- - {x: 0, y: -0.13038023, z: -0.110037416}
- - {x: 0, y: -0.23517597, z: -0.1861736}
- - {x: 0, y: -0.23930942, z: -0.19177134}
- - {x: 0, y: -0.12379871, z: -0.15675585}
+ - {x: 0, y: 0, z: -0.07886212}
+ - {x: 0, y: 0, z: -0.110037416}
+ - {x: 0, y: 0, z: -0.1861736}
+ - {x: 0, y: 0, z: -0.19177134}
+ - {x: 0, y: 0, z: -0.15675585}
- {x: 0, y: 0.21848512, z: -0.07740321}
- {x: 0, y: 0.44529167, z: -0.06577522}
- {x: 0, y: 0.5497054, z: -0.062845536}
@@ -52,19 +52,19 @@ MonoBehaviour:
- {x: 0, y: 0.9736964, z: -0.11633298}
- {x: 0, y: 0.7184422, z: -0.10630431}
- {x: 0, y: 0.17702444, z: -0.08333522}
- - {x: 0, y: -0.20846517, z: -0.09361906}
- - {x: 0, y: -0.2809676, z: -0.09352908}
- - {x: 0, y: -0.31321397, z: -0.09657228}
- - {x: 0, y: -0.3156399, z: -0.101231515}
- - {x: 0, y: -0.3034301, z: -0.10639236}
- - {x: 0, y: -0.2705926, z: -0.11110949}
- - {x: 0, y: -0.24082156, z: -0.11283821}
- - {x: 0, y: -0.21296683, z: -0.1129405}
- - {x: 0, y: -0.1872487, z: -0.11095592}
- - {x: 0, y: -0.17333648, z: -0.10881388}
- - {x: 0, y: -0.16171381, z: -0.1064918}
- - {x: 0, y: -0.14825103, z: -0.1032184}
- - {x: 0, y: -0.13856892, z: -0.10063857}
- - {x: 0, y: -0.12822527, z: -0.097869955}
+ - {x: 0, y: 0, z: -0.09361906}
+ - {x: 0, y: 0, z: -0.09352908}
+ - {x: 0, y: 0, z: -0.09657228}
+ - {x: 0, y: 0, z: -0.101231515}
+ - {x: 0, y: 0, z: -0.10639236}
+ - {x: 0, y: 0, z: -0.11110949}
+ - {x: 0, y: 0, z: -0.11283821}
+ - {x: 0, y: 0, z: -0.1129405}
+ - {x: 0, y: 0, z: -0.11095592}
+ - {x: 0, y: 0, z: -0.10881388}
+ - {x: 0, y: 0, z: -0.1064918}
+ - {x: 0, y: 0, z: -0.1032184}
+ - {x: 0, y: 0, z: -0.10063857}
+ - {x: 0, y: 0, z: -0.097869955}
animationLength: 1.6666667
fps: 30
diff --git a/Assets/Data/RootMotionData/Erika/Air_Dash.asset b/Assets/Data/RootMotionData/Erika/Air_Dash.asset
index 56644ad3..cc9c4894 100644
--- a/Assets/Data/RootMotionData/Erika/Air_Dash.asset
+++ b/Assets/Data/RootMotionData/Erika/Air_Dash.asset
@@ -16,8 +16,8 @@ MonoBehaviour:
frameCount: 56
positionList:
- {x: 0, y: 0, z: 0}
- - {x: 0, y: -0.06144274, z: 0.060503066}
- - {x: 0, y: -0.0531097, z: 0.027699996}
+ - {x: 0, y: 0, z: 0.060503066}
+ - {x: 0, y: 0, z: 0.027699996}
- {x: 0, y: 0.08726221, z: -0.028798752}
- {x: 0, y: 0.21601519, z: -0.04847658}
- {x: 0, y: 0.26547256, z: 0.018492958}
@@ -70,6 +70,6 @@ MonoBehaviour:
- {x: 0, y: 0.10910736, z: 3.8157358}
- {x: 0, y: 0.07513522, z: 3.8158278}
- {x: 0, y: 0.028885659, z: 3.8117692}
- - {x: 0, y: -0.0013893517, z: 3.8077414}
+ - {x: 0, y: 0, z: 3.8077414}
animationLength: 1.8333334
fps: 30
diff --git a/Assets/Data/RootMotionData/Erika/Combo.asset b/Assets/Data/RootMotionData/Erika/Combo.asset
index a84c19ec..28b90916 100644
--- a/Assets/Data/RootMotionData/Erika/Combo.asset
+++ b/Assets/Data/RootMotionData/Erika/Combo.asset
@@ -17,12 +17,12 @@ MonoBehaviour:
positionList:
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0.0000021101637, z: -0.105776474}
- - {x: 0, y: -0.000005958108, z: -0.09662273}
- - {x: 0, y: -0.000003661753, z: -0.064737886}
+ - {x: 0, y: 0, z: -0.09662273}
+ - {x: 0, y: 0, z: -0.064737886}
- {x: 0, y: 0.001341319, z: 0.004857974}
- - {x: 0, y: -0.010216355, z: 0.11227253}
- - {x: 0, y: -0.014578312, z: 0.28748173}
- - {x: 0, y: -0.0024406528, z: 0.4114227}
+ - {x: 0, y: 0, z: 0.11227253}
+ - {x: 0, y: 0, z: 0.28748173}
+ - {x: 0, y: 0, z: 0.4114227}
- {x: 0, y: 0.0029580141, z: 0.4394037}
- {x: 0, y: 0.0035496047, z: 0.44083515}
- {x: 0, y: 0.0035402952, z: 0.43578506}
@@ -41,7 +41,7 @@ MonoBehaviour:
- {x: 0, y: 0.001313701, z: 1.3586725}
- {x: 0, y: 0.0012199229, z: 1.3820256}
- {x: 0, y: 0.0011121184, z: 1.4091563}
- - {x: 0, y: -0.000742591, z: 1.4786873}
+ - {x: 0, y: 0, z: 1.4786873}
- {x: 0, y: 0.07321454, z: 1.6616862}
- {x: 0, y: 0.1252591, z: 1.7556591}
- {x: 0, y: 0.30729017, z: 1.8346072}
@@ -87,11 +87,11 @@ MonoBehaviour:
- {x: 0, y: 0.02403707, z: 4.0708184}
- {x: 0, y: 0.012751484, z: 4.0766582}
- {x: 0, y: 0.0028591626, z: 4.0787897}
- - {x: 0, y: -0.000007059687, z: 4.0765033}
- - {x: 0, y: -0.000003522061, z: 4.073756}
- - {x: 0, y: -0.0000076182605, z: 4.071428}
- - {x: 0, y: -0.000007928579, z: 4.0695057}
- - {x: 0, y: -0.000007618261, z: 4.0689235}
- - {x: 0, y: -0.000008363025, z: 4.068811}
+ - {x: 0, y: 0, z: 4.0765033}
+ - {x: 0, y: 0, z: 4.073756}
+ - {x: 0, y: 0, z: 4.071428}
+ - {x: 0, y: 0, z: 4.0695057}
+ - {x: 0, y: 0, z: 4.0689235}
+ - {x: 0, y: 0, z: 4.068811}
animationLength: 2.5833335
fps: 30
diff --git a/Assets/Data/RootMotionData/Erika/Heavy_Attk_1.asset b/Assets/Data/RootMotionData/Erika/Heavy_Attk_1.asset
index 2426eeac..682c5799 100644
--- a/Assets/Data/RootMotionData/Erika/Heavy_Attk_1.asset
+++ b/Assets/Data/RootMotionData/Erika/Heavy_Attk_1.asset
@@ -16,22 +16,22 @@ MonoBehaviour:
frameCount: 18
positionList:
- {x: 0, y: 0, z: 0}
- - {x: 0, y: -0.10121927, z: 0.017235149}
- - {x: 0, y: -0.20125484, z: -0.057761192}
- - {x: 0, y: -0.24124695, z: -0.10420668}
- - {x: 0, y: -0.22765595, z: -0.08414003}
- - {x: 0, y: -0.21077284, z: 0.027028996}
- - {x: 0, y: -0.15800393, z: 0.22411913}
- - {x: 0, y: -0.12729608, z: 0.26070005}
- - {x: 0, y: -0.11345948, z: 0.26010278}
- - {x: 0, y: -0.09733616, z: 0.25382838}
- - {x: 0, y: -0.0856085, z: 0.24970633}
- - {x: 0, y: -0.07437151, z: 0.24508432}
- - {x: 0, y: -0.060111273, z: 0.23649319}
- - {x: 0, y: -0.049683467, z: 0.2283483}
- - {x: 0, y: -0.03955828, z: 0.21941428}
- - {x: 0, y: -0.026483336, z: 0.20675625}
- - {x: 0, y: -0.016897857, z: 0.19714388}
- - {x: 0, y: -0.007386234, z: 0.18784356}
+ - {x: 0, y: 0, z: 0.017235149}
+ - {x: 0, y: 0, z: -0.057761192}
+ - {x: 0, y: 0, z: -0.10420668}
+ - {x: 0, y: 0, z: -0.08414003}
+ - {x: 0, y: 0, z: 0.027028996}
+ - {x: 0, y: 0, z: 0.22411913}
+ - {x: 0, y: 0, z: 0.26070005}
+ - {x: 0, y: 0, z: 0.26010278}
+ - {x: 0, y: 0, z: 0.25382838}
+ - {x: 0, y: 0, z: 0.24970633}
+ - {x: 0, y: 0, z: 0.24508432}
+ - {x: 0, y: 0, z: 0.23649319}
+ - {x: 0, y: 0, z: 0.2283483}
+ - {x: 0, y: 0, z: 0.21941428}
+ - {x: 0, y: 0, z: 0.20675625}
+ - {x: 0, y: 0, z: 0.19714388}
+ - {x: 0, y: 0, z: 0.18784356}
animationLength: 0.5833334
fps: 30
diff --git a/Assets/Data/RootMotionData/Erika/Heavy_Attk_2.asset b/Assets/Data/RootMotionData/Erika/Heavy_Attk_2.asset
index 95aab996..5e05bdf2 100644
--- a/Assets/Data/RootMotionData/Erika/Heavy_Attk_2.asset
+++ b/Assets/Data/RootMotionData/Erika/Heavy_Attk_2.asset
@@ -19,18 +19,18 @@ MonoBehaviour:
- {x: 0, y: 0.013788242, z: 0.0563115}
- {x: 0, y: 0.024324909, z: 0.027914938}
- {x: 0, y: 0.012976574, z: 0.014520155}
- - {x: 0, y: -0.012691392, z: -0.0029438706}
- - {x: 0, y: -0.047625646, z: -0.05207822}
- - {x: 0, y: -0.0887559, z: -0.12517835}
- - {x: 0, y: -0.10820565, z: -0.092426695}
- - {x: 0, y: -0.12479103, z: 0.116318546}
- - {x: 0, y: -0.13240843, z: 0.29470223}
- - {x: 0, y: -0.12638496, z: 0.323296}
- - {x: 0, y: -0.103300825, z: 0.3303945}
- - {x: 0, y: -0.073106065, z: 0.33111677}
- - {x: 0, y: -0.053594008, z: 0.32916522}
- - {x: 0, y: -0.034086976, z: 0.32611987}
- - {x: 0, y: -0.007106802, z: 0.32034478}
+ - {x: 0, y: 0, z: -0.0029438706}
+ - {x: 0, y: 0, z: -0.05207822}
+ - {x: 0, y: 0, z: -0.12517835}
+ - {x: 0, y: 0, z: -0.092426695}
+ - {x: 0, y: 0, z: 0.116318546}
+ - {x: 0, y: 0, z: 0.29470223}
+ - {x: 0, y: 0, z: 0.323296}
+ - {x: 0, y: 0, z: 0.3303945}
+ - {x: 0, y: 0, z: 0.33111677}
+ - {x: 0, y: 0, z: 0.32916522}
+ - {x: 0, y: 0, z: 0.32611987}
+ - {x: 0, y: 0, z: 0.32034478}
- {x: 0, y: 0.013560759, z: 0.31507683}
- {x: 0, y: 0.034352697, z: 0.30919233}
- {x: 0, y: 0.061864756, z: 0.30065176}
diff --git a/Assets/Data/RootMotionData/Erika/Heavy_Attk_Rush.asset b/Assets/Data/RootMotionData/Erika/Heavy_Attk_Rush.asset
index ec168e6d..9b78775f 100644
--- a/Assets/Data/RootMotionData/Erika/Heavy_Attk_Rush.asset
+++ b/Assets/Data/RootMotionData/Erika/Heavy_Attk_Rush.asset
@@ -16,22 +16,22 @@ MonoBehaviour:
frameCount: 28
positionList:
- {x: 0, y: 0, z: 0}
- - {x: 0, y: -0.0010714665, z: -0.0048124744}
- - {x: 0, y: -0.00082352234, z: -0.0057928213}
- - {x: 0, y: -0.0006819552, z: -0.0076048383}
- - {x: 0, y: -0.0019136078, z: -0.013302746}
- - {x: 0, y: -0.0071784034, z: -0.028446484}
- - {x: 0, y: -0.013086612, z: -0.10303381}
- - {x: 0, y: -0.025359262, z: -0.3472058}
- - {x: 0, y: -0.026008323, z: -0.55496943}
- - {x: 0, y: -0.031355787, z: -0.583812}
- - {x: 0, y: -0.04173152, z: -0.5865203}
- - {x: 0, y: -0.05356302, z: -0.5856293}
- - {x: 0, y: -0.066357255, z: -0.5812838}
- - {x: 0, y: -0.06950841, z: -0.5775597}
- - {x: 0, y: -0.06350201, z: -0.5748945}
- - {x: 0, y: -0.036039293, z: -0.5744406}
- - {x: 0, y: -0.0027483637, z: -0.5749486}
+ - {x: 0, y: 0, z: -0.0048124744}
+ - {x: 0, y: 0, z: -0.0057928213}
+ - {x: 0, y: 0, z: -0.0076048383}
+ - {x: 0, y: 0, z: -0.013302746}
+ - {x: 0, y: 0, z: -0.028446484}
+ - {x: 0, y: 0, z: -0.10303381}
+ - {x: 0, y: 0, z: -0.3472058}
+ - {x: 0, y: 0, z: -0.55496943}
+ - {x: 0, y: 0, z: -0.583812}
+ - {x: 0, y: 0, z: -0.5865203}
+ - {x: 0, y: 0, z: -0.5856293}
+ - {x: 0, y: 0, z: -0.5812838}
+ - {x: 0, y: 0, z: -0.5775597}
+ - {x: 0, y: 0, z: -0.5748945}
+ - {x: 0, y: 0, z: -0.5744406}
+ - {x: 0, y: 0, z: -0.5749486}
- {x: 0, y: 0.036437865, z: -0.5735231}
- {x: 0, y: 0.09044967, z: -0.5660152}
- {x: 0, y: 0.12769914, z: -0.55676895}
diff --git a/Assets/Data/RootMotionData/Erika/Heavy_Attk_Rush_Third.asset b/Assets/Data/RootMotionData/Erika/Heavy_Attk_Rush_Third.asset
index ae10ba86..301353e6 100644
--- a/Assets/Data/RootMotionData/Erika/Heavy_Attk_Rush_Third.asset
+++ b/Assets/Data/RootMotionData/Erika/Heavy_Attk_Rush_Third.asset
@@ -18,24 +18,24 @@ MonoBehaviour:
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0.0031382474, z: 0.0059414245}
- {x: 0, y: 0.0034191473, z: 0.042164505}
- - {x: 0, y: -0.0010761212, z: 0.07850347}
- - {x: 0, y: -0.0035403576, z: 0.084577166}
- - {x: 0, y: -0.0036906137, z: 0.08065058}
- - {x: 0, y: -0.0036827938, z: 0.077771865}
- - {x: 0, y: -0.0036832283, z: 0.07652334}
- - {x: 0, y: -0.0036832283, z: 0.07448886}
- - {x: 0, y: -0.003683849, z: 0.07213131}
- - {x: 0, y: -0.0036842213, z: 0.07149082}
- - {x: 0, y: -0.0036846555, z: 0.07201318}
- - {x: 0, y: -0.0036848416, z: 0.07498135}
- - {x: 0, y: -0.003685152, z: 0.07987379}
- - {x: 0, y: -0.0036857105, z: 0.08756415}
- - {x: 0, y: -0.0036856486, z: 0.10206042}
- - {x: 0, y: -0.0036860828, z: 0.117465235}
- - {x: 0, y: -0.0036859585, z: 0.1381333}
- - {x: 0, y: -0.0036862688, z: 0.17461368}
- - {x: 0, y: -0.008737875, z: 1.2944195}
- - {x: 0, y: -0.009866441, z: 2.9894576}
+ - {x: 0, y: 0, z: 0.07850347}
+ - {x: 0, y: 0, z: 0.084577166}
+ - {x: 0, y: 0, z: 0.08065058}
+ - {x: 0, y: 0, z: 0.077771865}
+ - {x: 0, y: 0, z: 0.07652334}
+ - {x: 0, y: 0, z: 0.07448886}
+ - {x: 0, y: 0, z: 0.07213131}
+ - {x: 0, y: 0, z: 0.07149082}
+ - {x: 0, y: 0, z: 0.07201318}
+ - {x: 0, y: 0, z: 0.07498135}
+ - {x: 0, y: 0, z: 0.07987379}
+ - {x: 0, y: 0, z: 0.08756415}
+ - {x: 0, y: 0, z: 0.10206042}
+ - {x: 0, y: 0, z: 0.117465235}
+ - {x: 0, y: 0, z: 0.1381333}
+ - {x: 0, y: 0, z: 0.17461368}
+ - {x: 0, y: 0, z: 1.2944195}
+ - {x: 0, y: 0, z: 2.9894576}
- {x: 0, y: 0.07672215, z: 3.8174465}
- {x: 0, y: 0.005110313, z: 3.7952423}
- {x: 0, y: 0.003886915, z: 3.8142197}
@@ -48,13 +48,13 @@ MonoBehaviour:
- {x: 0, y: 0.0036163186, z: 3.836022}
- {x: 0, y: 0.0019403523, z: 3.8521626}
- {x: 0, y: 0.00011139922, z: 3.8802733}
- - {x: 0, y: -0.0000036667443, z: 3.9104097}
+ - {x: 0, y: 0, z: 3.9104097}
- {x: 0, y: 0.000032392225, z: 3.9202478}
- - {x: 0, y: -0.000009935167, z: 3.922658}
- - {x: 0, y: -0.0000035426133, z: 3.9218142}
+ - {x: 0, y: 0, z: 3.922658}
+ - {x: 0, y: 0, z: 3.9218142}
- {x: 0, y: 0.000000243268, z: 3.919925}
- - {x: 0, y: -0.000003666741, z: 3.9179354}
- - {x: 0, y: -0.0000037288046, z: 3.9160783}
- - {x: 0, y: -0.0000040391224, z: 3.9156058}
+ - {x: 0, y: 0, z: 3.9179354}
+ - {x: 0, y: 0, z: 3.9160783}
+ - {x: 0, y: 0, z: 3.9156058}
animationLength: 1.3333334
fps: 30
diff --git a/Assets/Data/RootMotionData/Erika/Idle_Stand.asset b/Assets/Data/RootMotionData/Erika/Idle_Stand.asset
index df48cbc8..77a08d71 100644
--- a/Assets/Data/RootMotionData/Erika/Idle_Stand.asset
+++ b/Assets/Data/RootMotionData/Erika/Idle_Stand.asset
@@ -16,65 +16,65 @@ MonoBehaviour:
frameCount: 61
positionList:
- {x: 0, y: 0, z: 0}
- - {x: 0, y: -0.0003654927, z: 0.04594679}
- - {x: 0, y: -0.00071162154, z: 0.04610289}
- - {x: 0, y: -0.0011437706, z: 0.04631536}
- - {x: 0, y: -0.0014462688, z: 0.046476293}
- - {x: 0, y: -0.0017307063, z: 0.04663713}
- - {x: 0, y: -0.002082483, z: 0.046849187}
- - {x: 0, y: -0.0023263309, z: 0.047004756}
- - {x: 0, y: -0.0025533596, z: 0.047155894}
- - {x: 0, y: -0.0028305978, z: 0.047348283}
- - {x: 0, y: -0.003020016, z: 0.047484044}
- - {x: 0, y: -0.0031939181, z: 0.04761105}
- - {x: 0, y: -0.0034023898, z: 0.04776453}
- - {x: 0, y: -0.0035416607, z: 0.047866046}
- - {x: 0, y: -0.003666719, z: 0.04795448}
- - {x: 0, y: -0.0038121343, z: 0.04804979}
- - {x: 0, y: -0.0039056023, z: 0.048102632}
- - {x: 0, y: -0.003986161, z: 0.048138052}
- - {x: 0, y: -0.0040741675, z: 0.04815594}
- - {x: 0, y: -0.0041261143, z: 0.048155677}
- - {x: 0, y: -0.004166456, z: 0.048157964}
- - {x: 0, y: -0.004202825, z: 0.04816088}
- - {x: 0, y: -0.0042175963, z: 0.048152342}
- - {x: 0, y: -0.004222003, z: 0.04813566}
- - {x: 0, y: -0.0042125075, z: 0.048102867}
- - {x: 0, y: -0.004194323, z: 0.048071943}
- - {x: 0, y: -0.004167077, z: 0.048036948}
- - {x: 0, y: -0.0041174265, z: 0.04798607}
- - {x: 0, y: -0.0040705684, z: 0.047946334}
- - {x: 0, y: -0.0040160147, z: 0.047906604}
- - {x: 0, y: -0.0039319186, z: 0.047855746}
- - {x: 0, y: -0.0038607938, z: 0.047820773}
- - {x: 0, y: -0.0037832144, z: 0.047781136}
- - {x: 0, y: -0.0036703828, z: 0.04769875}
- - {x: 0, y: -0.0035792114, z: 0.047620535}
- - {x: 0, y: -0.0034828887, z: 0.04753767}
- - {x: 0, y: -0.0033470935, z: 0.047421217}
- - {x: 0, y: -0.0032401579, z: 0.047330357}
- - {x: 0, y: -0.0031294364, z: 0.047237292}
- - {x: 0, y: -0.0029763256, z: 0.047111038}
- - {x: 0, y: -0.0028580322, z: 0.047015682}
- - {x: 0, y: -0.0027371324, z: 0.04692056}
- - {x: 0, y: -0.0025725397, z: 0.046795372}
- - {x: 0, y: -0.002447047, z: 0.046703663}
- - {x: 0, y: -0.0023203131, z: 0.046614636}
- - {x: 0, y: -0.0021499486, z: 0.046501372}
- - {x: 0, y: -0.002021601, z: 0.046421453}
- - {x: 0, y: -0.0018933155, z: 0.046346664}
- - {x: 0, y: -0.0017228888, z: 0.046256185}
- - {x: 0, y: -0.0015960307, z: 0.046196204}
- - {x: 0, y: -0.0014683037, z: 0.046143796}
- - {x: 0, y: -0.0012928499, z: 0.04608696}
- - {x: 0, y: -0.0011585442, z: 0.046055067}
- - {x: 0, y: -0.0010229353, z: 0.04602956}
- - {x: 0, y: -0.0008415853, z: 0.04599662}
- - {x: 0, y: -0.0007063486, z: 0.04597175}
- - {x: 0, y: -0.0005729119, z: 0.045945965}
- - {x: 0, y: -0.00039913369, z: 0.045908954}
- - {x: 0, y: -0.0002732066, z: 0.04587831}
- - {x: 0, y: -0.00015199633, z: 0.04584442}
+ - {x: 0, y: 0, z: 0.04594679}
+ - {x: 0, y: 0, z: 0.04610289}
+ - {x: 0, y: 0, z: 0.04631536}
+ - {x: 0, y: 0, z: 0.046476293}
+ - {x: 0, y: 0, z: 0.04663713}
+ - {x: 0, y: 0, z: 0.046849187}
+ - {x: 0, y: 0, z: 0.047004756}
+ - {x: 0, y: 0, z: 0.047155894}
+ - {x: 0, y: 0, z: 0.047348283}
+ - {x: 0, y: 0, z: 0.047484044}
+ - {x: 0, y: 0, z: 0.04761105}
+ - {x: 0, y: 0, z: 0.04776453}
+ - {x: 0, y: 0, z: 0.047866046}
+ - {x: 0, y: 0, z: 0.04795448}
+ - {x: 0, y: 0, z: 0.04804979}
+ - {x: 0, y: 0, z: 0.048102632}
+ - {x: 0, y: 0, z: 0.048138052}
+ - {x: 0, y: 0, z: 0.04815594}
+ - {x: 0, y: 0, z: 0.048155677}
+ - {x: 0, y: 0, z: 0.048157964}
+ - {x: 0, y: 0, z: 0.04816088}
+ - {x: 0, y: 0, z: 0.048152342}
+ - {x: 0, y: 0, z: 0.04813566}
+ - {x: 0, y: 0, z: 0.048102867}
+ - {x: 0, y: 0, z: 0.048071943}
+ - {x: 0, y: 0, z: 0.048036948}
+ - {x: 0, y: 0, z: 0.04798607}
+ - {x: 0, y: 0, z: 0.047946334}
+ - {x: 0, y: 0, z: 0.047906604}
+ - {x: 0, y: 0, z: 0.047855746}
+ - {x: 0, y: 0, z: 0.047820773}
+ - {x: 0, y: 0, z: 0.047781136}
+ - {x: 0, y: 0, z: 0.04769875}
+ - {x: 0, y: 0, z: 0.047620535}
+ - {x: 0, y: 0, z: 0.04753767}
+ - {x: 0, y: 0, z: 0.047421217}
+ - {x: 0, y: 0, z: 0.047330357}
+ - {x: 0, y: 0, z: 0.047237292}
+ - {x: 0, y: 0, z: 0.047111038}
+ - {x: 0, y: 0, z: 0.047015682}
+ - {x: 0, y: 0, z: 0.04692056}
+ - {x: 0, y: 0, z: 0.046795372}
+ - {x: 0, y: 0, z: 0.046703663}
+ - {x: 0, y: 0, z: 0.046614636}
+ - {x: 0, y: 0, z: 0.046501372}
+ - {x: 0, y: 0, z: 0.046421453}
+ - {x: 0, y: 0, z: 0.046346664}
+ - {x: 0, y: 0, z: 0.046256185}
+ - {x: 0, y: 0, z: 0.046196204}
+ - {x: 0, y: 0, z: 0.046143796}
+ - {x: 0, y: 0, z: 0.04608696}
+ - {x: 0, y: 0, z: 0.046055067}
+ - {x: 0, y: 0, z: 0.04602956}
+ - {x: 0, y: 0, z: 0.04599662}
+ - {x: 0, y: 0, z: 0.04597175}
+ - {x: 0, y: 0, z: 0.045945965}
+ - {x: 0, y: 0, z: 0.045908954}
+ - {x: 0, y: 0, z: 0.04587831}
+ - {x: 0, y: 0, z: 0.04584442}
- {x: 0, y: 0.00000061812534, z: 0.045792967}
animationLength: 2
fps: 30
diff --git a/Assets/Data/RootMotionData/Erika/Jump_Down.asset b/Assets/Data/RootMotionData/Erika/Jump_Down.asset
index 63763493..d61202bf 100644
--- a/Assets/Data/RootMotionData/Erika/Jump_Down.asset
+++ b/Assets/Data/RootMotionData/Erika/Jump_Down.asset
@@ -16,10 +16,10 @@ MonoBehaviour:
frameCount: 6
positionList:
- {x: 0, y: 0, z: 0}
- - {x: 0, y: -0.12130702, z: 0.14077184}
- - {x: 0, y: -0.231127, z: 0.1376098}
- - {x: 0, y: -0.35797513, z: 0.13516484}
- - {x: 0, y: -0.44053906, z: 0.13421237}
- - {x: 0, y: -0.5115796, z: 0.13575348}
+ - {x: 0, y: 0, z: 0.14077184}
+ - {x: 0, y: 0, z: 0.1376098}
+ - {x: 0, y: 0, z: 0.13516484}
+ - {x: 0, y: 0, z: 0.13421237}
+ - {x: 0, y: 0, z: 0.13575348}
animationLength: 0.16666669
fps: 30
diff --git a/Assets/Data/RootMotionData/Erika/Jump_End.asset b/Assets/Data/RootMotionData/Erika/Jump_End.asset
index 3a02d27b..095e05ca 100644
--- a/Assets/Data/RootMotionData/Erika/Jump_End.asset
+++ b/Assets/Data/RootMotionData/Erika/Jump_End.asset
@@ -16,25 +16,25 @@ MonoBehaviour:
frameCount: 21
positionList:
- {x: 0, y: 0, z: 0}
- - {x: 0, y: -0.05679281, z: 0.19267143}
- - {x: 0, y: -0.095455594, z: 0.2004567}
- - {x: 0, y: -0.11859136, z: 0.2052955}
- - {x: 0, y: -0.121693425, z: 0.20361008}
- - {x: 0, y: -0.121365726, z: 0.1984719}
- - {x: 0, y: -0.122059904, z: 0.19288875}
- - {x: 0, y: -0.12267129, z: 0.1893401}
- - {x: 0, y: -0.123169415, z: 0.18593398}
- - {x: 0, y: -0.12395663, z: 0.18109013}
- - {x: 0, y: -0.1254842, z: 0.17682321}
- - {x: 0, y: -0.12580408, z: 0.17149843}
- - {x: 0, y: -0.12971638, z: 0.16418758}
- - {x: 0, y: -0.13267614, z: 0.15854965}
- - {x: 0, y: -0.13460857, z: 0.15274702}
- - {x: 0, y: -0.13465212, z: 0.1452213}
- - {x: 0, y: -0.13493179, z: 0.14332056}
- - {x: 0, y: -0.1350185, z: 0.14234117}
- - {x: 0, y: -0.13487712, z: 0.14194131}
- - {x: 0, y: -0.13481443, z: 0.14165542}
- - {x: 0, y: -0.13487072, z: 0.14078718}
+ - {x: 0, y: 0, z: 0.19267143}
+ - {x: 0, y: 0, z: 0.2004567}
+ - {x: 0, y: 0, z: 0.2052955}
+ - {x: 0, y: 0, z: 0.20361008}
+ - {x: 0, y: 0, z: 0.1984719}
+ - {x: 0, y: 0, z: 0.19288875}
+ - {x: 0, y: 0, z: 0.1893401}
+ - {x: 0, y: 0, z: 0.18593398}
+ - {x: 0, y: 0, z: 0.18109013}
+ - {x: 0, y: 0, z: 0.17682321}
+ - {x: 0, y: 0, z: 0.17149843}
+ - {x: 0, y: 0, z: 0.16418758}
+ - {x: 0, y: 0, z: 0.15854965}
+ - {x: 0, y: 0, z: 0.15274702}
+ - {x: 0, y: 0, z: 0.1452213}
+ - {x: 0, y: 0, z: 0.14332056}
+ - {x: 0, y: 0, z: 0.14234117}
+ - {x: 0, y: 0, z: 0.14194131}
+ - {x: 0, y: 0, z: 0.14165542}
+ - {x: 0, y: 0, z: 0.14078718}
animationLength: 0.66666675
fps: 30
diff --git a/Assets/Data/RootMotionData/Erika/LongSword_Attk_1.asset b/Assets/Data/RootMotionData/Erika/LongSword_Attk_1.asset
index 89115d40..f8de13e3 100644
--- a/Assets/Data/RootMotionData/Erika/LongSword_Attk_1.asset
+++ b/Assets/Data/RootMotionData/Erika/LongSword_Attk_1.asset
@@ -16,13 +16,13 @@ MonoBehaviour:
frameCount: 76
positionList:
- {x: 0, y: 0, z: 0}
- - {x: 0, y: -0.0024955163, z: -0.21408191}
- - {x: 0, y: -0.0050301948, z: -0.14586288}
- - {x: 0, y: -0.0022342904, z: -0.08630295}
+ - {x: 0, y: 0, z: -0.21408191}
+ - {x: 0, y: 0, z: -0.14586288}
+ - {x: 0, y: 0, z: -0.08630295}
- {x: 0, y: 0.0015276965, z: -0.084489465}
- {x: 0, y: 0.0014254157, z: -0.109409794}
- {x: 0, y: 0.00019233563, z: -0.1815784}
- - {x: 0, y: -0.0006642046, z: -0.21697283}
+ - {x: 0, y: 0, z: -0.21697283}
- {x: 0, y: 0.0014550199, z: -0.19695286}
- {x: 0, y: 0.0019465019, z: -0.122397065}
- {x: 0, y: 0.0075607775, z: -0.04240153}
@@ -56,18 +56,18 @@ MonoBehaviour:
- {x: 0, y: 0.007584978, z: 0.91562486}
- {x: 0, y: 0.005862153, z: 0.940255}
- {x: 0, y: 0.004568623, z: 0.9632312}
- - {x: 0, y: -0.00025316223, z: 0.9896346}
- - {x: 0, y: -0.0075894557, z: 1.02969}
- - {x: 0, y: -0.012445251, z: 1.0642211}
- - {x: 0, y: -0.01464491, z: 1.10434}
- - {x: 0, y: -0.016905267, z: 1.1724042}
- - {x: 0, y: -0.014499557, z: 1.2353818}
- - {x: 0, y: -0.013149487, z: 1.289306}
- - {x: 0, y: -0.014375739, z: 1.3397368}
- - {x: 0, y: -0.012004784, z: 1.3653024}
- - {x: 0, y: -0.01116407, z: 1.385769}
- - {x: 0, y: -0.0060786377, z: 1.409753}
- - {x: 0, y: -0.00024267077, z: 1.4286903}
+ - {x: 0, y: 0, z: 0.9896346}
+ - {x: 0, y: 0, z: 1.02969}
+ - {x: 0, y: 0, z: 1.0642211}
+ - {x: 0, y: 0, z: 1.10434}
+ - {x: 0, y: 0, z: 1.1724042}
+ - {x: 0, y: 0, z: 1.2353818}
+ - {x: 0, y: 0, z: 1.289306}
+ - {x: 0, y: 0, z: 1.3397368}
+ - {x: 0, y: 0, z: 1.3653024}
+ - {x: 0, y: 0, z: 1.385769}
+ - {x: 0, y: 0, z: 1.409753}
+ - {x: 0, y: 0, z: 1.4286903}
- {x: 0, y: 0.004120961, z: 1.4519341}
- {x: 0, y: 0.009895795, z: 1.4924335}
- {x: 0, y: 0.013710909, z: 1.5548824}
@@ -78,18 +78,18 @@ MonoBehaviour:
- {x: 0, y: 0.0119669195, z: 1.7350619}
- {x: 0, y: 0.008517609, z: 1.7619328}
- {x: 0, y: 0.002928035, z: 1.7846171}
- - {x: 0, y: -0.003588894, z: 1.8069248}
- - {x: 0, y: -0.007166055, z: 1.8142475}
- - {x: 0, y: -0.007835349, z: 1.8168223}
- - {x: 0, y: -0.009243449, z: 1.8183044}
- - {x: 0, y: -0.010743589, z: 1.8183687}
- - {x: 0, y: -0.010647639, z: 1.8178078}
- - {x: 0, y: -0.009033054, z: 1.8163637}
- - {x: 0, y: -0.007889035, z: 1.8148288}
- - {x: 0, y: -0.006037491, z: 1.8131229}
- - {x: 0, y: -0.003285962, z: 1.810794}
- - {x: 0, y: -0.0018784829, z: 1.8091911}
- - {x: 0, y: -0.00089589146, z: 1.8078705}
- - {x: 0, y: -0.0000006236223, z: 1.8066989}
+ - {x: 0, y: 0, z: 1.8069248}
+ - {x: 0, y: 0, z: 1.8142475}
+ - {x: 0, y: 0, z: 1.8168223}
+ - {x: 0, y: 0, z: 1.8183044}
+ - {x: 0, y: 0, z: 1.8183687}
+ - {x: 0, y: 0, z: 1.8178078}
+ - {x: 0, y: 0, z: 1.8163637}
+ - {x: 0, y: 0, z: 1.8148288}
+ - {x: 0, y: 0, z: 1.8131229}
+ - {x: 0, y: 0, z: 1.810794}
+ - {x: 0, y: 0, z: 1.8091911}
+ - {x: 0, y: 0, z: 1.8078705}
+ - {x: 0, y: 0, z: 1.8066989}
animationLength: 2.5000002
fps: 30
diff --git a/Assets/Data/RootMotionData/Erika/SuperKickCombo.asset b/Assets/Data/RootMotionData/Erika/SuperKickCombo.asset
index 57768e2d..6db30689 100644
--- a/Assets/Data/RootMotionData/Erika/SuperKickCombo.asset
+++ b/Assets/Data/RootMotionData/Erika/SuperKickCombo.asset
@@ -17,12 +17,12 @@ MonoBehaviour:
positionList:
- {x: 0, y: 0, z: 0}
- {x: 0, y: 0.0000021722271, z: 0.5212441}
- - {x: 0, y: -0.000005896044, z: 0.53039783}
- - {x: 0, y: -0.000003599689, z: 0.5622827}
+ - {x: 0, y: 0, z: 0.53039783}
+ - {x: 0, y: 0, z: 0.5622827}
- {x: 0, y: 0.0013414432, z: 0.6318786}
- - {x: 0, y: -0.010216108, z: 0.7392931}
- - {x: 0, y: -0.014578063, z: 0.91450244}
- - {x: 0, y: -0.0024402798, z: 1.0384434}
+ - {x: 0, y: 0, z: 0.7392931}
+ - {x: 0, y: 0, z: 0.91450244}
+ - {x: 0, y: 0, z: 1.0384434}
- {x: 0, y: 0.0029583871, z: 1.0664244}
- {x: 0, y: 0.0035498536, z: 1.0678557}
- {x: 0, y: 0.0035407923, z: 1.0628057}
@@ -41,7 +41,7 @@ MonoBehaviour:
- {x: 0, y: 0.0013139506, z: 1.9856927}
- {x: 0, y: 0.0012201725, z: 2.0090458}
- {x: 0, y: 0.001112368, z: 2.0361767}
- - {x: 0, y: -0.0007423414, z: 2.1057076}
+ - {x: 0, y: 0, z: 2.1057076}
- {x: 0, y: 0.07321491, z: 2.2887065}
- {x: 0, y: 0.12525949, z: 2.3826797}
- {x: 0, y: 0.30729106, z: 2.461628}
diff --git a/Assets/Data/RootMotionData/Erika/Take 001.asset b/Assets/Data/RootMotionData/Erika/Take 001.asset
index b83d5852..470a0c14 100644
--- a/Assets/Data/RootMotionData/Erika/Take 001.asset
+++ b/Assets/Data/RootMotionData/Erika/Take 001.asset
@@ -22,10 +22,10 @@ MonoBehaviour:
- {x: 0, y: 0.0028678365, z: 0.11226667}
- {x: 0, y: 0.0038247958, z: 0.1790283}
- {x: 0, y: 0.00313651, z: 0.19847178}
- - {x: 0, y: -0.00077362254, z: 0.18803756}
- - {x: 0, y: -0.007586471, z: 0.17070234}
- - {x: 0, y: -0.011059304, z: 0.15964036}
- - {x: 0, y: -0.005920249, z: 0.17491588}
+ - {x: 0, y: 0, z: 0.18803756}
+ - {x: 0, y: 0, z: 0.17070234}
+ - {x: 0, y: 0, z: 0.15964036}
+ - {x: 0, y: 0, z: 0.17491588}
- {x: 0, y: 0.019648537, z: 0.22855765}
- {x: 0, y: 0.03566288, z: 0.29241994}
- {x: 0, y: 0.021155257, z: 0.22457246}
@@ -38,17 +38,17 @@ MonoBehaviour:
- {x: 0, y: 0.018017566, z: 0.15517224}
- {x: 0, y: 0.018010553, z: 0.19978932}
- {x: 0, y: 0.025801525, z: 0.28759232}
- - {x: 0, y: -0.0033157496, z: 0.5214907}
- - {x: 0, y: -0.0061841444, z: 0.9359696}
- - {x: 0, y: -0.00022404967, z: 1.0877151}
- - {x: 0, y: -0.006050521, z: 1.1095675}
- - {x: 0, y: -0.005256913, z: 1.1188564}
- - {x: 0, y: -0.0052588372, z: 1.1217564}
- - {x: 0, y: -0.0052599544, z: 1.1219337}
- - {x: 0, y: -0.005260637, z: 1.1201665}
- - {x: 0, y: -0.0052610715, z: 1.1197093}
- - {x: 0, y: -0.0052609476, z: 1.1236415}
- - {x: 0, y: -0.003948426, z: 1.1424061}
+ - {x: 0, y: 0, z: 0.5214907}
+ - {x: 0, y: 0, z: 0.9359696}
+ - {x: 0, y: 0, z: 1.0877151}
+ - {x: 0, y: 0, z: 1.1095675}
+ - {x: 0, y: 0, z: 1.1188564}
+ - {x: 0, y: 0, z: 1.1217564}
+ - {x: 0, y: 0, z: 1.1219337}
+ - {x: 0, y: 0, z: 1.1201665}
+ - {x: 0, y: 0, z: 1.1197093}
+ - {x: 0, y: 0, z: 1.1236415}
+ - {x: 0, y: 0, z: 1.1424061}
- {x: 0, y: 0.0011833671, z: 1.189676}
- {x: 0, y: 0.021976296, z: 1.261699}
- {x: 0, y: 0.0077266106, z: 1.2757621}
@@ -86,18 +86,18 @@ MonoBehaviour:
- {x: 0, y: 0.5838619, z: 1.5163312}
- {x: 0, y: 0.12844157, z: 1.4798739}
- {x: 0, y: 0.0049111824, z: 1.4681029}
- - {x: 0, y: -0.002216515, z: 1.4547417}
- - {x: 0, y: -0.0029646922, z: 1.4455094}
- - {x: 0, y: -0.003537912, z: 1.4429334}
- - {x: 0, y: -0.009129472, z: 1.4412717}
- - {x: 0, y: -0.012961157, z: 1.4385767}
- - {x: 0, y: -0.01363312, z: 1.4356006}
- - {x: 0, y: -0.012878613, z: 1.431573}
- - {x: 0, y: -0.010313522, z: 1.4264835}
- - {x: 0, y: -0.007714359, z: 1.4244776}
- - {x: 0, y: -0.00497245, z: 1.4235218}
- - {x: 0, y: -0.0017986401, z: 1.4229755}
- - {x: 0, y: -0.00032152573, z: 1.422353}
+ - {x: 0, y: 0, z: 1.4547417}
+ - {x: 0, y: 0, z: 1.4455094}
+ - {x: 0, y: 0, z: 1.4429334}
+ - {x: 0, y: 0, z: 1.4412717}
+ - {x: 0, y: 0, z: 1.4385767}
+ - {x: 0, y: 0, z: 1.4356006}
+ - {x: 0, y: 0, z: 1.431573}
+ - {x: 0, y: 0, z: 1.4264835}
+ - {x: 0, y: 0, z: 1.4244776}
+ - {x: 0, y: 0, z: 1.4235218}
+ - {x: 0, y: 0, z: 1.4229755}
+ - {x: 0, y: 0, z: 1.422353}
- {x: 0, y: 0.00010305154, z: 1.4215235}
animationLength: 2.7500002
fps: 30
diff --git a/Assets/Editor/EditorIcons.cs b/Assets/Editor/EditorIcons.cs
new file mode 100644
index 00000000..63fcb2fb
--- /dev/null
+++ b/Assets/Editor/EditorIcons.cs
@@ -0,0 +1,647 @@
+#if UNITY_EDITOR
+
+using UnityEngine;
+using UnityEditor;
+using System.Collections.Generic;
+using System.Linq;
+
+public class EditorIcons : EditorWindow
+{
+ [MenuItem("Tools/Editor Icons %e", priority = -1001)]
+ public static void EditorIconsOpen()
+ {
+ var w = GetWindow<EditorIcons>("Editor Icons");
+ w.ShowUtility();
+ w.minSize = new Vector2(320, 450);
+ }
+
+ static bool viewBigIcons = true;
+
+ static bool darkPreview = true;
+
+ Vector2 scroll;
+
+ int buttonSize = 70;
+
+ string search = "";
+
+ void SearchGUI()
+ {
+ using (new GUILayout.HorizontalScope())
+ {
+ if (isWide) GUILayout.Space(10);
+
+ search = EditorGUILayout.TextField(search);
+ if (GUILayout.Button(EditorGUIUtility.IconContent("winbtn_mac_close_h"), //SVN_DeletedLocal
+ EditorStyles.toolbarButton,
+ GUILayout.Width(22))
+ ) search = "";
+ }
+ }
+
+ bool isWide => Screen.width > 550;
+
+ bool doSearch => !string.IsNullOrWhiteSpace(search) && search != "";
+
+ GUIContent GetIcon(string icon_name)
+ {
+ GUIContent valid = null;
+ Debug.unityLogger.logEnabled = false;
+ if (!string.IsNullOrEmpty(icon_name)) valid = EditorGUIUtility.IconContent(icon_name);
+ Debug.unityLogger.logEnabled = true;
+ return valid?.image == null ? null : valid;
+ }
+
+ private void OnEnable()
+ {
+ //InitIcons();
+ //var all_icons = iconContentListAll.Select(x => x.tooltip).ToArray();
+ var all_icons = ico_list.Where(x => GetIcon(x) != null);
+ //List<string> found = new List<string>();
+ List<string> unique = new List<string>();
+ //var skip_flag = HideFlags.HideInInspector | HideFlags.HideAndDontSave;
+ //int unique_to_resources = 0, skipped_empty_str = 0, skipped_flags = 0,
+ // skipped_not_persistent = 0, skipped_nulls = 0, unique_to_list = 0;
+
+ foreach (Texture2D x in Resources.FindObjectsOfTypeAll<Texture2D>())
+ {
+ //if (string.IsNullOrEmpty(x.name)) skipped_empty_str++; // skipped 10 empty
+ //if (!EditorUtility.IsPersistent(x)) skipped_not_persistent++; // skipped 39 none persistent
+ //if (x.hideFlags != HideFlags.HideAndDontSave && x.hideFlags != skip_flag) skipped_flags++; // skipped 27 icons
+
+ GUIContent icoContent = GetIcon(x.name);
+ if (icoContent == null) continue; // skipped 14 icons
+ //{
+ // skipped_nulls++;
+ // continue;
+ //}
+
+ if (!all_icons.Contains(x.name))
+ {
+ //unique_to_resources++;
+ unique.Add(x.name);
+ }
+
+ //found.Add( x.name );
+ }
+
+ //foreach (var ico in all_icons) if (!found.Contains(ico)) unique_to_list++;
+
+ //Debug.Log( $"Resources skipped nulls={skipped_nulls} empty={skipped_empty_str} flags={skipped_flags}" );
+ //Debug.Log("Resources skipped_not_persistent=" + skipped_not_persistent);
+ //Debug.Log($"totals , list: {all_icons.Length} resource: {found.Count}");
+ //Debug.Log($"Unique list={ unique_to_list } resources={unique_to_resources}") ;
+
+ ico_list = ico_list.ToList().Concat(unique).ToArray();
+
+ // Static list icons count : 1315 ( unique = 749 )
+ // Found icons in resources : 1416 ( unique = 855 )
+
+ Resources.UnloadUnusedAssets();
+ System.GC.Collect();
+ }
+
+ private void OnGUI()
+ {
+ var ppp = EditorGUIUtility.pixelsPerPoint;
+
+ InitIcons();
+
+ if (!isWide) SearchGUI();
+
+ using (new GUILayout.HorizontalScope(EditorStyles.toolbar))
+ {
+ GUILayout.Label("Select what icons to show", GUILayout.Width(160));
+ viewBigIcons = GUILayout.SelectionGrid(
+ viewBigIcons ? 1 : 0, new string[] { "Small", "Big" },
+ 2, EditorStyles.toolbarButton) == 1;
+
+ if (isWide) SearchGUI();
+ }
+
+ if (isWide) GUILayout.Space(3);
+
+ using (var scope = new GUILayout.ScrollViewScope(scroll))
+ {
+ GUILayout.Space(10);
+
+ scroll = scope.scrollPosition;
+
+ buttonSize = viewBigIcons ? 70 : 40;
+
+ // scrollbar_width = ~ 12.5
+ var render_width = (Screen.width / ppp - 13f);
+ var gridW = Mathf.FloorToInt(render_width / buttonSize);
+ var margin_left = (render_width - buttonSize * gridW) / 2;
+
+ int row = 0, index = 0;
+
+ List<GUIContent> iconList;
+
+ if (doSearch) iconList = iconContentListAll.Where(x => x.tooltip.ToLower()
+ .Contains(search.ToLower())).ToList();
+ else iconList = viewBigIcons ? iconContentListBig : iconContentListSmall;
+
+ while (index < iconList.Count)
+ {
+ using (new GUILayout.HorizontalScope())
+ {
+ GUILayout.Space(margin_left);
+
+ for (var i = 0; i < gridW; ++i)
+ {
+ int k = i + row * gridW;
+
+ var icon = iconList[k];
+
+ if (GUILayout.Button(icon,
+ iconButtonStyle,
+ GUILayout.Width(buttonSize),
+ GUILayout.Height(buttonSize)))
+ {
+ EditorGUI.FocusTextInControl("");
+ iconSelected = icon;
+ }
+
+ index++;
+
+ if (index == iconList.Count) break;
+ }
+ }
+
+ row++;
+ }
+
+ GUILayout.Space(10);
+ }
+
+
+ if (iconSelected == null) return;
+
+ GUILayout.FlexibleSpace();
+
+ using (new GUILayout.HorizontalScope(EditorStyles.helpBox, GUILayout.MaxHeight(viewBigIcons ? 140 : 120)))
+ {
+ using (new GUILayout.VerticalScope(GUILayout.Width(130)))
+ {
+ GUILayout.Space(2);
+
+ GUILayout.Button(iconSelected,
+ darkPreview ? iconPreviewBlack : iconPreviewWhite,
+ GUILayout.Width(128), GUILayout.Height(viewBigIcons ? 128 : 40));
+
+ GUILayout.Space(5);
+
+ darkPreview = GUILayout.SelectionGrid(
+ darkPreview ? 1 : 0, new string[] { "Light", "Dark" },
+ 2, EditorStyles.miniButton) == 1;
+
+ GUILayout.FlexibleSpace();
+ }
+
+ GUILayout.Space(10);
+
+ using (new GUILayout.VerticalScope())
+ {
+ var s = $"Size: {iconSelected.image.width}x{iconSelected.image.height}";
+ s += "\nIs Pro Skin Icon: " + (iconSelected.tooltip.IndexOf("d_") == 0 ? "Yes" : "No");
+ s += $"\nTotal {iconContentListAll.Count} icons";
+ GUILayout.Space(5);
+ EditorGUILayout.HelpBox(s, MessageType.None);
+ GUILayout.Space(5);
+ EditorGUILayout.TextField("EditorGUIUtility.IconContent(\"" + iconSelected.tooltip + "\")");
+ GUILayout.Space(5);
+ if (GUILayout.Button("Copy to clipboard", EditorStyles.miniButton))
+ EditorGUIUtility.systemCopyBuffer = iconSelected.tooltip;
+ }
+
+ GUILayout.Space(10);
+
+ if (GUILayout.Button("X", GUILayout.ExpandHeight(true)))
+ {
+ iconSelected = null;
+ }
+
+ }
+ }
+
+ static GUIContent iconSelected;
+ static GUIStyle iconBtnStyle = null;
+ static List<GUIContent> iconContentListAll;
+ static List<GUIContent> iconContentListSmall;
+ static List<GUIContent> iconContentListBig;
+ static List<string> iconMissingNames;
+ static GUIStyle iconButtonStyle = null;
+ static GUIStyle iconPreviewBlack = null;
+ static GUIStyle iconPreviewWhite = null;
+
+ void AllTheTEXTURES(ref GUIStyle s, Texture2D t)
+ {
+ s.hover.background = s.onHover.background = s.focused.background = s.onFocused.background = s.active.background = s.onActive.background = s.normal.background = s.onNormal.background = t;
+ s.hover.scaledBackgrounds = s.onHover.scaledBackgrounds = s.focused.scaledBackgrounds = s.onFocused.scaledBackgrounds = s.active.scaledBackgrounds = s.onActive.scaledBackgrounds = s.normal.scaledBackgrounds = s.onNormal.scaledBackgrounds = new Texture2D[] { t };
+ }
+
+ Texture2D Texture2DPixel(Color c)
+ {
+ Texture2D t = new Texture2D(1, 1);
+ t.SetPixel(0, 0, c);
+ t.Apply();
+ return t;
+ }
+
+ void InitIcons()
+ {
+ if (iconContentListSmall != null) return;
+
+ iconButtonStyle = new GUIStyle(EditorStyles.miniButton);
+ iconButtonStyle.margin = new RectOffset(0, 0, 0, 0);
+ iconButtonStyle.fixedHeight = 0;
+
+ iconPreviewBlack = new GUIStyle(iconButtonStyle);
+ AllTheTEXTURES(ref iconPreviewBlack, Texture2DPixel(new Color(0.15f, 0.15f, 0.15f)));
+
+ iconPreviewWhite = new GUIStyle(iconButtonStyle);
+ AllTheTEXTURES(ref iconPreviewWhite, Texture2DPixel(new Color(0.85f, 0.85f, 0.85f)));
+
+ iconMissingNames = new List<string>();
+ iconContentListSmall = new List<GUIContent>();
+ iconContentListBig = new List<GUIContent>();
+ iconContentListAll = new List<GUIContent>();
+
+ for (var i = 0; i < ico_list.Length; ++i)
+ {
+ GUIContent ico = GetIcon(ico_list[i]);
+
+ if (ico == null)
+ {
+ iconMissingNames.Add(ico_list[i]);
+ continue;
+ }
+
+ ico.tooltip = ico_list[i];
+
+ iconContentListAll.Add(ico);
+
+ if (!(ico.image.width <= 36 || ico.image.height <= 36))
+ iconContentListBig.Add(ico);
+ else iconContentListSmall.Add(ico);
+ }
+ }
+
+ // https://gist.github.com/MattRix/c1f7840ae2419d8eb2ec0695448d4321
+ // https://unitylist.com/p/5c3/Unity-editor-icons
+
+ #region ICONS
+
+ public static string[] ico_list =
+ {
+ "_Help","_Popup","aboutwindow.mainheader","ageialogo","AlphabeticalSorting","Animation.AddEvent",
+ "Animation.AddKeyframe","Animation.EventMarker","Animation.FirstKey","Animation.LastKey",
+ "Animation.NextKey","Animation.Play","Animation.PrevKey","Animation.Record","Animation.SequencerLink",
+ "animationanimated","animationdopesheetkeyframe","animationkeyframe","animationnocurve",
+ "animationvisibilitytoggleoff","animationvisibilitytoggleon","AnimationWrapModeMenu","AssemblyLock",
+ "Asset Store","Audio Mixer","AvatarCompass","AvatarController.Layer","AvatarController.LayerHover",
+ "AvatarController.LayerSelected","BodyPartPicker","BodySilhouette","DotFill","DotFrame","DotFrameDotted",
+ "DotSelection","Head","HeadIk","HeadZoom","HeadZoomSilhouette","LeftArm","LeftFeetIk","LeftFingers",
+ "LeftFingersIk","LeftHandZoom","LeftHandZoomSilhouette","LeftLeg","MaskEditor_Root","RightArm","RightFeetIk",
+ "RightFingers","RightFingersIk","RightHandZoom","RightHandZoomSilhouette","RightLeg","Torso","AvatarPivot",
+ "back","back@2x","beginButton-On","beginButton","blendKey","blendKeyOverlay","blendKeySelected",
+ "blendSampler","blueGroove","BuildSettings.Android","BuildSettings.Android.Small","BuildSettings.Broadcom",
+ "BuildSettings.Editor","BuildSettings.Editor.Small","BuildSettings.Facebook",
+ "BuildSettings.Facebook.Small","BuildSettings.FlashPlayer","BuildSettings.FlashPlayer.Small",
+ "BuildSettings.iPhone","BuildSettings.iPhone.Small","BuildSettings.Lumin","BuildSettings.Lumin.small",
+ "BuildSettings.Metro","BuildSettings.Metro.Small","BuildSettings.N3DS","BuildSettings.N3DS.Small",
+ "BuildSettings.PS4","BuildSettings.PS4.Small","BuildSettings.PSM","BuildSettings.PSM.Small",
+ "BuildSettings.PSP2","BuildSettings.PSP2.Small","BuildSettings.SelectedIcon","BuildSettings.Standalone",
+ "BuildSettings.Standalone.Small","BuildSettings.StandaloneBroadcom.Small",
+ "BuildSettings.StandaloneGLES20Emu.Small","BuildSettings.StandaloneGLESEmu",
+ "BuildSettings.StandaloneGLESEmu.Small","BuildSettings.Switch","BuildSettings.Switch.Small",
+ "BuildSettings.tvOS","BuildSettings.tvOS.Small","BuildSettings.Web","BuildSettings.Web.Small",
+ "BuildSettings.WebGL","BuildSettings.WebGL.Small","BuildSettings.WP8","BuildSettings.WP8.Small",
+ "BuildSettings.Xbox360","BuildSettings.Xbox360.Small","BuildSettings.XboxOne",
+ "BuildSettings.XboxOne.Small","BuildSettings.Xiaomi","Camera Gizmo","CheckerFloor","Clipboard",
+ "ClothInspector.PaintTool","ClothInspector.PaintValue","ClothInspector.SelectTool",
+ "ClothInspector.SettingsTool","ClothInspector.ViewValue","CloudConnect","Collab.Build",
+ "Collab.BuildFailed","Collab.BuildSucceeded","Collab.FileAdded","Collab.FileConflict","Collab.FileDeleted",
+ "Collab.FileIgnored","Collab.FileMoved","Collab.FileUpdated","Collab.FolderAdded","Collab.FolderConflict",
+ "Collab.FolderDeleted","Collab.FolderIgnored","Collab.FolderMoved","Collab.FolderUpdated",
+ "Collab.NoInternet","Collab","Collab.Warning","CollabConflict","CollabError","CollabNew","CollabOffline",
+ "CollabProgress","CollabPull","CollabPush","ColorPicker.ColorCycle","ColorPicker.CycleColor",
+ "ColorPicker.CycleSlider","ColorPicker.SliderCycle","console.erroricon.inactive.sml","console.erroricon",
+ "console.erroricon.sml","console.infoicon","console.infoicon.sml","console.warnicon.inactive.sml",
+ "console.warnicon","console.warnicon.sml","curvekeyframe","curvekeyframeselected",
+ "curvekeyframeselectedoverlay","curvekeyframesemiselectedoverlay","curvekeyframeweighted","CustomSorting",
+ "d__Popup","d_aboutwindow.mainheader","d_ageialogo","d_AlphabeticalSorting","d_Animation.AddEvent",
+ "d_Animation.AddKeyframe","d_Animation.EventMarker","d_Animation.FirstKey","d_Animation.LastKey",
+ "d_Animation.NextKey","d_Animation.Play","d_Animation.PrevKey","d_Animation.Record",
+ "d_Animation.SequencerLink","d_animationanimated","d_animationkeyframe","d_animationnocurve",
+ "d_animationvisibilitytoggleoff","d_animationvisibilitytoggleon","d_AnimationWrapModeMenu",
+ "d_AS Badge Delete","d_AS Badge New","d_AssemblyLock","d_Asset Store","d_Audio Mixer",
+ "d_AvatarBlendBackground","d_AvatarBlendLeft","d_AvatarBlendLeftA","d_AvatarBlendRight",
+ "d_AvatarBlendRightA","d_AvatarCompass","d_AvatarPivot","d_back","d_back@2x","d_beginButton-On",
+ "d_beginButton","d_blueGroove","d_BuildSettings.Android","d_BuildSettings.Android.Small",
+ "d_BuildSettings.Broadcom","d_BuildSettings.FlashPlayer","d_BuildSettings.FlashPlayer.Small",
+ "d_BuildSettings.iPhone","d_BuildSettings.iPhone.Small","d_BuildSettings.Lumin",
+ "d_BuildSettings.Lumin.small","d_BuildSettings.PS4","d_BuildSettings.PS4.Small","d_BuildSettings.PSP2",
+ "d_BuildSettings.PSP2.Small","d_BuildSettings.SelectedIcon","d_BuildSettings.Standalone",
+ "d_BuildSettings.Standalone.Small","d_BuildSettings.tvOS","d_BuildSettings.tvOS.Small",
+ "d_BuildSettings.Web","d_BuildSettings.Web.Small","d_BuildSettings.WebGL","d_BuildSettings.WebGL.Small",
+ "d_BuildSettings.Xbox360","d_BuildSettings.Xbox360.Small","d_BuildSettings.XboxOne",
+ "d_BuildSettings.XboxOne.Small","d_CheckerFloor","d_CloudConnect","d_Collab.FileAdded",
+ "d_Collab.FileConflict","d_Collab.FileDeleted","d_Collab.FileIgnored","d_Collab.FileMoved",
+ "d_Collab.FileUpdated","d_Collab.FolderAdded","d_Collab.FolderConflict","d_Collab.FolderDeleted",
+ "d_Collab.FolderIgnored","d_Collab.FolderMoved","d_Collab.FolderUpdated","d_ColorPicker.CycleColor",
+ "d_ColorPicker.CycleSlider","d_console.erroricon","d_console.erroricon.sml","d_console.infoicon",
+ "d_console.infoicon.sml","d_console.warnicon","d_console.warnicon.sml","d_curvekeyframe",
+ "d_curvekeyframeselected","d_curvekeyframeselectedoverlay","d_curvekeyframesemiselectedoverlay",
+ "d_curvekeyframeweighted","d_CustomSorting","d_DefaultSorting","d_EditCollider","d_editcollision_16",
+ "d_editconstraints_16","d_editicon.sml","d_endButton-On","d_endButton","d_eyeDropper.Large",
+ "d_eyeDropper.sml","d_Favorite","d_FilterByLabel","d_FilterByType","d_FilterSelectedOnly",
+ "d_FilterSelectedOnly@2x","d_forward","d_forward@2x","d_GEAR","d_Groove","d_HorizontalSplit",
+ "d_icon dropdown","d_InspectorLock","d_JointAngularLimits","d_leftBracket","d_Lighting",
+ "d_LightmapEditor.WindowTitle","d_LookDevCenterLight","d_LookDevCenterLight@2x","d_LookDevClose",
+ "d_LookDevClose@2x","d_LookDevEnvRotation","d_LookDevEnvRotation@2x","d_LookDevMirrorViews",
+ "d_LookDevMirrorViews@2x","d_LookDevMirrorViewsActive","d_LookDevMirrorViewsActive@2x",
+ "d_LookDevMirrorViewsInactive","d_LookDevMirrorViewsInactive@2x","d_LookDevObjRotation",
+ "d_LookDevObjRotation@2x","d_LookDevPaneOption","d_LookDevPaneOption@2x","d_LookDevResetEnv",
+ "d_LookDevResetEnv@2x","d_LookDevShadow","d_LookDevShadow@2x","d_LookDevSideBySide",
+ "d_LookDevSideBySide@2x","d_LookDevSingle1","d_LookDevSingle1@2x","d_LookDevSingle2",
+ "d_LookDevSingle2@2x","d_LookDevSplit","d_LookDevSplit@2x","d_LookDevZone","d_LookDevZone@2x",
+ "d_Mirror","d_model large","d_monologo","d_MoveTool on","d_MoveTool","d_Navigation","d_Occlusion",
+ "d_P4_AddedLocal","d_P4_AddedRemote","d_P4_CheckOutLocal","d_P4_CheckOutRemote","d_P4_Conflicted",
+ "d_P4_DeletedLocal","d_P4_DeletedRemote","d_P4_Local","d_P4_LockedLocal","d_P4_LockedRemote",
+ "d_P4_OutOfSync","d_Particle Effect","d_PauseButton On","d_PauseButton","d_PlayButton On","d_PlayButton",
+ "d_PlayButtonProfile On","d_PlayButtonProfile","d_playLoopOff","d_playLoopOn","d_preAudioAutoPlayOff",
+ "d_preAudioAutoPlayOn","d_preAudioLoopOff","d_preAudioLoopOn","d_preAudioPlayOff","d_preAudioPlayOn",
+ "d_PreMatCube","d_PreMatCylinder","d_PreMatLight0","d_PreMatLight1","d_PreMatSphere","d_PreMatTorus",
+ "d_Preset.Context","d_PreTextureAlpha","d_PreTextureMipMapHigh","d_PreTextureMipMapLow","d_PreTextureRGB",
+ "d_Profiler.Audio","d_Profiler.CPU","d_Profiler.FirstFrame","d_Profiler.GPU","d_Profiler.LastFrame",
+ "d_Profiler.Memory","d_Profiler.Network","d_Profiler.NextFrame","d_Profiler.Physics","d_Profiler.PrevFrame",
+ "d_Profiler.Record","d_Profiler.Rendering","d_Profiler.Video","d_ProfilerColumn.WarningCount","d_Project",
+ "d_RectTool On","d_RectTool","d_RectTransformBlueprint","d_RectTransformRaw","d_redGroove","d_Refresh",
+ "d_renderdoc","d_rightBracket","d_RotateTool On","d_RotateTool","d_ScaleTool On","d_ScaleTool",
+ "d_SceneViewAlpha","d_SceneViewAudio","d_SceneViewFx","d_SceneViewLighting","d_SceneViewOrtho",
+ "d_SceneViewRGB","d_ScrollShadow","d_Settings","d_SettingsIcon","d_SocialNetworks.FacebookShare",
+ "d_SocialNetworks.LinkedInShare","d_SocialNetworks.Tweet","d_SocialNetworks.UDNOpen","d_SpeedScale",
+ "d_StepButton On","d_StepButton","d_StepLeftButton-On","d_StepLeftButton","d_SVN_AddedLocal",
+ "d_SVN_Conflicted","d_SVN_DeletedLocal","d_SVN_Local","d_SVN_LockedLocal","d_SVN_OutOfSync","d_tab_next",
+ "d_tab_next@2x","d_tab_prev","d_tab_prev@2x","d_TerrainInspector.TerrainToolLower On",
+ "d_TerrainInspector.TerrainToolLowerAlt","d_TerrainInspector.TerrainToolPlants On",
+ "d_TerrainInspector.TerrainToolPlants","d_TerrainInspector.TerrainToolPlantsAlt On",
+ "d_TerrainInspector.TerrainToolPlantsAlt","d_TerrainInspector.TerrainToolRaise On",
+ "d_TerrainInspector.TerrainToolRaise","d_TerrainInspector.TerrainToolSetheight On",
+ "d_TerrainInspector.TerrainToolSetheight","d_TerrainInspector.TerrainToolSetheightAlt On",
+ "d_TerrainInspector.TerrainToolSetheightAlt","d_TerrainInspector.TerrainToolSettings On",
+ "d_TerrainInspector.TerrainToolSettings","d_TerrainInspector.TerrainToolSmoothHeight On",
+ "d_TerrainInspector.TerrainToolSmoothHeight","d_TerrainInspector.TerrainToolSplat On",
+ "d_TerrainInspector.TerrainToolSplat","d_TerrainInspector.TerrainToolSplatAlt On",
+ "d_TerrainInspector.TerrainToolSplatAlt","d_TerrainInspector.TerrainToolTrees On",
+ "d_TerrainInspector.TerrainToolTrees","d_TerrainInspector.TerrainToolTreesAlt On",
+ "d_TerrainInspector.TerrainToolTreesAlt","d_TimelineDigIn","d_TimelineEditModeMixOFF",
+ "d_TimelineEditModeMixON","d_TimelineEditModeReplaceOFF","d_TimelineEditModeReplaceON",
+ "d_TimelineEditModeRippleOFF","d_TimelineEditModeRippleON","d_TimelineSelector","d_Toolbar Minus",
+ "d_Toolbar Plus More","d_Toolbar Plus","d_ToolHandleCenter","d_ToolHandleGlobal","d_ToolHandleLocal",
+ "d_ToolHandlePivot","d_tranp","d_TransformTool On","d_TransformTool","d_tree_icon","d_tree_icon_branch",
+ "d_tree_icon_branch_frond","d_tree_icon_frond","d_tree_icon_leaf","d_TreeEditor.AddBranches",
+ "d_TreeEditor.AddLeaves","d_TreeEditor.Branch On","d_TreeEditor.Branch","d_TreeEditor.BranchFreeHand On",
+ "d_TreeEditor.BranchFreeHand","d_TreeEditor.BranchRotate On","d_TreeEditor.BranchRotate",
+ "d_TreeEditor.BranchScale On","d_TreeEditor.BranchScale","d_TreeEditor.BranchTranslate On",
+ "d_TreeEditor.BranchTranslate","d_TreeEditor.Distribution On","d_TreeEditor.Distribution",
+ "d_TreeEditor.Duplicate","d_TreeEditor.Geometry On","d_TreeEditor.Geometry","d_TreeEditor.Leaf On",
+ "d_TreeEditor.Leaf","d_TreeEditor.LeafFreeHand On","d_TreeEditor.LeafFreeHand","d_TreeEditor.LeafRotate On",
+ "d_TreeEditor.LeafRotate","d_TreeEditor.LeafScale On","d_TreeEditor.LeafScale",
+ "d_TreeEditor.LeafTranslate On","d_TreeEditor.LeafTranslate","d_TreeEditor.Material On",
+ "d_TreeEditor.Material","d_TreeEditor.Refresh","d_TreeEditor.Trash","d_TreeEditor.Wind On",
+ "d_TreeEditor.Wind","d_UnityEditor.AnimationWindow","d_UnityEditor.ConsoleWindow",
+ "d_UnityEditor.DebugInspectorWindow","d_UnityEditor.FindDependencies","d_UnityEditor.GameView",
+ "d_UnityEditor.HierarchyWindow","d_UnityEditor.InspectorWindow","d_UnityEditor.LookDevView",
+ "d_UnityEditor.ProfilerWindow","d_UnityEditor.SceneHierarchyWindow","d_UnityEditor.SceneView",
+ "d_UnityEditor.Timeline.TimelineWindow","d_UnityEditor.VersionControl","d_UnityLogo","d_VerticalSplit",
+ "d_ViewToolMove On","d_ViewToolMove","d_ViewToolOrbit On","d_ViewToolOrbit","d_ViewToolZoom On",
+ "d_ViewToolZoom","d_VisibilityOff","d_VisibilityOn","d_VUMeterTextureHorizontal","d_VUMeterTextureVertical",
+ "d_WaitSpin00","d_WaitSpin01","d_WaitSpin02","d_WaitSpin03","d_WaitSpin04","d_WaitSpin05","d_WaitSpin06",
+ "d_WaitSpin07","d_WaitSpin08","d_WaitSpin09","d_WaitSpin10","d_WaitSpin11","d_WelcomeScreen.AssetStoreLogo",
+ "d_winbtn_graph","d_winbtn_graph_close_h","d_winbtn_graph_max_h","d_winbtn_graph_min_h",
+ "d_winbtn_mac_close","d_winbtn_mac_close_a","d_winbtn_mac_close_h","d_winbtn_mac_inact","d_winbtn_mac_max",
+ "d_winbtn_mac_max_a","d_winbtn_mac_max_h","d_winbtn_mac_min","d_winbtn_mac_min_a","d_winbtn_mac_min_h",
+ "d_winbtn_win_close","d_winbtn_win_close_a","d_winbtn_win_close_h","d_winbtn_win_max","d_winbtn_win_max_a",
+ "d_winbtn_win_max_h","d_winbtn_win_min","d_winbtn_win_min_a","d_winbtn_win_min_h","d_winbtn_win_rest",
+ "d_winbtn_win_rest_a","d_winbtn_win_rest_h","DefaultSorting","EditCollider","editcollision_16",
+ "editconstraints_16","editicon.sml","endButton-On","endButton","eyeDropper.Large","eyeDropper.sml",
+ "Favorite","FilterByLabel","FilterByType","FilterSelectedOnly","FilterSelectedOnly@2x","forward",
+ "forward@2x","GEAR","Grid.BoxTool","Grid.Default","Grid.EraserTool","Grid.FillTool","Grid.MoveTool",
+ "Grid.PaintTool","Grid.PickingTool","Grid.SelectTool","Groove","align_horizontally",
+ "align_horizontally_center","align_horizontally_center_active","align_horizontally_left",
+ "align_horizontally_left_active","align_horizontally_right","align_horizontally_right_active",
+ "align_vertically","align_vertically_bottom","align_vertically_bottom_active","align_vertically_center",
+ "align_vertically_center_active","align_vertically_top","align_vertically_top_active",
+ "d_align_horizontally","d_align_horizontally_center","d_align_horizontally_center_active",
+ "d_align_horizontally_left","d_align_horizontally_left_active","d_align_horizontally_right",
+ "d_align_horizontally_right_active","d_align_vertically","d_align_vertically_bottom",
+ "d_align_vertically_bottom_active","d_align_vertically_center","d_align_vertically_center_active",
+ "d_align_vertically_top","d_align_vertically_top_active","HorizontalSplit","icon dropdown",
+ "InspectorLock","JointAngularLimits","KnobCShape","KnobCShapeMini","leftBracket","Lighting",
+ "LightmapEditor.WindowTitle","Lightmapping","d_greenLight","d_lightOff","d_lightRim","d_orangeLight",
+ "d_redLight","greenLight","lightOff","lightRim","orangeLight","redLight","LockIcon-On","LockIcon",
+ "LookDevCenterLight","LookDevCenterLightl@2x","LookDevClose","LookDevClose@2x","LookDevEnvRotation",
+ "LookDevEnvRotation@2x","LookDevEyedrop","LookDevLight","LookDevLight@2x","LookDevMirrorViewsActive",
+ "LookDevMirrorViewsActive@2x","LookDevMirrorViewsInactive","LookDevMirrorViewsInactive@2x",
+ "LookDevObjRotation","LookDevObjRotation@2x","LookDevPaneOption","LookDevPaneOption@2x","LookDevResetEnv",
+ "LookDevResetEnv@2x","LookDevShadow","LookDevShadow@2x","LookDevShadowFrame","LookDevShadowFrame@2x",
+ "LookDevSideBySide","LookDevSideBySide@2x","LookDevSingle1","LookDevSingle1@2x","LookDevSingle2",
+ "LookDevSingle2@2x","LookDevSplit","LookDevSplit@2x","LookDevZone","LookDevZone@2x","loop","Mirror",
+ "monologo","MoveTool on","MoveTool","Navigation","Occlusion","P4_AddedLocal","P4_AddedRemote",
+ "P4_BlueLeftParenthesis","P4_BlueRightParenthesis","P4_CheckOutLocal","P4_CheckOutRemote","P4_Conflicted",
+ "P4_DeletedLocal","P4_DeletedRemote","P4_Local","P4_LockedLocal","P4_LockedRemote","P4_OutOfSync",
+ "P4_RedLeftParenthesis","P4_RedRightParenthesis","P4_Updating","PackageBadgeDelete","PackageBadgeNew",
+ "Particle Effect","PauseButton On","PauseButton","PlayButton On","PlayButton","PlayButtonProfile On",
+ "PlayButtonProfile","playLoopOff","playLoopOn","playSpeed","preAudioAutoPlayOff","preAudioAutoPlayOn",
+ "preAudioLoopOff","preAudioLoopOn","preAudioPlayOff","preAudioPlayOn","PreMatCube","PreMatCylinder",
+ "PreMatLight0","PreMatLight1","PreMatQuad","PreMatSphere","PreMatTorus","Preset.Context","PreTextureAlpha",
+ "PreTextureArrayFirstSlice","PreTextureArrayLastSlice","PreTextureMipMapHigh","PreTextureMipMapLow",
+ "PreTextureRGB","AreaLight Gizmo","AreaLight Icon","Assembly Icon","AssetStore Icon","AudioMixerView Icon",
+ "AudioSource Gizmo","Camera Gizmo","CGProgram Icon","ChorusFilter Icon","CollabChanges Icon",
+ "CollabChangesConflict Icon","CollabChangesDeleted Icon","CollabConflict Icon","CollabCreate Icon",
+ "CollabDeleted Icon","CollabEdit Icon","CollabExclude Icon","CollabMoved Icon","cs Script Icon",
+ "d_AudioMixerView Icon","d_CollabChanges Icon","d_CollabChangesConflict Icon","d_CollabChangesDeleted Icon",
+ "d_CollabConflict Icon","d_CollabCreate Icon","d_CollabDeleted Icon","d_CollabEdit Icon",
+ "d_CollabExclude Icon","d_CollabMoved Icon","d_GridLayoutGroup Icon","d_HorizontalLayoutGroup Icon",
+ "d_Prefab Icon","d_PrefabModel Icon","d_PrefabVariant Icon","d_VerticalLayoutGroup Icon",
+ "DefaultSlate Icon","DirectionalLight Gizmo","DirectionalLight Icon","DiscLight Gizmo","DiscLight Icon",
+ "dll Script Icon","EchoFilter Icon","Favorite Icon","Folder Icon","FolderEmpty Icon",
+ "FolderFavorite Icon","GameManager Icon","GridBrush Icon","HighPassFilter Icon",
+ "HorizontalLayoutGroup Icon","LensFlare Gizmo","LightingDataAssetParent Icon","LightProbeGroup Gizmo",
+ "LightProbeProxyVolume Gizmo","LowPassFilter Icon","Main Light Gizmo","MetaFile Icon",
+ "Microphone Icon","MuscleClip Icon","ParticleSystem Gizmo","PointLight Gizmo","Prefab Icon",
+ "PrefabModel Icon","PrefabOverlayAdded Icon","PrefabOverlayModified Icon","PrefabOverlayRemoved Icon",
+ "PrefabVariant Icon","Projector Gizmo","RaycastCollider Icon","ReflectionProbe Gizmo",
+ "ReverbFilter Icon","SceneSet Icon","Search Icon","SoftlockProjectBrowser Icon","SpeedTreeModel Icon",
+ "SpotLight Gizmo","Spotlight Icon","SpriteCollider Icon","sv_icon_dot0_pix16_gizmo",
+ "sv_icon_dot10_pix16_gizmo","sv_icon_dot11_pix16_gizmo","sv_icon_dot12_pix16_gizmo",
+ "sv_icon_dot13_pix16_gizmo","sv_icon_dot14_pix16_gizmo","sv_icon_dot15_pix16_gizmo",
+ "sv_icon_dot1_pix16_gizmo","sv_icon_dot2_pix16_gizmo","sv_icon_dot3_pix16_gizmo",
+ "sv_icon_dot4_pix16_gizmo","sv_icon_dot5_pix16_gizmo","sv_icon_dot6_pix16_gizmo",
+ "sv_icon_dot7_pix16_gizmo","sv_icon_dot8_pix16_gizmo","sv_icon_dot9_pix16_gizmo",
+ "AnimatorController Icon","AnimatorState Icon","AnimatorStateMachine Icon",
+ "AnimatorStateTransition Icon","BlendTree Icon","AnimationWindowEvent Icon","AudioMixerController Icon",
+ "DefaultAsset Icon","EditorSettings Icon","AnyStateNode Icon","HumanTemplate Icon",
+ "LightingDataAsset Icon","LightmapParameters Icon","Preset Icon","SceneAsset Icon",
+ "SubstanceArchive Icon","AssemblyDefinitionAsset Icon","NavMeshAgent Icon","NavMeshData Icon",
+ "NavMeshObstacle Icon","OffMeshLink Icon","AnalyticsTracker Icon","Animation Icon",
+ "AnimationClip Icon","AimConstraint Icon","d_AimConstraint Icon","d_LookAtConstraint Icon",
+ "d_ParentConstraint Icon","d_PositionConstraint Icon","d_RotationConstraint Icon",
+ "d_ScaleConstraint Icon","LookAtConstraint Icon","ParentConstraint Icon","PositionConstraint Icon",
+ "RotationConstraint Icon","ScaleConstraint Icon","Animator Icon","AnimatorOverrideController Icon",
+ "AreaEffector2D Icon","AudioMixerGroup Icon","AudioMixerSnapshot Icon","AudioSpatializerMicrosoft Icon",
+ "AudioChorusFilter Icon","AudioClip Icon","AudioDistortionFilter Icon","AudioEchoFilter Icon",
+ "AudioHighPassFilter Icon","AudioListener Icon","AudioLowPassFilter Icon","AudioReverbFilter Icon",
+ "AudioReverbZone Icon","AudioSource Icon","Avatar Icon","AvatarMask Icon","BillboardAsset Icon",
+ "BillboardRenderer Icon","BoxCollider Icon","BoxCollider2D Icon","BuoyancyEffector2D Icon","Camera Icon",
+ "Canvas Icon","CanvasGroup Icon","CanvasRenderer Icon","CapsuleCollider Icon","CapsuleCollider2D Icon",
+ "CharacterController Icon","CharacterJoint Icon","CircleCollider2D Icon","Cloth Icon",
+ "CompositeCollider2D Icon","ComputeShader Icon","ConfigurableJoint Icon","ConstantForce Icon",
+ "ConstantForce2D Icon","Cubemap Icon","d_Canvas Icon","d_CanvasGroup Icon","d_CanvasRenderer Icon",
+ "d_GameObject Icon","d_LightProbeProxyVolume Icon","d_ParticleSystem Icon","d_ParticleSystemForceField Icon",
+ "d_RectTransform Icon","d_StreamingController Icon","DistanceJoint2D Icon","EdgeCollider2D Icon",
+ "d_EventSystem Icon","d_EventTrigger Icon","d_Physics2DRaycaster Icon","d_PhysicsRaycaster Icon",
+ "d_StandaloneInputModule Icon","d_TouchInputModule Icon","EventSystem Icon","EventTrigger Icon",
+ "HoloLensInputModule Icon","Physics2DRaycaster Icon","PhysicsRaycaster Icon","StandaloneInputModule Icon",
+ "TouchInputModule Icon","SpriteShapeRenderer Icon","VisualTreeAsset Icon","d_VisualEffect Icon",
+ "d_VisualEffectAsset Icon","VisualEffect Icon","VisualEffectAsset Icon","FixedJoint Icon",
+ "FixedJoint2D Icon","Flare Icon","FlareLayer Icon","Font Icon","FrictionJoint2D Icon",
+ "GameObject Icon","Grid Icon","GUILayer Icon","GUISkin Icon","GUIText Icon","GUITexture Icon",
+ "Halo Icon","HingeJoint Icon","HingeJoint2D Icon","LensFlare Icon","Light Icon","LightProbeGroup Icon",
+ "LightProbeProxyVolume Icon","LightProbes Icon","LineRenderer Icon","LODGroup Icon","Material Icon",
+ "Mesh Icon","MeshCollider Icon","MeshFilter Icon","MeshRenderer Icon","Motion Icon","MovieTexture Icon",
+ "NetworkAnimator Icon","NetworkDiscovery Icon","NetworkIdentity Icon","NetworkLobbyManager Icon",
+ "NetworkLobbyPlayer Icon","NetworkManager Icon","NetworkManagerHUD Icon","NetworkMigrationManager Icon",
+ "NetworkProximityChecker Icon","NetworkStartPosition Icon","NetworkTransform Icon",
+ "NetworkTransformChild Icon","NetworkTransformVisualizer Icon","NetworkView Icon","OcclusionArea Icon",
+ "OcclusionPortal Icon","ParticleSystem Icon","ParticleSystemForceField Icon","PhysicMaterial Icon",
+ "PhysicsMaterial2D Icon","PlatformEffector2D Icon","d_PlayableDirector Icon","PlayableDirector Icon",
+ "PointEffector2D Icon","PolygonCollider2D Icon","ProceduralMaterial Icon","Projector Icon",
+ "RectTransform Icon","ReflectionProbe Icon","RelativeJoint2D Icon","d_SortingGroup Icon",
+ "SortingGroup Icon","RenderTexture Icon","Rigidbody Icon","Rigidbody2D Icon","ScriptableObject Icon",
+ "Shader Icon","ShaderVariantCollection Icon","SkinnedMeshRenderer Icon","Skybox Icon","SliderJoint2D Icon",
+ "TrackedPoseDriver Icon","SphereCollider Icon","SpringJoint Icon","SpringJoint2D Icon","Sprite Icon",
+ "SpriteMask Icon","SpriteRenderer Icon","StreamingController Icon","StyleSheet Icon","SurfaceEffector2D Icon",
+ "TargetJoint2D Icon","Terrain Icon","TerrainCollider Icon","TerrainData Icon","TextAsset Icon",
+ "TextMesh Icon","Texture Icon","Texture2D Icon","Tile Icon","Tilemap Icon","TilemapCollider2D Icon",
+ "TilemapRenderer Icon","d_TimelineAsset Icon","TimelineAsset Icon","TrailRenderer Icon","Transform Icon",
+ "SpriteAtlas Icon","AspectRatioFitter Icon","Button Icon","CanvasScaler Icon","ContentSizeFitter Icon",
+ "d_AspectRatioFitter Icon","d_CanvasScaler Icon","d_ContentSizeFitter Icon","d_FreeformLayoutGroup Icon",
+ "d_GraphicRaycaster Icon","d_GridLayoutGroup Icon","d_HorizontalLayoutGroup Icon","d_LayoutElement Icon",
+ "d_PhysicalResolution Icon","d_ScrollViewArea Icon","d_SelectionList Icon","d_SelectionListItem Icon",
+ "d_SelectionListTemplate Icon","d_VerticalLayoutGroup Icon","Dropdown Icon","FreeformLayoutGroup Icon",
+ "GraphicRaycaster Icon","GridLayoutGroup Icon","HorizontalLayoutGroup Icon","Image Icon","InputField Icon",
+ "LayoutElement Icon","Mask Icon","Outline Icon","PositionAsUV1 Icon","RawImage Icon","RectMask2D Icon",
+ "Scrollbar Icon","ScrollRect Icon","Selectable Icon","Shadow Icon","Slider Icon","Text Icon","Toggle Icon",
+ "ToggleGroup Icon","VerticalLayoutGroup Icon","VideoClip Icon","VideoPlayer Icon","VisualEffect Icon",
+ "VisualEffectAsset Icon","WheelCollider Icon","WheelJoint2D Icon","WindZone Icon",
+ "SpatialMappingCollider Icon","SpatialMappingRenderer Icon","WorldAnchor Icon","UssScript Icon",
+ "UxmlScript Icon","VerticalLayoutGroup Icon","VideoEffect Icon","VisualEffect Gizmo",
+ "VisualEffectAsset Icon","AnchorBehaviour Icon","AnchorInputListenerBehaviour Icon",
+ "AnchorStageBehaviour Icon","CloudRecoBehaviour Icon","ContentPlacementBehaviour Icon",
+ "ContentPositioningBehaviour Icon","CylinderTargetBehaviour Icon","d_AnchorBehaviour Icon",
+ "d_AnchorInputListenerBehaviour Icon","d_AnchorStageBehaviour Icon","d_CloudRecoBehaviour Icon",
+ "d_ContentPlacementBehaviour Icon","d_ContentPositioningBehaviour Icon","d_CylinderTargetBehaviour Icon",
+ "d_ImageTargetBehaviour Icon","d_MidAirPositionerBehaviour Icon","d_ModelTargetBehaviour Icon",
+ "d_MultiTargetBehaviour Icon","d_ObjectTargetBehaviour Icon","d_PlaneFinderBehaviour Icon",
+ "d_UserDefinedTargetBuildingBehaviour Icon","d_VirtualButtonBehaviour Icon","d_VuforiaBehaviour Icon",
+ "d_VuMarkBehaviour Icon","d_WireframeBehaviour Icon","ImageTargetBehaviour Icon",
+ "MidAirPositionerBehaviour Icon","ModelTargetBehaviour Icon","MultiTargetBehaviour Icon",
+ "ObjectTargetBehaviour Icon","PlaneFinderBehaviour Icon","UserDefinedTargetBuildingBehaviour Icon",
+ "VirtualButtonBehaviour Icon","VuforiaBehaviour Icon","VuMarkBehaviour Icon","WireframeBehaviour Icon",
+ "WindZone Gizmo","Profiler.Audio","Profiler.CPU","Profiler.FirstFrame","Profiler.GlobalIllumination",
+ "Profiler.GPU","Profiler.Instrumentation","Profiler.LastFrame","Profiler.Memory","Profiler.NetworkMessages",
+ "Profiler.NetworkOperations","Profiler.NextFrame","Profiler.Physics","Profiler.Physics2D",
+ "Profiler.PrevFrame","Profiler.Record","Profiler.Rendering","Profiler.UI","Profiler.UIDetails",
+ "Profiler.Video","ProfilerColumn.WarningCount","Project","RectTool On","RectTool","RectTransformBlueprint",
+ "RectTransformRaw","redGroove","Refresh","renderdoc","rightBracket","RotateTool On","RotateTool",
+ "SaveActive","SaveFromPlay","SavePassive","ScaleTool On","ScaleTool","SceneLoadIn","SceneLoadOut",
+ "SceneSave","SceneSaveGrey","SceneViewAlpha","SceneViewAudio","SceneViewFx","SceneViewLighting",
+ "SceneViewOrtho","SceneViewRGB","ScrollShadow","Settings","SettingsIcon","SocialNetworks.FacebookShare",
+ "SocialNetworks.LinkedInShare","SocialNetworks.Tweet","SocialNetworks.UDNLogo","SocialNetworks.UDNOpen",
+ "SoftlockInline","SpeedScale","StateMachineEditor.ArrowTip","StateMachineEditor.ArrowTipSelected",
+ "StateMachineEditor.Background","StateMachineEditor.State","StateMachineEditor.StateHover",
+ "StateMachineEditor.StateSelected","StateMachineEditor.StateSub","StateMachineEditor.StateSubHover",
+ "StateMachineEditor.StateSubSelected","StateMachineEditor.UpButton","StateMachineEditor.UpButtonHover",
+ "StepButton On","StepButton","StepLeftButton-On","StepLeftButton","sticky_arrow","sticky_p4","sticky_skin",
+ "sv_icon_dot0_sml","sv_icon_dot10_sml","sv_icon_dot11_sml","sv_icon_dot12_sml","sv_icon_dot13_sml",
+ "sv_icon_dot14_sml","sv_icon_dot15_sml","sv_icon_dot1_sml","sv_icon_dot2_sml","sv_icon_dot3_sml",
+ "sv_icon_dot4_sml","sv_icon_dot5_sml","sv_icon_dot6_sml","sv_icon_dot7_sml","sv_icon_dot8_sml",
+ "sv_icon_dot9_sml","sv_icon_name0","sv_icon_name1","sv_icon_name2","sv_icon_name3","sv_icon_name4",
+ "sv_icon_name5","sv_icon_name6","sv_icon_name7","sv_icon_none","sv_label_0","sv_label_1","sv_label_2",
+ "sv_label_3","sv_label_4","sv_label_5","sv_label_6","sv_label_7","SVN_AddedLocal","SVN_Conflicted",
+ "SVN_DeletedLocal","SVN_Local","SVN_LockedLocal","SVN_OutOfSync","tab_next","tab_next@2x","tab_prev",
+ "tab_prev@2x","TerrainInspector.TerrainToolLower On","TerrainInspector.TerrainToolLower",
+ "TerrainInspector.TerrainToolLowerAlt","TerrainInspector.TerrainToolPlants On",
+ "TerrainInspector.TerrainToolPlants","TerrainInspector.TerrainToolPlantsAlt On",
+ "TerrainInspector.TerrainToolPlantsAlt","TerrainInspector.TerrainToolRaise On",
+ "TerrainInspector.TerrainToolRaise","TerrainInspector.TerrainToolSculpt On",
+ "TerrainInspector.TerrainToolSculpt","TerrainInspector.TerrainToolSetheight On",
+ "TerrainInspector.TerrainToolSetheight","TerrainInspector.TerrainToolSetheightAlt On",
+ "TerrainInspector.TerrainToolSetheightAlt","TerrainInspector.TerrainToolSettings On",
+ "TerrainInspector.TerrainToolSettings","TerrainInspector.TerrainToolSmoothHeight On",
+ "TerrainInspector.TerrainToolSmoothHeight","TerrainInspector.TerrainToolSplat On",
+ "TerrainInspector.TerrainToolSplat","TerrainInspector.TerrainToolSplatAlt On",
+ "TerrainInspector.TerrainToolSplatAlt","TerrainInspector.TerrainToolTrees On",
+ "TerrainInspector.TerrainToolTrees","TerrainInspector.TerrainToolTreesAlt On",
+ "TerrainInspector.TerrainToolTreesAlt","TestFailed","TestIgnored","TestInconclusive","TestNormal",
+ "TestPassed","TestStopwatch","TimelineClipBG","TimelineClipFG","TimelineDigIn","TimelineEditModeMixOFF",
+ "TimelineEditModeMixON","TimelineEditModeReplaceOFF","TimelineEditModeReplaceON","TimelineEditModeRippleOFF",
+ "TimelineEditModeRippleON","TimelineSelector","Toolbar Minus","Toolbar Plus More","Toolbar Plus",
+ "ToolHandleCenter","ToolHandleGlobal","ToolHandleLocal","ToolHandlePivot","tranp","TransformTool On",
+ "TransformTool","tree_icon","tree_icon_branch","tree_icon_branch_frond","tree_icon_frond","tree_icon_leaf",
+ "TreeEditor.AddBranches","TreeEditor.AddLeaves","TreeEditor.Branch On","TreeEditor.Branch",
+ "TreeEditor.BranchFreeHand On","TreeEditor.BranchFreeHand","TreeEditor.BranchRotate On",
+ "TreeEditor.BranchRotate","TreeEditor.BranchScale On","TreeEditor.BranchScale",
+ "TreeEditor.BranchTranslate On","TreeEditor.BranchTranslate","TreeEditor.Distribution On",
+ "TreeEditor.Distribution","TreeEditor.Duplicate","TreeEditor.Geometry On","TreeEditor.Geometry",
+ "TreeEditor.Leaf On","TreeEditor.Leaf","TreeEditor.LeafFreeHand On","TreeEditor.LeafFreeHand",
+ "TreeEditor.LeafRotate On","TreeEditor.LeafRotate","TreeEditor.LeafScale On","TreeEditor.LeafScale",
+ "TreeEditor.LeafTranslate On","TreeEditor.LeafTranslate","TreeEditor.Material On","TreeEditor.Material",
+ "TreeEditor.Refresh","TreeEditor.Trash","TreeEditor.Wind On","TreeEditor.Wind","UnityEditor.AnimationWindow",
+ "UnityEditor.ConsoleWindow","UnityEditor.DebugInspectorWindow","UnityEditor.FindDependencies",
+ "UnityEditor.GameView","UnityEditor.Graphs.AnimatorControllerTool","UnityEditor.HierarchyWindow",
+ "UnityEditor.InspectorWindow","UnityEditor.LookDevView","UnityEditor.ProfilerWindow",
+ "UnityEditor.SceneHierarchyWindow","UnityEditor.SceneView","UnityEditor.Timeline.TimelineWindow",
+ "UnityEditor.VersionControl","UnityLogo","UnityLogoLarge","UpArrow","vcs_add","vcs_branch","vcs_change",
+ "vcs_check","vcs_delete","vcs_document","vcs_edit","vcs_incoming","vcs_integrate","vcs_local","vcs_lock",
+ "vcs_refresh","vcs_sync","vcs_unresolved","vcs_update","VerticalSplit","ViewToolMove On","ViewToolMove",
+ "ViewToolOrbit On","ViewToolOrbit","ViewToolZoom On","ViewToolZoom","VisibilityOff","VisibilityOn",
+ "VisualEffect Gizmo","VUMeterTextureHorizontal","VUMeterTextureVertical","WaitSpin00","WaitSpin01",
+ "WaitSpin02","WaitSpin03","WaitSpin04","WaitSpin05","WaitSpin06","WaitSpin07","WaitSpin08","WaitSpin09",
+ "WaitSpin10","WaitSpin11","WelcomeScreen.AssetStoreLogo","winbtn_graph","winbtn_graph_close_h",
+ "winbtn_graph_max_h","winbtn_graph_min_h","winbtn_mac_close","winbtn_mac_close_a","winbtn_mac_close_h",
+ "winbtn_mac_inact","winbtn_mac_max","winbtn_mac_max_a","winbtn_mac_max_h","winbtn_mac_min",
+ "winbtn_mac_min_a","winbtn_mac_min_h","winbtn_win_close","winbtn_win_close_a","winbtn_win_close_h",
+ "winbtn_win_max","winbtn_win_max_a","winbtn_win_max_h","winbtn_win_min","winbtn_win_min_a",
+ "winbtn_win_min_h","winbtn_win_rest","winbtn_win_rest_a","winbtn_win_rest_h",
+ "AvatarInspector/RightFingersIk","AvatarInspector/LeftFingersIk","AvatarInspector/RightFeetIk",
+ "AvatarInspector/LeftFeetIk","AvatarInspector/RightFingers","AvatarInspector/LeftFingers",
+ "AvatarInspector/RightArm","AvatarInspector/LeftArm","AvatarInspector/RightLeg","AvatarInspector/LeftLeg",
+ "AvatarInspector/Head","AvatarInspector/Torso","AvatarInspector/MaskEditor_Root",
+ "AvatarInspector/BodyPartPicker","AvatarInspector/BodySIlhouette","boo Script Icon","js Script Icon",
+ "EyeDropper.Large","AboutWindow.MainHeader","AgeiaLogo","MonoLogo","PlayButtonProfile Anim",
+ "StepButton Anim","PauseButton Anim","PlayButton Anim","MoveTool On","Icon Dropdown",
+ "AvatarInspector/DotSelection","AvatarInspector/DotFrameDotted","AvatarInspector/DotFrame",
+ "AvatarInspector/DotFill","AvatarInspector/RightHandZoom","AvatarInspector/LeftHandZoom",
+ "AvatarInspector/HeadZoom","AvatarInspector/RightLeg","AvatarInspector/LeftLeg",
+ "AvatarInspector/RightFingers","AvatarInspector/RightArm","AvatarInspector/LeftFingers",
+ "AvatarInspector/LeftArm","AvatarInspector/Head","AvatarInspector/Torso",
+ "AvatarInspector/RightHandZoomSilhouette","AvatarInspector/LeftHandZoomSilhouette",
+ "AvatarInspector/HeadZoomSilhouette","AvatarInspector/BodySilhouette","lightMeter/redLight",
+ "lightMeter/orangeLight","lightMeter/lightRim","lightMeter/greenLight","SceneviewAudio",
+ "SceneviewLighting","TerrainInspector.TerrainToolSetHeight","AS Badge New","AS Badge Move",
+ "AS Badge Delete","WelcomeScreen.UnityAnswersLogo","WelcomeScreen.UnityForumLogo",
+ "WelcomeScreen.UnityBasicsLogo","WelcomeScreen.VideoTutLogo","WelcomeScreen.MainHeader","Icon Dropdown",
+ "PrefabNormal Icon","PrefabNormal Icon","BuildSettings.BlackBerry.Small","BuildSettings.Tizen.Small",
+ "BuildSettings.XBox360.Small","BuildSettings.PS3.Small","BuildSettings.SamsungTV.Small",
+ "BuildSettings.BlackBerry","BuildSettings.Tizen","BuildSettings.XBox360","BuildSettings.PS3",
+ "BuildSettings.SamsungTV"
+ };
+
+ #endregion
+}
+#endif
diff --git a/Assets/Editor/EditorIcons.cs.meta b/Assets/Editor/EditorIcons.cs.meta
new file mode 100644
index 00000000..d5a7ca99
--- /dev/null
+++ b/Assets/Editor/EditorIcons.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 80c08162d7cc5f84eb99fca81e1eb1ea
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Editor/GUIStyleViwer.cs b/Assets/Editor/GUIStyleViwer.cs
new file mode 100644
index 00000000..9ec7ab47
--- /dev/null
+++ b/Assets/Editor/GUIStyleViwer.cs
@@ -0,0 +1,59 @@
+
+using UnityEngine;
+using UnityEditor;
+
+public class GUIStyleViewer : EditorWindow
+{
+
+ Vector2 scrollPosition = new Vector2(0, 0);
+ string search = "";
+ GUIStyle textStyle;
+
+ private static GUIStyleViewer window;
+ [MenuItem("Tools/GUIStyleViewer", false, 10)]
+ private static void OpenStyleViewer()
+ {
+ window = GetWindow<GUIStyleViewer>(false, "内置GUIStyle");
+ }
+
+ void OnGUI()
+ {
+ if (textStyle == null)
+ {
+ textStyle = new GUIStyle("HeaderLabel");
+ textStyle.fontSize = 25;
+ }
+
+ GUILayout.BeginHorizontal("HelpBox");
+ GUILayout.Label("结果如下:", textStyle);
+ GUILayout.FlexibleSpace();
+ GUILayout.Label("Search:");
+ search = EditorGUILayout.TextField(search);
+ GUILayout.EndHorizontal();
+ GUILayout.BeginHorizontal("PopupCurveSwatchBackground");
+ GUILayout.Label("样式展示", textStyle, GUILayout.Width(300));
+ GUILayout.Label("名字", textStyle, GUILayout.Width(300));
+ GUILayout.EndHorizontal();
+
+
+ scrollPosition = GUILayout.BeginScrollView(scrollPosition);
+
+ foreach (var style in GUI.skin.customStyles)
+ {
+ if (style.name.ToLower().Contains(search.ToLower()))
+ {
+ GUILayout.Space(15);
+ GUILayout.BeginHorizontal("PopupCurveSwatchBackground");
+ if (GUILayout.Button(style.name, style, GUILayout.Width(300)))
+ {
+ EditorGUIUtility.systemCopyBuffer = style.name;
+ Debug.LogError(style.name);
+ }
+ EditorGUILayout.SelectableLabel(style.name, GUILayout.Width(300));
+ GUILayout.EndHorizontal();
+ }
+ }
+
+ GUILayout.EndScrollView();
+ }
+} \ No newline at end of file
diff --git a/Assets/Editor/GUIStyleViwer.cs.meta b/Assets/Editor/GUIStyleViwer.cs.meta
new file mode 100644
index 00000000..a7f91047
--- /dev/null
+++ b/Assets/Editor/GUIStyleViwer.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 880320d430ea6ee4094251f800774f29
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Scripts/Unit/RootMotion/Editor/RootMotionEditor.cs b/Assets/Scripts/Unit/RootMotion/Editor/RootMotionEditor.cs
index c5804801..734e0ce0 100644
--- a/Assets/Scripts/Unit/RootMotion/Editor/RootMotionEditor.cs
+++ b/Assets/Scripts/Unit/RootMotion/Editor/RootMotionEditor.cs
@@ -245,6 +245,8 @@ public class RootMotionEditor : EditorWindow
{
Vector3 pos = m_Transform.position;
pos.x = 0;
+ pos.y = pos.y < 0 ? 0 : pos.y;
+
rootmotion.positionList.Add(pos);
sampleTime = sampleTime - sampleDuration;
}
diff --git a/Assets/Scripts/Unit/RootMotion/RootMotionScene.unity b/Assets/Scripts/Unit/RootMotion/RootMotionScene.unity
index 76c61fd9..21450bb1 100644
--- a/Assets/Scripts/Unit/RootMotion/RootMotionScene.unity
+++ b/Assets/Scripts/Unit/RootMotion/RootMotionScene.unity
@@ -112,6 +112,1097 @@ NavMeshSettings:
debug:
m_Flags: 0
m_NavMeshData: {fileID: 0}
+--- !u!1 &23054734
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 23054735}
+ m_Layer: 0
+ m_Name: J_Bip_L_Shoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &23054735
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 23054734}
+ m_LocalRotation: {x: 0.015390801, y: -0.088680856, z: 0.0017767502, w: 0.9959396}
+ m_LocalPosition: {x: -0.022385627, y: 0.08726394, z: -0.02744283}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1095766968}
+ m_Father: {fileID: 662482133}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &54496467
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 54496468}
+ m_Layer: 0
+ m_Name: J_Bip_L_Foot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &54496468
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 54496467}
+ m_LocalRotation: {x: 0.10420287, y: 0.07171385, z: 0.05118749, w: 0.9906456}
+ m_LocalPosition: {x: 0.011414096, y: -0.45458323, z: -0.025450574}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1106057741}
+ m_Father: {fileID: 293617766}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &60458982
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 60458983}
+ m_Layer: 0
+ m_Name: J_Bip_R_Hand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &60458983
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 60458982}
+ m_LocalRotation: {x: 0.10789031, y: 0.21424004, z: 0.03851021, w: 0.9700402}
+ m_LocalPosition: {x: 0.21920133, y: -0.0004762411, z: 0.018095838}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 65435362}
+ - {fileID: 231621199}
+ - {fileID: 1041936933}
+ - {fileID: 1837491713}
+ - {fileID: 2108035971}
+ m_Father: {fileID: 954336373}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &65435361
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 65435362}
+ m_Layer: 0
+ m_Name: J_Bip_R_Index1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &65435362
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 65435361}
+ m_LocalRotation: {x: 0.10831602, y: 0.19324191, z: -0.010479294, w: -0.97509766}
+ m_LocalPosition: {x: 0.05526197, y: 0.004809141, z: 0.018542344}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1662617516}
+ m_Father: {fileID: 60458983}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &70713794
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 70713795}
+ m_Layer: 0
+ m_Name: J_Sec_R_SkirtSide0
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &70713795
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 70713794}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.17011715, y: -0.017756581, z: 0.007579135}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2000349202}
+ m_Father: {fileID: 116385904}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &116385903
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 116385904}
+ m_Layer: 0
+ m_Name: J_Bip_C_Hips
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &116385904
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 116385903}
+ m_LocalRotation: {x: -0.09645026, y: 0.29019648, z: 0.023534277, w: 0.9518033}
+ m_LocalPosition: {x: 0.0025268737, y: 0.969788, z: -0.004664138}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2126303511}
+ - {fileID: 70713795}
+ - {fileID: 1983203026}
+ - {fileID: 1955876955}
+ - {fileID: 785108201}
+ m_Father: {fileID: 798129163}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &128497571
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 128497572}
+ m_Layer: 0
+ m_Name: J_Adj_R_FaceEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &128497572
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 128497571}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.013720556, y: 0.05573821, z: 0.027436351}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2052101858}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &143629371
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 143629372}
+ m_Layer: 0
+ m_Name: RootActionTool
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &143629372
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 143629371}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1804205901}
+ m_Father: {fileID: 0}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &154887360
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 154887361}
+ m_Layer: 0
+ m_Name: J_Sec_L_SkirtFront2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &154887361
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 154887360}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.012040399, y: -0.14064658, z: 0.019186586}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1025993103}
+ m_Father: {fileID: 1952066289}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &166182836
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 166182837}
+ m_Layer: 0
+ m_Name: J_Bip_L_Ring1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &166182837
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 166182836}
+ m_LocalRotation: {x: 0.03209563, y: -0.12475832, z: 0.15269752, w: 0.9798412}
+ m_LocalPosition: {x: -0.05766177, y: 0.0071827173, z: -0.00947858}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 897984765}
+ m_Father: {fileID: 1829952723}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &208124677
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 208124678}
+ m_Layer: 0
+ m_Name: J_Sec_R_SkirtFront2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &208124678
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 208124677}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.012040377, y: -0.1406461, z: 0.019186556}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 457376693}
+ m_Father: {fileID: 684663234}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &231621198
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 231621199}
+ m_Layer: 0
+ m_Name: J_Bip_R_Little1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &231621199
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 231621198}
+ m_LocalRotation: {x: -0.0456351, y: -0.23462826, z: 0.32895702, w: -0.9135942}
+ m_LocalPosition: {x: 0.054704785, y: 0.0027016401, z: -0.023169363}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1715785427}
+ m_Father: {fileID: 60458983}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &263453547
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 263453548}
+ m_Layer: 0
+ m_Name: J_Bip_L_Index3_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &263453548
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 263453547}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.020848274, y: -0.0007864237, z: 0.0019332021}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1582843581}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &288445381
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 288445382}
+ m_Layer: 0
+ m_Name: J_Sec_R_Bust1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &288445382
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 288445381}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.053541, y: -0.027212381, z: 0.059070617}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 529537195}
+ m_Father: {fileID: 662482133}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &293617765
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 293617766}
+ m_Layer: 0
+ m_Name: J_Bip_L_LowerLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &293617766
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 293617765}
+ m_LocalRotation: {x: 0.5107193, y: -0.007207848, z: 0.07366425, w: 0.8565555}
+ m_LocalPosition: {x: 0.022899546, y: -0.40274787, z: -0.009075051}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 54496468}
+ m_Father: {fileID: 1955876955}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!221 &344983393
+AnimatorOverrideController:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_Name: override controller
+ m_Controller: {fileID: 9100000, guid: 47311b4ae25969546aa7fca07ea0405a, type: 2}
+ m_Clips:
+ - m_OriginalClip: {fileID: 7400000, guid: d1dee14942f17c745bb953c649ee14e5, type: 2}
+ m_OverrideClip: {fileID: 7400000, guid: 439c16ed902d7de4586d0fe54df431d0, type: 2}
+--- !u!1 &424026836
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 424026837}
+ m_Layer: 0
+ m_Name: J_Bip_L_Middle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &424026837
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 424026836}
+ m_LocalRotation: {x: -0.007723958, y: -0.028663486, z: 0.0102160135, w: 0.9995071}
+ m_LocalPosition: {x: -0.057169676, y: 0.0072404146, z: 0.0041333474}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1573181705}
+ m_Father: {fileID: 1829952723}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &427063190
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 427063191}
+ m_Layer: 0
+ m_Name: J_Bip_R_Ring2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &427063191
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 427063190}
+ m_LocalRotation: {x: 0.00053129665, y: -0.0001547313, z: 0.27125064, w: -0.9625086}
+ m_LocalPosition: {x: 0.029680371, y: -0.00046563148, z: 0.00014942884}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1942105363}
+ m_Father: {fileID: 1837491713}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &446950351
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 446950352}
+ m_Layer: 0
+ m_Name: J_Bip_C_Chest
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &446950352
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 446950351}
+ m_LocalRotation: {x: 0.109064445, y: -0.032528833, z: -0.09752643, w: 0.98870397}
+ m_LocalPosition: {x: -0.000000015104888, y: 0.113987684, z: 0.014169313}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 662482133}
+ m_Father: {fileID: 1983203026}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &457376692
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 457376693}
+ m_Layer: 0
+ m_Name: J_Sec_R_SkirtFront2_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &457376693
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 457376692}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.014491327, y: -0.17169738, z: 0.023767427}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 208124678}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &497974056
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 497974057}
+ m_Layer: 0
+ m_Name: J_Sec_R_SkirtSide2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &497974057
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 497974056}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.05265367, y: -0.12872022, z: -0.016150372}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1228070530}
+ m_Father: {fileID: 2000349202}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &509370685
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 509370686}
+ m_Layer: 0
+ m_Name: J_Sec_L_SkirtBack1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &509370686
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 509370685}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 931099773}
+ m_Father: {fileID: 962348665}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &529537194
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 529537195}
+ m_Layer: 0
+ m_Name: J_Sec_R_Bust2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &529537195
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 529537194}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.002945736, y: -0.005250454, z: 0.020106763}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 288445382}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &538567281
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 538567282}
+ - component: {fileID: 538567283}
+ m_Layer: 0
+ m_Name: Hair001.baked
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &538567282
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 538567281}
+ m_LocalRotation: {x: -0, y: -0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: -0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1804205901}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!137 &538567283
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 538567281}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_DynamicOccludee: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_RenderingLayerMask: 1
+ m_RendererPriority: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 5ff3f732c505c204aa342a6a4cf08c01, type: 2}
+ m_StaticBatchInfo:
+ firstSubMesh: 0
+ subMeshCount: 0
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 1
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 0
+ m_StitchLightmapSeams: 0
+ m_SelectedEditorRenderState: 3
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingLayer: 0
+ m_SortingOrder: 0
+ serializedVersion: 2
+ m_Quality: 0
+ m_UpdateWhenOffscreen: 0
+ m_SkinnedMotionVectors: 1
+ m_Mesh: {fileID: 4300000, guid: 17d0f67c0c7937346b3150f15d621b6b, type: 2}
+ m_Bones:
+ - {fileID: 798129163}
+ - {fileID: 116385904}
+ - {fileID: 785108201}
+ - {fileID: 666777359}
+ - {fileID: 2009561705}
+ - {fileID: 1659720226}
+ - {fileID: 1084369430}
+ - {fileID: 1836391084}
+ - {fileID: 684663234}
+ - {fileID: 208124678}
+ - {fileID: 457376693}
+ - {fileID: 1152667257}
+ - {fileID: 1957392679}
+ - {fileID: 879291067}
+ - {fileID: 1478144948}
+ - {fileID: 1955876955}
+ - {fileID: 293617766}
+ - {fileID: 54496468}
+ - {fileID: 1106057741}
+ - {fileID: 1683692174}
+ - {fileID: 851452542}
+ - {fileID: 1952066289}
+ - {fileID: 154887361}
+ - {fileID: 1025993103}
+ - {fileID: 962348665}
+ - {fileID: 509370686}
+ - {fileID: 931099773}
+ - {fileID: 1511625409}
+ - {fileID: 1983203026}
+ - {fileID: 446950352}
+ - {fileID: 662482133}
+ - {fileID: 1900176195}
+ - {fileID: 1215177380}
+ - {fileID: 954336373}
+ - {fileID: 60458983}
+ - {fileID: 2108035971}
+ - {fileID: 797394338}
+ - {fileID: 1396431388}
+ - {fileID: 1625486777}
+ - {fileID: 1837491713}
+ - {fileID: 427063191}
+ - {fileID: 1942105363}
+ - {fileID: 1227264543}
+ - {fileID: 1041936933}
+ - {fileID: 1176801868}
+ - {fileID: 1819453862}
+ - {fileID: 1319795137}
+ - {fileID: 231621199}
+ - {fileID: 1715785427}
+ - {fileID: 658261988}
+ - {fileID: 1803578778}
+ - {fileID: 65435362}
+ - {fileID: 1662617516}
+ - {fileID: 819674891}
+ - {fileID: 1204250766}
+ - {fileID: 23054735}
+ - {fileID: 1095766968}
+ - {fileID: 2131651854}
+ - {fileID: 1829952723}
+ - {fileID: 1292558472}
+ - {fileID: 2129507016}
+ - {fileID: 1434933814}
+ - {fileID: 913998511}
+ - {fileID: 166182837}
+ - {fileID: 897984765}
+ - {fileID: 1633682643}
+ - {fileID: 1132398331}
+ - {fileID: 424026837}
+ - {fileID: 1573181705}
+ - {fileID: 1900992305}
+ - {fileID: 785131701}
+ - {fileID: 1304604752}
+ - {fileID: 596285325}
+ - {fileID: 1686884234}
+ - {fileID: 1726225490}
+ - {fileID: 995468577}
+ - {fileID: 655593226}
+ - {fileID: 1582843581}
+ - {fileID: 263453548}
+ - {fileID: 1615919681}
+ - {fileID: 2052101858}
+ - {fileID: 128497572}
+ - {fileID: 1476939287}
+ - {fileID: 288445382}
+ - {fileID: 529537195}
+ - {fileID: 1756224165}
+ - {fileID: 616030296}
+ - {fileID: 70713795}
+ - {fileID: 2000349202}
+ - {fileID: 497974057}
+ - {fileID: 1228070530}
+ - {fileID: 2126303511}
+ - {fileID: 2040558624}
+ - {fileID: 2055262624}
+ - {fileID: 584027017}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 798129163}
+ m_AABB:
+ m_Center: {x: 0.00045835227, y: 1.5936981, z: -0.013411567}
+ m_Extent: {x: 0.102537565, y: 0.13071239, z: 0.10481538}
+ m_DirtyAABB: 0
+--- !u!1 &584027016
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 584027017}
+ m_Layer: 0
+ m_Name: J_Sec_L_SkirtSide2_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &584027017
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 584027016}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.043533444, y: -0.12330979, z: -0.014539368}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2055262624}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &596285324
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 596285325}
+ m_Layer: 0
+ m_Name: J_Bip_L_Little2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &596285325
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 596285324}
+ m_LocalRotation: {x: 0.0035609503, y: 0.0010284513, z: 0.24515781, w: 0.9694761}
+ m_LocalPosition: {x: -0.027151346, y: -0.00023639202, z: 0.000019155443}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1686884234}
+ m_Father: {fileID: 1304604752}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &616030295
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 616030296}
+ m_Layer: 0
+ m_Name: J_Sec_L_Bust2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &616030296
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 616030295}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.0029457435, y: -0.0052503347, z: 0.020106792}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1756224165}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &655593225
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 655593226}
+ m_Layer: 0
+ m_Name: J_Bip_L_Index2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &655593226
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 655593225}
+ m_LocalRotation: {x: -0.007664884, y: -0.0028143018, z: 0.24406983, w: 0.9697233}
+ m_LocalPosition: {x: -0.028381467, y: -0.00011599064, z: 0.0044524968}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1582843581}
+ m_Father: {fileID: 995468577}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &658261987
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 658261988}
+ m_Layer: 0
+ m_Name: J_Bip_R_Little3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &658261988
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 658261987}
+ m_LocalRotation: {x: -0.012868967, y: 0.0037168376, z: 0.0590532, w: -0.998165}
+ m_LocalPosition: {x: 0.015616655, y: 0.00058710575, z: -0.000815399}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1803578778}
+ m_Father: {fileID: 1715785427}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &662482132
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 662482133}
+ m_Layer: 0
+ m_Name: J_Bip_C_UpperChest
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &662482133
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 662482132}
+ m_LocalRotation: {x: 0.08666424, y: 0.025566053, z: 0.0006933659, w: 0.9959093}
+ m_LocalPosition: {x: 0.0000000129512046, y: 0.13214767, z: -0.014527371}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1756224165}
+ - {fileID: 288445382}
+ - {fileID: 1615919681}
+ - {fileID: 23054735}
+ - {fileID: 1900176195}
+ m_Father: {fileID: 446950352}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &666777358
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 666777359}
+ m_Layer: 0
+ m_Name: J_Bip_R_LowerLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &666777359
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 666777358}
+ m_LocalRotation: {x: 0.50554943, y: 0.0025779535, z: 0.0025668025, w: 0.86279}
+ m_LocalPosition: {x: -0.022899874, y: -0.40274775, z: -0.009074856}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2009561705}
+ m_Father: {fileID: 785108201}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &684401757
GameObject:
m_ObjectHideFlags: 0
@@ -181,6 +1272,397 @@ Transform:
m_Father: {fileID: 0}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
+--- !u!1 &684663233
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 684663234}
+ m_Layer: 0
+ m_Name: J_Sec_R_SkirtFront1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &684663234
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 684663233}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 208124678}
+ m_Father: {fileID: 1836391084}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &703705379
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 703705380}
+ - component: {fileID: 703705382}
+ - component: {fileID: 703705381}
+ m_Layer: 0
+ m_Name: secondary
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &703705380
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 703705379}
+ m_LocalRotation: {x: -0, y: -0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: -0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1804205901}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &703705381
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 703705379}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 00ea06e1753e16f4ca870c39c067c86b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_comment: Skirt
+ m_drawGizmo: 0
+ m_gizmoColor: {r: 1, g: 0.92156863, b: 0.015686275, a: 1}
+ m_stiffnessForce: 0.5
+ m_gravityPower: 0
+ m_gravityDir: {x: 0, y: -1, z: 0}
+ m_dragForce: 0.05
+ m_center: {fileID: 2126303511}
+ RootBones:
+ - {fileID: 509370686}
+ - {fileID: 1952066289}
+ - {fileID: 2040558624}
+ - {fileID: 1957392679}
+ - {fileID: 684663234}
+ - {fileID: 2000349202}
+ m_hitRadius: 0.02
+ ColliderGroups:
+ - {fileID: 1955876956}
+ - {fileID: 785108200}
+ m_updateType: 0
+--- !u!114 &703705382
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 703705379}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 00ea06e1753e16f4ca870c39c067c86b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_comment: Bust
+ m_drawGizmo: 0
+ m_gizmoColor: {r: 1, g: 0.92156863, b: 0.015686275, a: 1}
+ m_stiffnessForce: 0.75
+ m_gravityPower: 0
+ m_gravityDir: {x: 0, y: -1, z: 0}
+ m_dragForce: 0.05
+ m_center: {fileID: 2126303511}
+ RootBones:
+ - {fileID: 1756224165}
+ - {fileID: 288445382}
+ m_hitRadius: 0.02
+ ColliderGroups: []
+ m_updateType: 0
+--- !u!1 &785108199
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 785108201}
+ - component: {fileID: 785108200}
+ m_Layer: 0
+ m_Name: J_Bip_R_UpperLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &785108200
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 785108199}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 646b65a4a57afd34d8c4ed557efb46a5, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ Colliders:
+ - Offset: {x: -0.016110823, y: -0.2833464, z: -0.0063844672}
+ Radius: 0.081
+ - Offset: {x: -0.021740243, y: -0.40305644, z: -0.012533921}
+ Radius: 0.081
+ - Offset: {x: -0.026431441, y: -0.5028148, z: -0.017658468}
+ Radius: 0.081
+ m_gizmoColor: {r: 1, g: 0, b: 1, a: 1}
+--- !u!4 &785108201
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 785108199}
+ m_LocalRotation: {x: -0.14067496, y: 0.002080556, z: 0.037414443, w: 0.98934644}
+ m_LocalPosition: {x: 0.07712237, y: -0.03899467, z: -0.008861896}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1152667257}
+ - {fileID: 1836391084}
+ - {fileID: 666777359}
+ m_Father: {fileID: 116385904}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &785131700
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 785131701}
+ m_Layer: 0
+ m_Name: J_Bip_L_Middle3_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &785131701
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 785131700}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.021585822, y: -0.0013959408, z: 0.0007458627}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1900992305}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &797394337
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 797394338}
+ m_Layer: 0
+ m_Name: J_Bip_R_Thumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &797394338
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 797394337}
+ m_LocalRotation: {x: 0.002162635, y: -0.14897202, z: 0.0012717544, w: -0.9888383}
+ m_LocalPosition: {x: 0.027911186, y: -0.002315998, z: 0.028893456}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1396431388}
+ m_Father: {fileID: 2108035971}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &798129162
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 798129163}
+ m_Layer: 0
+ m_Name: Root
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &798129163
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 798129162}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 116385904}
+ m_Father: {fileID: 1804205901}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &819674890
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 819674891}
+ m_Layer: 0
+ m_Name: J_Bip_R_Index3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &819674891
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 819674890}
+ m_LocalRotation: {x: 0.02841785, y: -0.010434569, z: 0.04795364, w: -0.99839073}
+ m_LocalPosition: {x: 0.017565966, y: -0.0005825758, z: 0.0019902624}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1204250766}
+ m_Father: {fileID: 1662617516}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &851452541
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 851452542}
+ m_Layer: 0
+ m_Name: J_Sec_L_SkirtFront0
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &851452542
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 851452541}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.0042221993, y: 0.0062517524, z: 0.13752823}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1952066289}
+ m_Father: {fileID: 1955876955}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &879291066
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 879291067}
+ m_Layer: 0
+ m_Name: J_Sec_R_SkirtBack2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &879291067
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 879291066}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.021028236, y: -0.13928068, z: -0.051316246}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1478144948}
+ m_Father: {fileID: 1957392679}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &897984764
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 897984765}
+ m_Layer: 0
+ m_Name: J_Bip_L_Ring2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &897984765
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 897984764}
+ m_LocalRotation: {x: -0.0005308818, y: -0.00015460224, z: 0.27125072, w: 0.96250856}
+ m_LocalPosition: {x: -0.02968049, y: -0.00046527386, z: 0.00014913827}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1633682643}
+ m_Father: {fileID: 166182837}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &902212380
GameObject:
m_ObjectHideFlags: 0
@@ -263,3 +1745,2528 @@ Transform:
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &913998510
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 913998511}
+ m_Layer: 0
+ m_Name: J_Bip_L_Thumb3_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &913998511
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 913998510}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.012956858, y: -0.00069999695, z: 0.0135062635}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1434933814}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &931099772
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 931099773}
+ m_Layer: 0
+ m_Name: J_Sec_L_SkirtBack2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &931099773
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 931099772}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.021028481, y: -0.13928032, z: -0.051316246}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1511625409}
+ m_Father: {fileID: 509370686}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &954336372
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 954336373}
+ m_Layer: 0
+ m_Name: J_Bip_R_LowerArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &954336373
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 954336372}
+ m_LocalRotation: {x: 0.07604022, y: -0.82555974, z: 0.06751396, w: 0.5550773}
+ m_LocalPosition: {x: 0.22465436, y: -0.010465622, z: 0.0018852726}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 60458983}
+ m_Father: {fileID: 1215177380}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &962348664
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 962348665}
+ m_Layer: 0
+ m_Name: J_Sec_L_SkirtBack0
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &962348665
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 962348664}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.0030585676, y: 0.03845179, z: -0.12451656}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 509370686}
+ m_Father: {fileID: 1955876955}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &995468576
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 995468577}
+ m_Layer: 0
+ m_Name: J_Bip_L_Index1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &995468577
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 995468576}
+ m_LocalRotation: {x: -0.10831319, y: 0.19324937, z: -0.010482795, w: 0.97509646}
+ m_LocalPosition: {x: -0.05526197, y: 0.0048098564, z: 0.018542187}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 655593226}
+ m_Father: {fileID: 1829952723}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1025993102
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1025993103}
+ m_Layer: 0
+ m_Name: J_Sec_L_SkirtFront2_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1025993103
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1025993102}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.014491841, y: -0.17169732, z: 0.023767307}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 154887361}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1041936932
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1041936933}
+ m_Layer: 0
+ m_Name: J_Bip_R_Middle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1041936933
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1041936932}
+ m_LocalRotation: {x: 0.007723254, y: -0.028667953, z: 0.010215837, w: -0.999507}
+ m_LocalPosition: {x: 0.057169855, y: 0.00723958, z: 0.0041334815}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1176801868}
+ m_Father: {fileID: 60458983}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1084369429
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1084369430}
+ m_Layer: 0
+ m_Name: J_Bip_R_ToeBase_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1084369430
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1084369429}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.00037640333, y: -0.0018102527, z: 0.0416165}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1659720226}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1095766967
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1095766968}
+ m_Layer: 0
+ m_Name: J_Bip_L_UpperArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1095766968
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1095766967}
+ m_LocalRotation: {x: 0.14171682, y: -0.08419298, z: 0.42540097, w: 0.8898663}
+ m_LocalPosition: {x: -0.086294696, y: -0.014869213, z: 0.0053637624}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2131651854}
+ m_Father: {fileID: 23054735}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1106057740
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1106057741}
+ m_Layer: 0
+ m_Name: J_Bip_L_ToeBase
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1106057741
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1106057740}
+ m_LocalRotation: {x: -0.12330991, y: -0, z: -0, w: 0.9923682}
+ m_LocalPosition: {x: -0.0012323633, y: -0.062149465, z: 0.10164185}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1683692174}
+ m_Father: {fileID: 54496468}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1132398330
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1132398331}
+ m_Layer: 0
+ m_Name: J_Bip_L_Ring3_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1132398331
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1132398330}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.018464208, y: 0.00028824806, z: -0.00011737645}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1633682643}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1152667256
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1152667257}
+ m_Layer: 0
+ m_Name: J_Sec_R_SkirtBack0
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1152667257
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1152667256}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.0030583367, y: 0.03845179, z: -0.12451683}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1957392679}
+ m_Father: {fileID: 785108201}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1176801867
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1176801868}
+ m_Layer: 0
+ m_Name: J_Bip_R_Middle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1176801868
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1176801867}
+ m_LocalRotation: {x: 0.0014493311, y: -0.00065490225, z: 0.27639434, w: -0.96104306}
+ m_LocalPosition: {x: 0.031909585, y: -0.0011667013, z: 0.0021083597}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1819453862}
+ m_Father: {fileID: 1041936933}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1204250765
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1204250766}
+ m_Layer: 0
+ m_Name: J_Bip_R_Index3_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1204250766
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1204250765}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.020848513, y: -0.0007866621, z: 0.0019334853}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 819674891}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1215177379
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1215177380}
+ m_Layer: 0
+ m_Name: J_Bip_R_UpperArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1215177380
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1215177379}
+ m_LocalRotation: {x: 0.083715394, y: -0.08456971, z: -0.24507606, w: 0.9621733}
+ m_LocalPosition: {x: 0.08629414, y: -0.014870524, z: 0.0053636804}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 954336373}
+ m_Father: {fileID: 1900176195}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1227264542
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1227264543}
+ m_Layer: 0
+ m_Name: J_Bip_R_Ring3_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1227264543
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1227264542}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.01846397, y: 0.00028800964, z: -0.00011719763}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1942105363}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1228070529
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1228070530}
+ m_Layer: 0
+ m_Name: J_Sec_R_SkirtSide2_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1228070530
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1228070529}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.04353355, y: -0.12331021, z: -0.014539378}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 497974057}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1292558471
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1292558472}
+ m_Layer: 0
+ m_Name: J_Bip_L_Thumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1292558472
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1292558471}
+ m_LocalRotation: {x: 0.16962664, y: -0.081987426, z: 0.20944655, w: 0.95949835}
+ m_LocalPosition: {x: -0.0017571449, y: -0.005976796, z: 0.015335286}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2129507016}
+ m_Father: {fileID: 1829952723}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1304604751
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1304604752}
+ m_Layer: 0
+ m_Name: J_Bip_L_Little1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1304604752
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1304604751}
+ m_LocalRotation: {x: 0.045633454, y: -0.23462772, z: 0.32895815, w: 0.91359407}
+ m_LocalPosition: {x: -0.054704785, y: 0.002702713, z: -0.023169527}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 596285325}
+ m_Father: {fileID: 1829952723}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1319795136
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1319795137}
+ m_Layer: 0
+ m_Name: J_Bip_R_Middle3_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1319795137
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1319795136}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.021585584, y: -0.00139606, z: 0.00074595213}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1819453862}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1396431387
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1396431388}
+ m_Layer: 0
+ m_Name: J_Bip_R_Thumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1396431388
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1396431387}
+ m_LocalRotation: {x: 0.008292407, y: -0.012869492, z: 0.0048765317, w: -0.99987096}
+ m_LocalPosition: {x: 0.018435717, y: -0.0012960434, z: 0.01646521}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1625486777}
+ m_Father: {fileID: 797394338}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1427728102
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1427728103}
+ - component: {fileID: 1427728104}
+ m_Layer: 0
+ m_Name: Face.baked
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1427728103
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1427728102}
+ m_LocalRotation: {x: -0, y: -0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: -0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1804205901}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!137 &1427728104
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1427728102}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_DynamicOccludee: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_RenderingLayerMask: 1
+ m_RendererPriority: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 2d4ebf7725bb268488657192d90b4812, type: 2}
+ - {fileID: 2100000, guid: 919424c4640929244b7f9312950ace64, type: 2}
+ - {fileID: 2100000, guid: 6c3fc5746bc2e1b45a42679428bcfc0e, type: 2}
+ - {fileID: 2100000, guid: 4d33d172c7403794e9f3e5671b13823d, type: 2}
+ - {fileID: 2100000, guid: 13f5d022925cc6c459a145812ec7cac0, type: 2}
+ - {fileID: 2100000, guid: efd029df918332242a1ff3289389f387, type: 2}
+ - {fileID: 2100000, guid: bc2ed1d6ca1796947b31d37ff4165fb2, type: 2}
+ - {fileID: 2100000, guid: 0bb3fb3379145a5418fae4157765fb68, type: 2}
+ - {fileID: 2100000, guid: ff63b44c1ce093d4ca7bd64f1048be38, type: 2}
+ m_StaticBatchInfo:
+ firstSubMesh: 0
+ subMeshCount: 0
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 1
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 0
+ m_StitchLightmapSeams: 0
+ m_SelectedEditorRenderState: 3
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingLayer: 0
+ m_SortingOrder: 0
+ serializedVersion: 2
+ m_Quality: 0
+ m_UpdateWhenOffscreen: 0
+ m_SkinnedMotionVectors: 1
+ m_Mesh: {fileID: 4300000, guid: bc5f697179530934ab2896900b03f730, type: 2}
+ m_Bones:
+ - {fileID: 798129163}
+ - {fileID: 116385904}
+ - {fileID: 785108201}
+ - {fileID: 666777359}
+ - {fileID: 2009561705}
+ - {fileID: 1659720226}
+ - {fileID: 1084369430}
+ - {fileID: 1836391084}
+ - {fileID: 684663234}
+ - {fileID: 208124678}
+ - {fileID: 457376693}
+ - {fileID: 1152667257}
+ - {fileID: 1957392679}
+ - {fileID: 879291067}
+ - {fileID: 1478144948}
+ - {fileID: 1955876955}
+ - {fileID: 293617766}
+ - {fileID: 54496468}
+ - {fileID: 1106057741}
+ - {fileID: 1683692174}
+ - {fileID: 851452542}
+ - {fileID: 1952066289}
+ - {fileID: 154887361}
+ - {fileID: 1025993103}
+ - {fileID: 962348665}
+ - {fileID: 509370686}
+ - {fileID: 931099773}
+ - {fileID: 1511625409}
+ - {fileID: 1983203026}
+ - {fileID: 446950352}
+ - {fileID: 662482133}
+ - {fileID: 1900176195}
+ - {fileID: 1215177380}
+ - {fileID: 954336373}
+ - {fileID: 60458983}
+ - {fileID: 2108035971}
+ - {fileID: 797394338}
+ - {fileID: 1396431388}
+ - {fileID: 1625486777}
+ - {fileID: 1837491713}
+ - {fileID: 427063191}
+ - {fileID: 1942105363}
+ - {fileID: 1227264543}
+ - {fileID: 1041936933}
+ - {fileID: 1176801868}
+ - {fileID: 1819453862}
+ - {fileID: 1319795137}
+ - {fileID: 231621199}
+ - {fileID: 1715785427}
+ - {fileID: 658261988}
+ - {fileID: 1803578778}
+ - {fileID: 65435362}
+ - {fileID: 1662617516}
+ - {fileID: 819674891}
+ - {fileID: 1204250766}
+ - {fileID: 23054735}
+ - {fileID: 1095766968}
+ - {fileID: 2131651854}
+ - {fileID: 1829952723}
+ - {fileID: 1292558472}
+ - {fileID: 2129507016}
+ - {fileID: 1434933814}
+ - {fileID: 913998511}
+ - {fileID: 166182837}
+ - {fileID: 897984765}
+ - {fileID: 1633682643}
+ - {fileID: 1132398331}
+ - {fileID: 424026837}
+ - {fileID: 1573181705}
+ - {fileID: 1900992305}
+ - {fileID: 785131701}
+ - {fileID: 1304604752}
+ - {fileID: 596285325}
+ - {fileID: 1686884234}
+ - {fileID: 1726225490}
+ - {fileID: 995468577}
+ - {fileID: 655593226}
+ - {fileID: 1582843581}
+ - {fileID: 263453548}
+ - {fileID: 1615919681}
+ - {fileID: 2052101858}
+ - {fileID: 128497572}
+ - {fileID: 1476939287}
+ - {fileID: 288445382}
+ - {fileID: 529537195}
+ - {fileID: 1756224165}
+ - {fileID: 616030296}
+ - {fileID: 70713795}
+ - {fileID: 2000349202}
+ - {fileID: 497974057}
+ - {fileID: 1228070530}
+ - {fileID: 2126303511}
+ - {fileID: 2040558624}
+ - {fileID: 2055262624}
+ - {fileID: 584027017}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 798129163}
+ m_AABB:
+ m_Center: {x: 0.00045906752, y: 1.5876296, z: 0.0330455}
+ m_Extent: {x: 0.08747722, y: 0.09616017, z: 0.06394016}
+ m_DirtyAABB: 0
+--- !u!1 &1434933813
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1434933814}
+ m_Layer: 0
+ m_Name: J_Bip_L_Thumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1434933814
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1434933813}
+ m_LocalRotation: {x: -0.008366878, y: -0.012873776, z: 0.0049174046, w: 0.9998701}
+ m_LocalPosition: {x: -0.018439531, y: -0.0013074875, z: 0.016460069}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 913998511}
+ m_Father: {fileID: 2129507016}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1476939286
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1476939287}
+ m_Layer: 0
+ m_Name: J_Adj_L_FaceEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1476939287
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1476939286}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.013720599, y: 0.05573821, z: 0.027436344}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2052101858}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1478144947
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1478144948}
+ m_Layer: 0
+ m_Name: J_Sec_R_SkirtBack2_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1478144948
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1478144947}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.02027233, y: -0.14094126, z: -0.046542868}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 879291067}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1511625408
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1511625409}
+ m_Layer: 0
+ m_Name: J_Sec_L_SkirtBack2_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1511625409
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1511625408}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.020272076, y: -0.14094198, z: -0.04654321}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 931099773}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1573181704
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1573181705}
+ m_Layer: 0
+ m_Name: J_Bip_L_Middle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1573181705
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1573181704}
+ m_LocalRotation: {x: -0.0014491564, y: -0.00065480336, z: 0.27639416, w: 0.9610431}
+ m_LocalPosition: {x: -0.031909466, y: -0.0011664629, z: 0.0021082107}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1900992305}
+ m_Father: {fileID: 424026837}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1582843580
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1582843581}
+ m_Layer: 0
+ m_Name: J_Bip_L_Index3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1582843581
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1582843580}
+ m_LocalRotation: {x: -0.028414732, y: -0.01043298, z: 0.04795359, w: 0.99839085}
+ m_LocalPosition: {x: -0.017566085, y: -0.0005823374, z: 0.0019900464}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 263453548}
+ m_Father: {fileID: 655593226}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1615919680
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1615919681}
+ m_Layer: 0
+ m_Name: J_Bip_C_Neck
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1615919681
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1615919680}
+ m_LocalRotation: {x: 0.0709622, y: 0.00000008940695, z: 0.00000019371507, w: 0.997479}
+ m_LocalPosition: {x: 0.000000010797521, y: 0.11461532, z: -0.033395648}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2052101858}
+ m_Father: {fileID: 662482133}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1625486776
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1625486777}
+ m_Layer: 0
+ m_Name: J_Bip_R_Thumb3_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1625486777
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1625486776}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.012954861, y: -0.0006916523, z: 0.013508812}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1396431388}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1633682642
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1633682643}
+ m_Layer: 0
+ m_Name: J_Bip_L_Ring3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1633682643
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1633682642}
+ m_LocalRotation: {x: -0.002764845, y: -0.00080517126, z: 0.08720806, w: 0.996186}
+ m_LocalPosition: {x: -0.017118812, y: 0.0006057024, z: 0.00021506101}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1132398331}
+ m_Father: {fileID: 897984765}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1659720225
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1659720226}
+ m_Layer: 0
+ m_Name: J_Bip_R_ToeBase
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1659720226
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1659720225}
+ m_LocalRotation: {x: -0.095273495, y: -0, z: -0, w: 0.9954512}
+ m_LocalPosition: {x: 0.001231797, y: -0.062149346, z: 0.10164182}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1084369430}
+ m_Father: {fileID: 2009561705}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1662617515
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1662617516}
+ m_Layer: 0
+ m_Name: J_Bip_R_Index2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1662617516
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1662617515}
+ m_LocalRotation: {x: 0.0076657096, y: -0.0028147316, z: 0.24406995, w: -0.9697233}
+ m_LocalPosition: {x: 0.028381407, y: -0.00011634827, z: 0.004452847}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 819674891}
+ m_Father: {fileID: 65435362}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1683692173
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1683692174}
+ m_Layer: 0
+ m_Name: J_Bip_L_ToeBase_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1683692174
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1683692173}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.00037658215, y: -0.0018098354, z: 0.041616485}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1106057741}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1686884233
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1686884234}
+ m_Layer: 0
+ m_Name: J_Bip_L_Little3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1686884234
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1686884233}
+ m_LocalRotation: {x: 0.012875221, y: 0.003718541, z: 0.059053123, w: 0.99816495}
+ m_LocalPosition: {x: -0.015616655, y: 0.00058722496, z: -0.0008157939}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1726225490}
+ m_Father: {fileID: 596285325}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1715785426
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1715785427}
+ m_Layer: 0
+ m_Name: J_Bip_R_Little2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1715785427
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1715785426}
+ m_LocalRotation: {x: -0.0035592366, y: 0.0010279845, z: 0.24515751, w: -0.9694762}
+ m_LocalPosition: {x: 0.027151525, y: -0.00023639202, z: 0.00001989305}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 658261988}
+ m_Father: {fileID: 231621199}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1726225489
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1726225490}
+ m_Layer: 0
+ m_Name: J_Bip_L_Little3_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1726225490
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1726225489}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.016744733, y: 0.00096416473, z: -0.00046138465}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1686884234}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1756224164
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1756224165}
+ m_Layer: 0
+ m_Name: J_Sec_L_Bust1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1756224165
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1756224164}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.053541, y: -0.027212381, z: 0.059070602}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 616030296}
+ m_Father: {fileID: 662482133}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1803578777
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1803578778}
+ m_Layer: 0
+ m_Name: J_Bip_R_Little3_end
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1803578778
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1803578777}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.016744971, y: 0.00096416473, z: -0.00046094507}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 658261988}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1804205900
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1804205901}
+ - component: {fileID: 1804205912}
+ - component: {fileID: 1804205911}
+ - component: {fileID: 1804205910}
+ - component: {fileID: 1804205909}
+ - component: {fileID: 1804205908}
+ - component: {fileID: 1804205907}
+ - component: {fileID: 1804205906}
+ - component: {fileID: 1804205905}
+ - component: {fileID: 1804205904}
+ - component: {fileID: 1804205903}
+ - component: {fileID: 1804205902}
+ m_Layer: 0
+ m_Name: Erika(Clone)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1804205901
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1804205900}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 798129163}
+ - {fileID: 1427728103}
+ - {fileID: 1848781739}
+ - {fileID: 538567282}
+ - {fileID: 703705380}
+ m_Father: {fileID: 143629372}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1804205902
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1804205900}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f2a6b1bbe8a21fe44b9a3626c5c94ec2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+--- !u!114 &1804205903
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1804205900}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 9991268d8dcef1f43bcab1e7a31f6511, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+--- !u!114 &1804205904
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1804205900}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 05efd5500263f8b4083c459be5fb763d, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+--- !u!114 &1804205905
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1804205900}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 19d4fad3ce933bf45a32ff4d0d7e328a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+--- !u!95 &1804205906
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1804205900}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: e02c535e49d26a8479da1e84119c718c, type: 2}
+ m_Controller: {fileID: 344983393}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+ m_KeepAnimatorControllerStateOnDisable: 0
+--- !u!114 &1804205907
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1804205900}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a8b72334adf6f7948bd98b4f0a873949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ DrawGizmo: 0
+ LeftEye:
+ Transform: {fileID: 1476939287}
+ OffsetRotation:
+ e00: 1
+ e01: 0
+ e02: 0
+ e03: 0
+ e10: 0
+ e11: 1
+ e12: 0
+ e13: 0
+ e20: 0
+ e21: 0
+ e22: 1
+ e23: 0
+ e30: 0
+ e31: 0
+ e32: 0
+ e33: 1
+ RightEye:
+ Transform: {fileID: 128497572}
+ OffsetRotation:
+ e00: 1
+ e01: 0
+ e02: 0
+ e03: 0
+ e10: 0
+ e11: 1
+ e12: 0
+ e13: 0
+ e20: 0
+ e21: 0
+ e22: 1
+ e23: 0
+ e30: 0
+ e31: 0
+ e32: 0
+ e33: 1
+ HorizontalOuter:
+ Curve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 3
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ - serializedVersion: 3
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ CurveXRangeDegree: 90
+ CurveYRangeDegree: 12
+ HorizontalInner:
+ Curve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 3
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ - serializedVersion: 3
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ CurveXRangeDegree: 90
+ CurveYRangeDegree: 8
+ VerticalDown:
+ Curve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 3
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ - serializedVersion: 3
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ CurveXRangeDegree: 90
+ CurveYRangeDegree: 10
+ VerticalUp:
+ Curve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 3
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ - serializedVersion: 3
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ CurveXRangeDegree: 90
+ CurveYRangeDegree: 10
+--- !u!114 &1804205908
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1804205900}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: e0a1a470564f16f4f94acb4b9ef56367, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ DrawGizmo: 1
+ UpdateType: 1
+ Target: {fileID: 0}
+ Head: {fileID: 0}
+ m_yaw: 0
+ m_pitch: 0
+--- !u!114 &1804205909
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1804205900}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: dedba1309bdf12b42af2362f52eea134, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ FirstPersonBone: {fileID: 2052101858}
+ FirstPersonOffset: {x: 0, y: 0.06, z: 0}
+ Renderers:
+ - Renderer: {fileID: 0}
+ FirstPersonFlag: 0
+ - Renderer: {fileID: 1427728104}
+ FirstPersonFlag: 0
+ - Renderer: {fileID: 1848781740}
+ FirstPersonFlag: 0
+ - Renderer: {fileID: 538567283}
+ FirstPersonFlag: 0
+--- !u!114 &1804205910
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1804205900}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 5b678c1df50cfb547990db24a32856da, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ BlendShapeAvatar: {fileID: 11400000, guid: a0f481fcc56204e40a56f93910d23b31, type: 2}
+--- !u!114 &1804205911
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1804205900}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 3869812175467a143ab9cd865752b4a9, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ Avatar: {fileID: 9000000, guid: e02c535e49d26a8479da1e84119c718c, type: 2}
+ Description: {fileID: 11400000, guid: eb53502d261d59c45a6a1fb87b6b1775, type: 2}
+--- !u!114 &1804205912
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1804205900}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 690ea0146224b8b4694a1925dddeb352, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ Meta: {fileID: 11400000, guid: 87502f3d1d35819409b196966cf37626, type: 2}
+--- !u!1 &1819453861
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1819453862}
+ m_Layer: 0
+ m_Name: J_Bip_R_Middle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1819453862
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1819453861}
+ m_LocalRotation: {x: 0.009266899, y: -0.0041873874, z: 0.06865266, w: -0.9975888}
+ m_LocalPosition: {x: 0.019615054, y: -0.002080202, z: 0.0008106828}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1319795137}
+ m_Father: {fileID: 1176801868}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1829952722
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1829952723}
+ m_Layer: 0
+ m_Name: J_Bip_L_Hand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1829952723
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1829952722}
+ m_LocalRotation: {x: 0.13784492, y: -0.014767319, z: -0.122339346, w: 0.9827583}
+ m_LocalPosition: {x: -0.21920407, y: -0.00047802925, z: 0.01809452}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 995468577}
+ - {fileID: 1304604752}
+ - {fileID: 424026837}
+ - {fileID: 166182837}
+ - {fileID: 1292558472}
+ m_Father: {fileID: 2131651854}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1836391083
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1836391084}
+ m_Layer: 0
+ m_Name: J_Sec_R_SkirtFront0
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1836391084
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1836391083}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.004221827, y: 0.006251812, z: 0.13752843}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 684663234}
+ m_Father: {fileID: 785108201}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1837491712
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1837491713}
+ m_Layer: 0
+ m_Name: J_Bip_R_Ring1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1837491713
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1837491712}
+ m_LocalRotation: {x: -0.03209597, y: -0.12476002, z: 0.15269619, w: -0.9798412}
+ m_LocalPosition: {x: 0.05766195, y: 0.0071817636, z: -0.009478439}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 427063191}
+ m_Father: {fileID: 60458983}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1848781738
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1848781739}
+ - component: {fileID: 1848781740}
+ m_Layer: 0
+ m_Name: Body.baked
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1848781739
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1848781738}
+ m_LocalRotation: {x: -0, y: -0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: -0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1804205901}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!137 &1848781740
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1848781738}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_DynamicOccludee: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_RenderingLayerMask: 1
+ m_RendererPriority: 0
+ m_Materials:
+ - {fileID: 2100000, guid: ce1547d83b99d334fbf1c6869b9b41d1, type: 2}
+ - {fileID: 2100000, guid: b4f4696f9122c954dbc3fc8d855a77ff, type: 2}
+ - {fileID: 2100000, guid: 89fd29a1deb2a984e88df99d77a57823, type: 2}
+ - {fileID: 2100000, guid: d45465b876079e449a95524c40065dcd, type: 2}
+ m_StaticBatchInfo:
+ firstSubMesh: 0
+ subMeshCount: 0
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 1
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 0
+ m_StitchLightmapSeams: 0
+ m_SelectedEditorRenderState: 3
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingLayer: 0
+ m_SortingOrder: 0
+ serializedVersion: 2
+ m_Quality: 0
+ m_UpdateWhenOffscreen: 0
+ m_SkinnedMotionVectors: 1
+ m_Mesh: {fileID: 4300000, guid: 15988df59509e844795cc777b7ff2ac6, type: 2}
+ m_Bones:
+ - {fileID: 798129163}
+ - {fileID: 116385904}
+ - {fileID: 785108201}
+ - {fileID: 666777359}
+ - {fileID: 2009561705}
+ - {fileID: 1659720226}
+ - {fileID: 1084369430}
+ - {fileID: 1836391084}
+ - {fileID: 684663234}
+ - {fileID: 208124678}
+ - {fileID: 457376693}
+ - {fileID: 1152667257}
+ - {fileID: 1957392679}
+ - {fileID: 879291067}
+ - {fileID: 1478144948}
+ - {fileID: 1955876955}
+ - {fileID: 293617766}
+ - {fileID: 54496468}
+ - {fileID: 1106057741}
+ - {fileID: 1683692174}
+ - {fileID: 851452542}
+ - {fileID: 1952066289}
+ - {fileID: 154887361}
+ - {fileID: 1025993103}
+ - {fileID: 962348665}
+ - {fileID: 509370686}
+ - {fileID: 931099773}
+ - {fileID: 1511625409}
+ - {fileID: 1983203026}
+ - {fileID: 446950352}
+ - {fileID: 662482133}
+ - {fileID: 1900176195}
+ - {fileID: 1215177380}
+ - {fileID: 954336373}
+ - {fileID: 60458983}
+ - {fileID: 2108035971}
+ - {fileID: 797394338}
+ - {fileID: 1396431388}
+ - {fileID: 1625486777}
+ - {fileID: 1837491713}
+ - {fileID: 427063191}
+ - {fileID: 1942105363}
+ - {fileID: 1227264543}
+ - {fileID: 1041936933}
+ - {fileID: 1176801868}
+ - {fileID: 1819453862}
+ - {fileID: 1319795137}
+ - {fileID: 231621199}
+ - {fileID: 1715785427}
+ - {fileID: 658261988}
+ - {fileID: 1803578778}
+ - {fileID: 65435362}
+ - {fileID: 1662617516}
+ - {fileID: 819674891}
+ - {fileID: 1204250766}
+ - {fileID: 23054735}
+ - {fileID: 1095766968}
+ - {fileID: 2131651854}
+ - {fileID: 1829952723}
+ - {fileID: 1292558472}
+ - {fileID: 2129507016}
+ - {fileID: 1434933814}
+ - {fileID: 913998511}
+ - {fileID: 166182837}
+ - {fileID: 897984765}
+ - {fileID: 1633682643}
+ - {fileID: 1132398331}
+ - {fileID: 424026837}
+ - {fileID: 1573181705}
+ - {fileID: 1900992305}
+ - {fileID: 785131701}
+ - {fileID: 1304604752}
+ - {fileID: 596285325}
+ - {fileID: 1686884234}
+ - {fileID: 1726225490}
+ - {fileID: 995468577}
+ - {fileID: 655593226}
+ - {fileID: 1582843581}
+ - {fileID: 263453548}
+ - {fileID: 1615919681}
+ - {fileID: 2052101858}
+ - {fileID: 128497572}
+ - {fileID: 1476939287}
+ - {fileID: 288445382}
+ - {fileID: 529537195}
+ - {fileID: 1756224165}
+ - {fileID: 616030296}
+ - {fileID: 70713795}
+ - {fileID: 2000349202}
+ - {fileID: 497974057}
+ - {fileID: 1228070530}
+ - {fileID: 2126303511}
+ - {fileID: 2040558624}
+ - {fileID: 2055262624}
+ - {fileID: 584027017}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 798129163}
+ m_AABB:
+ m_Center: {x: 0.00046002865, y: 0.84532, z: -0.02288717}
+ m_Extent: {x: 0.6828841, y: 0.8454087, z: 0.25251257}
+ m_DirtyAABB: 0
+--- !u!1 &1900176194
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1900176195}
+ m_Layer: 0
+ m_Name: J_Bip_R_Shoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1900176195
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1900176194}
+ m_LocalRotation: {x: 0.00744945, y: 0.029750781, z: -0.037368793, w: 0.9988308}
+ m_LocalPosition: {x: 0.022385577, y: 0.08727038, z: -0.02744274}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1215177380}
+ m_Father: {fileID: 662482133}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1900992304
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1900992305}
+ m_Layer: 0
+ m_Name: J_Bip_L_Middle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1900992305
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1900992304}
+ m_LocalRotation: {x: -0.00926577, y: -0.004186746, z: 0.06865267, w: 0.9975889}
+ m_LocalPosition: {x: -0.019615054, y: -0.0020799637, z: 0.00081057847}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 785131701}
+ m_Father: {fileID: 1573181705}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1942105362
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1942105363}
+ m_Layer: 0
+ m_Name: J_Bip_R_Ring3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1942105363
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1942105362}
+ m_LocalRotation: {x: 0.002767, y: -0.00080584193, z: 0.08720805, w: -0.99618596}
+ m_LocalPosition: {x: 0.01711905, y: 0.000605464, z: 0.00021523237}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1227264543}
+ m_Father: {fileID: 427063191}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1952066288
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1952066289}
+ m_Layer: 0
+ m_Name: J_Sec_L_SkirtFront1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1952066289
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1952066288}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 154887361}
+ m_Father: {fileID: 851452542}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1955876954
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1955876955}
+ - component: {fileID: 1955876956}
+ m_Layer: 0
+ m_Name: J_Bip_L_UpperLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1955876955
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1955876954}
+ m_LocalRotation: {x: -0.19886918, y: -0.1183669, z: -0.19670114, w: 0.9527586}
+ m_LocalPosition: {x: -0.07712235, y: -0.03899467, z: -0.008861886}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 962348665}
+ - {fileID: 851452542}
+ - {fileID: 293617766}
+ m_Father: {fileID: 116385904}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1955876956
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1955876954}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 646b65a4a57afd34d8c4ed557efb46a5, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ Colliders:
+ - Offset: {x: 0.016110595, y: -0.28334647, z: -0.006384604}
+ Radius: 0.081
+ - Offset: {x: 0.021739878, y: -0.4030565, z: -0.012534123}
+ Radius: 0.081
+ - Offset: {x: 0.026430972, y: -0.5028149, z: -0.017658722}
+ Radius: 0.081
+ m_gizmoColor: {r: 1, g: 0, b: 1, a: 1}
+--- !u!1 &1957392678
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1957392679}
+ m_Layer: 0
+ m_Name: J_Sec_R_SkirtBack1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1957392679
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1957392678}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 879291067}
+ m_Father: {fileID: 1152667257}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1983203025
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1983203026}
+ m_Layer: 0
+ m_Name: J_Bip_C_Spine
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1983203026
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1983203025}
+ m_LocalRotation: {x: 0.14042252, y: -0.00677508, z: 0.06733885, w: 0.98777586}
+ m_LocalPosition: {x: -0.000000006868504, y: 0.052913785, z: 0.009824621}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 446950352}
+ m_Father: {fileID: 116385904}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2000349201
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 2000349202}
+ m_Layer: 0
+ m_Name: J_Sec_R_SkirtSide1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2000349202
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 2000349201}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 497974057}
+ m_Father: {fileID: 70713795}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2009561704
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 2009561705}
+ m_Layer: 0
+ m_Name: J_Bip_R_Foot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2009561705
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 2009561704}
+ m_LocalRotation: {x: 0.03230509, y: -0.0005603072, z: -0.050544225, w: 0.9981991}
+ m_LocalPosition: {x: -0.01141499, y: -0.45458347, z: -0.025450708}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1659720226}
+ m_Father: {fileID: 666777359}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2040558623
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 2040558624}
+ m_Layer: 0
+ m_Name: J_Sec_L_SkirtSide1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2040558624
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 2040558623}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2055262624}
+ m_Father: {fileID: 2126303511}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2052101857
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 2052101858}
+ m_Layer: 0
+ m_Name: J_Bip_C_Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2052101858
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 2052101857}
+ m_LocalRotation: {x: -0.25971746, y: -0.20259006, z: 0.104481846, w: 0.93839633}
+ m_LocalPosition: {x: 0.000000034517143, y: 0.07815468, z: 0.009415401}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1476939287}
+ - {fileID: 128497572}
+ m_Father: {fileID: 1615919681}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2055262623
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 2055262624}
+ m_Layer: 0
+ m_Name: J_Sec_L_SkirtSide2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2055262624
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 2055262623}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.05265382, y: -0.12872082, z: -0.016150387}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 584027017}
+ m_Father: {fileID: 2040558624}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2108035970
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 2108035971}
+ m_Layer: 0
+ m_Name: J_Bip_R_Thumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2108035971
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 2108035970}
+ m_LocalRotation: {x: -0.16959274, y: -0.08199233, z: 0.20948395, w: -0.9594958}
+ m_LocalPosition: {x: 0.0017570257, y: -0.0059769154, z: 0.015335323}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 797394338}
+ m_Father: {fileID: 60458983}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2126303510
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 2126303511}
+ m_Layer: 0
+ m_Name: J_Sec_L_SkirtSide0
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2126303511
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 2126303510}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.17011735, y: -0.017756343, z: 0.0075791776}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2040558624}
+ m_Father: {fileID: 116385904}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2129507015
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 2129507016}
+ m_Layer: 0
+ m_Name: J_Bip_L_Thumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2129507016
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 2129507015}
+ m_LocalRotation: {x: -0.0021820178, y: -0.14897306, z: 0.0012824385, w: 0.9888381}
+ m_LocalPosition: {x: -0.027919888, y: -0.0023354292, z: 0.028883398}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1434933814}
+ m_Father: {fileID: 1292558472}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2131651853
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 2131651854}
+ m_Layer: 0
+ m_Name: J_Bip_L_LowerArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2131651854
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 2131651853}
+ m_LocalRotation: {x: 0.06391953, y: 0.79943955, z: -0.14340249, w: 0.57986766}
+ m_LocalPosition: {x: -0.22464937, y: -0.010460377, z: 0.0018847063}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1829952723}
+ m_Father: {fileID: 1095766968}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
diff --git a/Assets/Scripts/Unit/TimelineEvent.cs b/Assets/Scripts/Unit/TimelineEvent.cs
index 86c6a124..1fab5c52 100644
--- a/Assets/Scripts/Unit/TimelineEvent.cs
+++ b/Assets/Scripts/Unit/TimelineEvent.cs
@@ -21,6 +21,8 @@ public partial class TimelineEvent: MonoBehaviour
EventUIDrift, //
}
+ public const int kMaxEventsPerFrame = 10;
+
void EventEffect(EventEffect effect)
{
}