diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..a9360398
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+dev_Refactor-and-demos/Library/
+dev_Refactor-and-demos/Temp/
diff --git a/README.md b/README.md
index adbfde27..065fcde6 100644
--- a/README.md
+++ b/README.md
@@ -1,39 +1,67 @@
# hmd-eyes
Building blocks for eye tracking in Augmented Reality `AR` and Virtual Reality `VR` or more generally Head Mounted Displays `HMD`.
+The purpose of this repository is do demonstrates how to implement Pupil with Unity3D. For details on Pupil computations, please have a look at the related repositories.
+
+## Main new files/classes with a short description
+Connection -> Handles communication with ZeroMQ/NetMQ including initialization, sending and receiving messages
+PupilData -> Used to save and provide pupil positions
+PupilGazeTracker -> Main class to initialize settings, start the calibration process and implement standard gaze visualization
+PupilSettings -> Home to project variables and properties including calibration and connection instances
+PupilTools -> Handles message generation to be pushed through the sockets but also implements the calibration itself, as it is deeply connected with the former
## Setup
-1. Make sure that you have [Pupil Service](https://github.com/pupil-labs/pupil/releases/latest) on a Linux, macOS, or Windows 10 machine.
-2. Open `Assets/scene/Calibration.unity` with the Unity3d Editor (Unity 5.5 and above).
-3. Select the PupilGaze GameObject in Unity Hierarchy.
-4. Connection
+1. Make sure that you have [Pupil Capture or Pupil Service](https://github.com/pupil-labs/pupil/releases/latest) on a Linux, macOS, or Windows 10 machine.
+2. The Unity3D sample project contains two scenes: `pupil_plugin/Calibration.unity` and `Market Scene Demo/Market Scene Demo.unity`
+3. The former contains the `PupilGazeTracker` gameobject, which lets you adapt settings, while the latter serves as a starting point on how the eye tracking can be implemented.
+4. On Windows 10 and with the standard project settings, the path is set to `C:/Program Files/Pupil Service/pupil_service.exe`. If you have a different setup, please adapt it as follows
+
+## Changing standard settings via Calibration.unity
+1. Connection
* **Local** - use this setting if your HMD and your Pupil add-on are connected to the same computer.
1. In Unity's Inspector select `Settings>Pupil App>Local`
- 2. Click on the Browse button. Navigate to Pupil Service - pupil_service.exe.
- 3. Choose port 50020
-5. Enable `Autorun Pupil Service`, which will automatically start Pupil Service when you your Unity3d scene is in play mode.
-6. Confirm connection - Make sure that the plugin status (below the Pupil Labs logotype) displays the word "connected" and that both of the eye icons are green. The green eye icons signify that the eye processes are running.
+ 2. Click on the Browse button. Navigate to Pupil Service - pupil_service.exe - **or** Pupil Capture - pupil_capture.exe.
+ 3. If you're using Pupil Capture make sure your Service Port matches the Port in Pupil Capture. See the Pupil Remote plugin in Pupil Capture to check.
+ * **Remote (still to be tested with the updated version)** - Use the remote mode if your HMD and pupil eye tracking add-on are connected to different computers, but on the same wifi or wired network.
+ 1. In Unity's Inspector select `Settings>Pupil App>Remote`
+ 2. Make sure that your Pupil Capture application is running on the remote machine.
+ 3. Take note of the IP address of the active communication device in your remote machine. (Please keep in mind that in some cases the IP address stated in Pupil Capture may not be correct, check the IP address of your system!).
+ 4. Copy this IP address to the IP address field in Unity.
+
+2. Auto-run Pupil App settings - If auto-run is enabled, Pupil Service will run automatically when your Unity3d scene is in play mode. You can disable this behavior by turning off auto-run in `Settings>Pupil App` and manually Start or Stop Pupil Service.
+3. Confirm connection - Make sure that the plugin status (below the Pupil Labs logotype) displays the word "connected" and that both of the eye icons are green. The green eye icons signify that the eye processes are running.
+4. Once you press `Play`, Unity will try to connect based on your settings and two `Pupil Service` windows should appear (one for either eye). Please make sure Unity is in focus/the foreground app after this process.
## Calibration
-1. Choose `2D` calibration under `Settings>Calibration`.
-2. Press Play in Unity and wait until you have established a working connection with your Pupil App.
-3. Calibrate - Give focus to the main Unity3d window and press c on the keyboard or the `Calibrate` button in the plugin GUI.
-4. Put your headset on and look at the center of each marker shown in your HMD. #The number of markers varies depending on your calibration #mode.
+1. With the new version (October 2017), we currently only support 2D calibration.
+2. Calibration is the first step for both Calibration and Market Scene Demo Unity scenes, after the connection has been established.
+3. This would be a good point to put your headset on.
+4. As should be displayed on screen, press the key `c` to start the calbration process
+5. Follow the markers as their position changes
+6. If you want to adapt marker positions, have a look at the Calibration.cs class. Markers are currently positioned on a circular pattern for which you can change the radius as well as the number of points.
+7. After a successful calibration, the `Calibration.unity` scene will display three colored markers representing the left (green) and right (blue) eye plus the center point (red).
+8. `Market Scene Demo.unity` will load a 3D scene with 3 alterinative visualizations for gaze tracking
+ * The one described before with 3 colored markers
+ * A laserpointer going to the center of your gaze
+ * A shader-based implementation that grays out the area around each of the eyes position
+
Note: The ideal setup for calibration may vary using different headsets. For optimal calibration results I suggest some experimenting with the hardware settings of your HMD device such as the eye distance from the lens, inter eye distance, a steady mount position.
## Data access
+Once calibration is done, you need to call PupilTools.Subscribe(string topic) to receive messages for the 'topic' you specify. The standard case for a topic is either 'gaze', 'pupil.' or both.
1. 2D
- 1. You can access the 2d gaze point in Unity3d with `GetEyeGaze2D (GazeSource.BothEyes)`.
+ * `PupilData._2D.GetEyeGaze (PupilData.GazeSource s)` will provide the current viewport coordinates needed to get 3d world positions (used e.g. for the three colored markers)
+ * `PupilData._2D.GetEyePosition (Camera sceneCamera, GazeSource gazeSource)` applies an additional frustum center offset for each eye (used e.g. for the shader implementation)
2. 3D
- 1. `Pupil.values.GazePoint3D`
- 2. `Pupil.values.GazeNormals3D`
- 3. `Pupil.values.EyeCenters3D`
+ * Still to be implemented
## Connect
Chat with the hmd-eyes community on [Discord](https://discord.gg/PahDtSH).
Join the [google group](https://groups.google.com/forum/#!forum/hmd-eyes) to discuss ideas and stay updated.
+
+
diff --git a/Test Build/Test Build.exe b/Test Build/Test Build.exe
new file mode 100644
index 00000000..cc9777ec
Binary files /dev/null and b/Test Build/Test Build.exe differ
diff --git a/Test Build/Test Build_Data/GI/level0/2b/2b05c0318a3d6fbfd79e25deb0944b98.pos b/Test Build/Test Build_Data/GI/level0/2b/2b05c0318a3d6fbfd79e25deb0944b98.pos
new file mode 100644
index 00000000..ad355e42
Binary files /dev/null and b/Test Build/Test Build_Data/GI/level0/2b/2b05c0318a3d6fbfd79e25deb0944b98.pos differ
diff --git a/Test Build/Test Build_Data/GI/level0/2b/2b05c0318a3d6fbfd79e25deb0944b98.rpc.sse b/Test Build/Test Build_Data/GI/level0/2b/2b05c0318a3d6fbfd79e25deb0944b98.rpc.sse
new file mode 100644
index 00000000..c07dea91
Binary files /dev/null and b/Test Build/Test Build_Data/GI/level0/2b/2b05c0318a3d6fbfd79e25deb0944b98.rpc.sse differ
diff --git a/Test Build/Test Build_Data/Managed/Assembly-CSharp.dll.mdb b/Test Build/Test Build_Data/Managed/Assembly-CSharp.dll.mdb
new file mode 100644
index 00000000..b4aa8a2a
Binary files /dev/null and b/Test Build/Test Build_Data/Managed/Assembly-CSharp.dll.mdb differ
diff --git a/Test Build/Test Build_Data/Managed/UnityEngine.Analytics.dll.mdb b/Test Build/Test Build_Data/Managed/UnityEngine.Analytics.dll.mdb
new file mode 100644
index 00000000..8718a6d3
Binary files /dev/null and b/Test Build/Test Build_Data/Managed/UnityEngine.Analytics.dll.mdb differ
diff --git a/Test Build/Test Build_Data/Managed/UnityEngine.Networking.dll.mdb b/Test Build/Test Build_Data/Managed/UnityEngine.Networking.dll.mdb
new file mode 100644
index 00000000..a07847c4
Binary files /dev/null and b/Test Build/Test Build_Data/Managed/UnityEngine.Networking.dll.mdb differ
diff --git a/Test Build/Test Build_Data/Managed/UnityEngine.Timeline.dll.mdb b/Test Build/Test Build_Data/Managed/UnityEngine.Timeline.dll.mdb
new file mode 100644
index 00000000..b37749c2
Binary files /dev/null and b/Test Build/Test Build_Data/Managed/UnityEngine.Timeline.dll.mdb differ
diff --git a/Test Build/Test Build_Data/Managed/UnityEngine.UI.dll.mdb b/Test Build/Test Build_Data/Managed/UnityEngine.UI.dll.mdb
new file mode 100644
index 00000000..15b53571
Binary files /dev/null and b/Test Build/Test Build_Data/Managed/UnityEngine.UI.dll.mdb differ
diff --git a/Test Build/Test Build_Data/Managed/UnityEngine.dll.mdb b/Test Build/Test Build_Data/Managed/UnityEngine.dll.mdb
new file mode 100644
index 00000000..6a53046d
Binary files /dev/null and b/Test Build/Test Build_Data/Managed/UnityEngine.dll.mdb differ
diff --git a/Test Build/Test Build_Data/Managed/mscorlib.dll.mdb b/Test Build/Test Build_Data/Managed/mscorlib.dll.mdb
new file mode 100644
index 00000000..086c8d92
Binary files /dev/null and b/Test Build/Test Build_Data/Managed/mscorlib.dll.mdb differ
diff --git a/Test Build/Test Build_Data/Mono/etc/mono/1.0/DefaultWsdlHelpGenerator.aspx b/Test Build/Test Build_Data/Mono/etc/mono/1.0/DefaultWsdlHelpGenerator.aspx
new file mode 100644
index 00000000..92365593
--- /dev/null
+++ b/Test Build/Test Build_Data/Mono/etc/mono/1.0/DefaultWsdlHelpGenerator.aspx
@@ -0,0 +1,1820 @@
+<%--
+//
+// DefaultWsdlHelpGenerator.aspx:
+//
+// Author:
+// Lluis Sanchez Gual (lluis@ximian.com)
+//
+// (C) 2003 Ximian, Inc. http://www.ximian.com
+//
+--%>
+
+<%@ Import Namespace="System.Collections" %>
+<%@ Import Namespace="System.IO" %>
+<%@ Import Namespace="System.Xml.Serialization" %>
+<%@ Import Namespace="System.Xml" %>
+<%@ Import Namespace="System.Xml.Schema" %>
+<%@ Import Namespace="System.Web.Services.Description" %>
+<%@ Import Namespace="System" %>
+<%@ Import Namespace="System.Net" %>
+<%@ Import Namespace="System.Globalization" %>
+<%@ Import Namespace="System.Resources" %>
+<%@ Import Namespace="System.Diagnostics" %>
+<%@ Import Namespace="System.CodeDom" %>
+<%@ Import Namespace="System.CodeDom.Compiler" %>
+<%@ Import Namespace="Microsoft.CSharp" %>
+<%@ Import Namespace="Microsoft.VisualBasic" %>
+<%@ Import Namespace="System.Text" %>
+<%@ Import Namespace="System.Text.RegularExpressions" %>
+<%@ Import Namespace="System.Security.Cryptography.X509Certificates" %>
+<%@ Assembly name="System.Web.Services" %>
+<%@ Page debug="true" %>
+
+
+
+
+
+
+
+ <%=WebServiceName%> Web Service
+
+
+
+
+
+
+
+
+Web Service
+<%=WebServiceName%>
+
+
+
+
+
+
+
+Overview
+
+Service Description
+
+Client proxy
+
+
+
+ <%#FormatBindingName(DataBinder.Eval(Container.DataItem, "Name").ToString())%>
+
+
+ op=<%#GetOpName(Container.DataItem)%>&bnd=<%#DataBinder.Eval(Container.DataItem, "Binding.Name")%>"><%#GetOpName(Container.DataItem)%>
+
+
+
+
+
+
+
+
+
+<% if (CurrentPage == "main") {%>
+
+
+
+ Web Service Overview
+ <%=WebServiceDescription%>
+
+<%} if (DefaultBinding == null) {%>
+This service does not contain any public web method.
+<%} else if (CurrentPage == "op") {%>
+
+
+
+ <%=CurrentOperationName%>
+
+ <% WriteTabs (); %>
+
+
+ <% if (CurrentTab == "main") { %>
+ Input Parameters
+
+ <% if (InParams.Count == 0) { %>
+ No input parameters
+ <% } else { %>
+
+
+
+
+ <%#DataBinder.Eval(Container.DataItem, "Name")%>
+ <%#DataBinder.Eval(Container.DataItem, "Type")%>
+
+
+
+
+ <% } %>
+
+
+ <% if (OutParams.Count > 0) { %>
+ Output Parameters
+
+
+
+
+
+ <%#DataBinder.Eval(Container.DataItem, "Name")%>
+ <%#DataBinder.Eval(Container.DataItem, "Type")%>
+
+
+
+
+
+ <% } %>
+
+ Remarks
+
+ <%=OperationDocumentation%>
+
+ Technical information
+
+ Format: <%=CurrentOperationFormat%>
+ Supported protocols: <%=CurrentOperationProtocols%>
+ <% } %>
+
+
+
+ <% if (CurrentTab == "test") {
+ if (CurrentOperationSupportsTest) {%>
+ Enter values for the parameters and click the 'Invoke' button to test this method:
+
+
+ <% } else {%>
+ The test form is not available for this operation because it has parameters with a complex structure.
+ <% } %>
+ <% } %>
+
+
+
+ <% if (CurrentTab == "msg") { %>
+
+ The following are sample SOAP requests and responses for each protocol supported by this method:
+
+
+ <% if (IsOperationSupported ("Soap")) { %>
+ Soap
+
+ <%=GenerateOperationMessages ("Soap", true)%>
+
+ <%=GenerateOperationMessages ("Soap", false)%>
+
+ <% } %>
+ <% if (IsOperationSupported ("HttpGet")) { %>
+ HTTP Get
+
+ <%=GenerateOperationMessages ("HttpGet", true)%>
+
+ <%=GenerateOperationMessages ("HttpGet", false)%>
+
+ <% } %>
+ <% if (IsOperationSupported ("HttpPost")) { %>
+ HTTP Post
+
+ <%=GenerateOperationMessages ("HttpPost", true)%>
+
+ <%=GenerateOperationMessages ("HttpPost", false)%>
+
+ <% } %>
+
+ <% } %>
+<%} else if (CurrentPage == "proxy") {%>
+
+
+
+ <%=CurrentProxytName%>
+ ">Download
+
+
+<%} else if (CurrentPage == "wsdl") {%>
+
+ <% if (descriptions.Count > 1 || schemas.Count > 1) {%>
+ The description of this web service is composed by several documents. Click on the document you want to see:
+
+
+
+ <%} else {%>
+ <%}%>
+
+ <%=CurrentDocumentName%>
+ ">Download
+
+
+
<%=GenerateDocument ()%>
+
+
+<%}%>
+
+
+
+
+
+
+
+
+
diff --git a/Test Build/Test Build_Data/Mono/etc/mono/1.0/machine.config b/Test Build/Test Build_Data/Mono/etc/mono/1.0/machine.config
new file mode 100644
index 00000000..c63314cb
--- /dev/null
+++ b/Test Build/Test Build_Data/Mono/etc/mono/1.0/machine.config
@@ -0,0 +1,243 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Test Build/Test Build_Data/Mono/etc/mono/2.0/Browsers/Compat.browser b/Test Build/Test Build_Data/Mono/etc/mono/2.0/Browsers/Compat.browser
new file mode 100644
index 00000000..dcedf7f7
--- /dev/null
+++ b/Test Build/Test Build_Data/Mono/etc/mono/2.0/Browsers/Compat.browser
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Test Build/Test Build_Data/Mono/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx b/Test Build/Test Build_Data/Mono/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx
new file mode 100644
index 00000000..4750b01f
--- /dev/null
+++ b/Test Build/Test Build_Data/Mono/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx
@@ -0,0 +1,1896 @@
+<%--
+//
+// DefaultWsdlHelpGenerator.aspx:
+//
+// Author:
+// Lluis Sanchez Gual (lluis@ximian.com)
+//
+// (C) 2003 Ximian, Inc. http://www.ximian.com
+//
+--%>
+
+<%@ Import Namespace="System.Collections" %>
+<%@ Import Namespace="System.Collections.Generic" %>
+<%@ Import Namespace="System.IO" %>
+<%@ Import Namespace="System.Xml.Serialization" %>
+<%@ Import Namespace="System.Xml" %>
+<%@ Import Namespace="System.Xml.Schema" %>
+<%@ Import Namespace="System.Web.Services" %>
+<%@ Import Namespace="System.Web.Services.Description" %>
+<%@ Import Namespace="System.Web.Services.Configuration" %>
+<%@ Import Namespace="System.Web.Configuration" %>
+<%@ Import Namespace="System" %>
+<%@ Import Namespace="System.Net" %>
+<%@ Import Namespace="System.Globalization" %>
+<%@ Import Namespace="System.Resources" %>
+<%@ Import Namespace="System.Diagnostics" %>
+<%@ Import Namespace="System.CodeDom" %>
+<%@ Import Namespace="System.CodeDom.Compiler" %>
+<%@ Import Namespace="Microsoft.CSharp" %>
+<%@ Import Namespace="Microsoft.VisualBasic" %>
+<%@ Import Namespace="System.Text" %>
+<%@ Import Namespace="System.Text.RegularExpressions" %>
+<%@ Import Namespace="System.Security.Cryptography.X509Certificates" %>
+<%@ Assembly name="System.Web.Services" %>
+<%@ Page debug="true" %>
+
+
+
+
+
+ <%
+ Response.Write (" ");
+ %>
+ <%=WebServiceName%> Web Service
+
+
+
+
+
+
+
+
+Web Service
+<%=WebServiceName%>
+
+
+
+
+
+
+
+Overview
+
+Service Description
+
+Client proxy
+
+
+
+ <%#FormatBindingName(DataBinder.Eval(Container.DataItem, "Name").ToString())%>
+
+
+ op=<%#GetOpName(Container.DataItem)%>&bnd=<%#DataBinder.Eval(Container.DataItem, "Binding.Name")%>"><%#GetOpName(Container.DataItem)%>
+
+
+
+
+
+
+
+
+
+<% if (CurrentPage == "main") {%>
+
+
+
+ Web Service Overview
+ <%=WebServiceDescription%>
+
+ <% if (ProfileViolations != null && ProfileViolations.Count > 0) { %>
+ Basic Profile Conformance
+ This web service does not conform to WS-I Basic Profile v1.1
+ <%
+ Response.Write ("");
+ foreach (BasicProfileViolation vio in ProfileViolations) {
+ Response.Write ("" + vio.NormativeStatement + " : " + vio.Details);
+ Response.Write ("");
+ foreach (string ele in vio.Elements)
+ Response.Write ("" + ele + " ");
+ Response.Write (" ");
+ Response.Write (" ");
+ }
+ Response.Write (" ");
+ }%>
+
+<%} if (DefaultBinding == null) {%>
+This service does not contain any public web method.
+<%} else if (CurrentPage == "op") {%>
+
+
+
+ <%=CurrentOperationName%>
+
+ <% WriteTabs (); %>
+
+
+ <% if (CurrentTab == "main") { %>
+ Input Parameters
+
+ <% if (InParams.Count == 0) { %>
+ No input parameters
+ <% } else { %>
+
+
+
+
+ <%#DataBinder.Eval(Container.DataItem, "Name")%>
+ <%#DataBinder.Eval(Container.DataItem, "Type")%>
+
+
+
+
+ <% } %>
+
+
+ <% if (OutParams.Count > 0) { %>
+ Output Parameters
+
+
+
+
+
+ <%#DataBinder.Eval(Container.DataItem, "Name")%>
+ <%#DataBinder.Eval(Container.DataItem, "Type")%>
+
+
+
+
+
+ <% } %>
+
+ Remarks
+
+ <%=OperationDocumentation%>
+
+ Technical information
+
+ Format: <%=CurrentOperationFormat%>
+ Supported protocols: <%=CurrentOperationProtocols%>
+ <% } %>
+
+
+
+ <% if (CurrentTab == "test") {
+ if (CurrentOperationSupportsTest) {%>
+ Enter values for the parameters and click the 'Invoke' button to test this method:
+
+
+ <% } else {%>
+ The test form is not available for this operation because it has parameters with a complex structure.
+ <% } %>
+ <% } %>
+
+
+
+ <% if (CurrentTab == "msg") { %>
+
+ The following are sample SOAP requests and responses for each protocol supported by this method:
+
+
+ <% if (IsOperationSupported ("Soap")) { %>
+ Soap
+
+ <%=GenerateOperationMessages ("Soap", true)%>
+
+ <%=GenerateOperationMessages ("Soap", false)%>
+
+ <% } %>
+ <% if (IsOperationSupported ("HttpGet")) { %>
+ HTTP Get
+
+ <%=GenerateOperationMessages ("HttpGet", true)%>
+
+ <%=GenerateOperationMessages ("HttpGet", false)%>
+
+ <% } %>
+ <% if (IsOperationSupported ("HttpPost")) { %>
+ HTTP Post
+
+ <%=GenerateOperationMessages ("HttpPost", true)%>
+
+ <%=GenerateOperationMessages ("HttpPost", false)%>
+
+ <% } %>
+
+ <% } %>
+<%} else if (CurrentPage == "proxy") {%>
+
+
+
+ <%=CurrentProxytName%>
+ ">Download
+
+
+<%} else if (CurrentPage == "wsdl") {%>
+
+ <% if (descriptions.Count > 1 || schemas.Count > 1) {%>
+ The description of this web service is composed by several documents. Click on the document you want to see:
+
+
+
+ <%} else {%>
+ <%}%>
+
+ <%=CurrentDocumentName%>
+ ">Download
+
+
+
<%=GenerateDocument ()%>
+
+
+<%}%>
+
+
+
+
+
+
+
+
+
diff --git a/Test Build/Test Build_Data/Mono/etc/mono/2.0/machine.config b/Test Build/Test Build_Data/Mono/etc/mono/2.0/machine.config
new file mode 100644
index 00000000..7b835267
--- /dev/null
+++ b/Test Build/Test Build_Data/Mono/etc/mono/2.0/machine.config
@@ -0,0 +1,273 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Test Build/Test Build_Data/Mono/etc/mono/2.0/settings.map b/Test Build/Test Build_Data/Mono/etc/mono/2.0/settings.map
new file mode 100644
index 00000000..0685d74c
--- /dev/null
+++ b/Test Build/Test Build_Data/Mono/etc/mono/2.0/settings.map
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Test Build/Test Build_Data/Mono/etc/mono/2.0/web.config b/Test Build/Test Build_Data/Mono/etc/mono/2.0/web.config
new file mode 100644
index 00000000..e1428f8c
--- /dev/null
+++ b/Test Build/Test Build_Data/Mono/etc/mono/2.0/web.config
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Test Build/Test Build_Data/Mono/etc/mono/browscap.ini b/Test Build/Test Build_Data/Mono/etc/mono/browscap.ini
new file mode 100644
index 00000000..1267e1de
--- /dev/null
+++ b/Test Build/Test Build_Data/Mono/etc/mono/browscap.ini
@@ -0,0 +1,16979 @@
+;;; Provided courtesy of http://browsers.garykeith.com
+;;; Created on Wednesday, June 17, 2009 at 6:30 AM GMT
+
+[GJK_Browscap_Version]
+Version=4476
+Released=Wed, 17 Jun 2009 06:30:21 -0000
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DefaultProperties
+
+[DefaultProperties]
+Browser=DefaultProperties
+Version=0
+MajorVer=0
+MinorVer=0
+Platform=unknown
+Alpha=false
+Beta=false
+Win16=false
+Win32=false
+Win64=false
+Frames=false
+IFrames=false
+Tables=false
+Cookies=false
+BackgroundSounds=false
+CDF=false
+VBScript=false
+JavaApplets=false
+JavaScript=false
+ActiveXControls=false
+isBanned=false
+isMobileDevice=false
+isSyndicationReader=false
+Crawler=false
+CssVersion=0
+supportsCSS=false
+AOL=false
+aolVersion=0
+ECMAScriptVersion=0.0
+W3CDOMVersion=0.0
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ask
+
+[Ask]
+Parent=DefaultProperties
+Browser=Ask
+Frames=true
+Tables=true
+Crawler=true
+
+[Mozilla/?.0 (compatible; Ask Jeeves/Teoma*)]
+Parent=Ask
+Browser=Teoma
+
+[Mozilla/2.0 (compatible; Ask Jeeves)]
+Parent=Ask
+Browser=AskJeeves
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Baidu
+
+[Baidu]
+Parent=DefaultProperties
+Browser=Baidu
+Frames=true
+Tables=true
+Crawler=true
+
+[BaiduImageSpider*]
+Parent=Baidu
+Browser=BaiduImageSpider
+
+[Baiduspider*]
+Parent=Baidu
+Browser=BaiDu
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google
+
+[Google]
+Parent=DefaultProperties
+Browser=Google
+Frames=true
+IFrames=true
+Tables=true
+JavaScript=true
+Crawler=true
+
+[* (compatible; Googlebot-Mobile/2.1; *http://www.google.com/bot.html)]
+Parent=Google
+Browser=Googlebot-Mobile
+Frames=false
+IFrames=false
+Tables=false
+
+[*Google Wireless Transcoder*]
+Parent=Google
+Browser=Google Wireless Transcoder
+
+[AdsBot-Google (?http://www.google.com/adsbot.html)]
+Parent=Google
+Browser=AdsBot-Google
+
+[Feedfetcher-Google-iGoogleGadgets;*]
+Parent=Google
+Browser=iGoogleGadgets
+isBanned=true
+isSyndicationReader=true
+
+[Feedfetcher-Google;*]
+Parent=Google
+Browser=Feedfetcher-Google
+isBanned=true
+isSyndicationReader=true
+
+[Google OpenSocial agent (http://www.google.com/feedfetcher.html)]
+Parent=Google
+Browser=Google OpenSocial
+
+[Google-Site-Verification/1.0]
+Parent=Google
+Browser=Google-Site-Verification
+
+[Google-Sitemaps/*]
+Parent=Google
+Browser=Google-Sitemaps
+
+[Googlebot-Image/*]
+Parent=Google
+Browser=Googlebot-Image
+CDF=true
+
+[googlebot-urlconsole]
+Parent=Google
+Browser=googlebot-urlconsole
+
+[Googlebot-Video/1.0]
+Parent=Google
+Browser=Google-Video
+
+[Googlebot/2.1 (?http://www.google.com/bot.html)]
+Parent=Google
+Browser=Googlebot
+
+[Googlebot/2.1 (?http://www.googlebot.com/bot.html)]
+Parent=Google
+Browser=Googlebot
+
+[Googlebot/Test*]
+Parent=Google
+Browser=Googlebot/Test
+
+[gsa-crawler*]
+Parent=Google
+Browser=Google Search Appliance
+isBanned=true
+
+[Mediapartners-Google*]
+Parent=Google
+Browser=Mediapartners-Google
+
+[Mozilla/4.0 (compatible; Google Desktop)]
+Parent=Google
+Browser=Google Desktop
+
+[Mozilla/4.0 (compatible; GoogleToolbar*)]
+Parent=Google
+Browser=Google Toolbar
+isBanned=true
+
+[Mozilla/5.0 (compatible; Google Keyword Tool;*)]
+Parent=Google
+Browser=Google Keyword Tool
+
+[Mozilla/5.0 (compatible; Googlebot/2.1; ?http://www.google.com/bot.html)]
+Parent=Google
+Browser=Google Webmaster Tools
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Inktomi
+
+[Inktomi]
+Parent=DefaultProperties
+Browser=Inktomi
+Frames=true
+Tables=true
+Crawler=true
+
+[* (compatible;YahooSeeker/M1A1-R2D2; *)]
+Parent=Inktomi
+Browser=YahooSeeker-Mobile
+Frames=false
+Tables=false
+
+[Mozilla/4.0]
+Parent=Inktomi
+
+[Mozilla/4.0 (compatible; MSIE 5.0; Windows NT)]
+Parent=Inktomi
+Win32=true
+
+[Mozilla/4.0 (compatible; Yahoo Japan; for robot study; kasugiya)]
+Parent=Inktomi
+Browser=Yahoo! RobotStudy
+isBanned=true
+
+[Mozilla/5.0 (compatible; BMC/1.0 (Y!J-AGENT))]
+Parent=Inktomi
+Browser=Y!J-AGENT/BMC
+
+[Mozilla/5.0 (compatible; BMF/1.0 (Y!J-AGENT))]
+Parent=Inktomi
+Browser=Y!J-AGENT/BMF
+
+[Mozilla/5.0 (compatible; BMI/1.0 (Y!J-AGENT; 1.0))]
+Parent=Inktomi
+Browser=Y!J-AGENT/BMI
+
+[Mozilla/5.0 (compatible; Yahoo! DE Slurp; http://help.yahoo.com/help/us/ysearch/slurp)]
+Parent=Inktomi
+Browser=Yahoo! Directory Engine
+
+[Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)]
+Parent=Inktomi
+Browser=Yahoo! Slurp China
+
+[Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)]
+Parent=Inktomi
+Browser=Yahoo! Slurp
+Version=3.0
+MajorVer=3
+MinorVer=0
+
+[Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)]
+Parent=Inktomi
+Browser=Yahoo! Slurp
+
+[Mozilla/5.0 (compatible; Yahoo! Verifier/1.1)]
+Parent=Inktomi
+Browser=Yahoo! Verifier
+Version=1.1
+MajorVer=1
+MinorVer=1
+
+[Mozilla/5.0 (Slurp/cat; slurp@inktomi.com; http://www.inktomi.com/slurp.html)]
+Parent=Inktomi
+Browser=Slurp/cat
+
+[Mozilla/5.0 (Slurp/si; slurp@inktomi.com; http://www.inktomi.com/slurp.html)]
+Parent=Inktomi
+
+[Mozilla/5.0 (Yahoo-MMCrawler/4.0; mailto:vertical-crawl-support@yahoo-inc.com)]
+Parent=Inktomi
+Browser=Yahoo-MMCrawler
+Version=4.0
+MajorVer=4
+MinorVer=0
+
+[Scooter/*]
+Parent=Inktomi
+Browser=Scooter
+
+[Scooter/3.3Y!CrawlX]
+Parent=Inktomi
+Browser=Scooter/3.3Y!CrawlX
+Version=3.3
+MajorVer=3
+MinorVer=3
+
+[slurp]
+Parent=Inktomi
+Browser=slurp
+
+[Y!J-BSC/1.0*]
+Parent=Inktomi
+Browser=Y!J-BSC
+Version=1.0
+MajorVer=1
+MinorVer=0
+isBanned=true
+
+[Y!J-SRD/1.0]
+Parent=Inktomi
+Browser=Y!J-SRD
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Yahoo Mindset]
+Parent=Inktomi
+Browser=Yahoo Mindset
+
+[Yahoo Pipes*]
+Parent=Inktomi
+Browser=Yahoo Pipes
+
+[Yahoo! Mindset]
+Parent=Inktomi
+Browser=Yahoo! Mindset
+
+[Yahoo! Slurp/Site Explorer]
+Parent=Inktomi
+Browser=Yahoo! Site Explorer
+
+[Yahoo-Blogs/*]
+Parent=Inktomi
+Browser=Yahoo-Blogs
+
+[Yahoo-MMAudVid*]
+Parent=Inktomi
+Browser=Yahoo-MMAudVid
+
+[Yahoo-MMCrawler*]
+Parent=Inktomi
+Browser=Yahoo-MMCrawler
+isBanned=true
+
+[YahooFeedSeeker*]
+Parent=Inktomi
+Browser=YahooFeedSeeker
+isSyndicationReader=true
+Crawler=false
+
+[YahooSeeker/*]
+Parent=Inktomi
+Browser=YahooSeeker
+isMobileDevice=true
+
+[YahooSeeker/CafeKelsa (compatible; Konqueror/3.2; FreeBSD*) (KHTML, like Gecko)]
+Parent=Inktomi
+Browser=YahooSeeker/CafeKelsa
+
+[YahooSeeker/CafeKelsa-dev (compatible; Konqueror/3.2; FreeBSD*) (KHTML, like Gecko)]
+Parent=Inktomi
+
+[YahooVideoSearch*]
+Parent=Inktomi
+Browser=YahooVideoSearch
+
+[YahooYSMcm*]
+Parent=Inktomi
+Browser=YahooYSMcm
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN
+
+[MSN]
+Parent=DefaultProperties
+Browser=MSN
+Frames=true
+Tables=true
+Crawler=true
+
+[adidxbot/1.1 (?http://search.msn.com/msnbot.htm)]
+Parent=MSN
+Browser=adidxbot
+
+[librabot/1.0 (*)]
+Parent=MSN
+Browser=librabot
+
+[llssbot/1.0]
+Parent=MSN
+Browser=llssbot
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[MSMOBOT/1.1*]
+Parent=MSN
+Browser=msnbot-mobile
+Version=1.1
+MajorVer=1
+MinorVer=1
+
+[MSNBot-Academic/1.0*]
+Parent=MSN
+Browser=MSNBot-Academic
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[msnbot-media/1.0*]
+Parent=MSN
+Browser=msnbot-media
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[msnbot-media/1.1*]
+Parent=MSN
+Browser=msnbot-media
+Version=1.1
+MajorVer=1
+MinorVer=1
+
+[MSNBot-News/1.0*]
+Parent=MSN
+Browser=MSNBot-News
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[MSNBot-NewsBlogs/1.0*]
+Parent=MSN
+Browser=MSNBot-NewsBlogs
+Version=1
+MajorVer=1
+MinorVer=0
+
+[msnbot-products]
+Parent=MSN
+Browser=msnbot-products
+
+[msnbot-webmaster/1.0 (*http://search.msn.com/msnbot.htm)]
+Parent=MSN
+Browser=msnbot-webmaster tools
+
+[msnbot/1.0*]
+Parent=MSN
+Browser=msnbot
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[msnbot/1.1*]
+Parent=MSN
+Browser=msnbot
+Version=1.1
+MajorVer=1
+MinorVer=1
+
+[msnbot/2.0b*]
+Parent=MSN
+Version=2.0
+MajorVer=2
+MinorVer=0
+Beta=true
+
+[MSR-ISRCCrawler]
+Parent=MSN
+Browser=MSR-ISRCCrawler
+
+[renlifangbot/1.0 (?http://search.msn.com/msnbot.htm)]
+Parent=MSN
+Browser=renlifangbot
+
+[T-Mobile Dash Mozilla/4.0 (*) MSNBOT-MOBILE/1.1 (*)]
+Parent=MSN
+Browser=msnbot-mobile
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo
+
+[Yahoo]
+Parent=DefaultProperties
+Browser=Yahoo
+Frames=true
+Tables=true
+Crawler=true
+
+[Mozilla/4.0 (compatible; Y!J; for robot study*)]
+Parent=Yahoo
+Browser=Y!J
+
+[Mozilla/5.0 (Yahoo-Test/4.0*)]
+Parent=Yahoo
+Browser=Yahoo-Test
+Version=4.0
+MajorVer=4
+MinorVer=0
+
+[mp3Spider cn-search-devel at yahoo-inc dot com]
+Parent=Yahoo
+Browser=Yahoo! Media
+isBanned=true
+
+[My Browser]
+Parent=Yahoo
+Browser=Yahoo! My Browser
+
+[Y!OASIS/*]
+Parent=Yahoo
+Browser=Y!OASIS
+isBanned=true
+
+[YahooYSMcm/2.0.0]
+Parent=Yahoo
+Browser=YahooYSMcm
+Version=2.0
+MajorVer=2
+MinorVer=0
+isBanned=true
+
+[YRL_ODP_CRAWLER]
+Parent=Yahoo
+Browser=YRL_ODP_CRAWLER
+isBanned=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yandex
+
+[Yandex]
+Parent=DefaultProperties
+Browser=Yandex
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+Crawler=true
+
+[Mozilla/4.0 (compatible; MSIE 5.0; YANDEX)]
+Parent=Yandex
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9) Gecko VisualParser/3.0]
+Parent=Yandex
+Browser=VisualParser
+isBanned=true
+
+[YaDirectBot/*]
+Parent=Yandex
+Browser=YaDirectBot
+
+[Yandex/*]
+Parent=Yandex
+
+[YandexBlog/*]
+Parent=Yandex
+Browser=YandexBlog
+isSyndicationReader=true
+
+[YandexSomething/*]
+Parent=Yandex
+Browser=YandexSomething
+isSyndicationReader=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Best of the Web
+
+[Best of the Web]
+Parent=DefaultProperties
+Browser=Best of the Web
+Frames=true
+Tables=true
+
+[Mozilla/4.0 (compatible; BOTW Feed Grabber; *http://botw.org)]
+Parent=Best of the Web
+Browser=BOTW Feed Grabber
+isSyndicationReader=true
+Crawler=false
+
+[Mozilla/4.0 (compatible; BOTW Spider; *http://botw.org)]
+Parent=Best of the Web
+Browser=BOTW Spider
+isBanned=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Boitho
+
+[Boitho]
+Parent=DefaultProperties
+Browser=Boitho
+Frames=true
+Tables=true
+Crawler=true
+
+[boitho.com-dc/*]
+Parent=Boitho
+Browser=boitho.com-dc
+
+[boitho.com-robot/*]
+Parent=Boitho
+Browser=boitho.com-robot
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Convera
+
+[Convera]
+Parent=DefaultProperties
+Browser=Convera
+Frames=true
+Tables=true
+Crawler=true
+
+[ConveraCrawler/*]
+Parent=Convera
+Browser=ConveraCrawler
+
+[ConveraMultiMediaCrawler/0.1*]
+Parent=Convera
+Browser=ConveraMultiMediaCrawler
+Version=0.1
+MajorVer=0
+MinorVer=1
+
+[CrawlConvera*]
+Parent=Convera
+Browser=CrawlConvera
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DotBot
+
+[DotBot]
+Parent=DefaultProperties
+Browser=DotBot
+Frames=true
+Tables=true
+isBanned=true
+Crawler=true
+
+[DotBot/* (http://www.dotnetdotcom.org/*)]
+Parent=DotBot
+
+[Mozilla/5.0 (compatible; DotBot/*; http://www.dotnetdotcom.org/*)]
+Parent=DotBot
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Entireweb
+
+[Entireweb]
+Parent=DefaultProperties
+Browser=Entireweb
+Frames=true
+IFrames=true
+Tables=true
+isBanned=true
+Crawler=true
+
+[Mozilla/4.0 (compatible; SpeedySpider; www.entireweb.com)]
+Parent=Entireweb
+
+[Speedy Spider (*Beta/*)]
+Parent=Entireweb
+
+[Speedy?Spider?(http://www.entireweb.com*)]
+Parent=Entireweb
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Envolk
+
+[Envolk]
+Parent=DefaultProperties
+Browser=Envolk
+Frames=true
+IFrames=true
+Tables=true
+isBanned=true
+Crawler=true
+
+[envolk/* (?http://www.envolk.com/envolk*)]
+Parent=Envolk
+
+[envolk?ITS?spider/* (?http://www.envolk.com/envolk*)]
+Parent=Envolk
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Exalead
+
+[Exalead]
+Parent=DefaultProperties
+Browser=Exalead
+Frames=true
+Tables=true
+isBanned=true
+Crawler=true
+
+[Exabot-Images/1.0]
+Parent=Exalead
+Browser=Exabot-Images
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Exabot-Test/*]
+Parent=Exalead
+Browser=Exabot-Test
+
+[Exabot/2.0]
+Parent=Exalead
+Browser=Exabot
+
+[Exabot/3.0]
+Parent=Exalead
+Browser=Exabot
+Version=3.0
+MajorVer=3
+MinorVer=0
+Platform=Liberate
+
+[Exalead NG/*]
+Parent=Exalead
+Browser=Exalead NG
+isBanned=true
+
+[Mozilla/5.0 (compatible; Exabot-Images/3.0;*)]
+Parent=Exalead
+Browser=Exabot-Images
+
+[Mozilla/5.0 (compatible; Exabot/3.0 (BiggerBetter/tests);*)]
+Parent=Exalead
+Browser=Exabot/BiggerBetter/tests
+
+[Mozilla/5.0 (compatible; Exabot/3.0;*)]
+Parent=Exalead
+Browser=Exabot
+isBanned=false
+
+[Mozilla/5.0 (compatible; NGBot/*)]
+Parent=Exalead
+
+[ng/*]
+Parent=Exalead
+Browser=Exalead Previewer
+Version=1.0
+MajorVer=1
+MinorVer=0
+isBanned=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fast/AllTheWeb
+
+[Fast/AllTheWeb]
+Parent=DefaultProperties
+Browser=Fast/AllTheWeb
+Alpha=true
+Beta=true
+Win16=true
+Win32=true
+Win64=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+isBanned=true
+isMobileDevice=true
+isSyndicationReader=true
+Crawler=true
+
+[*FAST Enterprise Crawler*]
+Parent=Fast/AllTheWeb
+Browser=FAST Enterprise Crawler
+
+[FAST Data Search Document Retriever/4.0*]
+Parent=Fast/AllTheWeb
+Browser=FAST Data Search Document Retriever
+
+[FAST MetaWeb Crawler (helpdesk at fastsearch dot com)]
+Parent=Fast/AllTheWeb
+Browser=FAST MetaWeb Crawler
+
+[Fast PartnerSite Crawler*]
+Parent=Fast/AllTheWeb
+Browser=FAST PartnerSite
+
+[FAST-WebCrawler/*]
+Parent=Fast/AllTheWeb
+Browser=FAST-WebCrawler
+
+[FAST-WebCrawler/*/FirstPage*]
+Parent=Fast/AllTheWeb
+Browser=FAST-WebCrawler/FirstPage
+
+[FAST-WebCrawler/*/Fresh*]
+Parent=Fast/AllTheWeb
+Browser=FAST-WebCrawler/Fresh
+
+[FAST-WebCrawler/*/PartnerSite*]
+Parent=Fast/AllTheWeb
+Browser=FAST PartnerSite
+
+[FAST-WebCrawler/*?Multimedia*]
+Parent=Fast/AllTheWeb
+Browser=FAST-WebCrawler/Multimedia
+
+[FastSearch Web Crawler for*]
+Parent=Fast/AllTheWeb
+Browser=FastSearch Web Crawler
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Gigabot
+
+[Gigabot]
+Parent=DefaultProperties
+Browser=Gigabot
+Frames=true
+IFrames=true
+Tables=true
+Crawler=true
+
+[Gigabot*]
+Parent=Gigabot
+
+[GigabotSiteSearch/*]
+Parent=Gigabot
+Browser=GigabotSiteSearch
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ilse
+
+[Ilse]
+Parent=DefaultProperties
+Browser=Ilse
+Frames=true
+Tables=true
+Crawler=true
+
+[IlseBot/*]
+Parent=Ilse
+
+[INGRID/?.0*]
+Parent=Ilse
+Browser=Ilse
+
+[Mozilla/3.0 (INGRID/*]
+Parent=Ilse
+Browser=Ilse
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iVia Project
+
+[iVia Project]
+Parent=DefaultProperties
+Browser=iVia Project
+Frames=true
+IFrames=true
+Tables=true
+Crawler=true
+
+[DataFountains/DMOZ Downloader*]
+Parent=iVia Project
+Browser=DataFountains/DMOZ Downloader
+isBanned=true
+
+[DataFountains/DMOZ Feature Vector Corpus Creator*]
+Parent=iVia Project
+Browser=DataFountains/DMOZ Feature Vector Corpus
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Jayde Online
+
+[Jayde Online]
+Parent=DefaultProperties
+Browser=Jayde Online
+Frames=true
+Tables=true
+Crawler=true
+
+[ExactSeek Crawler/*]
+Parent=Jayde Online
+Browser=ExactSeek Crawler
+
+[exactseek-pagereaper-* (crawler@exactseek.com)]
+Parent=Jayde Online
+Browser=exactseek-pagereaper
+isBanned=true
+
+[exactseek.com]
+Parent=Jayde Online
+Browser=exactseek.com
+
+[Jayde Crawler*]
+Parent=Jayde Online
+Browser=Jayde Crawler
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycos
+
+[Lycos]
+Parent=DefaultProperties
+Browser=Lycos
+Frames=true
+Tables=true
+Crawler=true
+
+[Lycos*]
+Parent=Lycos
+Browser=Lycos
+
+[Lycos-Proxy]
+Parent=Lycos
+Browser=Lycos-Proxy
+
+[Lycos-Spider_(modspider)]
+Parent=Lycos
+Browser=Lycos-Spider_(modspider)
+
+[Lycos-Spider_(T-Rex)]
+Parent=Lycos
+Browser=Lycos-Spider_(T-Rex)
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Naver
+
+[Naver]
+Parent=DefaultProperties
+Browser=Naver
+isBanned=true
+Crawler=true
+
+[Cowbot-* (NHN Corp*naver.com)]
+Parent=Naver
+Browser=Naver Cowbot
+
+[Mozilla/4.0 (compatible; NaverBot/*; *)]
+Parent=Naver
+
+[Mozilla/4.0 (compatible; NaverBot/*; nhnbot@naver.com)]
+Parent=Naver
+Browser=Naver NaverBot
+
+[NaverBot-* (NHN Corp*naver.com)]
+Parent=Naver
+Browser=Naver NHN Corp
+
+[Yeti/*]
+Parent=Naver
+Browser=Yeti
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Snap
+
+[Snap]
+Parent=DefaultProperties
+Browser=Snap
+isBanned=true
+Crawler=true
+
+[Mozilla/5.0 (SnapPreviewBot) Gecko/* Firefox/*]
+Parent=Snap
+
+[Snapbot/*]
+Parent=Snap
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sogou
+
+[Sogou]
+Parent=DefaultProperties
+Browser=Sogou
+Frames=true
+Tables=true
+isBanned=true
+Crawler=true
+
+[shaboyi spider]
+Parent=Sogou
+Browser=Sogou/Shaboyi Spider
+
+[Sogou develop spider/*]
+Parent=Sogou
+Browser=Sogou Develop Spider
+
+[Sogou head spider*]
+Parent=Sogou
+Browser=Sogou/HEAD Spider
+
+[sogou js robot(*)]
+Parent=Sogou
+
+[Sogou Orion spider/*]
+Parent=Sogou
+Browser=Sogou Orion spider
+
+[Sogou Pic Agent]
+Parent=Sogou
+Browser=Sogou/Image Crawler
+
+[Sogou Pic Spider]
+Parent=Sogou
+Browser=Sogou Pic Spider
+
+[Sogou Push Spider/*]
+Parent=Sogou
+Browser=Sogou Push Spider
+
+[sogou spider]
+Parent=Sogou
+Browser=Sogou/Spider
+
+[sogou web spider*]
+Parent=Sogou
+Browser=sogou web spider
+
+[Sogou-Test-Spider/*]
+Parent=Sogou
+Browser=Sogou-Test-Spider
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YodaoBot
+
+[YodaoBot]
+Parent=DefaultProperties
+Browser=YodaoBot
+Frames=true
+IFrames=true
+Tables=true
+isBanned=true
+Crawler=true
+
+[Mozilla/5.0 (compatible; YodaoBot/1.*)]
+Parent=YodaoBot
+
+[Mozilla/5.0 (compatible;YodaoBot-Image/1.*)]
+Parent=YodaoBot
+Browser=YodaoBot-Image
+
+[WAP_Browser/5.0 (compatible; YodaoBot/1.*)]
+Parent=YodaoBot
+
+[YodaoBot/1.* (*)]
+Parent=YodaoBot
+
+[Best Whois (http://www.bestwhois.net/)]
+Parent=DNS Tools
+Browser=Best Whois
+
+[DNSGroup/*]
+Parent=DNS Tools
+Browser=DNS Group Crawler
+
+[NG-Search/*]
+Parent=Exalead
+Browser=NG-SearchBot
+
+[TouchStone]
+Parent=Feeds Syndicators
+Browser=TouchStone
+isSyndicationReader=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; General Crawlers
+
+[General Crawlers]
+Parent=DefaultProperties
+Browser=General Crawlers
+Crawler=true
+
+[A .NET Web Crawler]
+Parent=General Crawlers
+isBanned=true
+
+[BabalooSpider/1.*]
+Parent=General Crawlers
+Browser=BabalooSpider
+
+[BilgiBot/*]
+Parent=General Crawlers
+Browser=BilgiBot
+isBanned=true
+
+[bot/* (bot; *bot@bot.bot)]
+Parent=General Crawlers
+Browser=bot
+isBanned=true
+
+[CyberPatrol*]
+Parent=General Crawlers
+Browser=CyberPatrol
+isBanned=true
+
+[Cynthia 1.0]
+Parent=General Crawlers
+Browser=Cynthia
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[ddetailsbot (http://www.displaydetails.com)]
+Parent=General Crawlers
+Browser=ddetailsbot
+
+[DomainCrawler/1.0 (info@domaincrawler.com; http://www.domaincrawler.com/domains/view/*)]
+Parent=General Crawlers
+Browser=DomainCrawler
+
+[DomainsBotBot/1.*]
+Parent=General Crawlers
+Browser=DomainsBotBot
+isBanned=true
+
+[DomainsDB.net MetaCrawler*]
+Parent=General Crawlers
+Browser=DomainsDB
+
+[Drupal (*)]
+Parent=General Crawlers
+Browser=Drupal
+
+[Dumbot (version *)*]
+Parent=General Crawlers
+Browser=Dumbfind
+
+[EuripBot/*]
+Parent=General Crawlers
+Browser=Europe Internet Portal
+
+[eventax/*]
+Parent=General Crawlers
+Browser=eventax
+
+[FANGCrawl/*]
+Parent=General Crawlers
+Browser=Safe-t.net Web Filtering Service
+isBanned=true
+
+[favorstarbot/*]
+Parent=General Crawlers
+Browser=favorstarbot
+isBanned=true
+
+[FollowSite.com (*)]
+Parent=General Crawlers
+Browser=FollowSite
+isBanned=true
+
+[Gaisbot*]
+Parent=General Crawlers
+Browser=Gaisbot
+
+[Healthbot/Health_and_Longevity_Project_(HealthHaven.com) ]
+Parent=General Crawlers
+Browser=Healthbot
+isBanned=true
+
+[hitcrawler_0.*]
+Parent=General Crawlers
+Browser=hitcrawler
+isBanned=true
+
+[htdig/*]
+Parent=General Crawlers
+Browser=ht://Dig
+
+[http://hilfe.acont.de/bot.html ACONTBOT]
+Parent=General Crawlers
+Browser=ACONTBOT
+isBanned=true
+
+[JetBrains*]
+Parent=General Crawlers
+Browser=Omea Pro
+
+[KakleBot - www.kakle.com/0.1]
+Parent=General Crawlers
+Browser=KakleBot
+
+[KBeeBot/0.*]
+Parent=General Crawlers
+Browser=KBeeBot
+isBanned=true
+
+[Keyword Density/*]
+Parent=General Crawlers
+Browser=Keyword Density
+
+[LetsCrawl.com/1.0*]
+Parent=General Crawlers
+Browser=LetsCrawl.com
+isBanned=true
+
+[Lincoln State Web Browser]
+Parent=General Crawlers
+Browser=Lincoln State Web Browser
+isBanned=true
+
+[Links4US-Crawler,*]
+Parent=General Crawlers
+Browser=Links4US-Crawler
+isBanned=true
+
+[Lorkyll *.* -- lorkyll@444.net]
+Parent=General Crawlers
+Browser=Lorkyll
+isBanned=true
+
+[Lsearch/sondeur]
+Parent=General Crawlers
+Browser=Lsearch/sondeur
+isBanned=true
+
+[LucidMedia ClickSense/4.?]
+Parent=General Crawlers
+Browser=LucidMedia-ClickSense
+isBanned=true
+
+[MapoftheInternet.com?(?http://MapoftheInternet.com)]
+Parent=General Crawlers
+Browser=MapoftheInternet
+isBanned=true
+
+[Marvin v0.3]
+Parent=General Crawlers
+Browser=MedHunt
+Version=0.3
+MajorVer=0
+MinorVer=3
+
+[masidani_bot_v0.6*]
+Parent=General Crawlers
+Browser=masidani_bot
+
+[Metaspinner/0.01 (Metaspinner; http://www.meta-spinner.de/; support@meta-spinner.de/)]
+Parent=General Crawlers
+Browser=Metaspinner/0.01
+Version=0.01
+MajorVer=0
+MinorVer=01
+
+[metatagsdir/*]
+Parent=General Crawlers
+Browser=metatagsdir
+isBanned=true
+
+[Microsoft Windows Network Diagnostics]
+Parent=General Crawlers
+Browser=Microsoft Windows Network Diagnostics
+isBanned=true
+
+[Miva (AlgoFeedback@miva.com)]
+Parent=General Crawlers
+Browser=Miva
+
+[moget/*]
+Parent=General Crawlers
+Browser=Goo
+
+[Mozdex/0.7.2*]
+Parent=General Crawlers
+Browser=Mozdex
+
+[Mozilla Compatible (MS IE 3.01 WinNT)]
+Parent=General Crawlers
+isBanned=true
+
+[Mozilla/* (compatible; WebCapture*)]
+Parent=General Crawlers
+Browser=WebCapture
+
+[Mozilla/4.0 (compatible; DepSpid/*)]
+Parent=General Crawlers
+Browser=DepSpid
+
+[Mozilla/4.0 (compatible; MSIE *; Windows NT *; SV1)]
+Parent=General Crawlers
+Browser=AVG
+
+[Mozilla/4.0 (compatible; MSIE 4.01; Vonna.com b o t)]
+Parent=General Crawlers
+Browser=Vonna.com
+isBanned=true
+
+[Mozilla/4.0 (compatible; MSIE 4.01; Windows95)]
+Parent=General Crawlers
+Win32=true
+
+[Mozilla/4.0 (compatible; MSIE 4.5; Windows 98; )]
+Parent=General Crawlers
+Win32=true
+
+[Mozilla/4.0 (compatible; MyFamilyBot/*)]
+Parent=General Crawlers
+Browser=MyFamilyBot
+
+[Mozilla/4.0 (compatible; N-Stealth)]
+Parent=General Crawlers
+Browser=N-Stealth
+
+[Mozilla/4.0 (compatible; Scumbot/*; Linux/*)]
+Parent=General Crawlers
+isBanned=true
+
+[Mozilla/4.0 (compatible; Spider; Linux)]
+Parent=General Crawlers
+isBanned=true
+
+[Mozilla/4.0 (compatible; Win32)]
+Parent=General Crawlers
+Browser=Unknown Crawler
+isBanned=true
+
+[Mozilla/4.1]
+Parent=General Crawlers
+isBanned=true
+
+[Mozilla/4.5]
+Parent=General Crawlers
+isBanned=true
+
+[Mozilla/5.0 (*http://gnomit.com/) Gecko/* Gnomit/1.0]
+Parent=General Crawlers
+Browser=Gnomit
+isBanned=true
+
+[Mozilla/5.0 (compatible; AboutUsBot/*)]
+Parent=General Crawlers
+Browser=AboutUsBot
+isBanned=true
+
+[Mozilla/5.0 (compatible; BuzzRankingBot/*)]
+Parent=General Crawlers
+Browser=BuzzRankingBot
+isBanned=true
+
+[Mozilla/5.0 (compatible; Diffbot/0.1; http://www.diffbot.com)]
+Parent=General Crawlers
+Browser=Diffbot
+
+[Mozilla/5.0 (compatible; FirstSearchBot/1.0; *)]
+Parent=General Crawlers
+Browser=FirstSearchBot
+
+[mozilla/5.0 (compatible; genevabot http://www.healthdash.com)]
+Parent=General Crawlers
+Browser=Healthdash
+
+[Mozilla/5.0 (compatible; JadynAveBot; *http://www.jadynave.com/robot*]
+Parent=General Crawlers
+Browser=JadynAveBot
+isBanned=true
+
+[Mozilla/5.0 (compatible; Kyluka crawl; http://www.kyluka.com/crawl.html; crawl@kyluka.com)]
+Parent=General Crawlers
+Browser=Kyluka
+
+[Mozilla/5.0 (compatible; MJ12bot/v1.2.*; http://www.majestic12.co.uk/bot.php*)]
+Parent=General Crawlers
+Browser=MJ12bot
+Version=1.2
+MajorVer=1
+MinorVer=2
+
+[Mozilla/5.0 (compatible; MSIE 7.0 ?http://www.europarchive.org)]
+Parent=General Crawlers
+Browser=Europe Web Archive
+
+[Mozilla/5.0 (compatible; Seznam screenshot-generator 2.0;*)]
+Parent=General Crawlers
+Browser=Seznam screenshot-generator
+isBanned=true
+
+[Mozilla/5.0 (compatible; Twingly Recon; http://www.twingly.com/)]
+Parent=General Crawlers
+Browser=Twingly Recon
+
+[Mozilla/5.0 (compatible; unwrapbot/2.*; http://www.unwrap.jp*)]
+Parent=General Crawlers
+Browser=UnWrap
+
+[Mozilla/5.0 (compatible; Vermut*)]
+Parent=General Crawlers
+Browser=Vermut
+
+[Mozilla/5.0 (compatible; Webbot/*)]
+Parent=General Crawlers
+Browser=Webbot.ru
+isBanned=true
+
+[n4p_bot*]
+Parent=General Crawlers
+Browser=n4p_bot
+
+[nabot*]
+Parent=General Crawlers
+Browser=Nabot
+
+[NetCarta_WebMapper/*]
+Parent=General Crawlers
+Browser=NetCarta_WebMapper
+isBanned=true
+
+[NetID.com Bot*]
+Parent=General Crawlers
+Browser=NetID.com Bot
+isBanned=true
+
+[neTVision AG andreas.heidoetting@thomson-webcast.net]
+Parent=General Crawlers
+Browser=neTVision
+
+[NextopiaBOT*]
+Parent=General Crawlers
+Browser=NextopiaBOT
+
+[nicebot]
+Parent=General Crawlers
+Browser=nicebot
+isBanned=true
+
+[niXXieBot?Foster*]
+Parent=General Crawlers
+Browser=niXXiebot-Foster
+
+[Nozilla/P.N (Just for IDS woring)]
+Parent=General Crawlers
+Browser=Nozilla/P.N
+isBanned=true
+
+[Nudelsalat/*]
+Parent=General Crawlers
+Browser=Nudelsalat
+isBanned=true
+
+[NV32ts]
+Parent=General Crawlers
+Browser=NV32ts
+isBanned=true
+
+[Ocelli/*]
+Parent=General Crawlers
+Browser=Ocelli
+
+[OpenTaggerBot (http://www.opentagger.com/opentaggerbot.htm)]
+Parent=General Crawlers
+Browser=OpenTaggerBot
+
+[Oracle Enterprise Search]
+Parent=General Crawlers
+Browser=Oracle Enterprise Search
+isBanned=true
+
+[Oracle Ultra Search]
+Parent=General Crawlers
+Browser=Oracle Ultra Search
+
+[Pajaczek/*]
+Parent=General Crawlers
+Browser=Pajaczek
+isBanned=true
+
+[panscient.com]
+Parent=General Crawlers
+Browser=panscient.com
+isBanned=true
+
+[Patwebbot (http://www.herz-power.de/technik.html)]
+Parent=General Crawlers
+Browser=Patwebbot
+
+[PDFBot (crawler@pdfind.com)]
+Parent=General Crawlers
+Browser=PDFBot
+
+[Pete-Spider/1.*]
+Parent=General Crawlers
+Browser=Pete-Spider
+isBanned=true
+
+[PhpDig/*]
+Parent=General Crawlers
+Browser=PhpDig
+
+[PlantyNet_WebRobot*]
+Parent=General Crawlers
+Browser=PlantyNet
+isBanned=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PluckIt
+
+[PluckItCrawler/1.0 (*)]
+Parent=General Crawlers
+isMobileDevice=true
+
+[PMAFind]
+Parent=General Crawlers
+Browser=PMAFind
+isBanned=true
+
+[Poodle_predictor_1.0]
+Parent=General Crawlers
+Browser=Poodle Predictor
+
+[QuickFinder Crawler]
+Parent=General Crawlers
+Browser=QuickFinder
+isBanned=true
+
+[Radiation Retriever*]
+Parent=General Crawlers
+Browser=Radiation Retriever
+isBanned=true
+
+[RedCarpet/*]
+Parent=General Crawlers
+Browser=RedCarpet
+isBanned=true
+
+[RixBot (http://babelserver.org/rix)]
+Parent=General Crawlers
+Browser=RixBot
+
+[Rome Client (http://tinyurl.com/64t5n) Ver: 0.*]
+Parent=General Crawlers
+Browser=TinyURL
+
+[SBIder/*]
+Parent=General Crawlers
+Browser=SiteSell
+
+[ScollSpider/2.*]
+Parent=General Crawlers
+Browser=ScollSpider
+isBanned=true
+
+[Search Fst]
+Parent=General Crawlers
+Browser=Search Fst
+
+[searchbot admin@google.com]
+Parent=General Crawlers
+Browser=searchbot
+isBanned=true
+
+[Seeker.lookseek.com]
+Parent=General Crawlers
+Browser=LookSeek
+isBanned=true
+
+[semanticdiscovery/*]
+Parent=General Crawlers
+Browser=Semantic Discovery
+
+[SeznamBot/*]
+Parent=General Crawlers
+Browser=SeznamBot
+isBanned=true
+
+[Shelob (shelob@gmx.net)]
+Parent=General Crawlers
+Browser=Shelob
+isBanned=true
+
+[shelob v1.*]
+Parent=General Crawlers
+Browser=shelob
+isBanned=true
+
+[ShopWiki/1.0*]
+Parent=General Crawlers
+Browser=ShopWiki
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[ShowXML/1.0 libwww/5.4.0]
+Parent=General Crawlers
+Browser=ShowXML
+isBanned=true
+
+[sitecheck.internetseer.com*]
+Parent=General Crawlers
+Browser=Internetseer
+
+[SMBot/*]
+Parent=General Crawlers
+Browser=SMBot
+
+[sohu*]
+Parent=General Crawlers
+Browser=sohu-search
+isBanned=true
+
+[SpankBot*]
+Parent=General Crawlers
+Browser=SpankBot
+isBanned=true
+
+[spider (tspyyp@tom.com)]
+Parent=General Crawlers
+Browser=spider (tspyyp@tom.com)
+isBanned=true
+
+[Sunrise/0.*]
+Parent=General Crawlers
+Browser=Sunrise
+isBanned=true
+
+[Superpages URL Verification Engine]
+Parent=General Crawlers
+Browser=Superpages
+
+[Surf Knight]
+Parent=General Crawlers
+Browser=Surf Knight
+isBanned=true
+
+[SurveyBot/*]
+Parent=General Crawlers
+Browser=SurveyBot
+isBanned=true
+
+[SynapticSearch/AI Crawler 1.?]
+Parent=General Crawlers
+Browser=SynapticSearch
+isBanned=true
+
+[SyncMgr]
+Parent=General Crawlers
+Browser=SyncMgr
+
+[Tagyu Agent/1.0]
+Parent=General Crawlers
+Browser=Tagyu
+
+[Talkro Web-Shot/*]
+Parent=General Crawlers
+Browser=Talkro Web-Shot
+isBanned=true
+
+[Tecomi Bot (http://www.tecomi.com/bot.htm)]
+Parent=General Crawlers
+Browser=Tecomi
+
+[TheInformant*]
+Parent=General Crawlers
+Browser=TheInformant
+isBanned=true
+
+[Toata dragostea*]
+Parent=General Crawlers
+Browser=Toata dragostea
+isBanned=true
+
+[Tutorial Crawler*]
+Parent=General Crawlers
+isBanned=true
+
+[UbiCrawler/*]
+Parent=General Crawlers
+Browser=UbiCrawler
+
+[UCmore]
+Parent=General Crawlers
+Browser=UCmore
+
+[User*Agent:*]
+Parent=General Crawlers
+isBanned=true
+
+[USER_AGENT]
+Parent=General Crawlers
+Browser=USER_AGENT
+isBanned=true
+
+[VadixBot]
+Parent=General Crawlers
+Browser=VadixBot
+
+[VengaBot/*]
+Parent=General Crawlers
+Browser=VengaBot
+isBanned=true
+
+[Visicom Toolbar]
+Parent=General Crawlers
+Browser=Visicom Toolbar
+
+[W3C-WebCon/*]
+Parent=General Crawlers
+Browser=W3C-WebCon
+
+[Webclipping.com]
+Parent=General Crawlers
+Browser=Webclipping.com
+isBanned=true
+
+[webcollage/*]
+Parent=General Crawlers
+Browser=WebCollage
+isBanned=true
+
+[WebCrawler_1.*]
+Parent=General Crawlers
+Browser=WebCrawler
+
+[WebFilter Robot*]
+Parent=General Crawlers
+Browser=WebFilter Robot
+
+[WeBoX/*]
+Parent=General Crawlers
+Browser=WeBoX
+
+[WebTrends/*]
+Parent=General Crawlers
+Browser=WebTrends
+
+[West Wind Internet Protocols*]
+Parent=General Crawlers
+Browser=Versatel
+isBanned=true
+
+[WhizBang]
+Parent=General Crawlers
+Browser=WhizBang
+
+[Willow Internet Crawler by Twotrees V*]
+Parent=General Crawlers
+Browser=Willow Internet Crawler
+
+[WIRE/* (Linux; i686; Bot,Robot,Spider,Crawler)]
+Parent=General Crawlers
+Browser=WIRE
+isBanned=true
+
+[www.fi crawler, contact crawler@www.fi]
+Parent=General Crawlers
+Browser=www.fi crawler
+
+[Xerka WebBot v1.*]
+Parent=General Crawlers
+Browser=Xerka
+isBanned=true
+
+[XML Sitemaps Generator*]
+Parent=General Crawlers
+Browser=XML Sitemaps Generator
+
+[XSpider*]
+Parent=General Crawlers
+Browser=XSpider
+isBanned=true
+
+[YooW!/* (?http://www.yoow.eu)]
+Parent=General Crawlers
+Browser=YooW!
+isBanned=true
+
+[HiddenMarket-*]
+Parent=General RSS
+Browser=HiddenMarket
+isBanned=true
+
+[FOTOCHECKER]
+Parent=Image Crawlers
+Browser=FOTOCHECKER
+isBanned=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Search Engines
+
+[Search Engines]
+Parent=DefaultProperties
+Browser=Search Engines
+Crawler=true
+
+[*FDSE robot*]
+Parent=Search Engines
+Browser=FDSE Robot
+
+[*Fluffy the spider*]
+Parent=Search Engines
+Browser=SearchHippo
+
+[Abacho*]
+Parent=Search Engines
+Browser=Abacho
+
+[ah-ha.com crawler (crawler@ah-ha.com)]
+Parent=Search Engines
+Browser=Ah-Ha
+
+[AIBOT/*]
+Parent=Search Engines
+Browser=21Seek.Com
+
+[ALeadSoftbot/*]
+Parent=Search Engines
+Browser=ALeadSoftbot
+
+[Amfibibot/*]
+Parent=Search Engines
+Browser=Amfibi
+
+[AnswerBus (http://www.answerbus.com/)]
+Parent=Search Engines
+
+[antibot-V*]
+Parent=Search Engines
+Browser=antibot
+
+[appie*(www.walhello.com)]
+Parent=Search Engines
+Browser=Walhello
+
+[ASPSeek/*]
+Parent=Search Engines
+Browser=ASPSeek
+
+[BigCliqueBOT/*]
+Parent=Search Engines
+Browser=BigClique.com/BigClic.com
+
+[Blaiz-Bee/*]
+Parent=Search Engines
+Browser=RawGrunt
+
+[btbot/*]
+Parent=Search Engines
+Browser=Bit Torrent Search Engine
+
+[Busiversebot/v1.0 (http://www.busiverse.com/bot.php)]
+Parent=Search Engines
+Browser=Busiversebot
+isBanned=true
+
+[CatchBot/*; http://www.catchbot.com]
+Parent=Search Engines
+Browser=CatchBot
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[CipinetBot (http://www.cipinet.com/bot.html)]
+Parent=Search Engines
+Browser=CipinetBot
+
+[Cogentbot/1.?*]
+Parent=Search Engines
+Browser=Cogentbot
+
+[compatible; Mozilla 4.0; MSIE 5.5; (SqwidgeBot v1.01 - http://www.sqwidge.com/bot/)]
+Parent=Search Engines
+Browser=SqwidgeBot
+
+[cosmos*]
+Parent=Search Engines
+Browser=Xyleme
+
+[Deepindex]
+Parent=Search Engines
+Browser=Deepindex
+
+[DiamondBot]
+Parent=Search Engines
+Browser=DiamondBot
+
+[Dumbot*]
+Parent=Search Engines
+Browser=Dumbot
+Version=0.2
+MajorVer=0
+MinorVer=2
+Beta=true
+
+[Eule?Robot*]
+Parent=Search Engines
+Browser=Eule-Robot
+
+[Faxobot/*]
+Parent=Search Engines
+Browser=Faxo
+
+[Filangy/*]
+Parent=Search Engines
+Browser=Filangy
+
+[flatlandbot/*]
+Parent=Search Engines
+Browser=Flatland
+
+[Fooky.com/ScorpionBot/ScoutOut;*]
+Parent=Search Engines
+Browser=ScorpionBot
+isBanned=true
+
+[FyberSpider*]
+Parent=Search Engines
+Browser=FyberSpider
+isBanned=true
+
+[Gaisbot/*]
+Parent=Search Engines
+Browser=Gaisbot
+
+[gazz/*(gazz@nttr.co.jp)]
+Parent=Search Engines
+Browser=gazz
+
+[geniebot*]
+Parent=Search Engines
+Browser=GenieKnows
+
+[GOFORITBOT (?http://www.goforit.com/about/?)]
+Parent=Search Engines
+Browser=GoForIt
+
+[GoGuidesBot/*]
+Parent=Search Engines
+Browser=GoGuidesBot
+
+[GroschoBot/*]
+Parent=Search Engines
+Browser=GroschoBot
+
+[GurujiBot/1.*]
+Parent=Search Engines
+Browser=GurujiBot
+isBanned=true
+
+[HenryTheMiragoRobot*]
+Parent=Search Engines
+Browser=Mirago
+
+[HolmesBot (http://holmes.ge)]
+Parent=Search Engines
+Browser=HolmesBot
+
+[Hotzonu/*]
+Parent=Search Engines
+Browser=Hotzonu
+
+[HyperEstraier/*]
+Parent=Search Engines
+Browser=HyperEstraier
+isBanned=true
+
+[i1searchbot/*]
+Parent=Search Engines
+Browser=i1searchbot
+
+[IIITBOT/1.*]
+Parent=Search Engines
+Browser=Indian Language Web Search Engine
+
+[Iltrovatore-?etaccio/*]
+Parent=Search Engines
+Browser=Iltrovatore-Setaccio
+
+[InfociousBot (?http://corp.infocious.com/tech_crawler.php)]
+Parent=Search Engines
+Browser=InfociousBot
+isBanned=true
+
+[Infoseek SideWinder/*]
+Parent=Search Engines
+Browser=Infoseek
+
+[iSEEKbot/*]
+Parent=Search Engines
+Browser=iSEEKbot
+
+[Knight/0.? (Zook Knight; http://knight.zook.in/; knight@zook.in)]
+Parent=Search Engines
+Browser=Knight
+
+[Kolinka Forum Search (www.kolinka.com)]
+Parent=Search Engines
+Browser=Kolinka Forum Search
+isBanned=true
+
+[KRetrieve/]
+Parent=Search Engines
+Browser=KRetrieve
+isBanned=true
+
+[LapozzBot/*]
+Parent=Search Engines
+Browser=LapozzBot
+
+[Linknzbot*]
+Parent=Search Engines
+Browser=Linknzbot
+
+[LocalcomBot/*]
+Parent=Search Engines
+Browser=LocalcomBot
+
+[Mail.Ru/1.0]
+Parent=Search Engines
+Browser=Mail.Ru
+
+[MaSagool/*]
+Parent=Search Engines
+Browser=Sagoo
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[miniRank/*]
+Parent=Search Engines
+Browser=miniRank
+
+[Mnogosearch*]
+Parent=Search Engines
+Browser=Mnogosearch
+
+[Mozilla/0.9* no dos :) (Linux)]
+Parent=Search Engines
+Browser=goliat
+isBanned=true
+
+[Mozilla/4.0 (compatible; Arachmo)]
+Parent=Search Engines
+Browser=Arachmo
+
+[Mozilla/4.0 (compatible; http://search.thunderstone.com/texis/websearch/about.html)]
+Parent=Search Engines
+Browser=ThunderStone
+isBanned=true
+
+[Mozilla/4.0 (compatible; MSIE *; Windows NT; Girafabot; girafabot at girafa dot com; http://www.girafa.com)]
+Parent=Search Engines
+Browser=Girafabot
+Win32=true
+
+[Mozilla/4.0 (compatible; Vagabondo/*; webcrawler at wise-guys dot nl; *)]
+Parent=Search Engines
+Browser=Vagabondo
+
+[Mozilla/4.0(?compatible; MSIE 6.0; Qihoo *)]
+Parent=Search Engines
+Browser=Qihoo
+
+[Mozilla/4.7 (compatible; WhizBang; http://www.whizbang.com/crawler)]
+Parent=Search Engines
+Browser=Inxight Software
+
+[Mozilla/5.0 (*) VoilaBot*]
+Parent=Search Engines
+Browser=VoilaBot
+isBanned=true
+
+[Mozilla/5.0 (compatible; ActiveTouristBot*; http://www.activetourist.com)]
+Parent=Search Engines
+Browser=ActiveTouristBot
+
+[Mozilla/5.0 (compatible; Butterfly/1.0; *)*]
+Parent=Search Engines
+Browser=Butterfly
+
+[Mozilla/5.0 (compatible; Charlotte/*; *)]
+Parent=Search Engines
+Browser=Charlotte
+Beta=true
+isBanned=true
+
+[Mozilla/5.0 (compatible; CXL-FatAssANT*)]
+Parent=Search Engines
+Browser=FatAssANT
+
+[Mozilla/5.0 (compatible; DBLBot/1.0; ?http://www.dontbuylists.com/)]
+Parent=Search Engines
+Browser=DBLBot
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Mozilla/5.0 (compatible; EARTHCOM.info/*)]
+Parent=Search Engines
+Browser=EARTHCOM
+
+[Mozilla/5.0 (compatible; Lipperhey Spider; http://www.lipperhey.com/)]
+Parent=Search Engines
+Browser=Lipperhey Spider
+
+[Mozilla/5.0 (compatible; MojeekBot/*; http://www.mojeek.com/bot.html)]
+Parent=Search Engines
+Browser=MojeekBot
+
+[Mozilla/5.0 (compatible; NLCrawler/*]
+Parent=Search Engines
+Browser=Northern Light Web Search
+
+[Mozilla/5.0 (compatible; OsO;*]
+Parent=Search Engines
+Browser=Octopodus
+isBanned=true
+
+[Mozilla/5.0 (compatible; Pogodak.*)]
+Parent=Search Engines
+Browser=Pogodak
+
+[Mozilla/5.0 (compatible; Quantcastbot/1.*)]
+Parent=Search Engines
+Browser=Quantcastbot
+
+[Mozilla/5.0 (compatible; ScoutJet; *http://www.scoutjet.com/)]
+Parent=Search Engines
+Browser=ScoutJet
+
+[Mozilla/5.0 (compatible; Scrubby/*; http://www.scrubtheweb.com/abs/meta-check.html)]
+Parent=Search Engines
+Browser=Scrubby
+isBanned=true
+
+[Mozilla/5.0 (compatible; YoudaoBot/1.*; http://www.youdao.com/help/webmaster/spider/*)]
+Parent=Search Engines
+Browser=YoudaoBot
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Mozilla/5.0 (Twiceler*)]
+Parent=Search Engines
+Browser=Twiceler
+isBanned=true
+
+[Mozilla/5.0 CostaCider Search*]
+Parent=Search Engines
+Browser=CostaCider Search
+
+[Mozilla/5.0 GurujiBot/1.0 (*)]
+Parent=Search Engines
+Browser=GurujiBot
+
+[NavissoBot]
+Parent=Search Engines
+Browser=NavissoBot
+
+[NextGenSearchBot*(for information visit *)]
+Parent=Search Engines
+Browser=ZoomInfo
+isBanned=true
+
+[Norbert the Spider(Burf.com)]
+Parent=Search Engines
+Browser=Norbert the Spider
+
+[NuSearch Spider*]
+Parent=Search Engines
+Browser=nuSearch
+
+[ObjectsSearch/*]
+Parent=Search Engines
+Browser=ObjectsSearch
+
+[OpenISearch/1.*]
+Parent=Search Engines
+Browser=OpenISearch (Amazon)
+
+[Pagebull http://www.pagebull.com/]
+Parent=Search Engines
+Browser=Pagebull
+
+[PEERbot*]
+Parent=Search Engines
+Browser=PEERbot
+
+[Pompos/*]
+Parent=Search Engines
+Browser=Pompos
+
+[Popdexter/*]
+Parent=Search Engines
+Browser=Popdex
+
+[Qweery*]
+Parent=Search Engines
+Browser=QweeryBot
+
+[RedCell/* (*)]
+Parent=Search Engines
+Browser=RedCell
+
+[Scrubby/*]
+Parent=Search Engines
+Browser=Scrub The Web
+
+[Search-10/*]
+Parent=Search Engines
+Browser=Search-10
+
+[search.ch*]
+Parent=Search Engines
+Browser=Swiss Search Engine
+
+[Searchmee! Spider*]
+Parent=Search Engines
+Browser=Searchmee!
+
+[Seekbot/*]
+Parent=Search Engines
+Browser=Seekbot
+
+[SiteSpider (http://www.SiteSpider.com/)]
+Parent=Search Engines
+Browser=SiteSpider
+
+[Spinne/*]
+Parent=Search Engines
+Browser=Spinne
+
+[sproose/*]
+Parent=Search Engines
+Browser=Sproose
+
+[Sqeobot/0.*]
+Parent=Search Engines
+Browser=Branzel
+isBanned=true
+
+[SquigglebotBot/*]
+Parent=Search Engines
+Browser=SquigglebotBot
+isBanned=true
+
+[StackRambler/*]
+Parent=Search Engines
+Browser=StackRambler
+
+[SygolBot*]
+Parent=Search Engines
+Browser=SygolBot
+
+[SynoBot]
+Parent=Search Engines
+Browser=SynoBot
+
+[Szukacz/*]
+Parent=Search Engines
+Browser=Szukacz
+
+[Tarantula/*]
+Parent=Search Engines
+Browser=Tarantula
+isBanned=true
+
+[TerrawizBot/*]
+Parent=Search Engines
+Browser=TerrawizBot
+isBanned=true
+
+[Tkensaku/*]
+Parent=Search Engines
+Browser=Tkensaku
+
+[TMCrawler]
+Parent=Search Engines
+Browser=TMCrawler
+isBanned=true
+
+[Twingly Recon]
+Parent=Search Engines
+Browser=Twingly Recon
+isBanned=true
+
+[updated/*]
+Parent=Search Engines
+Browser=Updated!
+
+[URL Spider Pro/*]
+Parent=Search Engines
+Browser=URL Spider Pro
+
+[URL Spider SQL*]
+Parent=Search Engines
+Browser=Innerprise Enterprise Search
+
+[VMBot/*]
+Parent=Search Engines
+Browser=VMBot
+
+[voyager/2.0 (http://www.kosmix.com/html/crawler.html)]
+Parent=Search Engines
+Browser=Voyager
+
+[wadaino.jp-crawler*]
+Parent=Search Engines
+Browser=wadaino.jp
+isBanned=true
+
+[WebAlta Crawler/*]
+Parent=Search Engines
+Browser=WebAlta Crawler
+isBanned=true
+
+[WebCorp/*]
+Parent=Search Engines
+Browser=WebCorp
+isBanned=true
+
+[webcrawl.net]
+Parent=Search Engines
+Browser=webcrawl.net
+
+[WISEbot/*]
+Parent=Search Engines
+Browser=WISEbot
+isBanned=true
+
+[Wotbox/*]
+Parent=Search Engines
+Browser=Wotbox
+
+[www.zatka.com]
+Parent=Search Engines
+Browser=Zatka
+
+[WWWeasel Robot v*]
+Parent=Search Engines
+Browser=World Wide Weasel
+
+[YadowsCrawler*]
+Parent=Search Engines
+Browser=YadowsCrawler
+
+[YodaoBot/*]
+Parent=Search Engines
+Browser=YodaoBot
+isBanned=true
+
+[ZeBot_www.ze.bz*]
+Parent=Search Engines
+Browser=ZE.bz
+
+[zibber-v*]
+Parent=Search Engines
+Browser=Zibb
+
+[ZipppBot/*]
+Parent=Search Engines
+Browser=ZipppBot
+
+[ATA-Translation-Service]
+Parent=Translators
+Browser=ATA-Translation-Service
+
+[GJK_Browser_Check]
+Parent=Version Checkers
+Browser=GJK_Browser_Check
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Hatena
+
+[Hatena]
+Parent=DefaultProperties
+Browser=Hatena
+isBanned=true
+Crawler=true
+
+[Feed::Find/*]
+Parent=Hatena
+Browser=Feed Find
+isSyndicationReader=true
+
+[Hatena Antenna/*]
+Parent=Hatena
+Browser=Hatena Antenna
+
+[Hatena Bookmark/*]
+Parent=Hatena
+Browser=Hatena Bookmark
+
+[Hatena RSS/*]
+Parent=Hatena
+Browser=Hatena RSS
+isSyndicationReader=true
+
+[Hatena::Crawler/*]
+Parent=Hatena
+Browser=Hatena Crawler
+
+[HatenaScreenshot*]
+Parent=Hatena
+Browser=HatenaScreenshot
+
+[URI::Fetch/*]
+Parent=Hatena
+Browser=URI::Fetch
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Internet Archive
+
+[Internet Archive]
+Parent=DefaultProperties
+Browser=Internet Archive
+Frames=true
+IFrames=true
+Tables=true
+isBanned=true
+Crawler=true
+
+[*heritrix*]
+Parent=Internet Archive
+Browser=Heritrix
+isBanned=true
+
+[ia_archiver*]
+Parent=Internet Archive
+Browser=Internet Archive
+
+[InternetArchive/*]
+Parent=Internet Archive
+Browser=InternetArchive
+
+[Mozilla/5.0 (compatible; archive.org_bot/1.*)]
+Parent=Internet Archive
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nutch
+
+[Nutch]
+Parent=DefaultProperties
+Browser=Nutch
+isBanned=true
+Crawler=true
+
+[*Nutch*]
+Parent=Nutch
+isBanned=true
+
+[CazoodleBot/*]
+Parent=Nutch
+Browser=CazoodleBot
+
+[LOOQ/0.1*]
+Parent=Nutch
+Browser=LOOQ
+
+[Nutch/0.? (OpenX Spider)]
+Parent=Nutch
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Webaroo
+
+[Webaroo]
+Parent=DefaultProperties
+Browser=Webaroo
+
+[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Webaroo/*)]
+Parent=Webaroo
+Browser=Webaroo
+
+[Mozilla/5.0 (Windows; U; Windows *; *; rv:*) Gecko/* Firefox/* webaroo/*]
+Parent=Webaroo
+Browser=Webaroo
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Word Press
+
+[Word Press]
+Parent=DefaultProperties
+Browser=Word Press
+Alpha=true
+Beta=true
+Win16=true
+Win32=true
+Win64=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+isBanned=true
+isMobileDevice=true
+isSyndicationReader=true
+Crawler=true
+
+[WordPress-B-/2.*]
+Parent=Word Press
+Browser=WordPress-B
+
+[WordPress-Do-P-/2.*]
+Parent=Word Press
+Browser=WordPress-Do-P
+
+[BlueCoat ProxySG]
+Parent=Blue Coat Systems
+Browser=BlueCoat ProxySG
+
+[CerberianDrtrs/*]
+Parent=Blue Coat Systems
+Browser=Cerberian
+
+[Inne: Mozilla/4.0 (compatible; Cerberian Drtrs*)]
+Parent=Blue Coat Systems
+Browser=Cerberian
+
+[Mozilla/4.0 (compatible; Cerberian Drtrs*)]
+Parent=Blue Coat Systems
+Browser=Cerberian
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Bluecoat DRTR)]
+Parent=Blue Coat Systems
+Browser=Bluecoat
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Copyright/Plagiarism
+
+[Copyright/Plagiarism]
+Parent=DefaultProperties
+Browser=Copyright/Plagiarism
+isBanned=true
+Crawler=true
+
+[BDFetch]
+Parent=Copyright/Plagiarism
+Browser=BDFetch
+
+[copyright sheriff (*)]
+Parent=Copyright/Plagiarism
+Browser=copyright sheriff
+
+[CopyRightCheck*]
+Parent=Copyright/Plagiarism
+Browser=CopyRightCheck
+
+[FairAd Client*]
+Parent=Copyright/Plagiarism
+Browser=FairAd Client
+
+[iCopyright Conductor*]
+Parent=Copyright/Plagiarism
+Browser=iCopyright Conductor
+
+[IPiumBot laurion(dot)com]
+Parent=Copyright/Plagiarism
+Browser=IPiumBot
+
+[IWAgent/*]
+Parent=Copyright/Plagiarism
+Browser=Brand Protect
+
+[Mozilla/5.0 (compatible; DKIMRepBot/*)]
+Parent=Copyright/Plagiarism
+Browser=DKIMRepBot
+
+[oBot]
+Parent=Copyright/Plagiarism
+Browser=oBot
+
+[SlySearch/*]
+Parent=Copyright/Plagiarism
+Browser=SlySearch
+
+[TurnitinBot/*]
+Parent=Copyright/Plagiarism
+Browser=TurnitinBot
+
+[TutorGigBot/*]
+Parent=Copyright/Plagiarism
+Browser=TutorGig
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DNS Tools
+
+[DNS Tools]
+Parent=DefaultProperties
+Browser=DNS Tools
+Crawler=true
+
+[Domain Dossier utility*]
+Parent=DNS Tools
+Browser=Domain Dossier
+
+[Mozilla/5.0 (compatible; DNS-Digger/*)]
+Parent=DNS Tools
+Browser=DNS-Digger
+
+[OpenDNS Domain Crawler noc@opendns.com]
+Parent=DNS Tools
+Browser=OpenDNS Domain Crawler
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Download Managers
+
+[Download Managers]
+Parent=DefaultProperties
+Browser=Download Managers
+Frames=true
+IFrames=true
+Tables=true
+isBanned=true
+Crawler=true
+
+[AndroidDownloadManager]
+Parent=Download Managers
+Browser=Android Download Manager
+
+[AutoMate5]
+Parent=Download Managers
+Browser=AutoMate5
+
+[Beamer*]
+Parent=Download Managers
+Browser=Beamer
+
+[BitBeamer/*]
+Parent=Download Managers
+Browser=BitBeamer
+
+[BitTorrent/*]
+Parent=Download Managers
+Browser=BitTorrent
+
+[DA *]
+Parent=Download Managers
+Browser=Download Accelerator
+
+[Download Demon*]
+Parent=Download Managers
+Browser=Download Demon
+
+[Download Express*]
+Parent=Download Managers
+Browser=Download Express
+
+[Download Master*]
+Parent=Download Managers
+Browser=Download Master
+
+[Download Ninja*]
+Parent=Download Managers
+Browser=Download Ninja
+
+[Download Wonder*]
+Parent=Download Managers
+Browser=Download Wonder
+
+[DownloadSession*]
+Parent=Download Managers
+Browser=DownloadSession
+
+[EasyDL/*]
+Parent=Download Managers
+Browser=EasyDL
+
+[FDM 1.x]
+Parent=Download Managers
+Browser=Free Download Manager
+
+[FlashGet]
+Parent=Download Managers
+Browser=FlashGet
+
+[FreshDownload/*]
+Parent=Download Managers
+Browser=FreshDownload
+
+[GetRight/*]
+Parent=Download Managers
+Browser=GetRight
+
+[GetRightPro/*]
+Parent=Download Managers
+Browser=GetRightPro
+
+[GetSmart/*]
+Parent=Download Managers
+Browser=GetSmart
+
+[Go!Zilla*]
+Parent=Download Managers
+Browser=GoZilla
+
+[Gozilla/*]
+Parent=Download Managers
+Browser=Gozilla
+
+[Internet Ninja*]
+Parent=Download Managers
+Browser=Internet Ninja
+
+[Kontiki Client*]
+Parent=Download Managers
+Browser=Kontiki Client
+
+[lftp/3.2.1]
+Parent=Download Managers
+Browser=lftp
+
+[LightningDownload/*]
+Parent=Download Managers
+Browser=LightningDownload
+
+[LMQueueBot/*]
+Parent=Download Managers
+Browser=LMQueueBot
+
+[MetaProducts Download Express/*]
+Parent=Download Managers
+Browser=Download Express
+
+[Mozilla/4.0 (compatible; Getleft*)]
+Parent=Download Managers
+Browser=Getleft
+
+[Myzilla]
+Parent=Download Managers
+Browser=Myzilla
+
+[Net Vampire/*]
+Parent=Download Managers
+Browser=Net Vampire
+
+[Net_Vampire*]
+Parent=Download Managers
+Browser=Net_Vampire
+
+[NetAnts*]
+Parent=Download Managers
+Browser=NetAnts
+
+[NetPumper*]
+Parent=Download Managers
+Browser=NetPumper
+
+[NetSucker*]
+Parent=Download Managers
+Browser=NetSucker
+
+[NetZip Downloader*]
+Parent=Download Managers
+Browser=NetZip Downloader
+
+[NexTools WebAgent*]
+Parent=Download Managers
+Browser=NexTools WebAgent
+
+[Offline Downloader*]
+Parent=Download Managers
+Browser=Offline Downloader
+
+[P3P Client]
+Parent=Download Managers
+Browser=P3P Client
+
+[PageDown*]
+Parent=Download Managers
+Browser=PageDown
+
+[PicaLoader*]
+Parent=Download Managers
+Browser=PicaLoader
+
+[Prozilla*]
+Parent=Download Managers
+Browser=Prozilla
+
+[RealDownload/*]
+Parent=Download Managers
+Browser=RealDownload
+
+[sEasyDL/*]
+Parent=Download Managers
+Browser=EasyDL
+
+[shareaza*]
+Parent=Download Managers
+Browser=shareaza
+
+[SmartDownload/*]
+Parent=Download Managers
+Browser=SmartDownload
+
+[SpeedDownload/*]
+Parent=Download Managers
+Browser=Speed Download
+
+[Star*Downloader/*]
+Parent=Download Managers
+Browser=StarDownloader
+
+[STEROID Download]
+Parent=Download Managers
+Browser=STEROID Download
+
+[SuperBot/*]
+Parent=Download Managers
+Browser=SuperBot
+
+[Vegas95/*]
+Parent=Download Managers
+Browser=Vegas95
+
+[WebZIP*]
+Parent=Download Managers
+Browser=WebZIP
+
+[Wget*]
+Parent=Download Managers
+Browser=Wget
+
+[WinTools]
+Parent=Download Managers
+Browser=WinTools
+
+[Xaldon WebSpider*]
+Parent=Download Managers
+Browser=Xaldon WebSpider
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; E-Mail Harvesters
+
+[E-Mail Harvesters]
+Parent=DefaultProperties
+Browser=E-Mail Harvesters
+Frames=true
+IFrames=true
+Tables=true
+isBanned=true
+Crawler=true
+
+[*E-Mail Address Extractor*]
+Parent=E-Mail Harvesters
+Browser=E-Mail Address Extractor
+
+[*Larbin*]
+Parent=E-Mail Harvesters
+Browser=Larbin
+
+[*www4mail/*]
+Parent=E-Mail Harvesters
+Browser=www4mail
+
+[8484 Boston Project*]
+Parent=E-Mail Harvesters
+Browser=8484 Boston Project
+
+[CherryPicker*/*]
+Parent=E-Mail Harvesters
+Browser=CherryPickerElite
+
+[Chilkat/*]
+Parent=E-Mail Harvesters
+Browser=Chilkat
+
+[ContactBot/*]
+Parent=E-Mail Harvesters
+Browser=ContactBot
+
+[eCatch*]
+Parent=E-Mail Harvesters
+Browser=eCatch
+
+[EmailCollector*]
+Parent=E-Mail Harvesters
+Browser=E-Mail Collector
+
+[EMAILsearcher]
+Parent=E-Mail Harvesters
+Browser=EMAILsearcher
+
+[EmailSiphon*]
+Parent=E-Mail Harvesters
+Browser=E-Mail Siphon
+
+[EmailWolf*]
+Parent=E-Mail Harvesters
+Browser=EMailWolf
+
+[Epsilon SoftWorks' MailMunky]
+Parent=E-Mail Harvesters
+Browser=MailMunky
+
+[ExtractorPro*]
+Parent=E-Mail Harvesters
+Browser=ExtractorPro
+
+[Franklin Locator*]
+Parent=E-Mail Harvesters
+Browser=Franklin Locator
+
+[Missigua Locator*]
+Parent=E-Mail Harvesters
+Browser=Missigua Locator
+
+[Mozilla/4.0 (compatible; Advanced Email Extractor*)]
+Parent=E-Mail Harvesters
+Browser=Advanced Email Extractor
+
+[Netprospector*]
+Parent=E-Mail Harvesters
+Browser=Netprospector
+
+[ProWebWalker*]
+Parent=E-Mail Harvesters
+Browser=ProWebWalker
+
+[sna-0.0.*]
+Parent=E-Mail Harvesters
+Browser=Mike Elliott's E-Mail Harvester
+
+[WebEnhancer*]
+Parent=E-Mail Harvesters
+Browser=WebEnhancer
+
+[WebMiner*]
+Parent=E-Mail Harvesters
+Browser=WebMiner
+
+[ZIBB Crawler (email address / WWW address)]
+Parent=E-Mail Harvesters
+Browser=ZIBB Crawler
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Feeds Blogs
+
+[Feeds Blogs]
+Parent=DefaultProperties
+Browser=Feeds Blogs
+isSyndicationReader=true
+Crawler=true
+
+[Bloglines Title Fetch/*]
+Parent=Feeds Blogs
+Browser=Bloglines Title Fetch
+
+[Bloglines/* (http://www.bloglines.com*)]
+Parent=Feeds Blogs
+Browser=BlogLines Web
+
+[BlogPulseLive (support@blogpulse.com)]
+Parent=Feeds Blogs
+Browser=BlogPulseLive
+
+[blogsearchbot-pumpkin-2]
+Parent=Feeds Blogs
+Browser=blogsearchbot-pumpkin
+isSyndicationReader=false
+
+[Irish Blogs Aggregator/*1.0*]
+Parent=Feeds Blogs
+Browser=Irish Blogs Aggregator
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[kinjabot (http://www.kinja.com; *)]
+Parent=Feeds Blogs
+Browser=kinjabot
+
+[Net::Trackback/*]
+Parent=Feeds Blogs
+Browser=Net::Trackback
+
+[Reblog*]
+Parent=Feeds Blogs
+Browser=Reblog
+
+[WordPress/*]
+Parent=Feeds Blogs
+Browser=WordPress
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Feeds Syndicators
+
+[Feeds Syndicators]
+Parent=DefaultProperties
+Browser=Feeds Syndicators
+isSyndicationReader=true
+
+[*LinkLint*]
+Parent=Feeds Syndicators
+Browser=LinkLint
+
+[*NetNewsWire/*]
+Parent=Feeds Syndicators
+
+[*NetVisualize*]
+Parent=Feeds Syndicators
+Browser=NetVisualize
+
+[AideRSS 2.* (postrank.com)]
+Parent=Feeds Syndicators
+Browser=AideRSS
+
+[AideRSS/2.0 (aiderss.com)]
+Parent=Feeds Syndicators
+Browser=AideRSS
+isBanned=true
+
+[Akregator/*]
+Parent=Feeds Syndicators
+Browser=Akregator
+
+[AppleSyndication/*]
+Parent=Feeds Syndicators
+Browser=Safari RSS
+Platform=MacOSX
+
+[Cocoal.icio.us/* (*)*]
+Parent=Feeds Syndicators
+Browser=Cocoal.icio.us
+isBanned=true
+
+[Feed43 Proxy/* (*)]
+Parent=Feeds Syndicators
+Browser=Feed For Free
+
+[FeedBurner/*]
+Parent=Feeds Syndicators
+Browser=FeedBurner
+
+[FeedDemon/* (*)]
+Parent=Feeds Syndicators
+Browser=FeedDemon
+Platform=Win32
+
+[FeedDigest/* (*)]
+Parent=Feeds Syndicators
+Browser=FeedDigest
+
+[FeedGhost/1.*]
+Parent=Feeds Syndicators
+Browser=FeedGhost
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[FeedOnFeeds/0.1.* ( http://minutillo.com/steve/feedonfeeds/)]
+Parent=Feeds Syndicators
+Browser=FeedOnFeeds
+Version=0.1
+MajorVer=0
+MinorVer=1
+
+[Feedreader * (Powered by Newsbrain)]
+Parent=Feeds Syndicators
+Browser=Newsbrain
+
+[Feedshow/* (*)]
+Parent=Feeds Syndicators
+Browser=Feedshow
+
+[Feedster Crawler/?.0; Feedster, Inc.]
+Parent=Feeds Syndicators
+Browser=Feedster
+
+[GreatNews/1.0]
+Parent=Feeds Syndicators
+Browser=GreatNews
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Gregarius/*]
+Parent=Feeds Syndicators
+Browser=Gregarius
+
+[intraVnews/*]
+Parent=Feeds Syndicators
+Browser=intraVnews
+
+[JetBrains Omea Reader*]
+Parent=Feeds Syndicators
+Browser=Omea Reader
+isBanned=true
+
+[Liferea/1.5* (Linux; *; http://liferea.sf.net/)]
+Parent=Feeds Syndicators
+Browser=Liferea
+isBanned=true
+
+[livedoor FeedFetcher/0.0* (http://reader.livedoor.com/;*)]
+Parent=Feeds Syndicators
+Browser=FeedFetcher
+Version=0.0
+MajorVer=0
+MinorVer=0
+
+[MagpieRSS/* (*)]
+Parent=Feeds Syndicators
+Browser=MagpieRSS
+
+[Mobitype * (compatible; Mozilla/*; MSIE *.*; Windows *)]
+Parent=Feeds Syndicators
+Browser=Mobitype
+Platform=Win32
+
+[Mozilla/5.0 (*; Rojo *; http://www.rojo.com/corporate/help/agg; *)*]
+Parent=Feeds Syndicators
+Browser=Rojo
+
+[Mozilla/5.0 (*aggregator:TailRank; http://tailrank.com/robot)*]
+Parent=Feeds Syndicators
+Browser=TailRank
+
+[Mozilla/5.0 (compatible; MSIE 6.0; Podtech Network; crawler_admin@podtech.net)]
+Parent=Feeds Syndicators
+Browser=Podtech Network
+
+[Mozilla/5.0 (compatible; Newz Crawler *; http://www.newzcrawler.com/?)]
+Parent=Feeds Syndicators
+Browser=Newz Crawler
+
+[Mozilla/5.0 (compatible; RSSMicro.com RSS/Atom Feed Robot)]
+Parent=Feeds Syndicators
+Browser=RSSMicro
+
+[Mozilla/5.0 (compatible;*newstin.com;*)]
+Parent=Feeds Syndicators
+Browser=NewsTin
+
+[Mozilla/5.0 (RSS Reader Panel)]
+Parent=Feeds Syndicators
+Browser=RSS Reader Panel
+
+[Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:FeedParser; *) Gecko/*]
+Parent=Feeds Syndicators
+Browser=FeedParser
+
+[Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:NewsMonster; *) Gecko/*]
+Parent=Feeds Syndicators
+Browser=NewsMonster
+
+[Mozilla/5.0 (X11; U; Linux*; *; rv:1.*; aggregator:Rojo; *) Gecko/*]
+Parent=Feeds Syndicators
+Browser=Rojo
+
+[Netvibes (*)]
+Parent=Feeds Syndicators
+Browser=Netvibes
+
+[NewsAlloy/* (*)]
+Parent=Feeds Syndicators
+Browser=NewsAlloy
+
+[Omnipelagos*]
+Parent=Feeds Syndicators
+Browser=Omnipelagos
+
+[Particls]
+Parent=Feeds Syndicators
+Browser=Particls
+
+[Protopage/* (*)]
+Parent=Feeds Syndicators
+Browser=Protopage
+
+[PubSub-RSS-Reader/* (*)]
+Parent=Feeds Syndicators
+Browser=PubSub-RSS-Reader
+
+[RSS Menu/*]
+Parent=Feeds Syndicators
+Browser=RSS Menu
+
+[RssBandit/*]
+Parent=Feeds Syndicators
+Browser=RssBandit
+
+[RssBar/1.2*]
+Parent=Feeds Syndicators
+Browser=RssBar
+Version=1.2
+MajorVer=1
+MinorVer=2
+
+[SharpReader/*]
+Parent=Feeds Syndicators
+Browser=SharpReader
+
+[SimplePie/*]
+Parent=Feeds Syndicators
+Browser=SimplePie
+
+[Strategic Board Bot (?http://www.strategicboard.com)]
+Parent=Feeds Syndicators
+Browser=Strategic Board Bot
+isBanned=true
+
+[TargetYourNews.com bot]
+Parent=Feeds Syndicators
+Browser=TargetYourNews
+
+[Technoratibot/*]
+Parent=Feeds Syndicators
+Browser=Technoratibot
+
+[Tumblr/* RSS syndication ( http://www.tumblr.com/) (support@tumblr.com)]
+Parent=Feeds Syndicators
+Browser=Tumblr RSS syndication
+
+[Windows-RSS-Platform/1.0*]
+Parent=Feeds Syndicators
+Browser=Windows-RSS-Platform
+Version=1.0
+MajorVer=1
+MinorVer=0
+Win32=true
+
+[Wizz RSS News Reader]
+Parent=Feeds Syndicators
+Browser=Wizz
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; General RSS
+
+[General RSS]
+Parent=DefaultProperties
+Browser=General RSS
+isSyndicationReader=true
+
+[AideRSS/1.0 (aiderss.com); * subscribers]
+Parent=General RSS
+Browser=AideRSS
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[CC Metadata Scaper http://wiki.creativecommons.org/Metadata_Scraper]
+Parent=General RSS
+Browser=CC Metadata Scaper
+
+[Mozilla/5.0 (compatible) GM RSS Panel]
+Parent=General RSS
+Browser=RSS Panel
+
+[Mozilla/5.0 http://www.inclue.com; graeme@inclue.com]
+Parent=General RSS
+Browser=Inclue
+
+[Runnk online rss reader : http://www.runnk.com/ : RSS favorites : RSS ranking : RSS aggregator*]
+Parent=General RSS
+Browser=Ruunk
+
+[Windows-RSS-Platform/2.0 (MSIE 8.0; Windows NT 6.0)]
+Parent=General RSS
+Browser=Windows-RSS-Platform
+Platform=WinVista
+
+[Mozilla/5.0 (X11; ?; Linux; *) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.4]
+Parent=Google Code
+Browser=Arora
+Version=0.4
+MajorVer=0
+MinorVer=4
+Platform=Linux
+CssVersion=2
+supportsCSS=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Validation Checkers
+
+[HTML Validators]
+Parent=DefaultProperties
+Browser=HTML Validators
+Frames=true
+IFrames=true
+Tables=true
+Crawler=true
+
+[(HTML Validator http://www.searchengineworld.com/validator/)]
+Parent=HTML Validators
+Browser=Search Engine World HTML Validator
+
+[FeedValidator/1.3]
+Parent=HTML Validators
+Browser=FeedValidator
+Version=1.3
+MajorVer=1
+MinorVer=3
+
+[Jigsaw/* W3C_CSS_Validator_JFouffa/*]
+Parent=HTML Validators
+Browser=Jigsaw CSS Validator
+
+[Search Engine World Robots.txt Validator*]
+Parent=HTML Validators
+Browser=Search Engine World Robots.txt Validator
+
+[W3C_Validator/*]
+Parent=HTML Validators
+Browser=W3C Validator
+
+[W3CLineMode/*]
+Parent=HTML Validators
+Browser=W3C Line Mode
+
+[Weblide/2.? beta*]
+Parent=HTML Validators
+Browser=Weblide
+Version=2.0
+MajorVer=2
+MinorVer=0
+Beta=true
+
+[WebmasterWorld StickyMail Server Header Checker*]
+Parent=HTML Validators
+Browser=WebmasterWorld Server Header Checker
+
+[WWWC/*]
+Parent=HTML Validators
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Image Crawlers
+
+[Image Crawlers]
+Parent=DefaultProperties
+Browser=Image Crawlers
+Frames=true
+IFrames=true
+Tables=true
+isBanned=true
+Crawler=true
+
+[*CFNetwork*]
+Parent=Image Crawlers
+Browser=CFNetwork
+
+[*PhotoStickies/*]
+Parent=Image Crawlers
+Browser=PhotoStickies
+
+[Camcrawler*]
+Parent=Image Crawlers
+Browser=Camcrawler
+
+[CydralSpider/*]
+Parent=Image Crawlers
+Browser=Cydral Web Image Search
+isBanned=true
+
+[Der gro\xdfe BilderSauger*]
+Parent=Image Crawlers
+Browser=Gallery Grabber
+
+[Extreme Picture Finder]
+Parent=Image Crawlers
+Browser=Extreme Picture Finder
+
+[FLATARTS_FAVICO]
+Parent=Image Crawlers
+Browser=FlatArts Favorites Icon Tool
+
+[HTML2JPG Blackbox, http://www.html2jpg.com]
+Parent=Image Crawlers
+Browser=HTML2JPG
+
+[IconSurf/2.*]
+Parent=Image Crawlers
+Browser=IconSurf
+
+[kalooga/KaloogaBot*]
+Parent=Image Crawlers
+Browser=KaloogaBot
+
+[Mister PIX*]
+Parent=Image Crawlers
+Browser=Mister PIX
+
+[Mozilla/5.0 (Macintosh; U; *Mac OS X; *) AppleWebKit/* (*) Pandora/2.*]
+Parent=Image Crawlers
+Browser=Pandora
+
+[naoFavicon4IE*]
+Parent=Image Crawlers
+Browser=naoFavicon4IE
+
+[pixfinder/*]
+Parent=Image Crawlers
+Browser=pixfinder
+
+[rssImagesBot/0.1 (*http://herbert.groot.jebbink.nl/?app=rssImages)]
+Parent=Image Crawlers
+Browser=rssImagesBot
+
+[Web Image Collector*]
+Parent=Image Crawlers
+Browser=Web Image Collector
+
+[WebImages * (?http://herbert.groot.jebbink.nl/?app=WebImages?)]
+Parent=Image Crawlers
+Browser=WebImages
+
+[WebPix*]
+Parent=Image Crawlers
+Browser=Custo
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Link Checkers
+
+[Link Checkers]
+Parent=DefaultProperties
+Browser=Link Checkers
+Frames=true
+IFrames=true
+Tables=true
+Crawler=true
+
+[!Susie (http://www.sync2it.com/susie)]
+Parent=Link Checkers
+Browser=!Susie
+
+[*AgentName/*]
+Parent=Link Checkers
+Browser=AgentName
+
+[*Linkman*]
+Parent=Link Checkers
+Browser=Linkman
+
+[*LinksManager.com*]
+Parent=Link Checkers
+Browser=LinksManager
+
+[*Powermarks/*]
+Parent=Link Checkers
+Browser=Powermarks
+
+[*W3C-checklink/*]
+Parent=Link Checkers
+Browser=W3C Link Checker
+
+[*Web Link Validator*]
+Parent=Link Checkers
+Browser=Web Link Validator
+
+[*Zeus*]
+Parent=Link Checkers
+Browser=Zeus
+isBanned=true
+
+[ActiveBookmark *]
+Parent=Link Checkers
+Browser=ActiveBookmark
+
+[Bookdog/*]
+Parent=Link Checkers
+Browser=Bookdog
+
+[Bookmark Buddy*]
+Parent=Link Checkers
+Browser=Bookmark Buddy
+
+[Bookmark Renewal Check Agent*]
+Parent=Link Checkers
+Browser=Bookmark Renewal Check Agent
+
+[Bookmark search tool*]
+Parent=Link Checkers
+Browser=Bookmark search tool
+
+[Bookmark-Manager]
+Parent=Link Checkers
+Browser=Bookmark-Manager
+
+[Checkbot*]
+Parent=Link Checkers
+Browser=Checkbot
+
+[CheckLinks/*]
+Parent=Link Checkers
+Browser=CheckLinks
+
+[CyberSpyder Link Test/*]
+Parent=Link Checkers
+Browser=CyberSpyder Link Test
+
+[DLC/*]
+Parent=Link Checkers
+Browser=DLC
+
+[DocWeb Link Crawler (http://doc.php.net)]
+Parent=Link Checkers
+Browser=DocWeb Link Crawler
+
+[FavOrg]
+Parent=Link Checkers
+Browser=FavOrg
+
+[Favorites Sweeper v.3.*]
+Parent=Link Checkers
+Browser=Favorites Sweeper
+
+[FindLinks/*]
+Parent=Link Checkers
+Browser=FindLinks
+
+[Funnel Web Profiler*]
+Parent=Link Checkers
+Browser=Funnel Web Profiler
+
+[Html Link Validator (www.lithopssoft.com)]
+Parent=Link Checkers
+Browser=HTML Link Validator
+
+[IECheck]
+Parent=Link Checkers
+Browser=IECheck
+
+[JCheckLinks/*]
+Parent=Link Checkers
+Browser=JCheckLinks
+
+[JRTwine Software Check Favorites Utility]
+Parent=Link Checkers
+Browser=JRTwine
+
+[Link Valet Online*]
+Parent=Link Checkers
+Browser=Link Valet
+isBanned=true
+
+[LinkAlarm/*]
+Parent=Link Checkers
+Browser=LinkAlarm
+
+[Linkbot*]
+Parent=Link Checkers
+Browser=Linkbot
+
+[LinkChecker/*]
+Parent=Link Checkers
+Browser=LinkChecker
+
+[LinkextractorPro*]
+Parent=Link Checkers
+Browser=LinkextractorPro
+isBanned=true
+
+[LinkLint-checkonly/*]
+Parent=Link Checkers
+Browser=LinkLint
+
+[LinkScan/*]
+Parent=Link Checkers
+Browser=LinkScan
+
+[LinkSweeper/*]
+Parent=Link Checkers
+Browser=LinkSweeper
+
+[LinkWalker*]
+Parent=Link Checkers
+Browser=LinkWalker
+
+[MetaGer-LinkChecker]
+Parent=Link Checkers
+Browser=MetaGer-LinkChecker
+
+[Mozilla/* (compatible; linktiger/*; *http://www.linktiger.com*)]
+Parent=Link Checkers
+Browser=LinkTiger
+isBanned=true
+
+[Mozilla/4.0 (Compatible); URLBase*]
+Parent=Link Checkers
+Browser=URLBase
+
+[Mozilla/4.0 (compatible; Link Utility; http://net-promoter.com)]
+Parent=Link Checkers
+Browser=NetPromoter Link Utility
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98) Web Link Validator*]
+Parent=Link Checkers
+Browser=Web Link Validator
+Win32=true
+
+[Mozilla/4.0 (compatible; MSIE 7.0; Win32) Link Commander 3.0]
+Parent=Link Checkers
+Browser=Link Commander
+Version=3.0
+MajorVer=3
+MinorVer=0
+Platform=Win32
+
+[Mozilla/4.0 (compatible; smartBot/1.*; checking links; *)]
+Parent=Link Checkers
+Browser=smartBot
+
+[Mozilla/4.0 (compatible; SuperCleaner*;*)]
+Parent=Link Checkers
+Browser=SuperCleaner
+
+[Mozilla/5.0 gURLChecker/*]
+Parent=Link Checkers
+Browser=gURLChecker
+isBanned=true
+
+[Newsgroupreporter LinkCheck]
+Parent=Link Checkers
+Browser=Newsgroupreporter LinkCheck
+
+[onCHECK Linkchecker von www.scientec.de fuer www.onsinn.de]
+Parent=Link Checkers
+Browser=onCHECK Linkchecker
+
+[online link validator (http://www.dead-links.com/)]
+Parent=Link Checkers
+Browser=Dead-Links.com
+isBanned=true
+
+[REL Link Checker*]
+Parent=Link Checkers
+Browser=REL Link Checker
+
+[RLinkCheker*]
+Parent=Link Checkers
+Browser=RLinkCheker
+
+[Robozilla/*]
+Parent=Link Checkers
+Browser=Robozilla
+
+[RPT-HTTPClient/*]
+Parent=Link Checkers
+Browser=RPT-HTTPClient
+isBanned=true
+
+[SafariBookmarkChecker*(?http://www.coriolis.ch/)]
+Parent=Link Checkers
+Browser=SafariBookmarkChecker
+Platform=MacOSX
+CssVersion=2
+supportsCSS=true
+
+[Simpy/* (Simpy; http://www.simpy.com/?ref=bot; feedback at simpy dot com)]
+Parent=Link Checkers
+Browser=Simpy
+
+[SiteBar/*]
+Parent=Link Checkers
+Browser=SiteBar
+
+[Susie (http://www.sync2it.com/bms/susie.php]
+Parent=Link Checkers
+Browser=Susie
+
+[URLBase/6.*]
+Parent=Link Checkers
+
+[VSE/*]
+Parent=Link Checkers
+Browser=VSE Link Tester
+
+[WebTrends Link Analyzer]
+Parent=Link Checkers
+Browser=WebTrends Link Analyzer
+
+[WorQmada/*]
+Parent=Link Checkers
+Browser=WorQmada
+
+[Xenu* Link Sleuth*]
+Parent=Link Checkers
+Browser=Xenu's Link Sleuth
+isBanned=true
+
+[Z-Add Link Checker*]
+Parent=Link Checkers
+Browser=Z-Add Link Checker
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft
+
+[Microsoft]
+Parent=DefaultProperties
+Browser=Microsoft
+isBanned=true
+
+[Live (http://www.live.com/)]
+Parent=Microsoft
+Browser=Microsoft Live
+isBanned=false
+isSyndicationReader=true
+
+[MFC Foundation Class Library*]
+Parent=Microsoft
+Browser=MFC Foundation Class Library
+
+[MFHttpScan]
+Parent=Microsoft
+Browser=MFHttpScan
+
+[Microsoft BITS/*]
+Parent=Microsoft
+Browser=BITS
+
+[Microsoft Data Access Internet Publishing Provider Cache Manager]
+Parent=Microsoft
+Browser=MS IPP
+
+[Microsoft Data Access Internet Publishing Provider DAV*]
+Parent=Microsoft
+Browser=MS IPP DAV
+
+[Microsoft Data Access Internet Publishing Provider Protocol Discovery]
+Parent=Microsoft
+Browser=MS IPPPD
+
+[Microsoft Internet Explorer]
+Parent=Microsoft
+Browser=Fake IE
+
+[Microsoft Office Existence Discovery]
+Parent=Microsoft
+Browser=Microsoft Office Existence Discovery
+
+[Microsoft Office Protocol Discovery]
+Parent=Microsoft
+Browser=MS OPD
+
+[Microsoft Office/* (*Picture Manager*)]
+Parent=Microsoft
+Browser=Microsoft Office Picture Manager
+
+[Microsoft URL Control*]
+Parent=Microsoft
+Browser=Microsoft URL Control
+
+[Microsoft Visio MSIE]
+Parent=Microsoft
+Browser=Microsoft Visio
+
+[Microsoft-WebDAV-MiniRedir/*]
+Parent=Microsoft
+Browser=Microsoft-WebDAV
+
+[Mozilla/5.0 (Macintosh; Intel Mac OS X) Excel/12.*]
+Parent=Microsoft
+Browser=Microsoft Excel
+Version=12.0
+MajorVer=12
+MinorVer=0
+Platform=MacOSX
+
+[MSN Feed Manager]
+Parent=Microsoft
+Browser=MSN Feed Manager
+isBanned=false
+isSyndicationReader=true
+
+[MSProxy/*]
+Parent=Microsoft
+Browser=MS Proxy
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Miscellaneous Browsers
+
+[Miscellaneous Browsers]
+Parent=DefaultProperties
+Browser=Miscellaneous Browsers
+Frames=true
+Tables=true
+Cookies=true
+
+[*Amiga*]
+Parent=Miscellaneous Browsers
+Browser=Amiga
+Platform=Amiga
+
+[*avantbrowser*]
+Parent=Miscellaneous Browsers
+Browser=Avant Browser
+
+[12345]
+Parent=Miscellaneous Browsers
+Browser=12345
+isBanned=true
+
+[Ace Explorer]
+Parent=Miscellaneous Browsers
+Browser=Ace Explorer
+
+[Enigma Browser*]
+Parent=Miscellaneous Browsers
+Browser=Enigma Browser
+
+[EVE-minibrowser/*]
+Parent=Miscellaneous Browsers
+Browser=EVE-minibrowser
+IFrames=false
+Tables=false
+BackgroundSounds=false
+VBScript=false
+JavaApplets=false
+JavaScript=false
+ActiveXControls=false
+isBanned=false
+Crawler=false
+
+[Godzilla/* (Basic*; *; Commodore C=64; *; rv:1.*)*]
+Parent=Miscellaneous Browsers
+Browser=Godzilla
+
+[GreenBrowser]
+Parent=Miscellaneous Browsers
+Browser=GreenBrowser
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+CssVersion=2
+supportsCSS=true
+
+[Kopiczek/* (WyderOS*; *)]
+Parent=Miscellaneous Browsers
+Browser=Kopiczek
+Platform=WyderOS
+IFrames=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/* (*) - BrowseX (*)]
+Parent=Miscellaneous Browsers
+Browser=BrowseX
+
+[Mozilla/* (Win32;*Escape?*; ?)]
+Parent=Miscellaneous Browsers
+Browser=Escape
+Platform=Win32
+
+[Mozilla/4.0 (compatible; ibisBrowser)]
+Parent=Miscellaneous Browsers
+Browser=ibisBrowser
+
+[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) AppleWebKit/* (*) HistoryHound/*]
+Parent=Miscellaneous Browsers
+Browser=HistoryHound
+
+[NetRecorder*]
+Parent=Miscellaneous Browsers
+Browser=NetRecorder
+
+[NetSurfer*]
+Parent=Miscellaneous Browsers
+Browser=NetSurfer
+
+[ogeb browser , Version 1.1.0]
+Parent=Miscellaneous Browsers
+Browser=ogeb browser
+Version=1.1
+MajorVer=1
+MinorVer=1
+
+[SCEJ PSP BROWSER 0102pspNavigator]
+Parent=Miscellaneous Browsers
+Browser=Wipeout Pure
+
+[SlimBrowser]
+Parent=Miscellaneous Browsers
+Browser=SlimBrowser
+
+[WWW_Browser/*]
+Parent=Miscellaneous Browsers
+Browser=WWW Browser
+Version=1.69
+MajorVer=1
+MinorVer=69
+Platform=Win16
+CssVersion=3
+supportsCSS=true
+
+[*Netcraft Webserver Survey*]
+Parent=Netcraft
+Browser=Netcraft Webserver Survey
+isBanned=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Offline Browsers
+
+[Offline Browsers]
+Parent=DefaultProperties
+Browser=Offline Browsers
+Frames=true
+Tables=true
+Cookies=true
+isBanned=true
+Crawler=true
+
+[*Check&Get*]
+Parent=Offline Browsers
+Browser=Check&Get
+
+[*HTTrack*]
+Parent=Offline Browsers
+Browser=HTTrack
+
+[*MSIECrawler*]
+Parent=Offline Browsers
+Browser=IE Offline Browser
+
+[*TweakMASTER*]
+Parent=Offline Browsers
+Browser=TweakMASTER
+
+[BackStreet Browser *]
+Parent=Offline Browsers
+Browser=BackStreet Browser
+
+[Go-Ahead-Got-It*]
+Parent=Offline Browsers
+Browser=Go Ahead Got-It
+
+[iGetter/*]
+Parent=Offline Browsers
+Browser=iGetter
+
+[Teleport*]
+Parent=Offline Browsers
+Browser=Teleport
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Online Scanners
+
+[Online Scanners]
+Parent=DefaultProperties
+Browser=Online Scanners
+isBanned=true
+
+[JoeDog/* (X11; I; Siege *)]
+Parent=Online Scanners
+Browser=JoeDog
+isBanned=false
+
+[Morfeus Fucking Scanner]
+Parent=Online Scanners
+Browser=Morfeus Fucking Scanner
+
+[Mozilla/4.0 (compatible; Trend Micro tmdr 1.*]
+Parent=Online Scanners
+Browser=Trend Micro
+
+[Titanium 2005 (4.02.01)]
+Parent=Online Scanners
+Browser=Panda Antivirus Titanium
+
+[virus_detector*]
+Parent=Online Scanners
+Browser=Secure Computing Corporation
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Proxy Servers
+
+[Proxy Servers]
+Parent=DefaultProperties
+Browser=Proxy Servers
+isBanned=true
+
+[*squid*]
+Parent=Proxy Servers
+Browser=Squid
+
+[Anonymisiert*]
+Parent=Proxy Servers
+Browser=Anonymizied
+
+[Anonymizer/*]
+Parent=Proxy Servers
+Browser=Anonymizer
+
+[Anonymizied*]
+Parent=Proxy Servers
+Browser=Anonymizied
+
+[Anonymous*]
+Parent=Proxy Servers
+Browser=Anonymous
+
+[Anonymous/*]
+Parent=Proxy Servers
+Browser=Anonymous
+
+[CE-Preload]
+Parent=Proxy Servers
+Browser=CE-Preload
+
+[http://Anonymouse.org/*]
+Parent=Proxy Servers
+Browser=Anonymouse
+
+[IE/6.01 (CP/M; 8-bit*)]
+Parent=Proxy Servers
+Browser=Squid
+
+[Mozilla/* (TuringOS; Turing Machine; 0.0)]
+Parent=Proxy Servers
+Browser=Anonymizer
+
+[Mozilla/4.0 (compatible; MSIE ?.0; SaferSurf*)]
+Parent=Proxy Servers
+Browser=SaferSurf
+
+[Mozilla/5.0 (compatible; del.icio.us-thumbnails/*; *) KHTML/* (like Gecko)]
+Parent=Proxy Servers
+Browser=Yahoo!
+isBanned=true
+Crawler=true
+
+[Nutscrape]
+Parent=Proxy Servers
+Browser=Squid
+
+[Nutscrape/* (CP/M; 8-bit*)]
+Parent=Proxy Servers
+Browser=Squid
+
+[Privoxy/*]
+Parent=Proxy Servers
+Browser=Privoxy
+
+[ProxyTester*]
+Parent=Proxy Servers
+Browser=ProxyTester
+isBanned=true
+Crawler=true
+
+[SilentSurf*]
+Parent=Proxy Servers
+Browser=SilentSurf
+
+[SmallProxy*]
+Parent=Proxy Servers
+Browser=SmallProxy
+
+[Space*Bison/*]
+Parent=Proxy Servers
+Browser=Proxomitron
+
+[Sqworm/*]
+Parent=Proxy Servers
+Browser=Websense
+
+[SurfControl]
+Parent=Proxy Servers
+Browser=SurfControl
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Research Projects
+
+[Research Projects]
+Parent=DefaultProperties
+Browser=Research Projects
+isBanned=true
+Crawler=true
+
+[*research*]
+Parent=Research Projects
+
+[AcadiaUniversityWebCensusClient]
+Parent=Research Projects
+Browser=AcadiaUniversityWebCensusClient
+
+[Amico Alpha * (*) Gecko/* AmicoAlpha/*]
+Parent=Research Projects
+Browser=Amico Alpha
+
+[annotate_google; http://ponderer.org/*]
+Parent=Research Projects
+Browser=Annotate Google
+
+[CMS crawler (?http://buytaert.net/crawler/)]
+Parent=Research Projects
+
+[e-SocietyRobot(http://www.yama.info.waseda.ac.jp/~yamana/es/)]
+Parent=Research Projects
+Browser=e-SocietyRobot
+
+[Forschungsportal/*]
+Parent=Research Projects
+Browser=Forschungsportal
+
+[Gulper Web *]
+Parent=Research Projects
+Browser=Gulper Web Bot
+
+[HooWWWer/*]
+Parent=Research Projects
+Browser=HooWWWer
+
+[http://buytaert.net/crawler]
+Parent=Research Projects
+
+[inetbot/* (?http://www.inetbot.com/bot.html)]
+Parent=Research Projects
+Browser=inetbot
+
+[IRLbot/*]
+Parent=Research Projects
+Browser=IRLbot
+
+[Lachesis]
+Parent=Research Projects
+Browser=Lachesis
+
+[Mozilla/5.0 (compatible; nextthing.org/*)]
+Parent=Research Projects
+Browser=nextthing.org
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Mozilla/5.0 (compatible; Theophrastus/*)]
+Parent=Research Projects
+Browser=Theophrastus
+
+[Mozilla/5.0 (compatible; Webscan v0.*; http://otc.dyndns.org/webscan/)]
+Parent=Research Projects
+Browser=Webscan
+
+[MQbot*]
+Parent=Research Projects
+Browser=MQbot
+
+[OutfoxBot/*]
+Parent=Research Projects
+Browser=OutfoxBot
+
+[polybot?*]
+Parent=Research Projects
+Browser=Polybot
+
+[Shim?Crawler*]
+Parent=Research Projects
+Browser=Shim Crawler
+
+[Steeler/*]
+Parent=Research Projects
+Browser=Steeler
+
+[Taiga web spider]
+Parent=Research Projects
+Browser=Taiga
+
+[Theme Spider*]
+Parent=Research Projects
+Browser=Theme Spider
+
+[UofTDB_experiment* (leehyun@cs.toronto.edu)]
+Parent=Research Projects
+Browser=UofTDB Experiment
+
+[USyd-NLP-Spider*]
+Parent=Research Projects
+Browser=USyd-NLP-Spider
+
+[woriobot*]
+Parent=Research Projects
+Browser=woriobot
+
+[wwwster/* (Beta, mailto:gue@cis.uni-muenchen.de)]
+Parent=Research Projects
+Browser=wwwster
+Beta=true
+
+[Zao-Crawler]
+Parent=Research Projects
+Browser=Zao-Crawler
+
+[Zao/*]
+Parent=Research Projects
+Browser=Zao
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Rippers
+
+[Rippers]
+Parent=DefaultProperties
+Browser=Rippers
+Frames=true
+IFrames=true
+Tables=true
+isBanned=true
+Crawler=true
+
+[*grub*]
+Parent=Rippers
+Browser=grub
+
+[*ickHTTP*]
+Parent=Rippers
+Browser=IP*Works
+
+[*java*]
+Parent=Rippers
+
+[*libwww-perl*]
+Parent=Rippers
+Browser=libwww-perl
+
+[*WebGrabber*]
+Parent=Rippers
+
+[*WinHttpRequest*]
+Parent=Rippers
+Browser=WinHttp
+
+[3D-FTP/*]
+Parent=Rippers
+Browser=3D-FTP
+
+[3wGet/*]
+Parent=Rippers
+Browser=3wGet
+
+[ActiveRefresh*]
+Parent=Rippers
+Browser=ActiveRefresh
+
+[Artera (Version *)]
+Parent=Rippers
+Browser=Artera
+
+[AutoHotkey]
+Parent=Rippers
+Browser=AutoHotkey
+
+[b2w/*]
+Parent=Rippers
+Browser=b2w
+
+[BasicHTTP/*]
+Parent=Rippers
+Browser=BasicHTTP
+
+[BlockNote.Net]
+Parent=Rippers
+Browser=BlockNote.Net
+
+[CAST]
+Parent=Rippers
+Browser=CAST
+
+[CFNetwork/*]
+Parent=Rippers
+Browser=CFNetwork
+
+[CFSCHEDULE*]
+Parent=Rippers
+Browser=ColdFusion Task Scheduler
+
+[CobWeb/*]
+Parent=Rippers
+Browser=CobWeb
+
+[ColdFusion*]
+Parent=Rippers
+Browser=ColdFusion
+
+[Crawl_Application]
+Parent=Rippers
+Browser=Crawl_Application
+
+[curl/*]
+Parent=Rippers
+Browser=cURL
+
+[Custo*]
+Parent=Rippers
+Browser=Custo
+
+[DataCha0s/*]
+Parent=Rippers
+Browser=DataCha0s
+
+[DeepIndexer*]
+Parent=Rippers
+Browser=DeepIndexer
+
+[DISCo Pump *]
+Parent=Rippers
+Browser=DISCo Pump
+
+[eStyleSearch * (compatible; MSIE 6.0; Windows NT 5.0)]
+Parent=Rippers
+Browser=eStyleSearch
+Win32=true
+
+[ezic.com http agent *]
+Parent=Rippers
+Browser=Ezic.com
+
+[fetch libfetch/*]
+Parent=Rippers
+
+[FGet*]
+Parent=Rippers
+Browser=FGet
+
+[Flaming AttackBot*]
+Parent=Rippers
+Browser=Flaming AttackBot
+
+[Foobot*]
+Parent=Rippers
+Browser=Foobot
+
+[GameSpyHTTP/*]
+Parent=Rippers
+Browser=GameSpyHTTP
+
+[gnome-vfs/*]
+Parent=Rippers
+Browser=gnome-vfs
+
+[Harvest/*]
+Parent=Rippers
+Browser=Harvest
+
+[hcat/*]
+Parent=Rippers
+Browser=hcat
+
+[HLoader]
+Parent=Rippers
+Browser=HLoader
+
+[Holmes/*]
+Parent=Rippers
+Browser=Holmes
+
+[HTMLParser/*]
+Parent=Rippers
+Browser=HTMLParser
+
+[http generic]
+Parent=Rippers
+Browser=http generic
+
+[httpclient*]
+Parent=Rippers
+
+[httperf/*]
+Parent=Rippers
+Browser=httperf
+
+[HTTPFetch/*]
+Parent=Rippers
+Browser=HTTPFetch
+
+[HTTPGrab]
+Parent=Rippers
+Browser=HTTPGrab
+
+[HttpSession]
+Parent=Rippers
+Browser=HttpSession
+
+[httpunit/*]
+Parent=Rippers
+Browser=HttpUnit
+
+[ICE_GetFile]
+Parent=Rippers
+Browser=ICE_GetFile
+
+[iexplore.exe]
+Parent=Rippers
+
+[Inet - Eureka App]
+Parent=Rippers
+Browser=Inet - Eureka App
+
+[INetURL/*]
+Parent=Rippers
+Browser=INetURL
+
+[InetURL:/*]
+Parent=Rippers
+Browser=InetURL
+
+[Internet Exploiter/*]
+Parent=Rippers
+
+[Internet Explore *]
+Parent=Rippers
+Browser=Fake IE
+
+[Internet Explorer *]
+Parent=Rippers
+Browser=Fake IE
+
+[IP*Works!*/*]
+Parent=Rippers
+Browser=IP*Works!
+
+[IrssiUrlLog/*]
+Parent=Rippers
+Browser=IrssiUrlLog
+
+[JPluck/*]
+Parent=Rippers
+Browser=JPluck
+
+[Kapere (http://www.kapere.com)]
+Parent=Rippers
+Browser=Kapere
+
+[LeechFTP]
+Parent=Rippers
+Browser=LeechFTP
+
+[LeechGet*]
+Parent=Rippers
+Browser=LeechGet
+
+[libcurl-agent/*]
+Parent=Rippers
+Browser=libcurl
+
+[libWeb/clsHTTP*]
+Parent=Rippers
+Browser=libWeb/clsHTTP
+
+[lwp*]
+Parent=Rippers
+
+[MFC_Tear_Sample]
+Parent=Rippers
+Browser=MFC_Tear_Sample
+
+[Moozilla]
+Parent=Rippers
+Browser=Moozilla
+
+[MovableType/*]
+Parent=Rippers
+Browser=MovableType Web Log
+
+[Mozilla/2.0 (compatible; NEWT ActiveX; Win32)]
+Parent=Rippers
+Browser=NEWT ActiveX
+Platform=Win32
+
+[Mozilla/3.0 (compatible)]
+Parent=Rippers
+
+[Mozilla/3.0 (compatible; Indy Library)]
+Parent=Rippers
+Cookies=true
+
+[Mozilla/3.01 (compatible;)]
+Parent=Rippers
+
+[Mozilla/4.0 (compatible; BorderManager*)]
+Parent=Rippers
+Browser=Novell BorderManager
+
+[Mozilla/4.0 (compatible;)]
+Parent=Rippers
+
+[Mozilla/5.0 (compatible; IPCheck Server Monitor*)]
+Parent=Rippers
+Browser=IPCheck Server Monitor
+
+[OCN-SOC/*]
+Parent=Rippers
+Browser=OCN-SOC
+
+[Offline Explorer*]
+Parent=Rippers
+Browser=Offline Explorer
+
+[Open Web Analytics Bot*]
+Parent=Rippers
+Browser=Open Web Analytics Bot
+
+[OSSProxy*]
+Parent=Rippers
+Browser=OSSProxy
+
+[Pageload*]
+Parent=Rippers
+Browser=PageLoad
+
+[PageNest/*]
+Parent=Rippers
+Browser=PageNest
+
+[pavuk/*]
+Parent=Rippers
+Browser=Pavuk
+
+[PEAR HTTP_Request*]
+Parent=Rippers
+Browser=PEAR-PHP
+
+[PHP*]
+Parent=Rippers
+Browser=PHP
+
+[PigBlock (Windows NT 5.1; U)*]
+Parent=Rippers
+Browser=PigBlock
+Win32=true
+
+[Pockey*]
+Parent=Rippers
+Browser=Pockey-GetHTML
+
+[POE-Component-Client-HTTP/*]
+Parent=Rippers
+Browser=POE-Component-Client-HTTP
+
+[PycURL/*]
+Parent=Rippers
+Browser=PycURL
+
+[Python*]
+Parent=Rippers
+Browser=Python
+
+[RepoMonkey*]
+Parent=Rippers
+Browser=RepoMonkey
+
+[SBL-BOT*]
+Parent=Rippers
+Browser=BlackWidow
+
+[ScoutAbout*]
+Parent=Rippers
+Browser=ScoutAbout
+
+[sherlock/*]
+Parent=Rippers
+Browser=Sherlock
+
+[SiteParser/*]
+Parent=Rippers
+Browser=SiteParser
+
+[SiteSnagger*]
+Parent=Rippers
+Browser=SiteSnagger
+
+[SiteSucker/*]
+Parent=Rippers
+Browser=SiteSucker
+
+[SiteWinder*]
+Parent=Rippers
+Browser=SiteWinder
+
+[Snoopy*]
+Parent=Rippers
+Browser=Snoopy
+
+[SOFTWING_TEAR_AGENT*]
+Parent=Rippers
+Browser=AspTear
+
+[SuperHTTP/*]
+Parent=Rippers
+Browser=SuperHTTP
+
+[Tcl http client package*]
+Parent=Rippers
+Browser=Tcl http client package
+
+[Twisted PageGetter]
+Parent=Rippers
+Browser=Twisted PageGetter
+
+[URL2File/*]
+Parent=Rippers
+Browser=URL2File
+
+[UtilMind HTTPGet]
+Parent=Rippers
+Browser=UtilMind HTTPGet
+
+[VCI WebViewer*]
+Parent=Rippers
+Browser=VCI WebViewer
+
+[W3CRobot/*]
+Parent=Rippers
+Browser=W3CRobot
+
+[Web Downloader*]
+Parent=Rippers
+Browser=Web Downloader
+
+[Web Downloader/*]
+Parent=Rippers
+Browser=Web Downloader
+
+[Web Magnet*]
+Parent=Rippers
+Browser=Web Magnet
+
+[WebAuto/*]
+Parent=Rippers
+
+[webbandit/*]
+Parent=Rippers
+Browser=webbandit
+
+[WebCopier*]
+Parent=Rippers
+Browser=WebCopier
+
+[WebDownloader*]
+Parent=Rippers
+Browser=WebDownloader
+
+[WebFetch]
+Parent=Rippers
+Browser=WebFetch
+
+[webfetch/*]
+Parent=Rippers
+Browser=WebFetch
+
+[WebGatherer*]
+Parent=Rippers
+Browser=WebGatherer
+
+[WebGet]
+Parent=Rippers
+Browser=WebGet
+
+[WebReaper*]
+Parent=Rippers
+Browser=WebReaper
+
+[WebRipper]
+Parent=Rippers
+Browser=WebRipper
+
+[WebSauger*]
+Parent=Rippers
+Browser=WebSauger
+
+[Website Downloader*]
+Parent=Rippers
+Browser=Website Downloader
+
+[Website eXtractor*]
+Parent=Rippers
+Browser=Website eXtractor
+
+[Website Quester]
+Parent=Rippers
+Browser=Website Quester
+
+[WebsiteExtractor*]
+Parent=Rippers
+Browser=Website eXtractor
+
+[WebSnatcher*]
+Parent=Rippers
+Browser=WebSnatcher
+
+[Webster Pro*]
+Parent=Rippers
+Browser=Webster Pro
+
+[WebStripper*]
+Parent=Rippers
+Browser=WebStripper
+
+[WebWhacker*]
+Parent=Rippers
+Browser=WebWhacker
+
+[WinScripter iNet Tools]
+Parent=Rippers
+Browser=WinScripter iNet Tools
+
+[WWW-Mechanize/*]
+Parent=Rippers
+Browser=WWW-Mechanize
+
+[Zend_Http_Client]
+Parent=Rippers
+Browser=Zend_Http_Client
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Site Monitors
+
+[Site Monitors]
+Parent=DefaultProperties
+Browser=Site Monitors
+Cookies=true
+isBanned=true
+Crawler=true
+
+[*EasyRider*]
+Parent=Site Monitors
+Browser=EasyRider
+
+[*maxamine.com--robot*]
+Parent=Site Monitors
+Browser=maxamine.com--robot
+isBanned=true
+
+[*WebMon ?.*]
+Parent=Site Monitors
+Browser=WebMon
+
+[Kenjin Spider*]
+Parent=Site Monitors
+Browser=Kenjin Spider
+
+[Kevin http://*]
+Parent=Site Monitors
+Browser=Kevin
+isBanned=true
+
+[Mozilla/4.0 (compatible; ChangeDetection/*]
+Parent=Site Monitors
+Browser=ChangeDetection
+
+[Myst Monitor Service v*]
+Parent=Site Monitors
+Browser=Myst Monitor Service
+
+[Net Probe]
+Parent=Site Monitors
+Browser=Net Probe
+
+[NetMechanic*]
+Parent=Site Monitors
+Browser=NetMechanic
+
+[NetReality*]
+Parent=Site Monitors
+Browser=NetReality
+
+[Pingdom GIGRIB*]
+Parent=Site Monitors
+Browser=Pingdom
+
+[Site Valet Online*]
+Parent=Site Monitors
+Browser=Site Valet
+isBanned=true
+
+[SITECHECKER]
+Parent=Site Monitors
+Browser=SITECHECKER
+
+[sitemonitor@dnsvr.com/*]
+Parent=Site Monitors
+Browser=ZoneEdit Failover Monitor
+isBanned=false
+
+[UpTime Checker*]
+Parent=Site Monitors
+Browser=UpTime Checker
+
+[URL Control*]
+Parent=Site Monitors
+Browser=URL Control
+
+[URL_Access/*]
+Parent=Site Monitors
+
+[URLCHECK]
+Parent=Site Monitors
+Browser=URLCHECK
+
+[URLy Warning*]
+Parent=Site Monitors
+Browser=URLy Warning
+
+[Webcheck *]
+Parent=Site Monitors
+Browser=Webcheck
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[WebPatrol/*]
+Parent=Site Monitors
+Browser=WebPatrol
+
+[websitepulse checker/*]
+Parent=Site Monitors
+Browser=websitepulse checker
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Social Bookmarkers
+
+[Social Bookmarkers]
+Parent=DefaultProperties
+Browser=Social Bookmarkers
+Frames=true
+Tables=true
+Cookies=true
+JavaScript=true
+
+[BookmarkBase(2/;http://bookmarkbase.com)]
+Parent=Social Bookmarkers
+Browser=BookmarkBase
+
+[Cocoal.icio.us/1.0 (v43) (Mac OS X; http://www.scifihifi.com/cocoalicious)]
+Parent=Social Bookmarkers
+Browser=Cocoalicious
+
+[Mozilla/5.0 (compatible; FriendFeedBot/0.*; Http://friendfeed.com/about/bot)]
+Parent=Social Bookmarkers
+Browser=FriendFeedBot
+
+[Twitturly*]
+Parent=Social Bookmarkers
+Browser=Twitturly
+
+[WinkBot/*]
+Parent=Social Bookmarkers
+Browser=WinkBot
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Translators
+
+[Translators]
+Parent=DefaultProperties
+Browser=Translators
+Frames=true
+Tables=true
+Cookies=true
+
+[Seram Server]
+Parent=Translators
+Browser=Seram Server
+
+[TeragramWebcrawler/*]
+Parent=Translators
+Browser=TeragramWebcrawler
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[WebIndexer/* (Web Indexer; *)]
+Parent=Translators
+Browser=WorldLingo
+
+[WebTrans]
+Parent=Translators
+Browser=WebTrans
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Version Checkers
+
+[Version Checkers]
+Parent=DefaultProperties
+Browser=Version Checkers
+Crawler=true
+
+[Automated Browscap.ini Updater. To report issues contact us at http://www.skycomp.ca]
+Parent=Version Checkers
+Browser=Automated Browscap.ini Updater
+
+[BMC Link Validator (http://www.briansmodelcars.com/links/)]
+Parent=Version Checkers
+Browser=BMC Link Validator
+MajorVer=1
+MinorVer=0
+Platform=Win2000
+
+[Browscap updater]
+Parent=Version Checkers
+Browser=Browscap updater
+
+[BrowscapUpdater1.0]
+Parent=Version Checkers
+
+[Browser Capabilities Project (http://browsers.garykeith.com; http://browsers.garykeith.com/sitemail/contact-me.asp)]
+Parent=Version Checkers
+Browser=Gary Keith's Version Checker
+
+[Browser Capabilities Project AutoDownloader]
+Parent=Version Checkers
+Browser=TKC AutoDownloader
+
+[browsers.garykeith.com browscap.ini bot BETA]
+Parent=Version Checkers
+
+[Code Sample Web Client]
+Parent=Version Checkers
+Browser=Code Sample Web Client
+
+[Desktop Sidebar*]
+Parent=Version Checkers
+Browser=Desktop Sidebar
+isBanned=true
+
+[Mono Browser Capabilities Updater*]
+Parent=Version Checkers
+Browser=Mono Browser Capabilities Updater
+isBanned=true
+
+[Rewmi/*]
+Parent=Version Checkers
+isBanned=true
+
+[Subtext Version 1.9* - http://subtextproject.com/ (Microsoft Windows NT 5.2.*)]
+Parent=Version Checkers
+Browser=Subtext
+
+[TherapeuticResearch]
+Parent=Version Checkers
+Browser=TherapeuticResearch
+
+[UpdateBrowscap*]
+Parent=Version Checkers
+Browser=UpdateBrowscap
+
+[www.garykeith.com browscap.ini bot*]
+Parent=Version Checkers
+Browser=clarkson.edu
+
+[www.substancia.com AutoHTTPAgent (ver *)]
+Parent=Version Checkers
+Browser=Substância
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Become
+
+[Become]
+Parent=DefaultProperties
+Browser=Become
+Frames=true
+Tables=true
+isSyndicationReader=true
+Crawler=true
+
+[*BecomeBot/*]
+Parent=Become
+Browser=BecomeBot
+
+[*BecomeBot@exava.com*]
+Parent=Become
+Browser=BecomeBot
+
+[*Exabot@exava.com*]
+Parent=Become
+Browser=Exabot
+
+[MonkeyCrawl/*]
+Parent=Become
+Browser=MonkeyCrawl
+
+[Mozilla/5.0 (compatible; BecomeJPBot/2.3; *)]
+Parent=Become
+Browser=BecomeJPBot
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Blue Coat Systems
+
+[Blue Coat Systems]
+Parent=DefaultProperties
+Browser=Blue Coat Systems
+isBanned=true
+Crawler=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Browscap Abusers
+
+[Browscap Abusers]
+Parent=DefaultProperties
+Browser=Browscap Abusers
+isBanned=true
+
+[Apple-PubSub/*]
+Parent=Browscap Abusers
+Browser=Apple-PubSub
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FeedHub
+
+[FeedHub]
+Parent=DefaultProperties
+Browser=FeedHub
+isSyndicationReader=true
+
+[FeedHub FeedDiscovery/1.0 (http://www.feedhub.com)]
+Parent=FeedHub
+Browser=FeedHub FeedDiscovery
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[FeedHub FeedFetcher/1.0 (http://www.feedhub.com)]
+Parent=FeedHub
+Browser=FeedHub FeedFetcher
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[FeedHub MetaDataFetcher/1.0 (http://www.feedhub.com)]
+Parent=FeedHub
+Browser=FeedHub MetaDataFetcher
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Internet Content Rating Association]
+Parent=DefaultProperties
+Browser=
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+Crawler=true
+
+[ICRA_label_generator/1.?]
+Parent=Internet Content Rating Association
+Browser=ICRA_label_generator
+
+[ICRA_Semantic_spider/0.?]
+Parent=Internet Content Rating Association
+Browser=ICRA_Semantic_spider
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NameProtect
+
+[NameProtect]
+Parent=DefaultProperties
+Browser=NameProtect
+isBanned=true
+Crawler=true
+
+[abot/*]
+Parent=NameProtect
+Browser=NameProtect
+
+[NP/*]
+Parent=NameProtect
+Browser=NameProtect
+
+[NPBot*]
+Parent=NameProtect
+Browser=NameProtect
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netcraft
+
+[Netcraft]
+Parent=DefaultProperties
+Browser=Netcraft
+isBanned=true
+Crawler=true
+
+[*Netcraft Web Server Survey*]
+Parent=Netcraft
+Browser=Netcraft Webserver Survey
+isBanned=true
+
+[Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; info@netcraft.com)]
+Parent=Netcraft
+Browser=NetcraftSurveyAgent
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NewsGator
+
+[NewsGator]
+Parent=DefaultProperties
+Browser=NewsGator
+isSyndicationReader=true
+
+[MarsEdit*]
+Parent=NewsGator
+Browser=MarsEdit
+
+[NetNewsWire*/*]
+Parent=NewsGator
+Browser=NetNewsWire
+Platform=MacOSX
+
+[NewsFire/*]
+Parent=NewsGator
+Browser=NewsFire
+
+[NewsGator FetchLinks extension/*]
+Parent=NewsGator
+Browser=NewsGator FetchLinks
+
+[NewsGator/*]
+Parent=NewsGator
+Browser=NewsGator
+isBanned=true
+
+[NewsGatorOnline/*]
+Parent=NewsGator
+Browser=NewsGatorOnline
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.2
+
+[Chrome 0.2]
+Parent=DefaultProperties
+Browser=Chrome
+Version=0.2
+MinorVer=2
+Beta=true
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*]
+Parent=Chrome 0.2
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*]
+Parent=Chrome 0.2
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2.* Safari/*]
+Parent=Chrome 0.2
+Platform=WinVista
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.3
+
+[Chrome 0.3]
+Parent=DefaultProperties
+Browser=Chrome
+Version=0.3
+MinorVer=3
+Beta=true
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*]
+Parent=Chrome 0.3
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*]
+Parent=Chrome 0.3
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3.* Safari/*]
+Parent=Chrome 0.3
+Platform=WinVista
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.4
+
+[Chrome 0.4]
+Parent=DefaultProperties
+Browser=Chrome
+Version=0.4
+MinorVer=4
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*]
+Parent=Chrome 0.4
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*]
+Parent=Chrome 0.4
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4.* Safari/*]
+Parent=Chrome 0.4
+Platform=WinVista
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.5
+
+[Chrome 0.5]
+Parent=DefaultProperties
+Browser=Chrome
+Version=0.5
+MinorVer=5
+Beta=true
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*]
+Parent=Chrome 0.5
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*]
+Parent=Chrome 0.5
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5.* Safari/*]
+Parent=Chrome 0.5
+Platform=WinVista
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 1.0
+
+[Chrome 1.0]
+Parent=DefaultProperties
+Browser=Chrome
+Version=1.0
+MajorVer=1
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
+Parent=Chrome 1.0
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
+Parent=Chrome 1.0
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
+Parent=Chrome 1.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
+Parent=Chrome 1.0
+Platform=Win7
+
+[Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/1.0.* Safari/*]
+Parent=Chrome 1.0
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 2.0
+
+[Chrome 2.0]
+Parent=DefaultProperties
+Browser=Chrome
+Version=2.0
+MajorVer=2
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
+Parent=Chrome 2.0
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
+Parent=Chrome 2.0
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
+Parent=Chrome 2.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
+Parent=Chrome 2.0
+Platform=Win7
+
+[Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/2.0.* Safari/*]
+Parent=Chrome 2.0
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 3.0
+
+[Chrome 3.0]
+Parent=DefaultProperties
+Browser=Chrome
+Version=3.0
+MajorVer=3
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
+Parent=Chrome 3.0
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
+Parent=Chrome 3.0
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
+Parent=Chrome 3.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.1; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
+Parent=Chrome 3.0
+Platform=Win7
+
+[Mozilla/5.0 (Windows; U; Windows NT 7.0; *) AppleWebKit/* (KHTML, like Gecko) Chrome/3.0.* Safari/*]
+Parent=Chrome 3.0
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Code
+
+[Google Code]
+Parent=DefaultProperties
+Browser=Google Code
+Tables=true
+Cookies=true
+JavaApplets=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.2
+
+[Iron 0.2]
+Parent=DefaultProperties
+Browser=Iron
+Version=0.2
+MinorVer=2
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
+Parent=Iron 0.2
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
+Parent=Iron 0.2
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.2.* Safari/*]
+Parent=Iron 0.2
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.3
+
+[Iron 0.3]
+Parent=DefaultProperties
+Browser=Iron
+Version=0.3
+MinorVer=3
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
+Parent=Iron 0.3
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
+Parent=Iron 0.3
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.3.* Safari/*]
+Parent=Iron 0.3
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.4
+
+[Iron 0.4]
+Parent=DefaultProperties
+Browser=Iron
+Version=0.4
+MinorVer=4
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*]
+Parent=Iron 0.4
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*]
+Parent=Iron 0.4
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0; *) AppleWebKit/* (KHTML, like Gecko) Iron/0.4.* Safari/*]
+Parent=Iron 0.4
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iPod
+
+[iPod]
+Parent=DefaultProperties
+Browser=iPod
+Platform=iPhone OSX
+isMobileDevice=true
+
+[Mozilla/5.0 (iPod; U; *Mac OS X; *) AppleWebKit/* (*) Version/3.0 Mobile/* Safari/*]
+Parent=iPod
+Version=3.0
+MajorVer=3
+MinorVer=0
+Platform=MacOSX
+
+[Mozilla/5.0 (iPod; U; CPU iPhone OS 2_2 like Mac OS X; en-us) AppleWebKit/* (KHTML, like Gecko) Mobile/*]
+Parent=iPod
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iTunes
+
+[iTunes]
+Parent=DefaultProperties
+Browser=iTunes
+Platform=iPhone OSX
+
+[iTunes/* (Windows; ?)]
+Parent=iTunes
+Browser=iTunes
+Platform=Win32
+Win32=true
+
+[MOT-* iTunes/* MIB/* Profile/MIDP-* Configuration/CLDC-* UP.Link/*]
+Parent=iTunes
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Media Players
+
+[Media Players]
+Parent=DefaultProperties
+Browser=Media Players
+Cookies=true
+
+[Microsoft NetShow(TM) Player with RealVideo(R)]
+Parent=Media Players
+Browser=Microsoft NetShow
+
+[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; *) AppleWebKit/* RealPlayer]
+Parent=Media Players
+Browser=RealPlayer
+Platform=MacOSX
+
+[MPlayer 0.9*]
+Parent=Media Players
+Browser=MPlayer
+Version=0.9
+MajorVer=0
+MinorVer=9
+
+[MPlayer 1.*]
+Parent=Media Players
+Browser=MPlayer
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[MPlayer HEAD CVS]
+Parent=Media Players
+Browser=MPlayer
+
+[RealPlayer*]
+Parent=Media Players
+Browser=RealPlayer
+
+[RMA/*]
+Parent=Media Players
+Browser=RMA
+
+[VLC media player*]
+Parent=Media Players
+Browser=VLC
+
+[vobsub]
+Parent=Media Players
+Browser=vobsub
+isBanned=true
+
+[WinampMPEG/*]
+Parent=Media Players
+Browser=WinAmp
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nintendo
+
+[Nintendo Wii]
+Parent=DefaultProperties
+Browser=
+isMobileDevice=true
+
+[Opera/* (Nintendo DSi; Opera/*; *; *)]
+Parent=Nintendo Wii
+Browser=DSi
+
+[Opera/* (Nintendo Wii; U; *)]
+Parent=Nintendo Wii
+Browser=Wii
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows Media Player
+
+[Windows Media Player]
+Parent=DefaultProperties
+Browser=Windows Media Player
+Cookies=true
+
+[NSPlayer/10.*]
+Parent=Windows Media Player
+Version=10.0
+MajorVer=10
+MinorVer=0
+
+[NSPlayer/11.*]
+Parent=Windows Media Player
+Browser=Windows Media Player
+Version=11.0
+MajorVer=11
+MinorVer=0
+
+[NSPlayer/4.*]
+Parent=Windows Media Player
+Browser=Windows Media Player
+Version=4.0
+MajorVer=4
+MinorVer=0
+
+[NSPlayer/7.*]
+Parent=Windows Media Player
+Browser=Windows Media Player
+Version=7.0
+MajorVer=7
+MinorVer=0
+
+[NSPlayer/8.*]
+Parent=Windows Media Player
+Browser=Windows Media Player
+Version=8.0
+MajorVer=8
+MinorVer=0
+
+[NSPlayer/9.*]
+Parent=Windows Media Player
+Browser=Windows Media Player
+Version=9.0
+MajorVer=9
+MinorVer=0
+
+[Windows-Media-Player/10.*]
+Parent=Windows Media Player
+Browser=Windows-Media-Player
+Version=10.0
+MajorVer=10
+MinorVer=0
+Win32=true
+
+[Windows-Media-Player/11.*]
+Parent=Windows Media Player
+Version=11.0
+MajorVer=11
+MinorVer=0
+Win32=true
+
+[Windows-Media-Player/7.*]
+Parent=Windows Media Player
+Browser=Windows Media Player
+Version=7.0
+MajorVer=7
+MinorVer=0
+Win32=true
+
+[Windows-Media-Player/8.*]
+Parent=Windows Media Player
+Browser=Windows Media Player
+Version=8.0
+MajorVer=8
+MinorVer=0
+Win32=true
+
+[Windows-Media-Player/9.*]
+Parent=Windows Media Player
+Version=9.0
+MajorVer=9
+MinorVer=0
+Win32=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Zune
+
+[Zune]
+Parent=DefaultProperties
+Browser=Zune
+Cookies=true
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Zune 2.0*)*]
+Parent=Zune
+Version=2.0
+MajorVer=2
+MinorVer=0
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Zune 2.5*)*]
+Parent=Zune
+Version=2.5
+MajorVer=2
+MinorVer=5
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Zune 3.0*)*]
+Parent=Zune
+Version=3.0
+MajorVer=3
+MinorVer=0
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.0
+
+[QuickTime 7.0]
+Parent=DefaultProperties
+Browser=QuickTime
+Version=7.0
+MajorVer=7
+Cookies=true
+
+[QuickTime (qtver=7.0*;cpu=PPC;os=Mac 10.*)]
+Parent=QuickTime 7.0
+Platform=MacOSX
+
+[QuickTime (qtver=7.0*;cpu=PPC;os=Mac 9.*)]
+Parent=QuickTime 7.0
+Platform=MacPPC
+
+[QuickTime (qtver=7.0*;os=Windows 95*)]
+Parent=QuickTime 7.0
+Platform=Win95
+Win32=true
+
+[QuickTime (qtver=7.0*;os=Windows 98*)]
+Parent=QuickTime 7.0
+Platform=Win98
+Win32=true
+
+[QuickTime (qtver=7.0*;os=Windows Me*)]
+Parent=QuickTime 7.0
+Platform=WinME
+Win32=true
+
+[QuickTime (qtver=7.0*;os=Windows NT 4.0*)]
+Parent=QuickTime 7.0
+Platform=WinNT
+Win32=true
+
+[QuickTime (qtver=7.0*;os=Windows NT 5.0*)]
+Parent=QuickTime 7.0
+Platform=Win2000
+Win32=true
+
+[QuickTime (qtver=7.0*;os=Windows NT 5.1*)]
+Parent=QuickTime 7.0
+Platform=WinXP
+Win32=true
+
+[QuickTime (qtver=7.0*;os=Windows NT 5.2*)]
+Parent=QuickTime 7.0
+Platform=Win2003
+Win32=true
+
+[QuickTime/7.0.* (qtver=7.0.*;*;os=Mac 10.*)*]
+Parent=QuickTime 7.0
+Platform=MacOSX
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.1
+
+[QuickTime 7.1]
+Parent=DefaultProperties
+Browser=QuickTime
+Version=7.1
+MajorVer=7
+MinorVer=1
+Cookies=true
+
+[QuickTime (qtver=7.1*;cpu=PPC;os=Mac 10.*)]
+Parent=QuickTime 7.1
+Platform=MacOSX
+
+[QuickTime (qtver=7.1*;cpu=PPC;os=Mac 9.*)]
+Parent=QuickTime 7.1
+Platform=MacPPC
+
+[QuickTime (qtver=7.1*;os=Windows 98*)]
+Parent=QuickTime 7.1
+Platform=Win98
+Win32=true
+
+[QuickTime (qtver=7.1*;os=Windows NT 4.0*)]
+Parent=QuickTime 7.1
+Platform=WinNT
+Win32=true
+
+[QuickTime (qtver=7.1*;os=Windows NT 5.0*)]
+Parent=QuickTime 7.1
+Platform=Win2000
+Win32=true
+
+[QuickTime (qtver=7.1*;os=Windows NT 5.1*)]
+Parent=QuickTime 7.1
+Platform=WinXP
+Win32=true
+
+[QuickTime (qtver=7.1*;os=Windows NT 5.2*)]
+Parent=QuickTime 7.1
+Platform=Win2003
+Win32=true
+
+[QuickTime/7.1.* (qtver=7.1.*;*;os=Mac 10.*)*]
+Parent=QuickTime 7.1
+Platform=MacOSX
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.2
+
+[QuickTime 7.2]
+Parent=DefaultProperties
+Browser=QuickTime
+Version=7.2
+MajorVer=7
+MinorVer=2
+Platform=MacOSX
+Cookies=true
+
+[QuickTime (qtver=7.2*;cpu=PPC;os=Mac 10.*)]
+Parent=QuickTime 7.2
+Platform=MacOSX
+
+[QuickTime (qtver=7.2*;cpu=PPC;os=Mac 9.*)]
+Parent=QuickTime 7.2
+Platform=MacPPC
+
+[QuickTime (qtver=7.2*;os=Windows 98*)]
+Parent=QuickTime 7.2
+Platform=Win98
+Win32=true
+
+[QuickTime (qtver=7.2*;os=Windows NT 4.0*)]
+Parent=QuickTime 7.2
+Platform=WinNT
+Win32=true
+
+[QuickTime (qtver=7.2*;os=Windows NT 5.0*)]
+Parent=QuickTime 7.2
+Platform=Win2000
+Win32=true
+
+[QuickTime (qtver=7.2*;os=Windows NT 5.1*)]
+Parent=QuickTime 7.2
+Platform=WinXP
+Win32=true
+
+[QuickTime (qtver=7.2*;os=Windows NT 5.2*)]
+Parent=QuickTime 7.2
+Platform=Win2003
+Win32=true
+
+[QuickTime/7.2.* (qtver=7.2.*;*;os=Mac 10.*)*]
+Parent=QuickTime 7.2
+Platform=MacOSX
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.3
+
+[QuickTime 7.3]
+Parent=DefaultProperties
+Browser=QuickTime
+Version=7.3
+MajorVer=7
+MinorVer=3
+Platform=MacOSX
+Cookies=true
+
+[QuickTime (qtver=7.3*;cpu=PPC;os=Mac 10.*)]
+Parent=QuickTime 7.3
+Platform=MacOSX
+
+[QuickTime (qtver=7.3*;cpu=PPC;os=Mac 9.*)]
+Parent=QuickTime 7.3
+Platform=MacPPC
+
+[QuickTime (qtver=7.3*;os=Windows 98*)]
+Parent=QuickTime 7.3
+Platform=Win98
+Win32=true
+
+[QuickTime (qtver=7.3*;os=Windows NT 4.0*)]
+Parent=QuickTime 7.3
+Platform=WinNT
+Win32=true
+
+[QuickTime (qtver=7.3*;os=Windows NT 5.0*)]
+Parent=QuickTime 7.3
+Platform=Win2000
+Win32=true
+
+[QuickTime (qtver=7.3*;os=Windows NT 5.1*)]
+Parent=QuickTime 7.3
+Platform=WinXP
+Win32=true
+
+[QuickTime (qtver=7.3*;os=Windows NT 5.2*)]
+Parent=QuickTime 7.3
+Platform=Win2003
+Win32=true
+
+[QuickTime/7.3.* (qtver=7.3.*;*;os=Mac 10.*)*]
+Parent=QuickTime 7.3
+Platform=MacOSX
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.4
+
+[QuickTime 7.4]
+Parent=DefaultProperties
+Browser=QuickTime
+Version=7.4
+MajorVer=7
+MinorVer=4
+Platform=MacOSX
+Cookies=true
+
+[QuickTime (qtver=7.4*;cpu=PPC;os=Mac 10.*)]
+Parent=QuickTime 7.4
+Platform=MacOSX
+
+[QuickTime (qtver=7.4*;cpu=PPC;os=Mac 9.*)]
+Parent=QuickTime 7.4
+Platform=MacPPC
+
+[QuickTime (qtver=7.4*;os=Windows 98*)]
+Parent=QuickTime 7.4
+Platform=Win98
+Win32=true
+
+[QuickTime (qtver=7.4*;os=Windows NT 4.0*)]
+Parent=QuickTime 7.4
+Platform=WinNT
+Win32=true
+
+[QuickTime (qtver=7.4*;os=Windows NT 5.0*)]
+Parent=QuickTime 7.4
+Platform=Win2000
+Win32=true
+
+[QuickTime (qtver=7.4*;os=Windows NT 5.1*)]
+Parent=QuickTime 7.4
+Platform=WinXP
+Win32=true
+
+[QuickTime (qtver=7.4*;os=Windows NT 5.2*)]
+Parent=QuickTime 7.4
+Platform=Win2003
+Win32=true
+
+[QuickTime/7.4.* (qtver=7.4.*;*;os=Mac 10.*)*]
+Parent=QuickTime 7.4
+Platform=MacOSX
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Android
+
+[Android]
+Parent=DefaultProperties
+Browser=Android
+Frames=true
+Tables=true
+Cookies=true
+JavaScript=true
+isMobileDevice=true
+
+[Mozilla/5.0 (Linux; U; Android *; *) AppleWebKit/* (KHTML, like Gecko) Safari/*]
+Parent=Android
+Browser=Android
+Platform=Linux
+isMobileDevice=true
+
+[Mozilla/5.0 (Linux; U; Android *; *) AppleWebKit/* (KHTML, like Gecko) Version/3.0.* Mobile Safari/*]
+Parent=Android
+Browser=Android
+Platform=Linux
+isMobileDevice=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BlackBerry
+
+[BlackBerry]
+Parent=DefaultProperties
+Browser=BlackBerry
+Frames=true
+Tables=true
+Cookies=true
+JavaScript=true
+isMobileDevice=true
+
+[*BlackBerry*]
+Parent=BlackBerry
+
+[*BlackBerrySimulator/*]
+Parent=BlackBerry
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Handspring Blazer
+
+[Blazer]
+Parent=DefaultProperties
+Browser=Handspring Blazer
+Platform=Palm
+Frames=true
+Tables=true
+Cookies=true
+isMobileDevice=true
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows 95; PalmSource; Blazer 3.0) 16;160x160]
+Parent=Blazer
+Version=3.0
+MajorVer=3
+MinorVer=0
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.0) 16;320x448]
+Parent=Blazer
+Version=4.0
+MajorVer=4
+MinorVer=0
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.1) 16;320x320]
+Parent=Blazer
+Version=4.1
+MajorVer=4
+MinorVer=1
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.2) 16;320x320]
+Parent=Blazer
+Version=4.2
+MajorVer=4
+MinorVer=2
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.4) 16;320x320]
+Parent=Blazer
+Version=4.4
+MajorVer=4
+MinorVer=4
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/*; Blazer/4.5) 16;320x320]
+Parent=Blazer
+Version=4.5
+MajorVer=4
+MinorVer=5
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DoCoMo
+
+[DoCoMo]
+Parent=DefaultProperties
+Browser=DoCoMo
+Frames=true
+Tables=true
+Cookies=true
+JavaScript=true
+isMobileDevice=true
+
+[DoCoMo/1.0*]
+Parent=DoCoMo
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=WAP
+
+[DoCoMo/2.0*]
+Parent=DoCoMo
+Version=2.0
+MajorVer=2
+MinorVer=0
+Platform=WAP
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile
+
+[IEMobile]
+Parent=DefaultProperties
+Browser=IEMobile
+Platform=WinCE
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+VBScript=true
+JavaScript=true
+ActiveXControls=true
+isMobileDevice=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.*)*]
+Parent=IEMobile
+Version=6.0
+MajorVer=6
+MinorVer=0
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.*)*]
+Parent=IEMobile
+Version=7.0
+MajorVer=7
+MinorVer=0
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iPhone
+
+[iPhone]
+Parent=DefaultProperties
+Browser=iPhone
+Platform=iPhone OSX
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+isMobileDevice=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/4.0 (iPhone; *)]
+Parent=iPhone
+
+[Mozilla/4.0 (iPhone; U; CPU like Mac OS X; *)]
+Parent=iPhone
+
+[Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
+Parent=iPhone
+Browser=iPhone Simulator
+Version=3.1
+MajorVer=3
+MinorVer=1
+
+[Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 2_0_1 like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
+Parent=iPhone
+Browser=iPhone Simulator
+Version=3.1
+MajorVer=3
+MinorVer=1
+
+[Mozilla/5.0 (iPhone Simulator; U; CPU iPhone OS 2_1 like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
+Parent=iPhone
+Browser=iPhone Simulator
+Version=3.1
+MajorVer=3
+MinorVer=1
+
+[Mozilla/5.0 (iPhone)]
+Parent=iPhone
+
+[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)]
+Parent=iPhone
+Version=3.1
+MajorVer=3
+MinorVer=1
+
+[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
+Parent=iPhone
+Version=3.1
+MajorVer=3
+MinorVer=1
+
+[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_0* like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.1* Mobile/* Safari/*]
+Parent=iPhone
+Version=3.1
+MajorVer=3
+MinorVer=1
+
+[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_0_2 like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko)]
+Parent=iPhone
+
+[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_1 like Mac OS X; *)*]
+Parent=iPhone
+
+[Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_2_1 like Mac OS X; *)]
+Parent=iPhone
+
+[Mozilla/5.0 (iPhone; U; CPU like Mac OS X; *) AppleWebKit/* (KHTML, like Gecko) Version/3.0 Mobile/* Safari/*]
+Parent=iPhone
+Version=3.0
+MajorVer=3
+MinorVer=0
+
+[Mozilla/5.0 (iPod; U; *Mac OS X; *) AppleWebKit/* (*) Version/* Mobile/*]
+Parent=iPhone
+Browser=iTouch
+
+[Mozilla/5.0 (iPod; U; CPU iPhone OS 2_2* like Mac OS X; *)*]
+Parent=iPhone
+Browser=iTouch
+Version=2.2
+MajorVer=2
+MinorVer=2
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; KDDI
+
+[KDDI]
+Parent=DefaultProperties
+Browser=KDDI
+Frames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+VBScript=true
+JavaScript=true
+ActiveXControls=true
+isMobileDevice=true
+CssVersion=1
+supportsCSS=true
+
+[KDDI-* UP.Browser/* (GUI) MMP/*]
+Parent=KDDI
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Miscellaneous Mobile
+
+[Miscellaneous Mobile]
+Parent=DefaultProperties
+Browser=
+IFrames=true
+Tables=true
+Cookies=true
+JavaScript=true
+isMobileDevice=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (X11; *; CentOS; *) AppleWebKit/* (KHTML, like Gecko) Bolt/0.* Version/3.0 Safari/*]
+Parent=Miscellaneous Mobile
+Browser=Bolt
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Motorola Internet Browser
+
+[Motorola Internet Browser]
+Parent=DefaultProperties
+Browser=Motorola Internet Browser
+Frames=true
+Tables=true
+Cookies=true
+isMobileDevice=true
+
+[MOT-*/*]
+Parent=Motorola Internet Browser
+
+[MOT-1*/* UP.Browser/*]
+Parent=Motorola Internet Browser
+
+[MOT-8700_/* UP.Browser/*]
+Parent=Motorola Internet Browser
+
+[MOT-A-0A/* UP.Browser/*]
+Parent=Motorola Internet Browser
+
+[MOT-A-2B/* UP.Browser/*]
+Parent=Motorola Internet Browser
+
+[MOT-A-88/* UP.Browser/*]
+Parent=Motorola Internet Browser
+
+[MOT-C???/* MIB/*]
+Parent=Motorola Internet Browser
+
+[MOT-GATW_/* UP.Browser/*]
+Parent=Motorola Internet Browser
+
+[MOT-L6/* MIB/*]
+Parent=Motorola Internet Browser
+
+[MOT-L7/* MIB/*]
+Parent=Motorola Internet Browser
+
+[MOT-M*/* UP.Browser/*]
+Parent=Motorola Internet Browser
+
+[MOT-MP*/* Mozilla/* (compatible; MSIE *; Windows CE; *)]
+Parent=Motorola Internet Browser
+Win32=true
+
+[MOT-MP*/* Mozilla/4.0 (compatible; MSIE *; Windows CE; *)]
+Parent=Motorola Internet Browser
+Win32=true
+
+[MOT-SAP4_/* UP.Browser/*]
+Parent=Motorola Internet Browser
+
+[MOT-T*/*]
+Parent=Motorola Internet Browser
+
+[MOT-T7*/* MIB/*]
+Parent=Motorola Internet Browser
+
+[MOT-T721*]
+Parent=Motorola Internet Browser
+
+[MOT-TA02/* MIB/*]
+Parent=Motorola Internet Browser
+
+[MOT-V*/*]
+Parent=Motorola Internet Browser
+
+[MOT-V*/* MIB/*]
+Parent=Motorola Internet Browser
+
+[MOT-V*/* UP.Browser/*]
+Parent=Motorola Internet Browser
+
+[MOT-V3/* MIB/*]
+Parent=Motorola Internet Browser
+
+[MOT-V4*/* MIB/*]
+Parent=Motorola Internet Browser
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN Mobile Proxy
+
+[MSN Mobile Proxy]
+Parent=DefaultProperties
+Browser=MSN Mobile Proxy
+Win32=true
+Frames=true
+Tables=true
+Cookies=true
+JavaScript=true
+ActiveXControls=true
+isMobileDevice=true
+
+[Mozilla/* (compatible; MSIE *; Windows*; MSN Mobile Proxy)]
+Parent=MSN Mobile Proxy
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NetFront
+
+[NetFront]
+Parent=DefaultProperties
+Browser=NetFront
+Frames=true
+Tables=true
+Cookies=true
+JavaScript=true
+isMobileDevice=true
+
+[*NetFront/*]
+Parent=NetFront
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia
+
+[Nokia]
+Parent=DefaultProperties
+Browser=Nokia
+Tables=true
+Cookies=true
+isMobileDevice=true
+
+[*Nokia*/*]
+Parent=Nokia
+
+[Mozilla/* (SymbianOS/*; ?; *) AppleWebKit/* (KHTML, like Gecko) Safari/*]
+Parent=Nokia
+Platform=SymbianOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Openwave Mobile Browser
+
+[Openwave Mobile Browser]
+Parent=DefaultProperties
+Browser=Openwave Mobile Browser
+Alpha=true
+Win32=true
+Win64=true
+Frames=true
+Tables=true
+Cookies=true
+isMobileDevice=true
+
+[*UP.Browser/*]
+Parent=Openwave Mobile Browser
+
+[*UP.Link/*]
+Parent=Openwave Mobile Browser
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mini
+
+[Opera Mini]
+Parent=DefaultProperties
+Browser=Opera Mini
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaScript=true
+isMobileDevice=true
+
+[Opera/* (J2ME/MIDP; Opera Mini/1.0*)*]
+Parent=Opera Mini
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Opera/* (J2ME/MIDP; Opera Mini/1.1*)*]
+Parent=Opera Mini
+Version=1.1
+MajorVer=1
+MinorVer=1
+
+[Opera/* (J2ME/MIDP; Opera Mini/1.2*)*]
+Parent=Opera Mini
+Version=1.2
+MajorVer=1
+MinorVer=2
+
+[Opera/* (J2ME/MIDP; Opera Mini/2.0*)*]
+Parent=Opera Mini
+Version=2.0
+MajorVer=2
+MinorVer=0
+
+[Opera/* (J2ME/MIDP; Opera Mini/3.0*)*]
+Parent=Opera Mini
+Version=3.0
+MajorVer=3
+MinorVer=0
+
+[Opera/* (J2ME/MIDP; Opera Mini/3.1*)*]
+Parent=Opera Mini
+Version=3.1
+MajorVer=3
+MinorVer=1
+
+[Opera/* (J2ME/MIDP; Opera Mini/4.0*)*]
+Parent=Opera Mini
+Version=4.0
+MajorVer=4
+MinorVer=0
+
+[Opera/* (J2ME/MIDP; Opera Mini/4.1*)*]
+Parent=Opera Mini
+Version=4.1
+MajorVer=4
+MinorVer=1
+
+[Opera/* (J2ME/MIDP; Opera Mini/4.2*)*]
+Parent=Opera Mini
+Version=4.2
+MajorVer=4
+MinorVer=2
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile
+
+[Opera Mobile]
+Parent=DefaultProperties
+Browser=Opera Mobi
+Frames=true
+Tables=true
+Cookies=true
+isMobileDevice=true
+
+[Opera/9.5 (Microsoft Windows; PPC; *Opera Mobile/*)]
+Parent=Opera Mobile
+Version=9.5
+MajorVer=9
+MinorVer=5
+
+[Opera/9.5 (Microsoft Windows; PPC; Opera Mobi/*)]
+Parent=Opera Mobile
+Version=9.5
+MajorVer=9
+MinorVer=5
+
+[Opera/9.51 Beta (Microsoft Windows; PPC; Opera Mobi/*)*]
+Parent=Opera Mobile
+Version=9.51
+MajorVer=9
+MinorVer=51
+Beta=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Playstation
+
+[Playstation]
+Parent=DefaultProperties
+Browser=Playstation
+Platform=WAP
+Frames=true
+Tables=true
+Cookies=true
+isMobileDevice=true
+
+[Mozilla/* (PLAYSTATION *; *)]
+Parent=Playstation
+Browser=PlayStation 3
+Frames=false
+
+[Mozilla/* (PSP (PlayStation Portable); *)]
+Parent=Playstation
+
+[Sony PS2 (Linux)]
+Parent=Playstation
+Browser=Sony PS2
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Pocket PC
+
+[Pocket PC]
+Parent=DefaultProperties
+Browser=Pocket PC
+Platform=WinCE
+Win32=true
+Frames=true
+Tables=true
+Cookies=true
+JavaScript=true
+ActiveXControls=true
+isMobileDevice=true
+CssVersion=1
+supportsCSS=true
+
+[*(compatible; MSIE *.*; Windows CE; PPC; *)]
+Parent=Pocket PC
+
+[HTC-*/* Mozilla/* (compatible; MSIE *.*; Windows CE*)*]
+Parent=Pocket PC
+Win32=true
+
+[Mozilla/* (compatible; MSPIE *.*; *Windows CE*)*]
+Parent=Pocket PC
+Win32=true
+
+[T-Mobile* Mozilla/* (compatible; MSIE *.*; Windows CE; *)]
+Parent=Pocket PC
+
+[Vodafone* Mozilla/* (compatible; MSIE *.*; Windows CE; *)*]
+Parent=Pocket PC
+
+[Windows CE (Pocket PC) - Version *.*]
+Parent=Pocket PC
+Win32=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SEMC Browser
+
+[SEMC Browser]
+Parent=DefaultProperties
+Browser=SEMC Browser
+Platform=JAVA
+Tables=true
+isMobileDevice=true
+CssVersion=1
+supportsCSS=true
+
+[*SEMC-Browser/*]
+Parent=SEMC Browser
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SonyEricsson
+
+[SonyEricsson]
+Parent=DefaultProperties
+Browser=SonyEricsson
+Frames=true
+Tables=true
+Cookies=true
+JavaScript=true
+isMobileDevice=true
+CssVersion=1
+supportsCSS=true
+
+[*Ericsson*]
+Parent=SonyEricsson
+
+[*SonyEricsson*]
+Parent=SonyEricsson
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netbox
+
+[Netbox]
+Parent=DefaultProperties
+Browser=Netbox
+Frames=true
+Tables=true
+Cookies=true
+JavaScript=true
+CssVersion=1
+supportsCSS=true
+
+[Mozilla/3.01 (compatible; Netbox/*; Linux*)]
+Parent=Netbox
+Browser=Netbox
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PowerTV
+
+[PowerTV]
+Parent=DefaultProperties
+Browser=PowerTV
+Platform=PowerTV
+Frames=true
+Tables=true
+Cookies=true
+JavaScript=true
+
+[Mozilla/4.0 PowerTV/1.5 (Compatible; Spyglass DM 3.2.1, EXPLORER)]
+Parent=PowerTV
+Version=1.5
+MajorVer=1
+MinorVer=5
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WebTV/MSNTV
+
+[WebTV]
+Parent=DefaultProperties
+Browser=WebTV/MSNTV
+Platform=WebTV
+Frames=true
+Tables=true
+Cookies=true
+JavaScript=true
+
+[Mozilla/3.0 WebTV/1.*(compatible; MSIE 2.0)]
+Parent=WebTV
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Mozilla/4.0 WebTV/2.0*(compatible; MSIE 3.0)]
+Parent=WebTV
+Version=2.0
+MajorVer=2
+MinorVer=0
+
+[Mozilla/4.0 WebTV/2.1*(compatible; MSIE 3.0)]
+Parent=WebTV
+Version=2.1
+MajorVer=2
+MinorVer=1
+
+[Mozilla/4.0 WebTV/2.2*(compatible; MSIE 3.0)]
+Parent=WebTV
+Version=2.2
+MajorVer=2
+MinorVer=2
+
+[Mozilla/4.0 WebTV/2.3*(compatible; MSIE 3.0)]
+Parent=WebTV
+Version=2.3
+MajorVer=2
+MinorVer=3
+
+[Mozilla/4.0 WebTV/2.4*(compatible; MSIE 3.0)]
+Parent=WebTV
+Version=2.4
+MajorVer=2
+MinorVer=4
+
+[Mozilla/4.0 WebTV/2.5*(compatible; MSIE 4.0)]
+Parent=WebTV
+Version=2.5
+MajorVer=2
+MinorVer=5
+CssVersion=1
+supportsCSS=true
+
+[Mozilla/4.0 WebTV/2.6*(compatible; MSIE 4.0)]
+Parent=WebTV
+Version=2.6
+MajorVer=2
+MinorVer=6
+CssVersion=1
+supportsCSS=true
+
+[Mozilla/4.0 WebTV/2.7*(compatible; MSIE 4.0)]
+Parent=WebTV
+Version=2.7
+MajorVer=2
+MinorVer=7
+CssVersion=1
+supportsCSS=true
+
+[Mozilla/4.0 WebTV/2.8*(compatible; MSIE 4.0)]
+Parent=WebTV
+Version=2.8
+MajorVer=2
+MinorVer=8
+JavaApplets=true
+CssVersion=1
+supportsCSS=true
+
+[Mozilla/4.0 WebTV/2.9*(compatible; MSIE 4.0)]
+Parent=WebTV
+Version=2.9
+MajorVer=2
+MinorVer=9
+JavaApplets=true
+CssVersion=1
+supportsCSS=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Amaya
+
+[Amaya]
+Parent=DefaultProperties
+Browser=Amaya
+Tables=true
+Cookies=true
+
+[amaya/7.*]
+Parent=Amaya
+Version=7.0
+MajorVer=7
+MinorVer=0
+
+[amaya/8.0*]
+Parent=Amaya
+Version=8.0
+MajorVer=8
+MinorVer=0
+CssVersion=2
+supportsCSS=true
+
+[amaya/8.1*]
+Parent=Amaya
+Version=8.1
+MajorVer=8
+MinorVer=1
+CssVersion=2
+supportsCSS=true
+
+[amaya/8.2*]
+Parent=Amaya
+Version=8.2
+MajorVer=8
+MinorVer=2
+CssVersion=2
+supportsCSS=true
+
+[amaya/8.3*]
+Parent=Amaya
+Version=8.3
+MajorVer=8
+MinorVer=3
+CssVersion=2
+supportsCSS=true
+
+[amaya/8.4*]
+Parent=Amaya
+Version=8.4
+MajorVer=8
+MinorVer=4
+CssVersion=2
+supportsCSS=true
+
+[amaya/8.5*]
+Parent=Amaya
+Version=8.5
+MajorVer=8
+MinorVer=5
+CssVersion=2
+supportsCSS=true
+
+[amaya/8.6*]
+Parent=Amaya
+Version=8.6
+MajorVer=8
+MinorVer=6
+CssVersion=2
+supportsCSS=true
+
+[amaya/8.7*]
+Parent=Amaya
+Version=8.7
+MajorVer=8
+MinorVer=7
+CssVersion=2
+supportsCSS=true
+
+[amaya/8.8*]
+Parent=Amaya
+Version=8.8
+MajorVer=8
+MinorVer=8
+CssVersion=2
+supportsCSS=true
+
+[amaya/8.9*]
+Parent=Amaya
+Version=8.9
+MajorVer=8
+MinorVer=9
+CssVersion=2
+supportsCSS=true
+
+[amaya/9.0*]
+Parent=Amaya
+Version=9.0
+MajorVer=8
+MinorVer=0
+CssVersion=2
+supportsCSS=true
+
+[amaya/9.1*]
+Parent=Amaya
+Version=9.1
+MajorVer=9
+MinorVer=1
+CssVersion=2
+supportsCSS=true
+
+[amaya/9.2*]
+Parent=Amaya
+Version=9.2
+MajorVer=9
+MinorVer=2
+CssVersion=2
+supportsCSS=true
+
+[amaya/9.3*]
+Parent=Amaya
+Version=9.3
+MajorVer=9
+MinorVer=3
+
+[amaya/9.4*]
+Parent=Amaya
+Version=9.4
+MajorVer=9
+MinorVer=4
+
+[amaya/9.5*]
+Parent=Amaya
+Version=9.5
+MajorVer=9
+MinorVer=5
+
+[Emacs-w3m/*]
+Parent=Emacs/W3
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Links
+
+[Links]
+Parent=DefaultProperties
+Browser=Links
+Frames=true
+Tables=true
+
+[Links (0.9*; CYGWIN_NT-5.1*)]
+Parent=Links
+Browser=Links
+Version=0.9
+MajorVer=0
+MinorVer=9
+Platform=WinXP
+
+[Links (0.9*; Darwin*)]
+Parent=Links
+Version=0.9
+MajorVer=0
+MinorVer=9
+Platform=MacPPC
+
+[Links (0.9*; FreeBSD*)]
+Parent=Links
+Browser=Links
+Version=0.9
+MajorVer=0
+MinorVer=9
+Platform=FreeBSD
+
+[Links (0.9*; Linux*)]
+Parent=Links
+Browser=Links
+Version=0.9
+MajorVer=0
+MinorVer=9
+Platform=Linux
+
+[Links (0.9*; OS/2*)]
+Parent=Links
+Browser=Links
+Version=0.9
+MajorVer=0
+MinorVer=9
+Platform=OS/2
+
+[Links (0.9*; Unix*)]
+Parent=Links
+Browser=Links
+Version=0.9
+MajorVer=0
+MinorVer=9
+Platform=Unix
+
+[Links (0.9*; Win32*)]
+Parent=Links
+Browser=Links
+Version=0.9
+MajorVer=0
+MinorVer=9
+Platform=Win32
+Win32=true
+
+[Links (1.0*; CYGWIN_NT-5.1*)]
+Parent=Links
+Browser=Links
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=WinXP
+
+[Links (1.0*; FreeBSD*)]
+Parent=Links
+Browser=Links
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=FreeBSD
+
+[Links (1.0*; Linux*)]
+Parent=Links
+Browser=Links
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Linux
+
+[Links (1.0*; OS/2*)]
+Parent=Links
+Browser=Links
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=OS/2
+
+[Links (1.0*; Unix*)]
+Parent=Links
+Browser=Links
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Unix
+
+[Links (1.0*; Win32*)]
+Parent=Links
+Browser=Links
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Win32
+Win32=true
+
+[Links (2.0*; Linux*)]
+Parent=Links
+Browser=Links
+Version=2.0
+MajorVer=2
+MinorVer=0
+Platform=Linux
+
+[Links (2.1*; FreeBSD*)]
+Parent=Links
+Browser=Links
+Version=2.1
+MajorVer=2
+MinorVer=1
+Platform=FreeBSD
+
+[Links (2.1*; Linux *)]
+Parent=Links
+Browser=Links
+Version=2.1
+MajorVer=2
+MinorVer=1
+Platform=Linux
+
+[Links (2.1*; OpenBSD*)]
+Parent=Links
+Browser=Links
+Version=2.1
+MajorVer=2
+MinorVer=1
+Platform=OpenBSD
+
+[Links (2.2*; FreeBSD*)]
+Parent=Links
+Version=2.2
+MajorVer=2
+MinorVer=2
+Platform=FreeBSD
+
+[Links (2.2*; Linux *)]
+Parent=Links
+Version=2.2
+MajorVer=2
+MinorVer=2
+Platform=Linux
+
+[Links (2.2*; OpenBSD*)]
+Parent=Links
+Version=2.2
+MajorVer=2
+MinorVer=2
+Platform=OpenBSD
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lynx
+
+[Lynx]
+Parent=DefaultProperties
+Browser=Lynx
+Frames=true
+Tables=true
+
+[Lynx *]
+Parent=Lynx
+Browser=Lynx
+
+[Lynx/2.3*]
+Parent=Lynx
+Browser=Lynx
+Version=2.3
+MajorVer=2
+MinorVer=3
+
+[Lynx/2.4*]
+Parent=Lynx
+Browser=Lynx
+Version=2.4
+MajorVer=2
+MinorVer=4
+
+[Lynx/2.5*]
+Parent=Lynx
+Browser=Lynx
+Version=2.5
+MajorVer=2
+MinorVer=5
+
+[Lynx/2.6*]
+Parent=Lynx
+Browser=Lynx
+Version=2.6
+MajorVer=2
+MinorVer=6
+
+[Lynx/2.7*]
+Parent=Lynx
+Browser=Lynx
+Version=2.7
+MajorVer=2
+MinorVer=7
+
+[Lynx/2.8*]
+Parent=Lynx
+Browser=Lynx
+Version=2.8
+MajorVer=2
+MinorVer=8
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NCSA Mosaic
+
+[Mosaic]
+Parent=DefaultProperties
+Browser=Mosaic
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; w3m
+
+[w3m]
+Parent=DefaultProperties
+Browser=w3m
+Frames=true
+Tables=true
+
+[w3m/0.1*]
+Parent=w3m
+Browser=w3m
+Version=0.1
+MajorVer=0
+MinorVer=1
+
+[w3m/0.2*]
+Parent=w3m
+Browser=w3m
+Version=0.2
+MajorVer=0
+MinorVer=2
+
+[w3m/0.3*]
+Parent=w3m
+Browser=w3m
+Version=0.3
+MajorVer=0
+MinorVer=3
+
+[w3m/0.4*]
+Parent=w3m
+Browser=w3m
+Version=0.4
+MajorVer=0
+MinorVer=4
+Cookies=true
+
+[w3m/0.5*]
+Parent=w3m
+Browser=w3m
+Version=0.5
+MajorVer=0
+MinorVer=5
+Cookies=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.10
+
+[ELinks 0.10]
+Parent=DefaultProperties
+Browser=ELinks
+Version=0.10
+MinorVer=10
+Frames=true
+Tables=true
+
+[ELinks (0.10*; *AIX*)]
+Parent=ELinks 0.10
+Platform=AIX
+
+[ELinks (0.10*; *BeOS*)]
+Parent=ELinks 0.10
+Platform=BeOS
+
+[ELinks (0.10*; *CygWin*)]
+Parent=ELinks 0.10
+Platform=CygWin
+
+[ELinks (0.10*; *Darwin*)]
+Parent=ELinks 0.10
+Platform=Darwin
+
+[ELinks (0.10*; *Digital Unix*)]
+Parent=ELinks 0.10
+Platform=Digital Unix
+
+[ELinks (0.10*; *FreeBSD*)]
+Parent=ELinks 0.10
+Platform=FreeBSD
+
+[ELinks (0.10*; *HPUX*)]
+Parent=ELinks 0.10
+Platform=HP-UX
+
+[ELinks (0.10*; *IRIX*)]
+Parent=ELinks 0.10
+Platform=IRIX
+
+[ELinks (0.10*; *Linux*)]
+Parent=ELinks 0.10
+Platform=Linux
+
+[ELinks (0.10*; *NetBSD*)]
+Parent=ELinks 0.10
+Platform=NetBSD
+
+[ELinks (0.10*; *OpenBSD*)]
+Parent=ELinks 0.10
+Platform=OpenBSD
+
+[ELinks (0.10*; *OS/2*)]
+Parent=ELinks 0.10
+Platform=OS/2
+
+[ELinks (0.10*; *RISC*)]
+Parent=ELinks 0.10
+Platform=RISC OS
+
+[ELinks (0.10*; *Solaris*)]
+Parent=ELinks 0.10
+Platform=Solaris
+
+[ELinks (0.10*; *Unix*)]
+Parent=ELinks 0.10
+Platform=Unix
+
+[ELinks/0.10* (*AIX*)]
+Parent=ELinks 0.10
+Platform=AIX
+
+[ELinks/0.10* (*BeOS*)]
+Parent=ELinks 0.10
+Platform=BeOS
+
+[ELinks/0.10* (*CygWin*)]
+Parent=ELinks 0.10
+Platform=CygWin
+
+[ELinks/0.10* (*Darwin*)]
+Parent=ELinks 0.10
+Platform=Darwin
+
+[ELinks/0.10* (*Digital Unix*)]
+Parent=ELinks 0.10
+Platform=Digital Unix
+
+[ELinks/0.10* (*FreeBSD*)]
+Parent=ELinks 0.10
+Platform=FreeBSD
+
+[ELinks/0.10* (*HPUX*)]
+Parent=ELinks 0.10
+Platform=HP-UX
+
+[ELinks/0.10* (*IRIX*)]
+Parent=ELinks 0.10
+Platform=IRIX
+
+[ELinks/0.10* (*Linux*)]
+Parent=ELinks 0.10
+Platform=Linux
+
+[ELinks/0.10* (*NetBSD*)]
+Parent=ELinks 0.10
+Platform=NetBSD
+
+[ELinks/0.10* (*OpenBSD*)]
+Parent=ELinks 0.10
+Platform=OpenBSD
+
+[ELinks/0.10* (*OS/2*)]
+Parent=ELinks 0.10
+Platform=OS/2
+
+[ELinks/0.10* (*RISC*)]
+Parent=ELinks 0.10
+Platform=RISC OS
+
+[ELinks/0.10* (*Solaris*)]
+Parent=ELinks 0.10
+Platform=Solaris
+
+[ELinks/0.10* (*Unix*)]
+Parent=ELinks 0.10
+Platform=Unix
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.11
+
+[ELinks 0.11]
+Parent=DefaultProperties
+Browser=ELinks
+Version=0.11
+MinorVer=11
+Frames=true
+Tables=true
+
+[ELinks (0.11*; *AIX*)]
+Parent=ELinks 0.11
+Platform=AIX
+
+[ELinks (0.11*; *BeOS*)]
+Parent=ELinks 0.11
+Platform=BeOS
+
+[ELinks (0.11*; *CygWin*)]
+Parent=ELinks 0.11
+Platform=CygWin
+
+[ELinks (0.11*; *Darwin*)]
+Parent=ELinks 0.11
+Platform=Darwin
+
+[ELinks (0.11*; *Digital Unix*)]
+Parent=ELinks 0.11
+Platform=Digital Unix
+
+[ELinks (0.11*; *FreeBSD*)]
+Parent=ELinks 0.11
+Platform=FreeBSD
+
+[ELinks (0.11*; *HPUX*)]
+Parent=ELinks 0.11
+Platform=HP-UX
+
+[ELinks (0.11*; *IRIX*)]
+Parent=ELinks 0.11
+Platform=IRIX
+
+[ELinks (0.11*; *Linux*)]
+Parent=ELinks 0.11
+Platform=Linux
+
+[ELinks (0.11*; *NetBSD*)]
+Parent=ELinks 0.11
+Platform=NetBSD
+
+[ELinks (0.11*; *OpenBSD*)]
+Parent=ELinks 0.11
+Platform=OpenBSD
+
+[ELinks (0.11*; *OS/2*)]
+Parent=ELinks 0.11
+Platform=OS/2
+
+[ELinks (0.11*; *RISC*)]
+Parent=ELinks 0.11
+Platform=RISC OS
+
+[ELinks (0.11*; *Solaris*)]
+Parent=ELinks 0.11
+Platform=Solaris
+
+[ELinks (0.11*; *Unix*)]
+Parent=ELinks 0.11
+Platform=Unix
+
+[ELinks/0.11* (*AIX*)]
+Parent=ELinks 0.11
+Platform=AIX
+
+[ELinks/0.11* (*BeOS*)]
+Parent=ELinks 0.11
+Platform=BeOS
+
+[ELinks/0.11* (*CygWin*)]
+Parent=ELinks 0.11
+Platform=CygWin
+
+[ELinks/0.11* (*Darwin*)]
+Parent=ELinks 0.11
+Platform=Darwin
+
+[ELinks/0.11* (*Digital Unix*)]
+Parent=ELinks 0.11
+Platform=Digital Unix
+
+[ELinks/0.11* (*FreeBSD*)]
+Parent=ELinks 0.11
+Platform=FreeBSD
+
+[ELinks/0.11* (*HPUX*)]
+Parent=ELinks 0.11
+Platform=HP-UX
+
+[ELinks/0.11* (*IRIX*)]
+Parent=ELinks 0.11
+Platform=IRIX
+
+[ELinks/0.11* (*Linux*)]
+Parent=ELinks 0.11
+Platform=Linux
+
+[ELinks/0.11* (*NetBSD*)]
+Parent=ELinks 0.11
+Platform=NetBSD
+
+[ELinks/0.11* (*OpenBSD*)]
+Parent=ELinks 0.11
+Platform=OpenBSD
+
+[ELinks/0.11* (*OS/2*)]
+Parent=ELinks 0.11
+Platform=OS/2
+
+[ELinks/0.11* (*RISC*)]
+Parent=ELinks 0.11
+Platform=RISC OS
+
+[ELinks/0.11* (*Solaris*)]
+Parent=ELinks 0.11
+Platform=Solaris
+
+[ELinks/0.11* (*Unix*)]
+Parent=ELinks 0.11
+Platform=Unix
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.12
+
+[ELinks 0.12]
+Parent=DefaultProperties
+Browser=ELinks
+Version=0.12
+MinorVer=12
+Frames=true
+Tables=true
+
+[ELinks (0.12*; *AIX*)]
+Parent=ELinks 0.12
+Platform=AIX
+
+[ELinks (0.12*; *BeOS*)]
+Parent=ELinks 0.12
+Platform=BeOS
+
+[ELinks (0.12*; *CygWin*)]
+Parent=ELinks 0.12
+Platform=CygWin
+
+[ELinks (0.12*; *Darwin*)]
+Parent=ELinks 0.12
+Platform=Darwin
+
+[ELinks (0.12*; *Digital Unix*)]
+Parent=ELinks 0.12
+Platform=Digital Unix
+
+[ELinks (0.12*; *FreeBSD*)]
+Parent=ELinks 0.12
+Platform=FreeBSD
+
+[ELinks (0.12*; *HPUX*)]
+Parent=ELinks 0.12
+Platform=HP-UX
+
+[ELinks (0.12*; *IRIX*)]
+Parent=ELinks 0.12
+Platform=IRIX
+
+[ELinks (0.12*; *Linux*)]
+Parent=ELinks 0.12
+Platform=Linux
+
+[ELinks (0.12*; *NetBSD*)]
+Parent=ELinks 0.12
+Platform=NetBSD
+
+[ELinks (0.12*; *OpenBSD*)]
+Parent=ELinks 0.12
+Platform=OpenBSD
+
+[ELinks (0.12*; *OS/2*)]
+Parent=ELinks 0.12
+Platform=OS/2
+
+[ELinks (0.12*; *RISC*)]
+Parent=ELinks 0.12
+Platform=RISC OS
+
+[ELinks (0.12*; *Solaris*)]
+Parent=ELinks 0.12
+Platform=Solaris
+
+[ELinks (0.12*; *Unix*)]
+Parent=ELinks 0.12
+Platform=Unix
+
+[ELinks/0.12* (*AIX*)]
+Parent=ELinks 0.12
+Platform=AIX
+
+[ELinks/0.12* (*BeOS*)]
+Parent=ELinks 0.12
+Platform=BeOS
+
+[ELinks/0.12* (*CygWin*)]
+Parent=ELinks 0.12
+Platform=CygWin
+
+[ELinks/0.12* (*Darwin*)]
+Parent=ELinks 0.12
+Platform=Darwin
+
+[ELinks/0.12* (*Digital Unix*)]
+Parent=ELinks 0.12
+Platform=Digital Unix
+
+[ELinks/0.12* (*FreeBSD*)]
+Parent=ELinks 0.12
+Platform=FreeBSD
+
+[ELinks/0.12* (*HPUX*)]
+Parent=ELinks 0.12
+Platform=HP-UX
+
+[ELinks/0.12* (*IRIX*)]
+Parent=ELinks 0.12
+Platform=IRIX
+
+[ELinks/0.12* (*Linux*)]
+Parent=ELinks 0.12
+Platform=Linux
+
+[ELinks/0.12* (*NetBSD*)]
+Parent=ELinks 0.12
+Platform=NetBSD
+
+[ELinks/0.12* (*OpenBSD*)]
+Parent=ELinks 0.12
+Platform=OpenBSD
+
+[ELinks/0.12* (*OS/2*)]
+Parent=ELinks 0.12
+Platform=OS/2
+
+[ELinks/0.12* (*RISC*)]
+Parent=ELinks 0.12
+Platform=RISC OS
+
+[ELinks/0.12* (*Solaris*)]
+Parent=ELinks 0.12
+Platform=Solaris
+
+[ELinks/0.12* (*Unix*)]
+Parent=ELinks 0.12
+Platform=Unix
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ELinks 0.9
+
+[ELinks 0.9]
+Parent=DefaultProperties
+Browser=ELinks
+Version=0.9
+MinorVer=9
+Frames=true
+Tables=true
+
+[ELinks (0.9*; *AIX*)]
+Parent=ELinks 0.9
+Platform=AIX
+
+[ELinks (0.9*; *BeOS*)]
+Parent=ELinks 0.9
+Platform=BeOS
+
+[ELinks (0.9*; *CygWin*)]
+Parent=ELinks 0.9
+Platform=CygWin
+
+[ELinks (0.9*; *Darwin*)]
+Parent=ELinks 0.9
+Platform=Darwin
+
+[ELinks (0.9*; *Digital Unix*)]
+Parent=ELinks 0.9
+Platform=Digital Unix
+
+[ELinks (0.9*; *FreeBSD*)]
+Parent=ELinks 0.9
+Platform=FreeBSD
+
+[ELinks (0.9*; *HPUX*)]
+Parent=ELinks 0.9
+Platform=HP-UX
+
+[ELinks (0.9*; *IRIX*)]
+Parent=ELinks 0.9
+Platform=IRIX
+
+[ELinks (0.9*; *Linux*)]
+Parent=ELinks 0.9
+Platform=Linux
+
+[ELinks (0.9*; *NetBSD*)]
+Parent=ELinks 0.9
+Platform=NetBSD
+
+[ELinks (0.9*; *OpenBSD*)]
+Parent=ELinks 0.9
+Platform=OpenBSD
+
+[ELinks (0.9*; *OS/2*)]
+Parent=ELinks 0.9
+Platform=OS/2
+
+[ELinks (0.9*; *RISC*)]
+Parent=ELinks 0.9
+Platform=RISC OS
+
+[ELinks (0.9*; *Solaris*)]
+Parent=ELinks 0.9
+Platform=Solaris
+
+[ELinks (0.9*; *Unix*)]
+Parent=ELinks 0.9
+Platform=Unix
+
+[ELinks/0.9* (*AIX*)]
+Parent=ELinks 0.9
+Platform=AIX
+
+[ELinks/0.9* (*BeOS*)]
+Parent=ELinks 0.9
+Platform=BeOS
+
+[ELinks/0.9* (*CygWin*)]
+Parent=ELinks 0.9
+Platform=CygWin
+
+[ELinks/0.9* (*Darwin*)]
+Parent=ELinks 0.9
+Platform=Darwin
+
+[ELinks/0.9* (*Digital Unix*)]
+Parent=ELinks 0.9
+Platform=Digital Unix
+
+[ELinks/0.9* (*FreeBSD*)]
+Parent=ELinks 0.9
+Platform=FreeBSD
+
+[ELinks/0.9* (*HPUX*)]
+Parent=ELinks 0.9
+Platform=HP-UX
+
+[ELinks/0.9* (*IRIX*)]
+Parent=ELinks 0.9
+Platform=IRIX
+
+[ELinks/0.9* (*Linux*)]
+Parent=ELinks 0.9
+Platform=Linux
+
+[ELinks/0.9* (*NetBSD*)]
+Parent=ELinks 0.9
+Platform=NetBSD
+
+[ELinks/0.9* (*OpenBSD*)]
+Parent=ELinks 0.9
+Platform=OpenBSD
+
+[ELinks/0.9* (*OS/2*)]
+Parent=ELinks 0.9
+Platform=OS/2
+
+[ELinks/0.9* (*RISC*)]
+Parent=ELinks 0.9
+Platform=RISC OS
+
+[ELinks/0.9* (*Solaris*)]
+Parent=ELinks 0.9
+Platform=Solaris
+
+[ELinks/0.9* (*Unix*)]
+Parent=ELinks 0.9
+Platform=Unix
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AppleWebKit
+
+[AppleWebKit]
+Parent=DefaultProperties
+Browser=AppleWebKit
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (KHTML, like Gecko)]
+Parent=AppleWebKit
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Camino
+
+[Camino]
+Parent=DefaultProperties
+Browser=Camino
+Platform=MacOSX
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.7*]
+Parent=Camino
+Version=0.7
+MajorVer=0
+MinorVer=7
+Beta=true
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.8*]
+Parent=Camino
+Version=0.8
+MajorVer=0
+MinorVer=8
+Beta=true
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/0.9*]
+Parent=Camino
+Version=0.9
+MajorVer=0
+MinorVer=9
+Beta=true
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.0*]
+Parent=Camino
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.2*]
+Parent=Camino
+Version=1.2
+MajorVer=1
+MinorVer=2
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.3*]
+Parent=Camino
+Version=1.3
+MajorVer=1
+MinorVer=3
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.4*]
+Parent=Camino
+Version=1.4
+MajorVer=1
+MinorVer=4
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.5*]
+Parent=Camino
+Version=1.5
+MajorVer=1
+MinorVer=5
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) Gecko/* Camino/1.6*]
+Parent=Camino
+Version=1.6
+MajorVer=1
+MinorVer=6
+Platform=MacOSX
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chimera
+
+[Chimera]
+Parent=DefaultProperties
+Browser=Chimera
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+
+[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Chimera/*]
+Parent=Chimera
+Platform=MacOSX
+
+[Mozilla/5.0 Gecko/* Chimera/*]
+Parent=Chimera
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dillo
+
+[Dillo]
+Parent=DefaultProperties
+Browser=Dillo
+Platform=Linux
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+CssVersion=2
+supportsCSS=true
+
+[Dillo/0.6*]
+Parent=Dillo
+Version=0.6
+MajorVer=0
+MinorVer=6
+
+[Dillo/0.7*]
+Parent=Dillo
+Version=0.7
+MajorVer=0
+MinorVer=7
+
+[Dillo/0.8*]
+Parent=Dillo
+Version=0.8
+MajorVer=0
+MinorVer=8
+
+[Dillo/2.0]
+Parent=Dillo
+Version=2.0
+MajorVer=2
+MinorVer=0
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Emacs/W3
+
+[Emacs/W3]
+Parent=DefaultProperties
+Browser=Emacs/W3
+Frames=true
+Tables=true
+Cookies=true
+
+[Emacs/W3/2.* (Unix*]
+Parent=Emacs/W3
+Version=2.0
+MajorVer=2
+MinorVer=0
+Platform=Unix
+
+[Emacs/W3/2.* (X11*]
+Parent=Emacs/W3
+Version=2.0
+MajorVer=2
+MinorVer=0
+Platform=Linux
+
+[Emacs/W3/3.* (Unix*]
+Parent=Emacs/W3
+Version=3.0
+MajorVer=3
+MinorVer=0
+Platform=Unix
+
+[Emacs/W3/3.* (X11*]
+Parent=Emacs/W3
+Version=3.0
+MajorVer=3
+MinorVer=0
+Platform=Linux
+
+[Emacs/W3/4.* (Unix*]
+Parent=Emacs/W3
+Version=4.0
+MajorVer=4
+MinorVer=0
+Platform=Unix
+
+[Emacs/W3/4.* (X11*]
+Parent=Emacs/W3
+Version=4.0
+MajorVer=4
+MinorVer=0
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; fantomas
+
+[fantomas]
+Parent=DefaultProperties
+Browser=fantomas
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaScript=true
+
+[Mozilla/4.0 (cloakBrowser)]
+Parent=fantomas
+Browser=fantomas cloakBrowser
+
+[Mozilla/4.0 (fantomas shadowMaker Browser)]
+Parent=fantomas
+Browser=fantomas shadowMaker Browser
+
+[Mozilla/4.0 (fantomBrowser)]
+Parent=fantomas
+Browser=fantomas fantomBrowser
+
+[Mozilla/4.0 (fantomCrew Browser)]
+Parent=fantomas
+Browser=fantomas fantomCrew Browser
+
+[Mozilla/4.0 (stealthBrowser)]
+Parent=fantomas
+Browser=fantomas stealthBrowser
+
+[multiBlocker browser*]
+Parent=fantomas
+Browser=fantomas multiBlocker browser
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FrontPage
+
+[FrontPage]
+Parent=DefaultProperties
+Browser=FrontPage
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaScript=true
+
+[Mozilla/?* (compatible; MS FrontPage*)]
+Parent=FrontPage
+
+[MSFrontPage/*]
+Parent=FrontPage
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Galeon
+
+[Galeon]
+Parent=DefaultProperties
+Browser=Galeon
+Platform=Linux
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/1.*]
+Parent=Galeon
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Mozilla/5.0 (X11; U; Linux*) Gecko/* Galeon/2.*]
+Parent=Galeon
+Version=2.0
+MajorVer=2
+MinorVer=0
+
+[Mozilla/5.0 Galeon/1.* (X11; Linux*)*]
+Parent=Galeon
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Mozilla/5.0 Galeon/2.* (X11; Linux*)*]
+Parent=Galeon
+Version=2.0
+MajorVer=2
+MinorVer=0
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; HP Secure Web Browser
+
+[HP Secure Web Browser]
+Parent=DefaultProperties
+Browser=HP Secure Web Browser
+Platform=OpenVMS
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.0*) Gecko/*]
+Parent=HP Secure Web Browser
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.1*) Gecko/*]
+Parent=HP Secure Web Browser
+Version=1.1
+MajorVer=1
+MinorVer=1
+
+[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.2*) Gecko/*]
+Parent=HP Secure Web Browser
+Version=1.2
+MajorVer=1
+MinorVer=2
+
+[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.3*) Gecko/*]
+Parent=HP Secure Web Browser
+Version=1.3
+MajorVer=1
+MinorVer=3
+
+[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.4*) Gecko/*]
+Parent=HP Secure Web Browser
+Version=1.4
+MajorVer=1
+MinorVer=4
+
+[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.5*) Gecko/*]
+Parent=HP Secure Web Browser
+Version=1.5
+MajorVer=1
+MinorVer=5
+
+[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.6*) Gecko/*]
+Parent=HP Secure Web Browser
+Version=1.6
+MajorVer=1
+MinorVer=6
+
+[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.7*) Gecko/*]
+Parent=HP Secure Web Browser
+Version=1.7
+MajorVer=1
+MinorVer=7
+
+[Mozilla/5.0 (X11; U; OpenVMS*; *; rv:1.8*) Gecko/*]
+Parent=HP Secure Web Browser
+Version=1.8
+MajorVer=1
+MinorVer=8
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IBrowse
+
+[IBrowse]
+Parent=DefaultProperties
+Browser=IBrowse
+Platform=Amiga
+Frames=true
+Tables=true
+Cookies=true
+JavaScript=true
+
+[Arexx (compatible; MSIE 6.0; AmigaOS5.0) IBrowse 4.0]
+Parent=IBrowse
+Version=4.0
+MajorVer=4
+MinorVer=0
+
+[IBrowse/1.22 (AmigaOS *)]
+Parent=IBrowse
+Version=1.22
+MajorVer=1
+MinorVer=22
+
+[IBrowse/2.1 (AmigaOS *)]
+Parent=IBrowse
+Version=2.1
+MajorVer=2
+MinorVer=1
+
+[IBrowse/2.2 (AmigaOS *)]
+Parent=IBrowse
+Version=2.2
+MajorVer=2
+MinorVer=2
+
+[IBrowse/2.3 (AmigaOS *)]
+Parent=IBrowse
+Version=2.2
+MajorVer=2
+MinorVer=3
+
+[Mozilla/* (Win98; I) IBrowse/2.1 (AmigaOS 3.1)]
+Parent=IBrowse
+Version=2.1
+MajorVer=2
+MinorVer=1
+
+[Mozilla/* (Win98; I) IBrowse/2.2 (AmigaOS 3.1)]
+Parent=IBrowse
+Version=2.2
+MajorVer=2
+MinorVer=2
+
+[Mozilla/* (Win98; I) IBrowse/2.3 (AmigaOS 3.1)]
+Parent=IBrowse
+Version=2.3
+MajorVer=2
+MinorVer=3
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iCab
+
+[iCab]
+Parent=DefaultProperties
+Browser=iCab
+Frames=true
+Tables=true
+Cookies=true
+JavaScript=true
+CssVersion=1
+supportsCSS=true
+
+[iCab/2.7* (Macintosh; ?; 68K*)]
+Parent=iCab
+Version=2.7
+MajorVer=2
+MinorVer=7
+Platform=Mac68K
+
+[iCab/2.7* (Macintosh; ?; PPC*)]
+Parent=iCab
+Version=2.7
+MajorVer=2
+MinorVer=7
+Platform=MacPPC
+
+[iCab/2.8* (Macintosh; ?; *Mac OS X*)]
+Parent=iCab
+Version=2.8
+MajorVer=2
+MinorVer=8
+Platform=MacOSX
+
+[iCab/2.8* (Macintosh; ?; 68K*)]
+Parent=iCab
+Version=2.8
+MajorVer=2
+MinorVer=8
+Platform=Mac68K
+
+[iCab/2.8* (Macintosh; ?; PPC)]
+Parent=iCab
+Version=2.8
+MajorVer=2
+MinorVer=8
+Platform=MacPPC
+
+[iCab/2.9* (Macintosh; ?; *Mac OS X*)]
+Parent=iCab
+Version=2.9
+MajorVer=2
+MinorVer=9
+Platform=MacOSX
+
+[iCab/2.9* (Macintosh; ?; 68K*)]
+Parent=iCab
+Version=2.9
+MajorVer=2
+MinorVer=9
+Platform=Mac68K
+
+[iCab/2.9* (Macintosh; ?; PPC*)]
+Parent=iCab
+Version=2.9
+MajorVer=2
+MinorVer=9
+Platform=MacPPC
+
+[iCab/3.0* (Macintosh; ?; *Mac OS X*)]
+Parent=iCab
+Version=3.0
+MajorVer=3
+MinorVer=0
+Platform=MacOSX
+CssVersion=2
+supportsCSS=true
+
+[iCab/3.0* (Macintosh; ?; PPC*)]
+Parent=iCab
+Version=3.0
+MajorVer=3
+MinorVer=0
+Platform=MacPPC
+CssVersion=2
+supportsCSS=true
+
+[iCab/4.0 (Macintosh; U; *Mac OS X)]
+Parent=iCab
+Version=4.0
+MajorVer=4
+MinorVer=0
+Platform=MacOSX
+
+[Mozilla/* (compatible; iCab 3.0*; Macintosh; *Mac OS X*)]
+Parent=iCab
+Version=3.0
+MajorVer=3
+MinorVer=0
+Platform=MacOSX
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/* (compatible; iCab 3.0*; Macintosh; ?; PPC*)]
+Parent=iCab
+Version=3.0
+MajorVer=3
+MinorVer=0
+Platform=MacPPC
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/4.5 (compatible; iCab 2.7*; Macintosh; ?; 68K*)]
+Parent=iCab
+Version=2.7
+MajorVer=2
+MinorVer=7
+Platform=Mac68K
+
+[Mozilla/4.5 (compatible; iCab 2.7*; Macintosh; ?; PPC*)]
+Parent=iCab
+Version=2.7
+MajorVer=2
+MinorVer=7
+Platform=MacPPC
+
+[Mozilla/4.5 (compatible; iCab 2.8*; Macintosh; ?; *Mac OS X*)]
+Parent=iCab
+Version=2.8
+MajorVer=2
+MinorVer=8
+Platform=MacOSX
+
+[Mozilla/4.5 (compatible; iCab 2.8*; Macintosh; ?; PPC*)]
+Parent=iCab
+Version=2.8
+MajorVer=2
+MinorVer=8
+Platform=MacPPC
+
+[Mozilla/4.5 (compatible; iCab 2.9*; Macintosh; *Mac OS X*)]
+Parent=iCab
+Version=2.9
+MajorVer=2
+MinorVer=9
+Platform=MacOSX
+
+[Mozilla/4.5 (compatible; iCab 2.9*; Macintosh; ?; PPC*)]
+Parent=iCab
+Version=2.9
+MajorVer=2
+MinorVer=9
+Platform=MacPPC
+
+[Mozilla/4.5 (compatible; iCab 4.2*; Macintosh; *Mac OS X*)]
+Parent=iCab
+Version=4.2
+MajorVer=4
+MinorVer=2
+Platform=MacOSX
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iSiloX
+
+[iSiloX]
+Parent=DefaultProperties
+Browser=iSiloX
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaScript=true
+Crawler=true
+CssVersion=2
+supportsCSS=true
+
+[iSiloX/4.0* MacOS]
+Parent=iSiloX
+Version=4.0
+MajorVer=4
+MinorVer=0
+Platform=MacPPC
+
+[iSiloX/4.0* Windows/32]
+Parent=iSiloX
+Version=4.0
+MajorVer=4
+MinorVer=0
+Platform=Win32
+Win32=true
+
+[iSiloX/4.1* MacOS]
+Parent=iSiloX
+Version=4.1
+MajorVer=4
+MinorVer=1
+Platform=MacPPC
+
+[iSiloX/4.1* Windows/32]
+Parent=iSiloX
+Version=4.1
+MajorVer=4
+MinorVer=1
+Platform=Win32
+Win32=true
+
+[iSiloX/4.2* MacOS]
+Parent=iSiloX
+Version=4.2
+MajorVer=4
+MinorVer=2
+Platform=MacPPC
+
+[iSiloX/4.2* Windows/32]
+Parent=iSiloX
+Version=4.2
+MajorVer=4
+MinorVer=2
+Platform=Win32
+Win32=true
+
+[iSiloX/4.3* MacOS]
+Parent=iSiloX
+Version=4.3
+MajorVer=4
+MinorVer=4
+Platform=MacOSX
+
+[iSiloX/4.3* Windows/32]
+Parent=iSiloX
+Version=4.3
+MajorVer=4
+MinorVer=3
+Platform=Win32
+Win32=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycoris Desktop/LX
+
+[Lycoris Desktop/LX]
+Parent=DefaultProperties
+Browser=Lycoris Desktop/LX
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+Crawler=true
+
+[Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.*: Desktop/LX Amethyst) Gecko/*]
+Parent=Lycoris Desktop/LX
+Version=1.1
+MajorVer=1
+MinorVer=1
+Platform=Linux
+
+[Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.*; Desktop/LX Amethyst) Gecko/*]
+Parent=Lycoris Desktop/LX
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mosaic
+
+[Mosaic]
+Parent=DefaultProperties
+Browser=Mosaic
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+
+[Mozilla/4.0 (VMS_Mosaic)]
+Parent=Mosaic
+Platform=OpenVMS
+
+[VMS_Mosaic/3.7*]
+Parent=Mosaic
+Version=3.7
+MajorVer=3
+MinorVer=7
+Platform=OpenVMS
+
+[VMS_Mosaic/3.8*]
+Parent=Mosaic
+Version=3.8
+MajorVer=3
+MinorVer=8
+Platform=OpenVMS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NetPositive
+
+[NetPositive]
+Parent=DefaultProperties
+Browser=NetPositive
+Platform=BeOS
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+
+[*NetPositive/2.2*]
+Parent=NetPositive
+Version=2.2
+MajorVer=2
+MinorVer=2
+
+[*NetPositive/2.2*BeOS*]
+Parent=NetPositive
+Version=2.2
+MajorVer=2
+MinorVer=2
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OmniWeb
+
+[OmniWeb]
+Parent=DefaultProperties
+Browser=OmniWeb
+Platform=MacOSX
+Frames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+isMobileDevice=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v4*]
+Parent=OmniWeb
+Version=4.5
+MajorVer=4
+MinorVer=5
+Platform=MacOSX
+
+[Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v5*]
+Parent=OmniWeb
+Version=5.
+MajorVer=5
+MinorVer=0
+Platform=MacOSX
+
+[Mozilla/* (Macintosh; ?; *Mac OS X; *) AppleWebKit/* (*) OmniWeb/v6*]
+Parent=OmniWeb
+Version=6.0
+MajorVer=6
+MinorVer=0
+Platform=MacOSX
+
+[Mozilla/* (Macintosh; ?; PPC) OmniWeb/4*]
+Parent=OmniWeb
+Version=4.0
+MajorVer=4
+MinorVer=0
+Platform=MacPPC
+
+[Mozilla/* (Macintosh; ?; PPC) OmniWeb/5*]
+Parent=OmniWeb
+Version=5.0
+MajorVer=5
+MinorVer=0
+Platform=MacOSX
+
+[Mozilla/* (Macintosh; ?; PPC) OmniWeb/6*]
+Parent=OmniWeb
+Version=6.0
+MajorVer=6
+MinorVer=0
+Platform=MacPPC
+
+[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.34]
+Parent=OmniWeb
+Version=5.1
+MajorVer=5
+MinorVer=1
+
+[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/125.4 (KHTML, like Gecko, Safari) OmniWeb/v563.34]
+Parent=OmniWeb
+Version=5.1
+MajorVer=5
+MinorVer=1
+
+[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/420+ (KHTML, like Gecko, Safari/420) OmniWeb/v607]
+Parent=OmniWeb
+Version=5.5
+MajorVer=5
+MinorVer=5
+
+[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/420+ (KHTML, like Gecko, Safari/420) OmniWeb/v607]
+Parent=OmniWeb
+Version=5.5
+MajorVer=5
+MinorVer=5
+
+[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/522+ (KHTML, like Gecko, Safari/522) OmniWeb/v613]
+Parent=OmniWeb
+Version=5.6
+MajorVer=5
+MinorVer=6
+
+[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/522+ (KHTML, like Gecko, Safari/522) OmniWeb/v613]
+Parent=OmniWeb
+Version=5.6
+MajorVer=5
+MinorVer=6
+
+[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/85 (KHTML, like Gecko) OmniWeb/v496]
+Parent=OmniWeb
+Version=4.5
+MajorVer=4
+MinorVer=5
+
+[Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US) AppleWebKit/85 (KHTML, like Gecko) OmniWeb/v558.36 ]
+Parent=OmniWeb
+Version=5.0
+MajorVer=5
+MinorVer=0
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Shiira
+
+[Shiira]
+Parent=DefaultProperties
+Browser=Shiira
+Platform=MacOSX
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/0.9*]
+Parent=Shiira
+Version=0.9
+MajorVer=0
+MinorVer=9
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.0*]
+Parent=Shiira
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.1*]
+Parent=Shiira
+Version=1.1
+MajorVer=1
+MinorVer=1
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/1.2*]
+Parent=Shiira
+Version=1.2
+MajorVer=1
+MinorVer=2
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/2.1*]
+Parent=Shiira
+Version=2.1
+MajorVer=2
+MinorVer=1
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Shiira/2.2*]
+Parent=Shiira
+Version=2.2
+MajorVer=2
+MinorVer=2
+
+[Windows Maker]
+Parent=DefaultProperties
+Browser=WMaker
+Platform=Linux
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[WMaker*]
+Parent=Windows Maker
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.0
+
+[K-Meleon 1.0]
+Parent=DefaultProperties
+Browser=K-Meleon
+Version=1.0
+MajorVer=1
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.0*]
+Parent=K-Meleon 1.0
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.0*]
+Parent=K-Meleon 1.0
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.0*]
+Parent=K-Meleon 1.0
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.0*]
+Parent=K-Meleon 1.0
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.0*]
+Parent=K-Meleon 1.0
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.0*]
+Parent=K-Meleon 1.0
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=WinNT
+Win32=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.1
+
+[K-Meleon 1.1]
+Parent=DefaultProperties
+Browser=K-Meleon
+Version=1.1
+MajorVer=1
+MinorVer=1
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.1*]
+Parent=K-Meleon 1.1
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.1*]
+Parent=K-Meleon 1.1
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.1*]
+Parent=K-Meleon 1.1
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.1*]
+Parent=K-Meleon 1.1
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.1*]
+Parent=K-Meleon 1.1
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.1*]
+Parent=K-Meleon 1.1
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=WinNT
+Win32=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; K-Meleon 1.5
+
+[K-Meleon 1.5]
+Parent=DefaultProperties
+Browser=K-Meleon
+Version=1.5
+MajorVer=1
+MinorVer=5
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* K-Meleon/1.5*]
+Parent=K-Meleon 1.5
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* K-Meleon/1.5*]
+Parent=K-Meleon 1.5
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* K-Meleon?1.5*]
+Parent=K-Meleon 1.5
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* K-Meleon/1.5*]
+Parent=K-Meleon 1.5
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* K-Meleon/1.5*]
+Parent=K-Meleon 1.5
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* K-Meleon/1.5*]
+Parent=K-Meleon 1.5
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* K-Meleon/1.5*]
+Parent=K-Meleon 1.5
+Platform=Win7
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* K-Meleon/1.5*]
+Parent=K-Meleon 1.5
+Version=1.0
+MajorVer=1
+MinorVer=0
+Platform=WinNT
+Win32=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 3.0
+
+[Konqueror 3.0]
+Parent=DefaultProperties
+Browser=Konqueror
+Platform=Linux
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[*Konqueror/3.0*]
+Parent=Konqueror 3.0
+Version=3.0
+MajorVer=3
+MinorVer=0
+IFrames=false
+
+[*Konqueror/3.0*FreeBSD*]
+Parent=Konqueror 3.0
+Version=3.0
+MajorVer=3
+MinorVer=0
+Platform=FreeBSD
+IFrames=false
+
+[*Konqueror/3.0*Linux*]
+Parent=Konqueror 3.0
+Version=3.0
+MajorVer=3
+MinorVer=0
+Platform=Linux
+IFrames=false
+
+[*Konqueror/3.1*]
+Parent=Konqueror 3.0
+Version=3.1
+MajorVer=3
+MinorVer=1
+
+[*Konqueror/3.1*FreeBSD*]
+Parent=Konqueror 3.0
+Version=3.1
+MajorVer=3
+MinorVer=1
+Platform=FreeBSD
+
+[*Konqueror/3.1*Linux*]
+Parent=Konqueror 3.0
+Version=3.1
+MajorVer=3
+MinorVer=1
+
+[*Konqueror/3.2*]
+Parent=Konqueror 3.0
+Version=3.2
+MajorVer=3
+MinorVer=2
+
+[*Konqueror/3.2*FreeBSD*]
+Parent=Konqueror 3.0
+Version=3.2
+MajorVer=3
+MinorVer=2
+Platform=FreeBSD
+
+[*Konqueror/3.2*Linux*]
+Parent=Konqueror 3.0
+Version=3.2
+MajorVer=3
+MinorVer=2
+Platform=Linux
+
+[*Konqueror/3.3*]
+Parent=Konqueror 3.0
+Version=3.3
+MajorVer=3
+MinorVer=3
+
+[*Konqueror/3.3*FreeBSD*]
+Parent=Konqueror 3.0
+Version=3.3
+MajorVer=3
+MinorVer=3
+Platform=FreeBSD
+
+[*Konqueror/3.3*Linux*]
+Parent=Konqueror 3.0
+Version=3.3
+MajorVer=3
+MinorVer=3
+Platform=Linux
+
+[*Konqueror/3.3*OpenBSD*]
+Parent=Konqueror 3.0
+Version=3.3
+MajorVer=3
+MinorVer=3
+Platform=OpenBSD
+
+[*Konqueror/3.4*]
+Parent=Konqueror 3.0
+Version=3.4
+MajorVer=3
+MinorVer=4
+
+[*Konqueror/3.4*FreeBSD*]
+Parent=Konqueror 3.0
+Version=3.4
+MajorVer=3
+MinorVer=4
+Platform=FreeBSD
+
+[*Konqueror/3.4*Linux*]
+Parent=Konqueror 3.0
+Version=3.4
+MajorVer=3
+MinorVer=4
+Platform=Linux
+
+[*Konqueror/3.4*OpenBSD*]
+Parent=Konqueror 3.0
+Version=3.4
+MajorVer=3
+MinorVer=4
+Platform=OpenBSD
+
+[*Konqueror/3.5*]
+Parent=Konqueror 3.0
+Version=3.5
+MajorVer=3
+MinorVer=5
+
+[*Konqueror/3.5*FreeBSD*]
+Parent=Konqueror 3.0
+Version=3.5
+MajorVer=3
+MinorVer=5
+Platform=FreeBSD
+
+[*Konqueror/3.5*Linux*]
+Parent=Konqueror 3.0
+Version=3.5
+MajorVer=3
+MinorVer=5
+Platform=Linux
+
+[*Konqueror/3.5*OpenBSD*]
+Parent=Konqueror 3.0
+Version=3.5
+MajorVer=3
+MinorVer=5
+Platform=OpenBSD
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.0
+
+[Konqueror 4.0]
+Parent=DefaultProperties
+Browser=Konqueror
+Version=4.0
+MajorVer=4
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (compatible; Konqueror/4.0*; Debian) KHTML/4.* (like Gecko)]
+Parent=Konqueror 4.0
+Platform=Debian
+
+[Mozilla/5.0 (compatible; Konqueror/4.0.*; *Linux) KHTML/4.* (like Gecko)]
+Parent=Konqueror 4.0
+Platform=Linux
+
+[Mozilla/5.0 (compatible; Konqueror/4.0.*; FreeBSD) KHTML/4.* (like Gecko)]
+Parent=Konqueror 4.0
+Platform=FreeBSD
+
+[Mozilla/5.0 (compatible; Konqueror/4.0.*; NetBSD) KHTML/4.* (like Gecko)]
+Parent=Konqueror 4.0
+Platform=NetBSD
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.1
+
+[Konqueror 4.1]
+Parent=DefaultProperties
+Browser=Konqueror
+Version=4.1
+MajorVer=4
+MinorVer=1
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (compatible; Konqueror/4.1*; *Linux*) KHTML/4.* (like Gecko)*]
+Parent=Konqueror 4.1
+Platform=Linux
+
+[Mozilla/5.0 (compatible; Konqueror/4.1*; Debian) KHTML/4.* (like Gecko)*]
+Parent=Konqueror 4.1
+Platform=Debian
+
+[Mozilla/5.0 (compatible; Konqueror/4.1*; FreeBSD) KHTML/4.* (like Gecko)*]
+Parent=Konqueror 4.1
+Platform=FreeBSD
+
+[Mozilla/5.0 (compatible; Konqueror/4.1*; NetBSD) KHTML/4.* (like Gecko)*]
+Parent=Konqueror 4.1
+Platform=NetBSD
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Konqueror 4.2
+
+[Konqueror 4.2]
+Parent=DefaultProperties
+Browser=Konqueror
+Version=4.2
+MajorVer=4
+MinorVer=2
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (compatible; Konqueror/4.2*; *Linux*) KHTML/4.* (like Gecko)*]
+Parent=Konqueror 4.2
+Platform=Linux
+
+[Mozilla/5.0 (compatible; Konqueror/4.2*; Debian) KHTML/4.* (like Gecko)*]
+Parent=Konqueror 4.2
+Platform=Debian
+
+[Mozilla/5.0 (compatible; Konqueror/4.2*; FreeBSD) KHTML/4.* (like Gecko)*]
+Parent=Konqueror 4.2
+Platform=FreeBSD
+
+[Mozilla/5.0 (compatible; Konqueror/4.2*; NetBSD) KHTML/4.* (like Gecko)*]
+Parent=Konqueror 4.2
+Platform=NetBSD
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari
+
+[Safari]
+Parent=DefaultProperties
+Browser=Safari
+Platform=MacOSX
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+ecmascriptversion=1.3
+w3cdomversion=1.0
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/100*]
+Parent=Safari
+Version=1.1
+MajorVer=1
+MinorVer=1
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/125*]
+Parent=Safari
+Version=1.2
+MajorVer=1
+MinorVer=2
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/312*]
+Parent=Safari
+Version=1.3
+MajorVer=1
+MinorVer=3
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/412*]
+Parent=Safari
+Version=2.0
+MajorVer=2
+MinorVer=0
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/416*]
+Parent=Safari
+Version=2.0
+MajorVer=2
+MinorVer=0
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/417*]
+Parent=Safari
+Version=2.0
+MajorVer=2
+MinorVer=0
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/418*]
+Parent=Safari
+Version=2.0
+MajorVer=2
+MinorVer=0
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/419*]
+Parent=Safari
+Version=2.0
+MajorVer=2
+MinorVer=0
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/52*]
+Parent=Safari
+Beta=true
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*) AppleWebKit/* (*) Safari/85*]
+Parent=Safari
+Version=1.0
+MajorVer=1
+MinorVer=0
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.0
+
+[Safari 3.0]
+Parent=DefaultProperties
+Browser=Safari
+Version=3.0
+MajorVer=3
+Platform=MacOSX
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.0* Safari/*]
+Parent=Safari 3.0
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.0* Safari/*]
+Parent=Safari 3.0
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.0* Safari/*]
+Parent=Safari 3.0
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.0* Safari/*]
+Parent=Safari 3.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.0* Safari/*]
+Parent=Safari 3.0
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.1
+
+[Safari 3.1]
+Parent=DefaultProperties
+Browser=Safari
+Version=3.1
+MajorVer=3
+MinorVer=1
+Platform=MacOSX
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.1* Safari/*]
+Parent=Safari 3.1
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.1* Safari/*]
+Parent=Safari 3.1
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.1* Safari/*]
+Parent=Safari 3.1
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.1* Safari/*]
+Parent=Safari 3.1
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.1* Safari/*]
+Parent=Safari 3.1
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 3.2
+
+[Safari 3.2]
+Parent=DefaultProperties
+Browser=Safari
+Version=3.2
+MajorVer=3
+MinorVer=2
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) AppleWebKit/* (*) Version/3.2* Safari/*]
+Parent=Safari 3.2
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/3.2* Safari/*]
+Parent=Safari 3.2
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/3.2* Safari/*]
+Parent=Safari 3.2
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/3.2* Safari/*]
+Parent=Safari 3.2
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/3.2* Safari/*]
+Parent=Safari 3.2
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 4.0
+
+[Safari 4.0]
+Parent=DefaultProperties
+Browser=Safari
+Version=4.0
+MajorVer=4
+Beta=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Version/4.0* Safari/*]
+Parent=Safari 4.0
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *) AppleWebKit/* (KHTML, like Gecko) Version/4 Public Beta Safari/*]
+Parent=Safari 4.0
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
+Parent=Safari 4.0
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) AppleWebKit/* (*) Version/4.0* Safari/*]
+Parent=Safari 4.0
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
+Parent=Safari 4.0
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) AppleWebKit/* (*) Version/4.0* Safari/*]
+Parent=Safari 4.0
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
+Parent=Safari 4.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) AppleWebKit/* (*) Version/4.0* Safari/*]
+Parent=Safari 4.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
+Parent=Safari 4.0
+Platform=Win7
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) AppleWebKit/* (*) Version/4.0* Safari/*]
+Parent=Safari 4.0
+Platform=Win7
+
+[Mozilla/5.0 (Windows; ?; Windows NT 7.0; *) AppleWebKit/* (*) Version/4 Public Beta Safari/*]
+Parent=Safari 4.0
+Platform=Win7
+
+[Mozilla/5.0 (Windows; ?; Windows NT 7.0; *) AppleWebKit/* (*) Version/4.0* Safari/*]
+Parent=Safari 4.0
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.0
+
+[Opera 10.0]
+Parent=DefaultProperties
+Browser=Opera
+Version=10.0
+MajorVer=10
+Alpha=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/* (compatible; MSIE*; Linux*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=MacOSX
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 10.0*]
+Parent=Opera 10.0
+Platform=MacPPC
+
+[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Win95
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Win98
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=WinCE
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=WinME
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=WinVista
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Win7
+
+[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=FreeBSD
+
+[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=SunOS
+
+[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 10.0*]
+Parent=Opera 10.0
+Platform=MacOSX
+
+[Mozilla/* (Windows 2000;*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows 95;*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Win95
+Win32=true
+
+[Mozilla/* (Windows 98;*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Win98
+Win32=true
+
+[Mozilla/* (Windows ME;*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=WinME
+Win32=true
+
+[Mozilla/* (Windows NT 4.0;*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (Windows NT 5.0;*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows NT 5.1;*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (Windows NT 5.2;*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (Windows NT 6.0;*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=WinVista
+
+[Mozilla/* (Windows NT 6.1;*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Win7
+
+[Mozilla/* (X11; Linux*) Opera 10.0*]
+Parent=Opera 10.0
+Platform=Linux
+
+[Opera/10.0* (Linux*)*]
+Parent=Opera 10.0
+Platform=Linux
+
+[Opera/10.0* (Macintosh; *Mac OS X;*)*]
+Parent=Opera 10.0
+Platform=MacOSX
+
+[Opera/10.0* (Windows 95*)*]
+Parent=Opera 10.0
+Platform=Win95
+Win32=true
+
+[Opera/10.0* (Windows 98*)*]
+Parent=Opera 10.0
+Platform=Win98
+Win32=true
+
+[Opera/10.0* (Windows CE*)*]
+Parent=Opera 10.0
+Platform=WinCE
+Win32=true
+
+[Opera/10.0* (Windows ME*)*]
+Parent=Opera 10.0
+Platform=WinME
+Win32=true
+
+[Opera/10.0* (Windows NT 4.0*)*]
+Parent=Opera 10.0
+Platform=WinNT
+Win32=true
+
+[Opera/10.0* (Windows NT 5.0*)*]
+Parent=Opera 10.0
+Platform=Win2000
+Win32=true
+
+[Opera/10.0* (Windows NT 5.1*)*]
+Parent=Opera 10.0
+Platform=WinXP
+Win32=true
+
+[Opera/10.0* (Windows NT 5.2*)*]
+Parent=Opera 10.0
+Platform=Win2003
+Win32=true
+
+[Opera/10.0* (Windows NT 6.0*)*]
+Parent=Opera 10.0
+Platform=WinVista
+Win32=true
+
+[Opera/10.0* (Windows NT 6.1*)*]
+Parent=Opera 10.0
+Platform=Win7
+
+[Opera/10.0* (Windows XP*)*]
+Parent=Opera 10.0
+Platform=WinXP
+Win32=true
+
+[Opera/10.0* (X11; FreeBSD*)*]
+Parent=Opera 10.0
+Platform=FreeBSD
+
+[Opera/10.0* (X11; Linux*)*]
+Parent=Opera 10.0
+Platform=Linux
+
+[Opera/10.0* (X11; SunOS*)*]
+Parent=Opera 10.0
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.0
+
+[Opera 7.0]
+Parent=DefaultProperties
+Browser=Opera
+Version=7.0
+MajorVer=7
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/3.0 (Windows 2000; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/3.0 (Windows 95; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win95
+Win32=true
+
+[Mozilla/3.0 (Windows 98; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win98
+Win32=true
+
+[Mozilla/3.0 (Windows ME; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinME
+Win32=true
+
+[Mozilla/3.0 (Windows NT 4.0; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/3.0 (Windows XP; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 2000) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 95) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win95
+Win32=true
+
+[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows 98) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win98
+Win32=true
+
+[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows ME) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinME
+Win32=true
+
+[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 4.0) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.0) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.1) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows XP) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.78 (Windows 2000; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.78 (Windows 95; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win95
+Win32=true
+
+[Mozilla/4.78 (Windows 98; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win98
+Win32=true
+
+[Mozilla/4.78 (Windows ME; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinME
+Win32=true
+
+[Mozilla/4.78 (Windows NT 4.0; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/4.78 (Windows NT 5.1; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.78 (Windows Windows NT 5.0; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.78 (Windows XP; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows 2000; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows 95; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows 98; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows ME; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows NT 4.0; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows NT 5.1; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows XP; ?) Opera 7.0*]
+Parent=Opera 7.0
+Platform=WinXP
+Win32=true
+
+[Opera/7.0* (Windows 2000; ?)*]
+Parent=Opera 7.0
+Platform=Win2000
+Win32=true
+
+[Opera/7.0* (Windows 95; ?)*]
+Parent=Opera 7.0
+Platform=Win95
+Win32=true
+
+[Opera/7.0* (Windows 98; ?)*]
+Parent=Opera 7.0
+Platform=Win98
+Win32=true
+
+[Opera/7.0* (Windows ME; ?)*]
+Parent=Opera 7.0
+Platform=WinME
+Win32=true
+
+[Opera/7.0* (Windows NT 4.0; ?)*]
+Parent=Opera 7.0
+Platform=WinNT
+Win32=true
+
+[Opera/7.0* (Windows NT 5.0; ?)*]
+Parent=Opera 7.0
+Platform=Win2000
+Win32=true
+
+[Opera/7.0* (Windows NT 5.1; ?)*]
+Parent=Opera 7.0
+Platform=WinXP
+Win32=true
+
+[Opera/7.0* (Windows XP; ?)*]
+Parent=Opera 7.0
+Platform=WinXP
+Win32=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.1
+
+[Opera 7.1]
+Parent=DefaultProperties
+Browser=Opera
+Version=7.1
+MajorVer=7
+MinorVer=1
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.1*]
+Parent=Opera 7.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.1*]
+Parent=Opera 7.1
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.1*]
+Parent=Opera 7.1
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.1*]
+Parent=Opera 7.1
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.1*]
+Parent=Opera 7.1
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.1*]
+Parent=Opera 7.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.1*]
+Parent=Opera 7.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.1*]
+Parent=Opera 7.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (Windows 2000; ?) Opera 7.1*]
+Parent=Opera 7.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows 95; ?) Opera 7.1*]
+Parent=Opera 7.1
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (Windows 98; ?) Opera 7.1*]
+Parent=Opera 7.1
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (Windows ME; ?) Opera 7.1*]
+Parent=Opera 7.1
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (Windows NT 4.0; U) Opera 7.1*]
+Parent=Opera 7.1
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.0; U) Opera 7.1*]
+Parent=Opera 7.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.1; ?) Opera 7.1*]
+Parent=Opera 7.1
+Platform=WinXP
+Win32=true
+
+[Opera/7.1* (Linux*; ?)*]
+Parent=Opera 7.1
+Platform=Linux
+
+[Opera/7.1* (Windows 95; ?)*]
+Parent=Opera 7.1
+Platform=Win95
+Win32=true
+
+[Opera/7.1* (Windows 98; ?)*]
+Parent=Opera 7.1
+Platform=Win98
+Win32=true
+
+[Opera/7.1* (Windows ME; ?)*]
+Parent=Opera 7.1
+Platform=WinME
+Win32=true
+
+[Opera/7.1* (Windows NT 4.0; ?)*]
+Parent=Opera 7.1
+Platform=WinNT
+Win32=true
+
+[Opera/7.1* (Windows NT 5.0; ?)*]
+Parent=Opera 7.1
+Platform=Win2000
+Win32=true
+
+[Opera/7.1* (Windows NT 5.1; ?)*]
+Parent=Opera 7.1
+Platform=WinXP
+Win32=true
+
+[Opera/7.1* (Windows XP; ?)*]
+Parent=Opera 7.1
+Platform=WinXP
+Win32=true
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.2
+
+[Opera 7.2]
+Parent=DefaultProperties
+Browser=Opera
+Version=7.2
+MajorVer=7
+MinorVer=2
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.2*]
+Parent=Opera 7.2
+Platform=Linux
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.2*]
+Parent=Opera 7.2
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.2*]
+Parent=Opera 7.2
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.2*]
+Parent=Opera 7.2
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.2*]
+Parent=Opera 7.2
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.2*]
+Parent=Opera 7.2
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.2*]
+Parent=Opera 7.2
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.2*]
+Parent=Opera 7.2
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.2*]
+Parent=Opera 7.2
+Platform=Win2003
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.2*]
+Parent=Opera 7.2
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (Windows 2000; ?) Opera 7.2*]
+Parent=Opera 7.2
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows 95; ?) Opera 7.2*]
+Parent=Opera 7.2
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (Windows 98; ?) Opera 7.2*]
+Parent=Opera 7.2
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (Windows ME; ?) Opera 7.2*]
+Parent=Opera 7.2
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (Windows NT 4.0; U) Opera 7.2*]
+Parent=Opera 7.2
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.0; U) Opera 7.2*]
+Parent=Opera 7.2
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.1; ?) Opera 7.2*]
+Parent=Opera 7.2
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.2; ?) Opera 7.2*]
+Parent=Opera 7.2
+Platform=Win2003
+Win32=true
+
+[Opera/7.2* (Linux*; ?)*]
+Parent=Opera 7.2
+Platform=Linux
+
+[Opera/7.2* (Windows 95; ?)*]
+Parent=Opera 7.2
+Platform=Win95
+Win32=true
+
+[Opera/7.2* (Windows 98; ?)*]
+Parent=Opera 7.2
+Platform=Win98
+Win32=true
+
+[Opera/7.2* (Windows ME; ?)*]
+Parent=Opera 7.2
+Platform=WinME
+Win32=true
+
+[Opera/7.2* (Windows NT 4.0; ?)*]
+Parent=Opera 7.2
+Platform=WinNT
+Win32=true
+
+[Opera/7.2* (Windows NT 5.0; ?)*]
+Parent=Opera 7.2
+Platform=Win2000
+Win32=true
+
+[Opera/7.2* (Windows NT 5.1; ?)*]
+Parent=Opera 7.2
+Platform=WinXP
+Win32=true
+
+[Opera/7.2* (Windows NT 5.2; ?)*]
+Parent=Opera 7.2
+Platform=Win2003
+Win32=true
+
+[Opera/7.2* (Windows XP; ?)*]
+Parent=Opera 7.2
+Platform=WinXP
+Win32=true
+
+[Opera/7.2* (X11; FreeBSD*; ?)*]
+Parent=Opera 7.2
+Platform=FreeBSD
+
+[Opera/7.2* (X11; Linux*; ?)*]
+Parent=Opera 7.2
+Platform=Linux
+
+[Opera/7.2* (X11; SunOS*)*]
+Parent=Opera 7.2
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.5
+
+[Opera 7.5]
+Parent=DefaultProperties
+Browser=Opera
+Version=7.5
+MajorVer=7
+MinorVer=5
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.5*]
+Parent=Opera 7.5
+Platform=Linux
+
+[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 7.5*]
+Parent=Opera 7.5
+Platform=MacPPC
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.5*]
+Parent=Opera 7.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.5*]
+Parent=Opera 7.5
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.5*]
+Parent=Opera 7.5
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.5*]
+Parent=Opera 7.5
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.5*]
+Parent=Opera 7.5
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.5*]
+Parent=Opera 7.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.5*]
+Parent=Opera 7.5
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.5*]
+Parent=Opera 7.5
+Platform=Win2003
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.5*]
+Parent=Opera 7.5
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 7.5*]
+Parent=Opera 7.5
+Platform=Linux
+
+[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 7.5*]
+Parent=Opera 7.5
+Platform=MacOSX
+
+[Mozilla/?.* (Windows 2000; ?) Opera 7.5*]
+Parent=Opera 7.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows 95; ?) Opera 7.5*]
+Parent=Opera 7.5
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (Windows 98; ?) Opera 7.5*]
+Parent=Opera 7.5
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (Windows ME; ?) Opera 7.5*]
+Parent=Opera 7.5
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (Windows NT 4.0; U) Opera 7.5*]
+Parent=Opera 7.5
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.0; U) Opera 7.5*]
+Parent=Opera 7.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.1; ?) Opera 7.5*]
+Parent=Opera 7.5
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.2; ?) Opera 7.5*]
+Parent=Opera 7.5
+Platform=Win2003
+Win32=true
+
+[Mozilla/?.* (X11; Linux*; ?) Opera 7.5*]
+Parent=Opera 7.5
+Platform=Linux
+
+[Opera/7.5* (Linux*; ?)*]
+Parent=Opera 7.5
+Platform=Linux
+
+[Opera/7.5* (Macintosh; *Mac OS X; ?)*]
+Parent=Opera 7.5
+Platform=MacOSX
+
+[Opera/7.5* (Windows 95; ?)*]
+Parent=Opera 7.5
+Platform=Win95
+Win32=true
+
+[Opera/7.5* (Windows 98; ?)*]
+Parent=Opera 7.5
+Platform=Win98
+Win32=true
+
+[Opera/7.5* (Windows ME; ?)*]
+Parent=Opera 7.5
+Platform=WinME
+Win32=true
+
+[Opera/7.5* (Windows NT 4.0; ?)*]
+Parent=Opera 7.5
+Platform=WinNT
+Win32=true
+
+[Opera/7.5* (Windows NT 5.0; ?)*]
+Parent=Opera 7.5
+Platform=Win2000
+Win32=true
+
+[Opera/7.5* (Windows NT 5.1; ?)*]
+Parent=Opera 7.5
+Platform=WinXP
+Win32=true
+
+[Opera/7.5* (Windows NT 5.2; ?)*]
+Parent=Opera 7.5
+Platform=Win2003
+Win32=true
+
+[Opera/7.5* (Windows XP; ?)*]
+Parent=Opera 7.5
+Platform=WinXP
+Win32=true
+
+[Opera/7.5* (X11; FreeBSD*; ?)*]
+Parent=Opera 7.5
+Platform=FreeBSD
+
+[Opera/7.5* (X11; Linux*; ?)*]
+Parent=Opera 7.5
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.6
+
+[Opera 7.6]
+Parent=DefaultProperties
+Browser=Opera
+Version=7.6
+MajorVer=7
+MinorVer=6
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 7.6*]
+Parent=Opera 7.6
+Platform=Linux
+
+[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 7.6*]
+Parent=Opera 7.6
+Platform=MacPPC
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000) Opera 7.6*]
+Parent=Opera 7.6
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 95) Opera 7.6*]
+Parent=Opera 7.6
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 98) Opera 7.6*]
+Parent=Opera 7.6
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows ME) Opera 7.6*]
+Parent=Opera 7.6
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0) Opera 7.6*]
+Parent=Opera 7.6
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0) Opera 7.6*]
+Parent=Opera 7.6
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1) Opera 7.6*]
+Parent=Opera 7.6
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2) Opera 7.6*]
+Parent=Opera 7.6
+Platform=Win2003
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows XP) Opera 7.6*]
+Parent=Opera 7.6
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 7.6*]
+Parent=Opera 7.6
+Platform=Linux
+
+[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 7.6*]
+Parent=Opera 7.6
+Platform=MacOSX
+
+[Mozilla/?.* (Windows 2000; ?) Opera 7.6*]
+Parent=Opera 7.6
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows 95; ?) Opera 7.6*]
+Parent=Opera 7.6
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (Windows 98; ?) Opera 7.6*]
+Parent=Opera 7.6
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (Windows ME; ?) Opera 7.6*]
+Parent=Opera 7.6
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (Windows NT 4.0; U) Opera 7.6*]
+Parent=Opera 7.6
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.0; U) Opera 7.6*]
+Parent=Opera 7.6
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.1; ?) Opera 7.6*]
+Parent=Opera 7.6
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.2; ?) Opera 7.6*]
+Parent=Opera 7.6
+Platform=Win2003
+Win32=true
+
+[Mozilla/?.* (X11; Linux*; ?) Opera 7.6*]
+Parent=Opera 7.6
+Platform=Linux
+
+[Opera/7.6* (Linux*)*]
+Parent=Opera 7.6
+Platform=Linux
+
+[Opera/7.6* (Macintosh; *Mac OS X; ?)*]
+Parent=Opera 7.6
+Platform=MacOSX
+
+[Opera/7.6* (Windows 95*)*]
+Parent=Opera 7.6
+Platform=Win95
+Win32=true
+
+[Opera/7.6* (Windows 98*)*]
+Parent=Opera 7.6
+Platform=Win98
+Win32=true
+
+[Opera/7.6* (Windows ME*)*]
+Parent=Opera 7.6
+Platform=WinME
+Win32=true
+
+[Opera/7.6* (Windows NT 4.0*)*]
+Parent=Opera 7.6
+Platform=WinNT
+Win32=true
+
+[Opera/7.6* (Windows NT 5.0*)*]
+Parent=Opera 7.6
+Platform=Win2000
+Win32=true
+
+[Opera/7.6* (Windows NT 5.1*)*]
+Parent=Opera 7.6
+Platform=WinXP
+Win32=true
+
+[Opera/7.6* (Windows NT 5.2*)*]
+Parent=Opera 7.6
+Platform=Win2003
+Win32=true
+
+[Opera/7.6* (Windows XP*)*]
+Parent=Opera 7.6
+Platform=WinXP
+Win32=true
+
+[Opera/7.6* (X11; FreeBSD*)*]
+Parent=Opera 7.6
+Platform=FreeBSD
+
+[Opera/7.6* (X11; Linux*)*]
+Parent=Opera 7.6
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.0
+
+[Opera 8.0]
+Parent=DefaultProperties
+Browser=Opera
+Version=8.0
+MajorVer=8
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.0*]
+Parent=Opera 8.0
+Platform=Linux
+
+[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC Mac OS X; *) Opera 8.0*]
+Parent=Opera 8.0
+Platform=MacOSX
+
+[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.0*]
+Parent=Opera 8.0
+Platform=MacPPC
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.0*]
+Parent=Opera 8.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.0*]
+Parent=Opera 8.0
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.0*]
+Parent=Opera 8.0
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.0*]
+Parent=Opera 8.0
+Platform=WinCE
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.0*]
+Parent=Opera 8.0
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.0*]
+Parent=Opera 8.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.0*]
+Parent=Opera 8.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.0*]
+Parent=Opera 8.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.0*]
+Parent=Opera 8.0
+Platform=Win2003
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.0*]
+Parent=Opera 8.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.0*]
+Parent=Opera 8.0
+Platform=FreeBSD
+
+[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.0*]
+Parent=Opera 8.0
+Platform=Linux
+
+[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.0*]
+Parent=Opera 8.0
+Platform=MacOSX
+
+[Mozilla/?.* (Windows 2000; *) Opera 8.0*]
+Parent=Opera 8.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows 95; *) Opera 8.0*]
+Parent=Opera 8.0
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (Windows 98; *) Opera 8.0*]
+Parent=Opera 8.0
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (Windows ME; *) Opera 8.0*]
+Parent=Opera 8.0
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (Windows NT 4.0; *) Opera 8.0*]
+Parent=Opera 8.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.0; *) Opera 8.0*]
+Parent=Opera 8.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.1; *) Opera 8.0*]
+Parent=Opera 8.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.2; *) Opera 8.0*]
+Parent=Opera 8.0
+Platform=Win2003
+Win32=true
+
+[Mozilla/?.* (X11; Linux*; *) Opera 8.0*]
+Parent=Opera 8.0
+Platform=Linux
+
+[Opera/8.0* (Linux*)*]
+Parent=Opera 8.0
+Platform=Linux
+
+[Opera/8.0* (Macintosh; *Mac OS X; *)*]
+Parent=Opera 8.0
+Platform=MacOSX
+
+[Opera/8.0* (Windows 95*)*]
+Parent=Opera 8.0
+Platform=Win95
+Win32=true
+
+[Opera/8.0* (Windows 98*)*]
+Parent=Opera 8.0
+Platform=Win98
+Win32=true
+
+[Opera/8.0* (Windows CE*)*]
+Parent=Opera 8.0
+Platform=WinCE
+Win32=true
+
+[Opera/8.0* (Windows ME*)*]
+Parent=Opera 8.0
+Platform=WinME
+Win32=true
+
+[Opera/8.0* (Windows NT 4.0*)*]
+Parent=Opera 8.0
+Platform=WinNT
+Win32=true
+
+[Opera/8.0* (Windows NT 5.0*)*]
+Parent=Opera 8.0
+Platform=Win2000
+Win32=true
+
+[Opera/8.0* (Windows NT 5.1*)*]
+Parent=Opera 8.0
+Platform=WinXP
+Win32=true
+
+[Opera/8.0* (Windows NT 5.2*)*]
+Parent=Opera 8.0
+Platform=Win2003
+Win32=true
+
+[Opera/8.0* (Windows XP*)*]
+Parent=Opera 8.0
+Platform=WinXP
+Win32=true
+
+[Opera/8.0* (X11; FreeBSD*)*]
+Parent=Opera 8.0
+Platform=FreeBSD
+
+[Opera/8.0* (X11; Linux*)*]
+Parent=Opera 8.0
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.1
+
+[Opera 8.1]
+Parent=DefaultProperties
+Browser=Opera
+Version=8.1
+MajorVer=8
+MinorVer=1
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.1*]
+Parent=Opera 8.1
+Platform=Linux
+
+[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.1*]
+Parent=Opera 8.1
+Platform=MacPPC
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.1*]
+Parent=Opera 8.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.1*]
+Parent=Opera 8.1
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.1*]
+Parent=Opera 8.1
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.1*]
+Parent=Opera 8.1
+Platform=WinCE
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.1*]
+Parent=Opera 8.1
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.1*]
+Parent=Opera 8.1
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.1*]
+Parent=Opera 8.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.1*]
+Parent=Opera 8.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.1*]
+Parent=Opera 8.1
+Platform=Win2003
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.1*]
+Parent=Opera 8.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.1*]
+Parent=Opera 8.1
+Platform=FreeBSD
+
+[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.1*]
+Parent=Opera 8.1
+Platform=Linux
+
+[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.1*]
+Parent=Opera 8.1
+Platform=MacOSX
+
+[Mozilla/?.* (Windows 2000; *) Opera 8.1*]
+Parent=Opera 8.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows 95; *) Opera 8.1*]
+Parent=Opera 8.1
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (Windows 98; *) Opera 8.1*]
+Parent=Opera 8.1
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (Windows ME; *) Opera 8.1*]
+Parent=Opera 8.1
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (Windows NT 4.0; *) Opera 8.1*]
+Parent=Opera 8.1
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.0; *) Opera 8.1*]
+Parent=Opera 8.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.1; *) Opera 8.1*]
+Parent=Opera 8.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.2; *) Opera 8.1*]
+Parent=Opera 8.1
+Platform=Win2003
+Win32=true
+
+[Mozilla/?.* (X11; Linux*; *) Opera 8.1*]
+Parent=Opera 8.1
+Platform=Linux
+
+[Opera/8.1* (Linux*)*]
+Parent=Opera 8.1
+Platform=Linux
+
+[Opera/8.1* (Macintosh; *Mac OS X; *)*]
+Parent=Opera 8.1
+Platform=MacOSX
+
+[Opera/8.1* (Windows 95*)*]
+Parent=Opera 8.1
+Platform=Win95
+Win32=true
+
+[Opera/8.1* (Windows 98*)*]
+Parent=Opera 8.1
+Platform=Win98
+Win32=true
+
+[Opera/8.1* (Windows CE*)*]
+Parent=Opera 8.1
+Platform=WinCE
+Win32=true
+
+[Opera/8.1* (Windows ME*)*]
+Parent=Opera 8.1
+Platform=WinME
+Win32=true
+
+[Opera/8.1* (Windows NT 4.0*)*]
+Parent=Opera 8.1
+Platform=WinNT
+Win32=true
+
+[Opera/8.1* (Windows NT 5.0*)*]
+Parent=Opera 8.1
+Platform=Win2000
+Win32=true
+
+[Opera/8.1* (Windows NT 5.1*)*]
+Parent=Opera 8.1
+Platform=WinXP
+Win32=true
+
+[Opera/8.1* (Windows NT 5.2*)*]
+Parent=Opera 8.1
+Platform=Win2003
+Win32=true
+
+[Opera/8.1* (Windows XP*)*]
+Parent=Opera 8.1
+Platform=WinXP
+Win32=true
+
+[Opera/8.1* (X11; FreeBSD*)*]
+Parent=Opera 8.1
+Platform=FreeBSD
+
+[Opera/8.1* (X11; Linux*)*]
+Parent=Opera 8.1
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.5
+
+[Opera 8.5]
+Parent=DefaultProperties
+Browser=Opera
+Version=8.5
+MajorVer=8
+MinorVer=5
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+ecmascriptversion=1.3
+w3cdomversion=1.0
+
+[Mozilla/?.* (compatible; MSIE ?.*; Linux*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=Linux
+
+[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC Mac OS X;*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=MacOSX
+
+[Mozilla/?.* (compatible; MSIE ?.*; Mac_PowerPC) Opera 8.5*]
+Parent=Opera 8.5
+Platform=MacPPC
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 2000*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 95*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows 98*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows CE) Opera 8.5*]
+Parent=Opera 8.5
+Platform=WinCE
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows ME*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 4.0*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.0*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.1*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows NT 5.2*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=Win2003
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; Windows XP*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (compatible; MSIE ?.*; X11; FreeBSD*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=FreeBSD
+
+[Mozilla/?.* (compatible; MSIE ?.*; X11; Linux*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=Linux
+
+[Mozilla/?.* (Macintosh; *Mac OS X; ?) Opera 8.5*]
+Parent=Opera 8.5
+Platform=MacOSX
+
+[Mozilla/?.* (Macintosh; PPC Mac OS X;*) Opera 8.5*]
+Parent=Opera 8.5
+Platform=MacOSX
+
+[Mozilla/?.* (Windows 2000; *) Opera 8.5*]
+Parent=Opera 8.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows 95; *) Opera 8.5*]
+Parent=Opera 8.5
+Platform=Win95
+Win32=true
+
+[Mozilla/?.* (Windows 98; *) Opera 8.5*]
+Parent=Opera 8.5
+Platform=Win98
+Win32=true
+
+[Mozilla/?.* (Windows ME; *) Opera 8.5*]
+Parent=Opera 8.5
+Platform=WinME
+Win32=true
+
+[Mozilla/?.* (Windows NT 4.0; *) Opera 8.5*]
+Parent=Opera 8.5
+Platform=WinNT
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.0; *) Opera 8.5*]
+Parent=Opera 8.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.1; *) Opera 8.5*]
+Parent=Opera 8.5
+Platform=WinXP
+Win32=true
+
+[Mozilla/?.* (Windows NT 5.2; *) Opera 8.5*]
+Parent=Opera 8.5
+Platform=Win2003
+Win32=true
+
+[Mozilla/?.* (X11; Linux*; *) Opera 8.5*]
+Parent=Opera 8.5
+Platform=Linux
+
+[Opera/8.5* (Linux*)*]
+Parent=Opera 8.5
+Platform=Linux
+
+[Opera/8.5* (Macintosh; *Mac OS X; *)*]
+Parent=Opera 8.5
+Platform=MacOSX
+
+[Opera/8.5* (Windows 95*)*]
+Parent=Opera 8.5
+Platform=Win95
+Win32=true
+
+[Opera/8.5* (Windows 98*)*]
+Parent=Opera 8.5
+Platform=Win98
+Win32=true
+
+[Opera/8.5* (Windows CE*)*]
+Parent=Opera 8.5
+Platform=WinCE
+Win32=true
+
+[Opera/8.5* (Windows ME*)*]
+Parent=Opera 8.5
+Platform=WinME
+Win32=true
+
+[Opera/8.5* (Windows NT 4.0*)*]
+Parent=Opera 8.5
+Platform=WinNT
+Win32=true
+
+[Opera/8.5* (Windows NT 5.0*)*]
+Parent=Opera 8.5
+Platform=Win2000
+Win32=true
+
+[Opera/8.5* (Windows NT 5.1*)*]
+Parent=Opera 8.5
+Platform=WinXP
+Win32=true
+
+[Opera/8.5* (Windows NT 5.2*)*]
+Parent=Opera 8.5
+Platform=Win2003
+Win32=true
+
+[Opera/8.5* (Windows XP*)*]
+Parent=Opera 8.5
+Platform=WinXP
+Win32=true
+
+[Opera/8.5* (X11; FreeBSD*)*]
+Parent=Opera 8.5
+Platform=FreeBSD
+
+[Opera/8.5* (X11; Linux*)*]
+Parent=Opera 8.5
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.0
+
+[Opera 9.0]
+Parent=DefaultProperties
+Browser=Opera
+Version=9.0
+MajorVer=9
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+ecmascriptversion=1.5
+w3cdomversion=1.0
+
+[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=MacOSX
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.0*]
+Parent=Opera 9.0
+Platform=MacPPC
+
+[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=Win95
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=Win98
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=WinCE
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=WinME
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=WinVista
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=FreeBSD
+
+[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=SunOS
+
+[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.0*]
+Parent=Opera 9.0
+Platform=MacOSX
+
+[Mozilla/* (Windows 2000;*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows 95;*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=Win95
+Win32=true
+
+[Mozilla/* (Windows 98;*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=Win98
+Win32=true
+
+[Mozilla/* (Windows ME;*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=WinME
+Win32=true
+
+[Mozilla/* (Windows NT 4.0;*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (Windows NT 5.0;*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows NT 5.1;*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (Windows NT 5.2;*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (X11; Linux*) Opera 9.0*]
+Parent=Opera 9.0
+Platform=Linux
+
+[Opera/9.0* (Linux*)*]
+Parent=Opera 9.0
+Platform=Linux
+
+[Opera/9.0* (Macintosh; *Mac OS X;*)*]
+Parent=Opera 9.0
+Platform=MacOSX
+
+[Opera/9.0* (Windows 95*)*]
+Parent=Opera 9.0
+Platform=Win95
+Win32=true
+
+[Opera/9.0* (Windows 98*)*]
+Parent=Opera 9.0
+Platform=Win98
+Win32=true
+
+[Opera/9.0* (Windows CE*)*]
+Parent=Opera 9.0
+Platform=WinCE
+Win32=true
+
+[Opera/9.0* (Windows ME*)*]
+Parent=Opera 9.0
+Platform=WinME
+Win32=true
+
+[Opera/9.0* (Windows NT 4.0*)*]
+Parent=Opera 9.0
+Platform=WinNT
+Win32=true
+
+[Opera/9.0* (Windows NT 5.0*)*]
+Parent=Opera 9.0
+Platform=Win2000
+Win32=true
+
+[Opera/9.0* (Windows NT 5.1*)*]
+Parent=Opera 9.0
+Platform=WinXP
+Win32=true
+
+[Opera/9.0* (Windows NT 5.2*)*]
+Parent=Opera 9.0
+Platform=Win2003
+Win32=true
+
+[Opera/9.0* (Windows NT 6.0*)*]
+Parent=Opera 9.0
+Platform=WinVista
+Win32=true
+
+[Opera/9.0* (Windows XP*)*]
+Parent=Opera 9.0
+Platform=WinXP
+Win32=true
+
+[Opera/9.0* (X11; FreeBSD*)*]
+Parent=Opera 9.0
+Platform=FreeBSD
+
+[Opera/9.0* (X11; Linux*)*]
+Parent=Opera 9.0
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.1
+
+[Opera 9.1]
+Parent=DefaultProperties
+Browser=Opera
+Version=9.1
+MajorVer=9
+MinorVer=1
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=MacOSX
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC;*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=MacPPC
+
+[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=Win95
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=Win98
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=WinCE
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=WinME
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=WinVista
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=FreeBSD
+
+[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=SunOS
+
+[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.1*]
+Parent=Opera 9.1
+Platform=MacOSX
+
+[Mozilla/* (Windows 2000;*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows 95;*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=Win95
+Win32=true
+
+[Mozilla/* (Windows 98;*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=Win98
+Win32=true
+
+[Mozilla/* (Windows ME;*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=WinME
+Win32=true
+
+[Mozilla/* (Windows NT 4.0;*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (Windows NT 5.0;*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows NT 5.1;*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (Windows NT 5.2;*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (X11; Linux*) Opera 9.1*]
+Parent=Opera 9.1
+Platform=Linux
+
+[Opera/9.1* (Linux*)*]
+Parent=Opera 9.1
+Platform=Linux
+
+[Opera/9.1* (Macintosh; *Mac OS X;*)*]
+Parent=Opera 9.1
+Platform=MacOSX
+
+[Opera/9.1* (Windows 95*)*]
+Parent=Opera 9.1
+Platform=Win95
+Win32=true
+
+[Opera/9.1* (Windows 98*)*]
+Parent=Opera 9.1
+Platform=Win98
+Win32=true
+
+[Opera/9.1* (Windows CE*)*]
+Parent=Opera 9.1
+Platform=WinCE
+Win32=true
+
+[Opera/9.1* (Windows ME*)*]
+Parent=Opera 9.1
+Platform=WinME
+Win32=true
+
+[Opera/9.1* (Windows NT 4.0*)*]
+Parent=Opera 9.1
+Platform=WinNT
+Win32=true
+
+[Opera/9.1* (Windows NT 5.0*)*]
+Parent=Opera 9.1
+Platform=Win2000
+Win32=true
+
+[Opera/9.1* (Windows NT 5.1*)*]
+Parent=Opera 9.1
+Platform=WinXP
+Win32=true
+
+[Opera/9.1* (Windows NT 5.2*)*]
+Parent=Opera 9.1
+Platform=Win2003
+Win32=true
+
+[Opera/9.1* (Windows NT 6.0*)*]
+Parent=Opera 9.1
+Platform=WinVista
+Win32=true
+
+[Opera/9.1* (Windows XP*)*]
+Parent=Opera 9.1
+Platform=WinXP
+Win32=true
+
+[Opera/9.1* (X11; FreeBSD*)*]
+Parent=Opera 9.1
+Platform=FreeBSD
+
+[Opera/9.1* (X11; Linux*)*]
+Parent=Opera 9.1
+Platform=Linux
+
+[Opera/9.1* (X11; SunOS*)*]
+Parent=Opera 9.1
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.2
+
+[Opera 9.2]
+Parent=DefaultProperties
+Browser=Opera
+Version=9.2
+MajorVer=9
+MinorVer=2
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=MacOSX
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.2*]
+Parent=Opera 9.2
+Platform=MacPPC
+
+[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Win95
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Win98
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=WinCE
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=WinME
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=WinVista
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Win7
+
+[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=FreeBSD
+
+[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=SunOS
+
+[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.2*]
+Parent=Opera 9.2
+Platform=MacOSX
+
+[Mozilla/* (Windows 2000;*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows 95;*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Win95
+Win32=true
+
+[Mozilla/* (Windows 98;*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Win98
+Win32=true
+
+[Mozilla/* (Windows ME;*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=WinME
+Win32=true
+
+[Mozilla/* (Windows NT 4.0;*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (Windows NT 5.0;*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows NT 5.1;*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (Windows NT 5.2;*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (Windows NT 6.0;*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=WinVista
+
+[Mozilla/* (Windows NT 6.1;*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Win7
+
+[Mozilla/* (X11; Linux*) Opera 9.2*]
+Parent=Opera 9.2
+Platform=Linux
+
+[Opera/9.2* (Linux*)*]
+Parent=Opera 9.2
+Platform=Linux
+
+[Opera/9.2* (Macintosh; *Mac OS X;*)*]
+Parent=Opera 9.2
+Platform=MacOSX
+
+[Opera/9.2* (Windows 95*)*]
+Parent=Opera 9.2
+Platform=Win95
+Win32=true
+
+[Opera/9.2* (Windows 98*)*]
+Parent=Opera 9.2
+Platform=Win98
+Win32=true
+
+[Opera/9.2* (Windows CE*)*]
+Parent=Opera 9.2
+Platform=WinCE
+Win32=true
+
+[Opera/9.2* (Windows ME*)*]
+Parent=Opera 9.2
+Platform=WinME
+Win32=true
+
+[Opera/9.2* (Windows NT 4.0*)*]
+Parent=Opera 9.2
+Platform=WinNT
+Win32=true
+
+[Opera/9.2* (Windows NT 5.0*)*]
+Parent=Opera 9.2
+Platform=Win2000
+Win32=true
+
+[Opera/9.2* (Windows NT 5.1*)*]
+Parent=Opera 9.2
+Platform=WinXP
+Win32=true
+
+[Opera/9.2* (Windows NT 5.2*)*]
+Parent=Opera 9.2
+Platform=Win2003
+Win32=true
+
+[Opera/9.2* (Windows NT 6.0*)*]
+Parent=Opera 9.2
+Platform=WinVista
+Win32=true
+
+[Opera/9.2* (Windows NT 6.1*)*]
+Parent=Opera 9.2
+Platform=Win7
+
+[Opera/9.2* (Windows XP*)*]
+Parent=Opera 9.2
+Platform=WinXP
+Win32=true
+
+[Opera/9.2* (X11; FreeBSD*)*]
+Parent=Opera 9.2
+Platform=FreeBSD
+
+[Opera/9.2* (X11; Linux*)*]
+Parent=Opera 9.2
+Platform=Linux
+
+[Opera/9.2* (X11; SunOS*)*]
+Parent=Opera 9.2
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.3
+
+[Opera 9.3]
+Parent=DefaultProperties
+Browser=Opera
+Version=9.3
+MajorVer=9
+MinorVer=3
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=MacOSX
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.3*]
+Parent=Opera 9.3
+Platform=MacPPC
+
+[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Win95
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Win98
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=WinCE
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=WinME
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=WinVista
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Win7
+
+[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=FreeBSD
+
+[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=SunOS
+
+[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.3*]
+Parent=Opera 9.3
+Platform=MacOSX
+
+[Mozilla/* (Windows 2000;*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows 95;*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Win95
+Win32=true
+
+[Mozilla/* (Windows 98;*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Win98
+Win32=true
+
+[Mozilla/* (Windows ME;*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=WinME
+Win32=true
+
+[Mozilla/* (Windows NT 4.0;*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (Windows NT 5.0;*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows NT 5.1;*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (Windows NT 5.2;*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (Windows NT 6.0;*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=WinVista
+
+[Mozilla/* (Windows NT 6.1;*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Win7
+
+[Mozilla/* (X11; Linux*) Opera 9.3*]
+Parent=Opera 9.3
+Platform=Linux
+
+[Opera/9.3* (Linux*)*]
+Parent=Opera 9.3
+Platform=Linux
+
+[Opera/9.3* (Macintosh; *Mac OS X;*)*]
+Parent=Opera 9.3
+Platform=MacOSX
+
+[Opera/9.3* (Windows 95*)*]
+Parent=Opera 9.3
+Platform=Win95
+Win32=true
+
+[Opera/9.3* (Windows 98*)*]
+Parent=Opera 9.3
+Platform=Win98
+Win32=true
+
+[Opera/9.3* (Windows CE*)*]
+Parent=Opera 9.3
+Platform=WinCE
+Win32=true
+
+[Opera/9.3* (Windows ME*)*]
+Parent=Opera 9.3
+Platform=WinME
+Win32=true
+
+[Opera/9.3* (Windows NT 4.0*)*]
+Parent=Opera 9.3
+Platform=WinNT
+Win32=true
+
+[Opera/9.3* (Windows NT 5.0*)*]
+Parent=Opera 9.3
+Platform=Win2000
+Win32=true
+
+[Opera/9.3* (Windows NT 5.1*)*]
+Parent=Opera 9.3
+Platform=WinXP
+Win32=true
+
+[Opera/9.3* (Windows NT 5.2*)*]
+Parent=Opera 9.3
+Platform=Win2003
+Win32=true
+
+[Opera/9.3* (Windows NT 6.0*)*]
+Parent=Opera 9.3
+Platform=WinVista
+Win32=true
+
+[Opera/9.3* (Windows NT 6.1*)*]
+Parent=Opera 9.3
+Platform=Win7
+
+[Opera/9.3* (Windows XP*)*]
+Parent=Opera 9.3
+Platform=WinXP
+Win32=true
+
+[Opera/9.3* (X11; FreeBSD*)*]
+Parent=Opera 9.3
+Platform=FreeBSD
+
+[Opera/9.3* (X11; Linux*)*]
+Parent=Opera 9.3
+Platform=Linux
+
+[Opera/9.3* (X11; SunOS*)*]
+Parent=Opera 9.3
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.4
+
+[Opera 9.4]
+Parent=DefaultProperties
+Browser=Opera
+Version=9.4
+MajorVer=9
+MinorVer=4
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=MacOSX
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.4*]
+Parent=Opera 9.4
+Platform=MacPPC
+
+[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Win95
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Win98
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=WinCE
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=WinME
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=WinVista
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Win7
+
+[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=FreeBSD
+
+[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=SunOS
+
+[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.4*]
+Parent=Opera 9.4
+Platform=MacOSX
+
+[Mozilla/* (Windows 2000;*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows 95;*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Win95
+Win32=true
+
+[Mozilla/* (Windows 98;*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Win98
+Win32=true
+
+[Mozilla/* (Windows ME;*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=WinME
+Win32=true
+
+[Mozilla/* (Windows NT 4.0;*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (Windows NT 5.0;*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows NT 5.1;*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (Windows NT 5.2;*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (Windows NT 6.0;*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=WinVista
+
+[Mozilla/* (Windows NT 6.1;*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Win7
+
+[Mozilla/* (X11; Linux*) Opera 9.4*]
+Parent=Opera 9.4
+Platform=Linux
+
+[Opera/9.4* (Linux*)*]
+Parent=Opera 9.4
+Platform=Linux
+
+[Opera/9.4* (Macintosh; *Mac OS X;*)*]
+Parent=Opera 9.4
+Platform=MacOSX
+
+[Opera/9.4* (Windows 95*)*]
+Parent=Opera 9.4
+Platform=Win95
+Win32=true
+
+[Opera/9.4* (Windows 98*)*]
+Parent=Opera 9.4
+Platform=Win98
+Win32=true
+
+[Opera/9.4* (Windows CE*)*]
+Parent=Opera 9.4
+Platform=WinCE
+Win32=true
+
+[Opera/9.4* (Windows ME*)*]
+Parent=Opera 9.4
+Platform=WinME
+Win32=true
+
+[Opera/9.4* (Windows NT 4.0*)*]
+Parent=Opera 9.4
+Platform=WinNT
+Win32=true
+
+[Opera/9.4* (Windows NT 5.0*)*]
+Parent=Opera 9.4
+Platform=Win2000
+Win32=true
+
+[Opera/9.4* (Windows NT 5.1*)*]
+Parent=Opera 9.4
+Platform=WinXP
+Win32=true
+
+[Opera/9.4* (Windows NT 5.2*)*]
+Parent=Opera 9.4
+Platform=Win2003
+Win32=true
+
+[Opera/9.4* (Windows NT 6.0*)*]
+Parent=Opera 9.4
+Platform=WinVista
+Win32=true
+
+[Opera/9.4* (Windows NT 6.1*)*]
+Parent=Opera 9.4
+Platform=Win7
+
+[Opera/9.4* (Windows XP*)*]
+Parent=Opera 9.4
+Platform=WinXP
+Win32=true
+
+[Opera/9.4* (X11; FreeBSD*)*]
+Parent=Opera 9.4
+Platform=FreeBSD
+
+[Opera/9.4* (X11; Linux*)*]
+Parent=Opera 9.4
+Platform=Linux
+
+[Opera/9.4* (X11; SunOS*)*]
+Parent=Opera 9.4
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.5
+
+[Opera 9.5]
+Parent=DefaultProperties
+Browser=Opera
+Version=9.5
+MajorVer=9
+MinorVer=5
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=MacOSX
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.5*]
+Parent=Opera 9.5
+Platform=MacPPC
+
+[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Win95
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Win98
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=WinCE
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=WinME
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=WinVista
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Win7
+
+[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=FreeBSD
+
+[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=SunOS
+
+[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.5*]
+Parent=Opera 9.5
+Platform=MacOSX
+
+[Mozilla/* (Windows 2000;*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows 95;*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Win95
+Win32=true
+
+[Mozilla/* (Windows 98;*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Win98
+Win32=true
+
+[Mozilla/* (Windows ME;*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=WinME
+Win32=true
+
+[Mozilla/* (Windows NT 4.0;*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (Windows NT 5.0;*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows NT 5.1;*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (Windows NT 5.2;*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (Windows NT 6.0;*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=WinVista
+
+[Mozilla/* (Windows NT 6.1;*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Win7
+
+[Mozilla/* (X11; Linux*) Opera 9.5*]
+Parent=Opera 9.5
+Platform=Linux
+
+[Opera/9.5* (Linux*)*]
+Parent=Opera 9.5
+Platform=Linux
+
+[Opera/9.5* (Macintosh; *Mac OS X;*)*]
+Parent=Opera 9.5
+Platform=MacOSX
+
+[Opera/9.5* (Windows 95*)*]
+Parent=Opera 9.5
+Platform=Win95
+Win32=true
+
+[Opera/9.5* (Windows 98*)*]
+Parent=Opera 9.5
+Platform=Win98
+Win32=true
+
+[Opera/9.5* (Windows CE*)*]
+Parent=Opera 9.5
+Platform=WinCE
+Win32=true
+
+[Opera/9.5* (Windows ME*)*]
+Parent=Opera 9.5
+Platform=WinME
+Win32=true
+
+[Opera/9.5* (Windows NT 4.0*)*]
+Parent=Opera 9.5
+Platform=WinNT
+Win32=true
+
+[Opera/9.5* (Windows NT 5.0*)*]
+Parent=Opera 9.5
+Platform=Win2000
+Win32=true
+
+[Opera/9.5* (Windows NT 5.1*)*]
+Parent=Opera 9.5
+Platform=WinXP
+Win32=true
+
+[Opera/9.5* (Windows NT 5.2*)*]
+Parent=Opera 9.5
+Platform=Win2003
+Win32=true
+
+[Opera/9.5* (Windows NT 6.0*)*]
+Parent=Opera 9.5
+Platform=WinVista
+Win32=true
+
+[Opera/9.5* (Windows NT 6.1*)*]
+Parent=Opera 9.5
+Platform=Win7
+
+[Opera/9.5* (Windows XP*)*]
+Parent=Opera 9.5
+Platform=WinXP
+Win32=true
+
+[Opera/9.5* (X11; FreeBSD*)*]
+Parent=Opera 9.5
+Platform=FreeBSD
+
+[Opera/9.5* (X11; Linux*)*]
+Parent=Opera 9.5
+Platform=Linux
+
+[Opera/9.5* (X11; SunOS*)*]
+Parent=Opera 9.5
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.6
+
+[Opera 9.6]
+Parent=DefaultProperties
+Browser=Opera
+Version=9.6
+MajorVer=9
+MinorVer=6
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/* (compatible; MSIE*; Linux*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC Mac OS X;*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=MacOSX
+
+[Mozilla/* (compatible; MSIE*; Mac_PowerPC) Opera 9.6*]
+Parent=Opera 9.6
+Platform=MacPPC
+
+[Mozilla/* (compatible; MSIE*; Windows 2000*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 95*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Win95
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows 98*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Win98
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows CE*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=WinCE
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows ME*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=WinME
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 4.0*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.0*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.1*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 5.2*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.0*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=WinVista
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; Windows NT 6.1*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Win7
+
+[Mozilla/* (compatible; MSIE*; Windows XP*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (compatible; MSIE*; X11; FreeBSD*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=FreeBSD
+
+[Mozilla/* (compatible; MSIE*; X11; Linux*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Linux
+
+[Mozilla/* (compatible; MSIE*; X11; SunOS*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=SunOS
+
+[Mozilla/* (Macintosh; *Mac OS X; ?) Opera 9.6*]
+Parent=Opera 9.6
+Platform=MacOSX
+
+[Mozilla/* (Windows 2000;*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows 95;*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Win95
+Win32=true
+
+[Mozilla/* (Windows 98;*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Win98
+Win32=true
+
+[Mozilla/* (Windows ME;*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=WinME
+Win32=true
+
+[Mozilla/* (Windows NT 4.0;*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=WinNT
+Win32=true
+
+[Mozilla/* (Windows NT 5.0;*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Win2000
+Win32=true
+
+[Mozilla/* (Windows NT 5.1;*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=WinXP
+Win32=true
+
+[Mozilla/* (Windows NT 5.2;*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Win2003
+Win32=true
+
+[Mozilla/* (Windows NT 6.0;*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=WinVista
+
+[Mozilla/* (Windows NT 6.1;*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Win7
+
+[Mozilla/* (X11; Linux*) Opera 9.6*]
+Parent=Opera 9.6
+Platform=Linux
+
+[Opera/9.6* (Linux*)*]
+Parent=Opera 9.6
+Platform=Linux
+
+[Opera/9.6* (Macintosh; *Mac OS X;*)*]
+Parent=Opera 9.6
+Platform=MacOSX
+
+[Opera/9.6* (Windows 95*)*]
+Parent=Opera 9.6
+Platform=Win95
+Win32=true
+
+[Opera/9.6* (Windows 98*)*]
+Parent=Opera 9.6
+Platform=Win98
+Win32=true
+
+[Opera/9.6* (Windows CE*)*]
+Parent=Opera 9.6
+Platform=WinCE
+Win32=true
+
+[Opera/9.6* (Windows ME*)*]
+Parent=Opera 9.6
+Platform=WinME
+Win32=true
+
+[Opera/9.6* (Windows NT 4.0*)*]
+Parent=Opera 9.6
+Platform=WinNT
+Win32=true
+
+[Opera/9.6* (Windows NT 5.0*)*]
+Parent=Opera 9.6
+Platform=Win2000
+Win32=true
+
+[Opera/9.6* (Windows NT 5.1*)*]
+Parent=Opera 9.6
+Platform=WinXP
+Win32=true
+
+[Opera/9.6* (Windows NT 5.2*)*]
+Parent=Opera 9.6
+Platform=Win2003
+Win32=true
+
+[Opera/9.6* (Windows NT 6.0*)*]
+Parent=Opera 9.6
+Platform=WinVista
+Win32=true
+
+[Opera/9.6* (Windows NT 6.1*)*]
+Parent=Opera 9.6
+Platform=Win7
+
+[Opera/9.6* (Windows XP*)*]
+Parent=Opera 9.6
+Platform=WinXP
+Win32=true
+
+[Opera/9.6* (X11; FreeBSD*)*]
+Parent=Opera 9.6
+Platform=FreeBSD
+
+[Opera/9.6* (X11; Linux*)*]
+Parent=Opera 9.6
+Platform=Linux
+
+[Opera/9.6* (X11; SunOS*)*]
+Parent=Opera 9.6
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.0
+
+[Netscape 4.0]
+Parent=DefaultProperties
+Browser=Netscape
+Version=4.0
+MajorVer=4
+Frames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=1
+supportsCSS=true
+
+[Mozilla/4.0*(Macintosh*]
+Parent=Netscape 4.0
+Version=4.03
+MinorVer=03
+Platform=MacPPC
+
+[Mozilla/4.0*(Win95;*]
+Parent=Netscape 4.0
+Platform=Win95
+
+[Mozilla/4.0*(Win98;*]
+Parent=Netscape 4.0
+Version=4.03
+MinorVer=03
+Platform=Win98
+
+[Mozilla/4.0*(WinNT*]
+Parent=Netscape 4.0
+Version=4.03
+MinorVer=03
+Platform=WinNT
+
+[Mozilla/4.0*(X11;*)]
+Parent=Netscape 4.0
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.5
+
+[Netscape 4.5]
+Parent=DefaultProperties
+Browser=Netscape
+Version=4.5
+MajorVer=4
+MinorVer=5
+Frames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=1
+supportsCSS=true
+
+[Mozilla/4.5*(Macintosh; ?; PPC)]
+Parent=Netscape 4.5
+Platform=MacPPC
+
+[Mozilla/4.5*(Win2000; ?)]
+Parent=Netscape 4.5
+Platform=Win2000
+
+[Mozilla/4.5*(Win95; ?)]
+Parent=Netscape 4.5
+Platform=Win95
+
+[Mozilla/4.5*(Win98; ?)]
+Parent=Netscape 4.5
+Platform=Win98
+
+[Mozilla/4.5*(WinME; ?)]
+Parent=Netscape 4.5
+Platform=WinME
+
+[Mozilla/4.5*(WinNT; ?)]
+Parent=Netscape 4.5
+Platform=WinNT
+
+[Mozilla/4.5*(WinXP; ?)]
+Parent=Netscape 4.5
+Platform=WinXP
+
+[Mozilla/4.5*(X11*)]
+Parent=Netscape 4.5
+Platform=Linux
+
+[Mozilla/4.51*(Macintosh; ?; PPC)]
+Parent=Netscape 4.5
+Version=4.51
+MinorVer=51
+
+[Mozilla/4.51*(Win2000; ?)]
+Parent=Netscape 4.5
+Version=4.51
+MinorVer=51
+Platform=Win2000
+
+[Mozilla/4.51*(Win95; ?)]
+Parent=Netscape 4.5
+Version=4.51
+MinorVer=51
+Platform=Win95
+
+[Mozilla/4.51*(Win98; ?)]
+Parent=Netscape 4.5
+Version=4.51
+MinorVer=51
+Platform=Win98
+
+[Mozilla/4.51*(WinME; ?)]
+Parent=Netscape 4.5
+Version=4.51
+MinorVer=51
+Platform=WinME
+
+[Mozilla/4.51*(WinNT; ?)]
+Parent=Netscape 4.5
+Version=4.51
+MinorVer=51
+Platform=WinNT
+
+[Mozilla/4.51*(WinXP; ?)]
+Parent=Netscape 4.5
+Version=4.51
+MinorVer=51
+Platform=WinXP
+
+[Mozilla/4.51*(X11*)]
+Parent=Netscape 4.5
+Version=4.51
+MinorVer=51
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.6
+
+[Netscape 4.6]
+Parent=DefaultProperties
+Browser=Netscape
+Version=4.6
+MajorVer=4
+MinorVer=6
+Frames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=1
+supportsCSS=true
+
+[Mozilla/4.6 * (OS/2; ?)]
+Parent=Netscape 4.6
+Platform=OS/2
+
+[Mozilla/4.6*(Macintosh; ?; PPC)]
+Parent=Netscape 4.6
+Platform=MacPPC
+
+[Mozilla/4.6*(Win95; ?)]
+Parent=Netscape 4.6
+Platform=Win95
+
+[Mozilla/4.6*(Win98; ?)]
+Parent=Netscape 4.6
+Platform=Win98
+
+[Mozilla/4.6*(WinNT; ?)]
+Parent=Netscape 4.6
+Platform=WinNT
+
+[Mozilla/4.61*(Macintosh; ?; PPC)]
+Parent=Netscape 4.6
+Version=4.61
+MajorVer=4
+MinorVer=61
+Platform=MacPPC
+
+[Mozilla/4.61*(OS/2; ?)]
+Parent=Netscape 4.6
+Version=4.61
+MajorVer=4
+MinorVer=61
+Platform=OS/2
+
+[Mozilla/4.61*(Win95; ?)]
+Parent=Netscape 4.6
+Version=4.61
+MajorVer=4
+MinorVer=61
+Platform=Win95
+
+[Mozilla/4.61*(Win98; ?)]
+Parent=Netscape 4.6
+Version=4.61
+Platform=Win98
+
+[Mozilla/4.61*(WinNT; ?)]
+Parent=Netscape 4.6
+Version=4.61
+MajorVer=4
+MinorVer=61
+Platform=WinNT
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.7
+
+[Netscape 4.7]
+Parent=DefaultProperties
+Browser=Netscape
+Version=4.7
+MajorVer=4
+MinorVer=7
+Frames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=1
+supportsCSS=true
+
+[Mozilla/4.7 * (Win2000; ?)]
+Parent=Netscape 4.7
+Platform=Win2000
+
+[Mozilla/4.7*(Macintosh; ?; PPC)*]
+Parent=Netscape 4.7
+MinorVer=7
+Platform=MacPPC
+
+[Mozilla/4.7*(Win95; ?)*]
+Parent=Netscape 4.7
+MinorVer=7
+Platform=Win95
+
+[Mozilla/4.7*(Win98; ?)*]
+Parent=Netscape 4.7
+MinorVer=7
+Platform=Win98
+
+[Mozilla/4.7*(Windows NT 4.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=7
+Platform=WinNT
+Win32=true
+
+[Mozilla/4.7*(Windows NT 5.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=7
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.7*(Windows NT 5.1; ?)*]
+Parent=Netscape 4.7
+MinorVer=7
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.7*(WinNT; ?)*]
+Parent=Netscape 4.7
+Platform=WinNT
+
+[Mozilla/4.7*(X11*)*]
+Parent=Netscape 4.7
+Platform=Linux
+
+[Mozilla/4.7*(X11; ?; SunOS*)*]
+Parent=Netscape 4.7
+Platform=SunOS
+
+[Mozilla/4.71*(Macintosh; ?; PPC)*]
+Parent=Netscape 4.7
+Version=4.71
+MinorVer=71
+Platform=MacPPC
+
+[Mozilla/4.71*(Win95; ?)*]
+Parent=Netscape 4.7
+Version=4.71
+MinorVer=71
+Platform=Win95
+
+[Mozilla/4.71*(Win98; ?)*]
+Parent=Netscape 4.7
+Version=4.71
+MinorVer=71
+Platform=Win98
+
+[Mozilla/4.71*(Windows NT 4.0; ?)*]
+Parent=Netscape 4.7
+Version=4.71
+MinorVer=71
+Platform=WinNT
+Win32=true
+
+[Mozilla/4.71*(Windows NT 5.0; ?)*]
+Parent=Netscape 4.7
+Version=4.71
+MinorVer=71
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.71*(Windows NT 5.1; ?)*]
+Parent=Netscape 4.7
+Version=4.71
+MinorVer=71
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.71*(WinNT; ?)*]
+Parent=Netscape 4.7
+Version=4.71
+MinorVer=71
+Platform=WinNT
+
+[Mozilla/4.71*(X11*)*]
+Parent=Netscape 4.7
+Version=4.71
+MinorVer=71
+Platform=Linux
+
+[Mozilla/4.71*(X11; ?; SunOS*)*]
+Parent=Netscape 4.7
+Version=4.71
+MinorVer=71
+Platform=SunOS
+
+[Mozilla/4.72*(Macintosh; ?; PPC)*]
+Parent=Netscape 4.7
+MinorVer=72
+Platform=MacPPC
+
+[Mozilla/4.72*(Win95; ?)*]
+Parent=Netscape 4.7
+MinorVer=72
+Platform=Win95
+
+[Mozilla/4.72*(Win98; ?)*]
+Parent=Netscape 4.7
+MinorVer=72
+Platform=Win98
+
+[Mozilla/4.72*(Windows NT 4.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=72
+Platform=WinNT
+Win32=true
+
+[Mozilla/4.72*(Windows NT 5.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=72
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.72*(Windows NT 5.1; ?)*]
+Parent=Netscape 4.7
+MinorVer=72
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.72*(WinNT; ?)*]
+Parent=Netscape 4.7
+MinorVer=72
+Platform=WinNT
+
+[Mozilla/4.72*(X11*)*]
+Parent=Netscape 4.7
+MinorVer=72
+Platform=Linux
+
+[Mozilla/4.72*(X11; ?; SunOS*)*]
+Parent=Netscape 4.7
+MinorVer=72
+Platform=SunOS
+
+[Mozilla/4.73*(Macintosh; ?; PPC)*]
+Parent=Netscape 4.7
+MinorVer=73
+Platform=MacPPC
+
+[Mozilla/4.73*(Win95; ?)*]
+Parent=Netscape 4.7
+MinorVer=73
+Platform=Win95
+
+[Mozilla/4.73*(Win98; ?)*]
+Parent=Netscape 4.7
+MinorVer=73
+Platform=Win98
+
+[Mozilla/4.73*(Windows NT 4.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=73
+Platform=WinNT
+Win32=true
+
+[Mozilla/4.73*(Windows NT 5.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=73
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.73*(Windows NT 5.1; ?)*]
+Parent=Netscape 4.7
+MinorVer=73
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.73*(WinNT; ?)*]
+Parent=Netscape 4.7
+MinorVer=73
+Platform=WinNT
+
+[Mozilla/4.73*(X11*)*]
+Parent=Netscape 4.7
+MinorVer=73
+Platform=Linux
+
+[Mozilla/4.73*(X11; ?; SunOS*)*]
+Parent=Netscape 4.7
+MinorVer=73
+Platform=SunOS
+
+[Mozilla/4.74*(Macintosh; ?; PPC)*]
+Parent=Netscape 4.7
+MinorVer=74
+Platform=MacPPC
+
+[Mozilla/4.74*(Win95; ?)*]
+Parent=Netscape 4.7
+MinorVer=74
+Platform=Win95
+
+[Mozilla/4.74*(Win98; ?)*]
+Parent=Netscape 4.7
+MinorVer=74
+Platform=Win98
+
+[Mozilla/4.74*(Windows NT 4.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=74
+Platform=WinNT
+Win32=true
+
+[Mozilla/4.74*(Windows NT 5.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=74
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.74*(Windows NT 5.1; ?)*]
+Parent=Netscape 4.7
+MinorVer=74
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.74*(WinNT; ?)*]
+Parent=Netscape 4.7
+MinorVer=74
+Platform=WinNT
+
+[Mozilla/4.74*(X11*)*]
+Parent=Netscape 4.7
+MinorVer=74
+Platform=Linux
+
+[Mozilla/4.74*(X11; ?; SunOS*)*]
+Parent=Netscape 4.7
+MinorVer=74
+Platform=SunOS
+
+[Mozilla/4.75*(Macintosh; ?; PPC)*]
+Parent=Netscape 4.7
+MinorVer=75
+Platform=MacPPC
+
+[Mozilla/4.75*(Win95; ?)*]
+Parent=Netscape 4.7
+MinorVer=75
+Platform=Win95
+
+[Mozilla/4.75*(Win98; ?)*]
+Parent=Netscape 4.7
+MinorVer=75
+Platform=Win98
+
+[Mozilla/4.75*(Windows NT 4.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=75
+Platform=WinNT
+Win32=true
+
+[Mozilla/4.75*(Windows NT 5.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=75
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.75*(Windows NT 5.1; ?)*]
+Parent=Netscape 4.7
+MinorVer=75
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.75*(WinNT; ?)*]
+Parent=Netscape 4.7
+MinorVer=75
+Platform=WinNT
+
+[Mozilla/4.75*(X11*)*]
+Parent=Netscape 4.7
+MinorVer=75
+Platform=Linux
+
+[Mozilla/4.75*(X11; ?; SunOS*)*]
+Parent=Netscape 4.7
+MinorVer=75
+Platform=SunOS
+
+[Mozilla/4.76*(Macintosh; ?; PPC)*]
+Parent=Netscape 4.7
+MinorVer=76
+Platform=MacPPC
+
+[Mozilla/4.76*(Win95; ?)*]
+Parent=Netscape 4.7
+MinorVer=76
+Platform=Win95
+
+[Mozilla/4.76*(Win98; ?)*]
+Parent=Netscape 4.7
+MinorVer=76
+Platform=Win98
+
+[Mozilla/4.76*(Windows NT 4.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=76
+Platform=WinNT
+Win32=true
+
+[Mozilla/4.76*(Windows NT 5.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=76
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.76*(Windows NT 5.1; ?)*]
+Parent=Netscape 4.7
+MinorVer=76
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.76*(WinNT; ?)*]
+Parent=Netscape 4.7
+MinorVer=76
+Platform=WinNT
+
+[Mozilla/4.76*(X11*)*]
+Parent=Netscape 4.7
+MinorVer=76
+Platform=Linux
+
+[Mozilla/4.76*(X11; ?; SunOS*)*]
+Parent=Netscape 4.7
+MinorVer=76
+Platform=SunOS
+
+[Mozilla/4.77*(Macintosh; ?; PPC)*]
+Parent=Netscape 4.7
+MinorVer=77
+Platform=MacPPC
+
+[Mozilla/4.77*(Win95; ?)*]
+Parent=Netscape 4.7
+MinorVer=77
+Platform=Win95
+
+[Mozilla/4.77*(Win98; ?)*]
+Parent=Netscape 4.7
+MinorVer=77
+Platform=Win98
+
+[Mozilla/4.77*(Windows NT 4.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=77
+Platform=WinNT
+Win32=true
+
+[Mozilla/4.77*(Windows NT 5.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=77
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.77*(Windows NT 5.1; ?)*]
+Parent=Netscape 4.7
+MinorVer=77
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.77*(WinNT; ?)*]
+Parent=Netscape 4.7
+MinorVer=77
+Platform=WinNT
+
+[Mozilla/4.77*(X11*)*]
+Parent=Netscape 4.7
+MinorVer=77
+Platform=Linux
+
+[Mozilla/4.77*(X11; ?; SunOS*)*]
+Parent=Netscape 4.7
+MinorVer=77
+Platform=SunOS
+
+[Mozilla/4.78*(Macintosh; ?; PPC)*]
+Parent=Netscape 4.7
+MinorVer=78
+Platform=MacPPC
+
+[Mozilla/4.78*(Win95; ?)*]
+Parent=Netscape 4.7
+MinorVer=78
+Platform=Win95
+
+[Mozilla/4.78*(Win98; ?)*]
+Parent=Netscape 4.7
+MinorVer=78
+Platform=Win98
+
+[Mozilla/4.78*(Windows NT 4.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=78
+Platform=WinNT
+Win32=true
+
+[Mozilla/4.78*(Windows NT 5.0; ?)*]
+Parent=Netscape 4.7
+MinorVer=78
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.78*(Windows NT 5.1; ?)*]
+Parent=Netscape 4.7
+MinorVer=78
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.78*(WinNT; ?)*]
+Parent=Netscape 4.7
+MinorVer=78
+Platform=WinNT
+
+[Mozilla/4.78*(X11*)*]
+Parent=Netscape 4.7
+MinorVer=78
+Platform=Linux
+
+[Mozilla/4.78*(X11; ?; SunOS*)*]
+Parent=Netscape 4.7
+MinorVer=78
+Platform=SunOS
+
+[Mozilla/4.79*(Macintosh; ?; PPC)*]
+Parent=Netscape 4.7
+Version=4.79
+MinorVer=79
+Platform=MacPPC
+
+[Mozilla/4.79*(Win95; ?)*]
+Parent=Netscape 4.7
+Version=4.79
+MinorVer=79
+Platform=Win95
+
+[Mozilla/4.79*(Win98; ?)*]
+Parent=Netscape 4.7
+Version=4.79
+MinorVer=79
+Platform=Win98
+
+[Mozilla/4.79*(Windows NT 4.0; ?)*]
+Parent=Netscape 4.7
+Version=4.79
+MinorVer=79
+Platform=WinNT
+Win32=true
+
+[Mozilla/4.79*(Windows NT 5.0; ?)*]
+Parent=Netscape 4.7
+Version=4.79
+MinorVer=79
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.79*(Windows NT 5.1; ?)*]
+Parent=Netscape 4.7
+Version=4.79
+MinorVer=79
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.79*(WinNT; ?)*]
+Parent=Netscape 4.7
+Version=4.79
+MinorVer=79
+Platform=WinNT
+
+[Mozilla/4.79*(X11*)*]
+Parent=Netscape 4.7
+Version=4.79
+MinorVer=79
+Platform=Linux
+
+[Mozilla/4.79*(X11; ?; SunOS*)*]
+Parent=Netscape 4.7
+Version=4.79
+MinorVer=79
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 4.8
+
+[Netscape 4.8]
+Parent=DefaultProperties
+Browser=Netscape
+Version=4.8
+MajorVer=4
+MinorVer=8
+Frames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=1
+supportsCSS=true
+
+[Mozilla/4.8*(Macintosh; ?; MacPPC)*]
+Parent=Netscape 4.8
+Platform=MacPPC
+
+[Mozilla/4.8*(Macintosh; ?; PPC Mac OS X*]
+Parent=Netscape 4.8
+Platform=MacOSX
+
+[Mozilla/4.8*(Macintosh; ?; PPC)*]
+Parent=Netscape 4.8
+Platform=MacPPC
+
+[Mozilla/4.8*(Win95; *)*]
+Parent=Netscape 4.8
+
+[Mozilla/4.8*(Win98; *)*]
+Parent=Netscape 4.8
+Platform=Win98
+
+[Mozilla/4.8*(Windows NT 4.0; *)*]
+Parent=Netscape 4.8
+Platform=WinNT
+Win32=true
+
+[Mozilla/4.8*(Windows NT 5.0; *)*]
+Parent=Netscape 4.8
+Platform=Win2000
+Win32=true
+
+[Mozilla/4.8*(Windows NT 5.1; *)*]
+Parent=Netscape 4.8
+Platform=WinXP
+Win32=true
+
+[Mozilla/4.8*(WinNT; *)*]
+Parent=Netscape 4.8
+Platform=WinNT
+
+[Mozilla/4.8*(X11; *)*]
+Parent=Netscape 4.8
+Platform=Linux
+
+[Mozilla/4.8*(X11; *SunOS*)*]
+Parent=Netscape 4.8
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.0
+
+[Netscape 6.0]
+Parent=DefaultProperties
+Browser=Netscape
+Version=6.0
+MajorVer=6
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=MacPPC
+
+[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=Win7
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=Win7
+
+[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.0*]
+Parent=Netscape 6.0
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.1
+
+[Netscape 6.1]
+Parent=DefaultProperties
+Browser=Netscape
+Version=6.1
+MajorVer=6
+MinorVer=1
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=MacPPC
+
+[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=Win7
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=Win7
+
+[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.1*]
+Parent=Netscape 6.1
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 6.2
+
+[Netscape 6.2]
+Parent=DefaultProperties
+Browser=Netscape
+Version=6.2
+MajorVer=6
+MinorVer=2
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X*) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=MacPPC
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=Win7
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=Win7
+
+[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape6/6.2*]
+Parent=Netscape 6.2
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.0
+
+[Netscape 7.0]
+Parent=DefaultProperties
+Browser=Netscape
+Version=7.0
+MajorVer=7
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=MacPPC
+
+[Mozilla/5.0 (Windows; ?; Win*9x 4.90; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=Win7
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=Win7
+
+[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=Linux
+
+[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.0*]
+Parent=Netscape 7.0
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.1
+
+[Netscape 7.1]
+Parent=DefaultProperties
+Browser=Netscape
+Version=7.1
+MajorVer=7
+MinorVer=1
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/7.1]
+Parent=Netscape 7.1
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=MacPPC
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=Win7
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=Win7
+
+[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=Linux
+
+[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.1*]
+Parent=Netscape 7.1
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 7.2
+
+[Netscape 7.2]
+Parent=DefaultProperties
+Browser=Netscape
+Version=7.2
+MajorVer=7
+MinorVer=2
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=MacPPC
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=Win7
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=Win7
+
+[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=Linux
+
+[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/7.2*]
+Parent=Netscape 7.2
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 8.0
+
+[Netscape 8.0]
+Parent=DefaultProperties
+Browser=Netscape
+Version=8.0
+MajorVer=8
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X Mach-O; *; rv:*) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=MacPPC
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=Win7
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=Win7
+
+[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=Linux
+
+[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/8.0*]
+Parent=Netscape 8.0
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netscape 8.1
+
+[Netscape 8.1]
+Parent=DefaultProperties
+Browser=Netscape
+Version=8.1
+MajorVer=8
+MinorVer=1
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; ?; PPC;*) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=MacPPC
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win95;*) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win9x 4.90; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 4.0; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=WinVista
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=Win7
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.0; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.1; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT5.2; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT6.0; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=WinVista
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT6.1; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=Win7
+
+[Mozilla/5.0 (X11; ?; *) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=Linux
+
+[Mozilla/5.0 (X11; ?; SunOS*) Gecko/* Netscape*/8.1*]
+Parent=Netscape 8.1
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.0
+
+[SeaMonkey 1.0]
+Parent=DefaultProperties
+Browser=SeaMonkey
+Version=1.0
+MajorVer=1
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
+Parent=SeaMonkey 1.0
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
+Parent=SeaMonkey 1.0
+Platform=WinME
+
+[Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
+Parent=SeaMonkey 1.0
+Platform=Win98
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
+Parent=SeaMonkey 1.0
+Platform=Win2000
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
+Parent=SeaMonkey 1.0
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
+Parent=SeaMonkey 1.0
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
+Parent=SeaMonkey 1.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
+Parent=SeaMonkey 1.0
+Platform=Win7
+
+[Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
+Parent=SeaMonkey 1.0
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/20060221 SeaMonkey/1.0*]
+Parent=SeaMonkey 1.0
+Platform=Linux
+
+[Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.0*]
+Parent=SeaMonkey 1.0
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 1.1
+
+[SeaMonkey 1.1]
+Parent=DefaultProperties
+Browser=SeaMonkey
+Version=1.1
+MajorVer=1
+MinorVer=1
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
+Parent=SeaMonkey 1.1
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
+Parent=SeaMonkey 1.1
+Platform=WinME
+
+[Mozilla/5.0 (Windows; ?; Win98; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
+Parent=SeaMonkey 1.1
+Platform=Win98
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
+Parent=SeaMonkey 1.1
+Platform=Win2000
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
+Parent=SeaMonkey 1.1
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
+Parent=SeaMonkey 1.1
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
+Parent=SeaMonkey 1.1
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
+Parent=SeaMonkey 1.1
+Platform=Win7
+
+[Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
+Parent=SeaMonkey 1.1
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; ?; Linux*; *; rv:1.8*) Gecko/20060221 SeaMonkey/1.1*]
+Parent=SeaMonkey 1.1
+Platform=Linux
+
+[Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.8*) Gecko/* SeaMonkey/1.1*]
+Parent=SeaMonkey 1.1
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SeaMonkey 2.0
+
+[SeaMonkey 2.0]
+Parent=DefaultProperties
+Browser=SeaMonkey
+Version=2.0
+MajorVer=2
+Alpha=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
+Parent=SeaMonkey 2.0
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
+Parent=SeaMonkey 2.0
+Platform=WinME
+
+[Mozilla/5.0 (Windows; ?; Win98; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
+Parent=SeaMonkey 2.0
+Platform=Win98
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
+Parent=SeaMonkey 2.0
+Platform=Win2000
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
+Parent=SeaMonkey 2.0
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
+Parent=SeaMonkey 2.0
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.0; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
+Parent=SeaMonkey 2.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; ?; Windows NT 6.1; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
+Parent=SeaMonkey 2.0
+Platform=Win7
+
+[Mozilla/5.0 (X11; ?; FreeBSD*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
+Parent=SeaMonkey 2.0
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; ?; Linux*; *; rv:1.9*) Gecko/20060221 SeaMonkey/2.0*]
+Parent=SeaMonkey 2.0
+Platform=Linux
+
+[Mozilla/5.0 (X11; ?; SunOS*; *; rv:1.9*) Gecko/* SeaMonkey/2.0*]
+Parent=SeaMonkey 2.0
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 1.0
+
+[Flock 1.0]
+Parent=DefaultProperties
+Browser=Flock
+Version=1.0
+MajorVer=1
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
+Parent=Flock 1.0
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
+Parent=Flock 1.0
+Platform=WinME
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
+Parent=Flock 1.0
+Platform=Win2000
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
+Parent=Flock 1.0
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
+Parent=Flock 1.0
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
+Parent=Flock 1.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/2.* Flock/1.*]
+Parent=Flock 1.0
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Flock 2.0
+
+[Flock 2.0]
+Parent=DefaultProperties
+Browser=Flock
+Version=2.0
+MajorVer=2
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; U; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
+Parent=Flock 2.0
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; U; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
+Parent=Flock 2.0
+Platform=WinME
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
+Parent=Flock 2.0
+Platform=Win2000
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
+Parent=Flock 2.0
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
+Parent=Flock 2.0
+Platform=Win2003
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
+Parent=Flock 2.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.1*; *; rv:1.*) Gecko/* Firefox/3.* Flock/2.*]
+Parent=Flock 2.0
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sleipnir 2.0
+
+[Sleipnir]
+Parent=DefaultProperties
+Browser=Sleipnir
+Version=2.0
+MajorVer=2
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.0*) Sleipnir/2.*]
+Parent=Sleipnir
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.1*) Sleipnir/2.*]
+Parent=Sleipnir
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 5.2*) Sleipnir/2.*]
+Parent=Sleipnir
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.0*) Sleipnir/2.*]
+Parent=Sleipnir
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE ?.0; Windows NT 6.1*) Sleipnir/2.*]
+Parent=Sleipnir
+Platform=Win7
+
+[Sleipnir*]
+Parent=Sleipnir
+
+[Sleipnir/2.*]
+Parent=Sleipnir
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fennec 1.0
+
+[Fennec 1.0]
+Parent=DefaultProperties
+Browser=Firefox Mobile
+Version=1.0
+MajorVer=1
+Alpha=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1; *; rv:1.9*) Gecko/* Fennec/1.0*]
+Parent=Fennec 1.0
+Platform=WinXP
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0; *; rv:1.9*) Gecko/* Fennec/1.0*]
+Parent=Fennec 1.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.1; *; rv:1.9*) Gecko/* Fennec/1.0*]
+Parent=Fennec 1.0
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firebird
+
+[Firebird]
+Parent=DefaultProperties
+Browser=Firebird
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Linux; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
+Parent=Firebird
+
+[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firebird/0.*]
+Parent=Firebird
+
+[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
+Parent=Firebird
+
+[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firebird/0.*]
+Parent=Firebird
+
+[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firebird/0.*]
+Parent=Firebird
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
+Parent=Firebird
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firebird/0.*]
+Parent=Firebird
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firebird/0.*]
+Parent=Firebird
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
+Parent=Firebird
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Firebird Browser/0.*]
+Parent=Firebird
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Firebird/0.*]
+Parent=Firebird
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
+Parent=Firebird
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.?; rv:1.*) Gecko/* Firebird/0.*]
+Parent=Firebird
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.*; *; rv:1.*) Gecko/* Firebird/0.*]
+Parent=Firebird
+Win32=true
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firebird/0.*]
+Parent=Firebird
+Win32=true
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
+Parent=Firebird
+Win32=true
+
+[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firebird/0.*]
+Parent=Firebird
+
+[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
+Parent=Firebird
+
+[Mozilla/5.0 (X11; *; IRIX*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
+Parent=Firebird
+
+[Mozilla/5.0 (X11; *; Linux*; *; rv:1.*) Gecko/* Firebird/0.*]
+Parent=Firebird
+
+[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
+Parent=Firebird
+
+[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firebird/0.*]
+Parent=Firebird
+
+[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Mozilla Firebird/0.*]
+Parent=Firebird
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox
+
+[Firefox]
+Parent=DefaultProperties
+Browser=Firefox
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+ecmascriptversion=1.3
+w3cdomversion=1.0
+
+[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Platform=MacOSX
+
+[Mozilla/5.0 (Macintosh; *; *Mac OS X*; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+
+[Mozilla/5.0 (OS/2; *; Warp*; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+
+[Mozilla/5.0 (Windows NT 5.?; ?; rv:1.*) Gecko/* Firefox]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (Windows; *; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win 9x 4.90; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win95; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win98; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.*; *; rv:1.*) Gecko/* Deer Park/Alpha*]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.?; *; rv:1.*) Gecko/* Firefox/10.5]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.0; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Platform=WinVista
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.0*; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Win32=true
+
+[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *; FreeBSD*; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+
+[Mozilla/5.0 (X11; *; HP-UX*; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Platform=HP-UX
+
+[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Platform=IRIX64
+
+[Mozilla/5.0 (X11; *; Linux*; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+
+[Mozilla/5.0 (X11; *; Linux*; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+
+[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/0.*]
+Parent=Firefox
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.0
+
+[Firefox 1.0]
+Parent=DefaultProperties
+Browser=Firefox
+Version=1.0
+MajorVer=1
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+ecmascriptversion=1.3
+w3cdomversion=1.0
+
+[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=MacPPC
+
+[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=MacOSX
+
+[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=OS/2
+
+[Mozilla/5.0 (Windows; *; Win 9x 4.90*; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.0*; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=WinVista
+Win32=true
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=Linux
+
+[Mozilla/5.0 (X11; *; *Linux*; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=Linux
+
+[Mozilla/5.0 (X11; *; DragonFly*; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+
+[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=HP-UX
+
+[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=IRIX64
+
+[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.0*]
+Parent=Firefox 1.0
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.4
+
+[Firefox 1.4]
+Parent=DefaultProperties
+Browser=Firefox
+Version=1.4
+MajorVer=1
+MinorVer=4
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+ecmascriptversion=1.3
+w3cdomversion=1.0
+
+[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=Linux
+
+[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=MacOSX
+
+[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=OS/2
+
+[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win95*; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=WinVista
+Win32=true
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=Linux
+
+[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=HP-UX
+
+[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=IRIX64
+
+[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.4*]
+Parent=Firefox 1.4
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.5
+
+[Firefox 1.5]
+Parent=DefaultProperties
+Browser=Firefox
+Version=1.5
+MajorVer=1
+MinorVer=5
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+ecmascriptversion=1.5
+w3cdomversion=1.0
+
+[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=Linux
+
+[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=MacOSX
+
+[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=OS/2
+
+[Mozilla/5.0 (rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+
+[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win95; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win98; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2 x64; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=WinVista
+Win32=true
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=Linux
+
+[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=HP-UX
+
+[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=IRIX64
+
+[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.*) Gecko/* Firefox/1.5*]
+Parent=Firefox 1.5
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 2.0
+
+[Firefox 2.0]
+Parent=DefaultProperties
+Browser=Firefox
+Version=2.0
+MajorVer=2
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+ecmascriptversion=1.5
+w3cdomversion=1.0
+
+[Mozilla/5.0 (Linux; *; PPC*; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=Linux
+
+[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=MacOSX
+
+[Mozilla/5.0 (OS/2; *; Warp*; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=OS/2
+
+[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win95; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win98; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=WinVista
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=Win7
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=Linux
+
+[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=HP-UX
+
+[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=IRIX64
+
+[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.8*) Gecko/* Firefox/2.0*]
+Parent=Firefox 2.0
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.0
+
+[Firefox 3.0]
+Parent=DefaultProperties
+Browser=Firefox
+Version=3.0
+MajorVer=3
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+ecmascriptversion=1.5
+w3cdomversion=1.0
+
+[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.0; *; rv:1.*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=Win2000
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=WinVista
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=Win7
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=WinXP
+Win32=false
+Win64=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=Win2003
+Win32=false
+Win64=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=Win7
+
+[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=Linux
+
+[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=HP-UX
+
+[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=IRIX64
+
+[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.0*]
+Parent=Firefox 3.0
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.1
+
+[Firefox 3.1]
+Parent=DefaultProperties
+Browser=Firefox
+Version=3.1
+MajorVer=3
+MinorVer=1
+Beta=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=WinVista
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=Win7
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=WinXP
+Win32=false
+Win64=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=Win2003
+Win32=false
+Win64=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=Win7
+
+[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=Linux
+
+[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=HP-UX
+
+[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=IRIX64
+
+[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9*) Gecko/* Firefox/3.1*]
+Parent=Firefox 3.1
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 3.5
+
+[Firefox 3.5]
+Parent=DefaultProperties
+Browser=Firefox
+Version=3.5
+MajorVer=3
+MinorVer=5
+Beta=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=3
+supportsCSS=true
+
+[Mozilla/5.0 (Macintosh; *; *Mac OS X*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.0; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=WinVista
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 6.1; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=Win7
+
+[Mozilla/5.0 (Windows; *; WinNT4.0; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1 x64; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=WinXP
+Win32=false
+Win64=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.2 x64; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=Win2003
+Win32=false
+Win64=true
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.0 x64; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=WinVista
+
+[Mozilla/5.0 (Windows; U; Windows NT 6.1 x64; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=Win7
+
+[Mozilla/5.0 (X11; *; *Linux*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=Linux
+
+[Mozilla/5.0 (X11; *; FreeBSD*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *; HP-UX*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=HP-UX
+
+[Mozilla/5.0 (X11; *; IRIX64*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=IRIX64
+
+[Mozilla/5.0 (X11; *; OpenBSD*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *; SunOS*; *; rv:1.9.*) Gecko/* Firefox/3.5b*]
+Parent=Firefox 3.5
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Phoenix
+
+[Phoenix]
+Parent=DefaultProperties
+Browser=Phoenix
+Version=0.5
+MinorVer=5
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (Windows; *; Win 9x 4.90; *; rv:1.4*) Gecko/* Phoenix/0.5*]
+Parent=Phoenix
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Win98; *; rv:1.4*) Gecko/* Phoenix/0.5*]
+Parent=Phoenix
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.0*; *; rv:1.4*) Gecko/* Phoenix/0.5*]
+Parent=Phoenix
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.1; *; rv:1.4*) Gecko/* Phoenix/0.5*]
+Parent=Phoenix
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; *; Windows NT 5.2*; *; rv:1.4*) Gecko/* Phoenix/0.5*]
+Parent=Phoenix
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (X11; *; Linux*; *; rv:1.4*) Gecko/* Phoenix/0.5*]
+Parent=Phoenix
+Platform=Linux
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iceweasel
+
+[Iceweasel]
+Parent=DefaultProperties
+Browser=Iceweasel
+Platform=Linux
+Beta=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (X11; U; Linux*; *; rv:1.8*) Gecko/* Iceweasel/2.0* (Debian-*)]
+Parent=Iceweasel
+Version=2.0
+MajorVer=2
+MinorVer=0
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.0
+
+[Mozilla 1.0]
+Parent=DefaultProperties
+Browser=Mozilla
+Version=1.0
+MajorVer=1
+Beta=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (*rv:1.0.*) Gecko/*]
+Parent=Mozilla 1.0
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.1
+
+[Mozilla 1.1]
+Parent=DefaultProperties
+Browser=Mozilla
+Version=1.1
+MajorVer=1
+MinorVer=1
+Beta=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (*rv:1.1.*) Gecko/*]
+Parent=Mozilla 1.1
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.2
+
+[Mozilla 1.2]
+Parent=DefaultProperties
+Browser=Mozilla
+Version=1.2
+MajorVer=1
+MinorVer=2
+Beta=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (*rv:1.2.*) Gecko/*]
+Parent=Mozilla 1.2
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.3
+
+[Mozilla 1.3]
+Parent=DefaultProperties
+Browser=Mozilla
+Version=1.3
+MajorVer=1
+MinorVer=3
+Beta=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (*rv:1.3.*) Gecko/*]
+Parent=Mozilla 1.3
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.4
+
+[Mozilla 1.4]
+Parent=DefaultProperties
+Browser=Mozilla
+Version=1.4
+MajorVer=1
+MinorVer=4
+Beta=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (*rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+Platform=Win31
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+Platform=Win31
+Win16=true
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win95; *rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *Linux*; *rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+Platform=Linux
+
+[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *SunOS*; *rv:1.4*) Gecko/*]
+Parent=Mozilla 1.4
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.5
+
+[Mozilla 1.5]
+Parent=DefaultProperties
+Browser=Mozilla
+Version=1.5
+MajorVer=1
+MinorVer=5
+Beta=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (*rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+Platform=Win31
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+Platform=Win31
+Win16=true
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win95; *rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *Linux*; *rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+Platform=Linux
+
+[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *SunOS*; *rv:1.5*) Gecko/*]
+Parent=Mozilla 1.5
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.6
+
+[Mozilla 1.6]
+Parent=DefaultProperties
+Browser=Mozilla
+Version=1.6
+MajorVer=1
+MinorVer=6
+Beta=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (*rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+Platform=Win31
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+Platform=Win31
+Win16=true
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win95; *rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *Linux*; *rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+Platform=Linux
+
+[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *SunOS*; *rv:1.6*) Gecko/*]
+Parent=Mozilla 1.6
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.7
+
+[Mozilla 1.7]
+Parent=DefaultProperties
+Browser=Mozilla
+Version=1.7
+MajorVer=1
+MinorVer=7
+Beta=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+ecmascriptversion=1.5
+w3cdomversion=1.0
+
+[Mozilla/5.0 (*rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=Win31
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=Win31
+Win16=true
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win95; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *Linux*; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=Linux
+
+[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *SunOS*; *rv:1.7*) Gecko/*]
+Parent=Mozilla 1.7
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.8
+
+[Mozilla 1.8]
+Parent=DefaultProperties
+Browser=Mozilla
+Version=1.8
+MajorVer=1
+MinorVer=8
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+ecmascriptversion=1.5
+w3cdomversion=1.0
+
+[Mozilla/5.0 (*rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Platform=Win31
+Win16=true
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win95; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *Linux*; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Platform=Linux
+
+[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *SunOS*; *rv:1.8*) Gecko/*]
+Parent=Mozilla 1.8
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mozilla 1.9
+
+[Mozilla 1.9]
+Parent=DefaultProperties
+Browser=Mozilla
+Version=1.9
+MajorVer=1
+MinorVer=9
+Alpha=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+JavaApplets=true
+JavaScript=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/5.0 (*rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+
+[Mozilla/5.0 (Macintosh; ?; *Mac OS X*; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Platform=MacOSX
+
+[Mozilla/5.0 (Windows; ?; Win 9x 4.90; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Platform=WinME
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win3.1; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win3.11; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Platform=Win31
+Win16=true
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win95; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Platform=Win95
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Win98; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Platform=Win98
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.0; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Platform=Win2000
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Platform=WinXP
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Platform=Win2003
+Win32=true
+
+[Mozilla/5.0 (Windows; ?; WinNT4.0; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Platform=WinNT
+Win32=true
+
+[Mozilla/5.0 (X11; *FreeBSD*; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Platform=FreeBSD
+
+[Mozilla/5.0 (X11; *Linux*; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Platform=Linux
+
+[Mozilla/5.0 (X11; *OpenBSD*; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Platform=OpenBSD
+
+[Mozilla/5.0 (X11; *SunOS*; *rv:1.9*) Gecko/*]
+Parent=Mozilla 1.9
+Platform=SunOS
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE Mac
+
+[IE Mac]
+Parent=DefaultProperties
+Browser=IE
+Platform=MacPPC
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+JavaApplets=true
+JavaScript=true
+CssVersion=1
+supportsCSS=true
+
+[Mozilla/?.? (compatible; MSIE 4.0*; *Mac_PowerPC*]
+Parent=IE Mac
+Version=4.0
+MajorVer=4
+MinorVer=0
+
+[Mozilla/?.? (compatible; MSIE 4.5*; *Mac_PowerPC*]
+Parent=IE Mac
+Version=4.5
+MajorVer=4
+MinorVer=5
+
+[Mozilla/?.? (compatible; MSIE 5.0*; *Mac_PowerPC*]
+Parent=IE Mac
+Version=5.0
+MajorVer=5
+MinorVer=0
+
+[Mozilla/?.? (compatible; MSIE 5.1*; *Mac_PowerPC*]
+Parent=IE Mac
+Version=5.1
+MajorVer=5
+MinorVer=1
+
+[Mozilla/?.? (compatible; MSIE 5.2*; *Mac_PowerPC*]
+Parent=IE Mac
+Version=5.2
+MajorVer=5
+MinorVer=2
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 5.5
+
+[AOL 9.0/IE 5.5]
+Parent=DefaultProperties
+Browser=AOL
+Version=5.5
+MajorVer=5
+MinorVer=5
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+CssVersion=2
+supportsCSS=true
+AOL=true
+aolVersion=9.0
+ecmascriptversion=1.3
+w3cdomversion=1.0
+
+[Mozilla/?.* (?compatible; *MSIE 5.5; *AOL 9.0*)*]
+Parent=AOL 9.0/IE 5.5
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Win 9x 4.90*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 95*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win95
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win98
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 4.0*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinNT
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 5.5
+Platform=WinVista
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 6.0
+
+[AOL 9.0/IE 6.0]
+Parent=DefaultProperties
+Browser=AOL
+Version=6.0
+MajorVer=6
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+CssVersion=2
+supportsCSS=true
+AOL=true
+aolVersion=9.0
+ecmascriptversion=1.3
+w3cdomversion=1.0
+
+[Mozilla/?.* (?compatible; *MSIE 6.0; *AOL 9.0*)*]
+Parent=AOL 9.0/IE 6.0
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Win 9x 4.90*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 95*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win95
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win98
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 4.0*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinNT
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 6.0
+Platform=WinVista
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AOL 9.0/IE 7.0
+
+[AOL 9.0/IE 7.0]
+Parent=DefaultProperties
+Browser=AOL
+Version=7.0
+MajorVer=7
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+CssVersion=2
+supportsCSS=true
+AOL=true
+aolVersion=9.0
+
+[Mozilla/?.* (?compatible; *MSIE 7.0; *AOL 9.0*)*]
+Parent=AOL 9.0/IE 7.0
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Win 9x 4.90*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 95*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win95
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win98
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows 98; Win 9x 4.90*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 4.0*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinNT
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.0*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.01*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.1*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 5.2*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 1*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *AOL 9.0; *Windows NT 6.0*.NET CLR 2*.NET CLR 1*)*]
+Parent=AOL 9.0/IE 7.0
+Platform=WinVista
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant Browser
+
+[Avant Browser]
+Parent=DefaultProperties
+Browser=Avant Browser
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+CssVersion=2
+supportsCSS=true
+
+[Advanced Browser (http://www.avantbrowser.com)]
+Parent=Avant Browser
+
+[Avant Browser*]
+Parent=Avant Browser
+
+[Avant Browser/*]
+Parent=Avant Browser
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 4.01
+
+[IE 4.01]
+Parent=DefaultProperties
+Browser=IE
+Version=4.01
+MajorVer=4
+MinorVer=01
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/?.* (?compatible; *MSIE 4.01*)*]
+Parent=IE 4.01
+
+[Mozilla/4.0 (compatible; MSIE 4.01; *Windows 95*)*]
+Parent=IE 4.01
+Platform=Win95
+
+[Mozilla/4.0 (compatible; MSIE 4.01; *Windows 98*)*]
+Parent=IE 4.01
+Platform=Win98
+
+[Mozilla/4.0 (compatible; MSIE 4.01; *Windows 98; Win 9x 4.90;*)*]
+Parent=IE 4.01
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 4.0*)*]
+Parent=IE 4.01
+Platform=WinNT
+
+[Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 5.0*)*]
+Parent=IE 4.01
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 4.01; *Windows NT 5.01*)*]
+Parent=IE 4.01
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 4.01; Windows NT)]
+Parent=IE 4.01
+Platform=WinNT
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.0
+
+[IE 5.0]
+Parent=DefaultProperties
+Browser=IE
+Version=5.0
+MajorVer=5
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/?.* (?compatible; *MSIE 5.0*)*]
+Parent=IE 5.0
+
+[Mozilla/4.0 (compatible; MSIE 5.0; *Windows 95*)*]
+Parent=IE 5.0
+Platform=Win95
+
+[Mozilla/4.0 (compatible; MSIE 5.0; *Windows 98*)*]
+Parent=IE 5.0
+Platform=Win98
+
+[Mozilla/4.0 (compatible; MSIE 5.0; *Windows 98; Win 9x 4.90;*)*]
+Parent=IE 5.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 4.0*)*]
+Parent=IE 5.0
+Platform=WinNT
+
+[Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 5.0*)*]
+Parent=IE 5.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.0; *Windows NT 5.01*)*]
+Parent=IE 5.0
+Platform=Win2000
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.01
+
+[IE 5.01]
+Parent=DefaultProperties
+Browser=IE
+Version=5.01
+MajorVer=5
+MinorVer=01
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+CssVersion=2
+supportsCSS=true
+
+[Mozilla/?.* (?compatible; *MSIE 5.01*)*]
+Parent=IE 5.01
+
+[Mozilla/4.0 (compatible; MSIE 5.01; *Windows 95*)*]
+Parent=IE 5.01
+Platform=Win95
+
+[Mozilla/4.0 (compatible; MSIE 5.01; *Windows 98*)*]
+Parent=IE 5.01
+Platform=Win98
+
+[Mozilla/4.0 (compatible; MSIE 5.01; *Windows 98; Win 9x 4.90;*)*]
+Parent=IE 5.01
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 4.0*)*]
+Parent=IE 5.01
+Platform=WinNT
+
+[Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 5.0*)*]
+Parent=IE 5.01
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.01; *Windows NT 5.01*)*]
+Parent=IE 5.01
+Platform=Win2000
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 5.5
+
+[IE 5.5]
+Parent=DefaultProperties
+Browser=IE
+Version=5.5
+MajorVer=5
+MinorVer=5
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+CssVersion=2
+supportsCSS=true
+ecmascriptversion=1.2
+w3cdomversion=1.0
+
+[Mozilla/?.* (?compatible; *MSIE 5.5*)*]
+Parent=IE 5.5
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *Windows 95*)*]
+Parent=IE 5.5
+Platform=Win95
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *Windows 98*)*]
+Parent=IE 5.5
+Platform=Win98
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *Windows 98; Win 9x 4.90*)*]
+Parent=IE 5.5
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 4.0*)*]
+Parent=IE 5.5
+Platform=WinNT
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.0*)*]
+Parent=IE 5.5
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.01*)*]
+Parent=IE 5.5
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.1*)*]
+Parent=IE 5.5
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 5.5; *Windows NT 5.2*)*]
+Parent=IE 5.5
+Platform=Win2003
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 6.0
+
+[IE 6.0]
+Parent=DefaultProperties
+Browser=IE
+Version=6.0
+MajorVer=6
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+CssVersion=2
+supportsCSS=true
+ecmascriptversion=1.2
+w3cdomversion=1.0
+msdomversion=6.0
+
+[Mozilla/?.* (?compatible; *MSIE 6.0*)*]
+Parent=IE 6.0
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows 95*)*]
+Parent=IE 6.0
+Platform=Win95
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows 98*)*]
+Parent=IE 6.0
+Platform=Win98
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows 98; Win 9x 4.90*)*]
+Parent=IE 6.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 4.0*)*]
+Parent=IE 6.0
+Platform=WinNT
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.0*)*]
+Parent=IE 6.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.01*)*]
+Parent=IE 6.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.1*)*]
+Parent=IE 6.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2*)*]
+Parent=IE 6.0
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2;*Win64;*)*]
+Parent=IE 6.0
+Platform=WinXP
+Win32=false
+Win64=true
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2;*WOW64;*)*]
+Parent=IE 6.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.0*)*]
+Parent=IE 6.0
+Platform=WinVista
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 7.0
+
+[IE 7.0]
+Parent=DefaultProperties
+Browser=IE
+Version=7.0
+MajorVer=7
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+CssVersion=2
+supportsCSS=true
+ecmascriptversion=1.2
+msdomversion=7.0
+w3cdomversion=1.0
+
+[Mozilla/?.* (?compatible; *MSIE 7.0*)*]
+Parent=IE 7.0
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows 98*)*]
+Parent=IE 7.0
+Platform=Win98
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows 98; Win 9x 4.90;*)*]
+Parent=IE 7.0
+Platform=WinME
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 4.0*)*]
+Parent=IE 7.0
+Platform=WinNT
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0*)*]
+Parent=IE 7.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.01*)*]
+Parent=IE 7.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*)*]
+Parent=IE 7.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*)*]
+Parent=IE 7.0
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64;*)*]
+Parent=IE 7.0
+Platform=WinXP
+Win32=false
+Win64=true
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*WOW64;*)*]
+Parent=IE 7.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*)*]
+Parent=IE 7.0
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*)*]
+Parent=IE 7.0
+Platform=Win7
+
+[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/4.0; *)*]
+Parent=IE 7.0
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 8.0
+
+[IE 8.0]
+Parent=DefaultProperties
+Browser=IE
+Version=8.0
+MajorVer=8
+Win32=true
+Frames=true
+IFrames=true
+Tables=true
+Cookies=true
+BackgroundSounds=true
+CDF=true
+VBScript=true
+JavaApplets=true
+JavaScript=true
+ActiveXControls=true
+CssVersion=3
+supportsCSS=true
+ecmascriptversion=1.2
+msdomversion=8.0
+w3cdomversion=1.0
+
+[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0*)*]
+Parent=IE 8.0
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Win32*)*]
+Parent=IE 8.0
+Platform=Win32
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.0*)*]
+Parent=IE 8.0
+Platform=Win2000
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1*)*]
+Parent=IE 8.0
+Platform=WinXP
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2*)*]
+Parent=IE 8.0
+Platform=Win2003
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0*)*]
+Parent=IE 8.0
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0*)*]
+Parent=IE 8.0
+Platform=WinVista
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0*)*]
+Parent=IE 8.0
+Platform=WinVista
+Win32=false
+Win64=true
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0*)*]
+Parent=IE 8.0
+Platform=WinVista
+Win64=false
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1*)*]
+Parent=IE 8.0
+Platform=Win7
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0*)*]
+Parent=IE 8.0
+Platform=Win7
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0*)*]
+Parent=IE 8.0
+Platform=Win7
+Win32=false
+Win64=true
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0*)*]
+Parent=IE 8.0
+Platform=Win7
+Win64=false
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 7.0; Trident/4.0*)*]
+Parent=IE 8.0
+Platform=Win7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Default Browser
+
+[*]
+Browser=Default Browser
+Version=0
+MajorVer=0
+MinorVer=0
+Platform=unknown
+Alpha=false
+Beta=false
+Win16=false
+Win32=false
+Win64=false
+Frames=true
+IFrames=false
+Tables=true
+Cookies=false
+BackgroundSounds=false
+CDF=false
+VBScript=false
+JavaApplets=false
+JavaScript=false
+ActiveXControls=false
+Stripper=false
+isBanned=false
+isMobileDevice=false
+isSyndicationReader=false
+Crawler=false
+CssVersion=0
+supportsCSS=false
+AOL=false
+aolVersion=0
+AuthenticodeUpdate=0
+CSS=0
+WAP=false
+netCLR=false
+ClrVersion=0
+ECMAScriptVersion=0.0
+W3CDOMVersion=0.0
diff --git a/Test Build/Test Build_Data/Mono/etc/mono/config b/Test Build/Test Build_Data/Mono/etc/mono/config
new file mode 100644
index 00000000..57dac1fd
--- /dev/null
+++ b/Test Build/Test Build_Data/Mono/etc/mono/config
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Test Build/Test Build_Data/Mono/etc/mono/mconfig/config.xml b/Test Build/Test Build_Data/Mono/etc/mono/mconfig/config.xml
new file mode 100644
index 00000000..a3df3b5e
--- /dev/null
+++ b/Test Build/Test Build_Data/Mono/etc/mono/mconfig/config.xml
@@ -0,0 +1,616 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+ ]]>
+
+
+
+
+
+ ]]>
+
+
+
+
+
+]]>
+
+
+
+
+
+]]>
+
+
+
+
+
+]]>
+
+
+
+
+
+]]>
+
+
+
+
+
+]]>
+
+
+
+
+
+]]>
+
+
+
+
+
+]]>
+
+
+
+
+
+]]>
+
+
+
+
+]]>
+
+
+
+
+
+]]>
+
+
+
+
+
+]]>
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
diff --git a/Test Build/Test Build_Data/PlayerConnectionConfigFile b/Test Build/Test Build_Data/PlayerConnectionConfigFile
new file mode 100644
index 00000000..79e6736f
--- /dev/null
+++ b/Test Build/Test Build_Data/PlayerConnectionConfigFile
@@ -0,0 +1 @@
+listen 4179170324 0 0
\ No newline at end of file
diff --git a/Test Build/Test Build_Data/Resources/unity default resources b/Test Build/Test Build_Data/Resources/unity default resources
new file mode 100644
index 00000000..79243ed7
Binary files /dev/null and b/Test Build/Test Build_Data/Resources/unity default resources differ
diff --git a/Test Build/Test Build_Data/Resources/unity_builtin_extra b/Test Build/Test Build_Data/Resources/unity_builtin_extra
new file mode 100644
index 00000000..f391112a
Binary files /dev/null and b/Test Build/Test Build_Data/Resources/unity_builtin_extra differ
diff --git a/Test Build/Test Build_Data/app.info b/Test Build/Test Build_Data/app.info
new file mode 100644
index 00000000..655f547f
--- /dev/null
+++ b/Test Build/Test Build_Data/app.info
@@ -0,0 +1,2 @@
+DefaultCompany
+PUPILDEMOTESTS
\ No newline at end of file
diff --git a/Test Build/Test Build_Data/boot.config b/Test Build/Test Build_Data/boot.config
new file mode 100644
index 00000000..e69de29b
diff --git a/Test Build/Test Build_Data/globalgamemanagers b/Test Build/Test Build_Data/globalgamemanagers
new file mode 100644
index 00000000..86cb3c4b
Binary files /dev/null and b/Test Build/Test Build_Data/globalgamemanagers differ
diff --git a/Test Build/Test Build_Data/globalgamemanagers.assets b/Test Build/Test Build_Data/globalgamemanagers.assets
new file mode 100644
index 00000000..22793eb0
Binary files /dev/null and b/Test Build/Test Build_Data/globalgamemanagers.assets differ
diff --git a/Test Build/Test Build_Data/level0 b/Test Build/Test Build_Data/level0
new file mode 100644
index 00000000..a80a6ef8
Binary files /dev/null and b/Test Build/Test Build_Data/level0 differ
diff --git a/Test Build/Test Build_Data/resources.assets b/Test Build/Test Build_Data/resources.assets
new file mode 100644
index 00000000..4faf14be
Binary files /dev/null and b/Test Build/Test Build_Data/resources.assets differ
diff --git a/Test Build/Test Build_Data/resources.assets.resS b/Test Build/Test Build_Data/resources.assets.resS
new file mode 100644
index 00000000..d8616472
Binary files /dev/null and b/Test Build/Test Build_Data/resources.assets.resS differ
diff --git a/Test Build/Test Build_Data/sharedassets0.assets b/Test Build/Test Build_Data/sharedassets0.assets
new file mode 100644
index 00000000..4be75f62
Binary files /dev/null and b/Test Build/Test Build_Data/sharedassets0.assets differ
diff --git a/Test Build/Test Build_Data/sharedassets0.assets.resS b/Test Build/Test Build_Data/sharedassets0.assets.resS
new file mode 100644
index 00000000..72ef4e74
Binary files /dev/null and b/Test Build/Test Build_Data/sharedassets0.assets.resS differ
diff --git a/Test Build/Test Build_Data/sharedassets0.resource b/Test Build/Test Build_Data/sharedassets0.resource
new file mode 100644
index 00000000..851a602b
Binary files /dev/null and b/Test Build/Test Build_Data/sharedassets0.resource differ
diff --git a/Test Build/WinPixEventRuntime.dll b/Test Build/WinPixEventRuntime.dll
new file mode 100644
index 00000000..9d9ce8f6
Binary files /dev/null and b/Test Build/WinPixEventRuntime.dll differ
diff --git a/dev_Refactor-and-demos/.collabignore b/dev_Refactor-and-demos/.collabignore
new file mode 100644
index 00000000..dded782e
--- /dev/null
+++ b/dev_Refactor-and-demos/.collabignore
@@ -0,0 +1,33 @@
+# ===========================
+# Default Collab Ignore Rules
+# ===========================
+
+# OS Generated
+# ============
+.DS_Store
+._*
+.Spotlight-V100
+.Trashes
+Icon?
+ehthumbs.db
+[Tt]humbs.db
+[Dd]esktop.ini
+
+# Visual Studio / MonoDevelop generated
+# =====================================
+[Ee]xported[Oo]bj/
+*.userprefs
+*.csproj
+*.pidb
+*.suo
+*.sln
+*.user
+*.unityproj
+*.booproj
+
+# Unity generated
+# ===============
+[Oo]bj/
+[Bb]uild
+sysinfo.txt
+*.stackdump
diff --git a/dev_Refactor-and-demos/Assembly-CSharp-Editor.csproj b/dev_Refactor-and-demos/Assembly-CSharp-Editor.csproj
new file mode 100644
index 00000000..2c8376dd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assembly-CSharp-Editor.csproj
@@ -0,0 +1,168 @@
+
+
+
+ 4
+
+
+ Debug
+ AnyCPU
+ 10.0.20506
+ 2.0
+
+ {236434A6-F177-A65B-A044-9FE7F8D2098B}
+ Library
+ Properties
+ Assembly-CSharp-Editor
+ v3.5
+ 512
+ Assets
+
+
+ true
+ full
+ false
+ Temp\bin\Debug\
+ DEBUG;TRACE;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_1_1;UNITY_2017_1;UNITY_2017;PLATFORM_ARCH_64;UNITY_64;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_GENERICS;ENABLE_PVR_GI;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_RUNTIME_NAVMESH_BUILDING;ENABLE_SPRITERENDERER_FLIPPING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_RAKNET;ENABLE_DIRECTOR;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_TIMELINE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;ENABLE_NATIVE_ARRAY;ENABLE_SPRITE_MASKING;INCLUDE_DYNAMIC_GI;INCLUDE_GI;ENABLE_MONO_BDWGC;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;INCLUDE_PUBNUB;ENABLE_PLAYMODE_TESTS_RUNNER;ENABLE_VIDEO;ENABLE_RMGUI;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_STYLE_SHEETS;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_EVENT_QUEUE;ENABLE_CLUSTERINPUT;ENABLE_VR;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_2_0;DEVELOPMENT_BUILD;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_NATIVE_ARRAY_CHECKS;UNITY_TEAM_LICENSE;UNITY_POST_PROCESSING_STACK_V2
+ prompt
+ 4
+ 0169
+ true
+
+
+ pdbonly
+ true
+ Temp\bin\Release\
+ prompt
+ 4
+ 0169
+ true
+
+
+
+
+
+
+
+
+ C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll
+
+
+ C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ C:/Users/office/Documents/ANic/dev_Refactor-and-demos/Library/FacebookSDK/Facebook.Unity.Settings.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Advertisements/Editor/UnityEditor.Advertisements.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/Editor/UnityEditor.UI.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/Editor/UnityEditor.Networking.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/TestRunner/Editor/UnityEditor.TestRunner.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/TestRunner/UnityEngine.TestRunner.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/TestRunner/net35/unity-custom/nunit.framework.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Timeline/RuntimeEditor/UnityEngine.Timeline.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Timeline/Editor/UnityEditor.Timeline.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/TreeEditor/Editor/UnityEditor.TreeEditor.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityAnalytics/UnityEngine.Analytics.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityAnalytics/Editor/UnityEditor.Analytics.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityHoloLens/Editor/UnityEditor.HoloLens.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityHoloLens/RuntimeEditor/UnityEngine.HoloLens.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityPurchasing/Editor/UnityEditor.Purchasing.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll
+
+
+ C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.Graphs.dll
+
+
+ C:/Program Files/Unity/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.WSA.Extensions.dll
+
+
+ C:/Program Files/Unity/Editor/Data/PlaybackEngines/windowsstandalonesupport/UnityEditor.WindowsStandalone.Extensions.dll
+
+
+ C:/Users/office/Documents/ANic/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/AsyncIO.dll
+
+
+ C:/Users/office/Documents/ANic/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/JetBrains.Annotations.dll
+
+
+ C:/Users/office/Documents/ANic/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/NetMQ.dll
+
+
+
+
+ {CB439E2E-20F0-C7E5-5675-AE2E07D7CFAA} Assembly-CSharp
+
+
+
+
+
diff --git a/dev_Refactor-and-demos/Assembly-CSharp-firstpass.csproj b/dev_Refactor-and-demos/Assembly-CSharp-firstpass.csproj
new file mode 100644
index 00000000..a4f2f9a4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assembly-CSharp-firstpass.csproj
@@ -0,0 +1,215 @@
+
+
+
+ 4
+
+
+ Debug
+ AnyCPU
+ 10.0.20506
+ 2.0
+
+ {7059364F-6059-7128-AF46-B1049BCEC38D}
+ Library
+ Properties
+ Assembly-CSharp-firstpass
+ v3.5
+ 512
+ Assets
+
+
+ true
+ full
+ false
+ Temp\bin\Debug\
+ DEBUG;TRACE;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_1_1;UNITY_2017_1;UNITY_2017;PLATFORM_ARCH_64;UNITY_64;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_GENERICS;ENABLE_PVR_GI;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_RUNTIME_NAVMESH_BUILDING;ENABLE_SPRITERENDERER_FLIPPING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_RAKNET;ENABLE_DIRECTOR;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_TIMELINE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;ENABLE_NATIVE_ARRAY;ENABLE_SPRITE_MASKING;INCLUDE_DYNAMIC_GI;INCLUDE_GI;ENABLE_MONO_BDWGC;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;INCLUDE_PUBNUB;ENABLE_PLAYMODE_TESTS_RUNNER;ENABLE_VIDEO;ENABLE_RMGUI;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_STYLE_SHEETS;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_EVENT_QUEUE;ENABLE_CLUSTERINPUT;ENABLE_VR;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_2_0;DEVELOPMENT_BUILD;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_NATIVE_ARRAY_CHECKS;UNITY_TEAM_LICENSE;UNITY_POST_PROCESSING_STACK_V2
+ prompt
+ 4
+ 0169
+ true
+
+
+ pdbonly
+ true
+ Temp\bin\Release\
+ prompt
+ 4
+ 0169
+ true
+
+
+
+
+
+
+
+
+ C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll
+
+
+ C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ C:/Users/office/Documents/ANic/dev_Refactor-and-demos/Library/FacebookSDK/Facebook.Unity.Settings.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/TestRunner/UnityEngine.TestRunner.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/TestRunner/net35/unity-custom/nunit.framework.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Timeline/RuntimeEditor/UnityEngine.Timeline.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityAnalytics/UnityEngine.Analytics.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityHoloLens/RuntimeEditor/UnityEngine.HoloLens.dll
+
+
+ C:/Users/office/Documents/ANic/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/AsyncIO.dll
+
+
+ C:/Users/office/Documents/ANic/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/JetBrains.Annotations.dll
+
+
+ C:/Users/office/Documents/ANic/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/NetMQ.dll
+
+
+
+
+
+
diff --git a/dev_Refactor-and-demos/Assembly-CSharp.csproj b/dev_Refactor-and-demos/Assembly-CSharp.csproj
new file mode 100644
index 00000000..4fcb4839
--- /dev/null
+++ b/dev_Refactor-and-demos/Assembly-CSharp.csproj
@@ -0,0 +1,233 @@
+
+
+
+ 4
+
+
+ Debug
+ AnyCPU
+ 10.0.20506
+ 2.0
+
+ {CB439E2E-20F0-C7E5-5675-AE2E07D7CFAA}
+ Library
+ Properties
+ Assembly-CSharp
+ v3.5
+ 512
+ Assets
+
+
+ true
+ full
+ false
+ Temp\bin\Debug\
+ DEBUG;TRACE;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_1_1;UNITY_2017_1;UNITY_2017;PLATFORM_ARCH_64;UNITY_64;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_GENERICS;ENABLE_PVR_GI;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_RUNTIME_NAVMESH_BUILDING;ENABLE_SPRITERENDERER_FLIPPING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_RAKNET;ENABLE_DIRECTOR;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_TIMELINE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;ENABLE_NATIVE_ARRAY;ENABLE_SPRITE_MASKING;INCLUDE_DYNAMIC_GI;INCLUDE_GI;ENABLE_MONO_BDWGC;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;INCLUDE_PUBNUB;ENABLE_PLAYMODE_TESTS_RUNNER;ENABLE_VIDEO;ENABLE_RMGUI;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_STYLE_SHEETS;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_EVENT_QUEUE;ENABLE_CLUSTERINPUT;ENABLE_VR;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_2_0;DEVELOPMENT_BUILD;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_NATIVE_ARRAY_CHECKS;UNITY_TEAM_LICENSE;UNITY_POST_PROCESSING_STACK_V2
+ prompt
+ 4
+ 0169
+ true
+
+
+ pdbonly
+ true
+ Temp\bin\Release\
+ prompt
+ 4
+ 0169
+ true
+
+
+
+
+
+
+
+
+ C:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll
+
+
+ C:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ C:/Users/office/Documents/ANic/dev_Refactor-and-demos/Library/FacebookSDK/Facebook.Unity.Settings.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/TestRunner/UnityEngine.TestRunner.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/TestRunner/net35/unity-custom/nunit.framework.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Timeline/RuntimeEditor/UnityEngine.Timeline.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityAnalytics/UnityEngine.Analytics.dll
+
+
+ C:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityHoloLens/RuntimeEditor/UnityEngine.HoloLens.dll
+
+
+ C:/Users/office/Documents/ANic/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/AsyncIO.dll
+
+
+ C:/Users/office/Documents/ANic/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/JetBrains.Annotations.dll
+
+
+ C:/Users/office/Documents/ANic/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/NetMQ.dll
+
+
+
+
+
+
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo.meta
new file mode 100644
index 00000000..f95c4793
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: e30a4c7ce181a034c829ceee5febf43a
+folderAsset: yes
+timeCreated: 1506671727
+licenseType: Free
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Market Scene Demo.unity b/dev_Refactor-and-demos/Assets/Market Scene Demo/Market Scene Demo.unity
new file mode 100644
index 00000000..72bbe445
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Market Scene Demo.unity
@@ -0,0 +1,32331 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!29 &1
+OcclusionCullingSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_OcclusionBakeSettings:
+ smallestOccluder: 5
+ smallestHole: 0.25
+ backfaceThreshold: 100
+ m_SceneGUID: 00000000000000000000000000000000
+ m_OcclusionCullingData: {fileID: 0}
+--- !u!104 &2
+RenderSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 8
+ m_Fog: 1
+ m_FogColor: {r: 0.6911765, g: 0.5127043, b: 0.35067043, a: 1}
+ m_FogMode: 3
+ m_FogDensity: 0.05
+ m_LinearFogStart: 0
+ m_LinearFogEnd: 300
+ m_AmbientSkyColor: {r: 0.26909, g: 0.20242216, b: 0.5294118, a: 1}
+ m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
+ m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
+ m_AmbientIntensity: 1
+ m_AmbientMode: 3
+ m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
+ m_SkyboxMaterial: {fileID: 0}
+ m_HaloStrength: 0.5
+ m_FlareStrength: 1
+ m_FlareFadeSpeed: 3
+ m_HaloTexture: {fileID: 0}
+ m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
+ m_DefaultReflectionMode: 0
+ m_DefaultReflectionResolution: 128
+ m_ReflectionBounces: 1
+ m_ReflectionIntensity: 1
+ m_CustomReflection: {fileID: 0}
+ m_Sun: {fileID: 0}
+ m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
+--- !u!157 &3
+LightmapSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 11
+ m_GIWorkflowMode: 1
+ m_GISettings:
+ serializedVersion: 2
+ m_BounceScale: 1
+ m_IndirectOutputScale: 1
+ m_AlbedoBoost: 6
+ m_TemporalCoherenceThreshold: 1
+ m_EnvironmentLightingMode: 0
+ m_EnableBakedLightmaps: 1
+ m_EnableRealtimeLightmaps: 0
+ m_LightmapEditorSettings:
+ serializedVersion: 9
+ m_Resolution: 2
+ m_BakeResolution: 30
+ m_TextureWidth: 4096
+ m_TextureHeight: 1024
+ m_AO: 1
+ m_AOMaxDistance: 1
+ m_CompAOExponent: 2
+ m_CompAOExponentDirect: 1
+ m_Padding: 4
+ m_LightmapParameters: {fileID: 111300000, guid: 960df0195dd11f948ab2c803eda026c2,
+ type: 2}
+ m_LightmapsBakeMode: 0
+ m_TextureCompression: 1
+ m_FinalGather: 0
+ m_FinalGatherFiltering: 1
+ m_FinalGatherRayCount: 1024
+ m_ReflectionCompression: 2
+ m_MixedBakeMode: 1
+ m_BakeBackend: 0
+ m_PVRSampling: 1
+ m_PVRDirectSampleCount: 32
+ m_PVRSampleCount: 500
+ m_PVRBounces: 2
+ m_PVRFiltering: 0
+ m_PVRFilteringMode: 1
+ m_PVRCulling: 1
+ m_PVRFilteringGaussRadiusDirect: 1
+ m_PVRFilteringGaussRadiusIndirect: 5
+ m_PVRFilteringGaussRadiusAO: 2
+ m_PVRFilteringAtrousColorSigma: 1
+ m_PVRFilteringAtrousNormalSigma: 1
+ m_PVRFilteringAtrousPositionSigma: 1
+ m_LightingDataAsset: {fileID: 112000002, guid: a2ec3523b59843b4ebd5bc714a10ec50,
+ type: 2}
+ m_UseShadowmask: 1
+--- !u!196 &4
+NavMeshSettings:
+ serializedVersion: 2
+ m_ObjectHideFlags: 0
+ m_BuildSettings:
+ serializedVersion: 2
+ agentTypeID: 0
+ agentRadius: 0.5
+ agentHeight: 2
+ agentSlope: 35
+ agentClimb: 0.2
+ ledgeDropHeight: 0
+ maxJumpAcrossDistance: 0
+ minRegionArea: 2
+ manualCellSize: 1
+ cellSize: 0.07
+ manualTileSize: 0
+ tileSize: 256
+ accuratePlacement: 1
+ m_NavMeshData: {fileID: 23800000, guid: 98b9c93af4ba5f24d823a1c6f098d0d9, type: 2}
+--- !u!114 &11543072
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: Fresh coffee! Only one coin!
+ textColor: {r: 0.5686275, g: 0.78431374, b: 0.5686275, a: 1}
+ delay: 0
+--- !u!1 &24314630
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1105139209727852, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 24314631}
+ m_Layer: 8
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &24314631
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4498446481907660, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 24314630}
+ m_LocalRotation: {x: -5.551115e-17, y: 5.551115e-17, z: -0.088978596, w: 0.99603355}
+ m_LocalPosition: {x: -0.34739292, y: 7.105427e-17, z: -7.71605e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 549784600}
+ - {fileID: 631652700}
+ - {fileID: 1978002530}
+ m_Father: {fileID: 1538224558}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &30378265
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ gameObject: {fileID: 1876984106}
+ activeState: 0
+--- !u!1 &39297898
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1728246757017684, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 39297899}
+ m_Layer: 8
+ m_Name: Mouth
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &39297899
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4829856821117238, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 39297898}
+ m_LocalRotation: {x: 2.4286129e-17, y: 6.938894e-18, z: 5.4426952e-17, w: 1}
+ m_LocalPosition: {x: -0.04254798, y: -4.7519925e-17, z: 0.12646013}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 229620280}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &42777666
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1417670214203180, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 42777668}
+ - component: {fileID: 42777667}
+ m_Layer: 0
+ m_Name: Market with People
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!114 &42777667
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114782486631300084, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 42777666}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: de2b32e38ddf9974b9366aa96858e852, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+--- !u!4 &42777668
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4885842125904740, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 42777666}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 10.86, y: 0, z: -20.93}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1953365210}
+ - {fileID: 2031787514}
+ - {fileID: 1888959231}
+ - {fileID: 1799114851}
+ - {fileID: 225369431}
+ - {fileID: 1825383314}
+ - {fileID: 1613677338}
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &43059178
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1762358138663068, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 43059179}
+ - component: {fileID: 43059182}
+ - component: {fileID: 43059181}
+ - component: {fileID: 43059180}
+ m_Layer: 0
+ m_Name: Door02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &43059179
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4051182602095750, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 43059178}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.3889956, y: -3.2334094, z: 1.0949239}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 8
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &43059180
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64448951584013602, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 43059178}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300046, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &43059181
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23049331692834974, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 43059178}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 21f4fccb919166745b81be58b6c766a0, 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_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
+--- !u!33 &43059182
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33744721583756052, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 43059178}
+ m_Mesh: {fileID: 4300046, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &44607133
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1474811341357654, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 44607134}
+ m_Layer: 8
+ m_Name: LeftIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &44607134
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4306624803847104, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 44607133}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.027950978, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 350175558}
+ m_Father: {fileID: 921028237}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &52357461
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 1397227339}
+ audioClip: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ delay: 1
+--- !u!1 &54772397
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1842497921285324, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 54772398}
+ m_Layer: 8
+ m_Name: HousingLeftDoor2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &54772398
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4899920089952018, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 54772397}
+ m_LocalRotation: {x: 0, y: 0.07522983, z: -0, w: 0.9971662}
+ m_LocalPosition: {x: -1.0792987, y: 5.708225e-16, z: 0.22159642}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1794827515}
+ m_Father: {fileID: 1761292050}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &56995165
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1608227142262732, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 56995166}
+ m_Layer: 8
+ m_Name: RightFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &56995166
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4672147309481946, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 56995165}
+ m_LocalRotation: {x: -0.000000008576617, y: 0.58090055, z: -0.000000006120781, w: 0.8139746}
+ m_LocalPosition: {x: 0.33995375, y: 8.881784e-16, z: 0.000000038827032}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 996376102}
+ m_Father: {fileID: 686716283}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &57213785
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1757521300891812, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 57213786}
+ m_Layer: 8
+ m_Name: RightThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &57213786
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4982856531146280, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 57213785}
+ m_LocalRotation: {x: 3.4588897e-15, y: 0.46427974, z: -2.132959e-15, w: 0.88568866}
+ m_LocalPosition: {x: 0.05189791, y: 0.0042899996, z: -0.035294082}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 608823032}
+ m_Father: {fileID: 148276350}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &59692936
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1898306644365380, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 59692937}
+ - component: {fileID: 59692940}
+ - component: {fileID: 59692939}
+ - component: {fileID: 59692938}
+ m_Layer: 0
+ m_Name: Pots01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &59692937
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4913686027578006, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 59692936}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 9.774787, y: -14.111426, z: 0}
+ m_LocalScale: {x: 0.729112, y: 0.729112, z: 0.6984594}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 26
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &59692938
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64307499134921696, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 59692936}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300006, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &59692939
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23863624042865924, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 59692936}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: baa9de290ac47c74b8ce1db516ff702e, 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_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
+--- !u!33 &59692940
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33103550170406222, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 59692936}
+ m_Mesh: {fileID: 4300006, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &61192259
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1054317981475012, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 61192260}
+ m_Layer: 8
+ m_Name: LeftMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &61192260
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4770970532698460, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 61192259}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.0356767, y: -2.842171e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2020778183}
+ m_Father: {fileID: 242696798}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &61988303
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1804178729540216, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 61988304}
+ m_Layer: 8
+ m_Name: LeftPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &61988304
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4012474974592882, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 61988303}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.028577795, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1920019361}
+ m_Father: {fileID: 1561686513}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &67410038
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1949351562304924, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 67410039}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &67410039
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4512402849018568, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 67410038}
+ 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: 1449206081}
+ m_Father: {fileID: 558402488}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &68710440
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1255292204947260, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 68710441}
+ m_Layer: 8
+ m_Name: RightMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &68710441
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4297701554873852, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 68710440}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.115610994, y: -0.0090499995, z: -0.0173844}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 69415294}
+ m_Father: {fileID: 353424754}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &69415293
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1165247554336130, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 69415294}
+ m_Layer: 8
+ m_Name: RightMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &69415294
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4933463631379598, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 69415293}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.040193, y: 2.842171e-16, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 907892550}
+ m_Father: {fileID: 68710441}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &70116245
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: 0bcb52a0dc8524b40a4a97ccc1e4cef6, type: 3}
+ delay: 0
+--- !u!1 &73654799
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1842595733396812, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 73654800}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &73654800
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4751055033260072, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 73654799}
+ 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: 1508579660}
+ m_Father: {fileID: 2023495237}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &73957046
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1452843155154828, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 73957047}
+ - component: {fileID: 73957050}
+ - component: {fileID: 73957049}
+ - component: {fileID: 73957048}
+ m_Layer: 0
+ m_Name: SpiceBags02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &73957047
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4106313999327958, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 73957046}
+ m_LocalRotation: {x: 0, y: 0, z: 0.7572056, w: 0.6531766}
+ m_LocalPosition: {x: 2.9999073, y: -7.6481357, z: 0.000000038146972}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 36
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &73957048
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64177636184539456, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 73957046}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300008, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &73957049
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23321030499150790, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 73957046}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 4ec2d68a2ff08f94e982603197685a68, 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_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
+--- !u!33 &73957050
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33812266773304700, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 73957046}
+ m_Mesh: {fileID: 4300008, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!114 &75465419
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114514116015948016, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 401569957}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 1656089792}
+ - {fileID: 800296404}
+ - {fileID: 640844049}
+ - {fileID: 1700138997}
+ - {fileID: 1735739341}
+ - {fileID: 1296599059}
+ - {fileID: 541883755}
+ - {fileID: 1170795811}
+ - {fileID: 2040164790}
+ - {fileID: 1293534931}
+--- !u!1 &83020531
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1932875792643992, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 83020532}
+ m_Layer: 8
+ m_Name: RightArm5
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &83020532
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4251876287115174, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 83020531}
+ m_LocalRotation: {x: 0, y: 6.123234e-17, z: -6.123234e-17, w: 1}
+ m_LocalPosition: {x: -0.32044998, y: 7.105427e-17, z: 2.1316282e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2144327719}
+ m_Father: {fileID: 1261341586}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &83851589
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1743420889519998, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 83851590}
+ - component: {fileID: 83851591}
+ m_Layer: 0
+ m_Name: Point light (16)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &83851590
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4930131317616268, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 83851589}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -10.64, y: 1.787, z: 2.09}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 18
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &83851591
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108695803198244586, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 83851589}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.46323532, g: 0.7778905, b: 1, a: 1}
+ m_Intensity: 3.31
+ m_Range: 2.2014189
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &101866784
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1092552867316914, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 101866785}
+ - component: {fileID: 101866788}
+ - component: {fileID: 101866787}
+ - component: {fileID: 101866786}
+ m_Layer: 0
+ m_Name: WallStone
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &101866785
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4977093475775440, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 101866784}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 42
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &101866786
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64413632274639668, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 101866784}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300078, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &101866787
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23670490923176074, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 101866784}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 841101597fac029489d23f6adc912343, 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_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
+--- !u!33 &101866788
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33425401955139550, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 101866784}
+ m_Mesh: {fileID: 4300078, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &105733409
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1606131781167504, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 105733410}
+ m_Layer: 8
+ m_Name: RightIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &105733410
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4758541460250374, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 105733409}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.07875013, y: 0.017072476, z: -0.053031754}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 691970158}
+ m_Father: {fileID: 157747207}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &122876203
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1179362856011652, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 122876204}
+ m_Layer: 8
+ m_Name: RightPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &122876204
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4082216061354378, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 122876203}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.028803999, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 278688384}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &129300961
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1308447612979028, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 129300968}
+ - component: {fileID: 129300962}
+ - component: {fileID: 129300967}
+ - component: {fileID: 129300966}
+ - component: {fileID: 129300965}
+ - component: {fileID: 129300964}
+ - component: {fileID: 129300963}
+ - component: {fileID: 129300969}
+ m_Layer: 0
+ m_Name: Camera
+ m_TagString: MainCamera
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!20 &129300962
+Camera:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 20068175235852436, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 129300961}
+ m_Enabled: 1
+ serializedVersion: 2
+ m_ClearFlags: 1
+ m_BackGroundColor: {r: 0.058823526, g: 0.028114185, b: 0.028114185, a: 1}
+ m_NormalizedViewPortRect:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 1
+ height: 1
+ near clip plane: 0.3
+ far clip plane: 1000
+ field of view: 40
+ orthographic: 0
+ orthographic size: 5
+ m_Depth: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967263
+ m_RenderingPath: -1
+ m_TargetTexture: {fileID: 0}
+ m_TargetDisplay: 0
+ m_TargetEye: 3
+ m_HDR: 0
+ m_AllowMSAA: 1
+ m_ForceIntoRT: 0
+ m_OcclusionCulling: 1
+ m_StereoConvergence: 10
+ m_StereoSeparation: 0.022
+ m_StereoMirrorMode: 0
+--- !u!114 &129300963
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114408945662203984, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 129300961}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: bd70d448b18cfbc46af26466f752332c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+--- !u!81 &129300964
+AudioListener:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 81554972251660932, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 129300961}
+ m_Enabled: 1
+--- !u!114 &129300965
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114209606691462426, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 129300961}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -768656878, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_EventMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+--- !u!92 &129300966
+Behaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 92223958757446280, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 129300961}
+ m_Enabled: 1
+--- !u!124 &129300967
+Behaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 124306282361833138, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 129300961}
+ m_Enabled: 1
+--- !u!4 &129300968
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4032445104911218, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 129300961}
+ 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: 330781951}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &129300969
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 129300961}
+ m_Enabled: 0
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: c2f0a0cc2a470c9489642b0aa47db38a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+--- !u!1 &132360334
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1325702849146778, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 132360335}
+ m_Layer: 8
+ m_Name: RightMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &132360335
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4402754635984120, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 132360334}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.05613, y: 2.842171e-16, z: 5.3290704e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1048983043}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &133834736
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1224869485209884, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 133834737}
+ - component: {fileID: 1986364766}
+ m_Layer: 0
+ m_Name: PickedUpCoinReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &133834737
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4107364454829154, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 133834736}
+ 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: 1888959231}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &134899643
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1494197458472500, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 134899644}
+ m_Layer: 8
+ m_Name: LeftArm1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &134899644
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4050713186568208, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 134899643}
+ m_LocalRotation: {x: -0.5000002, y: 0.49999958, z: 0.50000024, w: -0.5}
+ m_LocalPosition: {x: -0.20701517, y: 0.8019186, z: -0.37920392}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1578410643}
+ m_Father: {fileID: 1172827727}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &135702808
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1960588758364654, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 135702809}
+ m_Layer: 8
+ m_Name: Spine1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &135702809
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4683203824935982, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 135702808}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.14879514, y: 3.303916e-17, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2092021786}
+ m_Father: {fileID: 749508486}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &138065515
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1631994059564918, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 138065516}
+ m_Layer: 0
+ m_Name: InteractionLocation
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &138065516
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4079593051969868, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 138065515}
+ m_LocalRotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071068}
+ m_LocalPosition: {x: -1.3, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 225369431}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 90, z: 0}
+--- !u!1 &142586509
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1665410465487940, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 142586510}
+ m_Layer: 8
+ m_Name: LeftPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &142586510
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4392736628056748, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 142586509}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.068184495, y: -0.0005565151, z: -0.000060691586}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 485950338}
+ m_Father: {fileID: 718489739}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &148276349
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1223778299611950, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 148276350}
+ m_Layer: 8
+ m_Name: RightHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &148276350
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4816965063639868, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 148276349}
+ m_LocalRotation: {x: 0.0000010652644, y: 1.09826305e-13, z: 0.00000011574487, w: 1}
+ m_LocalPosition: {x: 0.22015074, y: 4.2632563e-16, z: -0.00000019817008}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1624172647}
+ - {fileID: 1794954907}
+ - {fileID: 2092168507}
+ - {fileID: 1656856922}
+ - {fileID: 57213786}
+ m_Father: {fileID: 587448719}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &151382181
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1404960792704048, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 151382182}
+ m_Layer: 8
+ m_Name: RightMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &151382182
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4993862209616716, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 151382181}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.029141, y: -1.4210854e-16, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 546362699}
+ m_Father: {fileID: 1794954907}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &152145877
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1270936992403856, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 152145878}
+ m_Layer: 8
+ m_Name: LeftHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &152145878
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4810055934911148, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 152145877}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.22015098, y: 0, z: 5.3290704e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 921028237}
+ - {fileID: 737407326}
+ - {fileID: 959655015}
+ - {fileID: 247950790}
+ - {fileID: 1239607854}
+ m_Father: {fileID: 1739203292}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &152189306
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1160343972079416, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 152189307}
+ - component: {fileID: 152189310}
+ - component: {fileID: 152189309}
+ - component: {fileID: 152189308}
+ m_Layer: 0
+ m_Name: Fish
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &152189307
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4145668872094354, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 152189306}
+ m_LocalRotation: {x: 0.094965905, y: -0.24095869, z: 0.10536944, w: 0.96011335}
+ m_LocalPosition: {x: 2.503753, y: 1.8283671, z: 0.9960465}
+ m_LocalScale: {x: 1.2018601, y: 1.2018602, z: 1.2018602}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 14
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &152189308
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64668826728496132, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 152189306}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300050, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &152189309
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23301960187424256, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 152189306}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 329c7db3030cc1d418a9f416eaed765f, type: 2}
+ - {fileID: 2100000, guid: 08f4e3363e393374ca0cd78cf5c5a14a, 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_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
+--- !u!33 &152189310
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33303781489546076, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 152189306}
+ m_Mesh: {fileID: 4300050, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &157747206
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1940073845066606, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 157747207}
+ m_Layer: 8
+ m_Name: RightHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &157747207
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4936233914148360, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 157747206}
+ m_LocalRotation: {x: -0.13227893, y: 0, z: -0, w: 0.99121255}
+ m_LocalPosition: {x: 0.29478, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 105733410}
+ - {fileID: 665124895}
+ - {fileID: 1624973127}
+ - {fileID: 791123704}
+ m_Father: {fileID: 1987081132}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &158163998
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1991243738164654, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 158163999}
+ - component: {fileID: 158164000}
+ m_Layer: 8
+ m_Name: Body
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &158163999
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4699322260029030, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 158163998}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0.744, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 945768356}
+ m_Father: {fileID: 864930305}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!137 &158164000
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 137226772977461192, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 158163998}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 255f1dad6693d9f4188b911d81ea50ed, type: 2}
+ - {fileID: 2100000, guid: 55ac6b62b46001749b9938e358b3c0ad, type: 2}
+ - {fileID: 2100000, guid: 65eb6d8bd532ff24790e8810799fd82f, 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_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: 4300014, guid: e7fef9092fa565e41bf56c266766658d, type: 3}
+ m_Bones:
+ - {fileID: 225367009}
+ - {fileID: 134899644}
+ - {fileID: 1578410643}
+ - {fileID: 873229319}
+ - {fileID: 2137413837}
+ - {fileID: 230391422}
+ - {fileID: 1357337280}
+ - {fileID: 357721064}
+ - {fileID: 225437727}
+ - {fileID: 251293562}
+ - {fileID: 1142920836}
+ - {fileID: 1033359401}
+ - {fileID: 429553336}
+ - {fileID: 418569942}
+ - {fileID: 1615367201}
+ - {fileID: 1627140799}
+ - {fileID: 1297885523}
+ - {fileID: 558116376}
+ - {fileID: 871616457}
+ - {fileID: 846999370}
+ - {fileID: 1261341586}
+ - {fileID: 83020532}
+ - {fileID: 2144327719}
+ - {fileID: 1249003792}
+ - {fileID: 1577202239}
+ - {fileID: 282948456}
+ - {fileID: 2121355909}
+ - {fileID: 1140933121}
+ - {fileID: 1835033666}
+ - {fileID: 659368410}
+ - {fileID: 223642527}
+ - {fileID: 1616201296}
+ - {fileID: 1403116042}
+ - {fileID: 1172827727}
+ - {fileID: 530062571}
+ - {fileID: 780197813}
+ - {fileID: 1426905460}
+ - {fileID: 54772398}
+ - {fileID: 1761292050}
+ - {fileID: 1218735851}
+ - {fileID: 1010403537}
+ - {fileID: 1764226628}
+ - {fileID: 418665943}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 1172827727}
+ m_AABB:
+ m_Center: {x: -1.151192, y: 0.00000047683716, z: 0.03533387}
+ m_Extent: {x: 1.4675426, y: 2.9036415, z: 1.2157925}
+ m_DirtyAABB: 0
+--- !u!1 &164547610
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1912575340669958, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 164547611}
+ - component: {fileID: 164547612}
+ m_Layer: 0
+ m_Name: SunLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &164547611
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4830491701783142, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 164547610}
+ m_LocalRotation: {x: 0.8686281, y: -0.074446425, z: 0.3138341, w: 0.37609994}
+ m_LocalPosition: {x: -2.0387483, y: 3.65, z: 0.5927165}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &164547612
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108918917438082314, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 164547610}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 1
+ m_Color: {r: 1, g: 0.9498986, b: 0.8602941, a: 1}
+ m_Intensity: 1.5
+ m_Range: 10
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 2
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 0.852
+ m_Bias: 0.05
+ m_NormalBias: 0.01
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &176924941
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1503460256352418, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 176924942}
+ - component: {fileID: 176924945}
+ - component: {fileID: 176924944}
+ - component: {fileID: 176924943}
+ m_Layer: 0
+ m_Name: OldTech
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &176924942
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4767064568838776, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 176924941}
+ m_LocalRotation: {x: -0.11030561, y: 0.055933364, z: -0.41579798, w: 0.9010084}
+ m_LocalPosition: {x: 1.241824, y: -3.8560421, z: 1.0158453}
+ m_LocalScale: {x: 1.2317907, y: 1.2317903, z: 1.2317904}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 24
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &176924943
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64905686592225948, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 176924941}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300066, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &176924944
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23805254137061190, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 176924941}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 0388f2d5fd84c014dbb18d851a95c1bf, 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_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
+--- !u!33 &176924945
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33119311349852066, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 176924941}
+ m_Mesh: {fileID: 4300066, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &186860948
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1545635173031852, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 186860949}
+ m_Layer: 8
+ m_Name: LeftIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &186860949
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4831568459279444, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 186860948}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.082973585, y: -7.105427e-17, z: 2.842171e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1783301916}
+ m_Father: {fileID: 827380291}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &188565120
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1826921585837108, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 188565121}
+ m_Layer: 8
+ m_Name: LeftMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &188565121
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4481904061132444, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 188565120}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.11300223, y: 0, z: 0.000023546281}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 804435822}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &193178711
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1558246253675930, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 193178712}
+ m_Layer: 8
+ m_Name: LeftMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &193178712
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4375009889312390, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 193178711}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.029140381, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2044022488}
+ m_Father: {fileID: 737407326}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &193637919
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1230035011446632, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 193637920}
+ m_Layer: 8
+ m_Name: LeftRing1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &193637920
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4489364739076700, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 193637919}
+ m_LocalRotation: {x: 0.000000010536712, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.11561086, y: 0.009046224, z: -0.013526678}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 570034537}
+ m_Father: {fileID: 771476004}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &197519449
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: 4f2c0eb89fe584a2f81b5b903cfb81f4, type: 3}
+ delay: 3
+--- !u!1 &198738343
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1753535966195582, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 198738344}
+ m_Layer: 8
+ m_Name: RightEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &198738344
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4119636863241902, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 198738343}
+ m_LocalRotation: {x: -0.51875925, y: 0.44378456, z: 0.48069182, w: 0.5503449}
+ m_LocalPosition: {x: -0.15353519, y: 0.0568674, z: 0.12382927}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 335749063}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &199118507
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1811169779051482, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 199118508}
+ m_Layer: 8
+ m_Name: RightArmEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &199118508
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4513268257644790, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 199118507}
+ m_LocalRotation: {x: -0.37639374, y: -0.5983873, z: 0.59869903, w: -0.37658983}
+ m_LocalPosition: {x: -0.33903998, y: -1.7095433e-17, z: 1.4210853e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1577202239}
+ - {fileID: 1140933121}
+ - {fileID: 223642527}
+ - {fileID: 1397212527}
+ m_Father: {fileID: 2144327719}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &202015026
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1172305484138266, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 202015027}
+ m_Layer: 8
+ m_Name: LeftThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &202015027
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4139851197916038, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 202015026}
+ m_LocalRotation: {x: -2.9494502e-15, y: -0.101298474, z: -7.712688e-17, w: 0.9948561}
+ m_LocalPosition: {x: -0.042127386, y: 0, z: 7.9936054e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 825764139}
+ m_Father: {fileID: 1235163027}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &204456291
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1155820248124418, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 204456292}
+ m_Layer: 8
+ m_Name: LeftPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &204456292
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4848503538796580, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 204456291}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.024382766, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 246740965}
+ m_Father: {fileID: 959655015}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &206522659
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1795648820213278, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 206522660}
+ m_Layer: 8
+ m_Name: RightHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &206522660
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4311317551900198, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 206522659}
+ m_LocalRotation: {x: 0.00000086897535, y: -2.0928391e-11, z: 1.82193e-13, w: 1}
+ m_LocalPosition: {x: 0.23637599, y: 0, z: 5.3290704e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2063522625}
+ - {fileID: 1806538950}
+ - {fileID: 564533433}
+ - {fileID: 1308190904}
+ m_Father: {fileID: 1039147711}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &208262782
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1081453917835732, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 208262783}
+ m_Layer: 8
+ m_Name: Neck
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &208262783
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4210672222530348, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 208262782}
+ m_LocalRotation: {x: 2.7755576e-17, y: 0.36281016, z: 6.9388956e-18, w: 0.93186307}
+ m_LocalPosition: {x: -0.19717604, y: 8.881784e-18, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 229620280}
+ m_Father: {fileID: 1894324991}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &212180309
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1149323750451590, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 212180310}
+ - component: {fileID: 212180311}
+ m_Layer: 0
+ m_Name: Point light (13)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &212180310
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4765314586472548, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 212180309}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 3.849, y: 1.604, z: 11.261}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 15
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &212180311
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108644533284218848, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 212180309}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.9871198, g: 0.066176474, b: 1, a: 1}
+ m_Intensity: 0.7
+ m_Range: 2.2014189
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &217411137
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1303634964330938, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 217411138}
+ - component: {fileID: 217411140}
+ - component: {fileID: 217411139}
+ m_Layer: 0
+ m_Name: SleepyZ
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &217411138
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4078304698239272, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 217411137}
+ m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068}
+ m_LocalPosition: {x: 8.936, y: 1.598, z: 11.46}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 13
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!199 &217411139
+ParticleSystemRenderer:
+ serializedVersion: 4
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 199122993495161770, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 217411137}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 1a154997a08254f4ab6fb216e582bc17, type: 2}
+ - {fileID: 0}
+ 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_SelectedEditorRenderState: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingLayer: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_UseCustomVertexStreams: 0
+ m_VertexStreams: 0001030405
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+ m_MaskInteraction: 0
+--- !u!198 &217411140
+ParticleSystem:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 198495004387589092, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 217411137}
+ serializedVersion: 5
+ lengthInSec: 10
+ simulationSpeed: 1
+ looping: 1
+ prewarm: 1
+ playOnAwake: 1
+ useUnscaledTime: 0
+ autoRandomSeed: 1
+ useRigidbodyForVelocity: 1
+ startDelay:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ moveWithTransform: 0
+ moveWithCustomTransform: {fileID: 0}
+ scalingMode: 1
+ randomSeed: 0
+ InitialModule:
+ serializedVersion: 3
+ enabled: 1
+ startLifetime:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 7
+ minScalar: 5
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startSpeed:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0.1
+ minScalar: 5
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startColor:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ startSize:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0.2
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startSizeY:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startSizeZ:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startRotationX:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startRotationY:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startRotation:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ randomizeRotationDirection: 0
+ maxNumParticles: 4
+ size3D: 0
+ rotation3D: 0
+ gravityModifier:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ ShapeModule:
+ serializedVersion: 5
+ enabled: 1
+ type: 5
+ angle: 25
+ length: 5
+ boxThickness: {x: 0, y: 0, z: 0}
+ radiusThickness: 1
+ donutRadius: 0.2
+ m_Position: {x: 0, y: 0, z: 0}
+ m_Rotation: {x: 0, y: 0, z: 0}
+ m_Scale: {x: 0.01, y: 0.01, z: 0.01}
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ alignToDirection: 0
+ randomDirectionAmount: 0
+ sphericalDirectionAmount: 0
+ randomPositionAmount: 0
+ radius:
+ value: 1
+ mode: 0
+ spread: 0
+ speed:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ arc:
+ value: 360
+ mode: 0
+ spread: 0
+ speed:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 4
+ rateOverTime:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 10
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ rateOverDistance:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ m_BurstCount: 0
+ m_Bursts: []
+ SizeModule:
+ enabled: 1
+ curve:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0.4229391
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1.1666654
+ outSlope: 1.1666654
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ z:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ curve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0.7853982
+ minScalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ minMaxState: 1
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 0}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 1}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 4433
+ atime2: 42983
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ UVModule:
+ enabled: 0
+ mode: 0
+ frameOverTime:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 0.9999
+ minScalar: 0.9999
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startFrame:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ tilesX: 1
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 1
+ uvChannelMask: -1
+ flipU: 0
+ flipV: 0
+ randomRow: 1
+ sprites:
+ - sprite: {fileID: 0}
+ VelocityModule:
+ enabled: 1
+ x:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 0.3
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: -0.17204301
+ inSlope: 3.6458335
+ outSlope: 3.6458335
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.21889396
+ value: 0.38709676
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.57844317
+ value: -0.30959907
+ inSlope: -0.44330955
+ outSlope: -0.44330955
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: -0.050179183
+ inSlope: -3.3140063
+ outSlope: -3.3140063
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ z:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ ForceModule:
+ enabled: 0
+ x:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ z:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ z:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ magnitude:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ NoiseModule:
+ enabled: 0
+ strength:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ strengthY:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ strengthZ:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxes: 0
+ frequency: 0.5
+ damping: 1
+ octaves: 1
+ octaveMultiplier: 0.5
+ octaveScale: 2
+ quality: 2
+ scrollSpeed:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ remap:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ remapY:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ remapZ:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ remapEnabled: 0
+ positionAmount:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ rotationAmount:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ sizeAmount:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ z:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ curve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0.7853982
+ minScalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ minMaxState: 1
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ colliderForce: 0
+ multiplyColliderForceByParticleSize: 0
+ multiplyColliderForceByParticleSpeed: 0
+ multiplyColliderForceByCollisionAngle: 1
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ m_Bounce:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ m_EnergyLossOnCollision:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ serializedVersion: 2
+ enabled: 0
+ subEmitters:
+ - emitter: {fileID: 0}
+ type: 0
+ properties: 0
+ LightsModule:
+ enabled: 0
+ ratio: 0
+ light: {fileID: 0}
+ randomDistribution: 1
+ color: 1
+ range: 1
+ intensity: 1
+ rangeCurve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ intensityCurve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ maxLights: 20
+ TrailModule:
+ enabled: 0
+ ratio: 1
+ lifetime:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minVertexDistance: 0.2
+ textureMode: 0
+ worldSpace: 0
+ dieWithParticles: 1
+ sizeAffectsWidth: 1
+ sizeAffectsLifetime: 0
+ inheritParticleColor: 1
+ generateLightingData: 0
+ colorOverLifetime:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ widthOverTrail:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ colorOverTrail:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ CustomDataModule:
+ enabled: 0
+ mode0: 0
+ vectorComponentCount0: 4
+ color0:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ vector0_0:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector0_1:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector0_2:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector0_3:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ mode1: 0
+ vectorComponentCount1: 4
+ color1:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ vector1_0:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector1_1:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector1_2:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector1_3:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+--- !u!1 &223450626
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1563835911767244, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 223450627}
+ m_Layer: 8
+ m_Name: RightUpWing
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &223450627
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4107106172109384, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 223450626}
+ m_LocalRotation: {x: -0.71793675, y: -0.20442846, z: -0.15588188, w: 0.64689773}
+ m_LocalPosition: {x: -0.14509878, y: 0.041088313, z: 0.06245678}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1884208696}
+ m_Father: {fileID: 1051553604}
+ m_RootOrder: 6
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &223642526
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1551420656231224, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 223642527}
+ m_Layer: 8
+ m_Name: RightThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &223642527
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4614707205586932, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 223642526}
+ m_LocalRotation: {x: 0.00013964916, y: 0.00022017473, z: 0.84646815, w: 0.5324393}
+ m_LocalPosition: {x: -0.1393021, y: 1.5099033e-16, z: -5.9847517e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1616201296}
+ m_Father: {fileID: 199118508}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &225367008
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1367312623734074, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 225367009}
+ m_Layer: 8
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &225367009
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4918426080100002, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 225367008}
+ m_LocalRotation: {x: -2.3069222e-17, y: 6.0251035e-22, z: 3.5893144e-17, w: 1}
+ m_LocalPosition: {x: -0.6448484, y: 4.3231346e-11, z: 0.00000026950906}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 624678285}
+ - {fileID: 357721064}
+ - {fileID: 1249003792}
+ - {fileID: 780197813}
+ m_Father: {fileID: 1426905460}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &225369430
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1425718793108942, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 225369431}
+ - component: {fileID: 225369433}
+ - component: {fileID: 225369432}
+ m_Layer: 0
+ m_Name: BirdInteractable
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &225369431
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4834894171862444, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 225369430}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -10.671217, y: 0.022936344, z: 9.968174}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 138065516}
+ - {fileID: 638551460}
+ - {fileID: 1067759586}
+ m_Father: {fileID: 42777668}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &225369432
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114589819725763198, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 225369430}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ interactionLocation: {fileID: 138065516}
+ conditionCollections:
+ - {fileID: 1743308727}
+ defaultReactionCollection: {fileID: 638551461}
+--- !u!114 &225369433
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114210088574229398, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 225369430}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -1862395651, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Delegates:
+ - eventID: 4
+ callback:
+ m_PersistentCalls:
+ m_Calls:
+ - m_Target: {fileID: 0}
+ m_MethodName: OnInteractableClick
+ m_Mode: 2
+ m_Arguments:
+ m_ObjectArgument: {fileID: 225369432}
+ m_ObjectArgumentAssemblyTypeName: Interactable, Assembly-CSharp
+ m_IntArgument: 0
+ m_FloatArgument: 0
+ m_StringArgument:
+ m_BoolArgument: 0
+ m_CallState: 2
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ delegates: []
+--- !u!1 &225437726
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1203671552484634, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 225437727}
+ m_Layer: 8
+ m_Name: LeftIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &225437727
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4637776531626922, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 225437726}
+ m_LocalRotation: {x: -0.0001378267, y: 0.0002203606, z: -0.8464759, w: 0.5324271}
+ m_LocalPosition: {x: 0.07745891, y: -0.10413879, z: 0.05753856}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 251293562}
+ m_Father: {fileID: 1752464061}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &225554837
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1408202695673492, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 225554838}
+ m_Layer: 8
+ m_Name: RightShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &225554838
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4903835770857772, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 225554837}
+ m_LocalRotation: {x: 0.6935124, y: 0.6651143, z: -0.13798767, w: 0.24004793}
+ m_LocalPosition: {x: -0.19490875, y: 0.0496461, z: 0.054125622}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 451667831}
+ m_Father: {fileID: 2092021786}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!95 &227346009
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 95579588466647562, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1900119160}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: e7fef9092fa565e41bf56c266766658d, type: 3}
+ m_Controller: {fileID: 9100000, guid: a6db9721009fa404aba25b86c0bc6072, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!1 &229620279
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1148809931742146, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 229620280}
+ m_Layer: 8
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &229620280
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4820544284688892, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 229620279}
+ m_LocalRotation: {x: -9.3675074e-17, y: -0.28944153, z: 1.1535912e-16, w: 0.95719576}
+ m_LocalPosition: {x: -0.15455596, y: 1.2434498e-16, z: -7.105427e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 452804781}
+ - {fileID: 630127493}
+ - {fileID: 689248855}
+ - {fileID: 614890617}
+ - {fileID: 39297899}
+ - {fileID: 2010086164}
+ m_Father: {fileID: 208262783}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &230391421
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1640119705620894, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 230391422}
+ m_Layer: 8
+ m_Name: LeftArm5
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &230391422
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4898675306824308, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 230391421}
+ m_LocalRotation: {x: -2.2088105e-29, y: -1.323489e-23, z: 1.1911401e-22, w: 1}
+ m_LocalPosition: {x: -0.32044998, y: 7.105427e-17, z: -0.0000001313851}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1357337280}
+ m_Father: {fileID: 2137413837}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &242696797
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1202925283028802, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 242696798}
+ m_Layer: 8
+ m_Name: LeftMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &242696798
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4987307589186464, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 242696797}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.040192857, y: -5.684342e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 61192260}
+ m_Father: {fileID: 2015049875}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &244417403
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1798664413696522, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 244417404}
+ m_Layer: 8
+ m_Name: HeadEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &244417404
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4823882928085600, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 244417403}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.30834174, y: 2.9143353e-17, z: -3.241851e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1084467281}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &246208924
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1798091867028626, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 246208925}
+ m_Layer: 8
+ m_Name: RightIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &246208925
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4005016024022976, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 246208924}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.033824, y: 0, z: -2.4424906e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 320449116}
+ m_Father: {fileID: 1232236882}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &246740964
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1047176505303106, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 246740965}
+ m_Layer: 8
+ m_Name: LeftPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &246740965
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4529032636210508, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 246740964}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.037466202, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 676871845}
+ m_Father: {fileID: 204456292}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &247950789
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1184951632459336, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 247950790}
+ m_Layer: 8
+ m_Name: LeftRing1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &247950790
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4316327644760018, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 247950789}
+ m_LocalRotation: {x: 0, y: -0.06320087, z: -0, w: 0.99800086}
+ m_LocalPosition: {x: -0.15791412, y: 0.021124894, z: -0.04323178}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1344947824}
+ m_Father: {fileID: 152145878}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &247967682
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1153997830821386, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 247967683}
+ - component: {fileID: 247967686}
+ - component: {fileID: 247967685}
+ - component: {fileID: 247967684}
+ m_Layer: 0
+ m_Name: Door01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &247967683
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4355664543336854, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 247967682}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.3889956, y: 2.762316, z: 1.0949239}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 7
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &247967684
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64172053764045480, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 247967682}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300048, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &247967685
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23404430416682936, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 247967682}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 21f4fccb919166745b81be58b6c766a0, 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_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
+--- !u!33 &247967686
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33295204619521204, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 247967682}
+ m_Mesh: {fileID: 4300048, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &251293561
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1381426074998420, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 251293562}
+ m_Layer: 8
+ m_Name: LeftIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &251293562
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4132059526814864, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 251293561}
+ m_LocalRotation: {x: -1.6712978e-16, y: 3.4912011e-16, z: -8.636025e-13, w: 1}
+ m_LocalPosition: {x: -0.071237355, y: -0.000000093360065, z: -0.00000010380635}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1142920836}
+ m_Father: {fileID: 225437727}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &251989433
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1852143158805754, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 251989434}
+ m_Layer: 8
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &251989434
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4035474255272856, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 251989433}
+ 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: 1478519145}
+ m_Father: {fileID: 2023495237}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &253419034
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1361862908676306, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 253419035}
+ m_Layer: 8
+ m_Name: LeftIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &253419035
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4988507888684880, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 253419034}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.033823308, y: -8.5265126e-16, z: 1.11022296e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 994776709}
+ m_Father: {fileID: 778348740}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &253531423
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1710631389944226, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 253531424}
+ m_Layer: 8
+ m_Name: LeftHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &253531424
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4304924563455512, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 253531423}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.29477993, y: 2.842171e-16, z: 1.4210854e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 827380291}
+ - {fileID: 1517065157}
+ - {fileID: 718489739}
+ - {fileID: 1584391189}
+ m_Father: {fileID: 1029515321}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &254849842
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 1397227339}
+ audioClip: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ delay: 1
+--- !u!114 &260797430
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 1397227339}
+ audioClip: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ delay: 1
+--- !u!1 &278688383
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1030238043857064, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 278688384}
+ m_Layer: 8
+ m_Name: RightPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &278688384
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4989586502218038, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 278688383}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.02631, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 122876204}
+ m_Father: {fileID: 1420608520}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &281262913
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1228863595679454, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 281262914}
+ m_Layer: 0
+ m_Name: InteractionLocation
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &281262914
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4467386851583280, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 281262913}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.1, y: 0, z: -2.56}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1799114851}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+--- !u!114 &281339374
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 0}
+ trigger: EquipGlasses
+--- !u!1 &282948455
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1440341098279226, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 282948456}
+ m_Layer: 8
+ m_Name: RightIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &282948456
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4955506775336612, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 282948455}
+ m_LocalRotation: {x: -1.1183519e-16, y: -1.6642503e-16, z: 8.568114e-17, w: 1}
+ m_LocalPosition: {x: -0.07123, y: 0.00000008618887, z: 0.00000013940785}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2121355909}
+ m_Father: {fileID: 1577202239}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &293960127
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1316756886927326, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 293960128}
+ m_Layer: 8
+ m_Name: RightFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &293960128
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4360589365972212, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 293960127}
+ m_LocalRotation: {x: -0.029527105, y: 0.60222226, z: -0.041032474, w: 0.79672635}
+ m_LocalPosition: {x: 0.37354857, y: 1.2434498e-16, z: -0.00000005893049}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1592712828}
+ m_Father: {fileID: 760236024}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &308070056
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1492390223046908, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 308070057}
+ m_Layer: 8
+ m_Name: LidEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &308070057
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4750245059442618, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 308070056}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -1.6251296e-15, y: -0.9610883, z: -0.37884596}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1764226628}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &314536066
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1895977726773130, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 314536067}
+ m_Layer: 8
+ m_Name: LeftHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &314536067
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4172581956548718, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 314536066}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.23637588, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 475801921}
+ - {fileID: 1413991410}
+ - {fileID: 501639345}
+ - {fileID: 1572710215}
+ m_Father: {fileID: 1687584951}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &314811309
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1609829795452478, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 314811310}
+ - component: {fileID: 1876984103}
+ m_Layer: 8
+ m_Name: BirdGlassesCutscene
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &314811310
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4425608494084390, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 314811309}
+ 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: 1876984112}
+ - {fileID: 1876984108}
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &317660040
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1521926179127240, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 317660041}
+ m_Layer: 8
+ m_Name: RightToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &317660041
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4545152754167884, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 317660040}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.14453001, y: -3.5527136e-17, z: 0.0000000045534736}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 505338685}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &320420889
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1829416023738668, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 320420890}
+ - component: {fileID: 320420892}
+ - component: {fileID: 320420891}
+ m_Layer: 8
+ m_Name: FruitVendor
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &320420890
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4076554569725868, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 320420889}
+ 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: 870205958}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!136 &320420891
+CapsuleCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 136963292598819098, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 320420889}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ m_Radius: 0.38
+ m_Height: 1.8895121
+ m_Direction: 1
+ m_Center: {x: -0.00017716957, y: 0.82249975, z: -0.10417426}
+--- !u!137 &320420892
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 137997718800478266, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 320420889}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: bf2b4aaaf633ea1449a183726b6fa2f3, 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_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: d8b5188c259ea8544ae17ee5ae98d2a0, type: 3}
+ m_Bones:
+ - {fileID: 749508486}
+ - {fileID: 135702809}
+ - {fileID: 2092021786}
+ - {fileID: 335749063}
+ - {fileID: 341950531}
+ - {fileID: 1010376027}
+ - {fileID: 1931706145}
+ - {fileID: 618762790}
+ - {fileID: 198738344}
+ - {fileID: 1482364712}
+ - {fileID: 1037226045}
+ - {fileID: 951619546}
+ - {fileID: 544337150}
+ - {fileID: 1739203292}
+ - {fileID: 152145878}
+ - {fileID: 1239607854}
+ - {fileID: 1235163027}
+ - {fileID: 202015027}
+ - {fileID: 825764139}
+ - {fileID: 921028237}
+ - {fileID: 44607134}
+ - {fileID: 350175558}
+ - {fileID: 1194265730}
+ - {fileID: 737407326}
+ - {fileID: 193178712}
+ - {fileID: 2044022488}
+ - {fileID: 1358399739}
+ - {fileID: 247950790}
+ - {fileID: 1344947824}
+ - {fileID: 1631125086}
+ - {fileID: 971238211}
+ - {fileID: 959655015}
+ - {fileID: 204456292}
+ - {fileID: 246740965}
+ - {fileID: 676871845}
+ - {fileID: 225554838}
+ - {fileID: 451667831}
+ - {fileID: 587448719}
+ - {fileID: 148276350}
+ - {fileID: 57213786}
+ - {fileID: 608823032}
+ - {fileID: 888448171}
+ - {fileID: 956112131}
+ - {fileID: 1624172647}
+ - {fileID: 1821027180}
+ - {fileID: 1256989268}
+ - {fileID: 1819312147}
+ - {fileID: 1794954907}
+ - {fileID: 151382182}
+ - {fileID: 546362699}
+ - {fileID: 352481559}
+ - {fileID: 1656856922}
+ - {fileID: 695803109}
+ - {fileID: 1114387457}
+ - {fileID: 1395395388}
+ - {fileID: 2092168507}
+ - {fileID: 328680825}
+ - {fileID: 1927866878}
+ - {fileID: 1359420394}
+ - {fileID: 1677222909}
+ - {fileID: 1747715009}
+ - {fileID: 1956148251}
+ - {fileID: 1228987254}
+ - {fileID: 1342929564}
+ - {fileID: 950305161}
+ - {fileID: 1383985941}
+ - {fileID: 1872677271}
+ - {fileID: 505338685}
+ - {fileID: 317660041}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 749508486}
+ m_AABB:
+ m_Center: {x: -0.2841488, y: -0.0001771748, z: 0.033477217}
+ m_Extent: {x: 0.9447558, y: 0.97485363, z: 0.3710446}
+ m_DirtyAABB: 0
+--- !u!1 &320449115
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1441258723323594, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 320449116}
+ m_Layer: 8
+ m_Name: RightIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &320449116
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4092948705870242, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 320449115}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.029307, y: 0, z: -1.3322676e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1340242846}
+ m_Father: {fileID: 246208925}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &320778503
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ gameObject: {fileID: 1924647221}
+ activeState: 0
+--- !u!1 &323738536
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1604493484948178, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 323738537}
+ m_Layer: 8
+ m_Name: RightLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &323738537
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4902559839332032, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 323738536}
+ m_LocalRotation: {x: 0.0000000105230455, y: -0.05091579, z: 5.36485e-10, w: 0.99870294}
+ m_LocalPosition: {x: 0.280884, y: 5.3290704e-17, z: -4.440892e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2110334853}
+ m_Father: {fileID: 499500790}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &324065090
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 10
+ gameObject: {fileID: 1613677337}
+ activeState: 0
+--- !u!114 &325068502
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: I doubt this is a clue...
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!1 &328680824
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1083679859555126, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 328680825}
+ m_Layer: 8
+ m_Name: RightPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &328680825
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4543131342674968, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 328680824}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.024383, y: -1.4210854e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1927866878}
+ m_Father: {fileID: 2092168507}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &330781950
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1156864655262990, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 330781951}
+ m_Layer: 0
+ m_Name: CameraRig
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!4 &330781951
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4791706430607364, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 330781950}
+ m_LocalRotation: {x: 0, y: 0.9921366, z: -0, w: -0.12515996}
+ m_LocalPosition: {x: 5.85, y: 1.445, z: 4.39}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 129300968}
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 194.38, z: 0}
+--- !u!1 &330879413
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1206296006437598, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 330879414}
+ - component: {fileID: 330879417}
+ - component: {fileID: 330879416}
+ - component: {fileID: 330879415}
+ m_Layer: 0
+ m_Name: Crates
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &330879414
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4875675616269784, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 330879413}
+ m_LocalRotation: {x: 0, y: 0, z: 0.52738684, w: 0.8496253}
+ m_LocalPosition: {x: 8.947026, y: -3.5716333, z: 0.46245974}
+ m_LocalScale: {x: 1, y: 0.8572046, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 6
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &330879415
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64637890389089660, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 330879413}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300018, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &330879416
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23883308151997056, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 330879413}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 6811dc329162c624690784272c6a74fb, 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_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
+--- !u!33 &330879417
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33919712903004378, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 330879413}
+ m_Mesh: {fileID: 4300018, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &334386138
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1004932868094000, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 334386139}
+ m_Layer: 8
+ m_Name: joint26
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &334386139
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4895353088672950, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 334386138}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.23669972, y: 2.220446e-18, z: -1.0511579e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1315853934}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &335749062
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1300533996997140, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 335749063}
+ m_Layer: 8
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &335749063
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4984112648996154, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 335749062}
+ m_LocalRotation: {x: -3.4694473e-17, y: -6.938894e-18, z: 1.08853905e-16, w: 1}
+ m_LocalPosition: {x: -0.32546535, y: -2.6645352e-17, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 341950531}
+ - {fileID: 1931706145}
+ - {fileID: 1482364712}
+ - {fileID: 618762790}
+ - {fileID: 198738344}
+ - {fileID: 1037226045}
+ m_Father: {fileID: 2092021786}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &337111526
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1359721372277346, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 337111527}
+ m_Layer: 8
+ m_Name: LeftThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &337111527
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4043007872999694, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 337111526}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.032091826, y: 0, z: 1.3322676e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 371145285}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &338992572
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1850250695740738, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 338992573}
+ m_Layer: 8
+ m_Name: ToothEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &338992573
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4670540152991232, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 338992572}
+ m_LocalRotation: {x: 0.5000002, y: 0.49999985, z: -0.4999996, w: 0.50000036}
+ m_LocalPosition: {x: -0.24372013, y: -0.00000010939036, z: -0.0000002647714}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 780197813}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &341950530
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1507565867703228, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 341950531}
+ m_Layer: 8
+ m_Name: Hair
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &341950531
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4081006462180090, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 341950530}
+ m_LocalRotation: {x: -2.94903e-17, y: -0.054051593, z: 1.10480195e-16, w: 0.99853814}
+ m_LocalPosition: {x: -0.28576547, y: 2.1316282e-16, z: 1.7763567e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1010376027}
+ m_Father: {fileID: 335749063}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &350175557
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1550109094439342, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 350175558}
+ m_Layer: 8
+ m_Name: LeftIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &350175558
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4624670270392432, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 350175557}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.037466202, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1194265730}
+ m_Father: {fileID: 44607134}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &352481558
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1163736224815028, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 352481559}
+ m_Layer: 8
+ m_Name: RightMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &352481559
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4674823037683356, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 352481558}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.056199, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 546362699}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &352506823
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1775548960095862, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 352506824}
+ m_Layer: 8
+ m_Name: LeftIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &352506824
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4140932419226106, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 352506823}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.037984245, y: -2.842171e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 994776709}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &353424753
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1779090773263922, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 353424754}
+ m_Layer: 8
+ m_Name: RightHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &353424754
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4310738423000304, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 353424753}
+ m_LocalRotation: {x: -0.000008050334, y: 1.1037902e-11, z: -4.2626222e-11, w: 1}
+ m_LocalPosition: {x: 0.248903, y: -2.9870543e-16, z: -0.0072700707}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1232236882}
+ - {fileID: 68710441}
+ - {fileID: 1437245996}
+ - {fileID: 1247374275}
+ - {fileID: 1275677932}
+ m_Father: {fileID: 1267068667}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &357721063
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1120800991285428, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 357721064}
+ m_Layer: 8
+ m_Name: LeftEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &357721064
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4721552332981394, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 357721063}
+ m_LocalRotation: {x: 0.5000001, y: -0.49999985, z: 0.49999964, w: 0.50000036}
+ m_LocalPosition: {x: -0.2631764, y: 0.4621328, z: -0.7333016}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 225367009}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &358437358
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1055030787970580, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 358437359}
+ - component: {fileID: 358437362}
+ - component: {fileID: 358437361}
+ - component: {fileID: 358437360}
+ m_Layer: 0
+ m_Name: Signs
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &358437359
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4815881409706260, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 358437358}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 10.822483, y: -10.885503, z: 3.2829485}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 33
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &358437360
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64523257803761320, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 358437358}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300056, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &358437361
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23718180064676000, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 358437358}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 71e4cc976fb954d489e47c27ba9c6950, type: 2}
+ - {fileID: 2100000, guid: 364a48ba02c665f4688dacc733734f05, 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_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
+--- !u!33 &358437362
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33342562613990930, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 358437358}
+ m_Mesh: {fileID: 4300056, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &362302808
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1930368119423286, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 362302809}
+ m_Layer: 8
+ m_Name: LeftFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &362302809
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4687424561508062, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 362302808}
+ m_LocalRotation: {x: 0.45623592, y: 0.4810738, z: -0.325597, w: 0.6740945}
+ m_LocalPosition: {x: -0.3399538, y: -3.5527136e-17, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1317446744}
+ m_Father: {fileID: 2081772992}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &367364542
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1285214258936646, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 367364543}
+ - component: {fileID: 367364546}
+ - component: {fileID: 367364545}
+ - component: {fileID: 367364544}
+ m_Layer: 0
+ m_Name: Aircon01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &367364543
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4884770145854266, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 367364542}
+ m_LocalRotation: {x: 0, y: 0, z: 0.7071068, w: 0.7071067}
+ m_LocalPosition: {x: 1.2284051, y: 3.313872, z: 3.1997528}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &367364544
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64053140816617398, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 367364542}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300026, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &367364545
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23968419426301890, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 367364542}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 895e35e06e2d8fc448bb48e11a72ffb8, 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_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
+--- !u!33 &367364546
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33239191093196854, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 367364542}
+ m_Mesh: {fileID: 4300026, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &369522828
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1813018119839080, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 369522829}
+ m_Layer: 8
+ m_Name: LeftPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &369522829
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4908156389860200, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 369522828}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.028804602, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1920019361}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &371145284
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1026817746302712, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 371145285}
+ m_Layer: 8
+ m_Name: LeftThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &371145285
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4479458149637652, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 371145284}
+ m_LocalRotation: {x: 0.0000000094807415, y: 0.06591253, z: 0.0000000045975934, w: 0.99782544}
+ m_LocalPosition: {x: -0.039361052, y: 0, z: 6.661338e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 337111527}
+ m_Father: {fileID: 1260642816}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &372519613
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1317836706559820, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 372519614}
+ - component: {fileID: 372519617}
+ - component: {fileID: 372519616}
+ - component: {fileID: 372519615}
+ m_Layer: 0
+ m_Name: Prosthetics
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &372519614
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4605547727683712, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 372519613}
+ m_LocalRotation: {x: -0.03755156, y: 0.20184313, z: 0.0077447416, w: 0.9786671}
+ m_LocalPosition: {x: 9.290655, y: -6.353006, z: 0.7497916}
+ m_LocalScale: {x: 1.1885791, y: 1.1885792, z: 1.1885791}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 29
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &372519615
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64338788600983034, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 372519613}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300060, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &372519616
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23756778435929550, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 372519613}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 542062432d660d64f87455adddbf8343, 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_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
+--- !u!33 &372519617
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33511046810169626, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 372519613}
+ m_Mesh: {fileID: 4300060, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &376596469
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1888508749226064, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 376596470}
+ m_Layer: 8
+ m_Name: LeftThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &376596470
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4801577898337000, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 376596469}
+ m_LocalRotation: {x: 4.7011884e-13, y: -0.038481858, z: -4.560344e-13, w: 0.9992593}
+ m_LocalPosition: {x: -0.07021182, y: -1.61815e-16, z: -2.4741406e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 715871693}
+ m_Father: {fileID: 1496031208}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &377204854
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000010722667090, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!1 &379164649
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1348696791619966, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 379164650}
+ - component: {fileID: 379164651}
+ m_Layer: 0
+ m_Name: Point light (20)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &379164650
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4921290084513202, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 379164649}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.426, y: 2.782, z: -1.954}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 22
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &379164651
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108614020859741828, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 379164649}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 1, g: 0.21323532, b: 0.21323532, a: 1}
+ m_Intensity: 4.79
+ m_Range: 1.8535514
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &385863040
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1333760314274328, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 385863041}
+ m_Layer: 8
+ m_Name: RightToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &385863041
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4410290077980602, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 385863040}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.10752509, y: 0, z: 0.0000000025132985}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 996376102}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &391441398
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1139626280967032, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 391441399}
+ m_Layer: 8
+ m_Name: LeftArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &391441399
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4902699257597994, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 391441398}
+ m_LocalRotation: {x: 0.0000000072248514, y: 0.24428645, z: -0.0000000018200759,
+ w: 0.96970314}
+ m_LocalPosition: {x: -0.125819, y: -8.5265126e-16, z: -1.6653345e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1315378735}
+ m_Father: {fileID: 486374256}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &401569957
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1902297027574766, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 401569958}
+ - component: {fileID: 75465419}
+ m_Layer: 0
+ m_Name: NeedsCoffeeReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &401569958
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4168162705717014, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 401569957}
+ 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: 1799114851}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &406322443
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1741044761020636, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 406322444}
+ m_Layer: 8
+ m_Name: LeftToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &406322444
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4191672253675302, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 406322443}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.12915844, y: -5.32907e-16, z: -0.0000000047083977}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 745938063}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &408082414
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1392306474616092, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 408082415}
+ m_Layer: 8
+ m_Name: LeftIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &408082415
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4728980455999014, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 408082414}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.053736743, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1488309599}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &418569941
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1332377270700770, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 418569942}
+ m_Layer: 8
+ m_Name: LeftMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &418569942
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4529251324693728, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 418569941}
+ m_LocalRotation: {x: -1.6627555e-16, y: 3.4903128e-16, z: -8.587692e-13, w: 1}
+ m_LocalPosition: {x: -0.071800254, y: 3.5527135e-16, z: -0.00000009409786}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 885553064}
+ m_Father: {fileID: 429553336}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &418665942
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1474432425990042, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 418665943}
+ m_Layer: 8
+ m_Name: Housing
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &418665943
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4248160718679440, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 418665942}
+ m_LocalRotation: {x: 1, y: 0, z: 0, w: -6.123234e-17}
+ m_LocalPosition: {x: 7.19978e-23, y: -3.5527136e-17, z: 5.684342e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1761292050}
+ - {fileID: 1010403537}
+ - {fileID: 1764226628}
+ m_Father: {fileID: 622116615}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &419741101
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1029193614483880, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 419741102}
+ m_Layer: 8
+ m_Name: Spine1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &419741102
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4275135744338808, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 419741101}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.12336187, y: 2.7200463e-17, z: -2.220446e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1864634370}
+ m_Father: {fileID: 1383051852}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &428456828
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: AlreadyGotFish
+ requiredConditions:
+ - {fileID: 1999503990}
+ reactionCollection: {fileID: 773705719}
+--- !u!1 &428941362
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1403093450389440, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 428941363}
+ - component: {fileID: 428941364}
+ m_Layer: 0
+ m_Name: Point light (27)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &428941363
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4504164376562218, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 428941362}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -8.41, y: 4.29, z: -2.57}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 29
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &428941364
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108787634586184530, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 428941362}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 1.29
+ m_Range: 4.5548496
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &429553335
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1633182421769912, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 429553336}
+ m_Layer: 8
+ m_Name: LeftMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &429553336
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4972066984563750, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 429553335}
+ m_LocalRotation: {x: -1.6627555e-16, y: 3.4903128e-16, z: -8.587692e-13, w: 1}
+ m_LocalPosition: {x: -0.071237355, y: -0.00000009336005, z: -0.00000009356112}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 418569942}
+ m_Father: {fileID: 1033359401}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &438363684
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1910771890966604, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 438363685}
+ m_Layer: 8
+ m_Name: LeftRingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &438363685
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4521070438307582, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 438363684}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.037984245, y: -2.842171e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1971462719}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &451667830
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1027124863946538, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 451667831}
+ m_Layer: 8
+ m_Name: RightArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &451667831
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4594817927145172, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 451667830}
+ m_LocalRotation: {x: -0.0000010654834, y: 0.23490712, z: 0.0000003639413, w: 0.9720178}
+ m_LocalPosition: {x: 0.20287788, y: 2.842171e-16, z: -0.00000018149032}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 587448719}
+ m_Father: {fileID: 225554838}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &452804780
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1424644490486378, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 452804781}
+ m_Layer: 8
+ m_Name: EyeLidDown
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &452804781
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4742324179169778, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 452804780}
+ m_LocalRotation: {x: 2.4286129e-17, y: 6.938894e-18, z: 5.4426952e-17, w: 1}
+ m_LocalPosition: {x: -0.14671557, y: -2.462729e-17, z: 0.12221512}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 229620280}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &456573162
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1912315188693296, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 456573163}
+ m_Layer: 8
+ m_Name: LeftShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &456573163
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4927116186462746, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 456573162}
+ m_LocalRotation: {x: 5.551116e-17, y: 1.3877788e-17, z: 0.7071068, w: 0.7071068}
+ m_LocalPosition: {x: -0.13950405, y: -0.04414084, z: 0.02767945}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 742643171}
+ m_Father: {fileID: 1894324991}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &462869490
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1643898227649218, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 462869491}
+ - component: {fileID: 462869492}
+ m_Layer: 0
+ m_Name: Point light (18)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &462869491
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4353273095619090, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 462869490}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -14.545, y: 1.787, z: -2.34}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 20
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &462869492
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108210807825927488, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 462869490}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.9852941, g: 0.36948523, b: 0.8663791, a: 1}
+ m_Intensity: 2.21
+ m_Range: 2.2014189
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &463670958
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1497667579151894, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 463670959}
+ m_Layer: 8
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &463670959
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4830429119211150, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 463670958}
+ 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: 749508486}
+ m_Father: {fileID: 2018723045}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &475801920
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1241428319148700, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 475801921}
+ m_Layer: 8
+ m_Name: LeftIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &475801921
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4382160546646912, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 475801920}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.18389206, y: 0.01761399, z: 0.094677836}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1991146536}
+ m_Father: {fileID: 314536067}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &481086375
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1700050081129240, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 481086376}
+ - component: {fileID: 481086377}
+ m_Layer: 0
+ m_Name: Point light (6)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &481086376
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4328557746444488, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 481086375}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -10.81, y: 2.121, z: -2.61}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 9
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &481086377
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108320112269037770, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 481086375}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.9485294, g: 0.24410684, b: 0.24410684, a: 1}
+ m_Intensity: 3
+ m_Range: 2.7817535
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &481801237
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1908537433933648, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 481801238}
+ m_Layer: 8
+ m_Name: LeftClavicle
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &481801238
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4559831593791292, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 481801237}
+ m_LocalRotation: {x: -0.3940069, y: 0.47130802, z: 0.50609577, w: 0.6053878}
+ m_LocalPosition: {x: -0.27040905, y: -0.00064542517, z: 0.11539446}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1641842504}
+ m_Father: {fileID: 1538224558}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &485950337
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1799933135017956, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 485950338}
+ m_Layer: 8
+ m_Name: LeftPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &485950338
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4383836351899122, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 485950337}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.10005931, y: 1.4210854e-16, z: 0.0013077977}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 142586510}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &486374255
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1385556735449244, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 486374256}
+ m_Layer: 8
+ m_Name: LeftShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &486374256
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4728897530630554, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 486374255}
+ m_LocalRotation: {x: 0.25439653, y: -0.08854075, z: 0.65975934, w: 0.70154154}
+ m_LocalPosition: {x: -0.22099243, y: -0.03906416, z: 0.037700873}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 391441399}
+ m_Father: {fileID: 1864634370}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &493698176
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000011350643396, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!1 &499500789
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1507209586471042, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 499500790}
+ m_Layer: 8
+ m_Name: RightUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &499500790
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4601107493483626, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 499500789}
+ m_LocalRotation: {x: 0.9999811, y: 0.0003233856, z: -1.6110871e-18, w: 0.0061396505}
+ m_LocalPosition: {x: 0.031695243, y: 0.11881498, z: -0.010353292}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 323738537}
+ m_Father: {fileID: 1763312687}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &501639344
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1289647736341120, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 501639345}
+ m_Layer: 8
+ m_Name: LeftPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &501639345
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4130891453406696, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 501639344}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.17971253, y: 0.01761399, z: -0.0736973}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 760311244}
+ m_Father: {fileID: 314536067}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &505338684
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1262783720590842, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 505338685}
+ m_Layer: 8
+ m_Name: RightToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &505338685
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4838317788191694, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 505338684}
+ m_LocalRotation: {x: 0, y: 0.4002799, z: -0, w: 0.916393}
+ m_LocalPosition: {x: 0.13682114, y: 3.5527136e-17, z: -0.00000041386167}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 317660041}
+ m_Father: {fileID: 1872677271}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &512314285
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1714944462358832, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 512314286}
+ m_Layer: 8
+ m_Name: LeftThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &512314286
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4591073207887806, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 512314285}
+ m_LocalRotation: {x: 0, y: 0.7071042, z: -0, w: 0.70710933}
+ m_LocalPosition: {x: -0.07843518, y: -0.0000003658159, z: -0.0000003717968}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1297885523}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &530062570
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1861324879137074, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 530062571}
+ m_Layer: 8
+ m_Name: Tongue
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &530062571
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4301742699169024, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 530062570}
+ m_LocalRotation: {x: 0.5000005, y: -0.49999952, z: 0.49999952, w: 0.5000005}
+ m_LocalPosition: {x: -0.13735615, y: -0.0005649498, z: -0.54466915}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1426905460}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &532421251
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1489871198193368, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 532421252}
+ m_Layer: 8
+ m_Name: RightIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &532421252
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4885668563005322, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 532421251}
+ m_LocalRotation: {x: 0, y: 0.0006686676, z: -0, w: 0.99999976}
+ m_LocalPosition: {x: 0.117501, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 691970158}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &541320919
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1124984950492154, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 541320920}
+ - component: {fileID: 541320922}
+ - component: {fileID: 541320921}
+ m_Layer: 0
+ m_Name: Flies
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &541320920
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4002554676670300, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 541320919}
+ m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071067}
+ m_LocalPosition: {x: 4.773, y: 1.2220001, z: -1.644}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 6
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!199 &541320921
+ParticleSystemRenderer:
+ serializedVersion: 4
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 199543253440531780, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 541320919}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: a7afd1b848210eb47af0d2b72c2844c0, type: 2}
+ - {fileID: 0}
+ 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_SelectedEditorRenderState: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingLayer: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_UseCustomVertexStreams: 0
+ m_VertexStreams: 0001030405
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+ m_MaskInteraction: 0
+--- !u!198 &541320922
+ParticleSystem:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 198062890063356326, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 541320919}
+ serializedVersion: 5
+ lengthInSec: 5
+ simulationSpeed: 1
+ looping: 1
+ prewarm: 0
+ playOnAwake: 1
+ useUnscaledTime: 0
+ autoRandomSeed: 1
+ useRigidbodyForVelocity: 1
+ startDelay:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ moveWithTransform: 0
+ moveWithCustomTransform: {fileID: 0}
+ scalingMode: 1
+ randomSeed: 0
+ InitialModule:
+ serializedVersion: 3
+ enabled: 1
+ startLifetime:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 4
+ minScalar: 5
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startSpeed:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 5
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startColor:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ startSize:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0.1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startSizeY:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startSizeZ:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startRotationX:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startRotationY:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startRotation:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ randomizeRotationDirection: 0
+ maxNumParticles: 1000
+ size3D: 0
+ rotation3D: 0
+ gravityModifier:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ ShapeModule:
+ serializedVersion: 5
+ enabled: 1
+ type: 0
+ angle: 25
+ length: 5
+ boxThickness: {x: 0, y: 0, z: 0}
+ radiusThickness: 1
+ donutRadius: 0.2
+ m_Position: {x: 0, y: 0, z: 0}
+ m_Rotation: {x: 0, y: 0, z: 0}
+ m_Scale: {x: 1, y: 1, z: 1}
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ alignToDirection: 0
+ randomDirectionAmount: 0
+ sphericalDirectionAmount: 0
+ randomPositionAmount: 0
+ radius:
+ value: 0.3
+ mode: 0
+ spread: 0
+ speed:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ arc:
+ value: 360
+ mode: 0
+ spread: 0
+ speed:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 4
+ rateOverTime:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 10
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ rateOverDistance:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ m_BurstCount: 0
+ m_Bursts: []
+ SizeModule:
+ enabled: 1
+ curve:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0.4516129
+ inSlope: 2.336455
+ outSlope: 2.336455
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0.54838705
+ inSlope: -1.5883799
+ outSlope: -1.5883799
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ z:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ curve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0.7853982
+ minScalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ minMaxState: 1
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 0}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 1}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 4048
+ atime2: 62451
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ UVModule:
+ enabled: 1
+ mode: 0
+ frameOverTime:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 0.5
+ minScalar: 0.9999
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 1
+ outSlope: 1
+ tangentMode: 34
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 1
+ tangentMode: 34
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startFrame:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ tilesX: 2
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 200
+ uvChannelMask: -1
+ flipU: 0
+ flipV: 0
+ randomRow: 1
+ sprites:
+ - sprite: {fileID: 0}
+ VelocityModule:
+ enabled: 1
+ x:
+ serializedVersion: 2
+ minMaxState: 2
+ scalar: 0.5
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0.06810041
+ inSlope: -2.2497234
+ outSlope: -2.2497234
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.19249876
+ value: 0.36654413
+ inSlope: 0.03747642
+ outSlope: 0.03747642
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.4352276
+ value: 0.11553252
+ inSlope: -0.68455935
+ outSlope: -0.68455935
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.6204743
+ value: 0.36449665
+ inSlope: 0.18052757
+ outSlope: 0.18052757
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.83837074
+ value: 0.117438644
+ inSlope: -1.1840463
+ outSlope: -1.1840463
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0.032258034
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0.004750593
+ value: -0.046595
+ inSlope: 2.766428
+ outSlope: 2.766428
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.21140938
+ value: -0.29423496
+ inSlope: -1.2541094
+ outSlope: -1.2541094
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.42009977
+ value: -0.123808935
+ inSlope: -0.538677
+ outSlope: -0.538677
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.6481695
+ value: -0.3073597
+ inSlope: 0.10035932
+ outSlope: 0.10035932
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.83799195
+ value: -0.09346932
+ inSlope: 2.4975836
+ outSlope: 2.4975836
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: -0.08243726
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ y:
+ serializedVersion: 2
+ minMaxState: 2
+ scalar: 1
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0.004750593
+ value: -0.0716846
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.40375754
+ value: -0.23638044
+ inSlope: 0.021606684
+ outSlope: 0.021606684
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.6840854
+ value: 0.1234549
+ inSlope: -0.006686896
+ outSlope: -0.006686896
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: -0.05734768
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0.057347655
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.23760581
+ value: 0.20421031
+ inSlope: 0.048317015
+ outSlope: 0.048317015
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.5059382
+ value: -0.24372762
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.6889286
+ value: 0.1613541
+ inSlope: -0.72687864
+ outSlope: -0.72687864
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0.057347655
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ z:
+ serializedVersion: 2
+ minMaxState: 2
+ scalar: 1
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: -0.06451613
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.17815739
+ value: -0.020461192
+ inSlope: -0.0078603625
+ outSlope: -0.0078603625
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.5983398
+ value: 0.12355407
+ inSlope: -0.0914745
+ outSlope: -0.0914745
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.9976245
+ value: -0.071684584
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0.04301074
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.049881235
+ value: 0.04301074
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.20672119
+ value: 0.1492432
+ inSlope: -0.0678096
+ outSlope: -0.0678096
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.5964561
+ value: -0.21700746
+ inSlope: -0.26583672
+ outSlope: -0.26583672
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: -0.000000011175871
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ ForceModule:
+ enabled: 0
+ x:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ z:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ z:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ magnitude:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ NoiseModule:
+ enabled: 0
+ strength:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ strengthY:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ strengthZ:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxes: 0
+ frequency: 0.5
+ damping: 1
+ octaves: 1
+ octaveMultiplier: 0.5
+ octaveScale: 2
+ quality: 2
+ scrollSpeed:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ remap:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ remapY:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ remapZ:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ remapEnabled: 0
+ positionAmount:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ rotationAmount:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ sizeAmount:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ z:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ curve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0.7853982
+ minScalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ minMaxState: 1
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ colliderForce: 0
+ multiplyColliderForceByParticleSize: 0
+ multiplyColliderForceByParticleSpeed: 0
+ multiplyColliderForceByCollisionAngle: 1
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ m_Bounce:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ m_EnergyLossOnCollision:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ serializedVersion: 2
+ enabled: 0
+ subEmitters:
+ - emitter: {fileID: 0}
+ type: 0
+ properties: 0
+ LightsModule:
+ enabled: 0
+ ratio: 0
+ light: {fileID: 0}
+ randomDistribution: 1
+ color: 1
+ range: 1
+ intensity: 1
+ rangeCurve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ intensityCurve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ maxLights: 20
+ TrailModule:
+ enabled: 0
+ ratio: 1
+ lifetime:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minVertexDistance: 0.2
+ textureMode: 0
+ worldSpace: 0
+ dieWithParticles: 1
+ sizeAffectsWidth: 1
+ sizeAffectsLifetime: 0
+ inheritParticleColor: 1
+ generateLightingData: 0
+ colorOverLifetime:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ widthOverTrail:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ colorOverTrail:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ CustomDataModule:
+ enabled: 0
+ mode0: 0
+ vectorComponentCount0: 4
+ color0:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ vector0_0:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector0_1:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector0_2:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector0_3:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ mode1: 0
+ vectorComponentCount1: 4
+ color1:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ vector1_0:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector1_1:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector1_2:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector1_3:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+--- !u!114 &541883755
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000010533473472, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!1 &544337149
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1481599880621222, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 544337150}
+ m_Layer: 8
+ m_Name: LeftArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &544337150
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4840888174005322, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 544337149}
+ m_LocalRotation: {x: 0, y: 0.23490712, z: -0, w: 0.9720178}
+ m_LocalPosition: {x: -0.20287824, y: -1.4210854e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1739203292}
+ m_Father: {fileID: 951619546}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &546362698
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1759670181157646, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 546362699}
+ m_Layer: 8
+ m_Name: RightMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &546362699
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4873483094941698, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 546362698}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.039548, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 352481559}
+ m_Father: {fileID: 151382182}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &549784599
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1404695803335330, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 549784600}
+ m_Layer: 8
+ m_Name: Eyes
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &549784600
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4551808282005592, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 549784599}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.3220314, y: 0.13082854, z: -0.0029089814}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 24314631}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &555312890
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114258688872009142, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1067759585}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 70116245}
+ - {fileID: 566268937}
+--- !u!1 &558116375
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1715352415802592, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 558116376}
+ m_Layer: 8
+ m_Name: RightArm1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &558116376
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4152249757789380, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 558116375}
+ m_LocalRotation: {x: 0.5000003, y: 0.49999988, z: 0.5000001, w: 0.49999967}
+ m_LocalPosition: {x: -0.20701504, y: -0.8019176, z: -0.3792052}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 871616457}
+ m_Father: {fileID: 1172827727}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &558402487
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1350652159632512, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 558402488}
+ - component: {fileID: 558402489}
+ m_Layer: 8
+ m_Name: Sharkman
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &558402488
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4919318964882424, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 558402487}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 3.52816, y: 0, z: -3.118}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1032243117}
+ - {fileID: 67410039}
+ - {fileID: 1612679603}
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 11
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!95 &558402489
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 95322639100273020, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 558402487}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: 208f4309afd2a5e41864618ed2613adf, type: 3}
+ m_Controller: {fileID: 9100000, guid: 1f65f9802e086de4588d52f0ddbbc1ed, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!1 &564533432
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1608233266117128, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 564533433}
+ m_Layer: 8
+ m_Name: RightPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &564533433
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4624445712281230, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 564533432}
+ m_LocalRotation: {x: -4.4408654e-16, y: -2.0917636e-11, z: -2.3907527e-14, w: 1}
+ m_LocalPosition: {x: 0.17971, y: -0.017609991, z: 0.073697}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 664563757}
+ m_Father: {fileID: 206522660}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &566268937
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: The bird has flown away!
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!1 &570034536
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1454242956744218, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 570034537}
+ m_Layer: 8
+ m_Name: LeftRing2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &570034537
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4384217808218216, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 570034536}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.034947343, y: -2.842171e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1971462719}
+ m_Father: {fileID: 193637920}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &580487807
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1275224584837536, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 580487808}
+ m_Layer: 8
+ m_Name: RightThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &580487808
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4990574440195556, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 580487807}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.03209195, y: -8.895597e-11, z: 0.00000004011068}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1693766325}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &581827943
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1586736303921980, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 581827944}
+ m_Layer: 8
+ m_Name: RightRingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &581827944
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4572880429513126, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 581827943}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.037984, y: 0, z: -2.6645352e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1619978997}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &583920926
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: 754e60097902b4234b185dc059451525, type: 3}
+ delay: 0
+--- !u!1 &583948672
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1381966919381396, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 583948673}
+ - component: {fileID: 583948676}
+ - component: {fileID: 583948675}
+ - component: {fileID: 583948674}
+ m_Layer: 0
+ m_Name: FoodTrays004
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &583948673
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4689876401436436, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 583948672}
+ m_LocalRotation: {x: 0.092997275, y: 0.09158926, z: 0.69568956, w: 0.7063844}
+ m_LocalPosition: {x: 3.1040728, y: -12.47893, z: 0.9919782}
+ m_LocalScale: {x: 1, y: 1, z: 0.99999994}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 18
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &583948674
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64287490193297064, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 583948672}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300044, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &583948675
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23240819906762412, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 583948672}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 61678ebbb8fa54046afc6d3f0232531c, 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_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
+--- !u!33 &583948676
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33776064416730418, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 583948672}
+ m_Mesh: {fileID: 4300044, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &586176003
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1189702311069390, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 586176004}
+ m_Layer: 8
+ m_Name: RightThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &586176004
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4023777597839214, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 586176003}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.05449389, y: -0.0000048590196, z: -0.000001193841}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1665117755}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &587448718
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1798629328622448, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 587448719}
+ m_Layer: 8
+ m_Name: RightForeArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &587448719
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4118033566597976, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 587448718}
+ m_LocalRotation: {x: 2.7090811e-30, y: 0.09734922, z: -1.4396253e-28, w: 0.9952503}
+ m_LocalPosition: {x: 0.24626994, y: -2.842171e-16, z: 0.0000004800999}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 148276350}
+ m_Father: {fileID: 451667831}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &588595127
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1306440827693494, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 588595128}
+ m_Layer: 8
+ m_Name: RightPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &588595128
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4698029520992996, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 588595127}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.100057, y: 0.0000007306215, z: -0.0013079634}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1263706725}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &588962459
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: NoCoin
+ requiredConditions:
+ - {fileID: 1396242976}
+ reactionCollection: {fileID: 1986364766}
+--- !u!1 &596487727
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1384155506555360, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 596487728}
+ m_Layer: 8
+ m_Name: RightArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &596487728
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4467114795845402, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 596487727}
+ m_LocalRotation: {x: 0.0000078064295, y: 0.24428402, z: -0.000001966607, w: 0.96970373}
+ m_LocalPosition: {x: 0.12581895, y: -2.842171e-16, z: 0.00000008455362}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1267068667}
+ m_Father: {fileID: 2041560055}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &603964764
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1534927025324172, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 603964765}
+ m_Layer: 8
+ m_Name: LeftUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &603964765
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4539394588549260, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 603964764}
+ m_LocalRotation: {x: 0.024837472, y: -0.000000007448282, z: 0.9996915, w: 1.8505364e-10}
+ m_LocalPosition: {x: 0.015463621, y: -0.09103353, z: -0.004524521}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2081772992}
+ m_Father: {fileID: 1478519145}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &608498811
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 1876984103}
+ trigger: FlyAway
+--- !u!1 &608823031
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1913880011951812, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 608823032}
+ m_Layer: 8
+ m_Name: RightThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &608823032
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4333147386769596, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 608823031}
+ m_LocalRotation: {x: 0.000000010456562, y: -0.123088084, z: 0.0000000012969389,
+ w: 0.99239576}
+ m_LocalPosition: {x: 0.061975945, y: -1.4210854e-16, z: 0.000000055655498}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 888448171}
+ m_Father: {fileID: 57213786}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &612492769
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1190871805886894, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 612492770}
+ m_Layer: 8
+ m_Name: Hair
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &612492770
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4504619158805100, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 612492769}
+ m_LocalRotation: {x: -0.037801173, y: 0.22485705, z: -0.4612187, w: 0.8574892}
+ m_LocalPosition: {x: -0.12490513, y: -1.1368684e-15, z: 2.2737367e-15}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1973710785}
+ m_Father: {fileID: 1579899206}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &614588467
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1830511383690708, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 614588468}
+ m_Layer: 8
+ m_Name: Spine1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &614588468
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4609311780225474, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 614588467}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.08167122, y: 1.8134654e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1894324991}
+ m_Father: {fileID: 1478519145}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &614890616
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1659110558967926, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 614890617}
+ m_Layer: 8
+ m_Name: LeftEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &614890617
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4781408196423810, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 614890616}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.16699106, y: -0.044440836, z: 0.09802649}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 229620280}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &617806999
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1211140645126888, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 617807000}
+ - component: {fileID: 617807003}
+ - component: {fileID: 617807002}
+ - component: {fileID: 617807001}
+ m_Layer: 0
+ m_Name: Pots02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &617807000
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4314891669118128, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 617806999}
+ m_LocalRotation: {x: 0, y: 0, z: -0.73727715, w: 0.6755904}
+ m_LocalPosition: {x: -10.762651, y: -2.156256, z: 0}
+ m_LocalScale: {x: 0.729112, y: 0.729112, z: 0.6984594}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 27
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &617807001
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64377238217541618, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 617806999}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300024, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &617807002
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23226314004473022, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 617806999}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: baa9de290ac47c74b8ce1db516ff702e, 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_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
+--- !u!33 &617807003
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33437276451073896, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 617806999}
+ m_Mesh: {fileID: 4300024, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &618762789
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1922263903609228, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 618762790}
+ m_Layer: 8
+ m_Name: Mouth
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &618762790
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4037405652626000, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 618762789}
+ m_LocalRotation: {x: -2.7755576e-17, y: -1.3877788e-17, z: 1.08853905e-16, w: 1}
+ m_LocalPosition: {x: -0.029753968, y: 9.809792e-17, z: 0.20504904}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 335749063}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &622116614
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1278820164048014, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 622116615}
+ m_Layer: 8
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &622116615
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4255600639320718, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 622116614}
+ 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: 418665943}
+ - {fileID: 1172827727}
+ m_Father: {fileID: 1900119161}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &624678284
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1257263159835142, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 624678285}
+ m_Layer: 8
+ m_Name: HeadEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &624678285
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4513012898119950, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 624678284}
+ m_LocalRotation: {x: 0.5, y: -0.5, z: 0.49999976, w: 0.50000024}
+ m_LocalPosition: {x: -0.45209667, y: 0.00000020329225, z: -3.7499653e-10}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 225367009}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &630127492
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1170191382953186, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 630127493}
+ m_Layer: 8
+ m_Name: EyelidUp
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &630127493
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4342748340397804, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 630127492}
+ m_LocalRotation: {x: 2.4286129e-17, y: 6.938894e-18, z: 5.4426952e-17, w: 1}
+ m_LocalPosition: {x: -0.17134191, y: -1.9211657e-17, z: 0.12136001}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 229620280}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &631652699
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1668212230663534, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 631652700}
+ m_Layer: 8
+ m_Name: HeadEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &631652700
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4270397023535080, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 631652699}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.5899, y: 2.0017436e-16, z: -1.3223995e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 24314631}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &633676265
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1167263857236380, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 633676266}
+ - component: {fileID: 633676269}
+ - component: {fileID: 633676268}
+ - component: {fileID: 633676267}
+ m_Layer: 8
+ m_Name: FrontWallShadowCaster
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967169
+ m_IsActive: 1
+--- !u!4 &633676266
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4760494540079988, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 633676265}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.3756185, z: 2.0719466}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 19
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &633676267
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64864306977769160, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 633676265}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300040, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &633676268
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23989306206043610, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 633676265}
+ m_Enabled: 1
+ m_CastShadows: 3
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: e59530a749010fc4fb744508277ac143, type: 2}
+ m_StaticBatchInfo:
+ firstSubMesh: 0
+ subMeshCount: 0
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 0.001
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 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
+--- !u!33 &633676269
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33535885844990070, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 633676265}
+ m_Mesh: {fileID: 4300040, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &637814459
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1286729117988024, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 637814460}
+ - component: {fileID: 637814461}
+ m_Layer: 0
+ m_Name: Ambient
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &637814460
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4067063041036882, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 637814459}
+ 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: 2031787514}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!82 &637814461
+AudioSource:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 82975534796728914, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 637814459}
+ m_Enabled: 1
+ serializedVersion: 4
+ OutputAudioMixerGroup: {fileID: 0}
+ m_audioClip: {fileID: 8300000, guid: 2133d76a50380f84b8c2275c2f348c29, type: 3}
+ m_PlayOnAwake: 1
+ m_Volume: 1
+ m_Pitch: 1
+ Loop: 1
+ Mute: 0
+ Spatialize: 0
+ SpatializePostEffects: 0
+ Priority: 128
+ DopplerLevel: 1
+ MinDistance: 1
+ MaxDistance: 500
+ Pan2D: 0
+ rolloffMode: 0
+ BypassEffects: 0
+ BypassListenerEffects: 0
+ BypassReverbZones: 0
+ rolloffCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ panLevelCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ spreadCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ reverbZoneMixCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+--- !u!1 &638551459
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1408797378766800, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 638551460}
+ - component: {fileID: 638551461}
+ m_Layer: 0
+ m_Name: DefaultReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &638551460
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4683099075966338, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 638551459}
+ 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: 225369431}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &638551461
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114870560252049588, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 638551459}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 1309590729}
+ - {fileID: 608498811}
+ - {fileID: 1101621493}
+ - {fileID: 197519449}
+ - {fileID: 1627481134}
+ - {fileID: 749286455}
+ - {fileID: 660451171}
+ - {fileID: 1970471229}
+ - {fileID: 964840749}
+--- !u!114 &640844049
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2d482a9551d8b074097fdb7beded4043, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ item: {fileID: 11400000, guid: d24caee896ca7114aafaf607d9760c9d, type: 2}
+--- !u!1 &655924177
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1668207111171714, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 655924178}
+ - component: {fileID: 655924181}
+ - component: {fileID: 655924180}
+ - component: {fileID: 655924179}
+ m_Layer: 0
+ m_Name: Dustbin02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &655924178
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4102540957435926, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 655924177}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 5.773584, y: 1.2478547, z: 0.004395504}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 12
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &655924179
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64087574572509844, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 655924177}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300036, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &655924180
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23497084853939740, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 655924177}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 7cf13ff2ec6ecf6458f22b58c36f2e32, 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_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
+--- !u!33 &655924181
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33228166562977150, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 655924177}
+ m_Mesh: {fileID: 4300036, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &659368409
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1068195166308230, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 659368410}
+ m_Layer: 8
+ m_Name: RightMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &659368410
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4551495948398720, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 659368409}
+ m_LocalRotation: {x: -1.1199782e-16, y: -1.6651927e-16, z: 8.568845e-17, w: 1}
+ m_LocalPosition: {x: -0.07179999, y: 0.000000086878345, z: 0.00000014052343}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2061616415}
+ m_Father: {fileID: 1835033666}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &660451171
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: The bird knocked those glasses down.
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 3
+--- !u!1 &664563756
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1474426243618030, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 664563757}
+ m_Layer: 8
+ m_Name: RightPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &664563757
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4859273218112530, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 664563756}
+ m_LocalRotation: {x: -4.4408386e-16, y: -2.0917636e-11, z: -4.7849203e-14, w: 1}
+ m_LocalPosition: {x: 0.042389996, y: -2.842171e-16, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1942573747}
+ m_Father: {fileID: 564533433}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &665124894
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1599223867357872, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 665124895}
+ m_Layer: 8
+ m_Name: RightMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &665124895
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4294318642243102, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 665124894}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.103791, y: 0.0005255686, z: 0.00016344545}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2042289360}
+ m_Father: {fileID: 157747207}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &671095691
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1025581367951834, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 671095692}
+ m_Layer: 8
+ m_Name: LeftPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &671095692
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4443877443435950, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 671095691}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.03761572, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 768117769}
+ m_Father: {fileID: 760311244}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &672167502
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1306506203144704, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 672167503}
+ m_Layer: 8
+ m_Name: RightThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &672167503
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4310699945359890, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 672167502}
+ m_LocalRotation: {x: -1.9237782e-16, y: -0.42123008, z: -2.117612e-16, w: 0.9069538}
+ m_LocalPosition: {x: 0.05244655, y: 0.015451191, z: 0.0019170693}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 819662472}
+ m_Father: {fileID: 791123704}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &673967423
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1315825025554182, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 673967424}
+ m_Layer: 8
+ m_Name: RightThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &673967424
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4262223234532920, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 673967423}
+ m_LocalRotation: {x: -0.00000042780886, y: -0.70710605, z: -0.00000042780798, w: 0.7071075}
+ m_LocalPosition: {x: -0.078439996, y: 0.00000009491277, z: 0.0000001535189}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1403116042}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &676871844
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1104602345711850, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 676871845}
+ m_Layer: 8
+ m_Name: LeftPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &676871845
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4777585100854000, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 676871844}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.04311587, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 246740965}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &684156871
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1896579785465918, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 684156872}
+ - component: {fileID: 684156875}
+ - component: {fileID: 684156874}
+ - component: {fileID: 684156873}
+ m_Layer: 0
+ m_Name: CoffeeBotCover
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &684156872
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4705328559334390, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 684156871}
+ m_LocalRotation: {x: -0.65573126, y: -0.26460642, z: -0.26460642, w: 0.65573126}
+ m_LocalPosition: {x: 8.767, y: 0.034, z: -1.192}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 5
+ m_LocalEulerAnglesHint: {x: -89.981, y: 0, z: -43.881}
+--- !u!64 &684156873
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64535440918673296, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 684156871}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300000, guid: a6c69704f7dc81b4b943597cabdaece9, type: 3}
+--- !u!23 &684156874
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23246358918709120, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 684156871}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 255f1dad6693d9f4188b911d81ea50ed, type: 2}
+ m_StaticBatchInfo:
+ firstSubMesh: 0
+ subMeshCount: 0
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 0.001
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 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
+--- !u!33 &684156875
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33216088382909664, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 684156871}
+ m_Mesh: {fileID: 4300000, guid: a6c69704f7dc81b4b943597cabdaece9, type: 3}
+--- !u!1 &686716282
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1093538058338278, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 686716283}
+ m_Layer: 8
+ m_Name: RightLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &686716283
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4716310032299980, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 686716282}
+ m_LocalRotation: {x: 0.000000010525249, y: -0.046633013, z: 4.913586e-10, w: 0.9989121}
+ m_LocalPosition: {x: 0.296688, y: 7.105427e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 56995166}
+ m_Father: {fileID: 1075129899}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &689248854
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1702790564467554, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 689248855}
+ m_Layer: 8
+ m_Name: HeadEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &689248855
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4420695840070342, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 689248854}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.38803744, y: 3.5527136e-17, z: -1.5820678e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 229620280}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &691970157
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1166362560592310, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 691970158}
+ m_Layer: 8
+ m_Name: RightIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &691970158
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4859366705604382, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 691970157}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.082974, y: 0, z: 7.105427e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 532421252}
+ m_Father: {fileID: 105733410}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &695803108
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1656915304503280, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 695803109}
+ m_Layer: 8
+ m_Name: RightRing2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &695803109
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4543866284073386, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 695803108}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.027950998, y: -1.4210854e-16, z: 3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1114387457}
+ m_Father: {fileID: 1656856922}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &700444192
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1802075822238828, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 700444193}
+ m_Layer: 8
+ m_Name: RightToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &700444193
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4523236226791568, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 700444192}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.07749821, y: -0.00000031728962, z: -0.000000032375706}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1592712828}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &707417586
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: e1947d026bceb4d6fbfd792153287c04, type: 3}
+ delay: 0
+--- !u!1 &714184896
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1505458075770106, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 714184897}
+ m_Layer: 8
+ m_Name: RightArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &714184897
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4229845941279328, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 714184896}
+ m_LocalRotation: {x: 0.13227916, y: 0.0000000073851085, z: 2.1436086e-10, w: 0.9912125}
+ m_LocalPosition: {x: 0.1157102, y: -0.014006777, z: 0.051915508}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1987081132}
+ m_Father: {fileID: 1180265703}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &715871692
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1783727131606300, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 715871693}
+ m_Layer: 8
+ m_Name: LeftThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &715871693
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4595464074880008, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 715871692}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.054499395, y: -1.7985613e-16, z: -1.5065444e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 376596470}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &718489738
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1674463910578992, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 718489739}
+ m_Layer: 8
+ m_Name: LeftPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &718489739
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4677685380788346, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 718489738}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.08243348, y: -0.0034397033, z: -0.055764787}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 142586510}
+ m_Father: {fileID: 253531424}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &723904263
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1852775790996316, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 723904264}
+ - component: {fileID: 723904265}
+ m_Layer: 0
+ m_Name: Point light
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &723904264
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4662913745740874, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 723904263}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 4.93, y: 1.88, z: 2.35}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &723904265
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108834510525363858, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 723904263}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Intensity: 1
+ m_Range: 5.915407
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &733607406
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1548631254559470, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 733607407}
+ - component: {fileID: 733607411}
+ - component: {fileID: 733607410}
+ - component: {fileID: 733607409}
+ - component: {fileID: 733607408}
+ m_Layer: 8
+ m_Name: CoffeeBotSigns
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &733607407
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4029953736388024, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 733607406}
+ m_LocalRotation: {x: 0, y: 0.30365878, z: 0, w: 0.9527809}
+ m_LocalPosition: {x: 0.03420735, y: 0.94246745, z: 0.1691443}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1900119161}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &733607408
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64772745683617852, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 733607406}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300000, guid: 8afaf1aee63329944a36d7e8b7a6bae2, type: 3}
+--- !u!95 &733607409
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 95474728605126190, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 733607406}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: 8afaf1aee63329944a36d7e8b7a6bae2, type: 3}
+ m_Controller: {fileID: 0}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!23 &733607410
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23529611018775350, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 733607406}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 71e4cc976fb954d489e47c27ba9c6950, 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_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
+--- !u!33 &733607411
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33153381388828846, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 733607406}
+ m_Mesh: {fileID: 4300000, guid: 8afaf1aee63329944a36d7e8b7a6bae2, type: 3}
+--- !u!1 &737407325
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1904666192239846, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 737407326}
+ m_Layer: 8
+ m_Name: LeftMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &737407326
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4207016795238748, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 737407325}
+ m_LocalRotation: {x: 0, y: -0.06320087, z: -0, w: 0.99800086}
+ m_LocalPosition: {x: -0.16487063, y: 0.021124894, z: 0.0020443827}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 193178712}
+ m_Father: {fileID: 152145878}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &742643170
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1533290655850866, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 742643171}
+ m_Layer: 8
+ m_Name: LeftArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &742643171
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4606319613400106, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 742643170}
+ m_LocalRotation: {x: 0.13138156, y: -1.7294351e-17, z: 0.000000006669684, w: 0.9913319}
+ m_LocalPosition: {x: -0.115709655, y: 0.014006765, z: -0.051915463}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1029515321}
+ m_Father: {fileID: 456573163}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &745938062
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1883129302238322, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 745938063}
+ m_Layer: 8
+ m_Name: LeftToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &745938063
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4238468824336236, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 745938062}
+ m_LocalRotation: {x: 0.000000020894369, y: 0.40024456, z: -0.00000007581294, w: 0.91640836}
+ m_LocalPosition: {x: -0.19535121, y: -1.4210854e-16, z: -0.0000000017076126}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 406322444}
+ m_Father: {fileID: 1638732852}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &749286455
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000012976324630, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!1 &749508485
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1145259217623372, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 749508486}
+ m_Layer: 8
+ m_Name: Hips
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &749508486
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4163770609727154, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 749508485}
+ m_LocalRotation: {x: 0, y: -0, z: -0.7071068, w: 0.7071068}
+ m_LocalPosition: {x: -0, y: 0.5383509, z: -0.1376512}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1677222909}
+ - {fileID: 950305161}
+ - {fileID: 135702809}
+ m_Father: {fileID: 463670959}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &760236023
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1612033526220400, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 760236024}
+ m_Layer: 8
+ m_Name: RightLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &760236024
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4061056903664212, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 760236023}
+ m_LocalRotation: {x: -2.6131697e-16, y: -0.0000005366863, z: 1.758931e-13, w: 1}
+ m_LocalPosition: {x: 0.34043205, y: 3.5527136e-17, z: 0.00000007351967}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 293960128}
+ m_Father: {fileID: 2076730004}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &760311243
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1880514506590670, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 760311244}
+ m_Layer: 8
+ m_Name: LeftPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &760311244
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4391824760488294, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 760311243}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.04239232, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 671095692}
+ m_Father: {fileID: 501639345}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &768117768
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1832521575286468, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 768117769}
+ m_Layer: 8
+ m_Name: LeftPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &768117769
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4060199667642324, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 768117768}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.046571843, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 671095692}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &771476003
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1981048793210196, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 771476004}
+ m_Layer: 8
+ m_Name: LeftHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &771476004
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4432033858690278, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 771476003}
+ m_LocalRotation: {x: 0.000000021073424, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.24890369, y: 2.837613e-16, z: 0.0073472136}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 778348740}
+ - {fileID: 2015049875}
+ - {fileID: 1561686513}
+ - {fileID: 193637920}
+ - {fileID: 835936546}
+ m_Father: {fileID: 1315378735}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &773705719
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114090481200682492, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1344299866}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 1960283415}
+ - {fileID: 1770216813}
+--- !u!1 &778145261
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1554552540358934, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 778145262}
+ m_Layer: 8
+ m_Name: LeftThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &778145262
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4451064072950670, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 778145261}
+ m_LocalRotation: {x: -1.6338827e-14, y: -0.43567598, z: -1.29036415e-14, w: 0.90010357}
+ m_LocalPosition: {x: -0.05244661, y: -0.0010045549, z: -0.0019171397}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1583963821}
+ m_Father: {fileID: 1584391189}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &778348739
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1738862843049842, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 778348740}
+ m_Layer: 8
+ m_Name: LeftIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &778348740
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4727906577016020, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 778348739}
+ m_LocalRotation: {x: 0.000000010536712, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.11561086, y: 0.009046224, z: 0.047733396}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 253419035}
+ m_Father: {fileID: 771476004}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &780197812
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1180307018188118, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 780197813}
+ m_Layer: 8
+ m_Name: Tooth
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &780197813
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4569778806949206, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 780197812}
+ m_LocalRotation: {x: 6.115467e-17, y: 1, z: -2.443103e-13, w: -0.00000031793994}
+ m_LocalPosition: {x: -0.09871685, y: -0.0005653607, z: -0.4459455}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 338992573}
+ m_Father: {fileID: 225367009}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &791123703
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1091594327867166, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 791123704}
+ m_Layer: 8
+ m_Name: RightThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &791123704
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4190013251672078, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 791123703}
+ m_LocalRotation: {x: 1.5883571e-16, y: 0.5196694, z: -1.7782864e-16, w: 0.8543675}
+ m_LocalPosition: {x: 0.024218239, y: 0.056388304, z: -0.05957545}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 672167503}
+ m_Father: {fileID: 157747207}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &797789112
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1518954840137622, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 797789113}
+ - component: {fileID: 797789114}
+ m_Layer: 0
+ m_Name: Point light (21)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &797789113
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4728185312291444, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 797789112}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 8.5, y: 6.58, z: -1.5}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 23
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &797789114
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108513327495154650, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 797789112}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 2
+ m_Range: 5.526562
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!114 &800296404
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 227346009}
+ trigger: MakeCoffee
+--- !u!82 &803947869
+AudioSource:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 82057902098707664, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 824298992}
+ m_Enabled: 1
+ serializedVersion: 4
+ OutputAudioMixerGroup: {fileID: 0}
+ m_audioClip: {fileID: 0}
+ m_PlayOnAwake: 0
+ m_Volume: 1
+ m_Pitch: 1
+ Loop: 0
+ Mute: 0
+ Spatialize: 0
+ SpatializePostEffects: 0
+ Priority: 128
+ DopplerLevel: 1
+ MinDistance: 1
+ MaxDistance: 500
+ Pan2D: 0
+ rolloffMode: 0
+ BypassEffects: 0
+ BypassListenerEffects: 0
+ BypassReverbZones: 0
+ rolloffCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ panLevelCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ spreadCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ reverbZoneMixCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+--- !u!1 &804224458
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1227979231412264, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 804224459}
+ m_Layer: 8
+ m_Name: RightThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &804224459
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4856966483581382, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 804224458}
+ m_LocalRotation: {x: -2.165677e-12, y: -0.30124214, z: 9.839221e-13, w: 0.9535477}
+ m_LocalPosition: {x: 0.09883017, y: 0.000003490511, z: -0.0000031930006}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1665117755}
+ m_Father: {fileID: 1308190904}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &804435821
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1092253381050618, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 804435822}
+ m_Layer: 8
+ m_Name: LeftMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &804435822
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4631913101551630, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 804435821}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.08448732, y: 3.5527135e-16, z: 0.0001021356}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 188565121}
+ m_Father: {fileID: 1517065157}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &809110408
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1510176752746662, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 809110409}
+ m_Layer: 8
+ m_Name: LeftDownWing
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &809110409
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4775907657626128, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 809110408}
+ m_LocalRotation: {x: 0.07353115, y: 0.6207124, z: 0.7712759, w: -0.120178536}
+ m_LocalPosition: {x: -0.07728091, y: 0.0014632852, z: -0.08581618}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1242958045}
+ m_Father: {fileID: 1051553604}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &817669803
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1849448643383454, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 817669804}
+ m_Layer: 8
+ m_Name: RightIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &817669804
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4025431852407684, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 817669803}
+ m_LocalRotation: {x: -0.00000042780886, y: -0.70710605, z: -0.00000042780798, w: 0.7071075}
+ m_LocalPosition: {x: -0.079299994, y: 0.00000009595338, z: 0.00000015520204}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2121355909}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &819662471
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1511402401532164, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 819662472}
+ m_Layer: 8
+ m_Name: RightThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &819662472
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4552541885536594, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 819662471}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.107517935, y: 0.0000027274702, z: 0.0000005885144}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 672167503}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &824298992
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1601991448168296, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 824298993}
+ - component: {fileID: 803947869}
+ m_Layer: 0
+ m_Name: VO
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &824298993
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4944334964551846, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 824298992}
+ 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: 2031787514}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &825764138
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1812094839455142, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 825764139}
+ m_Layer: 8
+ m_Name: LeftThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &825764139
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4873220552849204, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 825764138}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.05310689, y: 0, z: -2.6645352e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 202015027}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &827380290
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1535853194317590, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 827380291}
+ m_Layer: 8
+ m_Name: LeftIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &827380291
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4139425019562606, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 827380290}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.07874983, y: -0.002669053, z: 0.055648144}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 186860949}
+ m_Father: {fileID: 253531424}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &835936545
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1517778406036332, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 835936546}
+ m_Layer: 8
+ m_Name: LeftThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &835936546
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4002988556242742, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 835936545}
+ m_LocalRotation: {x: 0.000000008976792, y: 0.52361697, z: 0.0000000055172014, w: 0.8519538}
+ m_LocalPosition: {x: -0.022356682, y: -0.0051800827, z: 0.027702205}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1260642816}
+ m_Father: {fileID: 771476004}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &846999369
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1650245332597006, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 846999370}
+ m_Layer: 8
+ m_Name: RightArm3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &846999370
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4943201558956802, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 846999369}
+ m_LocalRotation: {x: 0, y: 6.123234e-17, z: -6.123234e-17, w: 1}
+ m_LocalPosition: {x: -0.32263, y: 7.105427e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1261341586}
+ m_Father: {fileID: 871616457}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &848497505
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: BirdDisturbed
+ satisfied: 1
+ hash: -235457156
+--- !u!1 &852194147
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1361630672978674, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 852194148}
+ m_Layer: 8
+ m_Name: HousingRightDoorEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &852194148
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4119086992387452, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 852194147}
+ m_LocalRotation: {x: 0, y: 0.09677081, z: -0, w: 0.9953067}
+ m_LocalPosition: {x: -1.048112, y: -3.0927981e-16, z: 0.015771646}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1218735851}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &864930304
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1236695482669678, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 864930305}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &864930305
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4000347852181796, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 864930304}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0.269, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 158163999}
+ m_Father: {fileID: 1900119161}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &870205957
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1830355687981392, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 870205958}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &870205958
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4302377078694610, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 870205957}
+ 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: 320420890}
+ m_Father: {fileID: 2018723045}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &870428664
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1641144071431998, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 870428665}
+ m_Layer: 8
+ m_Name: Controls
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &870428665
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4305795347267044, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 870428664}
+ 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: 1900119161}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &871616456
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1845104164003966, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 871616457}
+ m_Layer: 8
+ m_Name: RightArm2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &871616457
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4643519063541650, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 871616456}
+ m_LocalRotation: {x: 0, y: 6.123234e-17, z: -6.123234e-17, w: 1}
+ m_LocalPosition: {x: -0.316942, y: 2.842171e-16, z: 5.684342e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 846999370}
+ m_Father: {fileID: 558116376}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &873154566
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1308447612979028, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 873154567}
+ - component: {fileID: 873154574}
+ - component: {fileID: 873154573}
+ - component: {fileID: 873154572}
+ - component: {fileID: 873154571}
+ - component: {fileID: 873154570}
+ - component: {fileID: 873154569}
+ - component: {fileID: 873154575}
+ - component: {fileID: 873154568}
+ m_Layer: 0
+ m_Name: Demo
+ m_TagString: MainCamera
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!4 &873154567
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4032445104911218, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 873154566}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -5.24, y: 1.53, z: -16.52}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1346602417}
+ m_Father: {fileID: 0}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &873154568
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 873154566}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: bb66741a432d75e479627f6b861934cf, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ shaderMaterial: {fileID: 2100000, guid: f51f5d0c76790c44cb42ff0209bc174e, type: 2}
+--- !u!120 &873154569
+LineRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 873154566}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 0
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: bec69ad25ca8c1d4ba999bab70a91d0b, 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_SelectedEditorRenderState: 3
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingLayer: 0
+ m_SortingOrder: 0
+ m_Positions:
+ - {x: 0, y: 0, z: 0}
+ - {x: 0, y: 0, z: 1}
+ m_Parameters:
+ serializedVersion: 2
+ widthMultiplier: 0.1
+ widthCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ colorGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ numCornerVertices: 0
+ numCapVertices: 0
+ alignment: 0
+ textureMode: 0
+ generateLightingData: 0
+ m_UseWorldSpace: 1
+ m_Loop: 0
+--- !u!81 &873154570
+AudioListener:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 81554972251660932, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 873154566}
+ m_Enabled: 1
+--- !u!114 &873154571
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114209606691462426, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 873154566}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -768656878, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_EventMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+--- !u!92 &873154572
+Behaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 92223958757446280, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 873154566}
+ m_Enabled: 1
+--- !u!124 &873154573
+Behaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 124306282361833138, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 873154566}
+ m_Enabled: 1
+--- !u!20 &873154574
+Camera:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 20068175235852436, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 873154566}
+ m_Enabled: 1
+ serializedVersion: 2
+ m_ClearFlags: 1
+ m_BackGroundColor: {r: 0.058823526, g: 0.028114185, b: 0.028114185, a: 1}
+ m_NormalizedViewPortRect:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 1
+ height: 1
+ near clip plane: 0.3
+ far clip plane: 1000
+ field of view: 40
+ orthographic: 0
+ orthographic size: 5
+ m_Depth: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967263
+ m_RenderingPath: -1
+ m_TargetTexture: {fileID: 0}
+ m_TargetDisplay: 0
+ m_TargetEye: 3
+ m_HDR: 0
+ m_AllowMSAA: 1
+ m_ForceIntoRT: 0
+ m_OcclusionCulling: 1
+ m_StereoConvergence: 10
+ m_StereoSeparation: 0.022
+ m_StereoMirrorMode: 0
+--- !u!114 &873154575
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 873154566}
+ m_Enabled: 0
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: c2f0a0cc2a470c9489642b0aa47db38a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+--- !u!1 &873229318
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1324733361105372, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 873229319}
+ m_Layer: 8
+ m_Name: LeftArm3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &873229319
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4593595150931584, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 873229318}
+ m_LocalRotation: {x: -2.2088105e-29, y: -1.323489e-23, z: 1.1911401e-22, w: 1}
+ m_LocalPosition: {x: -0.32263, y: 7.105427e-17, z: -0.0000001322789}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2137413837}
+ m_Father: {fileID: 1578410643}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &880146779
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1044228646468650, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 880146780}
+ m_Layer: 8
+ m_Name: LeftToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &880146780
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4519708248197234, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 880146779}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.06420592, y: 1.0803814e-17, z: 4.3980254e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1892666438}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &882420894
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1864645522017062, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 882420895}
+ - component: {fileID: 882420898}
+ - component: {fileID: 882420897}
+ - component: {fileID: 882420896}
+ m_Layer: 0
+ m_Name: Pipes
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967169
+ m_IsActive: 1
+--- !u!4 &882420895
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4902537923079152, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 882420894}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 25
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &882420896
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64077663397382596, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 882420894}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300074, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &882420897
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23900214354352996, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 882420894}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: cf64d91bf9d60fa46803c50a585aff08, 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_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
+--- !u!33 &882420898
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33472181070274652, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 882420894}
+ m_Mesh: {fileID: 4300074, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &885553063
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1276191261322634, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 885553064}
+ m_Layer: 8
+ m_Name: LeftMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &885553064
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4986744926426476, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 885553063}
+ m_LocalRotation: {x: 0, y: 0.7071062, z: 0, w: 0.7071075}
+ m_LocalPosition: {x: -0.07863518, y: 0.00000009335993, z: -0.0000001028544}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 418569942}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &888448170
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1830805645919828, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 888448171}
+ m_Layer: 8
+ m_Name: RightThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &888448171
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4615799939163746, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 888448170}
+ m_LocalRotation: {x: 0.00000001017566, y: -0.101298474, z: 0.0000000031708143, w: 0.9948561}
+ m_LocalPosition: {x: 0.042127334, y: 1.7053025e-15, z: 0.000000074818765}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 956112131}
+ m_Father: {fileID: 608823032}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &889739357
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1109622553939492, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 889739358}
+ - component: {fileID: 889739361}
+ - component: {fileID: 889739360}
+ - component: {fileID: 889739359}
+ m_Layer: 0
+ m_Name: Aircon02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &889739358
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4595992105855746, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 889739357}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 10.913458, y: -11.893757, z: 3.1997528}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &889739359
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64394233406550636, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 889739357}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300014, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &889739360
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23884850961151910, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 889739357}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 895e35e06e2d8fc448bb48e11a72ffb8, 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_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
+--- !u!33 &889739361
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33032239862606164, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 889739357}
+ m_Mesh: {fileID: 4300014, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &895793450
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1957411175401376, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 895793451}
+ - component: {fileID: 895793452}
+ m_Layer: 0
+ m_Name: Light Probe Group
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &895793451
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4444602886309292, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 895793450}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 1.32, z: 0.5}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 14
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!220 &895793452
+LightProbeGroup:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 220287547980497456, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 895793450}
+ m_Enabled: 1
+ m_SourcePositions:
+ - {x: -5.7774887, y: 1.1244966, z: -2.134067}
+ - {x: -8.249258, y: 1.1244966, z: 2.805348}
+ - {x: 3.0621731, y: 0.8189002, z: 15.48423}
+ - {x: 2.2798452, y: 1.1244966, z: -1.6635576}
+ - {x: -1.8926063, y: 1.1244966, z: -2.7620673}
+ - {x: 4.233609, y: 1.1244966, z: 1.4127531}
+ - {x: 2.2293017, y: 0.7586528, z: 7.3632874}
+ - {x: 8.83274, y: 1.1244966, z: 7.4442444}
+ - {x: 2.3894277, y: 0.5014769, z: 10.357063}
+ - {x: -5.7774887, y: -1, z: -2.134067}
+ - {x: -8.256671, y: -1, z: 3.3989353}
+ - {x: 3.0621731, y: -1, z: 15.48423}
+ - {x: 2.2798452, y: -1, z: -1.6635576}
+ - {x: -1.8926063, y: -1, z: -2.7620673}
+ - {x: 4.233609, y: -1, z: 1.4127531}
+ - {x: 2.2293017, y: -1, z: 7.3632874}
+ - {x: 8.83274, y: -1, z: 7.4442444}
+ - {x: 2.3894277, y: -1, z: 10.357063}
+ - {x: 2.2293017, y: 0.7586528, z: 7.3632874}
+ - {x: 2.2293017, y: -1, z: 7.3632874}
+ - {x: 6.707693, y: 1.1244966, z: -1.3756893}
+ - {x: 6.707693, y: -1, z: -1.3756893}
+ - {x: 6.707693, y: 1.1244966, z: -1.3756893}
+ - {x: 6.707693, y: -1, z: -1.3756893}
+ - {x: 6.1491966, y: 1.1244966, z: 3.6340508}
+ - {x: 6.1491966, y: -1, z: 3.6340508}
+ - {x: 6.1491966, y: 1.1244966, z: 3.6340508}
+ - {x: 6.1491966, y: -1, z: 3.6340508}
+ - {x: 8.814909, y: 1.1244966, z: 11.62088}
+ - {x: 8.814909, y: -1, z: 11.62088}
+ - {x: 8.814909, y: 1.1244966, z: 11.62088}
+ - {x: 8.814909, y: -1, z: 11.62088}
+ - {x: 7.4029593, y: 1.1244966, z: 14.958935}
+ - {x: 7.4029593, y: -1, z: 14.958935}
+ - {x: 0.5791324, y: 1.1244966, z: 4.3793826}
+ - {x: 0.5791324, y: -1, z: 4.3793826}
+ - {x: 0.5791324, y: 1.1244966, z: 4.3793826}
+ - {x: 0.5791324, y: -1, z: 4.3793826}
+ - {x: 9.269917, y: 1.1244966, z: 0.91288114}
+ - {x: 9.269917, y: -1, z: 0.91288114}
+ - {x: 9.269917, y: 1.1244966, z: 0.91288114}
+ - {x: 9.269917, y: -1, z: 0.91288114}
+ - {x: 2.2798452, y: 1.1244966, z: 0.0061038733}
+ - {x: 2.2798452, y: -1, z: 0.0061038733}
+ - {x: -1.8926063, y: 1.1244966, z: 2.1176472}
+ - {x: -1.8926063, y: -1, z: 2.1176472}
+ - {x: -5.5927677, y: 1.1244966, z: 2.1275535}
+ - {x: -5.5927677, y: -1, z: 2.1275535}
+ - {x: -5.7774887, y: 1.1244966, z: 0.0061038733}
+ - {x: -5.7774887, y: -1, z: 0.0061038733}
+ - {x: -1.8926063, y: 1.1244966, z: -0.1545664}
+ - {x: -1.8926063, y: -1, z: -0.1545664}
+ - {x: 0.5791324, y: 1.1244966, z: 4.3793826}
+ - {x: 0.5791324, y: -1, z: 4.3793826}
+ - {x: 0.5791324, y: 1.1244966, z: 4.3793826}
+ - {x: 0.5791324, y: -1, z: 4.3793826}
+ - {x: -8.841893, y: 1.1244966, z: -2.3243876}
+ - {x: -8.841893, y: -1, z: -2.3243876}
+ - {x: 6.1491966, y: 1.1244966, z: 11.498412}
+ - {x: 6.1491966, y: -1, z: 11.498412}
+ - {x: 6.1491966, y: 1.1244966, z: 11.498412}
+ - {x: 6.1491966, y: -1, z: 11.498412}
+ - {x: 6.1491966, y: 1.1244966, z: 7.7390766}
+ - {x: 6.1491966, y: -1, z: 7.7390766}
+--- !u!1 &907892549
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1106857268763424, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 907892550}
+ m_Layer: 8
+ m_Name: RightMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &907892550
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4978573921897994, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 907892549}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.035676997, y: 0, z: -2.6645352e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1164036637}
+ m_Father: {fileID: 69415294}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &909318995
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1235359270108328, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 909318996}
+ m_Layer: 0
+ m_Name: BakedLights
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!4 &909318996
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4931223606480930, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 909318995}
+ 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: 723904264}
+ - {fileID: 1416912784}
+ - {fileID: 1193206261}
+ - {fileID: 1990030035}
+ - {fileID: 164547611}
+ - {fileID: 684156872}
+ - {fileID: 1389129675}
+ - {fileID: 1203180403}
+ - {fileID: 1901727316}
+ - {fileID: 481086376}
+ - {fileID: 1354279621}
+ - {fileID: 1553811667}
+ - {fileID: 2096246061}
+ - {fileID: 2022083528}
+ - {fileID: 1936718038}
+ - {fileID: 212180310}
+ - {fileID: 1320769843}
+ - {fileID: 1671237617}
+ - {fileID: 83851590}
+ - {fileID: 1577294772}
+ - {fileID: 462869491}
+ - {fileID: 1046166490}
+ - {fileID: 379164650}
+ - {fileID: 797789113}
+ - {fileID: 949206888}
+ - {fileID: 1393523880}
+ - {fileID: 1133466709}
+ - {fileID: 1427653176}
+ - {fileID: 1975764640}
+ - {fileID: 428941363}
+ - {fileID: 1831822798}
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 17
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &921028236
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1504714694564110, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 921028237}
+ m_Layer: 8
+ m_Name: LeftIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &921028237
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4101975000119104, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 921028236}
+ m_LocalRotation: {x: 0, y: -0.06320087, z: -0, w: 0.99800086}
+ m_LocalPosition: {x: -0.17087743, y: 0.021124894, z: 0.051637758}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 44607134}
+ m_Father: {fileID: 152145878}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &938190891
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: HasCoin
+ satisfied: 1
+ hash: 1129137663
+--- !u!114 &938471497
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: 9fecb71afa4ed49c89d01dffd5c600a7, type: 3}
+ delay: 0
+--- !u!1 &945768355
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1572459302576118, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 945768356}
+ - component: {fileID: 945768357}
+ m_Layer: 8
+ m_Name: Collider
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &945768356
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4724538855520398, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 945768355}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: -0.99, z: 0.171}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 158163999}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &945768357
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64187578677723938, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 945768355}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300014, guid: e7fef9092fa565e41bf56c266766658d, type: 3}
+--- !u!1 &947226248
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1632902165519012, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 947226249}
+ - component: {fileID: 947226252}
+ - component: {fileID: 947226251}
+ - component: {fileID: 947226250}
+ m_Layer: 0
+ m_Name: BlackUnlit
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &947226249
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4409426600951216, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 947226248}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &947226250
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64745345656346522, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 947226248}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300080, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &947226251
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23489215947951986, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 947226248}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 18b73e95c08e7624d88d2200187d9cb3, type: 2}
+ m_StaticBatchInfo:
+ firstSubMesh: 0
+ subMeshCount: 0
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 0.001
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 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
+--- !u!33 &947226252
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33595739628020932, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 947226248}
+ m_Mesh: {fileID: 4300080, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &947251885
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1656996303807146, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 947251886}
+ - component: {fileID: 947251888}
+ - component: {fileID: 947251887}
+ m_Layer: 0
+ m_Name: Flies
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &947251886
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4883423357372218, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 947251885}
+ m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071067}
+ m_LocalPosition: {x: -6.9310007, y: 1.1339998, z: -2.298}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 5
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!199 &947251887
+ParticleSystemRenderer:
+ serializedVersion: 4
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 199960237986129342, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 947251885}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: a7afd1b848210eb47af0d2b72c2844c0, type: 2}
+ - {fileID: 0}
+ 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_SelectedEditorRenderState: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingLayer: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_UseCustomVertexStreams: 0
+ m_VertexStreams: 0001030405
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+ m_MaskInteraction: 0
+--- !u!198 &947251888
+ParticleSystem:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 198181967832167488, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 947251885}
+ serializedVersion: 5
+ lengthInSec: 5
+ simulationSpeed: 1
+ looping: 1
+ prewarm: 0
+ playOnAwake: 1
+ useUnscaledTime: 0
+ autoRandomSeed: 1
+ useRigidbodyForVelocity: 1
+ startDelay:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ moveWithTransform: 0
+ moveWithCustomTransform: {fileID: 0}
+ scalingMode: 1
+ randomSeed: 0
+ InitialModule:
+ serializedVersion: 3
+ enabled: 1
+ startLifetime:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 4
+ minScalar: 5
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startSpeed:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 5
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startColor:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ startSize:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0.1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startSizeY:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startSizeZ:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startRotationX:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startRotationY:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startRotation:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ randomizeRotationDirection: 0
+ maxNumParticles: 1000
+ size3D: 0
+ rotation3D: 0
+ gravityModifier:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ ShapeModule:
+ serializedVersion: 5
+ enabled: 1
+ type: 0
+ angle: 25
+ length: 5
+ boxThickness: {x: 0, y: 0, z: 0}
+ radiusThickness: 1
+ donutRadius: 0.2
+ m_Position: {x: 0, y: 0, z: 0}
+ m_Rotation: {x: 0, y: 0, z: 0}
+ m_Scale: {x: 1, y: 1, z: 1}
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ alignToDirection: 0
+ randomDirectionAmount: 0
+ sphericalDirectionAmount: 0
+ randomPositionAmount: 0
+ radius:
+ value: 0.3
+ mode: 0
+ spread: 0
+ speed:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ arc:
+ value: 360
+ mode: 0
+ spread: 0
+ speed:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 4
+ rateOverTime:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 10
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ rateOverDistance:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ m_BurstCount: 0
+ m_Bursts: []
+ SizeModule:
+ enabled: 1
+ curve:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0.4516129
+ inSlope: 2.336455
+ outSlope: 2.336455
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0.54838705
+ inSlope: -1.5883799
+ outSlope: -1.5883799
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ z:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ curve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0.7853982
+ minScalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ minMaxState: 1
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 0}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 1}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 4048
+ atime2: 62451
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ UVModule:
+ enabled: 1
+ mode: 0
+ frameOverTime:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 0.5
+ minScalar: 0.9999
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 1
+ outSlope: 1
+ tangentMode: 34
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 1
+ tangentMode: 34
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ startFrame:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ tilesX: 2
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 200
+ uvChannelMask: -1
+ flipU: 0
+ flipV: 0
+ randomRow: 1
+ sprites:
+ - sprite: {fileID: 0}
+ VelocityModule:
+ enabled: 1
+ x:
+ serializedVersion: 2
+ minMaxState: 2
+ scalar: 0.5
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0.06810041
+ inSlope: -2.2497234
+ outSlope: -2.2497234
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.19249876
+ value: 0.36654413
+ inSlope: 0.03747642
+ outSlope: 0.03747642
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.4352276
+ value: 0.11553252
+ inSlope: -0.68455935
+ outSlope: -0.68455935
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.6204743
+ value: 0.36449665
+ inSlope: 0.18052757
+ outSlope: 0.18052757
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.83837074
+ value: 0.117438644
+ inSlope: -1.1840463
+ outSlope: -1.1840463
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0.032258034
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0.004750593
+ value: -0.046595
+ inSlope: 2.766428
+ outSlope: 2.766428
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.21140938
+ value: -0.29423496
+ inSlope: -1.2541094
+ outSlope: -1.2541094
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.42009977
+ value: -0.123808935
+ inSlope: -0.538677
+ outSlope: -0.538677
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.6481695
+ value: -0.3073597
+ inSlope: 0.10035932
+ outSlope: 0.10035932
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.83799195
+ value: -0.09346932
+ inSlope: 2.4975836
+ outSlope: 2.4975836
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: -0.08243726
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ y:
+ serializedVersion: 2
+ minMaxState: 2
+ scalar: 1
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0.004750593
+ value: -0.0716846
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.40375754
+ value: -0.23638044
+ inSlope: 0.021606684
+ outSlope: 0.021606684
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.6840854
+ value: 0.1234549
+ inSlope: -0.006686896
+ outSlope: -0.006686896
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: -0.05734768
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0.057347655
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.23760581
+ value: 0.20421031
+ inSlope: 0.048317015
+ outSlope: 0.048317015
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.5059382
+ value: -0.24372762
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.6889286
+ value: 0.1613541
+ inSlope: -0.72687864
+ outSlope: -0.72687864
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0.057347655
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ z:
+ serializedVersion: 2
+ minMaxState: 2
+ scalar: 1
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: -0.06451613
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.17815739
+ value: -0.020461192
+ inSlope: -0.0078603625
+ outSlope: -0.0078603625
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.5983398
+ value: 0.12355407
+ inSlope: -0.0914745
+ outSlope: -0.0914745
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.9976245
+ value: -0.071684584
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0.04301074
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.049881235
+ value: 0.04301074
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.20672119
+ value: 0.1492432
+ inSlope: -0.0678096
+ outSlope: -0.0678096
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 0.5964561
+ value: -0.21700746
+ inSlope: -0.26583672
+ outSlope: -0.26583672
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: -0.000000011175871
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ ForceModule:
+ enabled: 0
+ x:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ z:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ z:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ magnitude:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ NoiseModule:
+ enabled: 0
+ strength:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ strengthY:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ strengthZ:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxes: 0
+ frequency: 0.5
+ damping: 1
+ octaves: 1
+ octaveMultiplier: 0.5
+ octaveScale: 2
+ quality: 2
+ scrollSpeed:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ remap:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ remapY:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ remapZ:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ remapEnabled: 0
+ positionAmount:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ rotationAmount:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ sizeAmount:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ serializedVersion: 2
+ minMaxState: 1
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ z:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ y:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ curve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0.7853982
+ minScalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ minMaxState: 1
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ colliderForce: 0
+ multiplyColliderForceByParticleSize: 0
+ multiplyColliderForceByParticleSpeed: 0
+ multiplyColliderForceByCollisionAngle: 1
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ m_Bounce:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ m_EnergyLossOnCollision:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ serializedVersion: 2
+ enabled: 0
+ subEmitters:
+ - emitter: {fileID: 0}
+ type: 0
+ properties: 0
+ LightsModule:
+ enabled: 0
+ ratio: 0
+ light: {fileID: 0}
+ randomDistribution: 1
+ color: 1
+ range: 1
+ intensity: 1
+ rangeCurve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ intensityCurve:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ maxLights: 20
+ TrailModule:
+ enabled: 0
+ ratio: 1
+ lifetime:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minVertexDistance: 0.2
+ textureMode: 0
+ worldSpace: 0
+ dieWithParticles: 1
+ sizeAffectsWidth: 1
+ sizeAffectsLifetime: 0
+ inheritParticleColor: 1
+ generateLightingData: 0
+ colorOverLifetime:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ widthOverTrail:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 1
+ minScalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ colorOverTrail:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ CustomDataModule:
+ enabled: 0
+ mode0: 0
+ vectorComponentCount0: 4
+ color0:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ vector0_0:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector0_1:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector0_2:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector0_3:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ mode1: 0
+ vectorComponentCount1: 4
+ color1:
+ serializedVersion: 2
+ minMaxState: 0
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ maxGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ serializedVersion: 2
+ key0: {r: 1, g: 1, b: 1, a: 1}
+ key1: {r: 1, g: 1, b: 1, a: 1}
+ key2: {r: 0, g: 0, b: 0, a: 0}
+ key3: {r: 0, g: 0, b: 0, a: 0}
+ key4: {r: 0, g: 0, b: 0, a: 0}
+ key5: {r: 0, g: 0, b: 0, a: 0}
+ key6: {r: 0, g: 0, b: 0, a: 0}
+ key7: {r: 0, g: 0, b: 0, a: 0}
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_Mode: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ vector1_0:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector1_1:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector1_2:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ vector1_3:
+ serializedVersion: 2
+ minMaxState: 0
+ scalar: 0
+ minScalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+--- !u!1 &949206887
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1100778478662082, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 949206888}
+ - component: {fileID: 949206889}
+ m_Layer: 0
+ m_Name: Point light (22)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &949206888
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4310396544604532, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 949206887}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 9.5, y: 6.58, z: 2.99}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 24
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &949206889
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108684403117422412, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 949206887}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 2
+ m_Range: 4.5548496
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &950305160
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1480903109458404, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 950305161}
+ m_Layer: 8
+ m_Name: RightUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &950305161
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4166752837189774, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 950305160}
+ m_LocalRotation: {x: 1, y: -9.7660665e-18, z: 2.4301766e-32, w: -6.123234e-17}
+ m_LocalPosition: {x: 0.015564889, y: 0.107870996, z: -0.000027790184}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1383985941}
+ m_Father: {fileID: 749508486}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &951619545
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1909545195620870, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 951619546}
+ m_Layer: 8
+ m_Name: LeftShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &951619546
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4875124885570916, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 951619545}
+ m_LocalRotation: {x: 0.1379877, y: -0.2400479, z: 0.6935124, w: 0.6651143}
+ m_LocalPosition: {x: -0.19490802, y: -0.04964612, z: 0.054125745}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 544337150}
+ m_Father: {fileID: 2092021786}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &956112130
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1648257989273648, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 956112131}
+ m_Layer: 8
+ m_Name: RightThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &956112131
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4392960241511260, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 956112130}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.053106792, y: 2.2556079e-10, z: -0.0000001500559}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 888448171}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &958306082
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1553484343751366, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 958306083}
+ - component: {fileID: 958306086}
+ - component: {fileID: 958306085}
+ - component: {fileID: 958306084}
+ m_Layer: 0
+ m_Name: FoodTrays03
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &958306083
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4551566701617048, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 958306082}
+ m_LocalRotation: {x: 0.0652631, y: 0.113039, z: 0.8586165, w: 0.4957224}
+ m_LocalPosition: {x: 4.674295, y: -16.816814, z: 1.0307429}
+ m_LocalScale: {x: 1, y: 1, z: 0.99999994}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 17
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &958306084
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64728859592343298, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 958306082}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300016, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &958306085
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23963443889250370, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 958306082}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 61678ebbb8fa54046afc6d3f0232531c, 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_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
+--- !u!33 &958306086
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33252469763353008, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 958306082}
+ m_Mesh: {fileID: 4300016, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &959655014
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1891469721990578, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 959655015}
+ m_Layer: 8
+ m_Name: LeftPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &959655015
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4492613923223864, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 959655014}
+ m_LocalRotation: {x: 0, y: -0.06320087, z: -0, w: 0.99800086}
+ m_LocalPosition: {x: -0.15342994, y: 0.021124894, z: -0.0879231}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 204456292}
+ m_Father: {fileID: 152145878}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &964840749
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 6
+ gameObject: {fileID: 1876984107}
+ activeState: 0
+--- !u!1 &965663375
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1957496609329540, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 965663376}
+ - component: {fileID: 965663379}
+ - component: {fileID: 965663378}
+ - component: {fileID: 965663377}
+ m_Layer: 8
+ m_Name: GroundTiles
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &965663376
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4935204550899912, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 965663375}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 23
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &965663377
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64747557493015256, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 965663375}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300100, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &965663378
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23272844094198268, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 965663375}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: e59530a749010fc4fb744508277ac143, type: 2}
+ - {fileID: 2100000, guid: 99bd920f43dd23e478029c6318bf5bbd, 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_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
+--- !u!33 &965663379
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33321899035827500, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 965663375}
+ m_Mesh: {fileID: 4300100, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &971238210
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1816904870860368, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 971238211}
+ m_Layer: 8
+ m_Name: LeftRingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &971238211
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4281745110402552, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 971238210}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.052928448, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1631125086}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &994776708
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1106010274732826, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 994776709}
+ m_Layer: 8
+ m_Name: LeftIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &994776709
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4253742517132100, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 994776708}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.02930715, y: -2.842171e-16, z: -2.220446e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 352506824}
+ m_Father: {fileID: 253419035}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &996376101
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1018208929586214, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 996376102}
+ m_Layer: 8
+ m_Name: RightToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &996376102
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4353104140344474, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 996376101}
+ m_LocalRotation: {x: 0, y: 0.2056833, z: -0, w: 0.9786186}
+ m_LocalPosition: {x: 0.12520327, y: 3.5527136e-17, z: -0.000000023641551}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 385863041}
+ m_Father: {fileID: 56995166}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &997137960
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_RootOrder
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_AnchoredPosition.x
+ value: 250
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_AnchoredPosition.y
+ value: 140.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_SizeDelta.x
+ value: 500
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_SizeDelta.y
+ value: 281
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_AnchorMin.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_AnchorMin.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_AnchorMax.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_AnchorMax.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_Pivot.x
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 224528166007893496, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: m_Pivot.y
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 1508411167041054, guid: 1a363ebd9791e7d48a02435c46d956ab, type: 2}
+ propertyPath: m_Name
+ value: Pupil Demo Manager
+ objectReference: {fileID: 0}
+ - target: {fileID: 114039770744552444, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: gameObjectsToEnable.Array.data[0]
+ value:
+ objectReference: {fileID: 873154566}
+ - target: {fileID: 114039770744552444, guid: 1a363ebd9791e7d48a02435c46d956ab,
+ type: 2}
+ propertyPath: gameObjectsToEnable.Array.data[1]
+ value:
+ objectReference: {fileID: 42777666}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: 1a363ebd9791e7d48a02435c46d956ab, type: 2}
+ m_IsPrefabParent: 0
+--- !u!1 &997414314
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1122190507056996, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 997414315}
+ m_Layer: 8
+ m_Name: RightLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &997414315
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4210855472850734, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 997414314}
+ m_LocalRotation: {x: 0.0000000018987534, y: -0.000000004833637, z: -0.6779544, w: 0.73510396}
+ m_LocalPosition: {x: 0.058577593, y: 0.00000012737836, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1417364537}
+ - {fileID: 1352768059}
+ m_Father: {fileID: 1734305973}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1010376026
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1323574062101244, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1010376027}
+ m_Layer: 8
+ m_Name: HairEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1010376027
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4780038141658840, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1010376026}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.24992292, y: 2.2204459e-17, z: 1.9218971e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 341950531}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1010403536
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1896743930324184, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1010403537}
+ m_Layer: 8
+ m_Name: HousingRightDoor1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1010403537
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4813984884266270, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1010403536}
+ m_LocalRotation: {x: 0, y: 0.008850181, z: -0, w: 0.99996084}
+ m_LocalPosition: {x: 1.2506199, y: 8.050634e-16, z: -0.0984832}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1218735851}
+ m_Father: {fileID: 418665943}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1014166486
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: NeedsCoffee
+ requiredConditions:
+ - {fileID: 938190891}
+ - {fileID: 1120959720}
+ reactionCollection: {fileID: 75465419}
+--- !u!1 &1022134237
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1367206699802998, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1022134238}
+ - component: {fileID: 1022134241}
+ - component: {fileID: 1022134240}
+ - component: {fileID: 1022134239}
+ m_Layer: 0
+ m_Name: ShadeCloth02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1022134238
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4414976995440268, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1022134237}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -11.046476, y: -3.0352392, z: 2.4605374}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 31
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1022134239
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64024923953670832, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1022134237}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300090, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1022134240
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23484474959561222, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1022134237}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3ea3a2c6801aae54396d0e9359371fc8, 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_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
+--- !u!33 &1022134241
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33566732343097734, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1022134237}
+ m_Mesh: {fileID: 4300090, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1027920378
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1528865487010402, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1027920379}
+ - component: {fileID: 1027920382}
+ - component: {fileID: 1027920381}
+ - component: {fileID: 1027920380}
+ m_Layer: 0
+ m_Name: Fruit02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1027920379
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4124346812247320, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1027920378}
+ m_LocalRotation: {x: -0.027169066, y: 0.022848886, z: -0.4842862, w: 0.8741892}
+ m_LocalPosition: {x: 4.2334514, y: -13.535828, z: 0.9461646}
+ m_LocalScale: {x: 0.1574107, y: 0.15741064, z: 0.15741073}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 21
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1027920380
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64005776022366110, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1027920378}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300062, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1027920381
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23190491450624668, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1027920378}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 18c2bd17f423d0749b72b7b321239244, type: 2}
+ m_StaticBatchInfo:
+ firstSubMesh: 0
+ subMeshCount: 0
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 2
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 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
+--- !u!33 &1027920382
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33733362943039348, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1027920378}
+ m_Mesh: {fileID: 4300062, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1029515320
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1374435245301626, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1029515321}
+ m_Layer: 8
+ m_Name: LeftForearm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1029515321
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4374539789314482, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1029515320}
+ m_LocalRotation: {x: -3.0063322e-16, y: -0.000000022380016, z: 3.5656686e-16, w: 1}
+ m_LocalPosition: {x: -0.31796485, y: 2.1316282e-16, z: -1.4210854e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 253531424}
+ m_Father: {fileID: 742643171}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1032243116
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1577644965699170, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1032243117}
+ m_Layer: 8
+ m_Name: Controls
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1032243117
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4071399547896284, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1032243116}
+ 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: 558402488}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1033359400
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1843955605944164, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1033359401}
+ m_Layer: 8
+ m_Name: LeftMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1033359401
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4654429255502350, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1033359400}
+ m_LocalRotation: {x: -0.00013782983, y: 0.00022035863, z: -0.8464759, w: 0.5324271}
+ m_LocalPosition: {x: 0.07739538, y: -0.10410827, z: -0.07772362}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 429553336}
+ m_Father: {fileID: 1752464061}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1037226044
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1863542047211912, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1037226045}
+ m_Layer: 8
+ m_Name: UpperEyeLids
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1037226045
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4051156925552528, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1037226044}
+ m_LocalRotation: {x: -2.7755576e-17, y: -2.0816682e-17, z: 1.08853905e-16, w: 1}
+ m_LocalPosition: {x: -0.15823962, y: 1.2771959e-16, z: 0.15447822}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 335749063}
+ m_RootOrder: 5
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1037460390
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 0}
+ trigger: LowTake
+--- !u!1 &1039147710
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1233748940955768, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1039147711}
+ m_Layer: 8
+ m_Name: RightUpperArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1039147711
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4354382966521232, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1039147710}
+ m_LocalRotation: {x: 1.3449206e-15, y: 0.00000017097675, z: -0.000000007866102,
+ w: 1}
+ m_LocalPosition: {x: 0.45892897, y: 2.842171e-16, z: 1.2434498e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 206522660}
+ m_Father: {fileID: 1358163121}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1046166489
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1951497242698398, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1046166490}
+ - component: {fileID: 1046166491}
+ m_Layer: 0
+ m_Name: Point light (19)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1046166490
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4211887867881502, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1046166489}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.14, y: 1.59, z: -2.89}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 21
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1046166491
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108541133761110244, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1046166489}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0, g: 0.5862069, b: 1, a: 1}
+ m_Intensity: 4
+ m_Range: 1.571884
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1048983042
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1691068841632806, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1048983043}
+ m_Layer: 8
+ m_Name: RightMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1048983043
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4358097004498194, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1048983042}
+ m_LocalRotation: {x: -4.4407852e-16, y: -2.0917636e-11, z: -9.576146e-14, w: 1}
+ m_LocalPosition: {x: 0.041799996, y: 0, z: 1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 132360335}
+ m_Father: {fileID: 2053061871}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1051553603
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1271692685954584, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1051553604}
+ m_Layer: 8
+ m_Name: Spine
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1051553604
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4348676812867192, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1051553603}
+ m_LocalRotation: {x: 0.06541445, y: 0.06174806, z: -0.5523578, w: 0.8287394}
+ m_LocalPosition: {x: 9.412325, y: 1.0863328, z: 9.082732}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1579899206}
+ - {fileID: 809110409}
+ - {fileID: 1337182454}
+ - {fileID: 1479358626}
+ - {fileID: 1708402014}
+ - {fileID: 1734305973}
+ - {fileID: 223450627}
+ - {fileID: 1315853934}
+ m_Father: {fileID: 1755438394}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1067759585
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1831071918340058, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1067759586}
+ - component: {fileID: 555312890}
+ m_Layer: 0
+ m_Name: BirdGoneReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1067759586
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4299798543148414, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1067759585}
+ 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: 225369431}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1075129898
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1874357130955622, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1075129899}
+ m_Layer: 8
+ m_Name: RightUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1075129899
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4843170009371342, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1075129898}
+ m_LocalRotation: {x: 1, y: 0, z: 0, w: -6.123234e-17}
+ m_LocalPosition: {x: 0.015463907, y: 0.091033496, z: -0.00452452}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 686716283}
+ m_Father: {fileID: 1478519145}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1084467280
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1315287076950594, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1084467281}
+ m_Layer: 8
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1084467281
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4227701427777514, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1084467280}
+ m_LocalRotation: {x: -5.4643793e-17, y: -0.15239893, z: -5.4210114e-19, w: 0.9883191}
+ m_LocalPosition: {x: -0.12911041, y: 8.6042285e-18, z: 3.5527135e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 244417404}
+ - {fileID: 1787253488}
+ m_Father: {fileID: 1154993082}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1091602806
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1861219809814960, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1091602807}
+ m_Layer: 8
+ m_Name: LeftLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1091602807
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4513127079255590, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1091602806}
+ m_LocalRotation: {x: -2.387396e-17, y: 2.4087497e-16, z: -0.31170118, w: 0.95018023}
+ m_LocalPosition: {x: -0.058577266, y: 1.110223e-18, z: 4.124981e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1513360459}
+ - {fileID: 1892666438}
+ m_Father: {fileID: 1337182454}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1095430322
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000012888731470, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!114 &1101621493
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 1397227339}
+ audioClip: {fileID: 8300000, guid: e52b46c6d5c1a1f4c925e2a0dc209330, type: 3}
+ delay: 0
+--- !u!1 &1114387456
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1602990370347442, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1114387457}
+ m_Layer: 8
+ m_Name: RightRing3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1114387457
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4183585825995352, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1114387456}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.037465997, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1395395388}
+ m_Father: {fileID: 695803109}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1120959720
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: PickedUpCoffee
+ satisfied: 0
+ hash: 1911255643
+--- !u!1 &1121569692
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1177880045102134, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1121569693}
+ - component: {fileID: 1121569694}
+ m_Layer: 0
+ m_Name: CharacterLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1121569693
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4515684133950960, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1121569692}
+ m_LocalRotation: {x: 0.8686281, y: -0.074446425, z: 0.3138341, w: 0.37609994}
+ m_LocalPosition: {x: -2.0387483, y: 3.65, z: 0.5927165}
+ m_LocalScale: {x: 1, y: 1.0000004, z: 1.0000004}
+ m_Children: []
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 15
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1121569694
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108641087957035074, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1121569692}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 1
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Intensity: 0.75
+ m_Range: 10
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 2
+ m_Resolution: 1
+ m_CustomResolution: -1
+ m_Strength: 0.54
+ m_Bias: 0.05
+ m_NormalBias: 0.01
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 256
+ m_Lightmapping: 4
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 0
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1126466337
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1360805352988508, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1126466338}
+ - component: {fileID: 1126466340}
+ - component: {fileID: 1126466339}
+ m_Layer: 8
+ m_Name: Bird
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1126466338
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4241144220797566, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1126466337}
+ 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: 1195445106}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!136 &1126466339
+CapsuleCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 136321692198265828, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1126466337}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ m_Radius: 0.34053004
+ m_Height: 0.8824968
+ m_Direction: 1
+ m_Center: {x: 9.430583, y: 1.1685607, z: 9.093872}
+--- !u!137 &1126466340
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 137490368572868138, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1126466337}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 545ad8e6ec1048843bee89afb408a32b, 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_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: 4300002, guid: 27dc1f41f9a3fad46a08a615f1730ad1, type: 3}
+ m_Bones:
+ - {fileID: 612492770}
+ - {fileID: 1579899206}
+ - {fileID: 1479358626}
+ - {fileID: 809110409}
+ - {fileID: 1708402014}
+ - {fileID: 223450627}
+ - {fileID: 1051553604}
+ - {fileID: 1892666438}
+ - {fileID: 1513360459}
+ - {fileID: 1352768059}
+ - {fileID: 1417364537}
+ - {fileID: 997414315}
+ - {fileID: 1091602807}
+ - {fileID: 1337182454}
+ - {fileID: 1734305973}
+ - {fileID: 1315853934}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 1051553604}
+ m_AABB:
+ m_Center: {x: -0.0695844, y: 0.048660167, z: -0.0030157417}
+ m_Extent: {x: 0.3434245, y: 0.21802062, z: 0.2632023}
+ m_DirtyAABB: 0
+--- !u!1 &1133466708
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1014434409120256, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1133466709}
+ - component: {fileID: 1133466710}
+ m_Layer: 0
+ m_Name: Point light (24)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1133466709
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4506066483036934, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1133466708}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 9.5, y: 6.58, z: 11.99}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 26
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1133466710
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108778025841640482, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1133466708}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 2
+ m_Range: 4.5548496
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1140933120
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1854739270113470, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1140933121}
+ m_Layer: 8
+ m_Name: RightMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1140933121
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4322856935804220, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1140933120}
+ m_LocalRotation: {x: 0.00013964916, y: 0.00022017473, z: 0.84646815, w: 0.5324393}
+ m_LocalPosition: {x: 0.077400684, y: 0.10410154, z: -0.077723525}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1835033666}
+ m_Father: {fileID: 199118508}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1142920835
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1621447225871082, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1142920836}
+ m_Layer: 8
+ m_Name: LeftIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1142920836
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4577761560706842, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1142920835}
+ m_LocalRotation: {x: -1.6712978e-16, y: 3.4912011e-16, z: -8.636025e-13, w: 1}
+ m_LocalPosition: {x: -0.07174428, y: 2.8421698e-16, z: -0.00000009455366}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1251339635}
+ m_Father: {fileID: 251293562}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1144604459
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1288410250795148, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1144604460}
+ m_Layer: 8
+ m_Name: RightToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1144604460
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4702048106598162, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1144604459}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.12915844, y: 0, z: 0.0000000047083977}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1565202330}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1148717309
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1337552939504138, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1148717310}
+ - component: {fileID: 1148717313}
+ - component: {fileID: 1148717312}
+ - component: {fileID: 1148717311}
+ m_Layer: 0
+ m_Name: Dustbin03
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1148717310
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4731324264169550, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1148717309}
+ m_LocalRotation: {x: -0, y: 0, z: 0.95371693, w: -0.3007058}
+ m_LocalPosition: {x: 6.2079453, y: -16.90894, z: 0.004395504}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 13
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1148717311
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64032692758466992, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1148717309}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300010, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1148717312
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23520786353157318, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1148717309}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 7cf13ff2ec6ecf6458f22b58c36f2e32, 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_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
+--- !u!33 &1148717313
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33883611533809690, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1148717309}
+ m_Mesh: {fileID: 4300010, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1152115272
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1721701367885966, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1152115273}
+ m_Layer: 8
+ m_Name: LeftUpWingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1152115273
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4037894145852222, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1152115272}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.2414068, y: -1.7763567e-16, z: -3.1086245e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1479358626}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1154993081
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1242746979907126, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1154993082}
+ m_Layer: 8
+ m_Name: Neck
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1154993082
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4511420610509804, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1154993081}
+ m_LocalRotation: {x: -2.006019e-34, y: 0.2797406, z: 6.938894e-18, w: 0.9600756}
+ m_LocalPosition: {x: -0.2647147, y: 2.6367797e-17, z: -7.105427e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1084467281}
+ m_Father: {fileID: 1864634370}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1162583841
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1135146867476664, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1162583842}
+ - component: {fileID: 1162583843}
+ m_Layer: 0
+ m_Name: DefaultReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1162583842
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4687932159996802, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1162583841}
+ 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: 1825383314}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1162583843
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114943068189172902, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1162583841}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 1881880787}
+ - {fileID: 1659892942}
+ - {fileID: 583920926}
+ - {fileID: 260797430}
+ - {fileID: 325068502}
+ - {fileID: 1095430322}
+--- !u!1 &1164036636
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1535832960474506, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1164036637}
+ m_Layer: 8
+ m_Name: RightMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1164036637
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4243803341961958, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1164036636}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.037984, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 907892550}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1170795811
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000014140399352, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!1 &1172827726
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1500475215130628, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1172827727}
+ m_Layer: 8
+ m_Name: Spine1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1172827727
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4364629442592104, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1172827726}
+ m_LocalRotation: {x: -0.7071068, y: 0.7071068, z: 0.00000044323147, w: -0.00000014770202}
+ m_LocalPosition: {x: 1.6940659e-23, y: 0.3155601, z: 0.05607515}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 134899644}
+ - {fileID: 558116376}
+ - {fileID: 1426905460}
+ m_Father: {fileID: 622116615}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1180265702
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1483365056275200, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1180265703}
+ m_Layer: 8
+ m_Name: RightShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1180265703
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4234841663781192, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1180265702}
+ m_LocalRotation: {x: 0.7071068, y: 0.7071068, z: -8.7157646e-33, w: -8.659561e-17}
+ m_LocalPosition: {x: -0.13950408, y: 0.0441408, z: 0.027679462}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 714184897}
+ m_Father: {fileID: 1894324991}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1187981551
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1546896256725218, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1187981552}
+ m_Layer: 8
+ m_Name: LeftFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1187981552
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4522333833234118, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1187981551}
+ m_LocalRotation: {x: -0.032988027, y: 0.6020384, z: -0.0436483, w: 0.79659057}
+ m_LocalPosition: {x: -0.37354842, y: -1.065814e-15, z: 3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1762633159}
+ m_Father: {fileID: 2116748896}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1188695747
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1340572744792954, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1188695748}
+ m_Layer: 8
+ m_Name: LeftUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1188695748
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4269293185213470, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1188695747}
+ m_LocalRotation: {x: 0.051630996, y: 1.3809607e-14, z: 0.9986662, w: 2.6716663e-13}
+ m_LocalPosition: {x: 0.023284065, y: -0.118359946, z: -0.01646414}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2116748896}
+ m_Father: {fileID: 1383051852}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1192066371
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b804958e1981f9544989d65e32719692, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ item: {fileID: 11400000, guid: d24caee896ca7114aafaf607d9760c9d, type: 2}
+--- !u!1 &1193206260
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1163835741658402, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1193206261}
+ - component: {fileID: 1193206262}
+ m_Layer: 0
+ m_Name: Point light (2)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1193206261
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4043637888291644, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1193206260}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 8.38, y: 4.65, z: 18.89}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1193206262
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108826469040660246, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1193206260}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Intensity: 0
+ m_Range: 4.770953
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1194265729
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1616057727011452, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1194265730}
+ m_Layer: 8
+ m_Name: LeftIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1194265730
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4678742852253322, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1194265729}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.05352315, y: 0, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 350175558}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1195445105
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1135318727159508, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1195445106}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1195445106
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4788701438971322, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1195445105}
+ 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: 1126466338}
+ m_Father: {fileID: 1876984112}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1203180402
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1856901145656776, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1203180403}
+ - component: {fileID: 1203180404}
+ m_Layer: 0
+ m_Name: Point light (5)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1203180403
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4950636374618282, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1203180402}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.2, y: 2.348, z: -1.559}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 7
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1203180404
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108263447896141684, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1203180402}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.19852942, g: 1, b: 0.20405675, a: 1}
+ m_Intensity: 2.02
+ m_Range: 1.8056126
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!114 &1209751514
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: PickedUpGlasses
+ satisfied: 1
+ hash: 1481727687
+--- !u!1 &1218735850
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1996718165466454, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1218735851}
+ m_Layer: 8
+ m_Name: HousingRightDoor2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1218735851
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4682762240539892, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1218735850}
+ m_LocalRotation: {x: 0, y: -0.10557566, z: -0, w: 0.9944113}
+ m_LocalPosition: {x: 1.101812, y: -5.705413e-16, z: 0.0022962647}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 852194148}
+ m_Father: {fileID: 1010403537}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1228987253
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1819780704888726, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1228987254}
+ m_Layer: 8
+ m_Name: LeftToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1228987254
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4938608967876076, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1228987253}
+ m_LocalRotation: {x: -2.0348012e-16, y: 0.4002799, z: 8.8879994e-17, w: 0.916393}
+ m_LocalPosition: {x: -0.13682106, y: 3.1086245e-17, z: -7.135392e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1342929564}
+ m_Father: {fileID: 1956148251}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1232236881
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1749048829965298, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1232236882}
+ m_Layer: 8
+ m_Name: RightIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1232236882
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4513322091304324, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1232236881}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.115610994, y: -0.0090499995, z: -0.0477334}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 246208925}
+ m_Father: {fileID: 353424754}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1235163026
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1757136885460978, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1235163027}
+ m_Layer: 8
+ m_Name: LeftThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1235163027
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4366259528575890, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1235163026}
+ m_LocalRotation: {x: -5.339793e-15, y: -0.123088084, z: -2.427774e-16, w: 0.99239576}
+ m_LocalPosition: {x: -0.06197536, y: 0, z: -8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 202015027}
+ m_Father: {fileID: 1239607854}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1239607853
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1351664447839738, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1239607854}
+ m_Layer: 8
+ m_Name: LeftThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1239607854
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4663971015310060, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1239607853}
+ m_LocalRotation: {x: 0, y: 0.46427974, z: -0, w: 0.88568866}
+ m_LocalPosition: {x: -0.05189843, y: -0.0042919302, z: 0.035294443}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1235163027}
+ m_Father: {fileID: 152145878}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1242958044
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1588246423482860, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1242958045}
+ m_Layer: 8
+ m_Name: LeftDownWingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1242958045
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4715512990589676, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1242958044}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.22611624, y: -1.4210854e-16, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 809110409}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1247374274
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1287702069357128, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1247374275}
+ m_Layer: 8
+ m_Name: RightRing1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1247374275
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4428853805865586, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1247374274}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.115610994, y: -0.0090499995, z: 0.013526599}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1278281916}
+ m_Father: {fileID: 353424754}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1249003791
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1459044882254522, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1249003792}
+ m_Layer: 8
+ m_Name: RightEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1249003792
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4987130852379166, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1249003791}
+ m_LocalRotation: {x: 0.5000001, y: -0.49999985, z: 0.49999964, w: 0.50000036}
+ m_LocalPosition: {x: -0.2631768, y: -0.4604911, z: -0.7333016}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 225367009}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1251339634
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1559477627556356, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1251339635}
+ m_Layer: 8
+ m_Name: LeftIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1251339635
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4657755743163288, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1251339634}
+ m_LocalRotation: {x: 0, y: 0.7071062, z: 0, w: 0.7071075}
+ m_LocalPosition: {x: -0.07930518, y: 0.00000009335994, z: -0.00000009459759}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1142920836}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1256989267
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1121819568538060, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1256989268}
+ m_Layer: 8
+ m_Name: RightIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1256989268
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4986707562531166, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1256989267}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.037465997, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1819312147}
+ m_Father: {fileID: 1821027180}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1260642815
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1300529576515278, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1260642816}
+ m_Layer: 8
+ m_Name: LeftThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1260642816
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4366198061384488, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1260642815}
+ m_LocalRotation: {x: 0.000000007753445, y: -0.35068962, z: 0.0000000071348714, w: 0.9364917}
+ m_LocalPosition: {x: -0.057950944, y: 0, z: -2.2204459e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 371145285}
+ m_Father: {fileID: 835936546}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1261341585
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1869041924893096, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1261341586}
+ m_Layer: 8
+ m_Name: RightArm4
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1261341586
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4972163596338810, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1261341585}
+ m_LocalRotation: {x: 0, y: 6.123234e-17, z: -6.123234e-17, w: 1}
+ m_LocalPosition: {x: -0.32154, y: 7.105427e-17, z: -7.105427e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 83020532}
+ m_Father: {fileID: 846999370}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1263706724
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1616692282032144, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1263706725}
+ m_Layer: 8
+ m_Name: RightPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1263706725
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4688565791609328, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1263706724}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.068183996, y: -0.0000029823016, z: 0.0021224963}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 588595128}
+ m_Father: {fileID: 1624973127}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1267068666
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1657305607705948, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1267068667}
+ m_Layer: 8
+ m_Name: RightUpperArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1267068667
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4383022707463166, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1267068666}
+ m_LocalRotation: {x: -1.728288e-16, y: 0.000005141919, z: 3.3821242e-16, w: 1}
+ m_LocalPosition: {x: 0.264182, y: 1.4488317e-17, z: 0.0072700707}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 353424754}
+ m_Father: {fileID: 596487728}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1273465507
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1355947643314692, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1273465508}
+ - component: {fileID: 1273465510}
+ - component: {fileID: 1273465509}
+ m_Layer: 8
+ m_Name: Customer
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1273465508
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4373727547623620, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1273465507}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.209, y: 0, z: -0.137}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1574775051}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!136 &1273465509
+CapsuleCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 136324519560640688, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1273465507}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ m_Radius: 0.41
+ m_Height: 1.9091203
+ m_Direction: 1
+ m_Center: {x: 0.20900014, y: 0.85816073, z: 0.12613598}
+--- !u!137 &1273465510
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 137772290644471350, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1273465507}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 1a6730224b4502343a9966008f0b1668, 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_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: 9e42500670bb47f4d99af2fa8a64f882, type: 3}
+ m_Bones:
+ - {fileID: 1084467281}
+ - {fileID: 1383051852}
+ - {fileID: 391441399}
+ - {fileID: 1187981552}
+ - {fileID: 771476004}
+ - {fileID: 778348740}
+ - {fileID: 253419035}
+ - {fileID: 994776709}
+ - {fileID: 2116748896}
+ - {fileID: 2015049875}
+ - {fileID: 242696798}
+ - {fileID: 61192260}
+ - {fileID: 1561686513}
+ - {fileID: 61988304}
+ - {fileID: 1920019361}
+ - {fileID: 193637920}
+ - {fileID: 570034537}
+ - {fileID: 1971462719}
+ - {fileID: 486374256}
+ - {fileID: 835936546}
+ - {fileID: 1260642816}
+ - {fileID: 371145285}
+ - {fileID: 1188695748}
+ - {fileID: 1315378735}
+ - {fileID: 1787253488}
+ - {fileID: 1154993082}
+ - {fileID: 596487728}
+ - {fileID: 293960128}
+ - {fileID: 353424754}
+ - {fileID: 1232236882}
+ - {fileID: 246208925}
+ - {fileID: 320449116}
+ - {fileID: 760236024}
+ - {fileID: 68710441}
+ - {fileID: 69415294}
+ - {fileID: 907892550}
+ - {fileID: 1437245996}
+ - {fileID: 1420608520}
+ - {fileID: 278688384}
+ - {fileID: 1247374275}
+ - {fileID: 1278281916}
+ - {fileID: 1619978997}
+ - {fileID: 2041560055}
+ - {fileID: 1275677932}
+ - {fileID: 1530848676}
+ - {fileID: 1693766325}
+ - {fileID: 1592712828}
+ - {fileID: 2076730004}
+ - {fileID: 1267068667}
+ - {fileID: 419741102}
+ - {fileID: 1864634370}
+ - {fileID: 1762633159}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 1383051852}
+ m_AABB:
+ m_Center: {x: -0.023521543, y: 0.0013394654, z: -0.027328342}
+ m_Extent: {x: 0.9545599, y: 0.89296556, z: 0.20781872}
+ m_DirtyAABB: 0
+--- !u!1 &1275677931
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1207146283559334, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1275677932}
+ m_Layer: 8
+ m_Name: RightThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1275677932
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4349382005783674, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1275677931}
+ m_LocalRotation: {x: 9.458614e-16, y: 0.52361697, z: -1.5755911e-15, w: 0.8519538}
+ m_LocalPosition: {x: 0.022356998, y: 0.00518, z: -0.0277023}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1530848676}
+ m_Father: {fileID: 353424754}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1278281915
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1337001287007590, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1278281916}
+ m_Layer: 8
+ m_Name: RightRing2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1278281916
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4470242843824662, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1278281915}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.034948, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1619978997}
+ m_Father: {fileID: 1247374275}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1284792090
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1309082792661170, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1284792091}
+ m_Layer: 8
+ m_Name: Spine1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1284792091
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4241172402142776, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1284792090}
+ m_LocalRotation: {x: 0.7069087, y: -0.016736718, z: 0.016736718, w: 0.7069087}
+ m_LocalPosition: {x: -0.09604843, y: 2.1094237e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1538224558}
+ m_Father: {fileID: 1763312687}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1287936056
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1838101004256336, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1287936057}
+ - component: {fileID: 1287936060}
+ - component: {fileID: 1287936059}
+ - component: {fileID: 1287936058}
+ m_Layer: 0
+ m_Name: SpiceBags01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1287936057
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4430731650747686, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1287936056}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -10.491321, y: 2.6749194, z: 0.000000038146972}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 35
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1287936058
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64721446496483732, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1287936056}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300022, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1287936059
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23177110781782740, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1287936056}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 4ec2d68a2ff08f94e982603197685a68, 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_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
+--- !u!33 &1287936060
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33575748058231910, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1287936056}
+ m_Mesh: {fileID: 4300022, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1288272033
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1995638492562454, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1288272034}
+ - component: {fileID: 1288272037}
+ - component: {fileID: 1288272036}
+ - component: {fileID: 1288272035}
+ m_Layer: 8
+ m_Name: Ground
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1288272034
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4093497009514018, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1288272033}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 22
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1288272035
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64449558375005712, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1288272033}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300094, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1288272036
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23031166688295564, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1288272033}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3a48947a76978074795eb630980e7e56, 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_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
+--- !u!33 &1288272037
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33879110149513286, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1288272033}
+ m_Mesh: {fileID: 4300094, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1293407590
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1723203104941650, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1293407591}
+ - component: {fileID: 1293407592}
+ m_Layer: 0
+ m_Name: DefaultReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1293407591
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4179218989185316, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1293407590}
+ 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: 1799114851}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1293407592
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114569822282647822, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1293407590}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 938471497}
+ - {fileID: 11543072}
+--- !u!114 &1293534931
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000011350643396, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 0
+--- !u!114 &1296599059
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 1397227339}
+ audioClip: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ delay: 1
+--- !u!1 &1297885522
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1814896973180430, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1297885523}
+ m_Layer: 8
+ m_Name: LeftThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1297885523
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4832578037256688, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1297885522}
+ m_LocalRotation: {x: -2.359017e-16, y: 2.828658e-16, z: 1.3159237e-11, w: 1}
+ m_LocalPosition: {x: -0.07157, y: 2.1316292e-16, z: -0.0000003678362}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 512314286}
+ m_Father: {fileID: 1627140799}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1308190903
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1023057076388450, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1308190904}
+ m_Layer: 8
+ m_Name: RightThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1308190904
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4439402173193700, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1308190903}
+ m_LocalRotation: {x: 0.03277064, y: 0.47217697, z: 0.046573706, w: 0.8796624}
+ m_LocalPosition: {x: 0.03582, y: 0.05261999, z: -0.071392104}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 804224459}
+ m_Father: {fileID: 206522660}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1309590729
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 0}
+ trigger: AttemptTake
+--- !u!1 &1315378734
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1809771806284818, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1315378735}
+ m_Layer: 8
+ m_Name: LeftUpperArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1315378735
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4438078280158590, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1315378734}
+ m_LocalRotation: {x: -9.483926e-31, y: 8.560468e-16, z: -6.5190887e-29, w: 1}
+ m_LocalPosition: {x: -0.26418158, y: -8.521955e-16, z: -0.0073472136}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 771476004}
+ m_Father: {fileID: 391441399}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1315678196
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: No more coins...
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!1 &1315853933
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1966961010683794, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1315853934}
+ m_Layer: 8
+ m_Name: Tail
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1315853934
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4163426182475096, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1315853933}
+ m_LocalRotation: {x: 3.538836e-16, y: -1.1102232e-16, z: 0.96860605, w: -0.2486008}
+ m_LocalPosition: {x: 0.043559182, y: 0.05133841, z: -1.1368684e-15}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 334386139}
+ m_Father: {fileID: 1051553604}
+ m_RootOrder: 7
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1317446743
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1562392616084550, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1317446744}
+ m_Layer: 8
+ m_Name: LeftToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1317446744
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4024001180653940, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1317446743}
+ m_LocalRotation: {x: 0.20128554, y: 0.035536904, z: -0.20259012, w: 0.9576944}
+ m_LocalPosition: {x: -0.12520328, y: 7.105427e-17, z: 6.661338e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1621615196}
+ m_Father: {fileID: 362302809}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1320769842
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1900605609754406, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1320769843}
+ - component: {fileID: 1320769844}
+ m_Layer: 0
+ m_Name: Point light (14)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1320769843
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4507330516902984, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1320769842}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 4.221, y: 2.257, z: 7.841}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 16
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1320769844
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108260917552620920, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1320769842}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 1, g: 0.066176474, b: 0.2787019, a: 1}
+ m_Intensity: 1.5
+ m_Range: 2.2014189
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1323165674
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1372200176772260, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1323165675}
+ - component: {fileID: 1323165678}
+ - component: {fileID: 1323165677}
+ - component: {fileID: 1323165676}
+ m_Layer: 0
+ m_Name: Stalls02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1323165675
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4877940430590896, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1323165674}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -14.698354, y: 1.9398657, z: -0.0012442779}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 38
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1323165676
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64110126098771742, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1323165674}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300088, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1323165677
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23458534254042870, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1323165674}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 60d569cced1f71b44b6922c49e5bb4ae, 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_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
+--- !u!33 &1323165678
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33847780968302592, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1323165674}
+ m_Mesh: {fileID: 4300088, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!114 &1329830446
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b804958e1981f9544989d65e32719692, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ item: {fileID: 11400000, guid: f0776cdb931cbdb4b83c5035ebf49463, type: 2}
+--- !u!1 &1337182453
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1923102482848064, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1337182454}
+ m_Layer: 8
+ m_Name: LeftUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1337182454
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4288847716876660, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1337182453}
+ m_LocalRotation: {x: -0.12109285, y: -0.21268155, z: 0.9599154, w: 0.1366221}
+ m_LocalPosition: {x: 0.060711343, y: -0.021130675, z: -0.059972294}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1091602807}
+ m_Father: {fileID: 1051553604}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1340242845
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1546127462248784, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1340242846}
+ m_Layer: 8
+ m_Name: RightIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1340242846
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4787390867879538, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1340242845}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.037984, y: 0, z: -2.2204459e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 320449116}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1342929563
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1912926717392068, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1342929564}
+ m_Layer: 8
+ m_Name: LeftToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1342929564
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4169272465888780, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1342929563}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.14453001, y: 8.881784e-18, z: -4.043501e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1228987254}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1344299866
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1354014072064330, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1344299867}
+ - component: {fileID: 773705719}
+ m_Layer: 0
+ m_Name: HasFishReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1344299867
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4498345791031346, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1344299866}
+ 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: 1825383314}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1344947823
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1146459548193560, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1344947824}
+ m_Layer: 8
+ m_Name: LeftRing2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1344947824
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4332941781937750, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1344947823}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.027950978, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1631125086}
+ m_Father: {fileID: 247950790}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1346602416
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1346602417}
+ - component: {fileID: 1346602419}
+ - component: {fileID: 1346602418}
+ m_Layer: 0
+ m_Name: New Text
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1346602417
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1346602416}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0, y: -0.2, z: 2}
+ m_LocalScale: {x: 0.0125, y: 0.0125, z: 0.0125}
+ m_Children: []
+ m_Father: {fileID: 873154567}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!102 &1346602418
+TextMesh:
+ serializedVersion: 3
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1346602416}
+ m_Text: "Press 'g' to toggle classic gaze visualization\r\nPress 'l' to toggle laser
+ pointer\nPress 'm' to de-/activate monochrome border"
+ m_OffsetZ: 0
+ m_CharacterSize: 1
+ m_LineSpacing: 1
+ m_Anchor: 4
+ m_Alignment: 1
+ m_TabSize: 4
+ m_FontSize: 64
+ m_FontStyle: 1
+ m_RichText: 1
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_Color:
+ serializedVersion: 2
+ rgba: 4294967295
+--- !u!23 &1346602419
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1346602416}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0}
+ 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_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
+--- !u!114 &1351843567
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 4
+ gameObject: {fileID: 0}
+ activeState: 1
+--- !u!1 &1352768058
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1584270197569236, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1352768059}
+ m_Layer: 8
+ m_Name: RightToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1352768059
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4896948342794706, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1352768058}
+ m_LocalRotation: {x: -0.09715609, y: -0.0072860685, z: -0.16366091, w: 0.9816938}
+ m_LocalPosition: {x: 0.06380386, y: -0.003493869, z: -0.0022781}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1824548082}
+ m_Father: {fileID: 997414315}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1354279620
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1235348203349434, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1354279621}
+ - component: {fileID: 1354279622}
+ m_Layer: 0
+ m_Name: Point light (8)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1354279621
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4998128430905250, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1354279620}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 3.55, y: 1.95, z: -3.03}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 10
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1354279622
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108328105522916016, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1354279620}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.28827855, g: 0.5505727, b: 0.9117647, a: 1}
+ m_Intensity: 3
+ m_Range: 2.7817535
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1357337279
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1662789423007036, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1357337280}
+ m_Layer: 8
+ m_Name: LeftArm6
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1357337280
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4773086541464740, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1357337279}
+ m_LocalRotation: {x: -2.2088105e-29, y: -1.323489e-23, z: 1.1911401e-22, w: 1}
+ m_LocalPosition: {x: -0.31936, y: 1.4210854e-16, z: -0.00000013093819}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1752464061}
+ m_Father: {fileID: 230391422}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1358163120
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1860090737112168, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1358163121}
+ m_Layer: 8
+ m_Name: RightArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1358163121
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4422133709951448, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1358163120}
+ m_LocalRotation: {x: -0.0000008510943, y: 0.12357443, z: 0.000000112221755, w: 0.9923353}
+ m_LocalPosition: {x: 0.23384185, y: -2.842171e-16, z: 0.000000100622614}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1039147711}
+ m_Father: {fileID: 1549474102}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1358399738
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1905256593510118, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1358399739}
+ m_Layer: 8
+ m_Name: LeftMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1358399739
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4344524283023740, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1358399738}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.056199305, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2044022488}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1359420393
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1177672630812450, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1359420394}
+ m_Layer: 8
+ m_Name: RightPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1359420394
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4092754651150228, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1359420393}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.043116, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1927866878}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1376194621
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1326755535735014, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1376194622}
+ - component: {fileID: 1376194625}
+ - component: {fileID: 1376194624}
+ - component: {fileID: 1376194623}
+ m_Layer: 8
+ m_Name: ShadeCloth03
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967169
+ m_IsActive: 1
+--- !u!4 &1376194622
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4693556623644072, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1376194621}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -11.046476, y: -3.0352392, z: 2.4605374}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 32
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1376194623
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64515187914618820, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1376194621}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300092, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1376194624
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23928599224328926, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1376194621}
+ m_Enabled: 1
+ m_CastShadows: 3
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3ea3a2c6801aae54396d0e9359371fc8, type: 2}
+ m_StaticBatchInfo:
+ firstSubMesh: 0
+ subMeshCount: 0
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 0.001
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 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
+--- !u!33 &1376194625
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33278866468067642, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1376194621}
+ m_Mesh: {fileID: 4300092, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1383051851
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1123628967652360, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1383051852}
+ m_Layer: 8
+ m_Name: Hips
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1383051852
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4353015215500502, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1383051851}
+ m_LocalRotation: {x: 0, y: 0, z: -0.7071068, w: 0.7071068}
+ m_LocalPosition: {x: -0.0013393179, y: 0.8346392, z: 0.01646414}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1188695748}
+ - {fileID: 2076730004}
+ - {fileID: 419741102}
+ m_Father: {fileID: 1842901178}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1383985940
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1306045204552478, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1383985941}
+ m_Layer: 8
+ m_Name: RightLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1383985941
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4850782124014672, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1383985940}
+ m_LocalRotation: {x: 1.4245845e-31, y: -0.08400427, z: 4.1937947e-31, w: 0.9964654}
+ m_LocalPosition: {x: 0.219778, y: 3.5527136e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1872677271}
+ m_Father: {fileID: 950305161}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1389129674
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1091850011242390, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1389129675}
+ - component: {fileID: 1389129676}
+ m_Layer: 0
+ m_Name: Point light (4)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1389129675
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4267258171892120, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1389129674}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.426, y: 2.782, z: -1.954}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 6
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1389129676
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108096690617045084, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1389129674}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 1, g: 0.58823526, b: 0.58823526, a: 1}
+ m_Intensity: 2.02
+ m_Range: 3.2132387
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1391232157
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1539334759489202, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1391232158}
+ m_Layer: 8
+ m_Name: LeftLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1391232158
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4362925795131978, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1391232157}
+ m_LocalRotation: {x: 0.000000012888046, y: -0.05091579, z: 6.570573e-10, w: 0.99870294}
+ m_LocalPosition: {x: -0.280884, y: -2.3092638e-16, z: 4.440892e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1638732852}
+ m_Father: {fileID: 1964303471}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1393523879
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1365929254751942, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1393523880}
+ - component: {fileID: 1393523881}
+ m_Layer: 0
+ m_Name: Point light (23)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1393523880
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4346646392132156, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1393523879}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 9.5, y: 6.58, z: 7.17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 25
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1393523881
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108627175463408712, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1393523879}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 2
+ m_Range: 4.5548496
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1395395387
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1473542405081954, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1395395388}
+ m_Layer: 8
+ m_Name: RightRingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1395395388
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4291223695257084, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1395395387}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.052929, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1114387457}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1396242976
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: PickedUpCoin
+ satisfied: 1
+ hash: 514706441
+--- !u!1 &1397212526
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1003420684561004, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1397212527}
+ - component: {fileID: 1397212530}
+ - component: {fileID: 1397212529}
+ - component: {fileID: 1397212528}
+ m_Layer: 8
+ m_Name: CoffeeCup
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1397212527
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4102886735260768, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1397212526}
+ m_LocalRotation: {x: -0.6202468, y: 0.372353, z: -0.35534993, w: 0.5919237}
+ m_LocalPosition: {x: -0.057, y: 0.113, z: -0}
+ m_LocalScale: {x: 0.36771256, y: 0.36771256, z: 0.36771256}
+ m_Children: []
+ m_Father: {fileID: 199118508}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1397212528
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64370171653553292, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1397212526}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300002, guid: 287f138f9d2f6d642a97ec0483afde5d, type: 3}
+--- !u!23 &1397212529
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23076248695342418, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1397212526}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 9d897843149660d4a8439ee2bf24eb1e, 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_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
+--- !u!33 &1397212530
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33829378916002008, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1397212526}
+ m_Mesh: {fileID: 4300002, guid: 287f138f9d2f6d642a97ec0483afde5d, type: 3}
+--- !u!82 &1397227339
+AudioSource:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 82264018092795508, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1559834871}
+ m_Enabled: 1
+ serializedVersion: 4
+ OutputAudioMixerGroup: {fileID: 0}
+ m_audioClip: {fileID: 0}
+ m_PlayOnAwake: 0
+ m_Volume: 1
+ m_Pitch: 1
+ Loop: 0
+ Mute: 0
+ Spatialize: 0
+ SpatializePostEffects: 0
+ Priority: 128
+ DopplerLevel: 1
+ MinDistance: 1
+ MaxDistance: 500
+ Pan2D: 0
+ rolloffMode: 0
+ BypassEffects: 0
+ BypassListenerEffects: 0
+ BypassReverbZones: 0
+ rolloffCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ panLevelCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ spreadCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ reverbZoneMixCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+--- !u!1 &1400731287
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1569278931430500, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1400731288}
+ m_Layer: 8
+ m_Name: LeftToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1400731288
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4802009682270936, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1400731287}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.07749791, y: 0, z: -5.3290704e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1762633159}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1403116041
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1855212473707952, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1403116042}
+ m_Layer: 8
+ m_Name: RightThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1403116042
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4801216875272678, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1403116041}
+ m_LocalRotation: {x: -1.1194366e-16, y: -1.6650571e-16, z: 8.5689506e-17, w: 1}
+ m_LocalPosition: {x: -0.07157, y: 0.00000008660004, z: 0.00000014007328}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 673967424}
+ m_Father: {fileID: 1616201296}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1413991409
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1061817764103068, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1413991410}
+ m_Layer: 8
+ m_Name: LeftMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1413991410
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4294928704195374, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1413991409}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.1809067, y: 0.01761399, z: 0.0069078174}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2051706849}
+ m_Father: {fileID: 314536067}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1416912783
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1696362778260084, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1416912784}
+ - component: {fileID: 1416912785}
+ m_Layer: 0
+ m_Name: Point light (1)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1416912784
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4830017057219138, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1416912783}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 6.45, y: 2.47, z: 11.65}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1416912785
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108450750889433092, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1416912783}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Intensity: 1
+ m_Range: 5.768015
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1417364536
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1713471994023114, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1417364537}
+ m_Layer: 8
+ m_Name: RightBackToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1417364537
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4076879565830408, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1417364536}
+ m_LocalRotation: {x: 0.2305266, y: 0.96718156, z: -0.10141042, w: 0.033664003}
+ m_LocalPosition: {x: 0.051616166, y: 0.0136744715, z: -0.0022781002}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1427843360}
+ m_Father: {fileID: 997414315}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1420608519
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1659529156184942, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1420608520}
+ m_Layer: 8
+ m_Name: RightPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1420608520
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4410313353095526, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1420608519}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.028578, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 278688384}
+ m_Father: {fileID: 1437245996}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1421556082
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1765161972139906, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1421556083}
+ - component: {fileID: 1421556086}
+ - component: {fileID: 1421556085}
+ - component: {fileID: 1421556084}
+ m_Layer: 0
+ m_Name: Chairs02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1421556083
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4407216376945560, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1421556082}
+ m_LocalRotation: {x: -0.6391767, y: 0.21880373, z: -0.23878247, w: 0.6975392}
+ m_LocalPosition: {x: -7.5071096, y: -2.7143774, z: 0.16586791}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 5
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1421556084
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64971984676752408, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1421556082}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300042, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1421556085
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23995525896624884, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1421556082}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3f196f5aa004d894c81b14bfba41ac27, 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_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
+--- !u!33 &1421556086
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33484712270625474, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1421556082}
+ m_Mesh: {fileID: 4300042, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1426905459
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1277832017406962, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1426905460}
+ m_Layer: 8
+ m_Name: spine2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1426905460
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4681905929500520, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1426905459}
+ m_LocalRotation: {x: -5.293956e-23, y: 5.293956e-23, z: 0, w: 1}
+ m_LocalPosition: {x: -0.48641288, y: 8.8649955e-18, z: -3.5527135e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 225367009}
+ - {fileID: 530062571}
+ m_Father: {fileID: 1172827727}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1427653175
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1686213591690386, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1427653176}
+ - component: {fileID: 1427653177}
+ m_Layer: 0
+ m_Name: Point light (25)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1427653176
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4086634341721614, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1427653175}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 6.28, y: 6.58, z: 14.42}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 27
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1427653177
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108446404761062016, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1427653175}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 2
+ m_Range: 4.5548496
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1427843359
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1152556340298754, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1427843360}
+ m_Layer: 8
+ m_Name: RightBackToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1427843360
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4350889594246618, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1427843359}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.056758203, y: -0.0000000030931737, z: -5.506706e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1417364537}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1428894374
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1257230772725504, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1428894375}
+ - component: {fileID: 1428894379}
+ - component: {fileID: 1428894378}
+ - component: {fileID: 1428894377}
+ - component: {fileID: 1428894376}
+ m_Layer: 8
+ m_Name: SecurityCamera
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1428894375
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4036963917595564, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1428894374}
+ m_LocalRotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071067}
+ m_LocalPosition: {x: -5.979001, y: 3.532, z: -1.938}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1587230079}
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 10
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1428894376
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64729230388247724, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1428894374}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300000, guid: ef8cdb4b09398294dbbad74fcc5add20, type: 3}
+--- !u!95 &1428894377
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 95700826145800928, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1428894374}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: ef8cdb4b09398294dbbad74fcc5add20, type: 3}
+ m_Controller: {fileID: 9100000, guid: 3f033d1d677ec21438f98252d9f13d73, type: 2}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!23 &1428894378
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23573208559887986, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1428894374}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3f386ec83100d844b94a7a5b79ffb81d, 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_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
+--- !u!33 &1428894379
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33397122022728576, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1428894374}
+ m_Mesh: {fileID: 4300000, guid: ef8cdb4b09398294dbbad74fcc5add20, type: 3}
+--- !u!1 &1434894523
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1549886156691048, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1434894524}
+ - component: {fileID: 1434894527}
+ - component: {fileID: 1434894526}
+ - component: {fileID: 1434894525}
+ m_Layer: 0
+ m_Name: FoodTrays01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1434894524
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4492825572562482, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1434894523}
+ m_LocalRotation: {x: 0.11376956, y: 0.0007763773, z: 0.0067796553, w: 0.9934838}
+ m_LocalPosition: {x: -15.882573, y: 1.9414957, z: 1.0144908}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 16
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1434894525
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64090749935353710, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1434894523}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300034, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1434894526
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23636208409643330, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1434894523}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 61678ebbb8fa54046afc6d3f0232531c, 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_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
+--- !u!33 &1434894527
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33865686980447118, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1434894523}
+ m_Mesh: {fileID: 4300034, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1437245995
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1003105511229112, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1437245996}
+ m_Layer: 8
+ m_Name: RightPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1437245996
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4870538216118268, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1437245995}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.115610994, y: -0.0090499995, z: 0.045186598}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1420608520}
+ m_Father: {fileID: 353424754}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1443649043
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1045500622706900, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1443649044}
+ m_Layer: 0
+ m_Name: MarketEnvironment
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1443649044
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4478629569905770, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1443649043}
+ m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
+ m_LocalPosition: {x: -0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 367364543}
+ - {fileID: 889739358}
+ - {fileID: 947226249}
+ - {fileID: 1830143975}
+ - {fileID: 1579145817}
+ - {fileID: 1421556083}
+ - {fileID: 330879414}
+ - {fileID: 247967683}
+ - {fileID: 43059179}
+ - {fileID: 1630850575}
+ - {fileID: 1703878051}
+ - {fileID: 2102272665}
+ - {fileID: 655924178}
+ - {fileID: 1148717310}
+ - {fileID: 152189307}
+ - {fileID: 1497397644}
+ - {fileID: 1434894524}
+ - {fileID: 958306083}
+ - {fileID: 583948673}
+ - {fileID: 633676266}
+ - {fileID: 1792070815}
+ - {fileID: 1027920379}
+ - {fileID: 1288272034}
+ - {fileID: 965663376}
+ - {fileID: 176924942}
+ - {fileID: 882420895}
+ - {fileID: 59692937}
+ - {fileID: 617807000}
+ - {fileID: 2094550719}
+ - {fileID: 372519614}
+ - {fileID: 1771686978}
+ - {fileID: 1022134238}
+ - {fileID: 1376194622}
+ - {fileID: 358437359}
+ - {fileID: 1829180670}
+ - {fileID: 1287936057}
+ - {fileID: 73957047}
+ - {fileID: 1504981706}
+ - {fileID: 1323165675}
+ - {fileID: 1513249490}
+ - {fileID: 1962225312}
+ - {fileID: 1886184011}
+ - {fileID: 101866785}
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 16
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1449206080
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1990909627744058, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1449206081}
+ - component: {fileID: 1449206083}
+ - component: {fileID: 1449206082}
+ m_Layer: 8
+ m_Name: Sharkman
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1449206081
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4251711359141154, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1449206080}
+ 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: 67410039}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!136 &1449206082
+CapsuleCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 136326695552601888, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1449206080}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ m_Radius: 0.54
+ m_Height: 2.287663
+ m_Direction: 1
+ m_Center: {x: -0.0036607154, y: 0.98848355, z: -0.093307674}
+--- !u!137 &1449206083
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 137432965340719704, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1449206080}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: d788c05ebea28de4db00723fccb2e638, 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_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: 208f4309afd2a5e41864618ed2613adf, type: 3}
+ m_Bones:
+ - {fileID: 745938063}
+ - {fileID: 1565202330}
+ - {fileID: 2110334853}
+ - {fileID: 1638732852}
+ - {fileID: 1391232158}
+ - {fileID: 323738537}
+ - {fileID: 1964303471}
+ - {fileID: 499500790}
+ - {fileID: 376596470}
+ - {fileID: 1496031208}
+ - {fileID: 1572710215}
+ - {fileID: 1488309599}
+ - {fileID: 1991146536}
+ - {fileID: 475801921}
+ - {fileID: 1548979861}
+ - {fileID: 2051706849}
+ - {fileID: 1413991410}
+ - {fileID: 671095692}
+ - {fileID: 760311244}
+ - {fileID: 501639345}
+ - {fileID: 314536067}
+ - {fileID: 1687584951}
+ - {fileID: 1641842504}
+ - {fileID: 481801238}
+ - {fileID: 1665117755}
+ - {fileID: 804224459}
+ - {fileID: 1308190904}
+ - {fileID: 2116678881}
+ - {fileID: 2106724232}
+ - {fileID: 2063522625}
+ - {fileID: 1048983043}
+ - {fileID: 2053061871}
+ - {fileID: 1806538950}
+ - {fileID: 1942573747}
+ - {fileID: 664563757}
+ - {fileID: 564533433}
+ - {fileID: 206522660}
+ - {fileID: 1039147711}
+ - {fileID: 1358163121}
+ - {fileID: 1549474102}
+ - {fileID: 1978002530}
+ - {fileID: 549784600}
+ - {fileID: 24314631}
+ - {fileID: 1538224558}
+ - {fileID: 1284792091}
+ - {fileID: 1763312687}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 1763312687}
+ m_AABB:
+ m_Center: {x: -0.19467527, y: -0.0007520318, z: -0.06909007}
+ m_Extent: {x: 1.1438313, y: 1.3672259, z: 0.4599617}
+ m_DirtyAABB: 0
+--- !u!1 &1453857082
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1152356798829176, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1453857083}
+ m_Layer: 0
+ m_Name: InteractionLocation
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1453857083
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4803648631654422, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1453857082}
+ m_LocalRotation: {x: 0, y: 1, z: 0, w: 0}
+ m_LocalPosition: {x: 0, y: 0, z: 1}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1613677338}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+--- !u!114 &1475114109
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: Oh some glasses!
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!1 &1478519144
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1551479827995046, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1478519145}
+ m_Layer: 8
+ m_Name: Hips
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1478519145
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4576510142513958, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1478519144}
+ m_LocalRotation: {x: 0, y: -0, z: -0.7071068, w: 0.7071068}
+ m_LocalPosition: {x: -0, y: 0.7101239, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 603964765}
+ - {fileID: 1075129899}
+ - {fileID: 614588468}
+ m_Father: {fileID: 251989434}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1479358625
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1741403439822050, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1479358626}
+ m_Layer: 8
+ m_Name: LeftUpWing
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1479358626
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4724227867559748, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1479358625}
+ m_LocalRotation: {x: 0.22004697, y: -0.6462069, z: 0.69792116, w: 0.21656874}
+ m_LocalPosition: {x: -0.11167476, y: 0.026394414, z: -0.078170896}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1152115273}
+ m_Father: {fileID: 1051553604}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1482364711
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1440623561104584, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1482364712}
+ m_Layer: 8
+ m_Name: LowerEyeLids
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1482364712
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4750538183605046, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1482364711}
+ m_LocalRotation: {x: -2.7755576e-17, y: -2.0816682e-17, z: 1.08853905e-16, w: 1}
+ m_LocalPosition: {x: -0.14492892, y: 1.2479081e-16, z: 0.15467033}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 335749063}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1488309598
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1113728841620392, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1488309599}
+ m_Layer: 8
+ m_Name: LeftIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1488309599
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4761615839125860, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1488309598}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.03880987, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 408082415}
+ m_Father: {fileID: 1991146536}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1496031207
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1298720346886368, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1496031208}
+ m_Layer: 8
+ m_Name: LeftThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1496031208
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4525039692324732, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1496031207}
+ m_LocalRotation: {x: 5.956455e-13, y: -0.30124214, z: -2.7254197e-13, w: 0.9535477}
+ m_LocalPosition: {x: -0.09883196, y: 7.910339e-17, z: -2.0198015e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 376596470}
+ m_Father: {fileID: 1572710215}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1497397643
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1901740156417220, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1497397644}
+ - component: {fileID: 1497397647}
+ - component: {fileID: 1497397646}
+ - component: {fileID: 1497397645}
+ m_Layer: 8
+ m_Name: FloorPanels
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1497397644
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4226514826612906, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1497397643}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 15
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1497397645
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64896768747017778, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1497397643}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300096, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1497397646
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23534217106119074, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1497397643}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: d5c39045660bc764a8ef604888042b5b, 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_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
+--- !u!33 &1497397647
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33107193700350714, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1497397643}
+ m_Mesh: {fileID: 4300096, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1504981705
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1546538981406068, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1504981706}
+ - component: {fileID: 1504981709}
+ - component: {fileID: 1504981708}
+ - component: {fileID: 1504981707}
+ m_Layer: 0
+ m_Name: Stalls01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1504981706
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4408534963376142, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1504981705}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -14.698354, y: 1.9398657, z: -0.0012442779}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 37
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1504981707
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64865460905631252, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1504981705}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300086, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1504981708
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23228887700739302, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1504981705}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 60d569cced1f71b44b6922c49e5bb4ae, 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_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
+--- !u!33 &1504981709
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33032592042926392, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1504981705}
+ m_Mesh: {fileID: 4300086, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1508579659
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1291106826404856, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1508579660}
+ - component: {fileID: 1508579662}
+ - component: {fileID: 1508579661}
+ m_Layer: 8
+ m_Name: SecondHandSalesman
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1508579660
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4704932187128234, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1508579659}
+ 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: 73654800}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!136 &1508579661
+CapsuleCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 136286025879250612, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1508579659}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ m_Radius: 0.38
+ m_Height: 1.9217073
+ m_Direction: 1
+ m_Center: {x: -0.0000001229096, y: 0.8461062, z: 0.0013932267}
+--- !u!137 &1508579662
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 137752164323869024, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1508579659}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 5aae30acb47cb134cb98d589f6e6160e, 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_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: 4b14b4b275040064fb2dbb9768d883eb, type: 3}
+ m_Bones:
+ - {fileID: 1317446744}
+ - {fileID: 996376102}
+ - {fileID: 56995166}
+ - {fileID: 362302809}
+ - {fileID: 2081772992}
+ - {fileID: 686716283}
+ - {fileID: 603964765}
+ - {fileID: 1075129899}
+ - {fileID: 691970158}
+ - {fileID: 2042289360}
+ - {fileID: 1263706725}
+ - {fileID: 105733410}
+ - {fileID: 665124895}
+ - {fileID: 1624973127}
+ - {fileID: 672167503}
+ - {fileID: 791123704}
+ - {fileID: 157747207}
+ - {fileID: 1987081132}
+ - {fileID: 714184897}
+ - {fileID: 1180265703}
+ - {fileID: 186860949}
+ - {fileID: 804435822}
+ - {fileID: 142586510}
+ - {fileID: 718489739}
+ - {fileID: 1517065157}
+ - {fileID: 827380291}
+ - {fileID: 778145262}
+ - {fileID: 1584391189}
+ - {fileID: 253531424}
+ - {fileID: 1029515321}
+ - {fileID: 742643171}
+ - {fileID: 456573163}
+ - {fileID: 614890617}
+ - {fileID: 2010086164}
+ - {fileID: 630127493}
+ - {fileID: 452804781}
+ - {fileID: 39297899}
+ - {fileID: 229620280}
+ - {fileID: 208262783}
+ - {fileID: 1894324991}
+ - {fileID: 614588468}
+ - {fileID: 1478519145}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 1478519145}
+ m_AABB:
+ m_Center: {x: -0.13598222, y: -0.00000011920929, z: 0.0013932586}
+ m_Extent: {x: 0.96085316, y: 1.0731928, z: 0.24275583}
+ m_DirtyAABB: 0
+--- !u!1 &1513249489
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1775376045527110, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1513249490}
+ - component: {fileID: 1513249493}
+ - component: {fileID: 1513249492}
+ - component: {fileID: 1513249491}
+ m_Layer: 0
+ m_Name: VendingMachine01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1513249490
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4305688190344358, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1513249489}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.50684273, y: 1.8493043, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 39
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1513249491
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64748429768451244, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1513249489}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300058, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1513249492
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23470427168010582, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1513249489}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: e601b63d46663824d853a55aa1d71001, type: 2}
+ - {fileID: 2100000, guid: cb7d12c46517df84eb12587362b496a8, 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_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
+--- !u!33 &1513249493
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33677379848265744, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1513249489}
+ m_Mesh: {fileID: 4300058, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1513360458
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1598243959711602, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1513360459}
+ m_Layer: 8
+ m_Name: LeftBackToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1513360459
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4030629542827606, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1513360458}
+ m_LocalRotation: {x: 0.47678733, y: 0.87875503, z: -0.021356061, w: 0.0027174372}
+ m_LocalPosition: {x: -0.05161618, y: -0.013674524, z: 0.002278118}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1802361271}
+ m_Father: {fileID: 1091602807}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1517065156
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1322227284008448, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1517065157}
+ m_Layer: 8
+ m_Name: LeftMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1517065157
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4445310636320000, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1517065156}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.10379059, y: -0.0005502199, z: -0.000020815145}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 804435822}
+ m_Father: {fileID: 253531424}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1521942419
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: Oh! A coin!
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!1 &1530848675
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1686746875596744, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1530848676}
+ m_Layer: 8
+ m_Name: RightThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1530848676
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4009510595844374, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1530848675}
+ m_LocalRotation: {x: 0.000000012948033, y: -0.35068962, z: 3.475918e-10, w: 0.9364917}
+ m_LocalPosition: {x: 0.0579511, y: 0, z: 0.0000003961197}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1693766325}
+ m_Father: {fileID: 1275677932}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1538224557
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1969138413731164, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1538224558}
+ m_Layer: 8
+ m_Name: Spine2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1538224558
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4585593252789806, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1538224557}
+ m_LocalRotation: {x: 1.110223e-16, y: 5.551115e-17, z: 0.065378256, w: 0.99786055}
+ m_LocalPosition: {x: -0.2728152, y: 2.6645352e-17, z: -5.995204e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 24314631}
+ - {fileID: 481801238}
+ - {fileID: 1549474102}
+ m_Father: {fileID: 1284792091}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1548979860
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1314348395456702, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1548979861}
+ m_Layer: 8
+ m_Name: LeftMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1548979861
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4890194619627882, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1548979860}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.041795243, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1957109705}
+ m_Father: {fileID: 2051706849}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1549474101
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1705942839260526, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1549474102}
+ m_Layer: 8
+ m_Name: RightClavicle
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1549474102
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4124259023568590, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1549474101}
+ m_LocalRotation: {x: 0.47130802, y: 0.3940069, z: -0.6053878, w: 0.50609577}
+ m_LocalPosition: {x: -0.27040994, y: -0.0006452177, z: -0.11539398}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1358163121}
+ m_Father: {fileID: 1538224558}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1553811666
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1576634139906536, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1553811667}
+ - component: {fileID: 1553811668}
+ m_Layer: 0
+ m_Name: Point light (9)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1553811667
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4156619759881802, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1553811666}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 10.315, y: 2.015, z: 5.4}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 11
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1553811668
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108838889301702226, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1553811666}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.25, g: 0.875862, b: 1, a: 1}
+ m_Intensity: 2
+ m_Range: 2.7817535
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1559834871
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1036041455903360, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1559834872}
+ - component: {fileID: 1397227339}
+ m_Layer: 0
+ m_Name: FX
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1559834872
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4979843530392072, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1559834871}
+ 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: 2031787514}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1560071744
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1606274670327310, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1560071745}
+ - component: {fileID: 1560071746}
+ m_Layer: 8
+ m_Name: Customer
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1560071745
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4455600234875206, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1560071744}
+ m_LocalRotation: {x: 0, y: 0.50000006, z: 0, w: 0.8660254}
+ m_LocalPosition: {x: 8, y: 0, z: 5.0599995}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1921987857}
+ - {fileID: 1574775051}
+ - {fileID: 1842901178}
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!95 &1560071746
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 95032536293730160, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1560071744}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: 9e42500670bb47f4d99af2fa8a64f882, type: 3}
+ m_Controller: {fileID: 9100000, guid: 2238c85918cd97c45a8b66670de76d63, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!1 &1561686512
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1765193533399616, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1561686513}
+ m_Layer: 8
+ m_Name: LeftPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1561686513
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4925351469358034, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1561686512}
+ m_LocalRotation: {x: 0.000000010536712, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.11561086, y: 0.009046224, z: -0.045187082}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 61988304}
+ m_Father: {fileID: 771476004}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1565202329
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1964407623203178, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1565202330}
+ m_Layer: 8
+ m_Name: RightToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1565202330
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4250636453772854, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1565202329}
+ m_LocalRotation: {x: 7.935858e-15, y: 0.40024456, z: -3.4660135e-15, w: 0.91640836}
+ m_LocalPosition: {x: 0.19535121, y: 1.7763568e-17, z: 0.0000000017076126}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1144604460}
+ m_Father: {fileID: 2110334853}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1572710214
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1747183732618806, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1572710215}
+ m_Layer: 8
+ m_Name: LeftThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1572710215
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4892643463744114, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1572710214}
+ m_LocalRotation: {x: 0.03277069, y: 0.47217694, z: 0.046573732, w: 0.8796624}
+ m_LocalPosition: {x: -0.035817478, y: -0.052623805, z: 0.07139191}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1496031208}
+ m_Father: {fileID: 314536067}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1574775050
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1061214876379268, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1574775051}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1574775051
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4021462755151522, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1574775050}
+ 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: 1273465508}
+ m_Father: {fileID: 1560071745}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1577202238
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1156210232789914, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1577202239}
+ m_Layer: 8
+ m_Name: RightIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1577202239
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4919948855059646, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1577202238}
+ m_LocalRotation: {x: 0.00013964916, y: 0.00022017473, z: 0.84646815, w: 0.5324393}
+ m_LocalPosition: {x: 0.07746419, y: 0.10413205, z: 0.05753865}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 282948456}
+ m_Father: {fileID: 199118508}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1577294771
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1018169808871176, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1577294772}
+ - component: {fileID: 1577294773}
+ m_Layer: 0
+ m_Name: Point light (17)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1577294772
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4789160183528882, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1577294771}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -14.356, y: 1.787, z: 2.523}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 19
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1577294773
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108609855124959448, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1577294771}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.87487316, g: 0.9852941, b: 0.3694853, a: 1}
+ m_Intensity: 2.33
+ m_Range: 2.2014189
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1578410642
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1852020201974042, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1578410643}
+ m_Layer: 8
+ m_Name: LeftArm2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1578410643
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4469331406706980, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1578410642}
+ m_LocalRotation: {x: -2.2088105e-29, y: -1.323489e-23, z: 1.1911401e-22, w: 1}
+ m_LocalPosition: {x: -0.3169463, y: 4.2632563e-16, z: -0.00000025989718}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 873229319}
+ m_Father: {fileID: 134899644}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1579145816
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1684761496410176, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1579145817}
+ - component: {fileID: 1579145820}
+ - component: {fileID: 1579145819}
+ - component: {fileID: 1579145818}
+ m_Layer: 0
+ m_Name: Chairs01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1579145817
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4138932589163944, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1579145816}
+ m_LocalRotation: {x: 0, y: 0, z: -0.20652848, w: 0.9784406}
+ m_LocalPosition: {x: 8.757342, y: -7.4552865, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1579145818
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64217331306660980, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1579145816}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300020, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1579145819
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23778702818267158, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1579145816}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3f196f5aa004d894c81b14bfba41ac27, 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_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
+--- !u!33 &1579145820
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33335761616433390, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1579145816}
+ m_Mesh: {fileID: 4300020, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1579899205
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1257700525306520, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1579899206}
+ m_Layer: 8
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1579899206
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4064341559999594, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1579899205}
+ m_LocalRotation: {x: 0.0071269665, y: 0.010199278, z: -0.14634372, w: 0.9891556}
+ m_LocalPosition: {x: -0.16612151, y: 1.1368684e-15, z: -2.2737367e-15}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 612492770}
+ m_Father: {fileID: 1051553604}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1583963820
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1235892137120324, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1583963821}
+ m_Layer: 8
+ m_Name: LeftThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1583963821
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4083727014992254, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1583963820}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.10751866, y: 0.0026852882, z: -1.12953015e-10}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 778145262}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1584391188
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1026264996428954, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1584391189}
+ m_Layer: 8
+ m_Name: LeftThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1584391189
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4816176514625944, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1584391188}
+ m_LocalRotation: {x: 5.9510297e-10, y: 0.533262, z: -5.0991256e-10, w: 0.8459502}
+ m_LocalPosition: {x: -0.017448522, y: -0.040760484, z: 0.07195317}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 778145262}
+ m_Father: {fileID: 253531424}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1587230078
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1290743553394494, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1587230079}
+ - component: {fileID: 1587230082}
+ - component: {fileID: 1587230081}
+ - component: {fileID: 1587230080}
+ m_Layer: 8
+ m_Name: CameraCam
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1587230079
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4798552895261150, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1587230078}
+ m_LocalRotation: {x: 0, y: 0.25881907, z: -0, w: 0.9659259}
+ m_LocalPosition: {x: -0.45195812, y: -0.26269963, z: 0.00000029801032}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2130499072}
+ m_Father: {fileID: 1428894375}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1587230080
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64593193704064376, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1587230078}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300002, guid: ef8cdb4b09398294dbbad74fcc5add20, type: 3}
+--- !u!23 &1587230081
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23208899687395186, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1587230078}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3f386ec83100d844b94a7a5b79ffb81d, 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_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
+--- !u!33 &1587230082
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33837443786720880, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1587230078}
+ m_Mesh: {fileID: 4300002, guid: ef8cdb4b09398294dbbad74fcc5add20, type: 3}
+--- !u!1 &1592712827
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1119990798428412, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1592712828}
+ m_Layer: 8
+ m_Name: RightToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1592712828
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4682701018518944, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1592712827}
+ m_LocalRotation: {x: 0.00000026761208, y: 0.15440385, z: 0.00000004285935, w: 0.98800784}
+ m_LocalPosition: {x: 0.16111799, y: 0.00000071517866, z: 0.0000002791878}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 700444193}
+ m_Father: {fileID: 293960128}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1601437374
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0.9
+ gameObject: {fileID: 0}
+ activeState: 1
+--- !u!1 &1607704770
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1185189236384218, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1607704771}
+ m_Layer: 8
+ m_Name: Controls
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1607704771
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4097223749600198, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1607704770}
+ 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: 2023495237}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1612421081
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000011711448014, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!1 &1612679602
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1297979430058162, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1612679603}
+ m_Layer: 8
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1612679603
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4869506853266350, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1612679602}
+ 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: 1763312687}
+ m_Father: {fileID: 558402488}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1613677337
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1540795213468758, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1613677338}
+ - component: {fileID: 1613677340}
+ - component: {fileID: 1613677339}
+ m_Layer: 0
+ m_Name: GlassesInteractable
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!4 &1613677338
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4838293946054428, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1613677337}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -12.771217, y: 0.022936344, z: 6.2881746}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1453857083}
+ - {fileID: 1673307724}
+ m_Father: {fileID: 42777668}
+ m_RootOrder: 6
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1613677339
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114583936323318520, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1613677337}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ interactionLocation: {fileID: 1453857083}
+ conditionCollections:
+ - {fileID: 1813401409}
+ defaultReactionCollection: {fileID: 1673307725}
+--- !u!114 &1613677340
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114791387964812778, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1613677337}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -1862395651, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Delegates:
+ - eventID: 4
+ callback:
+ m_PersistentCalls:
+ m_Calls:
+ - m_Target: {fileID: 0}
+ m_MethodName: OnInteractableClick
+ m_Mode: 2
+ m_Arguments:
+ m_ObjectArgument: {fileID: 1613677339}
+ m_ObjectArgumentAssemblyTypeName: Interactable, Assembly-CSharp
+ m_IntArgument: 0
+ m_FloatArgument: 0
+ m_StringArgument:
+ m_BoolArgument: 0
+ m_CallState: 2
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ delegates: []
+--- !u!1 &1615367200
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1973617037217612, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1615367201}
+ m_Layer: 8
+ m_Name: LeftThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1615367201
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4852491622729094, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1615367200}
+ m_LocalRotation: {x: -0.00013792136, y: 0.00022409995, z: -0.8464759, w: 0.5324271}
+ m_LocalPosition: {x: -0.13930467, y: 3.1974422e-16, z: -9.812328e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1627140799}
+ m_Father: {fileID: 1752464061}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1616201295
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1128460518964188, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1616201296}
+ m_Layer: 8
+ m_Name: RightThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1616201296
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4416019636411682, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1616201295}
+ m_LocalRotation: {x: -1.1194366e-16, y: -1.6650571e-16, z: 8.5689506e-17, w: 1}
+ m_LocalPosition: {x: -0.07143, y: 0.00000008643087, z: 0.00000013979927}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1403116042}
+ m_Father: {fileID: 223642527}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1619978996
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1076703451961780, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1619978997}
+ m_Layer: 8
+ m_Name: RightRing3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1619978997
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4172973246004570, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1619978996}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.030431, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 581827944}
+ m_Father: {fileID: 1278281916}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1621615195
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1571983694962770, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1621615196}
+ m_Layer: 8
+ m_Name: LeftToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1621615196
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4281266786694706, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1621615195}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.10752547, y: 0, z: -9.992007e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1317446744}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1624172646
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1044704895171422, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1624172647}
+ m_Layer: 8
+ m_Name: RightIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1624172647
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4496623083104060, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1624172646}
+ m_LocalRotation: {x: -2.2160072e-16, y: -0.06320087, z: -1.4033412e-17, w: 0.99800086}
+ m_LocalPosition: {x: 0.17087714, y: -0.021119999, z: -0.05163783}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1821027180}
+ m_Father: {fileID: 148276350}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1624973126
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1701505258516650, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1624973127}
+ m_Layer: 8
+ m_Name: RightPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1624973127
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4779533012375024, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1624973126}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.08243377, y: -0.011204926, z: 0.0547357}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1263706725}
+ m_Father: {fileID: 157747207}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1627140798
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1376485963642938, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1627140799}
+ m_Layer: 8
+ m_Name: LeftThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1627140799
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4708237826177276, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1627140798}
+ m_LocalRotation: {x: -2.359017e-16, y: 2.828658e-16, z: 1.3159237e-11, w: 1}
+ m_LocalPosition: {x: -0.07143735, y: 0.00000036581778, z: -0.0000003984777}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1297885523}
+ m_Father: {fileID: 1615367201}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1627481134
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 37928671becf1a4429a8088d8bec2f34, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 5
+ behaviour: {fileID: 1876984103}
+ enabledState: 0
+--- !u!1 &1630850574
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1206797460169038, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1630850575}
+ - component: {fileID: 1630850578}
+ - component: {fileID: 1630850577}
+ - component: {fileID: 1630850576}
+ m_Layer: 0
+ m_Name: Door03
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1630850575
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4624005543269166, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1630850574}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 12.028806, y: -0.9373883, z: 1.5155728}
+ m_LocalScale: {x: 1, y: 0.9447926, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 9
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1630850576
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64776819740534724, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1630850574}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300052, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1630850577
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23902772280477080, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1630850574}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 21f4fccb919166745b81be58b6c766a0, 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_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
+--- !u!33 &1630850578
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33841181932573496, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1630850574}
+ m_Mesh: {fileID: 4300052, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1631125085
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1022196971978110, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1631125086}
+ m_Layer: 8
+ m_Name: LeftRing3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1631125086
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4775921739995600, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1631125085}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.037466202, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 971238211}
+ m_Father: {fileID: 1344947824}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1638732851
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1147947365825846, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1638732852}
+ m_Layer: 8
+ m_Name: LeftFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1638732852
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4881717456382802, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1638732851}
+ m_LocalRotation: {x: -1.5067309e-10, y: 0.39835063, z: -0.000000018338707, w: 0.9172332}
+ m_LocalPosition: {x: -0.3000859, y: -3.1619151e-15, z: -0.000000114154}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 745938063}
+ m_Father: {fileID: 1391232158}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1641842503
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1605706328567446, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1641842504}
+ m_Layer: 8
+ m_Name: LeftArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1641842504
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4851081456224870, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1641842503}
+ m_LocalRotation: {x: -1.0359293e-16, y: 0.12357392, z: 1.5913718e-16, w: 0.9923354}
+ m_LocalPosition: {x: -0.2338415, y: 1.4210854e-15, z: 3.719247e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1687584951}
+ m_Father: {fileID: 481801238}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1656089792
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 0}
+ trigger: HighTake
+--- !u!1 &1656856921
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1584947812111128, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1656856922}
+ m_Layer: 8
+ m_Name: RightRing1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1656856922
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4031952723926254, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1656856921}
+ m_LocalRotation: {x: -2.2160072e-16, y: -0.06320087, z: -1.4033412e-17, w: 0.99800086}
+ m_LocalPosition: {x: 0.15791385, y: -0.021119999, z: 0.043232046}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 695803109}
+ m_Father: {fileID: 148276350}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1658101759
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1754983162399370, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1658101760}
+ - component: {fileID: 1658101762}
+ - component: {fileID: 1658101761}
+ m_Layer: 0
+ m_Name: MarketCoffeeSign
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1658101760
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4729863562591852, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1658101759}
+ m_LocalRotation: {x: 0, y: -0.3710287, z: 0, w: 0.9286214}
+ m_LocalPosition: {x: 8.783, y: 2.81, z: -1.207}
+ m_LocalScale: {x: 0.4308253, y: 0.43082523, z: 0.43082523}
+ m_Children: []
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 7
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!95 &1658101761
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 95920920332549104, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1658101759}
+ m_Enabled: 1
+ m_Avatar: {fileID: 0}
+ m_Controller: {fileID: 9100000, guid: 95cb2527fc9701e45a7576eb6da8c962, type: 2}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!212 &1658101762
+SpriteRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 212908798955709402, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1658101759}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
+ 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_SelectedEditorRenderState: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingLayer: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_FlipX: 1
+ m_FlipY: 0
+ m_DrawMode: 0
+ m_Size: {x: 1, y: 1}
+ m_AdaptiveModeThreshold: 0.5
+ m_SpriteTileMode: 0
+ m_WasSpriteAssigned: 1
+ m_MaskInteraction: 0
+--- !u!114 &1659892942
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b804958e1981f9544989d65e32719692, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ item: {fileID: 11400000, guid: f75f3ff4d2e91964bb8f1b9d1ba6c1f2, type: 2}
+--- !u!1 &1665117754
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1784594243042324, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1665117755}
+ m_Layer: 8
+ m_Name: RightThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1665117755
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4090932437343058, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1665117754}
+ m_LocalRotation: {x: -1.7061494e-12, y: -0.038481858, z: 1.6574514e-12, w: 0.9992593}
+ m_LocalPosition: {x: 0.0702166, y: 0.000003825769, z: 0.0000014552056}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 586176004}
+ m_Father: {fileID: 804224459}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1671237616
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1226251224471954, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1671237617}
+ - component: {fileID: 1671237618}
+ m_Layer: 0
+ m_Name: Point light (15)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1671237617
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4731645991943416, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1671237616}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 2.452, y: 2.257, z: 4.251}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 17
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1671237618
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108832216801015598, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1671237616}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.2529411, g: 1, b: 0.066176474, a: 1}
+ m_Intensity: 0.7
+ m_Range: 2.8378081
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1673307723
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1382291697036106, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1673307724}
+ - component: {fileID: 1673307725}
+ m_Layer: 0
+ m_Name: DefaultReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1673307724
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4970586487812320, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1673307723}
+ 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: 1613677338}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1673307725
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114140827237526968, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1673307723}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 1037460390}
+ - {fileID: 30378265}
+ - {fileID: 1329830446}
+ - {fileID: 2067285672}
+ - {fileID: 1612421081}
+ - {fileID: 2101764231}
+ - {fileID: 1475114109}
+ - {fileID: 254849842}
+ - {fileID: 324065090}
+ - {fileID: 281339374}
+ - {fileID: 1601437374}
+ - {fileID: 1679247436}
+ - {fileID: 1351843567}
+--- !u!1 &1677222908
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1066603302446992, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1677222909}
+ m_Layer: 8
+ m_Name: LeftUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1677222909
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4822681082579990, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1677222908}
+ m_LocalRotation: {x: -4.992661e-33, y: -1.2207467e-16, z: 1, w: 6.123234e-17}
+ m_LocalPosition: {x: 0.015565196, y: -0.10787053, z: -0.000027749922}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1747715009}
+ m_Father: {fileID: 749508486}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1679247436
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 4
+ gameObject: {fileID: 0}
+ activeState: 0
+--- !u!1 &1687584950
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1819733586821104, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1687584951}
+ m_Layer: 8
+ m_Name: LeftUpperArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1687584951
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4129531450026104, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1687584950}
+ m_LocalRotation: {x: -2.8149735e-22, y: 0.0000016577737, z: 1.6980446e-16, w: 1}
+ m_LocalPosition: {x: -0.45892859, y: -2.842171e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 314536067}
+ m_Father: {fileID: 1641842504}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1693766324
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1190519626165790, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1693766325}
+ m_Layer: 8
+ m_Name: RightThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1693766325
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4794769652577456, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1693766324}
+ m_LocalRotation: {x: 0.000000014776604, y: 0.06591253, z: -9.760859e-10, w: 0.99782544}
+ m_LocalPosition: {x: 0.03936071, y: -2.8421708e-15, z: -0.00000015261405}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 580487808}
+ m_Father: {fileID: 1530848676}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1700138997
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b804958e1981f9544989d65e32719692, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ item: {fileID: 11400000, guid: d016867521888e04cb37abe439c100f7, type: 2}
+--- !u!1 &1703878050
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1296739821749070, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1703878051}
+ - component: {fileID: 1703878054}
+ - component: {fileID: 1703878053}
+ - component: {fileID: 1703878052}
+ m_Layer: 0
+ m_Name: Doorway
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1703878051
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4814495063252230, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1703878050}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 10
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1703878052
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64811727568138230, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1703878050}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300082, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1703878053
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23805267768515604, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1703878050}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 1fa0545d742cf194684d26312066441d, 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_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
+--- !u!33 &1703878054
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33682450693427276, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1703878050}
+ m_Mesh: {fileID: 4300082, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1708402013
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1241498858713980, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1708402014}
+ m_Layer: 8
+ m_Name: RightDownWing
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1708402014
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4895914054351336, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1708402013}
+ m_LocalRotation: {x: 0.60200995, y: -0.019064877, z: 0.17482093, w: 0.7788827}
+ m_LocalPosition: {x: -0.07728101, y: 0.0014633762, z: 0.0858162}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1803609746}
+ m_Father: {fileID: 1051553604}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1732159088
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 0}
+ trigger: MedTake
+--- !u!1 &1734305972
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1752622574527158, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1734305973}
+ m_Layer: 8
+ m_Name: RightUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1734305973
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4903387476358342, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1734305972}
+ m_LocalRotation: {x: -0.05540295, y: -0.16956627, z: 0.010584849, w: 0.98390335}
+ m_LocalPosition: {x: 0.06071107, y: -0.021130526, z: 0.059972297}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 997414315}
+ m_Father: {fileID: 1051553604}
+ m_RootOrder: 5
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1735739341
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: ba1f7288a86b84b2d8629e05dfd3c48c, type: 3}
+ delay: 0
+--- !u!1 &1739203291
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1020531702650918, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1739203292}
+ m_Layer: 8
+ m_Name: LeftForeArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1739203292
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4883450838024394, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1739203291}
+ m_LocalRotation: {x: 0, y: 0.09734922, z: -0, w: 0.9952503}
+ m_LocalPosition: {x: -0.2462692, y: -9.947598e-16, z: 6.661338e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 152145878}
+ m_Father: {fileID: 544337150}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1743308727
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: BirdDisturbed
+ requiredConditions:
+ - {fileID: 848497505}
+ reactionCollection: {fileID: 555312890}
+--- !u!1 &1747715008
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1847254812482998, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1747715009}
+ m_Layer: 8
+ m_Name: LeftLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1747715009
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4605672000512024, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1747715008}
+ m_LocalRotation: {x: -2.6475347e-34, y: -0.08400427, z: -8.757106e-31, w: 0.9964654}
+ m_LocalPosition: {x: -0.21977739, y: -4.8800384e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1956148251}
+ m_Father: {fileID: 1677222909}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1752464060
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1463155145015050, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1752464061}
+ m_Layer: 8
+ m_Name: LeftArmEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1752464061
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4832448070894722, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1752464060}
+ m_LocalRotation: {x: -0.37658074, y: 0.5987049, z: -0.59839296, w: -0.37638453}
+ m_LocalPosition: {x: -0.33903754, y: 7.54952e-17, z: -0.000000009057423}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 225437727}
+ - {fileID: 1033359401}
+ - {fileID: 1615367201}
+ m_Father: {fileID: 1357337280}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1755438393
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1693836021617392, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1755438394}
+ m_Layer: 8
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1755438394
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4845240693549916, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1755438393}
+ 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: 1051553604}
+ m_Father: {fileID: 1876984112}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1761292049
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1683887076149148, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1761292050}
+ m_Layer: 8
+ m_Name: HousingLeftDoor1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1761292050
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4301307591189464, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1761292049}
+ m_LocalRotation: {x: 0.9956375, y: 4.716463e-18, z: -0.09330613, w: 6.087179e-17}
+ m_LocalPosition: {x: -1.250624, y: 8.050634e-16, z: -0.09848316}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 54772398}
+ m_Father: {fileID: 418665943}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1762633158
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1437171179324444, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1762633159}
+ m_Layer: 8
+ m_Name: LeftToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1762633159
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4137140530768340, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1762633158}
+ m_LocalRotation: {x: 0.00000027092892, y: 0.15440385, z: 0.000000042341, w: 0.98800784}
+ m_LocalPosition: {x: -0.16111799, y: -1.7763568e-17, z: -1.1812772e-15}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1400731288}
+ m_Father: {fileID: 1187981552}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1763312686
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1631771041287700, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1763312687}
+ m_Layer: 8
+ m_Name: Hips
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1763312687
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4138942255653942, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1763312686}
+ m_LocalRotation: {x: 0, y: 0, z: -0.7071068, w: 0.7071068}
+ m_LocalPosition: {x: -0.0029089814, y: 0.7938082, z: -0.024217507}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1964303471}
+ - {fileID: 499500790}
+ - {fileID: 1284792091}
+ m_Father: {fileID: 1612679603}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1764226627
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1603717257265910, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1764226628}
+ m_Layer: 8
+ m_Name: Lid
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1764226628
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4568147726178252, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1764226627}
+ m_LocalRotation: {x: -0.63528526, y: 0, z: -0, w: 0.7722776}
+ m_LocalPosition: {x: 7.4337745e-16, y: -1.7472501, z: -0.128325}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 308070057}
+ m_Father: {fileID: 418665943}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1770216813
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: I don't want another fish.
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!1 &1771686977
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1939083596408138, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1771686978}
+ - component: {fileID: 1771686981}
+ - component: {fileID: 1771686980}
+ - component: {fileID: 1771686979}
+ m_Layer: 8
+ m_Name: ShadeCloth01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1771686978
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4901320571159738, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1771686977}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -11.046476, y: -3.0352392, z: 2.4605374}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 30
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1771686979
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64414118778364178, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1771686977}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300084, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1771686980
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23495509254715508, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1771686977}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3ea3a2c6801aae54396d0e9359371fc8, 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_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
+--- !u!33 &1771686981
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33908940764225098, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1771686977}
+ m_Mesh: {fileID: 4300084, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1783301915
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1311746606397728, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1783301916}
+ m_Layer: 8
+ m_Name: LeftIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1783301916
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4980724835881472, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1783301915}
+ m_LocalRotation: {x: 0, y: 0.0006686676, z: -0, w: 0.99999976}
+ m_LocalPosition: {x: -0.11749812, y: -7.105427e-17, z: -5.2580163e-15}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 186860949}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1787253487
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1240723158469898, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1787253488}
+ m_Layer: 8
+ m_Name: Mouth
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1787253488
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4471662412444702, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1787253487}
+ m_LocalRotation: {x: -3.469447e-18, y: -1.7347235e-18, z: -2.7105054e-20, w: 1}
+ m_LocalPosition: {x: -0.032058302, y: 0.0013393179, z: 0.12063241}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1084467281}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1792070814
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1794737643909788, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1792070815}
+ - component: {fileID: 1792070818}
+ - component: {fileID: 1792070817}
+ - component: {fileID: 1792070816}
+ m_Layer: 0
+ m_Name: Fruit01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1792070815
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4366747095908334, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1792070814}
+ m_LocalRotation: {x: -0.027169066, y: 0.022848886, z: -0.4842862, w: 0.8741892}
+ m_LocalPosition: {x: 9.252044, y: -8.599447, z: 0.9461646}
+ m_LocalScale: {x: 0.1574107, y: 0.15741064, z: 0.15741073}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 20
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1792070816
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64192852308122462, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1792070814}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300054, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1792070817
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23981741453348480, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1792070814}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 18c2bd17f423d0749b72b7b321239244, 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_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
+--- !u!33 &1792070818
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33215662324064270, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1792070814}
+ m_Mesh: {fileID: 4300054, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1794827514
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1726560410578990, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1794827515}
+ m_Layer: 8
+ m_Name: HousingLeftDoorEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1794827515
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4089608551408888, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1794827514}
+ m_LocalRotation: {x: 0, y: 0.018140081, z: -0, w: 0.9998355}
+ m_LocalPosition: {x: 1.0376014, y: 2.842171e-16, z: 0.14888427}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 54772398}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1794954906
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1279619136983068, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1794954907}
+ m_Layer: 8
+ m_Name: RightMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1794954907
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4270128125843678, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1794954906}
+ m_LocalRotation: {x: -2.2160072e-16, y: -0.06320087, z: -1.4033412e-17, w: 0.99800086}
+ m_LocalPosition: {x: 0.16486995, y: -0.021119999, z: -0.0020441434}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 151382182}
+ m_Father: {fileID: 148276350}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1799114850
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1956319390502060, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1799114851}
+ - component: {fileID: 1799114853}
+ - component: {fileID: 1799114852}
+ m_Layer: 0
+ m_Name: CoffeeBotInteractable
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1799114851
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4236602843264776, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1799114850}
+ m_LocalRotation: {x: -0, y: 0.92387956, z: -0, w: 0.38268343}
+ m_LocalPosition: {x: -11.571217, y: 0.022936344, z: -0.111825705}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 281262914}
+ - {fileID: 1293407591}
+ - {fileID: 401569958}
+ m_Father: {fileID: 42777668}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 135, z: 0}
+--- !u!114 &1799114852
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114392007301097066, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1799114850}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ interactionLocation: {fileID: 281262914}
+ conditionCollections:
+ - {fileID: 1014166486}
+ defaultReactionCollection: {fileID: 1293407592}
+--- !u!114 &1799114853
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114861307443088072, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1799114850}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -1862395651, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Delegates:
+ - eventID: 4
+ callback:
+ m_PersistentCalls:
+ m_Calls:
+ - m_Target: {fileID: 0}
+ m_MethodName: OnInteractableClick
+ m_Mode: 2
+ m_Arguments:
+ m_ObjectArgument: {fileID: 1799114852}
+ m_ObjectArgumentAssemblyTypeName: Interactable, Assembly-CSharp
+ m_IntArgument: 0
+ m_FloatArgument: 0
+ m_StringArgument:
+ m_BoolArgument: 0
+ m_CallState: 2
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ delegates: []
+--- !u!1 &1802361270
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1614022314055276, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1802361271}
+ m_Layer: 8
+ m_Name: LeftBackToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1802361271
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4558388696822004, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1802361270}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.05675817, y: -2.4122632e-18, z: 6.2440825e-19}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1513360459}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1803609745
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1360009554809710, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1803609746}
+ m_Layer: 8
+ m_Name: RightDownWingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1803609746
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4850370308481270, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1803609745}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.2261158, y: 3.5527136e-17, z: 2.2204459e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1708402014}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1806538949
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1674270208625632, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1806538950}
+ m_Layer: 8
+ m_Name: RightMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1806538950
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4823380244222872, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1806538949}
+ m_LocalRotation: {x: -4.4408654e-16, y: -2.0917636e-11, z: -2.3907527e-14, w: 1}
+ m_LocalPosition: {x: 0.18090999, y: -0.01761, z: -0.006907998}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2053061871}
+ m_Father: {fileID: 206522660}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1813401409
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: PickedUpGlasses
+ requiredConditions:
+ - {fileID: 1209751514}
+ reactionCollection: {fileID: 0}
+--- !u!1 &1819312146
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1343412333763458, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1819312147}
+ m_Layer: 8
+ m_Name: RightIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1819312147
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4816902697586616, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1819312146}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.053523, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1256989268}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1821027179
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1723942887134796, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1821027180}
+ m_Layer: 8
+ m_Name: RightIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1821027180
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4722657939115150, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1821027179}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.027950998, y: -1.4210854e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1256989268}
+ m_Father: {fileID: 1624172647}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1824548081
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1831529726634048, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1824548082}
+ m_Layer: 8
+ m_Name: RightToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1824548082
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4848326279394608, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1824548081}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.0642059, y: 4.2283733e-12, z: 0.0000000011656923}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1352768059}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1825383313
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1026072127464242, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1825383314}
+ - component: {fileID: 1825383316}
+ - component: {fileID: 1825383315}
+ m_Layer: 0
+ m_Name: FishVendorInteractable
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1825383314
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4207164922551844, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1825383313}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -16.671217, y: 0.022936344, z: -1.5118258}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2059047990}
+ - {fileID: 1162583842}
+ - {fileID: 1344299867}
+ m_Father: {fileID: 42777668}
+ m_RootOrder: 5
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1825383315
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114731232436131710, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1825383313}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ interactionLocation: {fileID: 2059047990}
+ conditionCollections:
+ - {fileID: 428456828}
+ defaultReactionCollection: {fileID: 1162583843}
+--- !u!114 &1825383316
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114107120485753630, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1825383313}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -1862395651, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Delegates:
+ - eventID: 4
+ callback:
+ m_PersistentCalls:
+ m_Calls:
+ - m_Target: {fileID: 0}
+ m_MethodName: OnInteractableClick
+ m_Mode: 2
+ m_Arguments:
+ m_ObjectArgument: {fileID: 1825383315}
+ m_ObjectArgumentAssemblyTypeName: Interactable, Assembly-CSharp
+ m_IntArgument: 0
+ m_FloatArgument: 0
+ m_StringArgument:
+ m_BoolArgument: 0
+ m_CallState: 2
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ delegates: []
+--- !u!1 &1829180669
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1296102760171308, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1829180670}
+ - component: {fileID: 1829180673}
+ - component: {fileID: 1829180672}
+ - component: {fileID: 1829180671}
+ m_Layer: 0
+ m_Name: SmallTables
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1829180670
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4703516365853978, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1829180669}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 9.26923, y: -2.644345, z: 0.9590292}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 34
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1829180671
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64017532277315794, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1829180669}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300012, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1829180672
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23868055313927678, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1829180669}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 7d219517a6224674483d884585bad268, 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_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
+--- !u!33 &1829180673
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33651231668910686, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1829180669}
+ m_Mesh: {fileID: 4300012, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1830143974
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1909494361020638, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1830143975}
+ - component: {fileID: 1830143978}
+ - component: {fileID: 1830143977}
+ - component: {fileID: 1830143976}
+ m_Layer: 0
+ m_Name: Bollards
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1830143975
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4049858774325198, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1830143974}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0, y: -0.3979898, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1830143976
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64383718793193740, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1830143974}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300004, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1830143977
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23252088069805022, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1830143974}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: ca130c123aa674f48bd5de8d3f8784b7, 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_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
+--- !u!33 &1830143978
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33978818014868906, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1830143974}
+ m_Mesh: {fileID: 4300004, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1831822797
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1124670994083136, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1831822798}
+ - component: {fileID: 1831822799}
+ m_Layer: 0
+ m_Name: Point light (28)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1831822798
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4267553213902004, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1831822797}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 10.296, y: 3.502, z: 0.039}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 30
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1831822799
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108002100220098350, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1831822797}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 1, g: 0.5661765, b: 0.9162272, a: 1}
+ m_Intensity: 3.44
+ m_Range: 1.2184944
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1835033665
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1674748853945782, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1835033666}
+ m_Layer: 8
+ m_Name: RightMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1835033666
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4632063448305588, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1835033665}
+ m_LocalRotation: {x: -1.1199782e-16, y: -1.6651927e-16, z: 8.568845e-17, w: 1}
+ m_LocalPosition: {x: -0.07123, y: 0.00000008618887, z: 0.00000013940785}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 659368410}
+ m_Father: {fileID: 1140933121}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1835530277
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: ae424b24e594048429a4a2bed2eeb897, type: 3}
+ delay: 0
+--- !u!1 &1838772037
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1353125173765238, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1838772038}
+ m_Layer: 8
+ m_Name: RightPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1838772038
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4700917829678894, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1838772037}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.04657, y: 2.842171e-16, z: 3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1942573747}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1842901177
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1159603612751236, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1842901178}
+ m_Layer: 8
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1842901178
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4288800736428108, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1842901177}
+ 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: 1383051852}
+ m_Father: {fileID: 1560071745}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1864634369
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1538376881275164, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1864634370}
+ m_Layer: 8
+ m_Name: Spine2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1864634370
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4175708175713312, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1864634369}
+ m_LocalRotation: {x: 0, y: -0.12094192, z: -0, w: 0.9926596}
+ m_LocalPosition: {x: -0.15819345, y: 3.524958e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 486374256}
+ - {fileID: 1154993082}
+ - {fileID: 2041560055}
+ m_Father: {fileID: 419741102}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1872677270
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1468538176860464, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1872677271}
+ m_Layer: 8
+ m_Name: RightFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1872677271
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4306361472856844, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1872677270}
+ m_LocalRotation: {x: 0, y: 0.42682478, z: -0, w: 0.90433437}
+ m_LocalPosition: {x: 0.19857056, y: 5.3290704e-17, z: 0.00000037203264}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 505338685}
+ m_Father: {fileID: 1383985941}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!95 &1876984103
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 95876656473432110, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 314811309}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: 27dc1f41f9a3fad46a08a615f1730ad1, type: 3}
+ m_Controller: {fileID: 9100000, guid: 3241a35829c375043aa03ab9f22801af, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!1 &1876984106
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1511264201123612, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1876984108}
+ - component: {fileID: 1876984111}
+ - component: {fileID: 1876984110}
+ - component: {fileID: 1876984109}
+ m_Layer: 8
+ m_Name: Glasses
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1876984107
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1140399209446038, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1876984112}
+ m_Layer: 8
+ m_Name: Bird
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1876984108
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4698742912208306, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1876984106}
+ m_LocalRotation: {x: -0.5853913, y: 0, z: -0, w: 0.8107509}
+ m_LocalPosition: {x: 9.525571, y: 3.1558473, z: 6.462998}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 314811310}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1876984109
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64659893455692124, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1876984106}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300006, guid: 27dc1f41f9a3fad46a08a615f1730ad1, type: 3}
+--- !u!23 &1876984110
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23577821889831280, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1876984106}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 5a68483ba9764354ead16db19e43947b, 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_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
+--- !u!33 &1876984111
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33144059473755454, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1876984106}
+ m_Mesh: {fileID: 4300006, guid: 27dc1f41f9a3fad46a08a615f1730ad1, type: 3}
+--- !u!4 &1876984112
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4437604771331046, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1876984107}
+ 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: 1195445106}
+ - {fileID: 1755438394}
+ m_Father: {fileID: 314811310}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1881880787
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 0}
+ trigger: HighTake
+--- !u!1 &1884208695
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1757122451269726, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1884208696}
+ m_Layer: 8
+ m_Name: RightUpWingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1884208696
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4774250382007432, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1884208695}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.2414071, y: -3.5527136e-17, z: -6.661338e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 223450627}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1886184010
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1924855887283948, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1886184011}
+ - component: {fileID: 1886184014}
+ - component: {fileID: 1886184013}
+ - component: {fileID: 1886184012}
+ m_Layer: 0
+ m_Name: WallMetal
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1886184011
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4281903874986608, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1886184010}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 41
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1886184012
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64322296654476242, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1886184010}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300098, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1886184013
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23779191085073602, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1886184010}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: e59530a749010fc4fb744508277ac143, 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_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
+--- !u!33 &1886184014
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33105792752928190, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1886184010}
+ m_Mesh: {fileID: 4300098, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1888959230
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1170240298406378, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1888959231}
+ - component: {fileID: 1888959233}
+ - component: {fileID: 1888959232}
+ m_Layer: 0
+ m_Name: CoinInteractable
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1888959231
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4943290664960074, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1888959230}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -19.741217, y: 0.022936344, z: -0.78182566}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2040646377}
+ - {fileID: 1958047373}
+ - {fileID: 133834737}
+ m_Father: {fileID: 42777668}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1888959232
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114424982444795502, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1888959230}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ interactionLocation: {fileID: 2040646377}
+ conditionCollections:
+ - {fileID: 588962459}
+ defaultReactionCollection: {fileID: 1958047374}
+--- !u!114 &1888959233
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114239589448474372, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1888959230}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -1862395651, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Delegates:
+ - eventID: 4
+ callback:
+ m_PersistentCalls:
+ m_Calls:
+ - m_Target: {fileID: 0}
+ m_MethodName: OnInteractableClick
+ m_Mode: 2
+ m_Arguments:
+ m_ObjectArgument: {fileID: 1888959232}
+ m_ObjectArgumentAssemblyTypeName: Interactable, Assembly-CSharp
+ m_IntArgument: 0
+ m_FloatArgument: 0
+ m_StringArgument:
+ m_BoolArgument: 0
+ m_CallState: 2
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ delegates: []
+--- !u!1 &1892666437
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1835536161346754, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1892666438}
+ m_Layer: 8
+ m_Name: LeftToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1892666438
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4818075846834754, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1892666437}
+ m_LocalRotation: {x: -0.01729235, y: 0.0047375937, z: -0.47601777, w: 0.87925285}
+ m_LocalPosition: {x: -0.06380386, y: 0.0034937891, z: 0.002278118}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 880146780}
+ m_Father: {fileID: 1091602807}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1894324990
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1540758280261878, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1894324991}
+ m_Layer: 8
+ m_Name: Spine2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1894324991
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4384565131369728, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1894324990}
+ m_LocalRotation: {x: 0, y: -0.13138154, z: -0, w: 0.9913319}
+ m_LocalPosition: {x: -0.27108666, y: 5.963822e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 456573163}
+ - {fileID: 208262783}
+ - {fileID: 1180265703}
+ m_Father: {fileID: 614588468}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1896934118
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1607633233369710, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1896934119}
+ m_Layer: 8
+ m_Name: RightIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1896934119
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4947864364814716, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1896934118}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.05374, y: 2.842171e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2116678881}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1900119160
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1573945745217908, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1900119161}
+ - component: {fileID: 227346009}
+ - component: {fileID: 1900119162}
+ m_Layer: 8
+ m_Name: CoffeeBot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &1900119161
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4223595455076014, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1900119160}
+ m_LocalRotation: {x: 0, y: -0.37177086, z: 0, w: 0.9283245}
+ m_LocalPosition: {x: 8.77, y: 0.032000065, z: -1.1799998}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 870428665}
+ - {fileID: 864930305}
+ - {fileID: 622116615}
+ - {fileID: 733607407}
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!208 &1900119162
+NavMeshObstacle:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 208690455122093100, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1900119160}
+ m_Enabled: 1
+ serializedVersion: 3
+ m_Shape: 1
+ m_Extents: {x: 2.42, y: 1.5, z: 1.155}
+ m_MoveThreshold: 0.1
+ m_Carve: 1
+ m_CarveOnlyStationary: 1
+ m_Center: {x: 0, y: 1.5, z: 0}
+ m_TimeToStationary: 0.5
+--- !u!1 &1901727315
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1813416686699230, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1901727316}
+ - component: {fileID: 1901727317}
+ m_Layer: 0
+ m_Name: Point light (7)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1901727316
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4925098357688136, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1901727315}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 4.389, y: 3.118, z: -3.219}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 8
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1901727317
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108571573942609292, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1901727315}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.5294118, g: 0.68843824, b: 1, a: 1}
+ m_Intensity: 2.33
+ m_Range: 1.8845925
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1920019360
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1072576705676958, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1920019361}
+ m_Layer: 8
+ m_Name: LeftPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1920019361
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4354425521517626, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1920019360}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.026309716, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 369522829}
+ m_Father: {fileID: 61988304}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1921987856
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1488352471245550, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1921987857}
+ m_Layer: 8
+ m_Name: Controls
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1921987857
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4606691051889728, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1921987856}
+ 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: 1560071745}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1924647221
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1895034228550328, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1924647222}
+ - component: {fileID: 1924647225}
+ - component: {fileID: 1924647224}
+ - component: {fileID: 1924647223}
+ m_Layer: 8
+ m_Name: Coin
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1924647222
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4781019472735096, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1924647221}
+ m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071067}
+ m_LocalPosition: {x: 0.43400002, y: 0.51100016, z: -1.673}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1924647223
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64552515130490628, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1924647221}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300004, guid: c74383c438ad9d14298fec8b36ce7ee5, type: 3}
+--- !u!23 &1924647224
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23789310504397252, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1924647221}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: f6e0cf92e2e51f3439465b23ae50a9b5, 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_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
+--- !u!33 &1924647225
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33111636801729546, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1924647221}
+ m_Mesh: {fileID: 4300004, guid: c74383c438ad9d14298fec8b36ce7ee5, type: 3}
+--- !u!1 &1927866877
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1118069561638016, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1927866878}
+ m_Layer: 8
+ m_Name: RightPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1927866878
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4189090873362620, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1927866877}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.037465997, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1359420394}
+ m_Father: {fileID: 328680825}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1931706144
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1813500038321822, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1931706145}
+ m_Layer: 8
+ m_Name: LeftEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1931706145
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4060806474355904, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1931706144}
+ m_LocalRotation: {x: -0.5503435, y: 0.48069337, z: 0.44378608, w: 0.51875794}
+ m_LocalPosition: {x: -0.15353996, y: -0.05686738, z: 0.12382855}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 335749063}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1936718037
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1575946916755254, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1936718038}
+ - component: {fileID: 1936718039}
+ m_Layer: 0
+ m_Name: Point light (12)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1936718038
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4627315526765114, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1936718037}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 4.849, y: 1.904, z: 15.155}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 14
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1936718039
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108224935548832712, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1936718037}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 1, g: 0.9355983, b: 0.066176474, a: 1}
+ m_Intensity: 1.5
+ m_Range: 2.35995
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1942573746
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1871086764799280, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1942573747}
+ m_Layer: 8
+ m_Name: RightPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1942573747
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4934075332287206, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1942573746}
+ m_LocalRotation: {x: -4.4407852e-16, y: -2.0917636e-11, z: -9.576146e-14, w: 1}
+ m_LocalPosition: {x: 0.03762, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1838772038}
+ m_Father: {fileID: 664563757}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1943584132
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1835794821061114, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1943584133}
+ m_Layer: 8
+ m_Name: RightMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1943584133
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4596088804810204, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1943584132}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.113007, y: 0.000005913019, z: -0.000021916345}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 2042289360}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1953365209
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1527048322922720, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1953365210}
+ - component: {fileID: 1953365211}
+ m_Layer: 0
+ m_Name: Market
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1953365210
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4085182461782756, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1953365209}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -20.171217, y: 0.022936344, z: 0.8881743}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 330781951}
+ - {fileID: 314811310}
+ - {fileID: 1900119161}
+ - {fileID: 1924647222}
+ - {fileID: 1560071745}
+ - {fileID: 947251886}
+ - {fileID: 541320920}
+ - {fileID: 1658101760}
+ - {fileID: 2042390878}
+ - {fileID: 2023495237}
+ - {fileID: 1428894375}
+ - {fileID: 558402488}
+ - {fileID: 2018723045}
+ - {fileID: 217411138}
+ - {fileID: 895793451}
+ - {fileID: 1121569693}
+ - {fileID: 1443649044}
+ - {fileID: 909318996}
+ m_Father: {fileID: 42777668}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1953365211
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114684517870492118, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1953365209}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -1862395651, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Delegates:
+ - eventID: 4
+ callback:
+ m_PersistentCalls:
+ m_Calls:
+ - m_Target: {fileID: 0}
+ m_MethodName: OnGroundClick
+ m_Mode: 0
+ m_Arguments:
+ m_ObjectArgument: {fileID: 0}
+ m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
+ m_IntArgument: 0
+ m_FloatArgument: 0
+ m_StringArgument:
+ m_BoolArgument: 0
+ m_CallState: 2
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ delegates: []
+--- !u!1 &1956148250
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1945720202948100, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1956148251}
+ m_Layer: 8
+ m_Name: LeftFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1956148251
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4717783507831668, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1956148250}
+ m_LocalRotation: {x: 0, y: 0.42682478, z: -0, w: 0.90433437}
+ m_LocalPosition: {x: -0.19857061, y: 4.4408918e-17, z: -4.3469248e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1228987254}
+ m_Father: {fileID: 1747715009}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1957109704
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1700052747971164, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1957109705}
+ m_Layer: 8
+ m_Name: LeftMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1957109705
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4866357378244588, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1957109704}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.056125045, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1548979861}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1958047372
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1011493172224238, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1958047373}
+ - component: {fileID: 1958047374}
+ m_Layer: 0
+ m_Name: DefaultReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1958047373
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4544092152980754, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1958047372}
+ 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: 1888959231}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1958047374
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114712931277802916, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1958047372}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 1732159088}
+ - {fileID: 320778503}
+ - {fileID: 1192066371}
+ - {fileID: 707417586}
+ - {fileID: 52357461}
+ - {fileID: 1521942419}
+ - {fileID: 377204854}
+ - {fileID: 493698176}
+--- !u!114 &1960283415
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: d27de579b328a44a2a102d519fcdd38b, type: 3}
+ delay: 0
+--- !u!1 &1962225311
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1266582975414404, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1962225312}
+ - component: {fileID: 1962225315}
+ - component: {fileID: 1962225314}
+ - component: {fileID: 1962225313}
+ m_Layer: 0
+ m_Name: VendingMachine02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &1962225312
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4606621385328464, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1962225311}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.9814666, y: 1.8493043, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 40
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &1962225313
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64371137048543696, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1962225311}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300064, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &1962225314
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23682027534667660, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1962225311}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: e601b63d46663824d853a55aa1d71001, type: 2}
+ - {fileID: 2100000, guid: cb7d12c46517df84eb12587362b496a8, 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_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
+--- !u!33 &1962225315
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33985059776333816, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1962225311}
+ m_Mesh: {fileID: 4300064, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &1964303470
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1077335617464594, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1964303471}
+ m_Layer: 8
+ m_Name: LeftUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1964303471
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4961950204709980, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1964303470}
+ m_LocalRotation: {x: 3.3246865e-32, y: -1.2229516e-16, z: 1, w: 5.0532154e-16}
+ m_LocalPosition: {x: 0.031695243, y: -0.11881502, z: -0.010353292}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1391232158}
+ m_Father: {fileID: 1763312687}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1970471229
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 3
+ gameObject: {fileID: 1613677337}
+ activeState: 1
+--- !u!1 &1971462718
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1505810145588046, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1971462719}
+ m_Layer: 8
+ m_Name: LeftRing3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1971462719
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4682300762104068, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1971462718}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.030431189, y: -2.842171e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 438363685}
+ m_Father: {fileID: 570034537}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1973710784
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1284302459336110, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1973710785}
+ m_Layer: 8
+ m_Name: HairEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1973710785
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4404696702120554, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1973710784}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.2104267, y: -3.5527136e-17, z: -2.1450697e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 612492770}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1975764639
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1448922093031452, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1975764640}
+ - component: {fileID: 1975764641}
+ m_Layer: 0
+ m_Name: Point light (26)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1975764640
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4827195535050686, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1975764639}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 1.89, y: 6.58, z: -1.57}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 28
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1975764641
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108610783959906952, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1975764639}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 2
+ m_Range: 4.5548496
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1978002529
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1089766671087806, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1978002530}
+ m_Layer: 8
+ m_Name: Mouth
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1978002530
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4255521028968196, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1978002529}
+ m_LocalRotation: {x: -8.326673e-17, y: 0, z: -3.0531133e-16, w: 1}
+ m_LocalPosition: {x: -0.16765492, y: 0.43150955, z: -0.0029089814}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 24314631}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1986364766
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 114381505926120568, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 133834736}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 1835530277}
+ - {fileID: 1315678196}
+--- !u!1 &1987081131
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1252092488750748, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1987081132}
+ m_Layer: 8
+ m_Name: RightForearm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1987081132
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4991177518428630, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1987081131}
+ m_LocalRotation: {x: 0, y: -0.000000009427813, z: -0, w: 1}
+ m_LocalPosition: {x: 0.317964, y: 0, z: 3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 157747207}
+ m_Father: {fileID: 714184897}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1990030034
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1233122477852832, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1990030035}
+ - component: {fileID: 1990030036}
+ m_Layer: 0
+ m_Name: Point light (3)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1990030035
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4711151123125348, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1990030034}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.38, y: 2.13, z: 0.46}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &1990030036
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108869788075005520, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1990030034}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Intensity: 1
+ m_Range: 5.609479
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &1991146535
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1022533301405920, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1991146536}
+ m_Layer: 8
+ m_Name: LeftIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1991146536
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4535011718875670, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1991146535}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.045377698, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1488309599}
+ m_Father: {fileID: 475801921}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1999503990
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: PickedUpFish
+ satisfied: 1
+ hash: 1957699431
+--- !u!1 &2010086163
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1095287864000992, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2010086164}
+ m_Layer: 8
+ m_Name: RightEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2010086164
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4883817298101424, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2010086163}
+ m_LocalRotation: {x: 6.123234e-17, y: 1, z: -6.123234e-17, w: -6.123234e-17}
+ m_LocalPosition: {x: -0.16698715, y: 0.0444408, z: 0.098026074}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 229620280}
+ m_RootOrder: 5
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2015049874
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1944923296813062, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2015049875}
+ m_Layer: 8
+ m_Name: LeftMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2015049875
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4092722214885136, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2015049874}
+ m_LocalRotation: {x: 0.000000010536712, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.11561086, y: 0.009046224, z: 0.017384367}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 242696798}
+ m_Father: {fileID: 771476004}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2018723044
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1776961176133254, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2018723045}
+ - component: {fileID: 2018723046}
+ m_Layer: 8
+ m_Name: FruitVendor
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2018723045
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4735942860206604, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2018723044}
+ m_LocalRotation: {x: 0, y: 0.62114745, z: 0, w: -0.78369373}
+ m_LocalPosition: {x: 9.06, y: 0, z: 11.734}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2072441669}
+ - {fileID: 870205958}
+ - {fileID: 463670959}
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 12
+ m_LocalEulerAnglesHint: {x: 0, y: 283.19998, z: 0}
+--- !u!95 &2018723046
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 95014216556941484, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2018723044}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: d8b5188c259ea8544ae17ee5ae98d2a0, type: 3}
+ m_Controller: {fileID: 9100000, guid: 0bdfa04ac50fe4f44bfec8a0e096e7e8, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!1 &2020778182
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1074520519260288, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2020778183}
+ m_Layer: 8
+ m_Name: LeftMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2020778183
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4931416772999240, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2020778182}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.037984245, y: -2.842171e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 61192260}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2022083527
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1868198670187768, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2022083528}
+ - component: {fileID: 2022083529}
+ m_Layer: 0
+ m_Name: Point light (11)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2022083528
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4166256533163334, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2022083527}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 12.17, y: 2, z: 17.79}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 13
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &2022083529
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108524544389935332, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2022083527}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.8308824, g: 0.29936203, b: 0.81621987, a: 1}
+ m_Intensity: 1.5
+ m_Range: 2.7817535
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!1 &2023495236
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1585714235582324, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2023495237}
+ - component: {fileID: 2023495238}
+ m_Layer: 8
+ m_Name: SecondHandSalesman
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2023495237
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4849984032150146, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2023495236}
+ m_LocalRotation: {x: 0, y: 0.74314463, z: 0, w: -0.66913086}
+ m_LocalPosition: {x: 10.741, y: 0, z: 5.9300003}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1607704771}
+ - {fileID: 73654800}
+ - {fileID: 251989434}
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 9
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!95 &2023495238
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 95378388370268748, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2023495236}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: 4b14b4b275040064fb2dbb9768d883eb, type: 3}
+ m_Controller: {fileID: 9100000, guid: 7a1d5c6243235744c85ee25e5ea03aa4, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!1 &2031787513
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1664576241404094, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2031787514}
+ m_Layer: 0
+ m_Name: AudioParent
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2031787514
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4145545670473636, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2031787513}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -10.576485, y: 0.7703304, z: 6.413455}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1559834872}
+ - {fileID: 824298993}
+ - {fileID: 637814460}
+ m_Father: {fileID: 42777668}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &2040164790
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: Here's your coffee!
+ textColor: {r: 0.5686275, g: 0.78431374, b: 0.5686275, a: 1}
+ delay: 0
+--- !u!1 &2040646376
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1085123227456068, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2040646377}
+ m_Layer: 0
+ m_Name: InteractionLocation
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2040646377
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4577154184093852, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2040646376}
+ m_LocalRotation: {x: 0, y: 1, z: 0, w: 0}
+ m_LocalPosition: {x: -0.2, y: 0, z: 0.7}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1888959231}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+--- !u!1 &2041560054
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1167639875192130, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2041560055}
+ m_Layer: 8
+ m_Name: RightShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2041560055
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4874745095025296, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2041560054}
+ m_LocalRotation: {x: 0.6597594, y: 0.7015416, z: -0.25439656, w: 0.088540755}
+ m_LocalPosition: {x: -0.22098821, y: 0.039064117, z: 0.037699834}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 596487728}
+ m_Father: {fileID: 1864634370}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2042289359
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1467098062367384, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2042289360}
+ m_Layer: 8
+ m_Name: RightMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2042289360
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4748265999930236, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2042289359}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.084487, y: -0.0000032544237, z: -0.00010310722}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1943584133}
+ m_Father: {fileID: 665124895}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2042390877
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1032897671522944, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2042390878}
+ - component: {fileID: 2042390880}
+ - component: {fileID: 2042390879}
+ m_Layer: 0
+ m_Name: MarketFishSignNeon
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2042390878
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4988525717199230, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2042390877}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 4.4439993, y: 3.0679998, z: -3.281}
+ m_LocalScale: {x: 0.43583745, y: 0.43583748, z: 0.43583748}
+ m_Children: []
+ m_Father: {fileID: 1953365210}
+ m_RootOrder: 8
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!95 &2042390879
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 95610163720168924, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2042390877}
+ m_Enabled: 1
+ m_Avatar: {fileID: 0}
+ m_Controller: {fileID: 9100000, guid: 937a26c581812c44988068bba4f17c7a, type: 2}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!212 &2042390880
+SpriteRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 212462108728177736, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2042390877}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
+ 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_SelectedEditorRenderState: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingLayer: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: 1f7e69f695c34aa4eb96e9309660d3bb, type: 3}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_FlipX: 1
+ m_FlipY: 0
+ m_DrawMode: 0
+ m_Size: {x: 1, y: 1}
+ m_AdaptiveModeThreshold: 0.5
+ m_SpriteTileMode: 0
+ m_WasSpriteAssigned: 1
+ m_MaskInteraction: 0
+--- !u!1 &2044022487
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1243461055909664, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2044022488}
+ m_Layer: 8
+ m_Name: LeftMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2044022488
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4123091881199856, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2044022487}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.03954766, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1358399739}
+ m_Father: {fileID: 193178712}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2051706848
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1156623335998952, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2051706849}
+ m_Layer: 8
+ m_Name: LeftMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2051706849
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4128905901870492, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2051706848}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.05134844, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1548979861}
+ m_Father: {fileID: 1413991410}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2053061870
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1248847863228848, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2053061871}
+ m_Layer: 8
+ m_Name: RightMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2053061871
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4780326126086058, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2053061870}
+ m_LocalRotation: {x: -4.4408386e-16, y: -2.0917636e-11, z: -4.7849203e-14, w: 1}
+ m_LocalPosition: {x: 0.05134, y: -2.842171e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1048983043}
+ m_Father: {fileID: 1806538950}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2059047989
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1744422885464668, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2059047990}
+ m_Layer: 0
+ m_Name: InteractionLocation
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2059047990
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4423998249675426, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2059047989}
+ m_LocalRotation: {x: 0, y: 1, z: 0, w: 0}
+ m_LocalPosition: {x: 0, y: 0, z: 2}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1825383314}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+--- !u!1 &2061616414
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1226469161956194, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2061616415}
+ m_Layer: 8
+ m_Name: RightMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &2061616415
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4353046612411040, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2061616414}
+ m_LocalRotation: {x: -0.00000042780886, y: -0.70710605, z: -0.00000042780798, w: 0.7071075}
+ m_LocalPosition: {x: -0.07864, y: 0.000000095154775, z: 0.00000015391034}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 659368410}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2063522624
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1835449877974682, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2063522625}
+ m_Layer: 8
+ m_Name: RightIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2063522625
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4464850508423772, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2063522624}
+ m_LocalRotation: {x: -4.4408654e-16, y: -2.0917636e-11, z: -2.3907527e-14, w: 1}
+ m_LocalPosition: {x: 0.18389, y: -0.01761001, z: -0.094678}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2106724232}
+ m_Father: {fileID: 206522660}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &2067285672
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: 7578097ef1d3e4ad3825f32b32564cde, type: 3}
+ delay: 0
+--- !u!1 &2072441668
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1700737460576850, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2072441669}
+ m_Layer: 8
+ m_Name: Controls
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2072441669
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4756940724302082, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2072441668}
+ 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: 2018723045}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2076730003
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1125750171016182, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2076730004}
+ m_Layer: 8
+ m_Name: RightUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2076730004
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4796013299226794, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2076730003}
+ m_LocalRotation: {x: 0.9986568, y: 0.00022430142, z: -0.05163041, w: 0.004338482}
+ m_LocalPosition: {x: 0.023284176, y: 0.11836032, z: -0.01646414}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 760236024}
+ m_Father: {fileID: 1383051852}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2081772991
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1820408808124906, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2081772992}
+ m_Layer: 8
+ m_Name: LeftLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2081772992
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4335473097961680, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2081772991}
+ m_LocalRotation: {x: -8.3094304e-18, y: -0.00000042288312, z: 3.670245e-17, w: 1}
+ m_LocalPosition: {x: -0.2966882, y: -5.3290704e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 362302809}
+ m_Father: {fileID: 603964765}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2092021785
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1918978291907858, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2092021786}
+ m_Layer: 8
+ m_Name: Spine2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2092021786
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4511629414806528, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2092021785}
+ m_LocalRotation: {x: -6.938895e-18, y: 0.074909076, z: -3.439753e-26, w: 0.9971904}
+ m_LocalPosition: {x: -0.18512884, y: 4.110686e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 335749063}
+ - {fileID: 951619546}
+ - {fileID: 225554838}
+ m_Father: {fileID: 135702809}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2092168506
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1574653296155718, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2092168507}
+ m_Layer: 8
+ m_Name: RightPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2092168507
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4448039888568910, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2092168506}
+ m_LocalRotation: {x: -2.2160072e-16, y: -0.06320087, z: -1.4033412e-17, w: 0.99800086}
+ m_LocalPosition: {x: 0.15342924, y: -0.021119999, z: 0.08792334}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 328680825}
+ m_Father: {fileID: 148276350}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2094550718
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1301580328297182, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2094550719}
+ - component: {fileID: 2094550722}
+ - component: {fileID: 2094550721}
+ - component: {fileID: 2094550720}
+ m_Layer: 0
+ m_Name: priceTags
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &2094550719
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4178737093906828, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2094550718}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 3.3126824, y: -9.023785, z: 0.942838}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 28
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &2094550720
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64981751617754356, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2094550718}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300068, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &2094550721
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23681966819203834, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2094550718}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 8c9652377256a5d41bde897da527a3a2, 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_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
+--- !u!33 &2094550722
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33277034309260966, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2094550718}
+ m_Mesh: {fileID: 4300068, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &2096246060
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1829796940921794, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2096246061}
+ - component: {fileID: 2096246062}
+ m_Layer: 0
+ m_Name: Point light (10)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2096246061
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4030980176217554, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2096246060}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 10.315, y: 1.73, z: 9.97}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 909318996}
+ m_RootOrder: 12
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!108 &2096246062
+Light:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 108019480551378158, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2096246060}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 2
+ m_Color: {r: 0.29936203, g: 0.8308824, b: 0.30302766, a: 1}
+ m_Intensity: 1.5
+ m_Range: 2.7817535
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!114 &2101764231
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000011606995890, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!1 &2102272664
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1035239155838182, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2102272665}
+ - component: {fileID: 2102272668}
+ - component: {fileID: 2102272667}
+ - component: {fileID: 2102272666}
+ m_Layer: 0
+ m_Name: Dustbin01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!4 &2102272665
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4492042978679862, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2102272664}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -6.9104366, y: 2.2426288, z: 0.004395504}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 1443649044}
+ m_RootOrder: 11
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &2102272666
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64753744862728820, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2102272664}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 4300028, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!23 &2102272667
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23487098741319020, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2102272664}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 7cf13ff2ec6ecf6458f22b58c36f2e32, 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_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
+--- !u!33 &2102272668
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33397493058003778, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2102272664}
+ m_Mesh: {fileID: 4300028, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!1 &2106724231
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1022703963326032, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2106724232}
+ m_Layer: 8
+ m_Name: RightIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2106724232
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4098655731956716, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2106724231}
+ m_LocalRotation: {x: -4.4408386e-16, y: -2.0917636e-11, z: -4.7849203e-14, w: 1}
+ m_LocalPosition: {x: 0.04538, y: 0, z: 1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 2116678881}
+ m_Father: {fileID: 2063522625}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2110334852
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1011681622146920, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2110334853}
+ m_Layer: 8
+ m_Name: RightFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2110334853
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4526302222917932, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2110334852}
+ m_LocalRotation: {x: 0.0057530263, y: 0.3983431, z: 0.002168512, w: 0.9172159}
+ m_LocalPosition: {x: 0.3000859, y: 2.504663e-15, z: 0.000000114154}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1565202330}
+ m_Father: {fileID: 323738537}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2116678880
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1730389668609358, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2116678881}
+ m_Layer: 8
+ m_Name: RightIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2116678881
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4036148585632588, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2116678880}
+ m_LocalRotation: {x: -4.4407852e-16, y: -2.0917636e-11, z: -9.576146e-14, w: 1}
+ m_LocalPosition: {x: 0.03881, y: 0, z: -8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1896934119}
+ m_Father: {fileID: 2106724232}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2116748895
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1899016956778620, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2116748896}
+ m_Layer: 8
+ m_Name: LeftLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2116748896
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4371913169862946, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2116748895}
+ m_LocalRotation: {x: -2.2408375e-15, y: -0.00000034982656, z: 2.0471695e-13, w: 1}
+ m_LocalPosition: {x: -0.3404326, y: 1.0658141e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 1187981552}
+ m_Father: {fileID: 1188695748}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2121355908
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1235450285032676, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2121355909}
+ m_Layer: 8
+ m_Name: RightIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &2121355909
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4272353113629258, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2121355908}
+ m_LocalRotation: {x: -1.1183519e-16, y: -1.6642503e-16, z: 8.568114e-17, w: 1}
+ m_LocalPosition: {x: -0.07175, y: 0.00000008681784, z: 0.00000014042556}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 817669804}
+ m_Father: {fileID: 282948456}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2130499071
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1588900603139378, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2130499072}
+ - component: {fileID: 2130499075}
+ - component: {fileID: 2130499074}
+ - component: {fileID: 2130499073}
+ m_Layer: 8
+ m_Name: CameraLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &2130499072
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4841669478610150, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2130499071}
+ m_LocalRotation: {x: -0.16529356, y: 0.6875159, z: 0.16529363, w: 0.6875158}
+ m_LocalPosition: {x: -0.2003, y: -0.5448, z: -0.0022}
+ m_LocalScale: {x: 0.13405032, y: 0.1340503, z: 0.1340503}
+ m_Children: []
+ m_Father: {fileID: 1587230079}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!64 &2130499073
+MeshCollider:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 64822439113425462, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2130499071}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_InflateMesh: 0
+ m_SkinWidth: 0.01
+ m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!23 &2130499074
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 23805928599937844, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2130499071}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 122e9cd5ec976eb42bc7f99a4512d40f, 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: 1
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 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
+--- !u!33 &2130499075
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 33762293127458330, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2130499071}
+ m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!1 &2137413836
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1097584366301200, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2137413837}
+ m_Layer: 8
+ m_Name: LeftArm4
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &2137413837
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4347813048233394, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2137413836}
+ m_LocalRotation: {x: -2.2088105e-29, y: -1.323489e-23, z: 1.1911401e-22, w: 1}
+ m_LocalPosition: {x: -0.32154, y: 7.105427e-17, z: -0.000000131832}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 230391422}
+ m_Father: {fileID: 873229319}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &2144327718
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 1780226981447022, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 2144327719}
+ m_Layer: 8
+ m_Name: RightArm6
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!4 &2144327719
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 4853072393509722, guid: 0234d2b8e9f4db044889cfaa578cea81,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 2144327718}
+ m_LocalRotation: {x: 0, y: 6.123234e-17, z: -6.123234e-17, w: 1}
+ m_LocalPosition: {x: -0.31936, y: 1.4210854e-16, z: -2.1316282e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 199118508}
+ m_Father: {fileID: 83020532}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
diff --git a/unity_pupil_plugin/Assets/dataStringFileName.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Market Scene Demo.unity.meta
similarity index 64%
rename from unity_pupil_plugin/Assets/dataStringFileName.meta
rename to dev_Refactor-and-demos/Assets/Market Scene Demo/Market Scene Demo.unity.meta
index 2b093915..1f586dfd 100644
--- a/unity_pupil_plugin/Assets/dataStringFileName.meta
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Market Scene Demo.unity.meta
@@ -1,6 +1,6 @@
fileFormatVersion: 2
-guid: 13c6f33ebcec3a142a5a23cb980c04a9
-timeCreated: 1491489341
+guid: 962a17030b528b24dac725004acc2a0b
+timeCreated: 1507803177
licenseType: Free
DefaultImporter:
userData:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts.meta
new file mode 100644
index 00000000..4cab27fe
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 7ac9e3e7280eb4147883815bb7114135
+folderAsset: yes
+timeCreated: 1507879795
+licenseType: Free
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/GazeHighlight.shader b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/GazeHighlight.shader
new file mode 100644
index 00000000..de194eac
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/GazeHighlight.shader
@@ -0,0 +1,60 @@
+Shader "Pupil/GazeHighlight"
+{
+ Properties
+ {
+ _MainTex ("Texture", 2D) = "white" {}
+ _highlightThreshold ("Highlight Threshold", Range(0.01,0.5)) = 0.05
+ }
+ SubShader
+ {
+ // No culling or depth
+ Cull Off ZWrite Off ZTest Always
+
+ Pass
+ {
+ CGPROGRAM
+ #pragma vertex vert
+ #pragma fragment frag
+
+ #include "UnityCG.cginc"
+
+ struct appdata
+ {
+ float4 vertex : POSITION;
+ float2 uv : TEXCOORD0;
+ };
+
+ struct v2f
+ {
+ float2 uv : TEXCOORD0;
+ float4 vertex : SV_POSITION;
+ };
+
+ uniform float2 _viewportGazePosition;
+ uniform float _highlightThreshold = 0.1;
+
+ v2f vert (appdata v)
+ {
+ v2f o;
+ o.vertex = UnityObjectToClipPos(v.vertex);
+ o.uv = v.uv;
+ return o;
+ }
+
+ sampler2D _MainTex;
+ half4 _MainTex_ST;
+
+ fixed4 frag (v2f i) : SV_Target
+ {
+ half2 uv = UnityStereoScreenSpaceUVAdjust(i.uv,_MainTex_ST);
+ fixed4 col = tex2D(_MainTex, uv);
+
+ if ( distance(uv,_viewportGazePosition) > _highlightThreshold )
+ col.rgb = dot(col.rgb,float3(0.3,0.59,0.11));
+
+ return col;
+ }
+ ENDCG
+ }
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/GazeHighlight.shader.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/GazeHighlight.shader.meta
new file mode 100644
index 00000000..d3995bba
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/GazeHighlight.shader.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: c313378958453bb4cb51cf3011238696
+timeCreated: 1507628606
+licenseType: Free
+ShaderImporter:
+ defaultTextures: []
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/MarketSceneDemo.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/MarketSceneDemo.cs
new file mode 100644
index 00000000..2b53e2c2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/MarketSceneDemo.cs
@@ -0,0 +1,94 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class MarketSceneDemo : MonoBehaviour
+{
+ private Camera sceneCamera;
+ private CalibrationDemo calibrationDemo;
+
+ private LineRenderer heading;
+ private Vector3 standardViewportPoint = new Vector3 (0.5f, 0.5f, 10);
+
+ private Vector2 gazePointLeft;
+ private Vector2 gazePointRight;
+ private Vector2 gazePointCenter;
+
+ public Material shaderMaterial;
+
+ void Start ()
+ {
+ PupilData.calculateMovingAverage = true;
+
+ sceneCamera = gameObject.GetComponent ();
+ calibrationDemo = gameObject.GetComponent ();
+ heading = gameObject.GetComponent ();
+
+ PupilTools.SubscribeTo ("gaze");
+ }
+
+ bool monoColorMode = true;
+
+ void Update()
+ {
+ Vector3 viewportPoint = standardViewportPoint;
+
+ if (PupilSettings.Instance.connection.isConnected && PupilSettings.Instance.dataProcess.state == PupilSettings.EStatus.ProcessingGaze)
+ {
+ gazePointLeft = PupilData._2D.GetEyePosition (sceneCamera, PupilData.GazeSource.LeftEye);
+ gazePointRight = PupilData._2D.GetEyePosition (sceneCamera, PupilData.GazeSource.RightEye);
+ gazePointCenter = PupilData._2D.GetEyeGaze (PupilData.GazeSource.BothEyes);
+ viewportPoint = new Vector3 (gazePointCenter.x, gazePointCenter.y, 1f);
+ }
+
+ if (Input.GetKeyUp (KeyCode.M))
+ monoColorMode = !monoColorMode;
+
+ if (Input.GetKeyUp (KeyCode.G))
+ calibrationDemo.enabled = !calibrationDemo.enabled;
+
+ if (Input.GetKeyUp (KeyCode.L))
+ heading.enabled = !heading.enabled;
+ if (heading.enabled)
+ {
+ heading.SetPosition (0, sceneCamera.transform.position-sceneCamera.transform.up);
+
+ Ray ray = sceneCamera.ViewportPointToRay (viewportPoint);
+ RaycastHit hit;
+ if (Physics.Raycast (ray, out hit))
+ {
+ heading.SetPosition (1, hit.point);
+ } else
+ {
+ heading.SetPosition (1, ray.origin + ray.direction * 50f);
+ }
+ }
+ }
+
+ void OnRenderImage (RenderTexture source, RenderTexture destination)
+ {
+ if (monoColorMode)
+ shaderMaterial.SetFloat ("_highlightThreshold", 0.1f);
+ else
+ shaderMaterial.SetFloat ("_highlightThreshold", 1000f);
+
+ switch (sceneCamera.stereoActiveEye)
+ {
+ case Camera.MonoOrStereoscopicEye.Left:
+ shaderMaterial.SetVector ("_viewportGazePosition", gazePointLeft);
+ break;
+ case Camera.MonoOrStereoscopicEye.Right:
+ shaderMaterial.SetVector ("_viewportGazePosition", gazePointRight);
+ break;
+ default:
+ shaderMaterial.SetVector ("_viewportGazePosition", gazePointCenter);
+ break;
+ }
+ Graphics.Blit (source, destination, shaderMaterial);
+ }
+
+ void OnDisable()
+ {
+ PupilTools.UnSubscribeFrom ("gaze");
+ }
+}
diff --git a/unity_pupil_plugin/Assets/Scripts/CalibrationGL.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/MarketSceneDemo.cs.meta
similarity index 76%
rename from unity_pupil_plugin/Assets/Scripts/CalibrationGL.cs.meta
rename to dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/MarketSceneDemo.cs.meta
index 1b77d5c2..7cd8c75b 100644
--- a/unity_pupil_plugin/Assets/Scripts/CalibrationGL.cs.meta
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/MarketSceneDemo.cs.meta
@@ -1,6 +1,6 @@
fileFormatVersion: 2
-guid: 13126b65a23206c458750651728bcc11
-timeCreated: 1490634803
+guid: bb66741a432d75e479627f6b861934cf
+timeCreated: 1507803198
licenseType: Free
MonoImporter:
serializedVersion: 2
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/UpdateMeshColliders.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/UpdateMeshColliders.cs
new file mode 100644
index 00000000..2a4632c1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/UpdateMeshColliders.cs
@@ -0,0 +1,55 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class UpdateMeshColliders : MonoBehaviour {
+
+ // Use this for initialization
+ void Start () {
+
+ }
+
+ // Update is called once per frame
+ void Update () {
+
+ }
+
+ [ContextMenu("Add MeshCollider to MeshRenderers")]
+ void AddMeshColliderToMeshRenderers()
+ {
+ var meshrenderers = gameObject.GetComponentsInChildren (true);
+
+ print (meshrenderers.Length);
+ foreach (var item in meshrenderers)
+ {
+ print (item.name);
+ item.gameObject.AddComponent ();
+ }
+ }
+
+ [ContextMenu("Add CapsuleCollider to SkinnedMeshRenderers")]
+ void AddCapsuleColliderToSkinnedMeshRenderers()
+ {
+ var skinnedMeshRenderers = gameObject.GetComponentsInChildren (true);
+
+ print (skinnedMeshRenderers.Length);
+ foreach (var item in skinnedMeshRenderers)
+ {
+ print (item.name);
+ item.gameObject.AddComponent ();
+ }
+ }
+
+ [ContextMenu("Delete Existing Colliders")]
+ void DeleteExistingColliders()
+ {
+ var colliders = gameObject.GetComponentsInChildren (true);
+
+ print (colliders.Length);
+ foreach (var item in colliders)
+ {
+ print (item.name);
+ DestroyImmediate (item);
+ }
+ }
+}
diff --git a/unity_pupil_plugin/Assets/Scripts/PupilGazeTracker.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/UpdateMeshColliders.cs.meta
similarity index 76%
rename from unity_pupil_plugin/Assets/Scripts/PupilGazeTracker.cs.meta
rename to dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/UpdateMeshColliders.cs.meta
index 744af717..17c2784d 100644
--- a/unity_pupil_plugin/Assets/Scripts/PupilGazeTracker.cs.meta
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Scripts/UpdateMeshColliders.cs.meta
@@ -1,6 +1,6 @@
fileFormatVersion: 2
-guid: 37bc500822e7a454b8d29726c95a51b1
-timeCreated: 1465884178
+guid: de2b32e38ddf9974b9366aa96858e852
+timeCreated: 1506676454
licenseType: Free
MonoImporter:
serializedVersion: 2
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials.meta
new file mode 100644
index 00000000..1bc24fb6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 51550f41253828d46ba91367d40c8243
+folderAsset: yes
+timeCreated: 1507879705
+licenseType: Free
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials/GazeHighlight.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials/GazeHighlight.mat
new file mode 100644
index 00000000..b34db838
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials/GazeHighlight.mat
@@ -0,0 +1,77 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: GazeHighlight
+ m_Shader: {fileID: 4800000, guid: c313378958453bb4cb51cf3011238696, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ - _highlightThreshold: 0.1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials/GazeHighlight.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials/GazeHighlight.mat.meta
new file mode 100644
index 00000000..18df4ab1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials/GazeHighlight.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: f51f5d0c76790c44cb42ff0209bc174e
+timeCreated: 1507628592
+licenseType: Free
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials/LaserPointer.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials/LaserPointer.mat
new file mode 100644
index 00000000..425ead5d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials/LaserPointer.mat
@@ -0,0 +1,78 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: LaserPointer
+ m_Shader: {fileID: 203, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 9a3ccc72fae8238429f960701a682c1f, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _InvFade: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
+ - _TintColor: {r: 0.61764705, g: 0.24070069, b: 0.24070069, a: 0.2509804}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials/LaserPointer.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials/LaserPointer.mat.meta
new file mode 100644
index 00000000..75d75dcc
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Textures And Materials/LaserPointer.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: bec69ad25ca8c1d4ba999bab70a91d0b
+timeCreated: 1506514434
+licenseType: Free
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity.meta
new file mode 100644
index 00000000..b26078f8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 92f95ce4085b2a941b87e217b1fcb463
+folderAsset: yes
+timeCreated: 1507879729
+licenseType: Free
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations.meta
new file mode 100644
index 00000000..cb8e9156
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 0632fe4b27cd13446a4ea169467c3893
+folderAsset: yes
+timeCreated: 1456400074
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment.meta
new file mode 100644
index 00000000..cb29c136
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 3556837c23d07c94faa7c8a6f56ff49e
+folderAsset: yes
+timeCreated: 1462959870
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/BirdGlassesCutscene.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/BirdGlassesCutscene.fbx
new file mode 100644
index 00000000..3a2f2c46
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/BirdGlassesCutscene.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/BirdGlassesCutscene.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/BirdGlassesCutscene.fbx.meta
new file mode 100644
index 00000000..adf221f5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/BirdGlassesCutscene.fbx.meta
@@ -0,0 +1,386 @@
+fileFormatVersion: 2
+guid: 27dc1f41f9a3fad46a08a615f1730ad1
+timeCreated: 1460541017
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Bird
+ 100002: //RootNode
+ 100004: Controls
+ 100006: Disguise
+ 100008: Hair
+ 100010: HairEnd
+ 100012: Head
+ 100014: joint26
+ 100016: LeftBackToe
+ 100018: LeftBackToeEnd
+ 100020: LeftDownWing
+ 100022: LeftDownWingEnd
+ 100024: LeftLeg
+ 100026: LeftToe
+ 100028: LeftToeEnd
+ 100030: LeftUpLeg
+ 100032: LeftUpWing
+ 100034: LeftUpWingEnd
+ 100036: Mesh
+ 100038: RightBackToe
+ 100040: RightBackToeEnd
+ 100042: RightDownWing
+ 100044: RightDownWingEnd
+ 100046: RightLeg
+ 100048: RightToe
+ 100050: RightToeEnd
+ 100052: RightUpLeg
+ 100054: RightUpWing
+ 100056: RightUpWingEnd
+ 100058: Skeleton
+ 100060: Spine
+ 100062: Tail
+ 100064: Bird 1
+ 100066: ControlsHair
+ 100068: ControlsHead
+ 100070: ControlsLeftDownWing
+ 100072: ControlsLeftFoot
+ 100074: ControlsLeftPoleVector
+ 100076: ControlsLeftToes
+ 100078: ControlsLeftUpWing
+ 100080: ControlsRightDownWing
+ 100082: ControlsRightFoot
+ 100084: ControlsRightPoleVector
+ 100086: ControlsRightToes
+ 100088: ControlsRightUpWing
+ 100090: ControlsSpine
+ 100092: ControlsTail
+ 100094: Glasses
+ 100096: ikHandleBackToe
+ 100098: ikHandleLeftLeg
+ 100100: ikHandleRightBackToe
+ 100102: ikHandleRightLeg
+ 100104: ikHandleRightToe
+ 100106: ikHandleToe
+ 400000: Bird
+ 400002: //RootNode
+ 400004: Controls
+ 400006: Disguise
+ 400008: Hair
+ 400010: HairEnd
+ 400012: Head
+ 400014: joint26
+ 400016: LeftBackToe
+ 400018: LeftBackToeEnd
+ 400020: LeftDownWing
+ 400022: LeftDownWingEnd
+ 400024: LeftLeg
+ 400026: LeftToe
+ 400028: LeftToeEnd
+ 400030: LeftUpLeg
+ 400032: LeftUpWing
+ 400034: LeftUpWingEnd
+ 400036: Mesh
+ 400038: RightBackToe
+ 400040: RightBackToeEnd
+ 400042: RightDownWing
+ 400044: RightDownWingEnd
+ 400046: RightLeg
+ 400048: RightToe
+ 400050: RightToeEnd
+ 400052: RightUpLeg
+ 400054: RightUpWing
+ 400056: RightUpWingEnd
+ 400058: Skeleton
+ 400060: Spine
+ 400062: Tail
+ 400064: Bird 1
+ 400066: ControlsHair
+ 400068: ControlsHead
+ 400070: ControlsLeftDownWing
+ 400072: ControlsLeftFoot
+ 400074: ControlsLeftPoleVector
+ 400076: ControlsLeftToes
+ 400078: ControlsLeftUpWing
+ 400080: ControlsRightDownWing
+ 400082: ControlsRightFoot
+ 400084: ControlsRightPoleVector
+ 400086: ControlsRightToes
+ 400088: ControlsRightUpWing
+ 400090: ControlsSpine
+ 400092: ControlsTail
+ 400094: Glasses
+ 400096: ikHandleBackToe
+ 400098: ikHandleLeftLeg
+ 400100: ikHandleRightBackToe
+ 400102: ikHandleRightLeg
+ 400104: ikHandleRightToe
+ 400106: ikHandleToe
+ 2300000: //RootNode
+ 2300002: Disguise
+ 2300004: Bird
+ 2300006: ControlsLeftPoleVector
+ 2300008: ControlsRightPoleVector
+ 2300010: Glasses
+ 3300000: //RootNode
+ 3300002: Disguise
+ 3300004: Bird
+ 3300006: ControlsLeftPoleVector
+ 3300008: ControlsRightPoleVector
+ 3300010: Glasses
+ 4300000: BirdGlassesCutscene
+ 4300002: Bird
+ 4300004: Disguise
+ 4300006: Glasses
+ 4300008: ControlsLeftPoleVector
+ 4300010: ControlsRightPoleVector
+ 7400000: BirdIdle
+ 7400002: FlyAway
+ 9500000: //RootNode
+ 13700000: Bird
+ 13700002: Bird 1
+ materials:
+ importMaterials: 0
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 0
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: BirdIdle
+ takeName: Take 001
+ firstFrame: 0
+ lastFrame: 120
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 1
+ loopBlend: 1
+ loopBlendOrientation: 0
+ loopBlendPositionY: 0
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Bird
+ weight: 1
+ - path: Bird/Mesh
+ weight: 1
+ - path: Bird/Mesh/Bird 1
+ weight: 1
+ - path: Bird/Skeleton
+ weight: 1
+ - path: Bird/Skeleton/Spine
+ weight: 1
+ - path: Bird/Skeleton/Spine/Head
+ weight: 1
+ - path: Bird/Skeleton/Spine/Head/Hair
+ weight: 1
+ - path: Bird/Skeleton/Spine/Head/Hair/HairEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftDownWing
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftDownWing/LeftDownWingEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpLeg
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpLeg/LeftLeg
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpLeg/LeftLeg/LeftBackToe
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpLeg/LeftLeg/LeftBackToe/LeftBackToeEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpLeg/LeftLeg/LeftToe
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpLeg/LeftLeg/LeftToe/LeftToeEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpWing
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpWing/LeftUpWingEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightDownWing
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightDownWing/RightDownWingEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpLeg
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpLeg/RightLeg
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpLeg/RightLeg/RightBackToe
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpLeg/RightLeg/RightBackToe/RightBackToeEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpLeg/RightLeg/RightToe
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpLeg/RightLeg/RightToe/RightToeEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpWing
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpWing/RightUpWingEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/Tail
+ weight: 1
+ - path: Bird/Skeleton/Spine/Tail/joint26
+ weight: 1
+ - path: Glasses
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ - serializedVersion: 16
+ name: FlyAway
+ takeName: Take 001
+ firstFrame: 121
+ lastFrame: 247
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 0
+ loopBlend: 0
+ loopBlendOrientation: 0
+ loopBlendPositionY: 0
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Bird
+ weight: 1
+ - path: Bird/Mesh
+ weight: 1
+ - path: Bird/Mesh/Bird 1
+ weight: 1
+ - path: Bird/Skeleton
+ weight: 1
+ - path: Bird/Skeleton/Spine
+ weight: 1
+ - path: Bird/Skeleton/Spine/Head
+ weight: 1
+ - path: Bird/Skeleton/Spine/Head/Hair
+ weight: 1
+ - path: Bird/Skeleton/Spine/Head/Hair/HairEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftDownWing
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftDownWing/LeftDownWingEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpLeg
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpLeg/LeftLeg
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpLeg/LeftLeg/LeftBackToe
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpLeg/LeftLeg/LeftBackToe/LeftBackToeEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpLeg/LeftLeg/LeftToe
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpLeg/LeftLeg/LeftToe/LeftToeEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpWing
+ weight: 1
+ - path: Bird/Skeleton/Spine/LeftUpWing/LeftUpWingEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightDownWing
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightDownWing/RightDownWingEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpLeg
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpLeg/RightLeg
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpLeg/RightLeg/RightBackToe
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpLeg/RightLeg/RightBackToe/RightBackToeEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpLeg/RightLeg/RightToe
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpLeg/RightLeg/RightToe/RightToeEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpWing
+ weight: 1
+ - path: Bird/Skeleton/Spine/RightUpWing/RightUpWingEnd
+ weight: 1
+ - path: Bird/Skeleton/Spine/Tail
+ weight: 1
+ - path: Bird/Skeleton/Spine/Tail/joint26
+ weight: 1
+ - path: Glasses
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/MarketCoffeeSign.anim b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/MarketCoffeeSign.anim
new file mode 100644
index 00000000..6569c5c5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/MarketCoffeeSign.anim
@@ -0,0 +1,91 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!74 &7400000
+AnimationClip:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketCoffeeSign
+ serializedVersion: 6
+ m_Legacy: 0
+ m_Compressed: 0
+ m_UseHighQualityCurve: 1
+ m_RotationCurves: []
+ m_CompressedRotationCurves: []
+ m_EulerCurves: []
+ m_PositionCurves: []
+ m_ScaleCurves: []
+ m_FloatCurves: []
+ m_PPtrCurves:
+ - curve:
+ - time: 0
+ value: {fileID: 21300000, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - time: 1.4166666
+ value: {fileID: 21300002, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - time: 1.5
+ value: {fileID: 21300000, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - time: 1.6666666
+ value: {fileID: 21300002, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - time: 1.75
+ value: {fileID: 21300000, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - time: 6
+ value: {fileID: 21300002, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - time: 6.0833335
+ value: {fileID: 21300000, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - time: 6.25
+ value: {fileID: 21300002, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - time: 6.3333335
+ value: {fileID: 21300000, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ attribute: m_Sprite
+ path:
+ classID: 212
+ script: {fileID: 0}
+ m_SampleRate: 12
+ m_WrapMode: 0
+ m_Bounds:
+ m_Center: {x: 0, y: 0, z: 0}
+ m_Extent: {x: 0, y: 0, z: 0}
+ m_ClipBindingConstant:
+ genericBindings:
+ - path: 0
+ attribute: 0
+ script: {fileID: 0}
+ classID: 212
+ customType: 23
+ isPPtrCurve: 1
+ pptrCurveMapping:
+ - {fileID: 21300000, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - {fileID: 21300002, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - {fileID: 21300000, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - {fileID: 21300002, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - {fileID: 21300000, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - {fileID: 21300002, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - {fileID: 21300000, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - {fileID: 21300002, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ - {fileID: 21300000, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ m_AnimationClipSettings:
+ serializedVersion: 2
+ m_AdditiveReferencePoseClip: {fileID: 0}
+ m_AdditiveReferencePoseTime: 0
+ m_StartTime: 0
+ m_StopTime: 6.416667
+ m_OrientationOffsetY: 0
+ m_Level: 0
+ m_CycleOffset: 0
+ m_HasAdditiveReferencePose: 0
+ m_LoopTime: 1
+ m_LoopBlend: 0
+ m_LoopBlendOrientation: 0
+ m_LoopBlendPositionY: 0
+ m_LoopBlendPositionXZ: 0
+ m_KeepOriginalOrientation: 0
+ m_KeepOriginalPositionY: 1
+ m_KeepOriginalPositionXZ: 0
+ m_HeightFromFeet: 0
+ m_Mirror: 0
+ m_EditorCurves: []
+ m_EulerEditorCurves: []
+ m_HasGenericRootTransform: 0
+ m_HasMotionFloatCurves: 0
+ m_GenerateMotionCurves: 0
+ m_Events: []
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/MarketCoffeeSign.anim.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/MarketCoffeeSign.anim.meta
new file mode 100644
index 00000000..21a382d5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/MarketCoffeeSign.anim.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e501ab80b4f0d414c9543265a2f2c655
+timeCreated: 1461842021
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/MarketFishSign.anim b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/MarketFishSign.anim
new file mode 100644
index 00000000..cfb6be8c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/MarketFishSign.anim
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!74 &7400000
+AnimationClip:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketFishSign
+ serializedVersion: 6
+ m_Legacy: 0
+ m_Compressed: 0
+ m_UseHighQualityCurve: 1
+ m_RotationCurves: []
+ m_CompressedRotationCurves: []
+ m_EulerCurves: []
+ m_PositionCurves: []
+ m_ScaleCurves: []
+ m_FloatCurves: []
+ m_PPtrCurves:
+ - curve:
+ - time: 0
+ value: {fileID: 21300000, guid: 1f7e69f695c34aa4eb96e9309660d3bb, type: 3}
+ - time: 0.083333336
+ value: {fileID: 21300002, guid: 1f7e69f695c34aa4eb96e9309660d3bb, type: 3}
+ - time: 0.16666667
+ value: {fileID: 21300004, guid: 1f7e69f695c34aa4eb96e9309660d3bb, type: 3}
+ - time: 0.25
+ value: {fileID: 21300006, guid: 1f7e69f695c34aa4eb96e9309660d3bb, type: 3}
+ attribute: m_Sprite
+ path:
+ classID: 212
+ script: {fileID: 0}
+ m_SampleRate: 12
+ m_WrapMode: 0
+ m_Bounds:
+ m_Center: {x: 0, y: 0, z: 0}
+ m_Extent: {x: 0, y: 0, z: 0}
+ m_ClipBindingConstant:
+ genericBindings:
+ - path: 0
+ attribute: 0
+ script: {fileID: 0}
+ classID: 212
+ customType: 23
+ isPPtrCurve: 1
+ pptrCurveMapping:
+ - {fileID: 21300000, guid: 1f7e69f695c34aa4eb96e9309660d3bb, type: 3}
+ - {fileID: 21300002, guid: 1f7e69f695c34aa4eb96e9309660d3bb, type: 3}
+ - {fileID: 21300004, guid: 1f7e69f695c34aa4eb96e9309660d3bb, type: 3}
+ - {fileID: 21300006, guid: 1f7e69f695c34aa4eb96e9309660d3bb, type: 3}
+ m_AnimationClipSettings:
+ serializedVersion: 2
+ m_AdditiveReferencePoseClip: {fileID: 0}
+ m_AdditiveReferencePoseTime: 0
+ m_StartTime: 0
+ m_StopTime: 0.33333334
+ m_OrientationOffsetY: 0
+ m_Level: 0
+ m_CycleOffset: 0
+ m_HasAdditiveReferencePose: 0
+ m_LoopTime: 1
+ m_LoopBlend: 0
+ m_LoopBlendOrientation: 0
+ m_LoopBlendPositionY: 0
+ m_LoopBlendPositionXZ: 0
+ m_KeepOriginalOrientation: 0
+ m_KeepOriginalPositionY: 1
+ m_KeepOriginalPositionXZ: 0
+ m_HeightFromFeet: 0
+ m_Mirror: 0
+ m_EditorCurves: []
+ m_EulerEditorCurves: []
+ m_HasGenericRootTransform: 0
+ m_HasMotionFloatCurves: 0
+ m_GenerateMotionCurves: 0
+ m_Events: []
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/MarketFishSign.anim.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/MarketFishSign.anim.meta
new file mode 100644
index 00000000..715262b3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/MarketFishSign.anim.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 27918b0cb742a114eac6eb4197f13a08
+timeCreated: 1461752799
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecuirtyCameraIdle.anim b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecuirtyCameraIdle.anim
new file mode 100644
index 00000000..09d3bffd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecuirtyCameraIdle.anim
@@ -0,0 +1,655 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!74 &7400000
+AnimationClip:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecuirtyCameraIdle
+ serializedVersion: 6
+ m_Legacy: 0
+ m_Compressed: 0
+ m_UseHighQualityCurve: 1
+ m_RotationCurves: []
+ m_CompressedRotationCurves: []
+ m_EulerCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0, y: 38.96625, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 0.16666667
+ value: {x: 0, y: 40.64361, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 0.31666666
+ value: {x: 0, y: 38.51473, z: 0}
+ inSlope: {x: 0, y: -27.383217, z: 0}
+ outSlope: {x: 0, y: -27.383217, z: 0}
+ tangentMode: 0
+ - time: 1.6833333
+ value: {x: 0, y: -37.025764, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 1.8166667
+ value: {x: 0, y: -38.930153, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 1.9666667
+ value: {x: 0, y: -36.83941, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.3333335
+ value: {x: 0, y: -36.83941, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 3.3333335
+ value: {x: 0, y: -36.83941, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 3.4666665
+ value: {x: 0, y: -36.83941, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 3.5666668
+ value: {x: 0, y: -38.49926, z: 0}
+ inSlope: {x: 0, y: -19.806175, z: 0}
+ outSlope: {x: 0, y: -19.806175, z: 0}
+ tangentMode: 0
+ - time: 3.6166666
+ value: {x: 0, y: -39.06761, z: 0}
+ inSlope: {x: 0, y: 0.4196167, z: 0}
+ outSlope: {x: 0, y: 0.4196167, z: 0}
+ tangentMode: 0
+ - time: 3.783333
+ value: {x: 0, y: -36.40211, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 3.8000002
+ value: {x: 0, y: -36.37668, z: 0}
+ inSlope: {x: 0, y: 3.0410266, z: 0}
+ outSlope: {x: 0, y: 3.0410266, z: 0}
+ tangentMode: 0
+ - time: 4.3166666
+ value: {x: 0, y: -16.065878, z: 0}
+ inSlope: {x: 0, y: 65.218544, z: 0}
+ outSlope: {x: 0, y: 65.218544, z: 0}
+ tangentMode: 0
+ - time: 5.366666
+ value: {x: 0, y: 40.64361, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 5.5166664
+ value: {x: 0, y: 38.96625, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 5.916667
+ value: {x: 0, y: 38.966248, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 7.016667
+ value: {x: 0, y: 38.96625, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: CameraCam
+ m_PositionCurves: []
+ m_ScaleCurves: []
+ m_FloatCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.88235295
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 7.016667
+ value: 0.88235295
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.r
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0129757915
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 7.016667
+ value: 0.0129757915
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.g
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0129757915
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 7.016667
+ value: 0.0129757915
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.b
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: -0.0008526045
+ outSlope: -0.0008526045
+ tangentMode: 0
+ - time: 0.46666667
+ value: 0.05
+ inSlope: -0.15287453
+ outSlope: -0.15287453
+ tangentMode: 10
+ - time: 1.15
+ value: 0.5
+ inSlope: -0.13624892
+ outSlope: -0.13624892
+ tangentMode: 10
+ - time: 1.6333333
+ value: 0.05
+ inSlope: -0.172039
+ outSlope: -0.172039
+ tangentMode: 10
+ - time: 2.4
+ value: 0.5
+ inSlope: -0.172039
+ outSlope: -0.172039
+ tangentMode: 10
+ - time: 2.8833334
+ value: 0.05
+ inSlope: -0.17203897
+ outSlope: -0.17203897
+ tangentMode: 10
+ - time: 3.65
+ value: 0.5
+ inSlope: -0.34937906
+ outSlope: -0.34937906
+ tangentMode: 10
+ - time: 4
+ value: 0.05
+ inSlope: -0.4017859
+ outSlope: -0.4017859
+ tangentMode: 10
+ - time: 4.9333334
+ value: 0.5
+ inSlope: -0.32142848
+ outSlope: -0.32142848
+ tangentMode: 10
+ - time: 5.3333335
+ value: 0.05
+ inSlope: -0.21634585
+ outSlope: -0.21634585
+ tangentMode: 10
+ - time: 5.983333
+ value: 0.5
+ inSlope: -0.29670238
+ outSlope: -0.29670238
+ tangentMode: 10
+ - time: 6.3333335
+ value: 0.05
+ inSlope: -0.30535635
+ outSlope: -0.30535635
+ tangentMode: 10
+ - time: 7
+ value: 0.5
+ inSlope: 0.003937149
+ outSlope: 0.003937149
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.a
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ m_PPtrCurves: []
+ m_SampleRate: 60
+ m_WrapMode: 0
+ m_Bounds:
+ m_Center: {x: 0, y: 0, z: 0}
+ m_Extent: {x: 0, y: 0, z: 0}
+ m_ClipBindingConstant:
+ genericBindings:
+ - path: 2461954006
+ attribute: 4
+ script: {fileID: 0}
+ classID: 4
+ customType: 14
+ isPPtrCurve: 0
+ - path: 2240798905
+ attribute: 1895888582
+ script: {fileID: 0}
+ classID: 23
+ customType: 22
+ isPPtrCurve: 0
+ - path: 2240798905
+ attribute: 1090582214
+ script: {fileID: 0}
+ classID: 23
+ customType: 22
+ isPPtrCurve: 0
+ - path: 2240798905
+ attribute: 1359017670
+ script: {fileID: 0}
+ classID: 23
+ customType: 22
+ isPPtrCurve: 0
+ - path: 2240798905
+ attribute: 1627453126
+ script: {fileID: 0}
+ classID: 23
+ customType: 22
+ isPPtrCurve: 0
+ pptrCurveMapping: []
+ m_AnimationClipSettings:
+ serializedVersion: 2
+ m_AdditiveReferencePoseClip: {fileID: 0}
+ m_AdditiveReferencePoseTime: 0
+ m_StartTime: 0
+ m_StopTime: 7.016667
+ m_OrientationOffsetY: 0
+ m_Level: 0
+ m_CycleOffset: 0
+ m_HasAdditiveReferencePose: 0
+ m_LoopTime: 1
+ m_LoopBlend: 0
+ m_LoopBlendOrientation: 0
+ m_LoopBlendPositionY: 0
+ m_LoopBlendPositionXZ: 0
+ m_KeepOriginalOrientation: 0
+ m_KeepOriginalPositionY: 1
+ m_KeepOriginalPositionXZ: 0
+ m_HeightFromFeet: 0
+ m_Mirror: 0
+ m_EditorCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 0.16666667
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 0.31666666
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 2.3333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3.3333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3.5666668
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3.8000002
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 4.3166666
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 5.916667
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAnglesRaw.x
+ path: CameraCam
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 38.96625
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.16666667
+ value: 40.64361
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.6833333
+ value: -37.025764
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8166667
+ value: -38.930153
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.9666667
+ value: -36.83941
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 3.4666665
+ value: -36.83941
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 3.6166666
+ value: -39.06761
+ inSlope: 0.4196167
+ outSlope: 0.4196167
+ tangentMode: 0
+ - time: 3.783333
+ value: -36.40211
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 5.366666
+ value: 40.64361
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 5.5166664
+ value: 38.96625
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 7.016667
+ value: 38.96625
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAnglesRaw.y
+ path: CameraCam
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 0.16666667
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 0.31666666
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 2.3333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3.3333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3.5666668
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3.8000002
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 4.3166666
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 5.916667
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAnglesRaw.z
+ path: CameraCam
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.88235295
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 7.016667
+ value: 0.88235295
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.r
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0129757915
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 7.016667
+ value: 0.0129757915
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.g
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0129757915
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 7.016667
+ value: 0.0129757915
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.b
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: -0.0008526045
+ outSlope: -0.0008526045
+ tangentMode: 0
+ - time: 0.46666667
+ value: 0.05
+ inSlope: -0.15287453
+ outSlope: -0.15287453
+ tangentMode: 10
+ - time: 1.15
+ value: 0.5
+ inSlope: -0.13624892
+ outSlope: -0.13624892
+ tangentMode: 10
+ - time: 1.6333333
+ value: 0.05
+ inSlope: -0.172039
+ outSlope: -0.172039
+ tangentMode: 10
+ - time: 2.4
+ value: 0.5
+ inSlope: -0.172039
+ outSlope: -0.172039
+ tangentMode: 10
+ - time: 2.8833334
+ value: 0.05
+ inSlope: -0.17203897
+ outSlope: -0.17203897
+ tangentMode: 10
+ - time: 3.65
+ value: 0.5
+ inSlope: -0.34937906
+ outSlope: -0.34937906
+ tangentMode: 10
+ - time: 4
+ value: 0.05
+ inSlope: -0.4017859
+ outSlope: -0.4017859
+ tangentMode: 10
+ - time: 4.9333334
+ value: 0.5
+ inSlope: -0.32142848
+ outSlope: -0.32142848
+ tangentMode: 10
+ - time: 5.3333335
+ value: 0.05
+ inSlope: -0.21634585
+ outSlope: -0.21634585
+ tangentMode: 10
+ - time: 5.983333
+ value: 0.5
+ inSlope: -0.29670238
+ outSlope: -0.29670238
+ tangentMode: 10
+ - time: 6.3333335
+ value: 0.05
+ inSlope: -0.30535635
+ outSlope: -0.30535635
+ tangentMode: 10
+ - time: 7
+ value: 0.5
+ inSlope: 0.003937149
+ outSlope: 0.003937149
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.a
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ m_EulerEditorCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve: []
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalEulerAngles.x
+ path: CameraCam
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve: []
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalEulerAngles.y
+ path: CameraCam
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve: []
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalEulerAngles.z
+ path: CameraCam
+ classID: 4
+ script: {fileID: 0}
+ m_HasGenericRootTransform: 0
+ m_HasMotionFloatCurves: 0
+ m_GenerateMotionCurves: 0
+ m_Events: []
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecuirtyCameraIdle.anim.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecuirtyCameraIdle.anim.meta
new file mode 100644
index 00000000..aea26b51
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecuirtyCameraIdle.anim.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3531f9e198549554e92afa77a6a17533
+timeCreated: 1463064112
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecuirtyCameraIdle02.anim b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecuirtyCameraIdle02.anim
new file mode 100644
index 00000000..578fbf7d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecuirtyCameraIdle02.anim
@@ -0,0 +1,277 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!74 &7400000
+AnimationClip:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecuirtyCameraIdle02
+ serializedVersion: 6
+ m_Legacy: 0
+ m_Compressed: 0
+ m_UseHighQualityCurve: 1
+ m_RotationCurves: []
+ m_CompressedRotationCurves: []
+ m_EulerCurves: []
+ m_PositionCurves: []
+ m_ScaleCurves: []
+ m_FloatCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.30147058
+ inSlope: -0.60294116
+ outSlope: -0.60294116
+ tangentMode: 10
+ - time: 0.5
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 1
+ value: 0.30147058
+ inSlope: 0.60294116
+ outSlope: 0.60294116
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.r
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 0.5
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.g
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 0.5
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.b
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 0.5
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 1
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.a
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ m_PPtrCurves: []
+ m_SampleRate: 60
+ m_WrapMode: 0
+ m_Bounds:
+ m_Center: {x: 0, y: 0, z: 0}
+ m_Extent: {x: 0, y: 0, z: 0}
+ m_ClipBindingConstant:
+ genericBindings:
+ - path: 2240798905
+ attribute: 1090582214
+ script: {fileID: 0}
+ classID: 23
+ customType: 22
+ isPPtrCurve: 0
+ - path: 2240798905
+ attribute: 1359017670
+ script: {fileID: 0}
+ classID: 23
+ customType: 22
+ isPPtrCurve: 0
+ - path: 2240798905
+ attribute: 1627453126
+ script: {fileID: 0}
+ classID: 23
+ customType: 22
+ isPPtrCurve: 0
+ - path: 2240798905
+ attribute: 1895888582
+ script: {fileID: 0}
+ classID: 23
+ customType: 22
+ isPPtrCurve: 0
+ pptrCurveMapping: []
+ m_AnimationClipSettings:
+ serializedVersion: 2
+ m_AdditiveReferencePoseClip: {fileID: 0}
+ m_AdditiveReferencePoseTime: 0
+ m_StartTime: 0
+ m_StopTime: 1
+ m_OrientationOffsetY: 0
+ m_Level: 0
+ m_CycleOffset: 0
+ m_HasAdditiveReferencePose: 0
+ m_LoopTime: 1
+ m_LoopBlend: 0
+ m_LoopBlendOrientation: 0
+ m_LoopBlendPositionY: 0
+ m_LoopBlendPositionXZ: 0
+ m_KeepOriginalOrientation: 0
+ m_KeepOriginalPositionY: 1
+ m_KeepOriginalPositionXZ: 0
+ m_HeightFromFeet: 0
+ m_Mirror: 0
+ m_EditorCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.30147058
+ inSlope: -0.60294116
+ outSlope: -0.60294116
+ tangentMode: 10
+ - time: 0.5
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 1
+ value: 0.30147058
+ inSlope: 0.60294116
+ outSlope: 0.60294116
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.r
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 0.5
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.g
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 0.5
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.b
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 0.5
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 1
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.a
+ path: CameraCam/CameraLight
+ classID: 23
+ script: {fileID: 0}
+ m_EulerEditorCurves: []
+ m_HasGenericRootTransform: 0
+ m_HasMotionFloatCurves: 0
+ m_GenerateMotionCurves: 0
+ m_Events: []
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecuirtyCameraIdle02.anim.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecuirtyCameraIdle02.anim.meta
new file mode 100644
index 00000000..8133815b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecuirtyCameraIdle02.anim.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ba6fedde29286cc48a43dfdbf5ce6bc5
+timeCreated: 1470144634
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomCompanyLogo.anim b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomCompanyLogo.anim
new file mode 100644
index 00000000..ffbf62ca
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomCompanyLogo.anim
@@ -0,0 +1,622 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!74 &7400000
+AnimationClip:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomCompanyLogo
+ serializedVersion: 6
+ m_Legacy: 0
+ m_Compressed: 0
+ m_UseHighQualityCurve: 1
+ m_RotationCurves: []
+ m_CompressedRotationCurves: []
+ m_EulerCurves: []
+ m_PositionCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0, y: 0, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 1
+ value: {x: 0, y: 0, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 1.1
+ value: {x: 0, y: 0, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 2.35
+ value: {x: 0, y: 0, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 2.5
+ value: {x: 0, y: 0, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 6
+ value: {x: 0, y: 0, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: SecurityRoomCompanyLogo
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0, y: 0, z: -0.02}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 1
+ value: {x: 0, y: 0, z: -0.02}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -1.2400012, y: -0, z: -0}
+ tangentMode: 0
+ - time: 1.05
+ value: {x: -0.062, y: 0, z: -0.02}
+ inSlope: {x: -1.2400012, y: 0, z: 0}
+ outSlope: {x: 1.2399982, y: -0, z: -0}
+ tangentMode: 0
+ - time: 1.1
+ value: {x: 0, y: 0, z: -0.02}
+ inSlope: {x: 1.2399982, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 2.35
+ value: {x: 0, y: 0, z: -0.02}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -1.9699972, y: -0, z: -0}
+ tangentMode: 0
+ - time: 2.45
+ value: {x: -0.197, y: 0, z: -0.02}
+ inSlope: {x: -1.9699972, y: 0, z: 0}
+ outSlope: {x: 3.9400036, y: -0, z: -0}
+ tangentMode: 0
+ - time: 2.5
+ value: {x: 0, y: 0, z: -0.02}
+ inSlope: {x: 3.9400036, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 6
+ value: {x: 0, y: 0, z: -0.02}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: SecurityRoomCompanyLogo (1)
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0, y: 0, z: -0.04}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 1
+ value: {x: 0, y: 0, z: -0.04}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 1.3600013, y: -0, z: -0}
+ tangentMode: 0
+ - time: 1.05
+ value: {x: 0.068, y: 0, z: -0.04}
+ inSlope: {x: 1.3600013, y: 0, z: 0}
+ outSlope: {x: -1.3599981, y: -0, z: -0}
+ tangentMode: 0
+ - time: 1.1
+ value: {x: 0, y: 0, z: -0.04}
+ inSlope: {x: -1.3599981, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 2.35
+ value: {x: 0, y: 0, z: -0.04}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 1.9099972, y: -0, z: -0}
+ tangentMode: 0
+ - time: 2.45
+ value: {x: 0.191, y: 0, z: -0.04}
+ inSlope: {x: 1.9099972, y: 0, z: 0}
+ outSlope: {x: -3.8200037, y: -0, z: -0}
+ tangentMode: 0
+ - time: 2.5
+ value: {x: 0, y: 0, z: -0.04}
+ inSlope: {x: -3.8200037, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 6
+ value: {x: 0, y: 0, z: -0.04}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: SecurityRoomCompanyLogo (2)
+ m_ScaleCurves: []
+ m_FloatCurves: []
+ m_PPtrCurves: []
+ m_SampleRate: 60
+ m_WrapMode: 0
+ m_Bounds:
+ m_Center: {x: 0, y: 0, z: 0}
+ m_Extent: {x: 0, y: 0, z: 0}
+ m_ClipBindingConstant:
+ genericBindings:
+ - path: 1744575568
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1288785811
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1893604440
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ pptrCurveMapping: []
+ m_AnimationClipSettings:
+ serializedVersion: 2
+ m_AdditiveReferencePoseClip: {fileID: 0}
+ m_AdditiveReferencePoseTime: 0
+ m_StartTime: 0
+ m_StopTime: 6
+ m_OrientationOffsetY: 0
+ m_Level: 0
+ m_CycleOffset: 0
+ m_HasAdditiveReferencePose: 0
+ m_LoopTime: 1
+ m_LoopBlend: 0
+ m_LoopBlendOrientation: 0
+ m_LoopBlendPositionY: 0
+ m_LoopBlendPositionXZ: 0
+ m_KeepOriginalOrientation: 0
+ m_KeepOriginalPositionY: 1
+ m_KeepOriginalPositionXZ: 0
+ m_HeightFromFeet: 0
+ m_Mirror: 0
+ m_EditorCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.1
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.35
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.5
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: SecurityRoomCompanyLogo
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.1
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.35
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.5
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: SecurityRoomCompanyLogo
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.1
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.35
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.5
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: SecurityRoomCompanyLogo
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: -1.2400012
+ tangentMode: 21
+ - time: 1.05
+ value: -0.062
+ inSlope: -1.2400012
+ outSlope: 1.2399982
+ tangentMode: 21
+ - time: 1.1
+ value: 0
+ inSlope: 1.2399982
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.35
+ value: 0
+ inSlope: 0
+ outSlope: -1.9699972
+ tangentMode: 21
+ - time: 2.45
+ value: -0.197
+ inSlope: -1.9699972
+ outSlope: 3.9400036
+ tangentMode: 21
+ - time: 2.5
+ value: 0
+ inSlope: 3.9400036
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: SecurityRoomCompanyLogo (1)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.05
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.1
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.35
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.45
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.5
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: SecurityRoomCompanyLogo (1)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1
+ value: -0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.05
+ value: -0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.1
+ value: -0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.35
+ value: -0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.45
+ value: -0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.5
+ value: -0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: -0.02
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: SecurityRoomCompanyLogo (1)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 1.3600013
+ tangentMode: 21
+ - time: 1.05
+ value: 0.068
+ inSlope: 1.3600013
+ outSlope: -1.3599981
+ tangentMode: 21
+ - time: 1.1
+ value: 0
+ inSlope: -1.3599981
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.35
+ value: 0
+ inSlope: 0
+ outSlope: 1.9099972
+ tangentMode: 21
+ - time: 2.45
+ value: 0.191
+ inSlope: 1.9099972
+ outSlope: -3.8200037
+ tangentMode: 21
+ - time: 2.5
+ value: 0
+ inSlope: -3.8200037
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: SecurityRoomCompanyLogo (2)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.05
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.1
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.35
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.45
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.5
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: SecurityRoomCompanyLogo (2)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1
+ value: -0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.05
+ value: -0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.1
+ value: -0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.35
+ value: -0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.45
+ value: -0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.5
+ value: -0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: -0.04
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: SecurityRoomCompanyLogo (2)
+ classID: 4
+ script: {fileID: 0}
+ m_EulerEditorCurves: []
+ m_HasGenericRootTransform: 0
+ m_HasMotionFloatCurves: 0
+ m_GenerateMotionCurves: 0
+ m_Events: []
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomCompanyLogo.anim.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomCompanyLogo.anim.meta
new file mode 100644
index 00000000..ba08fd03
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomCompanyLogo.anim.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 34e46584c3c7af24f9a03d0449abfddb
+timeCreated: 1473417723
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomDNA.anim b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomDNA.anim
new file mode 100644
index 00000000..abd2fe01
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomDNA.anim
@@ -0,0 +1,954 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!74 &7400000
+AnimationClip:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomDNA
+ serializedVersion: 6
+ m_Legacy: 0
+ m_Compressed: 0
+ m_UseHighQualityCurve: 1
+ m_RotationCurves: []
+ m_CompressedRotationCurves: []
+ m_EulerCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 45, y: 0, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: 120, z: -0}
+ tangentMode: 0
+ - time: 3
+ value: {x: 45, y: 360, z: 0}
+ inSlope: {x: 0, y: 120, z: 0}
+ outSlope: {x: -0, y: 120, z: -0}
+ tangentMode: 0
+ - time: 6
+ value: {x: 45, y: 720, z: 0}
+ inSlope: {x: 0, y: 120, z: 0}
+ outSlope: {x: 0, y: 120, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: SecurityRoomHologramDNA
+ m_PositionCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.02699995, y: 0.04399991, z: -0.04}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 0.8333333
+ value: {x: -0.02699995, y: 0.04399991, z: -0.04}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -1.2150009, y: -0.4949987, z: -0}
+ tangentMode: 0
+ - time: 0.9
+ value: {x: -0.108, y: 0.011, z: -0.04}
+ inSlope: {x: -1.2150009, y: -0.4949987, z: 0}
+ outSlope: {x: 0.9720002, y: 0.39599875, z: -0}
+ tangentMode: 0
+ - time: 0.98333335
+ value: {x: -0.02699995, y: 0.04399991, z: -0.04}
+ inSlope: {x: 0.9720002, y: 0.39599875, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 3
+ value: {x: -0.02699995, y: 0.04399991, z: -0.04}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 6
+ value: {x: -0.02699995, y: 0.04399991, z: -0.04}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: DNAinfo (2)
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.02699995, y: 0.04399991, z: -0.02}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 0.8333333
+ value: {x: -0.02699995, y: 0.04399991, z: -0.02}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0.4649993, y: 0.22500136, z: -0}
+ tangentMode: 0
+ - time: 0.9
+ value: {x: 0.004, y: 0.059, z: -0.02}
+ inSlope: {x: 0.4649993, y: 0.22500136, z: 0}
+ outSlope: {x: -0.37199923, y: -0.18000099, z: -0}
+ tangentMode: 0
+ - time: 0.98333335
+ value: {x: -0.02699995, y: 0.04399991, z: -0.02}
+ inSlope: {x: -0.37199923, y: -0.18000099, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 3
+ value: {x: -0.02699995, y: 0.04399991, z: -0.02}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 6
+ value: {x: -0.02699995, y: 0.04399991, z: -0.02}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: DNAinfo (1)
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.027, y: 0.044, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 0.8333333
+ value: {x: -0.027, y: 0.044, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 0.98333335
+ value: {x: -0.027, y: 0.044, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 3
+ value: {x: -0.027, y: 0.044, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 6
+ value: {x: -0.027, y: 0.044, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: DNAinfo
+ m_ScaleCurves: []
+ m_FloatCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.2408629
+ inSlope: -0.04253173
+ outSlope: 0.004163293
+ tangentMode: 5
+ - time: 1.5
+ value: 0.17706531
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3
+ value: 0.2408629
+ inSlope: 0.04253173
+ outSlope: 0.004163293
+ tangentMode: 5
+ - time: 4.5
+ value: 0.17706531
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 6
+ value: 0.2408629
+ inSlope: 0.0028797118
+ outSlope: 0.04253173
+ tangentMode: 1
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.r
+ path: SecurityRoomHologramDNA
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.2712833
+ inSlope: 0.11430236
+ outSlope: -0.007966035
+ tangentMode: 5
+ - time: 1.5
+ value: 0.44273683
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3
+ value: 0.2712833
+ inSlope: -0.11430236
+ outSlope: -0.007966035
+ tangentMode: 5
+ - time: 4.5
+ value: 0.44273683
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 6
+ value: 0.2712833
+ inSlope: 0.007890113
+ outSlope: -0.11430236
+ tangentMode: 1
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.g
+ path: SecurityRoomHologramDNA
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.33088237
+ inSlope: 0.42156863
+ outSlope: 0.0040034265
+ tangentMode: 5
+ - time: 1.5
+ value: 0.9632353
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3
+ value: 0.33088237
+ inSlope: -0.42156863
+ outSlope: 0.0040034265
+ tangentMode: 5
+ - time: 4.5
+ value: 0.9632353
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 6
+ value: 0.33088237
+ inSlope: -0.01076973
+ outSlope: -0.42156863
+ tangentMode: 1
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.b
+ path: SecurityRoomHologramDNA
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 1.5
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 4.5
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 6
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.a
+ path: SecurityRoomHologramDNA
+ classID: 23
+ script: {fileID: 0}
+ m_PPtrCurves: []
+ m_SampleRate: 60
+ m_WrapMode: 0
+ m_Bounds:
+ m_Center: {x: 0, y: 0, z: 0}
+ m_Extent: {x: 0, y: 0, z: 0}
+ m_ClipBindingConstant:
+ genericBindings:
+ - path: 2898267998
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2280479901
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 307065919
+ attribute: 4
+ script: {fileID: 0}
+ classID: 4
+ customType: 14
+ isPPtrCurve: 0
+ - path: 307065919
+ attribute: 1090582214
+ script: {fileID: 0}
+ classID: 23
+ customType: 22
+ isPPtrCurve: 0
+ - path: 307065919
+ attribute: 1359017670
+ script: {fileID: 0}
+ classID: 23
+ customType: 22
+ isPPtrCurve: 0
+ - path: 307065919
+ attribute: 1627453126
+ script: {fileID: 0}
+ classID: 23
+ customType: 22
+ isPPtrCurve: 0
+ - path: 2535750330
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 307065919
+ attribute: 1895888582
+ script: {fileID: 0}
+ classID: 23
+ customType: 22
+ isPPtrCurve: 0
+ pptrCurveMapping: []
+ m_AnimationClipSettings:
+ serializedVersion: 2
+ m_AdditiveReferencePoseClip: {fileID: 0}
+ m_AdditiveReferencePoseTime: 0
+ m_StartTime: 0
+ m_StopTime: 6
+ m_OrientationOffsetY: 0
+ m_Level: 0
+ m_CycleOffset: 0
+ m_HasAdditiveReferencePose: 0
+ m_LoopTime: 1
+ m_LoopBlend: 0
+ m_LoopBlendOrientation: 0
+ m_LoopBlendPositionY: 0
+ m_LoopBlendPositionXZ: 0
+ m_KeepOriginalOrientation: 0
+ m_KeepOriginalPositionY: 1
+ m_KeepOriginalPositionXZ: 0
+ m_HeightFromFeet: 0
+ m_Mirror: 0
+ m_EditorCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 45
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 3
+ value: 45
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: 45
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAnglesRaw.x
+ path: SecurityRoomHologramDNA
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 120
+ tangentMode: 21
+ - time: 6
+ value: 720
+ inSlope: 120
+ outSlope: 120
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAnglesRaw.y
+ path: SecurityRoomHologramDNA
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 3
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAnglesRaw.z
+ path: SecurityRoomHologramDNA
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.2408629
+ inSlope: -0.04253173
+ outSlope: 0.004163293
+ tangentMode: 5
+ - time: 1.5
+ value: 0.17706531
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3
+ value: 0.2408629
+ inSlope: 0.04253173
+ outSlope: 0.004163293
+ tangentMode: 5
+ - time: 4.5
+ value: 0.17706531
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 6
+ value: 0.2408629
+ inSlope: 0.0028797118
+ outSlope: 0.04253173
+ tangentMode: 1
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.r
+ path: SecurityRoomHologramDNA
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.2712833
+ inSlope: 0.11430236
+ outSlope: -0.007966035
+ tangentMode: 5
+ - time: 1.5
+ value: 0.44273683
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3
+ value: 0.2712833
+ inSlope: -0.11430236
+ outSlope: -0.007966035
+ tangentMode: 5
+ - time: 4.5
+ value: 0.44273683
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 6
+ value: 0.2712833
+ inSlope: 0.007890113
+ outSlope: -0.11430236
+ tangentMode: 1
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.g
+ path: SecurityRoomHologramDNA
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.33088237
+ inSlope: 0.42156863
+ outSlope: 0.0040034265
+ tangentMode: 5
+ - time: 1.5
+ value: 0.9632353
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3
+ value: 0.33088237
+ inSlope: -0.42156863
+ outSlope: 0.0040034265
+ tangentMode: 5
+ - time: 4.5
+ value: 0.9632353
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 6
+ value: 0.33088237
+ inSlope: -0.01076973
+ outSlope: -0.42156863
+ tangentMode: 1
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.b
+ path: SecurityRoomHologramDNA
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 1.5
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 3
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 4.5
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ - time: 6
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: material._TintColor.a
+ path: SecurityRoomHologramDNA
+ classID: 23
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.02699995
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.8333333
+ value: -0.02699995
+ inSlope: 0
+ outSlope: -1.2150009
+ tangentMode: 21
+ - time: 0.9
+ value: -0.108
+ inSlope: -1.2150009
+ outSlope: 0.9720002
+ tangentMode: 21
+ - time: 0.98333335
+ value: -0.02699995
+ inSlope: 0.9720002
+ outSlope: -0
+ tangentMode: 21
+ - time: 3
+ value: -0.02699995
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: -0.02699995
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: DNAinfo (2)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.04399991
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.8333333
+ value: 0.04399991
+ inSlope: 0
+ outSlope: -0.4949987
+ tangentMode: 21
+ - time: 0.9
+ value: 0.011
+ inSlope: -0.4949987
+ outSlope: 0.39599875
+ tangentMode: 21
+ - time: 0.98333335
+ value: 0.04399991
+ inSlope: 0.39599875
+ outSlope: -0
+ tangentMode: 21
+ - time: 3
+ value: 0.04399991
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: 0.04399991
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: DNAinfo (2)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.8333333
+ value: -0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.9
+ value: -0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.98333335
+ value: -0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 3
+ value: -0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: -0.04
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: DNAinfo (2)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.02699995
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.8333333
+ value: -0.02699995
+ inSlope: 0
+ outSlope: 0.4649993
+ tangentMode: 21
+ - time: 0.9
+ value: 0.004
+ inSlope: 0.4649993
+ outSlope: -0.37199923
+ tangentMode: 21
+ - time: 0.98333335
+ value: -0.02699995
+ inSlope: -0.37199923
+ outSlope: -0
+ tangentMode: 21
+ - time: 3
+ value: -0.02699995
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: -0.02699995
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: DNAinfo (1)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.04399991
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.8333333
+ value: 0.04399991
+ inSlope: 0
+ outSlope: 0.22500136
+ tangentMode: 21
+ - time: 0.9
+ value: 0.059
+ inSlope: 0.22500136
+ outSlope: -0.18000099
+ tangentMode: 21
+ - time: 0.98333335
+ value: 0.04399991
+ inSlope: -0.18000099
+ outSlope: -0
+ tangentMode: 21
+ - time: 3
+ value: 0.04399991
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: 0.04399991
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: DNAinfo (1)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.8333333
+ value: -0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.9
+ value: -0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.98333335
+ value: -0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 3
+ value: -0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: -0.02
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: DNAinfo (1)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.027
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.8333333
+ value: -0.027
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.98333335
+ value: -0.027
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 3
+ value: -0.027
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: -0.027
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: DNAinfo
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.044
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.8333333
+ value: 0.044
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.98333335
+ value: 0.044
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 3
+ value: 0.044
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: 0.044
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: DNAinfo
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.8333333
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 0.98333335
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 3
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 6
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: DNAinfo
+ classID: 4
+ script: {fileID: 0}
+ m_EulerEditorCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve: []
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalEulerAngles.x
+ path: SecurityRoomHologramDNA
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve: []
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalEulerAngles.y
+ path: SecurityRoomHologramDNA
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve: []
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalEulerAngles.z
+ path: SecurityRoomHologramDNA
+ classID: 4
+ script: {fileID: 0}
+ m_HasGenericRootTransform: 0
+ m_HasMotionFloatCurves: 0
+ m_GenerateMotionCurves: 0
+ m_Events: []
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomDNA.anim.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomDNA.anim.meta
new file mode 100644
index 00000000..0858284a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomDNA.anim.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: dfffd446e9b3ccf409dab89543c45918
+timeCreated: 1473430589
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomInfoBoard.anim b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomInfoBoard.anim
new file mode 100644
index 00000000..bc6337b4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomInfoBoard.anim
@@ -0,0 +1,866 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!74 &7400000
+AnimationClip:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomInfoBoard
+ serializedVersion: 6
+ m_Legacy: 0
+ m_Compressed: 0
+ m_UseHighQualityCurve: 1
+ m_RotationCurves: []
+ m_CompressedRotationCurves: []
+ m_EulerCurves: []
+ m_PositionCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0, y: 0.648, z: 0.02}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: 0, z: -0}
+ tangentMode: 0
+ - time: 1.9333333
+ value: {x: 0, y: 0.648, z: 0.02}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0.40500003, y: 0, z: -0}
+ tangentMode: 0
+ - time: 2.0666666
+ value: {x: -0.054, y: 0.648, z: 0.02}
+ inSlope: {x: -0.40500003, y: 0, z: 0}
+ outSlope: {x: 0.40499967, y: 0, z: -0}
+ tangentMode: 0
+ - time: 2.2
+ value: {x: 0, y: 0.648, z: 0.02}
+ inSlope: {x: 0.40499967, y: 0, z: 0}
+ outSlope: {x: -0, y: 0, z: -0}
+ tangentMode: 0
+ - time: 4.6666665
+ value: {x: 0, y: 0.648, z: 0.02}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Background (1)
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0, y: 0.648, z: 0.04}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: 0, z: -0}
+ tangentMode: 0
+ - time: 1.9333333
+ value: {x: 0, y: 0.648, z: 0.04}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0.57, y: 0, z: -0}
+ tangentMode: 0
+ - time: 2.0666666
+ value: {x: 0.076, y: 0.648, z: 0.04}
+ inSlope: {x: 0.57, y: 0, z: 0}
+ outSlope: {x: -0.5699995, y: 0, z: -0}
+ tangentMode: 0
+ - time: 2.2
+ value: {x: 0, y: 0.648, z: 0.04}
+ inSlope: {x: -0.5699995, y: 0, z: 0}
+ outSlope: {x: -0, y: 0, z: -0}
+ tangentMode: 0
+ - time: 4.6666665
+ value: {x: 0, y: 0.648, z: 0.04}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Background (2)
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0, y: 0.648, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: 0, z: -0}
+ tangentMode: 0
+ - time: 1.9333333
+ value: {x: 0, y: 0.648, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: 0, z: -0}
+ tangentMode: 0
+ - time: 2.2
+ value: {x: 0, y: 0.648, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -0, y: 0, z: -0}
+ tangentMode: 0
+ - time: 4.6666665
+ value: {x: 0, y: 0.648, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0.04421053}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Background
+ m_ScaleCurves: []
+ m_FloatCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0.53333336
+ value: 1
+ inSlope: 1.8749999
+ outSlope: 1.8749999
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_Color.a
+ path: Text02
+ classID: 212
+ script: {fileID: 0}
+ m_PPtrCurves:
+ - curve:
+ - time: 0
+ value: {fileID: 21300000, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.06666667
+ value: {fileID: 21300002, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.13333334
+ value: {fileID: 21300004, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.2
+ value: {fileID: 21300006, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.26666668
+ value: {fileID: 21300008, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.33333334
+ value: {fileID: 21300010, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.4
+ value: {fileID: 21300012, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.46666667
+ value: {fileID: 21300014, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.53333336
+ value: {fileID: 21300016, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.6
+ value: {fileID: 21300018, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.6666667
+ value: {fileID: 21300020, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.73333335
+ value: {fileID: 21300022, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.8
+ value: {fileID: 21300024, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.8666667
+ value: {fileID: 21300026, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 0.93333334
+ value: {fileID: 21300028, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 1
+ value: {fileID: 21300030, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 1.0666667
+ value: {fileID: 21300032, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 1.1333333
+ value: {fileID: 21300034, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 1.4666667
+ value: {fileID: 21300034, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 2.4
+ value: {fileID: 21300000, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 2.4666667
+ value: {fileID: 21300002, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 2.5333335
+ value: {fileID: 21300004, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 2.6000001
+ value: {fileID: 21300006, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 2.6666667
+ value: {fileID: 21300008, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 2.7333333
+ value: {fileID: 21300010, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 2.8000002
+ value: {fileID: 21300012, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 2.8666668
+ value: {fileID: 21300014, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 2.9333334
+ value: {fileID: 21300016, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 3
+ value: {fileID: 21300018, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 3.0666668
+ value: {fileID: 21300020, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 3.1333334
+ value: {fileID: 21300022, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 3.2
+ value: {fileID: 21300024, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 3.266667
+ value: {fileID: 21300026, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 3.3333335
+ value: {fileID: 21300028, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 3.4
+ value: {fileID: 21300030, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 3.4666667
+ value: {fileID: 21300032, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 3.5333333
+ value: {fileID: 21300034, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - time: 3.8666668
+ value: {fileID: 21300034, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ attribute: m_Sprite
+ path: Graph01
+ classID: 212
+ script: {fileID: 0}
+ - curve:
+ - time: 0
+ value: {fileID: 21300000, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.06666667
+ value: {fileID: 21300002, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.13333334
+ value: {fileID: 21300004, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.2
+ value: {fileID: 21300012, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.26666668
+ value: {fileID: 21300014, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.33333334
+ value: {fileID: 21300016, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.4
+ value: {fileID: 21300024, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.46666667
+ value: {fileID: 21300026, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.53333336
+ value: {fileID: 21300028, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.6
+ value: {fileID: 21300036, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.6666667
+ value: {fileID: 21300038, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.73333335
+ value: {fileID: 21300040, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.8
+ value: {fileID: 21300048, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.8666667
+ value: {fileID: 21300050, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.93333334
+ value: {fileID: 21300052, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1
+ value: {fileID: 21300060, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.0666667
+ value: {fileID: 21300062, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.1333333
+ value: {fileID: 21300064, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.4666667
+ value: {fileID: 21300064, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.5333333
+ value: {fileID: 21300052, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.6
+ value: {fileID: 21300050, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.6666666
+ value: {fileID: 21300048, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.7333333
+ value: {fileID: 21300040, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.8
+ value: {fileID: 21300038, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.8666667
+ value: {fileID: 21300036, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.9333333
+ value: {fileID: 21300028, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2
+ value: {fileID: 21300026, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.2666667
+ value: {fileID: 21300000, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.4
+ value: {fileID: 21300000, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.4666667
+ value: {fileID: 21300002, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.5333335
+ value: {fileID: 21300004, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.6000001
+ value: {fileID: 21300012, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.6666667
+ value: {fileID: 21300014, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.7333333
+ value: {fileID: 21300016, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.8000002
+ value: {fileID: 21300024, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.8666668
+ value: {fileID: 21300026, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.9333334
+ value: {fileID: 21300028, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3
+ value: {fileID: 21300036, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.0666668
+ value: {fileID: 21300038, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.1333334
+ value: {fileID: 21300040, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.2
+ value: {fileID: 21300048, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.266667
+ value: {fileID: 21300050, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.3333335
+ value: {fileID: 21300052, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.4
+ value: {fileID: 21300060, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.4666667
+ value: {fileID: 21300062, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.5333333
+ value: {fileID: 21300064, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.8666668
+ value: {fileID: 21300064, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.9333334
+ value: {fileID: 21300052, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4
+ value: {fileID: 21300050, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4.0666666
+ value: {fileID: 21300048, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4.133333
+ value: {fileID: 21300040, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4.2
+ value: {fileID: 21300038, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4.266667
+ value: {fileID: 21300036, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4.3333335
+ value: {fileID: 21300028, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4.4
+ value: {fileID: 21300026, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4.666667
+ value: {fileID: 21300000, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ attribute: m_Sprite
+ path: Text01
+ classID: 212
+ script: {fileID: 0}
+ - curve:
+ - time: 0
+ value: {fileID: 21300006, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.13333334
+ value: {fileID: 21300008, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.26666668
+ value: {fileID: 21300010, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.4
+ value: {fileID: 21300018, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.53333336
+ value: {fileID: 21300020, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.6666667
+ value: {fileID: 21300022, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.8
+ value: {fileID: 21300030, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 0.93333334
+ value: {fileID: 21300032, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.0666667
+ value: {fileID: 21300034, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.2
+ value: {fileID: 21300042, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.3333334
+ value: {fileID: 21300044, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.4666667
+ value: {fileID: 21300046, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.6
+ value: {fileID: 21300054, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.7333333
+ value: {fileID: 21300056, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 1.8666667
+ value: {fileID: 21300058, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2
+ value: {fileID: 21300066, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.1333334
+ value: {fileID: 21300068, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.2666667
+ value: {fileID: 21300070, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.4
+ value: {fileID: 21300006, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.5333335
+ value: {fileID: 21300008, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.6666667
+ value: {fileID: 21300010, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.8000002
+ value: {fileID: 21300018, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 2.9333334
+ value: {fileID: 21300020, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.0666668
+ value: {fileID: 21300022, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.2
+ value: {fileID: 21300030, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.3333335
+ value: {fileID: 21300032, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.4666667
+ value: {fileID: 21300034, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.6000001
+ value: {fileID: 21300042, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.7333336
+ value: {fileID: 21300044, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 3.8666668
+ value: {fileID: 21300046, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4
+ value: {fileID: 21300054, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4.133333
+ value: {fileID: 21300056, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4.266667
+ value: {fileID: 21300058, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4.4
+ value: {fileID: 21300066, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4.533334
+ value: {fileID: 21300068, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - time: 4.666667
+ value: {fileID: 21300070, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ attribute: m_Sprite
+ path: Text02
+ classID: 212
+ script: {fileID: 0}
+ m_SampleRate: 15
+ m_WrapMode: 0
+ m_Bounds:
+ m_Center: {x: 0, y: 0, z: 0}
+ m_Extent: {x: 0, y: 0, z: 0}
+ m_ClipBindingConstant:
+ genericBindings:
+ - path: 2550843162
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3005715673
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 4080383872
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2649570547
+ attribute: 304273561
+ script: {fileID: 0}
+ classID: 212
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1562077811
+ attribute: 0
+ script: {fileID: 0}
+ classID: 212
+ customType: 23
+ isPPtrCurve: 1
+ - path: 82079049
+ attribute: 0
+ script: {fileID: 0}
+ classID: 212
+ customType: 23
+ isPPtrCurve: 1
+ - path: 2649570547
+ attribute: 0
+ script: {fileID: 0}
+ classID: 212
+ customType: 23
+ isPPtrCurve: 1
+ pptrCurveMapping:
+ - {fileID: 21300000, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300002, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300004, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300006, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300008, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300010, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300012, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300014, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300016, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300018, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300020, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300022, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300024, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300026, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300028, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300030, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300032, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300034, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300034, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300000, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300002, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300004, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300006, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300008, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300010, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300012, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300014, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300016, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300018, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300020, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300022, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300024, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300026, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300028, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300030, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300032, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300034, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300034, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ - {fileID: 21300000, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300002, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300004, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300012, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300014, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300016, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300024, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300026, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300028, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300036, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300038, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300040, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300048, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300050, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300052, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300060, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300062, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300064, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300064, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300052, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300050, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300048, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300040, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300038, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300036, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300028, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300026, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300000, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300000, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300002, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300004, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300012, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300014, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300016, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300024, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300026, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300028, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300036, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300038, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300040, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300048, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300050, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300052, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300060, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300062, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300064, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300064, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300052, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300050, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300048, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300040, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300038, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300036, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300028, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300026, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300000, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300006, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300008, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300010, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300018, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300020, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300022, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300030, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300032, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300034, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300042, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300044, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300046, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300054, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300056, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300058, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300066, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300068, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300070, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300006, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300008, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300010, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300018, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300020, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300022, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300030, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300032, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300034, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300042, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300044, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300046, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300054, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300056, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300058, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300066, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300068, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ - {fileID: 21300070, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ m_AnimationClipSettings:
+ serializedVersion: 2
+ m_AdditiveReferencePoseClip: {fileID: 0}
+ m_AdditiveReferencePoseTime: 0
+ m_StartTime: 0
+ m_StopTime: 4.7333336
+ m_OrientationOffsetY: 0
+ m_Level: 0
+ m_CycleOffset: 0
+ m_HasAdditiveReferencePose: 0
+ m_LoopTime: 1
+ m_LoopBlend: 0
+ m_LoopBlendOrientation: 0
+ m_LoopBlendPositionY: 0
+ m_LoopBlendPositionXZ: 0
+ m_KeepOriginalOrientation: 0
+ m_KeepOriginalPositionY: 1
+ m_KeepOriginalPositionXZ: 0
+ m_HeightFromFeet: 0
+ m_Mirror: 0
+ m_EditorCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.9333333
+ value: 0
+ inSlope: 0
+ outSlope: -0.40500003
+ tangentMode: 21
+ - time: 2.0666666
+ value: -0.054
+ inSlope: -0.40500003
+ outSlope: 0.40499967
+ tangentMode: 21
+ - time: 2.2
+ value: 0
+ inSlope: 0.40499967
+ outSlope: -0
+ tangentMode: 21
+ - time: 4.6666665
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Background (1)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.9333333
+ value: 0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.0666666
+ value: 0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.2
+ value: 0.02
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 4.6666665
+ value: 0.02
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Background (1)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.9333333
+ value: 0
+ inSlope: 0
+ outSlope: 0.57
+ tangentMode: 21
+ - time: 2.0666666
+ value: 0.076
+ inSlope: 0.57
+ outSlope: -0.5699995
+ tangentMode: 21
+ - time: 2.2
+ value: 0
+ inSlope: -0.5699995
+ outSlope: -0
+ tangentMode: 21
+ - time: 4.6666665
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Background (2)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.9333333
+ value: 0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.0666666
+ value: 0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.2
+ value: 0.04
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 4.6666665
+ value: 0.04
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Background (2)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.9333333
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.2
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 4.6666665
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Background
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.9333333
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 2.2
+ value: 0
+ inSlope: 0
+ outSlope: -0
+ tangentMode: 21
+ - time: 4.6666665
+ value: 0
+ inSlope: 0
+ outSlope: 0.04421053
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Background
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0.53333336
+ value: 1
+ inSlope: 1.8749999
+ outSlope: 1.8749999
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_Color.a
+ path: Text02
+ classID: 212
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.648
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Background
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.648
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Background (1)
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.648
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Background (2)
+ classID: 4
+ script: {fileID: 0}
+ m_EulerEditorCurves: []
+ m_HasGenericRootTransform: 0
+ m_HasMotionFloatCurves: 0
+ m_GenerateMotionCurves: 0
+ m_Events: []
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomInfoBoard.anim.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomInfoBoard.anim.meta
new file mode 100644
index 00000000..ec951045
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomInfoBoard.anim.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1200044f35df5ec43a9f8b62a56e91fa
+timeCreated: 1473335262
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomScreen.anim b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomScreen.anim
new file mode 100644
index 00000000..65766207
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomScreen.anim
@@ -0,0 +1,184 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!74 &7400000
+AnimationClip:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomScreen
+ serializedVersion: 6
+ m_Legacy: 0
+ m_Compressed: 0
+ m_UseHighQualityCurve: 1
+ m_RotationCurves: []
+ m_CompressedRotationCurves: []
+ m_EulerCurves: []
+ m_PositionCurves: []
+ m_ScaleCurves: []
+ m_FloatCurves: []
+ m_PPtrCurves:
+ - curve:
+ - time: 0
+ value: {fileID: 21300000, guid: 0830a10b0f3522d4ca4224db25284f8f, type: 3}
+ - time: 0.083333336
+ value: {fileID: 21300000, guid: f66061c76a1f1bb48bdf25ee9aca1642, type: 3}
+ - time: 0.16666667
+ value: {fileID: 21300000, guid: f160348cac8b9db40ae286f6cf0981ce, type: 3}
+ - time: 0.25
+ value: {fileID: 21300000, guid: 40586783d6731c84794463483874ff75, type: 3}
+ - time: 0.33333334
+ value: {fileID: 21300000, guid: 00deaf26506364c49afb29da95188293, type: 3}
+ - time: 0.41666666
+ value: {fileID: 21300000, guid: 2df9c312e4cf878428b77e90bebbc172, type: 3}
+ - time: 0.5
+ value: {fileID: 21300000, guid: 822685cc96a73e4499fc770fcae5b264, type: 3}
+ - time: 0.5833333
+ value: {fileID: 21300000, guid: 531c383e3b0af1a4dbd4b06bf3903cb9, type: 3}
+ - time: 0.6666667
+ value: {fileID: 21300000, guid: 1429a7bd5cce78e4984143bef9c49a35, type: 3}
+ - time: 0.75
+ value: {fileID: 21300000, guid: db5629c439867a14e9424bf8b61b2e1e, type: 3}
+ - time: 0.8333333
+ value: {fileID: 21300000, guid: efe55a40b8ff01f48b821846077e005f, type: 3}
+ - time: 0.9166667
+ value: {fileID: 21300000, guid: 84f255ab9164975428f0be8e832e35c2, type: 3}
+ - time: 1
+ value: {fileID: 21300000, guid: 0f5c1b0e17d0bca4986bc684bb1da165, type: 3}
+ - time: 1.0833334
+ value: {fileID: 21300000, guid: a4f9ea00a952af54296a8615a4a827e4, type: 3}
+ - time: 1.1666666
+ value: {fileID: 21300000, guid: a2983f088c0a8a84aa962efd0f6c8d49, type: 3}
+ - time: 1.25
+ value: {fileID: 21300000, guid: a98b990fb535d804cab2b2a08bedac00, type: 3}
+ - time: 1.3333334
+ value: {fileID: 21300000, guid: 1827904c17385ba45846c01c4a320181, type: 3}
+ - time: 1.4166666
+ value: {fileID: 21300000, guid: 7ac88b6a9c611154da0765a0ee9141a8, type: 3}
+ - time: 1.5
+ value: {fileID: 21300000, guid: 9c544a5e779d11f498a6795f640c7c5a, type: 3}
+ - time: 1.5833334
+ value: {fileID: 21300000, guid: a67f8f2333730e94b8f305e9b8112a0a, type: 3}
+ - time: 1.6666666
+ value: {fileID: 21300000, guid: 1ce54dfe78fdd014ea7a810de468bb1b, type: 3}
+ - time: 1.75
+ value: {fileID: 21300000, guid: f4e99a06510b3f34a95d615c1779e3d0, type: 3}
+ - time: 1.8333334
+ value: {fileID: 21300000, guid: 8804f5f22f28c17408c180c27a933992, type: 3}
+ - time: 1.9166666
+ value: {fileID: 21300000, guid: b96ec4933e8a2394ca51771f206d41a1, type: 3}
+ - time: 2
+ value: {fileID: 21300000, guid: bf1256d4e3b31c8429640a4b4415f068, type: 3}
+ - time: 2.0833333
+ value: {fileID: 21300000, guid: b3dfea5171cb2784caccba6db300fc25, type: 3}
+ - time: 2.1666667
+ value: {fileID: 21300000, guid: fdbd020453eaaca42b17f5639797ac46, type: 3}
+ - time: 2.25
+ value: {fileID: 21300000, guid: 2f5b531c2d93df645b3abff0f0197487, type: 3}
+ - time: 2.3333333
+ value: {fileID: 21300000, guid: 0131f331964b9eb4a8c78d6f50aa7576, type: 3}
+ - time: 2.4166667
+ value: {fileID: 21300000, guid: 1999ea5a562968846af91228d250b095, type: 3}
+ - time: 2.5
+ value: {fileID: 21300000, guid: c8114a7be7bba6348b1fc589af04176e, type: 3}
+ - time: 2.5833333
+ value: {fileID: 21300000, guid: 28e7865eda8d1924b95b8e990ae68652, type: 3}
+ - time: 2.6666667
+ value: {fileID: 21300000, guid: fd9f9681fe2710240bc3524596797386, type: 3}
+ - time: 2.75
+ value: {fileID: 21300000, guid: e7c313c128b458341877e26806ef19b5, type: 3}
+ - time: 2.8333333
+ value: {fileID: 21300000, guid: 6b4f2256a6db01e4f88196c8e85a1e12, type: 3}
+ - time: 2.9166667
+ value: {fileID: 21300000, guid: aaeaf4e6d0ef1104f8c0f4d2764067e1, type: 3}
+ - time: 3
+ value: {fileID: 21300000, guid: 735af51b6711a654282899dfd1a4ffca, type: 3}
+ - time: 3.0833333
+ value: {fileID: 21300000, guid: 31c9236435db09a46b1830c0bc85b750, type: 3}
+ - time: 3.1666667
+ value: {fileID: 21300000, guid: 91934fe1864cd75439ad27e4bdda02e2, type: 3}
+ - time: 3.25
+ value: {fileID: 21300000, guid: 9f8052982c021e5469e1f532f9b944ab, type: 3}
+ attribute: m_Sprite
+ path:
+ classID: 212
+ script: {fileID: 0}
+ m_SampleRate: 12
+ m_WrapMode: 0
+ m_Bounds:
+ m_Center: {x: 0, y: 0, z: 0}
+ m_Extent: {x: 0, y: 0, z: 0}
+ m_ClipBindingConstant:
+ genericBindings:
+ - path: 0
+ attribute: 0
+ script: {fileID: 0}
+ classID: 212
+ customType: 23
+ isPPtrCurve: 1
+ pptrCurveMapping:
+ - {fileID: 21300000, guid: 0830a10b0f3522d4ca4224db25284f8f, type: 3}
+ - {fileID: 21300000, guid: f66061c76a1f1bb48bdf25ee9aca1642, type: 3}
+ - {fileID: 21300000, guid: f160348cac8b9db40ae286f6cf0981ce, type: 3}
+ - {fileID: 21300000, guid: 40586783d6731c84794463483874ff75, type: 3}
+ - {fileID: 21300000, guid: 00deaf26506364c49afb29da95188293, type: 3}
+ - {fileID: 21300000, guid: 2df9c312e4cf878428b77e90bebbc172, type: 3}
+ - {fileID: 21300000, guid: 822685cc96a73e4499fc770fcae5b264, type: 3}
+ - {fileID: 21300000, guid: 531c383e3b0af1a4dbd4b06bf3903cb9, type: 3}
+ - {fileID: 21300000, guid: 1429a7bd5cce78e4984143bef9c49a35, type: 3}
+ - {fileID: 21300000, guid: db5629c439867a14e9424bf8b61b2e1e, type: 3}
+ - {fileID: 21300000, guid: efe55a40b8ff01f48b821846077e005f, type: 3}
+ - {fileID: 21300000, guid: 84f255ab9164975428f0be8e832e35c2, type: 3}
+ - {fileID: 21300000, guid: 0f5c1b0e17d0bca4986bc684bb1da165, type: 3}
+ - {fileID: 21300000, guid: a4f9ea00a952af54296a8615a4a827e4, type: 3}
+ - {fileID: 21300000, guid: a2983f088c0a8a84aa962efd0f6c8d49, type: 3}
+ - {fileID: 21300000, guid: a98b990fb535d804cab2b2a08bedac00, type: 3}
+ - {fileID: 21300000, guid: 1827904c17385ba45846c01c4a320181, type: 3}
+ - {fileID: 21300000, guid: 7ac88b6a9c611154da0765a0ee9141a8, type: 3}
+ - {fileID: 21300000, guid: 9c544a5e779d11f498a6795f640c7c5a, type: 3}
+ - {fileID: 21300000, guid: a67f8f2333730e94b8f305e9b8112a0a, type: 3}
+ - {fileID: 21300000, guid: 1ce54dfe78fdd014ea7a810de468bb1b, type: 3}
+ - {fileID: 21300000, guid: f4e99a06510b3f34a95d615c1779e3d0, type: 3}
+ - {fileID: 21300000, guid: 8804f5f22f28c17408c180c27a933992, type: 3}
+ - {fileID: 21300000, guid: b96ec4933e8a2394ca51771f206d41a1, type: 3}
+ - {fileID: 21300000, guid: bf1256d4e3b31c8429640a4b4415f068, type: 3}
+ - {fileID: 21300000, guid: b3dfea5171cb2784caccba6db300fc25, type: 3}
+ - {fileID: 21300000, guid: fdbd020453eaaca42b17f5639797ac46, type: 3}
+ - {fileID: 21300000, guid: 2f5b531c2d93df645b3abff0f0197487, type: 3}
+ - {fileID: 21300000, guid: 0131f331964b9eb4a8c78d6f50aa7576, type: 3}
+ - {fileID: 21300000, guid: 1999ea5a562968846af91228d250b095, type: 3}
+ - {fileID: 21300000, guid: c8114a7be7bba6348b1fc589af04176e, type: 3}
+ - {fileID: 21300000, guid: 28e7865eda8d1924b95b8e990ae68652, type: 3}
+ - {fileID: 21300000, guid: fd9f9681fe2710240bc3524596797386, type: 3}
+ - {fileID: 21300000, guid: e7c313c128b458341877e26806ef19b5, type: 3}
+ - {fileID: 21300000, guid: 6b4f2256a6db01e4f88196c8e85a1e12, type: 3}
+ - {fileID: 21300000, guid: aaeaf4e6d0ef1104f8c0f4d2764067e1, type: 3}
+ - {fileID: 21300000, guid: 735af51b6711a654282899dfd1a4ffca, type: 3}
+ - {fileID: 21300000, guid: 31c9236435db09a46b1830c0bc85b750, type: 3}
+ - {fileID: 21300000, guid: 91934fe1864cd75439ad27e4bdda02e2, type: 3}
+ - {fileID: 21300000, guid: 9f8052982c021e5469e1f532f9b944ab, type: 3}
+ m_AnimationClipSettings:
+ serializedVersion: 2
+ m_AdditiveReferencePoseClip: {fileID: 0}
+ m_AdditiveReferencePoseTime: 0
+ m_StartTime: 0
+ m_StopTime: 3.3333333
+ m_OrientationOffsetY: 0
+ m_Level: 0
+ m_CycleOffset: 0
+ m_HasAdditiveReferencePose: 0
+ m_LoopTime: 1
+ m_LoopBlend: 0
+ m_LoopBlendOrientation: 0
+ m_LoopBlendPositionY: 0
+ m_LoopBlendPositionXZ: 0
+ m_KeepOriginalOrientation: 0
+ m_KeepOriginalPositionY: 1
+ m_KeepOriginalPositionXZ: 0
+ m_HeightFromFeet: 0
+ m_Mirror: 0
+ m_EditorCurves: []
+ m_EulerEditorCurves: []
+ m_HasGenericRootTransform: 0
+ m_HasMotionFloatCurves: 0
+ m_GenerateMotionCurves: 0
+ m_Events: []
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomScreen.anim.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomScreen.anim.meta
new file mode 100644
index 00000000..0737c220
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Environment/SecurityRoomScreen.anim.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c74cd37dcaaf102469a7cedb7dc19a38
+timeCreated: 1462790458
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC.meta
new file mode 100644
index 00000000..72000099
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: aa0fd1d8a57847f4094fd2dfae29a65d
+folderAsset: yes
+timeCreated: 1462959861
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeeBotMakeCoffeeShort.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeeBotMakeCoffeeShort.fbx
new file mode 100644
index 00000000..e922c885
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeeBotMakeCoffeeShort.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeeBotMakeCoffeeShort.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeeBotMakeCoffeeShort.fbx.meta
new file mode 100644
index 00000000..335d6a12
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeeBotMakeCoffeeShort.fbx.meta
@@ -0,0 +1,337 @@
+fileFormatVersion: 2
+guid: 751b7715d7efabd419908ce4c48ea3bf
+timeCreated: 1461150837
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: //RootNode
+ 100002: Controls
+ 100004: Head
+ 100006: HeadEnd
+ 100008: Housing
+ 100010: HousingLeftDoor1
+ 100012: HousingLeftDoor2
+ 100014: HousingLeftDoorEnd
+ 100016: HousingRightDoor1
+ 100018: HousingRightDoor2
+ 100020: HousingRightDoorEnd
+ 100022: LeftArm1
+ 100024: LeftArm2
+ 100026: LeftArm3
+ 100028: LeftArm4
+ 100030: LeftArm5
+ 100032: LeftArm6
+ 100034: LeftArmEnd
+ 100036: LeftEye
+ 100038: LeftIndex1
+ 100040: LeftIndex2
+ 100042: LeftIndex3
+ 100044: LeftIndexEnd
+ 100046: LeftMiddle1
+ 100048: LeftMiddle2
+ 100050: LeftMiddle3
+ 100052: LeftMiddleEnd
+ 100054: LeftThumb1
+ 100056: LeftThumb2
+ 100058: LeftThumb3
+ 100060: LeftThumbEnd
+ 100062: Lid
+ 100064: LidEnd
+ 100066: RightArm1
+ 100068: RightArm2
+ 100070: RightArm3
+ 100072: RightArm4
+ 100074: RightArm5
+ 100076: RightArm6
+ 100078: RightArmEnd
+ 100080: RightEye
+ 100082: RightIndex1
+ 100084: RightIndex2
+ 100086: RightIndex3
+ 100088: RightIndexEnd
+ 100090: RightMiddle1
+ 100092: RightMiddle2
+ 100094: RightMiddle3
+ 100096: RightMiddleEnd
+ 100098: RightThumb1
+ 100100: RightThumb2
+ 100102: RightThumb3
+ 100104: RightThumbEnd
+ 100106: Skeleton
+ 100108: Spine1
+ 100110: spine2
+ 100112: Tongue
+ 100114: Tooth
+ 100116: ToothEnd
+ 400000: //RootNode
+ 400002: Controls
+ 400004: Head
+ 400006: HeadEnd
+ 400008: Housing
+ 400010: HousingLeftDoor1
+ 400012: HousingLeftDoor2
+ 400014: HousingLeftDoorEnd
+ 400016: HousingRightDoor1
+ 400018: HousingRightDoor2
+ 400020: HousingRightDoorEnd
+ 400022: LeftArm1
+ 400024: LeftArm2
+ 400026: LeftArm3
+ 400028: LeftArm4
+ 400030: LeftArm5
+ 400032: LeftArm6
+ 400034: LeftArmEnd
+ 400036: LeftEye
+ 400038: LeftIndex1
+ 400040: LeftIndex2
+ 400042: LeftIndex3
+ 400044: LeftIndexEnd
+ 400046: LeftMiddle1
+ 400048: LeftMiddle2
+ 400050: LeftMiddle3
+ 400052: LeftMiddleEnd
+ 400054: LeftThumb1
+ 400056: LeftThumb2
+ 400058: LeftThumb3
+ 400060: LeftThumbEnd
+ 400062: Lid
+ 400064: LidEnd
+ 400066: RightArm1
+ 400068: RightArm2
+ 400070: RightArm3
+ 400072: RightArm4
+ 400074: RightArm5
+ 400076: RightArm6
+ 400078: RightArmEnd
+ 400080: RightEye
+ 400082: RightIndex1
+ 400084: RightIndex2
+ 400086: RightIndex3
+ 400088: RightIndexEnd
+ 400090: RightMiddle1
+ 400092: RightMiddle2
+ 400094: RightMiddle3
+ 400096: RightMiddleEnd
+ 400098: RightThumb1
+ 400100: RightThumb2
+ 400102: RightThumb3
+ 400104: RightThumbEnd
+ 400106: Skeleton
+ 400108: Spine1
+ 400110: spine2
+ 400112: Tongue
+ 400114: Tooth
+ 400116: ToothEnd
+ 7400000: CoffeeBotMakeCoffeeShort
+ 9500000: //RootNode
+ materials:
+ importMaterials: 0
+ materialName: 0
+ materialSearch: 1
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: CoffeeBotMakeCoffeeShort
+ takeName: Take 001
+ firstFrame: 1
+ lastFrame: 62
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 0
+ loopBlend: 0
+ loopBlendOrientation: 0
+ loopBlendPositionY: 0
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 1
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Housing
+ weight: 1
+ - path: Skeleton/Housing/HousingLeftDoor1
+ weight: 1
+ - path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ weight: 1
+ - path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2/HousingLeftDoorEnd
+ weight: 1
+ - path: Skeleton/Housing/HousingRightDoor1
+ weight: 1
+ - path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ weight: 1
+ - path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2/HousingRightDoorEnd
+ weight: 1
+ - path: Skeleton/Housing/Lid
+ weight: 1
+ - path: Skeleton/Housing/Lid/LidEnd
+ weight: 1
+ - path: Skeleton/Spine1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEnd
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEnd
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3/RightIndexEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 1
+ - path: Skeleton/Spine1/spine2
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/HeadEnd
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/LeftEye
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/RightEye
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/Tooth
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/Tooth/ToothEnd
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Tongue
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeeBotSpawnIdleRest.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeeBotSpawnIdleRest.fbx
new file mode 100644
index 00000000..5200d39e
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeeBotSpawnIdleRest.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeeBotSpawnIdleRest.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeeBotSpawnIdleRest.fbx.meta
new file mode 100644
index 00000000..1e7a7754
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeeBotSpawnIdleRest.fbx.meta
@@ -0,0 +1,857 @@
+fileFormatVersion: 2
+guid: 9b598a6cc027c434b8d1d759d3612738
+timeCreated: 1460458008
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Body
+ 100002: //RootNode
+ 100004: ControlLeftDoorOrient
+ 100006: ControlLeftIndex1
+ 100008: ControlLeftIndex2
+ 100010: ControlLeftIndex3
+ 100012: ControlLeftMiddle1
+ 100014: ControlLeftMiddle2
+ 100016: ControlLeftMiddle3
+ 100018: ControlLeftThumb1
+ 100020: ControlLeftThumb2
+ 100022: ControlLeftThumb3
+ 100024: ControlLeftThumbOrient
+ 100026: ControlRightDoorOrient
+ 100028: ControlRightsIndex1
+ 100030: Controls
+ 100032: ControlsBody
+ 100034: ControlsHead
+ 100036: ControlsHousingLeftDoor1
+ 100038: ControlsHousingLeftDoor2
+ 100040: ControlsHousingRightDoor1
+ 100042: ControlsHousingRightDoor2
+ 100044: ControlsLeftArm1
+ 100046: ControlsLeftArm2
+ 100048: ControlsLeftArm3
+ 100050: ControlsLeftArm4
+ 100052: ControlsLeftArm5
+ 100054: ControlsLeftArm6
+ 100056: ControlsLeftEye
+ 100058: ControlsLid
+ 100060: ControlsLidOrient
+ 100062: ControlsRightArm1
+ 100064: ControlsRightArm2
+ 100066: ControlsRightArm3
+ 100068: ControlsRightArm4
+ 100070: ControlsRightArm5
+ 100072: ControlsRightArm6
+ 100074: ControlsRightEye
+ 100076: ControlsRightIndex2
+ 100078: ControlsRightIndex3
+ 100080: ControlsRightMiddle1
+ 100082: ControlsRightMiddle2
+ 100084: ControlsRightMiddle3
+ 100086: ControlsRightThumb1
+ 100088: ControlsRightThumb2
+ 100090: ControlsRightThumb3
+ 100092: ControlsSpine1
+ 100094: ControlsTongue
+ 100096: ControlsTooth
+ 100098: group1
+ 100100: Head
+ 100102: HeadEnd
+ 100104: Housing
+ 100106: HousingLeftDoor1
+ 100108: HousingLeftDoor2
+ 100110: HousingLeftDoorEnd
+ 100112: HousingRightDoor1
+ 100114: HousingRightDoor2
+ 100116: HousingRightDoorEnd
+ 100118: LeftArm1
+ 100120: LeftArm2
+ 100122: LeftArm3
+ 100124: LeftArm4
+ 100126: LeftArm5
+ 100128: LeftArm6
+ 100130: LeftArmEnd
+ 100132: LeftEye
+ 100134: LeftIndex1
+ 100136: LeftIndex2
+ 100138: LeftIndex3
+ 100140: LeftIndexEnd
+ 100142: LeftMiddle1
+ 100144: LeftMiddle2
+ 100146: LeftMiddle3
+ 100148: LeftMiddleEnd
+ 100150: LeftThumb1
+ 100152: LeftThumb2
+ 100154: LeftThumb3
+ 100156: LeftThumbEnd
+ 100158: Lid
+ 100160: LidEnd
+ 100162: Mesh
+ 100164: RightArm1
+ 100166: RightArm2
+ 100168: RightArm3
+ 100170: RightArm4
+ 100172: RightArm5
+ 100174: RightArm6
+ 100176: RightArmEnd
+ 100178: RightEye
+ 100180: RightIndex1
+ 100182: RightIndex2
+ 100184: RightIndex3
+ 100186: RightIndexEnd
+ 100188: RightMiddle1
+ 100190: RightMiddle2
+ 100192: RightMiddle3
+ 100194: RightMiddleEnd
+ 100196: RightThumb1
+ 100198: RightThumb2
+ 100200: RightThumb3
+ 100202: RightThumbEnd
+ 100204: Skeleton
+ 100206: Spine1
+ 100208: spine2
+ 100210: Tongue
+ 100212: Tooth
+ 100214: ToothEnd
+ 400000: Body
+ 400002: //RootNode
+ 400004: ControlLeftDoorOrient
+ 400006: ControlLeftIndex1
+ 400008: ControlLeftIndex2
+ 400010: ControlLeftIndex3
+ 400012: ControlLeftMiddle1
+ 400014: ControlLeftMiddle2
+ 400016: ControlLeftMiddle3
+ 400018: ControlLeftThumb1
+ 400020: ControlLeftThumb2
+ 400022: ControlLeftThumb3
+ 400024: ControlLeftThumbOrient
+ 400026: ControlRightDoorOrient
+ 400028: ControlRightsIndex1
+ 400030: Controls
+ 400032: ControlsBody
+ 400034: ControlsHead
+ 400036: ControlsHousingLeftDoor1
+ 400038: ControlsHousingLeftDoor2
+ 400040: ControlsHousingRightDoor1
+ 400042: ControlsHousingRightDoor2
+ 400044: ControlsLeftArm1
+ 400046: ControlsLeftArm2
+ 400048: ControlsLeftArm3
+ 400050: ControlsLeftArm4
+ 400052: ControlsLeftArm5
+ 400054: ControlsLeftArm6
+ 400056: ControlsLeftEye
+ 400058: ControlsLid
+ 400060: ControlsLidOrient
+ 400062: ControlsRightArm1
+ 400064: ControlsRightArm2
+ 400066: ControlsRightArm3
+ 400068: ControlsRightArm4
+ 400070: ControlsRightArm5
+ 400072: ControlsRightArm6
+ 400074: ControlsRightEye
+ 400076: ControlsRightIndex2
+ 400078: ControlsRightIndex3
+ 400080: ControlsRightMiddle1
+ 400082: ControlsRightMiddle2
+ 400084: ControlsRightMiddle3
+ 400086: ControlsRightThumb1
+ 400088: ControlsRightThumb2
+ 400090: ControlsRightThumb3
+ 400092: ControlsSpine1
+ 400094: ControlsTongue
+ 400096: ControlsTooth
+ 400098: group1
+ 400100: Head
+ 400102: HeadEnd
+ 400104: Housing
+ 400106: HousingLeftDoor1
+ 400108: HousingLeftDoor2
+ 400110: HousingLeftDoorEnd
+ 400112: HousingRightDoor1
+ 400114: HousingRightDoor2
+ 400116: HousingRightDoorEnd
+ 400118: LeftArm1
+ 400120: LeftArm2
+ 400122: LeftArm3
+ 400124: LeftArm4
+ 400126: LeftArm5
+ 400128: LeftArm6
+ 400130: LeftArmEnd
+ 400132: LeftEye
+ 400134: LeftIndex1
+ 400136: LeftIndex2
+ 400138: LeftIndex3
+ 400140: LeftIndexEnd
+ 400142: LeftMiddle1
+ 400144: LeftMiddle2
+ 400146: LeftMiddle3
+ 400148: LeftMiddleEnd
+ 400150: LeftThumb1
+ 400152: LeftThumb2
+ 400154: LeftThumb3
+ 400156: LeftThumbEnd
+ 400158: Lid
+ 400160: LidEnd
+ 400162: Mesh
+ 400164: RightArm1
+ 400166: RightArm2
+ 400168: RightArm3
+ 400170: RightArm4
+ 400172: RightArm5
+ 400174: RightArm6
+ 400176: RightArmEnd
+ 400178: RightEye
+ 400180: RightIndex1
+ 400182: RightIndex2
+ 400184: RightIndex3
+ 400186: RightIndexEnd
+ 400188: RightMiddle1
+ 400190: RightMiddle2
+ 400192: RightMiddle3
+ 400194: RightMiddleEnd
+ 400196: RightThumb1
+ 400198: RightThumb2
+ 400200: RightThumb3
+ 400202: RightThumbEnd
+ 400204: Skeleton
+ 400206: Spine1
+ 400208: spine2
+ 400210: Tongue
+ 400212: Tooth
+ 400214: ToothEnd
+ 2300000: ControlLeftIndex1
+ 2300002: ControlLeftIndex2
+ 2300004: ControlLeftIndex3
+ 2300006: ControlLeftMiddle1
+ 2300008: ControlLeftMiddle2
+ 2300010: ControlLeftMiddle3
+ 2300012: ControlLeftThumb1
+ 2300014: ControlLeftThumb2
+ 2300016: ControlLeftThumb3
+ 2300018: ControlRightsIndex1
+ 2300020: ControlsBody
+ 2300022: ControlsHead
+ 2300024: ControlsHousingLeftDoor1
+ 2300026: ControlsHousingLeftDoor2
+ 2300028: ControlsHousingRightDoor1
+ 2300030: ControlsHousingRightDoor2
+ 2300032: ControlsLeftArm1
+ 2300034: ControlsLeftArm2
+ 2300036: ControlsLeftArm3
+ 2300038: ControlsLeftArm4
+ 2300040: ControlsLeftArm5
+ 2300042: ControlsLeftArm6
+ 2300044: ControlsLeftEye
+ 2300046: ControlsLid
+ 2300048: ControlsRightArm1
+ 2300050: ControlsRightArm2
+ 2300052: ControlsRightArm3
+ 2300054: ControlsRightArm4
+ 2300056: ControlsRightArm5
+ 2300058: ControlsRightArm6
+ 2300060: ControlsRightEye
+ 2300062: ControlsRightIndex2
+ 2300064: ControlsRightIndex3
+ 2300066: ControlsRightMiddle1
+ 2300068: ControlsRightMiddle2
+ 2300070: ControlsRightMiddle3
+ 2300072: ControlsRightThumb1
+ 2300074: ControlsRightThumb2
+ 2300076: ControlsRightThumb3
+ 2300078: ControlsSpine1
+ 2300080: ControlsTongue
+ 2300082: ControlsTooth
+ 3300000: ControlLeftIndex1
+ 3300002: ControlLeftIndex2
+ 3300004: ControlLeftIndex3
+ 3300006: ControlLeftMiddle1
+ 3300008: ControlLeftMiddle2
+ 3300010: ControlLeftMiddle3
+ 3300012: ControlLeftThumb1
+ 3300014: ControlLeftThumb2
+ 3300016: ControlLeftThumb3
+ 3300018: ControlRightsIndex1
+ 3300020: ControlsBody
+ 3300022: ControlsHead
+ 3300024: ControlsHousingLeftDoor1
+ 3300026: ControlsHousingLeftDoor2
+ 3300028: ControlsHousingRightDoor1
+ 3300030: ControlsHousingRightDoor2
+ 3300032: ControlsLeftArm1
+ 3300034: ControlsLeftArm2
+ 3300036: ControlsLeftArm3
+ 3300038: ControlsLeftArm4
+ 3300040: ControlsLeftArm5
+ 3300042: ControlsLeftArm6
+ 3300044: ControlsLeftEye
+ 3300046: ControlsLid
+ 3300048: ControlsRightArm1
+ 3300050: ControlsRightArm2
+ 3300052: ControlsRightArm3
+ 3300054: ControlsRightArm4
+ 3300056: ControlsRightArm5
+ 3300058: ControlsRightArm6
+ 3300060: ControlsRightEye
+ 3300062: ControlsRightIndex2
+ 3300064: ControlsRightIndex3
+ 3300066: ControlsRightMiddle1
+ 3300068: ControlsRightMiddle2
+ 3300070: ControlsRightMiddle3
+ 3300072: ControlsRightThumb1
+ 3300074: ControlsRightThumb2
+ 3300076: ControlsRightThumb3
+ 3300078: ControlsSpine1
+ 3300080: ControlsTongue
+ 3300082: ControlsTooth
+ 4300000: ControlsHousingLeftDoor1
+ 4300002: ControlsHousingLeftDoor2
+ 4300004: ControlsHousingRightDoor1
+ 4300006: ControlsHousingRightDoor2
+ 4300008: ControlsLid
+ 4300010: ControlsBody
+ 4300012: ControlsSpine1
+ 4300014: ControlsHead
+ 4300016: ControlsTooth
+ 4300018: ControlsLeftEye
+ 4300020: ControlsRightEye
+ 4300022: ControlsTongue
+ 4300024: ControlsLeftArm1
+ 4300026: ControlsLeftArm2
+ 4300028: ControlsLeftArm3
+ 4300030: ControlsLeftArm4
+ 4300032: ControlsLeftArm5
+ 4300034: ControlsLeftArm6
+ 4300036: ControlLeftIndex1
+ 4300038: ControlLeftIndex2
+ 4300040: ControlLeftIndex3
+ 4300042: ControlLeftMiddle1
+ 4300044: ControlLeftMiddle2
+ 4300046: ControlLeftMiddle3
+ 4300048: ControlLeftThumb1
+ 4300050: ControlLeftThumb2
+ 4300052: ControlLeftThumb3
+ 4300054: ControlsRightArm1
+ 4300056: ControlsRightArm2
+ 4300058: ControlsRightArm3
+ 4300060: ControlsRightArm4
+ 4300062: ControlsRightArm5
+ 4300064: ControlsRightArm6
+ 4300066: ControlRightsIndex1
+ 4300068: ControlsRightIndex2
+ 4300070: ControlsRightIndex3
+ 4300072: ControlsRightMiddle1
+ 4300074: ControlsRightMiddle2
+ 4300076: ControlsRightMiddle3
+ 4300078: ControlsRightThumb1
+ 4300080: ControlsRightThumb2
+ 4300082: ControlsRightThumb3
+ 4300084: Body
+ 7400000: CoffeeBotSpawn
+ 7400002: CoffeeBotIdle
+ 7400004: CoffeeBotRest
+ 9500000: //RootNode
+ 13700000: Body
+ materials:
+ importMaterials: 0
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: CoffeeBotSpawn
+ takeName: Take 001
+ firstFrame: 0
+ lastFrame: 90
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 0
+ loopBlend: 0
+ loopBlendOrientation: 0
+ loopBlendPositionY: 0
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 1
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Housing
+ weight: 1
+ - path: Skeleton/Housing/HousingLeftDoor1
+ weight: 1
+ - path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ weight: 1
+ - path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2/HousingLeftDoorEnd
+ weight: 1
+ - path: Skeleton/Housing/HousingRightDoor1
+ weight: 1
+ - path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ weight: 1
+ - path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2/HousingRightDoorEnd
+ weight: 1
+ - path: Skeleton/Housing/Lid
+ weight: 1
+ - path: Skeleton/Housing/Lid/LidEnd
+ weight: 1
+ - path: Skeleton/Spine1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEnd
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEnd
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3/RightIndexEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 1
+ - path: Skeleton/Spine1/spine2
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/HeadEnd
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/LeftEye
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/RightEye
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/Tooth
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/Tooth/ToothEnd
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Tongue
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ - serializedVersion: 16
+ name: CoffeeBotIdle
+ takeName: Take 001
+ firstFrame: 90
+ lastFrame: 150
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 1
+ loopBlend: 1
+ loopBlendOrientation: 0
+ loopBlendPositionY: 0
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 1
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Housing
+ weight: 1
+ - path: Skeleton/Housing/HousingLeftDoor1
+ weight: 1
+ - path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ weight: 1
+ - path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2/HousingLeftDoorEnd
+ weight: 1
+ - path: Skeleton/Housing/HousingRightDoor1
+ weight: 1
+ - path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ weight: 1
+ - path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2/HousingRightDoorEnd
+ weight: 1
+ - path: Skeleton/Housing/Lid
+ weight: 1
+ - path: Skeleton/Housing/Lid/LidEnd
+ weight: 1
+ - path: Skeleton/Spine1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEnd
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEnd
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3/RightIndexEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 1
+ - path: Skeleton/Spine1/spine2
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/HeadEnd
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/LeftEye
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/RightEye
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/Tooth
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/Tooth/ToothEnd
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Tongue
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ - serializedVersion: 16
+ name: CoffeeBotRest
+ takeName: Take 001
+ firstFrame: 150
+ lastFrame: 260
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 0
+ loopBlend: 0
+ loopBlendOrientation: 0
+ loopBlendPositionY: 0
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 1
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Housing
+ weight: 1
+ - path: Skeleton/Housing/HousingLeftDoor1
+ weight: 1
+ - path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ weight: 1
+ - path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2/HousingLeftDoorEnd
+ weight: 1
+ - path: Skeleton/Housing/HousingRightDoor1
+ weight: 1
+ - path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ weight: 1
+ - path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2/HousingRightDoorEnd
+ weight: 1
+ - path: Skeleton/Housing/Lid
+ weight: 1
+ - path: Skeleton/Housing/Lid/LidEnd
+ weight: 1
+ - path: Skeleton/Spine1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEnd
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEnd
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3/RightIndexEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEnd
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 1
+ - path: Skeleton/Spine1/spine2
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/HeadEnd
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/LeftEye
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/RightEye
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/Tooth
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Head/Tooth/ToothEnd
+ weight: 1
+ - path: Skeleton/Spine1/spine2/Tongue
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeebotMakeCoffeeWithCup.anim b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeebotMakeCoffeeWithCup.anim
new file mode 100644
index 00000000..7beb11a4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeebotMakeCoffeeWithCup.anim
@@ -0,0 +1,23896 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!74 &7400000
+AnimationClip:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: CoffeebotMakeCoffeeWithCup
+ serializedVersion: 6
+ m_Legacy: 0
+ m_Compressed: 0
+ m_UseHighQualityCurve: 1
+ m_RotationCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0, y: -0, z: -0, w: 1}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0, y: -0, z: -0, w: 1}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Controls
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 0, z: 0, w: -6.123234e-17}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 0, z: 0, w: -6.123234e-17}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.63528526, y: 0, z: -0, w: 0.7722776}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.63528526, y: 0, z: -0, w: 0.7722776}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/Lid
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.9956375, y: 4.716463e-18, z: -0.09330613, w: 6.087179e-17}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.9956375, y: 4.716463e-18, z: -0.09330613, w: 6.087179e-17}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/HousingLeftDoor1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0, y: 0.07522983, z: -0, w: 0.9971662}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0, y: 0.07522983, z: -0, w: 0.9971662}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0, y: 0.008850181, z: -0, w: 0.99996084}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0, y: 0.008850181, z: -0, w: 0.99996084}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/HousingRightDoor1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0, y: -0.10557566, z: -0, w: 0.9944113}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0, y: -0.10557566, z: -0, w: 0.9944113}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.7071068, y: -0.7071068, z: -0.00000043023564, w: 0.00000013470618}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.7071068, y: -0.7071068, z: -0.00000043023564, w: 0.00000013470618}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -5.293956e-23, y: 5.293956e-23, z: 0, w: 1}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -5.293956e-23, y: 5.293956e-23, z: 0, w: 1}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/spine2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.022218876, y: -0.004152865, z: 0.0028369057, w: 0.9997405}
+ inSlope: {x: -0.55916595, y: -0.83172035, z: -0.33112505, w: -0.008661747}
+ outSlope: {x: -0.55916595, y: -0.83172035, z: -0.33112505, w: -0.008661747}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: 0.003580009, y: -0.031876877, z: -0.008200597, w: 0.99945176}
+ inSlope: {x: -0.9406162, y: -1.3123841, z: -0.48394263, w: -0.078111276}
+ outSlope: {x: -0.9406162, y: -1.3123841, z: -0.48394263, w: -0.078111276}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: -0.04048888, y: -0.09164515, z: -0.029425941, w: 0.99453306}
+ inSlope: {x: -1.3990049, y: -1.762576, z: -0.57415587, w: -0.23768395}
+ outSlope: {x: -1.3990049, y: -1.762576, z: -0.57415587, w: -0.23768395}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: -0.089687, y: -0.14938195, z: -0.046477657, w: 0.98360616}
+ inSlope: {x: -1.1860867, y: -1.2669286, z: -0.3856752, w: -0.28510365}
+ outSlope: {x: -1.1860867, y: -1.2669286, z: -0.3856752, w: -0.28510365}
+ tangentMode: 0
+ - time: 0.20000002
+ value: {x: -0.14028436, y: -0.1806259, z: -0.06394588, w: 0.9713936}
+ inSlope: {x: -0.2728683, y: -0.052121807, z: -0.11580863, w: -0.05650163}
+ outSlope: {x: -0.2728683, y: -0.052121807, z: -0.11580863, w: -0.05650163}
+ tangentMode: 0
+ - time: 0.56666666
+ value: {x: -0.18539838, y: -0.18231021, z: -0.095155716, w: 0.96090364}
+ inSlope: {x: -0.02750047, y: 0.019946247, z: -0.09902436, w: -0.011340381}
+ outSlope: {x: -0.02750047, y: 0.019946247, z: -0.09902436, w: -0.011340381}
+ tangentMode: 0
+ - time: 0.6333333
+ value: {x: -0.17419878, y: -0.16307345, z: -0.107882366, w: 0.96510273}
+ inSlope: {x: 0.6233251, y: 0.91190153, z: -0.35624635, w: 0.2084201}
+ outSlope: {x: 0.6233251, y: 0.91190153, z: -0.35624635, w: 0.2084201}
+ tangentMode: 0
+ - time: 0.7
+ value: {x: -0.11007525, y: -0.07324017, z: -0.13424335, w: 0.9820886}
+ inSlope: {x: 0.8990264, y: 1.2184753, z: -0.26525646, w: 0.16939318}
+ outSlope: {x: 0.8990264, y: 1.2184753, z: -0.26525646, w: 0.16939318}
+ tangentMode: 0
+ - time: 0.8
+ value: {x: -0.053301275, y: -0.0014782596, z: -0.11885085, w: 0.99147934}
+ inSlope: {x: 0.44001436, y: 0.54473984, z: 0.63620913, w: 0.09841741}
+ outSlope: {x: 0.44001436, y: 0.54473984, z: 0.63620913, w: 0.09841741}
+ tangentMode: 0
+ - time: 0.96666664
+ value: {x: -0.005870458, y: 0.07167864, z: 0.030811155, w: 0.9969345}
+ inSlope: {x: 0.12841056, y: 0.2564489, z: 0.69017714, w: -0.035567846}
+ outSlope: {x: 0.12841056, y: 0.2564489, z: 0.69017714, w: -0.035567846}
+ tangentMode: 0
+ - time: 1.1333334
+ value: {x: 0.0047812867, y: 0.08114431, z: 0.05566165, w: 0.9951354}
+ inSlope: {x: 0.045321733, y: 0.0012307998, z: -0.02528627, w: 0.0010943423}
+ outSlope: {x: 0.045321733, y: 0.0012307998, z: -0.02528627, w: 0.0010943423}
+ tangentMode: 0
+ - time: 1.6333334
+ value: {x: 0.019426558, y: 0.07302206, z: 0.023297573, w: 0.9968689}
+ inSlope: {x: 0.016359087, y: -0.09934509, z: -0.07827003, w: 0.008685001}
+ outSlope: {x: 0.016359087, y: -0.09934509, z: -0.07827003, w: 0.008685001}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.022218876, y: -0.0041528638, z: 0.0028369064, w: 0.9997405}
+ inSlope: {x: 0.00032560932, y: -0.037824884, z: -0.006086301, w: -0.00012338173}
+ outSlope: {x: 0.00032560932, y: -0.037824884, z: -0.006086301, w: -0.00012338173}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/spine2/Head
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.000000019229727, y: 0.9988407, z: -0.0481376, w: -0.00000039901107}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.000000019229727, y: 0.9988407, z: -0.0481376, w: -0.00000039901107}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/spine2/Head/Tooth
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.3883996, y: -0.59108275, z: 0.38825226, w: 0.5907853}
+ inSlope: {x: 0.0062486525, y: -0.01304984, z: -0.0065562124, w: -0.012872814}
+ outSlope: {x: 0.0062486525, y: -0.01304984, z: -0.0065562124, w: -0.012872814}
+ tangentMode: 0
+ - time: 1.3666668
+ value: {x: 0.38679516, y: -0.61655444, z: 0.38859832, w: 0.5650147}
+ inSlope: {x: -0.09157473, y: 0.13360184, z: 0.10235678, w: 0.13790321}
+ outSlope: {x: -0.09157473, y: 0.13360184, z: 0.10235678, w: 0.13790321}
+ tangentMode: 0
+ - time: 1.5333334
+ value: {x: 0.36734122, y: -0.5867412, z: 0.4094958, w: 0.5942292}
+ inSlope: {x: -0.1447274, y: 0.22897372, z: 0.14828221, w: 0.21305393}
+ outSlope: {x: -0.1447274, y: 0.22897372, z: 0.14828221, w: 0.21305393}
+ tangentMode: 0
+ - time: 1.7333335
+ value: {x: 0.36231172, y: -0.57874453, z: 0.41458818, w: 0.6015826}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.36231172, y: -0.57874453, z: 0.41458818, w: 0.6015826}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/spine2/Head/LeftEye
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.62254167, y: -0.33532396, z: 0.6225412, w: 0.33532423}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.62254167, y: -0.33532396, z: 0.6225412, w: 0.33532423}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/spine2/Head/RightEye
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.5000005, y: -0.49999952, z: 0.49999952, w: 0.5000005}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.5000005, y: -0.49999952, z: 0.49999952, w: 0.5000005}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/spine2/Tongue
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.24799247, y: -0.3417119, z: -0.29154852, w: 0.858331}
+ inSlope: {x: 0.07253631, y: -0.14474003, z: 0.025163589, w: -0.07065117}
+ outSlope: {x: 0.07253631, y: -0.14474003, z: 0.025163589, w: -0.07065117}
+ tangentMode: 0
+ - time: 0.3
+ value: {x: 0.27954063, y: -0.40883356, z: -0.27555925, w: 0.8238807}
+ inSlope: {x: -0.024938734, y: 0.14891402, z: -0.084938414, w: 0.05332232}
+ outSlope: {x: -0.024938734, y: 0.14891402, z: -0.084938414, w: 0.05332232}
+ tangentMode: 0
+ - time: 0.56666666
+ value: {x: 0.2532194, y: -0.2856966, z: -0.3289586, w: 0.86373824}
+ inSlope: {x: -0.12364292, y: 0.48083073, z: -0.1487777, w: 0.13952765}
+ outSlope: {x: -0.12364292, y: 0.48083073, z: -0.1487777, w: 0.13952765}
+ tangentMode: 0
+ - time: 0.8333334
+ value: {x: 0.23134977, y: -0.20857471, z: -0.34732768, w: 0.88449836}
+ inSlope: {x: 0.0026996448, y: -0.017694542, z: 0.0054654507, w: -0.0027385368}
+ outSlope: {x: 0.0026996448, y: -0.017694542, z: 0.0054654507, w: -0.0027385368}
+ tangentMode: 0
+ - time: 1.7666668
+ value: {x: 0.24650206, y: -0.32643825, z: -0.2995756, w: 0.86193347}
+ inSlope: {x: 0.010730411, y: -0.10554503, z: 0.05383333, w: -0.024305306}
+ outSlope: {x: 0.010730411, y: -0.10554503, z: 0.05383333, w: -0.024305306}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.24799247, y: -0.3417119, z: -0.29154852, w: 0.858331}
+ inSlope: {x: 0.00076353626, y: -0.008153029, z: 0.0044086617, w: -0.0019669551}
+ outSlope: {x: 0.00076353626, y: -0.008153029, z: 0.0044086617, w: -0.0019669551}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.016186243, y: -0.09894265, z: 0.12453008, w: 0.9871376}
+ inSlope: {x: 0.13997489, y: -0.10214008, z: 0.028182415, w: -0.012019872}
+ outSlope: {x: 0.13997489, y: -0.10214008, z: 0.028182415, w: -0.012019872}
+ tangentMode: 0
+ - time: 0.3
+ value: {x: 0.049855907, y: -0.14633267, z: 0.14038925, w: 0.97795296}
+ inSlope: {x: -0.10920073, y: 0.103395365, z: -0.09797529, w: 0.03456563}
+ outSlope: {x: -0.10920073, y: 0.103395365, z: -0.09797529, w: 0.03456563}
+ tangentMode: 0
+ - time: 0.56666666
+ value: {x: -0.042350978, y: -0.058102325, z: 0.07278974, w: 0.99475235}
+ inSlope: {x: -0.36675528, y: 0.354064, z: -0.21561912, w: 0.021661527}
+ outSlope: {x: -0.36675528, y: 0.354064, z: -0.21561912, w: 0.021661527}
+ tangentMode: 0
+ - time: 0.8333334
+ value: {x: -0.10198604, y: -0.00026159352, z: 0.04262747, w: 0.9938721}
+ inSlope: {x: 0, y: -0.000000023137526, z: 0, w: 0}
+ outSlope: {x: 0, y: -0.000000023137526, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.6000001
+ value: {x: -0.10198604, y: -0.00026159352, z: 0.04262747, w: 0.9938721}
+ inSlope: {x: 0, y: -0.00000003492463, z: 0, w: 0}
+ outSlope: {x: 0, y: -0.00000003492463, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.8000001
+ value: {x: -0.06762088, y: -0.039473925, z: 0.07128307, w: 0.9943782}
+ inSlope: {x: 0.3183448, y: -0.364889, z: 0.28858262, w: -0.013787426}
+ outSlope: {x: 0.3183448, y: -0.364889, z: 0.28858262, w: -0.013787426}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.016186243, y: -0.09894265, z: 0.12453008, w: 0.9871376}
+ inSlope: {x: 0.04516973, y: -0.052759103, z: 0.053291745, w: -0.01113833}
+ outSlope: {x: 0.04516973, y: -0.052759103, z: 0.053291745, w: -0.01113833}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.016186243, y: -0.09894265, z: 0.12453008, w: 0.9871376}
+ inSlope: {x: 0.13997489, y: -0.10214008, z: 0.028182415, w: -0.012019872}
+ outSlope: {x: 0.13997489, y: -0.10214008, z: 0.028182415, w: -0.012019872}
+ tangentMode: 0
+ - time: 0.3
+ value: {x: 0.049855907, y: -0.14633267, z: 0.14038925, w: 0.97795296}
+ inSlope: {x: -0.10920073, y: 0.103395365, z: -0.09797529, w: 0.03456563}
+ outSlope: {x: -0.10920073, y: 0.103395365, z: -0.09797529, w: 0.03456563}
+ tangentMode: 0
+ - time: 0.56666666
+ value: {x: -0.042350978, y: -0.058102325, z: 0.07278974, w: 0.99475235}
+ inSlope: {x: -0.36675528, y: 0.354064, z: -0.21561912, w: 0.021661527}
+ outSlope: {x: -0.36675528, y: 0.354064, z: -0.21561912, w: 0.021661527}
+ tangentMode: 0
+ - time: 0.8333334
+ value: {x: -0.10198604, y: -0.00026159352, z: 0.04262747, w: 0.9938721}
+ inSlope: {x: 0, y: -0.000000023137526, z: 0, w: 0}
+ outSlope: {x: 0, y: -0.000000023137526, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.6000001
+ value: {x: -0.10198604, y: -0.00026159352, z: 0.04262747, w: 0.9938721}
+ inSlope: {x: 0, y: -0.00000003492463, z: 0, w: 0}
+ outSlope: {x: 0, y: -0.00000003492463, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.8000001
+ value: {x: -0.06762088, y: -0.039473925, z: 0.07128307, w: 0.9943782}
+ inSlope: {x: 0.3183448, y: -0.364889, z: 0.28858262, w: -0.013787426}
+ outSlope: {x: 0.3183448, y: -0.364889, z: 0.28858262, w: -0.013787426}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.016186243, y: -0.09894265, z: 0.12453008, w: 0.9871376}
+ inSlope: {x: 0.04516973, y: -0.052759103, z: 0.053291745, w: -0.01113833}
+ outSlope: {x: 0.04516973, y: -0.052759103, z: 0.053291745, w: -0.01113833}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.084592946, y: -0.11793298, z: 0.20018956, w: 0.9689479}
+ inSlope: {x: -0.14506972, y: 0.8006429, z: 0.4238574, w: -0.017271638}
+ outSlope: {x: -0.14506972, y: 0.8006429, z: 0.4238574, w: -0.017271638}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: -0.0894286, y: -0.091244884, z: 0.21431814, w: 0.96837217}
+ inSlope: {x: -0.17214248, y: 1.1278228, z: 0.62053967, w: -0.06413161}
+ outSlope: {x: -0.17214248, y: 1.1278228, z: 0.62053967, w: -0.06413161}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: -0.09606911, y: -0.042744786, z: 0.24155888, w: 0.96467245}
+ inSlope: {x: -0.13374655, y: 1.1095037, z: 0.63536096, w: -0.10569513}
+ outSlope: {x: -0.13374655, y: 1.1095037, z: 0.63536096, w: -0.10569513}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: -0.09834504, y: -0.017277956, z: 0.25667554, w: 0.9613258}
+ inSlope: {x: 0.06279789, y: 0.2226137, z: 0.16999976, w: -0.029327275}
+ outSlope: {x: 0.06279789, y: 0.2226137, z: 0.16999976, w: -0.029327275}
+ tangentMode: 0
+ - time: 0.16666669
+ value: {x: -0.075064614, y: -0.05540191, z: 0.24413955, w: 0.96524185}
+ inSlope: {x: 0.5338511, y: -0.8504019, z: -0.2451646, w: 0.053615555}
+ outSlope: {x: 0.5338511, y: -0.8504019, z: -0.2451646, w: 0.053615555}
+ tangentMode: 0
+ - time: 0.23333335
+ value: {x: -0.0357327, y: -0.11857677, z: 0.22941981, w: 0.96541667}
+ inSlope: {x: 0.64460087, y: -1.1387593, z: -0.21100336, w: -0.07126988}
+ outSlope: {x: 0.64460087, y: -1.1387593, z: -0.21100336, w: -0.07126988}
+ tangentMode: 0
+ - time: 0.26666668
+ value: {x: -0.013319119, y: -0.16051462, z: 0.222481, w: 0.96154034}
+ inSlope: {x: 0.8702769, y: -2.1173863, z: -0.30540484, w: -0.34352306}
+ outSlope: {x: 0.8702769, y: -2.1173863, z: -0.30540484, w: -0.34352306}
+ tangentMode: 0
+ - time: 0.3
+ value: {x: 0.022285758, y: -0.25973585, z: 0.20905949, w: 0.94251513}
+ inSlope: {x: 0.535623, y: -1.4830083, z: -0.29179418, w: -0.26419047}
+ outSlope: {x: 0.535623, y: -1.4830083, z: -0.29179418, w: -0.26419047}
+ tangentMode: 0
+ - time: 0.33333334
+ value: {x: 0.02238908, y: -0.25938183, z: 0.20302805, w: 0.94392765}
+ inSlope: {x: -0.045817815, y: 0.04535478, z: -0.18163264, w: 0.05245862}
+ outSlope: {x: -0.045817815, y: 0.04535478, z: -0.18163264, w: 0.05245862}
+ tangentMode: 0
+ - time: 0.6
+ value: {x: -0.056708883, y: -0.18672365, z: 0.15011257, w: 0.96921855}
+ inSlope: {x: -0.4796188, y: 0.5047556, z: -0.24492417, w: 0.104366556}
+ outSlope: {x: -0.4796188, y: 0.5047556, z: -0.24492417, w: 0.104366556}
+ tangentMode: 0
+ - time: 0.73333335
+ value: {x: -0.15617187, y: -0.08054204, z: 0.116326526, w: 0.9775436}
+ inSlope: {x: -0.6834379, y: 0.85809994, z: -0.16690814, w: -0.014336395}
+ outSlope: {x: -0.6834379, y: 0.85809994, z: -0.16690814, w: -0.014336395}
+ tangentMode: 0
+ - time: 0.90000004
+ value: {x: -0.17915472, y: -0.0014993157, z: 0.093809865, w: 0.97933704}
+ inSlope: {x: 0.015320329, y: 0.23661482, z: -0.16637823, w: 0.019308329}
+ outSlope: {x: 0.015320329, y: 0.23661482, z: -0.16637823, w: 0.019308329}
+ tangentMode: 0
+ - time: 1.1333334
+ value: {x: -0.1758443, y: 0.020093173, z: 0.06563755, w: 0.98202175}
+ inSlope: {x: 0.031798065, y: -0.05682609, z: -0.015587002, w: 0.007771261}
+ outSlope: {x: 0.031798065, y: -0.05682609, z: -0.015587002, w: 0.007771261}
+ tangentMode: 0
+ - time: 1.3666668
+ value: {x: -0.16677897, y: -0.05541715, z: 0.071510665, w: 0.981835}
+ inSlope: {x: -0.007499017, y: -0.061137997, z: 0.105177, w: -0.012299728}
+ outSlope: {x: -0.007499017, y: -0.061137997, z: 0.105177, w: -0.012299728}
+ tangentMode: 0
+ - time: 1.6000001
+ value: {x: -0.18126737, y: -0.035288848, z: 0.10691363, w: 0.97696793}
+ inSlope: {x: -0.03307636, y: 0.05138704, z: 0.06743918, w: -0.011530828}
+ outSlope: {x: -0.03307636, y: 0.05138704, z: 0.06743918, w: -0.011530828}
+ tangentMode: 0
+ - time: 1.7333335
+ value: {x: -0.20746253, y: -0.017335506, z: 0.12794887, w: 0.9696844}
+ inSlope: {x: -0.38723558, y: 0.24905571, z: 0.33849332, w: -0.12363207}
+ outSlope: {x: -0.38723558, y: 0.24905571, z: 0.33849332, w: -0.12363207}
+ tangentMode: 0
+ - time: 1.8333335
+ value: {x: -0.2405516, y: 0.0021625378, z: 0.16520442, w: 0.95647156}
+ inSlope: {x: -0.16095707, y: 0.06600033, z: 0.32236788, w: -0.095203996}
+ outSlope: {x: -0.16095707, y: 0.06600033, z: 0.32236788, w: -0.095203996}
+ tangentMode: 0
+ - time: 1.9000001
+ value: {x: -0.22603577, y: -0.0117756855, z: 0.17997728, w: 0.95727605}
+ inSlope: {x: 0.8527022, y: -0.66975194, z: 0.13497964, w: 0.1517815}
+ outSlope: {x: 0.8527022, y: -0.66975194, z: 0.13497964, w: 0.1517815}
+ tangentMode: 0
+ - time: 1.9666667
+ value: {x: -0.13944392, y: -0.07746813, z: 0.18945417, w: 0.9688453}
+ inSlope: {x: 1.2848703, y: -0.9584627, z: 0.19321534, w: 0.079144195}
+ outSlope: {x: 1.2848703, y: -0.9584627, z: 0.19321534, w: 0.079144195}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: -0.10067175, y: -0.10615344, z: 0.19656426, w: 0.9695149}
+ inSlope: {x: 0.82276124, y: -0.6069703, z: 0.16103028, w: 0.0015386231}
+ outSlope: {x: 0.82276124, y: -0.6069703, z: 0.16103028, w: 0.0015386231}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.084592946, y: -0.11793298, z: 0.20018956, w: 0.9689479}
+ inSlope: {x: 0.48236468, y: -0.35338652, z: 0.10875921, w: -0.017010586}
+ outSlope: {x: 0.48236468, y: -0.35338652, z: 0.10875921, w: -0.017010586}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.084592946, y: -0.11793298, z: 0.20018956, w: 0.9689479}
+ inSlope: {x: -0.09053416, y: 0.48385373, z: 0.25396273, w: -0.0067609544}
+ outSlope: {x: -0.09053416, y: 0.48385373, z: 0.25396273, w: -0.0067609544}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: -0.08761075, y: -0.101804525, z: 0.20865498, w: 0.9687225}
+ inSlope: {x: -0.12813783, y: 0.7668405, z: 0.41399533, w: -0.030107792}
+ outSlope: {x: -0.12813783, y: 0.7668405, z: 0.41399533, w: -0.030107792}
+ tangentMode: 0
+ - time: 0.13333334
+ value: {x: -0.09834504, y: -0.017277958, z: 0.25667554, w: 0.9613258}
+ inSlope: {x: 0.07802218, y: 0.06996706, z: 0.08040283, w: -0.011037301}
+ outSlope: {x: 0.07802218, y: 0.06996706, z: 0.08040283, w: -0.011037301}
+ tangentMode: 0
+ - time: 0.23333335
+ value: {x: -0.056292504, y: -0.08459736, z: 0.23654789, w: 0.96629167}
+ inSlope: {x: 0.5899787, y: -0.947623, z: -0.22079611, w: 0.0026223073}
+ outSlope: {x: 0.5899787, y: -0.947623, z: -0.22079611, w: 0.0026223073}
+ tangentMode: 0
+ - time: 0.26666668
+ value: {x: -0.0357327, y: -0.11857677, z: 0.22941981, w: 0.96541667}
+ inSlope: {x: 0.64460063, y: -1.1387587, z: -0.21100314, w: -0.07126898}
+ outSlope: {x: 0.64460063, y: -1.1387587, z: -0.21100314, w: -0.07126898}
+ tangentMode: 0
+ - time: 0.3
+ value: {x: -0.013319132, y: -0.1605146, z: 0.22248101, w: 0.9615404}
+ inSlope: {x: 0.870277, y: -2.1173863, z: -0.30540484, w: -0.34352306}
+ outSlope: {x: 0.870277, y: -2.1173863, z: -0.30540484, w: -0.34352306}
+ tangentMode: 0
+ - time: 0.33333334
+ value: {x: 0.022285758, y: -0.25973585, z: 0.20905949, w: 0.94251513}
+ inSlope: {x: 0.53094584, y: -1.4786022, z: -0.3030567, w: -0.26045328}
+ outSlope: {x: 0.53094584, y: -1.4786022, z: -0.3030567, w: -0.26045328}
+ tangentMode: 0
+ - time: 0.3666667
+ value: {x: 0.022077251, y: -0.25908807, z: 0.20227723, w: 0.94417685}
+ inSlope: {x: -0.06845154, y: 0.06462514, z: -0.20624638, w: 0.063216075}
+ outSlope: {x: -0.06845154, y: 0.06462514, z: -0.20624638, w: 0.063216075}
+ tangentMode: 0
+ - time: 0.6
+ value: {x: -0.056708883, y: -0.18672365, z: 0.15011257, w: 0.96921855}
+ inSlope: {x: -0.5070493, y: 0.53284305, z: -0.25875342, w: 0.1104194}
+ outSlope: {x: -0.5070493, y: 0.53284305, z: -0.25875342, w: 0.1104194}
+ tangentMode: 0
+ - time: 0.73333335
+ value: {x: -0.15664464, y: -0.08002164, z: 0.11619828, w: 0.97752595}
+ inSlope: {x: -0.6739762, y: 0.8476511, z: -0.16332716, w: -0.014959561}
+ outSlope: {x: -0.6739762, y: 0.8476511, z: -0.16332716, w: -0.014959561}
+ tangentMode: 0
+ - time: 0.90000004
+ value: {x: -0.17915472, y: -0.0014993157, z: 0.093809865, w: 0.97933704}
+ inSlope: {x: 0.015320329, y: 0.23661482, z: -0.16637823, w: 0.019308329}
+ outSlope: {x: 0.015320329, y: 0.23661482, z: -0.16637823, w: 0.019308329}
+ tangentMode: 0
+ - time: 1.1333334
+ value: {x: -0.1758443, y: 0.020093173, z: 0.06563755, w: 0.98202175}
+ inSlope: {x: 0.031798065, y: -0.05682609, z: -0.015587002, w: 0.007771261}
+ outSlope: {x: 0.031798065, y: -0.05682609, z: -0.015587002, w: 0.007771261}
+ tangentMode: 0
+ - time: 1.3666668
+ value: {x: -0.16677897, y: -0.05541715, z: 0.071510665, w: 0.981835}
+ inSlope: {x: -0.007499017, y: -0.061137997, z: 0.105177, w: -0.012299728}
+ outSlope: {x: -0.007499017, y: -0.061137997, z: 0.105177, w: -0.012299728}
+ tangentMode: 0
+ - time: 1.6000001
+ value: {x: -0.18126737, y: -0.035288848, z: 0.10691363, w: 0.97696793}
+ inSlope: {x: -0.03307636, y: 0.05138704, z: 0.06743918, w: -0.011530828}
+ outSlope: {x: -0.03307636, y: 0.05138704, z: 0.06743918, w: -0.011530828}
+ tangentMode: 0
+ - time: 1.7000002
+ value: {x: -0.19590585, y: -0.02484779, z: 0.11759004, w: 0.97322977}
+ inSlope: {x: -0.35381734, y: 0.23552793, z: 0.25678617, w: -0.0976118}
+ outSlope: {x: -0.35381734, y: 0.23552793, z: 0.25678617, w: -0.0976118}
+ tangentMode: 0
+ - time: 1.8333335
+ value: {x: -0.24506187, y: 0.005301996, z: 0.16509677, w: 0.9553322}
+ inSlope: {x: -0.17378941, y: 0.07417944, z: 0.32306257, w: -0.099596545}
+ outSlope: {x: -0.17378941, y: 0.07417944, z: 0.32306257, w: -0.099596545}
+ tangentMode: 0
+ - time: 1.9000001
+ value: {x: -0.23025316, y: -0.008886847, z: 0.17974846, w: 0.9563446}
+ inSlope: {x: 0.87815547, y: -0.687938, z: 0.13054104, w: 0.16356623}
+ outSlope: {x: 0.87815547, y: -0.687938, z: 0.13054104, w: 0.16356623}
+ tangentMode: 0
+ - time: 1.9666667
+ value: {x: -0.14106944, y: -0.07638471, z: 0.189098, w: 0.96876556}
+ inSlope: {x: 1.3232863, y: -0.9846301, z: 0.19702831, w: 0.08576211}
+ outSlope: {x: 1.3232863, y: -0.9846301, z: 0.19702831, w: 0.08576211}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: -0.1011435, y: -0.10584421, z: 0.19642505, w: 0.96952784}
+ inSlope: {x: 0.847144, y: -0.6232215, z: 0.16637278, w: 0.00273488}
+ outSlope: {x: 0.847144, y: -0.6232215, z: 0.16637278, w: 0.00273488}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.084592946, y: -0.11793298, z: 0.20018956, w: 0.9689479}
+ inSlope: {x: 0.49651715, y: -0.36266363, z: 0.11293541, w: -0.017398613}
+ outSlope: {x: 0.49651715, y: -0.36266363, z: 0.11293541, w: -0.017398613}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.084592946, y: -0.11793298, z: 0.20018956, w: 0.9689479}
+ inSlope: {x: -0.061301436, y: 0.3224891, z: 0.16852407, w: -0.003261566}
+ outSlope: {x: -0.061301436, y: 0.3224891, z: 0.16852407, w: -0.003261566}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: -0.09094703, y: -0.08179033, z: 0.21946976, w: 0.9679215}
+ inSlope: {x: -0.12592949, y: 0.82820404, z: 0.45621827, w: -0.047933757}
+ outSlope: {x: -0.12592949, y: 0.82820404, z: 0.45621827, w: -0.047933757}
+ tangentMode: 0
+ - time: 0.16666669
+ value: {x: -0.09834504, y: -0.017277958, z: 0.25667554, w: 0.9613258}
+ inSlope: {x: 0.08490992, y: -0.0070275962, z: 0.034700144, w: -0.0009208806}
+ outSlope: {x: 0.08490992, y: -0.0070275962, z: 0.034700144, w: -0.0009208806}
+ tangentMode: 0
+ - time: 0.26666668
+ value: {x: -0.056292504, y: -0.08459736, z: 0.23654789, w: 0.96629167}
+ inSlope: {x: 0.5899786, y: -0.9476229, z: -0.22079611, w: 0.0026223073}
+ outSlope: {x: 0.5899786, y: -0.9476229, z: -0.22079611, w: 0.0026223073}
+ tangentMode: 0
+ - time: 0.3
+ value: {x: -0.0357327, y: -0.11857677, z: 0.22941981, w: 0.96541667}
+ inSlope: {x: 0.64460063, y: -1.1387587, z: -0.21100314, w: -0.07126898}
+ outSlope: {x: 0.64460063, y: -1.1387587, z: -0.21100314, w: -0.07126898}
+ tangentMode: 0
+ - time: 0.33333334
+ value: {x: -0.013319132, y: -0.1605146, z: 0.22248101, w: 0.9615404}
+ inSlope: {x: 0.8702768, y: -2.1173854, z: -0.30540466, w: -0.3435228}
+ outSlope: {x: 0.8702768, y: -2.1173854, z: -0.30540466, w: -0.3435228}
+ tangentMode: 0
+ - time: 0.3666667
+ value: {x: 0.02228578, y: -0.25973588, z: 0.20905949, w: 0.94251513}
+ inSlope: {x: 0.4990514, y: -1.44437, z: -0.33926284, w: -0.24269229}
+ outSlope: {x: 0.4990514, y: -1.44437, z: -0.33926284, w: -0.24269229}
+ tangentMode: 0
+ - time: 0.40000004
+ value: {x: 0.019950991, y: -0.25680602, z: 0.19986348, w: 0.9453609}
+ inSlope: {x: -0.1858038, y: 0.18700475, z: -0.30895922, w: 0.11813076}
+ outSlope: {x: -0.1858038, y: 0.18700475, z: -0.30895922, w: 0.11813076}
+ tangentMode: 0
+ - time: 0.56666666
+ value: {x: -0.051822327, y: -0.19113171, z: 0.15202321, w: 0.96833473}
+ inSlope: {x: -0.25998166, y: 0.23482504, z: -0.10970732, w: 0.05174699}
+ outSlope: {x: -0.25998166, y: 0.23482504, z: -0.10970732, w: 0.05174699}
+ tangentMode: 0
+ - time: 0.6
+ value: {x: -0.056708865, y: -0.18672375, z: 0.15011255, w: 0.96921855}
+ inSlope: {x: -0.1626694, y: -0.57708305, z: -0.024072351, w: -0.13182536}
+ outSlope: {x: -0.1626694, y: -0.57708305, z: -0.024072351, w: -0.13182536}
+ tangentMode: 0
+ - time: 0.6333333
+ value: {x: -0.06266695, y: -0.22960387, z: 0.15041839, w: 0.9595464}
+ inSlope: {x: -0.26090443, y: -1.8168294, z: 0.0034124455, w: -0.489933}
+ outSlope: {x: -0.26090443, y: -1.8168294, z: 0.0034124455, w: -0.489933}
+ tangentMode: 0
+ - time: 0.6666667
+ value: {x: -0.0741025, y: -0.30784574, z: 0.15034005, w: 0.93655634}
+ inSlope: {x: -0.26660872, y: -1.7920176, z: -0.0073615513, w: -0.5703895}
+ outSlope: {x: -0.26660872, y: -1.7920176, z: -0.0073615513, w: -0.5703895}
+ tangentMode: 0
+ - time: 0.7
+ value: {x: -0.08044087, y: -0.34907174, z: 0.14992762, w: 0.9215204}
+ inSlope: {x: -0.37228477, y: 0.32526255, z: -0.23759033, w: 0.104500175}
+ outSlope: {x: -0.37228477, y: 0.32526255, z: -0.23759033, w: 0.104500175}
+ tangentMode: 0
+ - time: 0.73333335
+ value: {x: -0.09892149, y: -0.28616148, z: 0.13450068, w: 0.94352305}
+ inSlope: {x: -0.9413841, y: 2.985015, z: -0.5428403, w: 0.7514229}
+ outSlope: {x: -0.9413841, y: 2.985015, z: -0.5428403, w: 0.7514229}
+ tangentMode: 0
+ - time: 0.7666667
+ value: {x: -0.14319986, y: -0.15007058, z: 0.11373823, w: 0.9716153}
+ inSlope: {x: -1.2442211, y: 3.7772384, z: -0.39555234, w: 0.49848914}
+ outSlope: {x: -1.2442211, y: 3.7772384, z: -0.39555234, w: 0.49848914}
+ tangentMode: 0
+ - time: 0.8
+ value: {x: -0.18186957, y: -0.034345575, z: 0.108130515, w: 0.9767557}
+ inSlope: {x: -0.83422947, y: 2.7227545, z: -0.07935112, w: 0.028427955}
+ outSlope: {x: -0.83422947, y: 2.7227545, z: -0.07935112, w: 0.028427955}
+ tangentMode: 0
+ - time: 0.8333334
+ value: {x: -0.19881514, y: 0.031446334, z: 0.10844816, w: 0.9735105}
+ inSlope: {x: -0.3998737, y: 1.7771585, z: 0.021779774, w: -0.12819263}
+ outSlope: {x: -0.3998737, y: 1.7771585, z: 0.021779774, w: -0.12819263}
+ tangentMode: 0
+ - time: 0.93333334
+ value: {x: -0.2147607, y: 0.13278687, z: 0.10603722, w: 0.96177006}
+ inSlope: {x: -0.0009640325, y: 0.12186137, z: -0.14196286, w: -0.00041663833}
+ outSlope: {x: -0.0009640325, y: 0.12186137, z: -0.14196286, w: -0.00041663833}
+ tangentMode: 0
+ - time: 1.1000001
+ value: {x: -0.1817682, y: 0.03885494, z: 0.069588475, w: 0.9801062}
+ inSlope: {x: 0.21613058, y: -0.6454929, z: -0.15042156, w: 0.078669086}
+ outSlope: {x: 0.21613058, y: -0.6454929, z: -0.15042156, w: 0.078669086}
+ tangentMode: 0
+ - time: 1.3333335
+ value: {x: -0.16824171, y: -0.040862124, z: 0.06689241, w: 0.9826243}
+ inSlope: {x: 0.03318741, y: -0.38867092, z: 0.115969166, w: -0.019111626}
+ outSlope: {x: 0.03318741, y: -0.38867092, z: 0.115969166, w: -0.019111626}
+ tangentMode: 0
+ - time: 1.4000001
+ value: {x: -0.1637077, y: -0.0864576, z: 0.08986637, w: 0.9785954}
+ inSlope: {x: 0.077316314, y: -1.0592554, z: 0.7043024, w: -0.153891}
+ outSlope: {x: 0.077316314, y: -1.0592554, z: 0.7043024, w: -0.153891}
+ tangentMode: 0
+ - time: 1.4666668
+ value: {x: -0.1614428, y: -0.1452521, z: 0.13335039, w: 0.96698284}
+ inSlope: {x: -0.023632305, y: -0.118528575, z: 0.17978482, w: -0.042901732}
+ outSlope: {x: -0.023632305, y: -0.118528575, z: 0.17978482, w: -0.042901732}
+ tangentMode: 0
+ - time: 1.6000001
+ value: {x: -0.17939484, y: -0.046068452, z: 0.11045533, w: 0.9764706}
+ inSlope: {x: -0.12091611, y: 0.59285617, z: -0.12244609, w: 0.02491417}
+ outSlope: {x: -0.12091611, y: 0.59285617, z: -0.12244609, w: 0.02491417}
+ tangentMode: 0
+ - time: 1.6666667
+ value: {x: -0.19108447, y: -0.009015705, z: 0.115251884, w: 0.9747423}
+ inSlope: {x: -0.38087362, y: 1.0717309, z: 0.35193613, w: -0.12106845}
+ outSlope: {x: -0.38087362, y: 1.0717309, z: 0.35193613, w: -0.12106845}
+ tangentMode: 0
+ - time: 1.7000002
+ value: {x: -0.20726116, y: 0.03710318, z: 0.13159297, w: 0.96868443}
+ inSlope: {x: -0.3575091, y: 1.0404379, z: 0.46043515, w: -0.16446751}
+ outSlope: {x: -0.3575091, y: 1.0404379, z: 0.46043515, w: -0.16446751}
+ tangentMode: 0
+ - time: 1.8000001
+ value: {x: -0.21392544, y: 0.04583589, z: 0.16574748, w: 0.96159387}
+ inSlope: {x: -0.009029174, y: -0.375368, z: 0.29068106, w: -0.035089523}
+ outSlope: {x: -0.009029174, y: -0.375368, z: 0.29068106, w: -0.035089523}
+ tangentMode: 0
+ - time: 1.9000001
+ value: {x: -0.20526326, y: -0.018586906, z: 0.18340512, w: 0.9611889}
+ inSlope: {x: 0.6694854, y: -0.9376738, z: 0.08065306, w: 0.09937212}
+ outSlope: {x: 0.6694854, y: -0.9376738, z: 0.08065306, w: 0.09937212}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: -0.09872216, y: -0.108666934, z: 0.1972415, w: 0.9692994}
+ inSlope: {x: 0.71732116, y: -0.49669886, z: 0.13396196, w: 0.0012999317}
+ outSlope: {x: 0.71732116, y: -0.49669886, z: 0.13396196, w: 0.0012999317}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.084592946, y: -0.11793298, z: 0.20018956, w: 0.9689479}
+ inSlope: {x: 0.42387682, y: -0.27798173, z: 0.0884419, w: -0.010544668}
+ outSlope: {x: 0.42387682, y: -0.27798173, z: 0.0884419, w: -0.010544668}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.91728246, y: -0.3966457, z: -0.026076216, w: 0.02419145}
+ inSlope: {x: -0.416041, y: -0.92236066, z: 0.04590282, w: -0.0052402536}
+ outSlope: {x: -0.416041, y: -0.92236066, z: 0.04590282, w: -0.0052402536}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: 0.9034144, y: -0.42739105, z: -0.024546122, w: 0.024016775}
+ inSlope: {x: -0.77756244, y: -1.5501038, z: 0.07683939, w: -0.0016091577}
+ outSlope: {x: -0.77756244, y: -1.5501038, z: 0.07683939, w: -0.0016091577}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: 0.86544496, y: -0.49998596, z: -0.02095359, w: 0.024084173}
+ inSlope: {x: -1.3943052, y: -2.3643332, z: 0.11518888, w: 0.01576812}
+ outSlope: {x: -1.3943052, y: -2.3643332, z: 0.11518888, w: 0.01576812}
+ tangentMode: 0
+ - time: 0.13333334
+ value: {x: 0.75340444, y: -0.6568756, z: -0.013661283, w: 0.0266397}
+ inSlope: {x: -1.7444136, y: -2.0122018, z: 0.08432439, w: 0.05225808}
+ outSlope: {x: -1.7444136, y: -2.0122018, z: 0.08432439, w: 0.05225808}
+ tangentMode: 0
+ - time: 0.20000002
+ value: {x: 0.6252788, y: -0.77972746, z: -0.009254328, w: 0.031079596}
+ inSlope: {x: -2.0055423, y: -1.6245399, z: 0.04938292, w: 0.0743407}
+ outSlope: {x: -2.0055423, y: -1.6245399, z: 0.04938292, w: 0.0743407}
+ tangentMode: 0
+ - time: 0.26666668
+ value: {x: 0.51641786, y: -0.8555977, z: -0.0071840202, w: 0.03483892}
+ inSlope: {x: -1.0509973, y: -0.6495193, z: 0.020873182, w: 0.025096929}
+ outSlope: {x: -1.0509973, y: -0.6495193, z: 0.020873182, w: 0.025096929}
+ tangentMode: 0
+ - time: 0.3666667
+ value: {x: 0.4487553, y: -0.8929377, z: -0.0052432753, w: 0.035403855}
+ inSlope: {x: -0.52674, y: -0.26610005, z: 0.020778053, w: -0.0006497658}
+ outSlope: {x: -0.52674, y: -0.26610005, z: 0.020778053, w: -0.0006497658}
+ tangentMode: 0
+ - time: 0.73333335
+ value: {x: 0.38400677, y: -0.9227408, z: 0.0020055755, w: 0.032927196}
+ inSlope: {x: -0.0036777523, y: -0.0015842902, z: 0.0046148086, w: -0.0017604777}
+ outSlope: {x: -0.0036777523, y: -0.0015842902, z: 0.0046148086, w: -0.0017604777}
+ tangentMode: 0
+ - time: 0.7666667
+ value: {x: 0.3839778, y: -0.9227538, z: 0.002081934, w: 0.032896284}
+ inSlope: {x: 2.9666822, y: 1.6465256, z: -0.051539723, w: -0.12663281}
+ outSlope: {x: 2.9666822, y: 1.6465256, z: -0.051539723, w: -0.12663281}
+ tangentMode: 0
+ - time: 0.8
+ value: {x: 0.5817854, y: -0.81297255, z: -0.0014304024, w: 0.024485016}
+ inSlope: {x: 7.1927147, y: 6.284624, z: -0.25628388, w: -0.2075437}
+ outSlope: {x: 7.1927147, y: 6.284624, z: -0.25628388, w: -0.2075437}
+ tangentMode: 0
+ - time: 0.8333334
+ value: {x: 0.86349213, y: -0.5037787, z: -0.015003665, w: 0.01906004}
+ inSlope: {x: 5.591221, y: 7.7497616, z: -0.32645914, w: -0.02483666}
+ outSlope: {x: 5.591221, y: 7.7497616, z: -0.32645914, w: -0.02483666}
+ tangentMode: 0
+ - time: 0.8666667
+ value: {x: 0.9545336, y: -0.2963217, z: -0.023194348, w: 0.02282923}
+ inSlope: {x: 1.3564606, y: 3.0825567, z: -0.12239316, w: 0.05838188}
+ outSlope: {x: 1.3564606, y: 3.0825567, z: -0.12239316, w: 0.05838188}
+ tangentMode: 0
+ - time: 0.90000004
+ value: {x: 0.95392275, y: -0.2982751, z: -0.023163201, w: 0.022952162}
+ inSlope: {x: -0.035963077, y: -0.11422506, z: 0.0030461813, w: 0.003199903}
+ outSlope: {x: -0.035963077, y: -0.11422506, z: 0.0030461813, w: 0.003199903}
+ tangentMode: 0
+ - time: 1.3000001
+ value: {x: 0.85621405, y: -0.51577276, z: -0.015805291, w: 0.025022645}
+ inSlope: {x: -0.43761185, y: -0.7263541, z: 0.022912305, w: 0.014070297}
+ outSlope: {x: -0.43761185, y: -0.7263541, z: 0.022912305, w: 0.014070297}
+ tangentMode: 0
+ - time: 1.6666667
+ value: {x: 0.70046145, y: -0.71290725, z: -0.010955696, w: 0.03157461}
+ inSlope: {x: -0.2385162, y: -0.23460913, z: 0.002430011, w: 0.012410294}
+ outSlope: {x: -0.2385162, y: -0.23460913, z: 0.002430011, w: 0.012410294}
+ tangentMode: 0
+ - time: 1.7666668
+ value: {x: 0.68784845, y: -0.72505075, z: -0.010956733, w: 0.032339584}
+ inSlope: {x: 0.16480492, y: 0.15922146, z: -0.008064083, w: -0.0070877997}
+ outSlope: {x: 0.16480492, y: 0.15922146, z: -0.008064083, w: -0.0070877997}
+ tangentMode: 0
+ - time: 1.8666668
+ value: {x: 0.7746345, y: -0.6316123, z: -0.014741767, w: 0.028107299}
+ inSlope: {x: 1.3060412, y: 1.6164598, z: -0.07058171, w: -0.057511702}
+ outSlope: {x: 1.3060412, y: 1.6164598, z: -0.07058171, w: -0.057511702}
+ tangentMode: 0
+ - time: 1.9333335
+ value: {x: 0.85938853, y: -0.51030433, z: -0.020396698, w: 0.024999421}
+ inSlope: {x: 1.0687071, y: 1.7825577, z: -0.08683799, w: -0.028735671}
+ outSlope: {x: 1.0687071, y: 1.7825577, z: -0.08683799, w: -0.028735671}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: 0.9102838, y: -0.4125036, z: -0.025275256, w: 0.024193527}
+ inSlope: {x: 0.4014677, y: 0.8558499, z: -0.043104008, w: -0.0025699036}
+ outSlope: {x: 0.4014677, y: 0.8558499, z: -0.043104008, w: -0.0025699036}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.91728246, y: -0.3966457, z: -0.026076216, w: 0.02419145}
+ inSlope: {x: 0.20995994, y: 0.4757376, z: -0.024028815, w: -0.00006230554}
+ outSlope: {x: 0.20995994, y: 0.4757376, z: -0.024028815, w: -0.00006230554}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.0000007479496, y: 0.00000074522274, z: -0.14552878, w: 0.9893541}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.0000007479496, y: 0.00000074522274, z: -0.14552878, w: 0.9893541}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.0000007479496, y: 0.00000074522274, z: -0.14552878, w: 0.9893541}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.0000007479496, y: 0.00000074522274, z: -0.14552878, w: 0.9893541}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.01303056, y: -0.033094514, z: 0.99857855, w: 0.03969673}
+ inSlope: {x: -0.042859603, y: 0.025144143, z: 0.02447605, w: -1.0117096}
+ outSlope: {x: -0.042859603, y: 0.025144143, z: 0.02447605, w: -1.0117096}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: 0.011601906, y: -0.032256376, z: 0.9993944, w: 0.0059730792}
+ inSlope: {x: -0.07461403, y: 0.03510293, z: -0.02956777, w: -1.7341771}
+ outSlope: {x: -0.07461403, y: 0.03510293, z: -0.02956777, w: -1.7341771}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: 0.00805629, y: -0.030754318, z: 0.99660736, w: -0.07591508}
+ inSlope: {x: -0.119003415, y: 0.035005536, z: -0.23299992, w: -2.7352355}
+ outSlope: {x: -0.119003415, y: 0.035005536, z: -0.23299992, w: -2.7352355}
+ tangentMode: 0
+ - time: 0.13333334
+ value: {x: -0.000021906773, y: -0.03002962, z: 0.9635439, w: -0.26585978}
+ inSlope: {x: -0.10007713, y: -0.012621745, z: -0.7011946, w: -2.569109}
+ outSlope: {x: -0.10007713, y: -0.012621745, z: -0.7011946, w: -2.569109}
+ tangentMode: 0
+ - time: 0.20000002
+ value: {x: -0.0057914015, y: -0.032210268, z: 0.9012468, w: -0.43206853}
+ inSlope: {x: -0.07160269, y: -0.045474596, z: -1.1042262, w: -2.3325872}
+ outSlope: {x: -0.07160269, y: -0.045474596, z: -1.1042262, w: -2.3325872}
+ tangentMode: 0
+ - time: 0.26666668
+ value: {x: -0.008611402, y: -0.034510147, z: 0.8359958, w: -0.5475819}
+ inSlope: {x: -0.015569085, y: -0.008450859, z: -0.66558754, w: -1.0403754}
+ outSlope: {x: -0.015569085, y: -0.008450859, z: -0.66558754, w: -1.0403754}
+ tangentMode: 0
+ - time: 0.3666667
+ value: {x: -0.009337949, y: -0.033768713, z: 0.7912217, w: -0.6105251}
+ inSlope: {x: -0.009022584, y: 0.01135591, z: -0.35923883, w: -0.46785396}
+ outSlope: {x: -0.009022584, y: 0.01135591, z: -0.35923883, w: -0.46785396}
+ tangentMode: 0
+ - time: 0.73333335
+ value: {x: -0.013257278, y: -0.028951999, z: 0.74578065, w: -0.6654301}
+ inSlope: {x: -0.0026642696, y: 0.002891838, z: -0.002658067, w: -0.0030532454}
+ outSlope: {x: -0.0026642696, y: 0.002891838, z: -0.002658067, w: -0.0030532454}
+ tangentMode: 0
+ - time: 0.7666667
+ value: {x: -0.01330071, y: -0.028903704, z: 0.7457593, w: -0.6654553}
+ inSlope: {x: 0.0897617, y: 0.098638244, z: 1.9611374, w: 2.7696867}
+ outSlope: {x: 0.0897617, y: 0.098638244, z: 1.9611374, w: 2.7696867}
+ tangentMode: 0
+ - time: 0.8
+ value: {x: -0.0072731706, y: -0.022376122, z: 0.876523, w: -0.48078454}
+ inSlope: {x: 0.3038792, y: 0.10450669, z: 3.761455, w: 8.780671}
+ outSlope: {x: 0.3038792, y: 0.10450669, z: 3.761455, w: 8.780671}
+ tangentMode: 0
+ - time: 0.8333334
+ value: {x: 0.00695791, y: -0.021936597, z: 0.99652296, w: -0.08007707}
+ inSlope: {x: 0.3061822, y: -0.08911088, z: 1.6833421, w: 9.406437}
+ outSlope: {x: 0.3061822, y: -0.08911088, z: 1.6833421, w: 9.406437}
+ tangentMode: 0
+ - time: 0.8666667
+ value: {x: 0.013138984, y: -0.02831684, z: 0.9887459, w: 0.14631133}
+ inSlope: {x: 0.09043391, y: -0.103426546, z: -0.112322986, w: 3.365026}
+ outSlope: {x: 0.09043391, y: -0.103426546, z: -0.112322986, w: 3.365026}
+ tangentMode: 0
+ - time: 0.90000004
+ value: {x: 0.012986831, y: -0.028831694, z: 0.9890348, w: 0.14425778}
+ inSlope: {x: -0.0063688094, y: -0.013402858, z: 0.017007895, w: -0.120370895}
+ outSlope: {x: -0.0063688094, y: -0.013402858, z: 0.017007895, w: -0.120370895}
+ tangentMode: 0
+ - time: 1.3000001
+ value: {x: 0.004697078, y: -0.02990738, z: 0.9947134, w: -0.09812565}
+ inSlope: {x: -0.027850803, y: -0.0049692057, z: -0.08475503, w: -0.85829955}
+ outSlope: {x: -0.027850803, y: -0.0049692057, z: -0.08475503, w: -0.85829955}
+ tangentMode: 0
+ - time: 1.6666667
+ value: {x: -0.0026826607, y: -0.034258753, z: 0.93720376, w: -0.3470854}
+ inSlope: {x: -0.007275181, y: -0.01163698, z: -0.118046634, w: -0.31917822}
+ outSlope: {x: -0.007275181, y: -0.01163698, z: -0.118046634, w: -0.31917822}
+ tangentMode: 0
+ - time: 1.7666668
+ value: {x: -0.0029573236, y: -0.035122875, z: 0.9308409, w: -0.36372098}
+ inSlope: {x: 0.00990146, y: 0.0017934495, z: 0.083151236, w: 0.21892747}
+ outSlope: {x: 0.00990146, y: 0.0017934495, z: 0.083151236, w: 0.21892747}
+ tangentMode: 0
+ - time: 1.8666668
+ value: {x: 0.0018140725, y: -0.0326823, z: 0.9703221, w: -0.23959085}
+ inSlope: {x: 0.08129457, y: 0.027506806, z: 0.49958247, w: 2.0629807}
+ outSlope: {x: 0.08129457, y: 0.027506806, z: 0.49958247, w: 2.0629807}
+ tangentMode: 0
+ - time: 1.9333335
+ value: {x: 0.00781297, y: -0.03183557, z: 0.9953537, w: -0.090534374}
+ inSlope: {x: 0.08554322, y: -0.004301625, z: 0.20170645, w: 2.1131105}
+ outSlope: {x: 0.08554322, y: -0.004301625, z: 0.20170645, w: 2.1131105}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: 0.012334698, y: -0.032815043, z: 0.9991431, w: 0.022002602}
+ inSlope: {x: 0.038330756, y: -0.012803029, z: -0.008133362, w: 0.9654424}
+ outSlope: {x: 0.038330756, y: -0.012803029, z: -0.008133362, w: 0.9654424}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.01303056, y: -0.033094514, z: 0.99857855, w: 0.03969673}
+ inSlope: {x: 0.020875877, y: -0.008384147, z: -0.016937273, w: 0.53082436}
+ outSlope: {x: 0.020875877, y: -0.008384147, z: -0.016937273, w: 0.53082436}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.00000041763917, y: 0.00000041763815, z: 0.31867462, w: 0.9478642}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.00000041763917, y: 0.00000041763815, z: 0.31867462, w: 0.9478642}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.00000041763917, y: 0.00000041763815, z: 0.31867462, w: 0.9478642}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.00000041763917, y: 0.00000041763815, z: 0.31867462, w: 0.9478642}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.013030555, y: -0.033094514, z: 0.99857855, w: 0.03969673}
+ inSlope: {x: -0.042816993, y: 0.025154872, z: 0.02447605, w: -1.0117083}
+ outSlope: {x: -0.042816993, y: 0.025154872, z: 0.02447605, w: -1.0117083}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: 0.011603322, y: -0.03225602, z: 0.9993944, w: 0.0059731207}
+ inSlope: {x: -0.07454752, y: 0.035125617, z: -0.02956777, w: -1.7341769}
+ outSlope: {x: -0.07454752, y: 0.035125617, z: -0.02956777, w: -1.7341769}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: 0.00806072, y: -0.030752806, z: 0.99660736, w: -0.075915076}
+ inSlope: {x: -0.118916914, y: 0.0350494, z: -0.23299813, w: -2.7352347}
+ outSlope: {x: -0.118916914, y: 0.0350494, z: -0.23299813, w: -2.7352347}
+ tangentMode: 0
+ - time: 0.13333334
+ value: {x: -0.000013791064, y: -0.030024966, z: 0.9635441, w: -0.26585954}
+ inSlope: {x: -0.1000727, y: -0.012590229, z: -0.7011919, w: -2.5691068}
+ outSlope: {x: -0.1000727, y: -0.012590229, z: -0.7011919, w: -2.5691068}
+ tangentMode: 0
+ - time: 0.20000002
+ value: {x: -0.0057853963, y: -0.03220467, z: 0.901247, w: -0.4320685}
+ inSlope: {x: -0.07166207, y: -0.045493037, z: -1.1042271, w: -2.3325894}
+ outSlope: {x: -0.07166207, y: -0.045493037, z: -1.1042271, w: -2.3325894}
+ tangentMode: 0
+ - time: 0.26666668
+ value: {x: -0.008611405, y: -0.034510147, z: 0.8359958, w: -0.5475819}
+ inSlope: {x: -0.015670793, y: -0.0085984925, z: -0.6655956, w: -1.0403771}
+ outSlope: {x: -0.015670793, y: -0.0085984925, z: -0.6655956, w: -1.0403771}
+ tangentMode: 0
+ - time: 0.3666667
+ value: {x: -0.0093434835, y: -0.03378482, z: 0.7912209, w: -0.610525}
+ inSlope: {x: -0.009023311, y: 0.0112118535, z: -0.3592442, w: -0.46785128}
+ outSlope: {x: -0.009023311, y: 0.0112118535, z: -0.3592442, w: -0.46785128}
+ tangentMode: 0
+ - time: 0.73333335
+ value: {x: -0.013246649, y: -0.028997991, z: 0.7457791, w: -0.66543007}
+ inSlope: {x: -0.0026507748, y: 0.0028754375, z: -0.0026553848, w: -0.0030505632}
+ outSlope: {x: -0.0026507748, y: 0.0028754375, z: -0.0026553848, w: -0.0030505632}
+ tangentMode: 0
+ - time: 0.7666667
+ value: {x: -0.01328985, y: -0.028949976, z: 0.745758, w: -0.66545504}
+ inSlope: {x: 0.08980298, y: 0.09888126, z: 1.9611473, w: 2.7696786}
+ outSlope: {x: 0.08980298, y: 0.09888126, z: 1.9611473, w: 2.7696786}
+ tangentMode: 0
+ - time: 0.8
+ value: {x: -0.007259789, y: -0.022405913, z: 0.8765221, w: -0.480785}
+ inSlope: {x: 0.3042568, y: 0.10498616, z: 3.761465, w: 8.780651}
+ outSlope: {x: 0.3042568, y: 0.10498616, z: 3.761465, w: 8.780651}
+ tangentMode: 0
+ - time: 0.8333334
+ value: {x: 0.0069939424, y: -0.021950904, z: 0.9965223, w: -0.08007814}
+ inSlope: {x: 0.306765, y: -0.0889937, z: 1.6833385, w: 9.406424}
+ outSlope: {x: 0.306765, y: -0.0889937, z: 1.6833385, w: 9.406424}
+ tangentMode: 0
+ - time: 0.8666667
+ value: {x: 0.013191217, y: -0.02833882, z: 0.9887448, w: 0.14631003}
+ inSlope: {x: 0.09063468, y: -0.10368037, z: -0.11240971, w: 3.365544}
+ outSlope: {x: 0.09063468, y: -0.10368037, z: -0.11240971, w: 3.365544}
+ tangentMode: 0
+ - time: 0.90000004
+ value: {x: 0.013036248, y: -0.028862923, z: 0.98902833, w: 0.14429125}
+ inSlope: {x: -0.006493784, y: -0.013677812, z: 0.016717322, w: -0.11834113}
+ outSlope: {x: -0.006493784, y: -0.013677812, z: 0.016717322, w: -0.11834113}
+ tangentMode: 0
+ - time: 1.3000001
+ value: {x: 0.0045739016, y: -0.030013634, z: 0.9951066, w: -0.09402774}
+ inSlope: {x: -0.028442072, y: -0.0050164796, z: -0.07985821, w: -0.844226}
+ outSlope: {x: -0.028442072, y: -0.0050164796, z: -0.07985821, w: -0.844226}
+ tangentMode: 0
+ - time: 1.6666667
+ value: {x: -0.0030062262, y: -0.034351725, z: 0.9400898, w: -0.33917865}
+ inSlope: {x: -0.0076102996, y: -0.011597082, z: -0.11343591, w: -0.31477985}
+ outSlope: {x: -0.0076102996, y: -0.011597082, z: -0.11343591, w: -0.31477985}
+ tangentMode: 0
+ - time: 1.7666668
+ value: {x: -0.0033010552, y: -0.03521398, z: 0.9339735, w: -0.35558775}
+ inSlope: {x: 0.010079936, y: 0.0017869675, z: 0.079522215, w: 0.21485096}
+ outSlope: {x: 0.010079936, y: 0.0017869675, z: 0.079522215, w: 0.21485096}
+ tangentMode: 0
+ - time: 1.8666668
+ value: {x: 0.0015828245, y: -0.032768443, z: 0.97173077, w: -0.2338012}
+ inSlope: {x: 0.08304437, y: 0.02776888, z: 0.4772298, w: 2.0222294}
+ outSlope: {x: 0.08304437, y: 0.02776888, z: 0.4772298, w: 2.0222294}
+ tangentMode: 0
+ - time: 1.9333335
+ value: {x: 0.0077029117, y: -0.03188897, z: 0.995599, w: -0.087786816}
+ inSlope: {x: 0.08725819, y: -0.003635207, z: 0.1915257, w: 2.06903}
+ outSlope: {x: 0.08725819, y: -0.003635207, z: 0.1915257, w: 2.06903}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: 0.012318889, y: -0.03282362, z: 0.99913466, w: 0.022377057}
+ inSlope: {x: 0.03917031, y: -0.012364489, z: -0.008618838, w: 0.94501483}
+ outSlope: {x: 0.03917031, y: -0.012364489, z: -0.008618838, w: 0.94501483}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.013030555, y: -0.033094514, z: 0.99857855, w: 0.03969673}
+ inSlope: {x: 0.021350013, y: -0.008126877, z: -0.016683357, w: 0.51959074}
+ outSlope: {x: 0.021350013, y: -0.008126877, z: -0.016683357, w: 0.51959074}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.00000010746149, y: 0.00000010685985, z: 0.08153833, w: 0.99667025}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.00000010746149, y: 0.00000010685985, z: 0.08153833, w: 0.99667025}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.00000010746149, y: 0.00000010685985, z: 0.08153833, w: 0.99667025}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.00000010746149, y: 0.00000010685985, z: 0.08153833, w: 0.99667025}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.6181439, y: 0.2964857, z: 0.62088716, w: 0.380123}
+ inSlope: {x: -0.07912695, y: 0.7658895, z: -1.3474505, w: 1.5246811}
+ outSlope: {x: -0.07912695, y: 0.7658895, z: -1.3474505, w: 1.5246811}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: 0.61550635, y: 0.32201535, z: 0.57597214, w: 0.4309457}
+ inSlope: {x: -0.051750533, y: 1.1365359, z: -2.5016983, w: 2.1979651}
+ outSlope: {x: -0.051750533, y: 1.1365359, z: -2.5016983, w: 2.1979651}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: 0.6146939, y: 0.37225476, z: 0.45410725, w: 0.526654}
+ inSlope: {x: 0.04550547, y: 1.3480742, z: -4.0526547, w: 2.463608}
+ outSlope: {x: 0.04550547, y: 1.3480742, z: -4.0526547, w: 2.463608}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: 0.61854005, y: 0.41188696, z: 0.30579513, w: 0.59518623}
+ inSlope: {x: 0.09387285, y: 0.8027548, z: -3.336822, w: 1.34041}
+ outSlope: {x: 0.09387285, y: 0.8027548, z: -3.336822, w: 1.34041}
+ tangentMode: 0
+ - time: 0.13333334
+ value: {x: 0.62095207, y: 0.42577174, z: 0.23165247, w: 0.61601466}
+ inSlope: {x: 0.029473908, y: 0.20756812, z: -1.1032808, w: 0.3163344}
+ outSlope: {x: 0.029473908, y: 0.20756812, z: -1.1032808, w: 0.3163344}
+ tangentMode: 0
+ - time: 0.16666669
+ value: {x: 0.620505, y: 0.42572483, z: 0.23224309, w: 0.6162752}
+ inSlope: {x: -0.020653008, y: -0.0049307942, z: 0.043249503, w: 0.0078338375}
+ outSlope: {x: -0.020653008, y: -0.0049307942, z: 0.043249503, w: 0.0078338375}
+ tangentMode: 0
+ - time: 0.26666668
+ value: {x: 0.61874205, y: 0.4232977, z: 0.24730419, w: 0.613855}
+ inSlope: {x: 0.019110741, y: -0.055690266, z: 0.29924893, w: -0.1026562}
+ outSlope: {x: 0.019110741, y: -0.055690266, z: 0.29924893, w: -0.1026562}
+ tangentMode: 0
+ - time: 0.33333334
+ value: {x: 0.6315038, y: 0.4100794, z: 0.2851898, w: 0.59304684}
+ inSlope: {x: 0.54902375, y: -0.5309224, z: 1.0605261, w: -0.769098}
+ outSlope: {x: 0.54902375, y: -0.5309224, z: 1.0605261, w: -0.769098}
+ tangentMode: 0
+ - time: 0.43333337
+ value: {x: 0.71636033, y: 0.31178412, z: 0.44662538, w: 0.43605542}
+ inSlope: {x: 0.75328624, y: -1.2161322, z: 1.7719312, w: -2.1967125}
+ outSlope: {x: 0.75328624, y: -1.2161322, z: 1.7719312, w: -2.1967125}
+ tangentMode: 0
+ - time: 0.5
+ value: {x: 0.74923265, y: 0.23143157, z: 0.55395055, w: 0.2796941}
+ inSlope: {x: 0.21775138, y: -1.0757129, z: 1.3106532, w: -2.2073374}
+ outSlope: {x: 0.21775138, y: -1.0757129, z: 1.3106532, w: -2.2073374}
+ tangentMode: 0
+ - time: 0.56666666
+ value: {x: 0.75068355, y: 0.17621185, z: 0.61560154, w: 0.16266021}
+ inSlope: {x: -0.042943962, y: -0.4632349, z: 0.4843759, w: -0.99741364}
+ outSlope: {x: -0.042943962, y: -0.4632349, z: 0.4843759, w: -0.99741364}
+ tangentMode: 0
+ - time: 0.6666667
+ value: {x: 0.7493605, y: 0.16783611, z: 0.6240239, w: 0.14451301}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.5666668
+ value: {x: 0.7493605, y: 0.16783611, z: 0.6240239, w: 0.14451301}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.7000002
+ value: {x: 0.7426572, y: 0.18563597, z: 0.6183022, w: 0.17805037}
+ inSlope: {x: -0.15655065, y: 0.3228164, z: -0.08578502, w: 0.6028458}
+ outSlope: {x: -0.15655065, y: 0.3228164, z: -0.08578502, w: 0.6028458}
+ tangentMode: 0
+ - time: 1.9000001
+ value: {x: 0.6638586, y: 0.269551, z: 0.6138595, w: 0.3313768}
+ inSlope: {x: -0.52995133, y: 0.36371535, z: 0.061517294, w: 0.65725875}
+ outSlope: {x: -0.52995133, y: 0.36371535, z: 0.061517294, w: 0.65725875}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.6181439, y: 0.2964857, z: 0.62088716, w: 0.380123}
+ inSlope: {x: -0.11140834, y: 0.057651456, z: 0.020030756, w: 0.1046733}
+ outSlope: {x: -0.11140834, y: 0.057651456, z: 0.020030756, w: 0.1046733}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.11425359, y: -0.16137956, z: 0.13521227, w: 0.9708864}
+ inSlope: {x: -0.15717028, y: -0.6905727, z: -1.0570201, w: 0.023117064}
+ outSlope: {x: -0.15717028, y: -0.6905727, z: -1.0570201, w: 0.023117064}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: 0.10901458, y: -0.18439865, z: 0.09997827, w: 0.971657}
+ inSlope: {x: -0.19618925, y: -1.0515163, z: -1.7096438, w: -0.05332946}
+ outSlope: {x: -0.19618925, y: -1.0515163, z: -1.7096438, w: -0.05332946}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: 0.1011743, y: -0.23148066, z: 0.021235999, w: 0.9673311}
+ inSlope: {x: -0.15398794, y: -1.328579, z: -2.375471, w: -0.24748474}
+ outSlope: {x: -0.15398794, y: -1.328579, z: -2.375471, w: -0.24748474}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: 0.098748714, y: -0.2729706, z: -0.05838648, w: 0.955158}
+ inSlope: {x: -0.02469432, y: -0.87436044, z: -1.7374094, w: -0.30203465}
+ outSlope: {x: -0.02469432, y: -0.87436044, z: -1.7374094, w: -0.30203465}
+ tangentMode: 0
+ - time: 0.16666669
+ value: {x: 0.09988343, y: -0.28975984, z: -0.094375215, w: 0.94718313}
+ inSlope: {x: 0.015696622, y: 0.004085452, z: 0.017675646, w: 0.001344681}
+ outSlope: {x: 0.015696622, y: 0.004085452, z: 0.017675646, w: 0.001344681}
+ tangentMode: 0
+ - time: 0.3
+ value: {x: 0.09910279, y: -0.28376514, z: -0.08132042, w: 0.95028573}
+ inSlope: {x: -0.13423675, y: 0.23900317, z: 0.27924713, w: 0.10646046}
+ outSlope: {x: -0.13423675, y: 0.23900317, z: 0.27924713, w: 0.10646046}
+ tangentMode: 0
+ - time: 0.43333337
+ value: {x: 0.04032357, y: -0.1587675, z: 0.017137328, w: 0.9863434}
+ inSlope: {x: -0.5159506, y: 1.3779763, z: 1.0740677, w: 0.2230222}
+ outSlope: {x: -0.5159506, y: 1.3779763, z: 1.0740677, w: 0.2230222}
+ tangentMode: 0
+ - time: 0.56666666
+ value: {x: 0.0011602888, y: -0.008869438, z: 0.14143854, w: 0.98990667}
+ inSlope: {x: -0.0752454, y: 0.49487498, z: 0.43552077, w: -0.050843973}
+ outSlope: {x: -0.0752454, y: 0.49487498, z: 0.43552077, w: -0.050843973}
+ tangentMode: 0
+ - time: 0.6666667
+ value: {x: -5.551115e-17, y: 1.6401612e-16, z: 0.14932641, w: 0.98878795}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.5666668
+ value: {x: -1.7064776e-14, y: 2.4657996e-14, z: 0.14932641, w: 0.98878795}
+ inSlope: {x: 0.000000046247354, y: -0.00000006659793, z: 0, w: 0}
+ outSlope: {x: 0.000000046247354, y: -0.00000006659793, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.7666668
+ value: {x: 0.036830205, y: -0.052679986, z: 0.13984612, w: 0.98808473}
+ inSlope: {x: 0.3687688, y: -0.5234096, z: -0.069887035, w: -0.032324225}
+ outSlope: {x: 0.3687688, y: -0.5234096, z: -0.069887035, w: -0.032324225}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.11425359, y: -0.16137956, z: 0.13521227, w: 0.9708864}
+ inSlope: {x: 0.058862697, y: -0.08198626, z: 0.00389323, w: -0.020914098}
+ outSlope: {x: 0.058862697, y: -0.08198626, z: 0.00389323, w: -0.020914098}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.16021426, y: 0.050204527, z: 0.15210365, w: 0.9739997}
+ inSlope: {x: -0.5855539, y: -1.6946874, z: -1.0472561, w: 0.2721691}
+ outSlope: {x: -0.5855539, y: -1.6946874, z: -1.0472561, w: 0.2721691}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: 0.1406958, y: -0.006285057, z: 0.11719511, w: 0.983072}
+ inSlope: {x: -0.7507817, y: -2.6716409, z: -1.768017, w: 0.165824}
+ outSlope: {x: -0.7507817, y: -2.6716409, z: -1.768017, w: 0.165824}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: 0.11016214, y: -0.12790489, z: 0.034235824, w: 0.9850546}
+ inSlope: {x: -0.6352611, y: -3.53262, z: -2.567161, w: -0.28874162}
+ outSlope: {x: -0.6352611, y: -3.53262, z: -2.567161, w: -0.28874162}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: 0.09834505, y: -0.24179307, z: -0.053948972, w: 0.96382254}
+ inSlope: {x: -0.15951186, y: -2.427997, z: -1.9324067, w: -0.5678872}
+ outSlope: {x: -0.15951186, y: -2.427997, z: -1.9324067, w: -0.5678872}
+ tangentMode: 0
+ - time: 0.13333334
+ value: {x: 0.099528015, y: -0.28977135, z: -0.09459128, w: 0.9471955}
+ inSlope: {x: 0.024625584, y: -0.71832335, z: -0.60570014, w: -0.24932565}
+ outSlope: {x: 0.024625584, y: -0.71832335, z: -0.60570014, w: -0.24932565}
+ tangentMode: 0
+ - time: 0.16666669
+ value: {x: 0.099986754, y: -0.2896813, z: -0.09432898, w: 0.94720083}
+ inSlope: {x: 0.01994714, y: 0.014339536, z: 0.020718388, w: 0.0043228273}
+ outSlope: {x: 0.01994714, y: 0.014339536, z: 0.020718388, w: 0.0043228273}
+ tangentMode: 0
+ - time: 0.33333334
+ value: {x: 0.09080632, y: -0.25450644, z: -0.06642514, w: 0.96050423}
+ inSlope: {x: -0.33434108, y: 0.7212732, z: 0.53432155, w: 0.25100905}
+ outSlope: {x: -0.33434108, y: 0.7212732, z: 0.53432155, w: 0.25100905}
+ tangentMode: 0
+ - time: 0.43333337
+ value: {x: 0.04078403, y: -0.14313726, z: 0.019981215, w: 0.9886603}
+ inSlope: {x: -0.5000749, y: 1.2873019, z: 1.0642214, w: 0.18520391}
+ outSlope: {x: -0.5000749, y: 1.2873019, z: 1.0642214, w: 0.18520391}
+ tangentMode: 0
+ - time: 0.56666666
+ value: {x: 0.0013554234, y: -0.0077670566, z: 0.14167652, w: 0.98988163}
+ inSlope: {x: -0.08421072, y: 0.43568915, z: 0.4229506, w: -0.05111756}
+ outSlope: {x: -0.08421072, y: 0.43568915, z: 0.4229506, w: -0.05111756}
+ tangentMode: 0
+ - time: 0.6666667
+ value: {x: -1.1250384e-10, y: 1.6990447e-11, z: 0.14932641, w: 0.98878795}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.5666668
+ value: {x: -1.125288e-10, y: 1.6982811e-11, z: 0.14932641, w: 0.98878795}
+ inSlope: {x: 0.000000067857265, y: 0.000000020769033, z: 0, w: 0}
+ outSlope: {x: 0.000000067857265, y: 0.000000020769033, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.7666668
+ value: {x: 0.053092793, y: 0.016393064, z: 0.15159439, w: 0.9868797}
+ inSlope: {x: 0.5222962, y: 0.16261503, z: 0.01566635, w: -0.033592016}
+ outSlope: {x: 0.5222962, y: 0.16261503, z: 0.01566635, w: -0.033592016}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.16021426, y: 0.050204527, z: 0.15210365, w: 0.9739997}
+ inSlope: {x: 0.08019455, y: 0.025611544, z: -0.0016513483, w: -0.014128102}
+ outSlope: {x: 0.08019455, y: 0.025611544, z: -0.0016513483, w: -0.014128102}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1.7890303e-10, y: -0.000000002185961, z: 0.21244518, w: 0.97717303}
+ inSlope: {x: 0.10104324, y: -1.2823457, z: -1.5270509, w: 0.26281893}
+ outSlope: {x: 0.10104324, y: -1.2823457, z: -1.5270509, w: 0.26281893}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: 0.0033681083, y: -0.04274486, z: 0.16154349, w: 0.98593366}
+ inSlope: {x: 0.40993437, y: -2.1289303, z: -2.4115913, w: 0.1646465}
+ outSlope: {x: 0.40993437, y: -2.1289303, z: -2.4115913, w: 0.1646465}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: 0.027328962, y: -0.1419287, z: 0.051672418, w: 0.98814946}
+ inSlope: {x: 1.0383793, y: -3.0179133, z: -3.1924503, w: -0.30337217}
+ outSlope: {x: 1.0383793, y: -3.0179133, z: -3.1924503, w: -0.30337217}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: 0.0725934, y: -0.24393909, z: -0.05128654, w: 0.96570885}
+ inSlope: {x: 1.0829859, y: -2.21764, z: -2.1939557, w: -0.61430997}
+ outSlope: {x: 1.0829859, y: -2.21764, z: -2.1939557, w: -0.61430997}
+ tangentMode: 0
+ - time: 0.13333334
+ value: {x: 0.099528015, y: -0.28977135, z: -0.09459128, w: 0.9471955}
+ inSlope: {x: 0.40280008, y: -0.68335605, z: -0.64786786, w: -0.2761406}
+ outSlope: {x: 0.40280008, y: -0.68335605, z: -0.64786786, w: -0.2761406}
+ tangentMode: 0
+ - time: 0.16666669
+ value: {x: 0.09944674, y: -0.28949615, z: -0.09447773, w: 0.9472995}
+ inSlope: {x: -0.00836961, y: 0.019332021, z: 0.015073121, w: 0.008272827}
+ outSlope: {x: -0.00836961, y: 0.019332021, z: 0.015073121, w: 0.008272827}
+ tangentMode: 0
+ - time: 0.26666668
+ value: {x: 0.09547056, y: -0.283097, z: -0.0861447, w: 0.95043176}
+ inSlope: {x: -0.089035824, y: 0.12469725, z: 0.19779572, w: 0.063472696}
+ outSlope: {x: -0.089035824, y: 0.12469725, z: 0.19779572, w: 0.063472696}
+ tangentMode: 0
+ - time: 0.33333334
+ value: {x: 0.07198324, y: -0.27159464, z: -0.057826266, w: 0.9579723}
+ inSlope: {x: -0.91436815, y: 0.21762854, z: 0.79642594, w: 0.1627081}
+ outSlope: {x: -0.91436815, y: 0.21762854, z: 0.79642594, w: 0.1627081}
+ tangentMode: 0
+ - time: 0.43333337
+ value: {x: -0.055165887, y: -0.2372571, z: 0.038822547, w: 0.96910197}
+ inSlope: {x: -1.0318619, y: 0.6755416, z: 0.7300968, w: 0.07993793}
+ outSlope: {x: -1.0318619, y: 0.6755416, z: 0.7300968, w: 0.07993793}
+ tangentMode: 0
+ - time: 0.53333336
+ value: {x: -0.1391158, y: -0.13005538, z: 0.099813305, w: 0.9766113}
+ inSlope: {x: -0.6081214, y: 1.0391326, z: 0.51239485, w: 0.007989386}
+ outSlope: {x: -0.6081214, y: 1.0391326, z: 0.51239485, w: 0.007989386}
+ tangentMode: 0
+ - time: 0.6
+ value: {x: -0.16128837, y: -0.08794665, z: 0.12034215, w: 0.97558665}
+ inSlope: {x: -0.08898333, y: 0.1804135, z: 0.087121315, w: -0.007549518}
+ outSlope: {x: -0.08898333, y: 0.1804135, z: 0.087121315, w: -0.007549518}
+ tangentMode: 0
+ - time: 0.73333335
+ value: {x: -0.16128835, y: -0.08794667, z: 0.12034215, w: 0.97558665}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.5666668
+ value: {x: -0.16128835, y: -0.08794667, z: 0.12034215, w: 0.97558665}
+ inSlope: {x: 0, y: 0, z: 0.00000033527644, w: 0}
+ outSlope: {x: 0, y: 0, z: 0.00000033527644, w: 0}
+ tangentMode: 0
+ - time: 1.6666667
+ value: {x: -0.15109712, y: -0.083657056, z: 0.15117146, w: 0.97330284}
+ inSlope: {x: 0.2840997, y: 0.12956259, z: 0.78772616, w: -0.07115265}
+ outSlope: {x: 0.2840997, y: 0.12956259, z: 0.78772616, w: -0.07115265}
+ tangentMode: 0
+ - time: 1.8333335
+ value: {x: -0.07903483, y: -0.042648055, z: 0.27558574, w: 0.9570722}
+ inSlope: {x: 0.43566146, y: 0.2759183, z: 0.077552974, w: 0.026297342}
+ outSlope: {x: 0.43566146, y: 0.2759183, z: 0.077552974, w: 0.026297342}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: -0.0040759337, y: -0.001771375, z: 0.21733989, w: 0.9760859}
+ inSlope: {x: 0.22198784, y: 0.10033769, z: -0.25578645, w: 0.05999003}
+ outSlope: {x: 0.22198784, y: 0.10033769, z: -0.25578645, w: 0.05999003}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -1.1024215e-10, y: 2.3967769e-11, z: 0.21244518, w: 0.97717303}
+ inSlope: {x: 0.12227813, y: 0.0531413, z: -0.14684124, w: 0.032613903}
+ outSlope: {x: 0.12227813, y: 0.0531413, z: -0.14684124, w: 0.032613903}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 5.6632993e-11, y: -0.0000000021593787, z: 0.21244518, w: 0.97717303}
+ inSlope: {x: 0.10104325, y: -1.2823457, z: -1.5270509, w: 0.26281893}
+ outSlope: {x: 0.10104325, y: -1.2823457, z: -1.5270509, w: 0.26281893}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: 0.0033681083, y: -0.04274486, z: 0.16154349, w: 0.98593366}
+ inSlope: {x: 0.40993437, y: -2.1289303, z: -2.4115913, w: 0.1646465}
+ outSlope: {x: 0.40993437, y: -2.1289303, z: -2.4115913, w: 0.1646465}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: 0.027328962, y: -0.1419287, z: 0.051672418, w: 0.98814946}
+ inSlope: {x: 1.0383793, y: -3.0179133, z: -3.1924503, w: -0.30337217}
+ outSlope: {x: 1.0383793, y: -3.0179133, z: -3.1924503, w: -0.30337217}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: 0.0725934, y: -0.24393909, z: -0.05128654, w: 0.96570885}
+ inSlope: {x: 1.0829859, y: -2.21764, z: -2.1939557, w: -0.61430997}
+ outSlope: {x: 1.0829859, y: -2.21764, z: -2.1939557, w: -0.61430997}
+ tangentMode: 0
+ - time: 0.13333334
+ value: {x: 0.099528015, y: -0.28977135, z: -0.09459128, w: 0.9471955}
+ inSlope: {x: 0.40272936, y: -0.68264705, z: -0.64794266, w: -0.27592424}
+ outSlope: {x: 0.40272936, y: -0.68264705, z: -0.64794266, w: -0.27592424}
+ tangentMode: 0
+ - time: 0.16666669
+ value: {x: 0.09944202, y: -0.2894489, z: -0.09448271, w: 0.9473139}
+ inSlope: {x: -0.008579716, y: 0.021459907, z: 0.014850497, w: 0.008921027}
+ outSlope: {x: -0.008579716, y: 0.021459907, z: 0.014850497, w: 0.008921027}
+ tangentMode: 0
+ - time: 0.26666668
+ value: {x: 0.09545337, y: -0.28290728, z: -0.08616376, w: 0.95048827}
+ inSlope: {x: -0.08872905, y: 0.1215014, z: 0.19812486, w: 0.062507994}
+ outSlope: {x: -0.08872905, y: 0.1215014, z: 0.19812486, w: 0.062507994}
+ tangentMode: 0
+ - time: 0.33333334
+ value: {x: 0.0721471, y: -0.27215707, z: -0.05723997, w: 0.95783556}
+ inSlope: {x: -0.91414195, y: 0.1963242, z: 0.82232857, w: 0.15750104}
+ outSlope: {x: -0.91414195, y: 0.1963242, z: 0.82232857, w: 0.15750104}
+ tangentMode: 0
+ - time: 0.43333337
+ value: {x: -0.05966183, y: -0.24024525, z: 0.04154216, w: 0.96798605}
+ inSlope: {x: -1.1770343, y: 0.6569563, z: 0.7188298, w: 0.061229505}
+ outSlope: {x: -1.1770343, y: 0.6569563, z: 0.7188298, w: 0.061229505}
+ tangentMode: 0
+ - time: 0.53333336
+ value: {x: -0.16834113, y: -0.13548358, z: 0.100666404, w: 0.9711703}
+ inSlope: {x: -0.8536679, y: 1.0069901, z: 0.51358366, w: -0.05047562}
+ outSlope: {x: -0.8536679, y: 1.0069901, z: 0.51358366, w: -0.05047562}
+ tangentMode: 0
+ - time: 0.6
+ value: {x: -0.20050791, y: -0.09491467, z: 0.12172277, w: 0.9674561}
+ inSlope: {x: -0.17338754, y: 0.24429083, z: 0.13410047, w: -0.027211001}
+ outSlope: {x: -0.17338754, y: 0.24429083, z: 0.13410047, w: -0.027211001}
+ tangentMode: 0
+ - time: 0.6666667
+ value: {x: -0.2097505, y: -0.0789671, z: 0.13165992, w: 0.96562654}
+ inSlope: {x: -0.20926574, y: 0.36628854, z: 0.234907, w: -0.048226126}
+ outSlope: {x: -0.20926574, y: 0.36628854, z: 0.234907, w: -0.048226126}
+ tangentMode: 0
+ - time: 0.8
+ value: {x: -0.22462183, y: -0.051952608, z: 0.14989698, w: 0.9614452}
+ inSlope: {x: 0.06464904, y: -0.093620576, z: -0.05288107, w: 0.018028013}
+ outSlope: {x: 0.06464904, y: -0.093620576, z: -0.05288107, w: 0.018028013}
+ tangentMode: 0
+ - time: 1.1333334
+ value: {x: -0.16469711, y: -0.13610938, z: 0.10983421, w: 0.970714}
+ inSlope: {x: 0.073581785, y: -0.10065244, z: -0.039478578, w: 0.0031140477}
+ outSlope: {x: 0.073581785, y: -0.10065244, z: -0.039478578, w: 0.0031140477}
+ tangentMode: 0
+ - time: 1.5666668
+ value: {x: -0.19989389, y: -0.095628574, z: 0.12148023, w: 0.96754336}
+ inSlope: {x: -0.034881845, y: 0.04054834, z: 0.013684049, w: -0.0048682014}
+ outSlope: {x: -0.034881845, y: 0.04054834, z: 0.013684049, w: -0.0048682014}
+ tangentMode: 0
+ - time: 1.6666667
+ value: {x: -0.18738139, y: -0.090342306, z: 0.15243144, w: 0.96617347}
+ inSlope: {x: 0.3639029, y: 0.14005683, z: 0.78494203, w: -0.04458451}
+ outSlope: {x: 0.3639029, y: 0.14005683, z: 0.78494203, w: -0.04458451}
+ tangentMode: 0
+ - time: 1.8000001
+ value: {x: -0.1145007, y: -0.054980744, z: 0.2675073, w: 0.9551474}
+ inSlope: {x: 0.5640906, y: 0.31843448, z: 0.46954793, w: -0.041540295}
+ outSlope: {x: 0.5640906, y: 0.31843448, z: 0.46954793, w: -0.041540295}
+ tangentMode: 0
+ - time: 1.9666667
+ value: {x: -0.018210484, y: -0.0065908115, z: 0.22993371, w: 0.9730136}
+ inSlope: {x: 0.47590584, y: 0.18739714, z: -0.42659545, w: 0.11341276}
+ outSlope: {x: 0.47590584, y: 0.18739714, z: -0.42659545, w: 0.11341276}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -2.3251219e-10, y: 5.0550245e-11, z: 0.21244518, w: 0.97717303}
+ inSlope: {x: 0.15064025, y: 0.051561933, z: -0.15064687, w: 0.03359202}
+ outSlope: {x: 0.15064025, y: 0.051561933, z: -0.15064687, w: 0.03359202}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -2.366097e-11, y: -0.0000000021419222, z: 0.21244518, w: 0.97717303}
+ inSlope: {x: 0.10104325, y: -1.2823457, z: -1.5270509, w: 0.26281893}
+ outSlope: {x: 0.10104325, y: -1.2823457, z: -1.5270509, w: 0.26281893}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: 0.0033681083, y: -0.04274486, z: 0.16154349, w: 0.98593366}
+ inSlope: {x: 0.40993437, y: -2.1289303, z: -2.4115913, w: 0.1646465}
+ outSlope: {x: 0.40993437, y: -2.1289303, z: -2.4115913, w: 0.1646465}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: 0.027328962, y: -0.1419287, z: 0.051672418, w: 0.98814946}
+ inSlope: {x: 1.0383793, y: -3.0179133, z: -3.1924503, w: -0.30337217}
+ outSlope: {x: 1.0383793, y: -3.0179133, z: -3.1924503, w: -0.30337217}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: 0.0725934, y: -0.24393909, z: -0.05128654, w: 0.96570885}
+ inSlope: {x: 1.0829859, y: -2.21764, z: -2.1939557, w: -0.61430997}
+ outSlope: {x: 1.0829859, y: -2.21764, z: -2.1939557, w: -0.61430997}
+ tangentMode: 0
+ - time: 0.13333334
+ value: {x: 0.099528015, y: -0.28977135, z: -0.09459128, w: 0.9471955}
+ inSlope: {x: 0.40263134, y: -0.68166137, z: -0.6480459, w: -0.27562293}
+ outSlope: {x: 0.40263134, y: -0.68166137, z: -0.6480459, w: -0.27562293}
+ tangentMode: 0
+ - time: 0.16666669
+ value: {x: 0.099435486, y: -0.28938317, z: -0.0944896, w: 0.947334}
+ inSlope: {x: -0.008872077, y: 0.02441883, z: 0.014541708, w: 0.009819567}
+ outSlope: {x: -0.008872077, y: 0.02441883, z: 0.014541708, w: 0.009819567}
+ tangentMode: 0
+ - time: 0.26666668
+ value: {x: 0.09542946, y: -0.28264356, z: -0.08619024, w: 0.9505667}
+ inSlope: {x: -0.08830235, y: 0.117059216, z: 0.19858228, w: 0.061168678}
+ outSlope: {x: -0.08830235, y: 0.117059216, z: 0.19858228, w: 0.061168678}
+ tangentMode: 0
+ - time: 0.33333334
+ value: {x: 0.07391726, y: -0.27308726, z: -0.057463925, w: 0.9574223}
+ inSlope: {x: -0.83122736, y: 0.16274431, z: 0.8089438, w: 0.14499658}
+ outSlope: {x: -0.83122736, y: 0.16274431, z: 0.8089438, w: 0.14499658}
+ tangentMode: 0
+ - time: 0.43333337
+ value: {x: -0.049535975, y: -0.24350126, z: 0.03906359, w: 0.96784675}
+ inSlope: {x: -1.1932874, y: 0.66304743, z: 0.70518196, w: 0.076367006}
+ outSlope: {x: -1.1932874, y: 0.66304743, z: 0.70518196, w: 0.076367006}
+ tangentMode: 0
+ - time: 0.53333336
+ value: {x: -0.16875327, y: -0.1367893, z: 0.09924599, w: 0.97106194}
+ inSlope: {x: -0.9700184, y: 1.0211587, z: 0.5434821, w: -0.06870124}
+ outSlope: {x: -0.9700184, y: 1.0211587, z: 0.5434821, w: -0.06870124}
+ tangentMode: 0
+ - time: 0.6
+ value: {x: -0.2056872, y: -0.09582748, z: 0.121890835, w: 0.966257}
+ inSlope: {x: -0.19384606, y: 0.24569485, z: 0.14142066, w: -0.032832906}
+ outSlope: {x: -0.19384606, y: 0.24569485, z: 0.14142066, w: -0.032832906}
+ tangentMode: 0
+ - time: 0.6666667
+ value: {x: -0.21493022, y: -0.07982605, z: 0.13173053, w: 0.9644065}
+ inSlope: {x: -0.20933771, y: 0.36756998, z: 0.23267809, w: -0.04870714}
+ outSlope: {x: -0.20933771, y: 0.36756998, z: 0.23267809, w: -0.04870714}
+ tangentMode: 0
+ - time: 0.8
+ value: {x: -0.2298126, y: -0.05271126, z: 0.14980446, w: 0.9601908}
+ inSlope: {x: 0.06475029, y: -0.09392338, z: -0.052307077, w: 0.018239908}
+ outSlope: {x: 0.06475029, y: -0.09392338, z: -0.052307077, w: 0.018239908}
+ tangentMode: 0
+ - time: 1.1333334
+ value: {x: -0.16986652, y: -0.137088, z: 0.11027089, w: 0.9696353}
+ inSlope: {x: 0.07352859, y: -0.10085741, z: -0.0388344, w: 0.0033134252}
+ outSlope: {x: 0.07352859, y: -0.10085741, z: -0.0388344, w: 0.0033134252}
+ tangentMode: 0
+ - time: 1.5666668
+ value: {x: -0.20507275, y: -0.09654279, z: 0.12165289, w: 0.9663464}
+ inSlope: {x: -0.034906656, y: 0.04062657, z: 0.013423204, w: -0.0049880063}
+ outSlope: {x: -0.034906656, y: 0.04062657, z: 0.013423204, w: -0.0049880063}
+ tangentMode: 0
+ - time: 1.7000002
+ value: {x: -0.21052746, y: -0.08668427, z: 0.16146217, w: 0.9602573}
+ inSlope: {x: -0.06116526, y: 0.1373187, z: 0.6146394, w: -0.104955666}
+ outSlope: {x: -0.06116526, y: 0.1373187, z: 0.6146394, w: -0.104955666}
+ tangentMode: 0
+ - time: 1.8000001
+ value: {x: -0.21437287, y: -0.074934, z: 0.21660487, w: 0.9494796}
+ inSlope: {x: -0.012946354, y: 0.060448386, z: 0.2965504, w: -0.06431669}
+ outSlope: {x: -0.012946354, y: 0.060448386, z: 0.2965504, w: -0.06431669}
+ tangentMode: 0
+ - time: 1.8666668
+ value: {x: -0.19895545, y: -0.068193905, z: 0.22216637, w: 0.95205486}
+ inSlope: {x: 0.8236605, y: 0.29450732, z: -0.005794024, w: 0.18259335}
+ outSlope: {x: 0.8236605, y: 0.29450732, z: -0.005794024, w: 0.18259335}
+ tangentMode: 0
+ - time: 1.9666667
+ value: {x: -0.056172926, y: -0.018551484, z: 0.21704592, w: 0.97436726}
+ inSlope: {x: 1.3806286, y: 0.4644351, z: -0.09184769, w: 0.11849837}
+ outSlope: {x: 1.3806286, y: 0.4644351, z: -0.09184769, w: 0.11849837}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: -0.01606407, y: -0.0052455524, z: 0.21390435, w: 0.9767084}
+ inSlope: {x: 0.84259033, y: 0.27827108, z: -0.069010735, w: 0.042086333}
+ outSlope: {x: 0.84259033, y: 0.27827108, z: -0.069010735, w: 0.042086333}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -3.128062e-10, y: 6.80068e-11, z: 0.21244518, w: 0.97717303}
+ inSlope: {x: 0.48192257, y: 0.15736672, z: -0.043775033, w: 0.013938559}
+ outSlope: {x: 0.48192257, y: 0.15736672, z: -0.043775033, w: 0.013938559}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.9284578, y: 0.31780726, z: 0.19214165, w: 0.006803551}
+ inSlope: {x: -0.2252072, y: 0.7383611, z: -0.18516047, w: -0.3155561}
+ outSlope: {x: -0.2252072, y: 0.7383611, z: -0.18516047, w: -0.3155561}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: 0.9209509, y: 0.3424193, z: 0.18596964, w: -0.0037149864}
+ inSlope: {x: -0.41538113, y: 1.2124759, z: -0.32656246, w: -0.49376565}
+ outSlope: {x: -0.41538113, y: 1.2124759, z: -0.32656246, w: -0.49376565}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: 0.8733806, y: 0.4605418, z: 0.15121052, w: -0.04736002}
+ inSlope: {x: -0.75866914, y: 1.5928197, z: -0.4857664, w: -0.4687148}
+ outSlope: {x: -0.75866914, y: 1.5928197, z: -0.4857664, w: -0.4687148}
+ tangentMode: 0
+ - time: 0.20000002
+ value: {x: 0.81417406, y: 0.5636833, z: 0.12770188, w: -0.05544355}
+ inSlope: {x: -0.5959905, y: 0.8947367, z: -0.11085291, w: 0.09972169}
+ outSlope: {x: -0.5959905, y: 0.8947367, z: -0.11085291, w: 0.09972169}
+ tangentMode: 0
+ - time: 0.43333337
+ value: {x: 0.6552147, y: 0.7428438, z: 0.13718246, w: -0.00759649}
+ inSlope: {x: -0.6209281, y: 0.52547807, z: 0.14264017, w: 0.1998914}
+ outSlope: {x: -0.6209281, y: 0.52547807, z: 0.14264017, w: 0.1998914}
+ tangentMode: 0
+ - time: 0.6
+ value: {x: 0.5951466, y: 0.7886462, z: 0.15399711, w: 0.011073042}
+ inSlope: {x: -0.043203197, y: 0.029759979, z: 0.014294597, w: 0.013136834}
+ outSlope: {x: -0.043203197, y: 0.029759979, z: 0.014294597, w: 0.013136834}
+ tangentMode: 0
+ - time: 1.1000001
+ value: {x: 0.5951466, y: 0.7886462, z: 0.15399711, w: 0.011073042}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.8000001
+ value: {x: 0.5951466, y: 0.7886462, z: 0.15399711, w: 0.011073042}
+ inSlope: {x: 0, y: 0, z: 0.00000022351684, w: -0.00000029336584}
+ outSlope: {x: 0, y: 0, z: 0.00000022351684, w: -0.00000029336584}
+ tangentMode: 0
+ - time: 1.8666668
+ value: {x: 0.6295602, y: 0.7613953, z: 0.15440564, w: 0.009500462}
+ inSlope: {x: 1.7166029, y: -1.5275669, z: 0.049648408, w: -0.07674962}
+ outSlope: {x: 1.7166029, y: -1.5275669, z: 0.049648408, w: -0.07674962}
+ tangentMode: 0
+ - time: 1.9000001
+ value: {x: 0.7095867, y: 0.6868085, z: 0.15730701, w: 0.0059563858}
+ inSlope: {x: 2.5490537, y: -2.7571778, z: 0.15747492, w: -0.09877439}
+ outSlope: {x: 2.5490537, y: -2.7571778, z: 0.15747492, w: -0.09877439}
+ tangentMode: 0
+ - time: 1.9333335
+ value: {x: 0.79949725, y: 0.5775832, z: 0.16490398, w: 0.0029154979}
+ inSlope: {x: 2.4332147, y: -3.447031, z: 0.28570604, w: -0.048836954}
+ outSlope: {x: 2.4332147, y: -3.447031, z: 0.28570604, w: -0.048836954}
+ tangentMode: 0
+ - time: 1.9666667
+ value: {x: 0.8718009, y: 0.45700672, z: 0.17635405, w: 0.002700582}
+ inSlope: {x: 1.7262957, y: -3.288406, z: 0.33635926, w: 0.03290149}
+ outSlope: {x: 1.7262957, y: -3.288406, z: 0.33635926, w: 0.03290149}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: 0.91458356, y: 0.35835606, z: 0.18732795, w: 0.0051089465}
+ inSlope: {x: 0.84984964, y: -2.0879834, z: 0.23681307, w: 0.061544336}
+ outSlope: {x: 0.84984964, y: -2.0879834, z: 0.23681307, w: 0.061544336}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 0.9284578, y: 0.31780726, z: 0.19214165, w: 0.006803551}
+ inSlope: {x: 0.41622737, y: -1.2164652, z: 0.14441116, w: 0.05083819}
+ outSlope: {x: 0.41622737, y: -1.2164652, z: 0.14441116, w: 0.05083819}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.00000067319047, y: -0.00000020826067, z: -0.34396434, w: 0.9389827}
+ inSlope: {x: -0.00000014506837, y: 0.0000004898081, z: -0.6776386, w: -0.25755823}
+ outSlope: {x: -0.00000014506837, y: 0.0000004898081, z: -0.6776386, w: -0.25755823}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: -0.0000006780261, y: -0.00000019193374, z: -0.3665523, w: 0.93039745}
+ inSlope: {x: -0.00000021115054, y: 0.0000007894073, z: -1.0726452, w: -0.44066542}
+ outSlope: {x: -0.00000021115054, y: 0.0000007894073, z: -1.0726452, w: -0.44066542}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: -0.0000006945662, y: -0.00000011889351, z: -0.4632218, w: 0.8862424}
+ inSlope: {x: -0.00000014953629, y: 0.00000080336054, z: -1.035399, w: -0.52221185}
+ outSlope: {x: -0.00000014953629, y: 0.00000080336054, z: -1.035399, w: -0.52221185}
+ tangentMode: 0
+ - time: 0.20000002
+ value: {x: -0.0000006971123, y: -0.00000010291948, z: -0.48344207, w: 0.87537634}
+ inSlope: {x: 0.0000000034941654, y: -0.000000023631552, z: 0.02967954, w: 0.01638204}
+ outSlope: {x: 0.0000000034941654, y: -0.000000023631552, z: 0.02967954, w: 0.01638204}
+ tangentMode: 0
+ - time: 0.7666667
+ value: {x: -0.0000006950689, y: -0.00000011591874, z: -0.46701187, w: 0.88425106}
+ inSlope: {x: -0.000000002433467, y: 0.000000014593661, z: -0.018565359, w: -0.009806158}
+ outSlope: {x: -0.000000002433467, y: 0.000000014593661, z: -0.018565359, w: -0.009806158}
+ tangentMode: 0
+ - time: 1.6000001
+ value: {x: -0.0000006948412, y: -0.000000117275796, z: -0.46528426, w: 0.88516134}
+ inSlope: {x: 0.000000007630383, y: -0.000000045333593, z: 0.05773237, w: 0.030380515}
+ outSlope: {x: 0.000000007630383, y: -0.000000045333593, z: 0.05773237, w: 0.030380515}
+ tangentMode: 0
+ - time: 1.8000001
+ value: {x: -0.00000069504216, y: -0.00000011607939, z: -0.46680748, w: 0.884359}
+ inSlope: {x: 0.0000000030141143, y: -0.000000017946025, z: 0.022848338, w: 0.01203504}
+ outSlope: {x: 0.0000000030141143, y: -0.000000017946025, z: 0.022848338, w: 0.01203504}
+ tangentMode: 0
+ - time: 1.9000001
+ value: {x: -0.0000006900368, y: -0.00000014285354, z: -0.43228146, w: 0.90173876}
+ inSlope: {x: 0.00000012343136, y: -0.0000005866902, z: 0.7683823, w: 0.36531293}
+ outSlope: {x: 0.00000012343136, y: -0.0000005866902, z: 0.7683823, w: 0.36531293}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: -0.0000006751281, y: -0.00000020189127, z: -0.35282025, w: 0.9356912}
+ inSlope: {x: 0.00000009808946, y: -0.0000003367547, z: 0.46447486, w: 0.17893924}
+ outSlope: {x: 0.00000009808946, y: -0.0000003367547, z: 0.46447486, w: 0.17893924}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.00000067319047, y: -0.00000020826067, z: -0.34396434, w: 0.9389827}
+ inSlope: {x: 0.000000058128705, y: -0.00000019108232, z: 0.26567754, w: 0.098746516}
+ outSlope: {x: 0.000000058128705, y: -0.00000019108232, z: 0.26567754, w: 0.098746516}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.00000067319024, y: -0.00000020826056, z: -0.34396434, w: 0.9389827}
+ inSlope: {x: -0.00000014506837, y: 0.00000048980763, z: -0.6776386, w: -0.25755823}
+ outSlope: {x: -0.00000014506837, y: 0.00000048980763, z: -0.6776386, w: -0.25755823}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: -0.00000067802586, y: -0.00000019193364, z: -0.3665523, w: 0.93039745}
+ inSlope: {x: -0.00000021114968, y: 0.00000078940684, z: -1.0726452, w: -0.44066542}
+ outSlope: {x: -0.00000021114968, y: 0.00000078940684, z: -1.0726452, w: -0.44066542}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: -0.000000694566, y: -0.000000118893425, z: -0.4632218, w: 0.8862424}
+ inSlope: {x: -0.00000014953629, y: 0.0000008033603, z: -1.035399, w: -0.52221185}
+ outSlope: {x: -0.00000014953629, y: 0.0000008033603, z: -1.035399, w: -0.52221185}
+ tangentMode: 0
+ - time: 0.20000002
+ value: {x: -0.0000006930947, y: -0.00000012718981, z: -0.45259193, w: 0.89171773}
+ inSlope: {x: 0.00000013373752, y: -0.0000007006039, z: 0.90582585, w: 0.45165992}
+ outSlope: {x: 0.00000013373752, y: -0.0000007006039, z: 0.90582585, w: 0.45165992}
+ tangentMode: 0
+ - time: 0.33333334
+ value: {x: -0.00000064848496, y: -0.0000002757259, z: -0.24656425, w: 0.96912646}
+ inSlope: {x: 0.00000056365855, y: -0.0000013204476, z: 1.9752522, w: 0.4995443}
+ outSlope: {x: 0.00000056365855, y: -0.0000013204476, z: 1.9752522, w: 0.4995443}
+ tangentMode: 0
+ - time: 0.46666667
+ value: {x: -0.0000005531247, y: -0.00000043658972, z: 0.017030334, w: 0.999855}
+ inSlope: {x: 0.0000007363907, y: -0.0000009412006, z: 1.6957573, w: -0.021628398}
+ outSlope: {x: 0.0000007363907, y: -0.0000009412006, z: 1.6957573, w: -0.021628398}
+ tangentMode: 0
+ - time: 0.6
+ value: {x: -0.0000004922237, y: -0.0000005042553, z: 0.14578965, w: 0.9893156}
+ inSlope: {x: 0.00000007156552, y: -0.00000007052614, z: 0.14116074, w: -0.02011655}
+ outSlope: {x: 0.00000007156552, y: -0.00000007052614, z: 0.14116074, w: -0.02011655}
+ tangentMode: 0
+ - time: 0.8
+ value: {x: -0.0000004922237, y: -0.0000005042553, z: 0.14578965, w: 0.9893156}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.8000001
+ value: {x: -0.0000004922237, y: -0.0000005042553, z: 0.14578965, w: 0.9893156}
+ inSlope: {x: 0, y: 8.5264906e-13, z: -0.0000006705505, w: 0}
+ outSlope: {x: 0, y: 8.5264906e-13, z: -0.0000006705505, w: 0}
+ tangentMode: 0
+ - time: 1.8666668
+ value: {x: -0.0000005104662, y: -0.0000004857796, z: 0.10924459, w: 0.9940149}
+ inSlope: {x: -0.0000009114715, y: 0.0000010123939, z: -1.9267085, w: 0.15800998}
+ outSlope: {x: -0.0000009114715, y: 0.0000010123939, z: -1.9267085, w: 0.15800998}
+ tangentMode: 0
+ - time: 1.9000001
+ value: {x: -0.0000005529884, y: -0.00000043676238, z: 0.0173425, w: 0.9998496}
+ inSlope: {x: -0.0000013611252, y: 0.0000017731647, z: -3.1721768, w: 0.0111824125}
+ outSlope: {x: -0.0000013611252, y: 0.0000017731647, z: -3.1721768, w: 0.0111824125}
+ tangentMode: 0
+ - time: 1.9333335
+ value: {x: -0.00000060120794, y: -0.00000036756848, z: -0.10223409, w: 0.9947604}
+ inSlope: {x: -0.0000013174008, y: 0.0000021547849, z: -3.5653143, w: -0.366415}
+ outSlope: {x: -0.0000013174008, y: 0.0000021547849, z: -3.5653143, w: -0.366415}
+ tangentMode: 0
+ - time: 1.9666667
+ value: {x: -0.0000006408151, y: -0.00000029311022, z: -0.2203449, w: 0.975422}
+ inSlope: {x: -0.0000009577981, y: 0.0000020197426, z: -3.1035817, w: -0.656155}
+ outSlope: {x: -0.0000009577981, y: 0.0000020197426, z: -3.1035817, w: -0.656155}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: -0.0000006650611, y: -0.00000023291894, z: -0.30913955, w: 0.95101666}
+ inSlope: {x: -0.0000004856254, y: 0.0000012727396, z: -1.8542838, w: -0.5465874}
+ outSlope: {x: -0.0000004856254, y: 0.0000012727396, z: -1.8542838, w: -0.5465874}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.00000067319024, y: -0.00000020826056, z: -0.34396434, w: 0.9389827}
+ inSlope: {x: -0.00000024387384, y: 0.000000739752, z: -1.0447446, w: -0.36101854}
+ outSlope: {x: -0.00000024387384, y: 0.000000739752, z: -1.0447446, w: -0.36101854}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.19106962, y: -0.061082628, z: 0.9330375, w: -0.29866746}
+ inSlope: {x: 0.9546639, y: 0.24597678, z: 0.783686, w: 2.1285129}
+ outSlope: {x: 0.9546639, y: 0.24597678, z: 0.783686, w: 2.1285129}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: -0.15924749, y: -0.0528834, z: 0.9591604, w: -0.22771703}
+ inSlope: {x: 1.5171497, y: 0.104920976, z: 0.89424574, w: 3.5767617}
+ outSlope: {x: 1.5171497, y: 0.104920976, z: 0.89424574, w: 3.5767617}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: -0.089926295, y: -0.054087896, z: 0.9926539, w: -0.060216658}
+ inSlope: {x: 1.9710214, y: -0.4106821, z: 0.45614177, w: 5.1608}
+ outSlope: {x: 1.9710214, y: -0.4106821, z: 0.45614177, w: 5.1608}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: -0.027846051, y: -0.08026221, z: 0.98956984, w: 0.11633629}
+ inSlope: {x: 1.2899175, y: -0.68137467, z: -0.26025388, w: 3.8603625}
+ outSlope: {x: 1.2899175, y: -0.68137467, z: -0.26025388, w: 3.8603625}
+ tangentMode: 0
+ - time: 0.13333334
+ value: {x: -0.0039317976, y: -0.09951287, z: 0.97530365, w: 0.19714083}
+ inSlope: {x: 0.33568484, y: -0.26156572, z: -0.20090462, w: 1.1598812}
+ outSlope: {x: 0.33568484, y: -0.26156572, z: -0.20090462, w: 1.1598812}
+ tangentMode: 0
+ - time: 0.16666669
+ value: {x: -0.0054670656, y: -0.09769992, z: 0.9761762, w: 0.1936617}
+ inSlope: {x: -0.08852619, y: 0.10248731, z: 0.048116148, w: -0.19820742}
+ outSlope: {x: -0.08852619, y: 0.10248731, z: 0.048116148, w: -0.19820742}
+ tangentMode: 0
+ - time: 0.40000004
+ value: {x: -0.07773268, y: -0.03405123, z: 0.9948828, w: 0.054830573}
+ inSlope: {x: -0.4275163, y: 0.28012323, z: 0.016181769, w: -0.7137914}
+ outSlope: {x: -0.4275163, y: 0.28012323, z: 0.016181769, w: -0.7137914}
+ tangentMode: 0
+ - time: 0.6
+ value: {x: -0.1347058, y: -0.004171381, z: 0.9903452, w: -0.03245705}
+ inSlope: {x: -0.031260673, y: 0.014299565, z: -0.0054681245, w: -0.042541243}
+ outSlope: {x: -0.031260673, y: 0.014299565, z: -0.0054681245, w: -0.042541243}
+ tangentMode: 0
+ - time: 1.1333334
+ value: {x: -0.119131505, y: 0.0007305221, z: 0.9928703, w: 0.0039662104}
+ inSlope: {x: 0.025064373, y: 0.0069246604, z: 0.0027823476, w: 0.058357436}
+ outSlope: {x: 0.025064373, y: 0.0069246604, z: 0.0027823476, w: 0.058357436}
+ tangentMode: 0
+ - time: 1.5666668
+ value: {x: -0.13107118, y: -0.0029298621, z: 0.9910798, w: -0.023927672}
+ inSlope: {x: -0.101794675, y: -0.034346983, z: -0.019496072, w: -0.23871908}
+ outSlope: {x: -0.101794675, y: -0.034346983, z: -0.019496072, w: -0.23871908}
+ tangentMode: 0
+ - time: 1.7000002
+ value: {x: -0.13565545, y: -0.0045259194, z: 0.9901381, w: -0.03469316}
+ inSlope: {x: 0.0498714, y: 0.017853945, z: 0.010943406, w: 0.1172712}
+ outSlope: {x: 0.0498714, y: 0.017853945, z: 0.010943406, w: 0.1172712}
+ tangentMode: 0
+ - time: 1.8333335
+ value: {x: -0.13470525, y: -0.0041885623, z: 0.99034506, w: -0.032459382}
+ inSlope: {x: -0.14734493, y: -0.0738642, z: -0.041831747, w: -0.48271877}
+ outSlope: {x: -0.14734493, y: -0.0738642, z: -0.041831747, w: -0.48271877}
+ tangentMode: 0
+ - time: 1.9333335
+ value: {x: -0.16801728, y: -0.03011153, z: 0.9697199, w: -0.17466214}
+ inSlope: {x: -0.3831109, y: -0.4051664, z: -0.41330755, w: -1.8656857}
+ outSlope: {x: -0.3831109, y: -0.4051664, z: -0.41330755, w: -1.8656857}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: -0.18808118, y: -0.056149974, z: 0.9394467, w: -0.28091383}
+ inSlope: {x: -0.16679133, y: -0.2514935, z: -0.31480068, w: -0.9465078}
+ outSlope: {x: -0.16679133, y: -0.2514935, z: -0.31480068, w: -0.9465078}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.19106962, y: -0.061082624, z: 0.9330375, w: -0.29866746}
+ inSlope: {x: -0.089653365, y: -0.14797962, z: -0.19227523, w: -0.53260946}
+ outSlope: {x: -0.089653365, y: -0.14797962, z: -0.19227523, w: -0.53260946}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.00000085833966, y: -0.00000026553903, z: -0.43856585, w: 0.8986991}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.00000085833966, y: -0.00000026553903, z: -0.43856585, w: 0.8986991}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.0000008583398, y: -0.00000026553911, z: -0.43856585, w: 0.8986991}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.0000008583398, y: -0.00000026553911, z: -0.43856585, w: 0.8986991}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.19106962, y: -0.061082628, z: 0.9330375, w: -0.29866746}
+ inSlope: {x: 0.0030156968, y: -0.14274123, z: 0.6499421, w: 2.4052198}
+ outSlope: {x: 0.0030156968, y: -0.14274123, z: 0.6499421, w: 2.4052198}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: -0.1909691, y: -0.06584067, z: 0.95470226, w: -0.21849346}
+ inSlope: {x: -0.118593626, y: -0.2363516, z: 0.6484088, w: 3.9164743}
+ outSlope: {x: -0.118593626, y: -0.2363516, z: 0.6484088, w: 3.9164743}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: -0.19897586, y: -0.0768394, z: 0.9762648, w: -0.03756912}
+ inSlope: {x: -0.40864035, y: -0.29091865, z: 0.1027786, w: 5.4267592}
+ outSlope: {x: -0.40864035, y: -0.29091865, z: 0.1027786, w: 5.4267592}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: -0.21821178, y: -0.085235246, z: 0.96155417, w: 0.14329052}
+ inSlope: {x: -0.4714443, y: -0.15409695, z: -0.49764907, w: 3.9146023}
+ outSlope: {x: -0.4714443, y: -0.15409695, z: -0.49764907, w: 3.9146023}
+ tangentMode: 0
+ - time: 0.13333334
+ value: {x: -0.23040548, y: -0.08711253, z: 0.9430882, w: 0.22340435}
+ inSlope: {x: -0.18031844, y: -0.027938897, z: -0.2726439, w: 1.1860743}
+ outSlope: {x: -0.18031844, y: -0.027938897, z: -0.2726439, w: 1.1860743}
+ tangentMode: 0
+ - time: 0.16666669
+ value: {x: -0.23023301, y: -0.08709784, z: 0.9433779, w: 0.22236213}
+ inSlope: {x: 0.009833202, y: 0.00085271895, z: 0.016421378, w: -0.059429705}
+ outSlope: {x: 0.009833202, y: 0.00085271895, z: 0.016421378, w: -0.059429705}
+ tangentMode: 0
+ - time: 0.6333333
+ value: {x: -0.21944718, y: -0.085467644, z: 0.9600122, w: 0.15137647}
+ inSlope: {x: -0.0023286035, y: -0.00056572235, z: -0.0033617006, w: 0.017586343}
+ outSlope: {x: -0.0023286035, y: -0.00056572235, z: -0.0033617006, w: 0.017586343}
+ tangentMode: 0
+ - time: 1.5666668
+ value: {x: -0.22066642, y: -0.08571599, z: 0.9583349, w: 0.15985422}
+ inSlope: {x: 0.034797166, y: 0.007171775, z: 0.049434863, w: -0.24545413}
+ outSlope: {x: 0.034797166, y: 0.007171775, z: 0.049434863, w: -0.24545413}
+ tangentMode: 0
+ - time: 1.7000002
+ value: {x: -0.2190926, y: -0.085384995, z: 0.9605084, w: 0.14876632}
+ inSlope: {x: -0.016413545, y: -0.0038535497, z: -0.022923935, w: 0.12112312}
+ outSlope: {x: -0.016413545, y: -0.0038535497, z: -0.022923935, w: 0.12112312}
+ tangentMode: 0
+ - time: 1.8000001
+ value: {x: -0.22018927, y: -0.08563767, z: 0.9589502, w: 0.15683548}
+ inSlope: {x: 0.012333659, y: 0.0025699965, z: 0.016906813, w: -0.08633807}
+ outSlope: {x: 0.012333659, y: 0.0025699965, z: 0.016906813, w: -0.08633807}
+ tangentMode: 0
+ - time: 1.8666668
+ value: {x: -0.21407251, y: -0.08409857, z: 0.9667898, w: 0.11143572}
+ inSlope: {x: 0.22302991, y: 0.077934675, z: 0.22720924, w: -1.876797}
+ outSlope: {x: 0.22302991, y: 0.077934675, z: 0.22720924, w: -1.876797}
+ tangentMode: 0
+ - time: 1.9333335
+ value: {x: -0.19599642, y: -0.07423094, z: 0.97433, w: -0.082196265}
+ inSlope: {x: 0.19441766, y: 0.18826054, z: -0.21480827, w: -3.2112484}
+ outSlope: {x: 0.19441766, y: 0.18826054, z: -0.21480827, w: -3.2112484}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: -0.19076367, y: -0.0628842, z: 0.9423742, w: -0.26755485}
+ inSlope: {x: 0.0071178353, y: 0.09953748, z: -0.41797864, w: -1.6581407}
+ outSlope: {x: 0.0071178353, y: 0.09953748, z: -0.41797864, w: -1.6581407}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.19106962, y: -0.061082624, z: 0.9330375, w: -0.29866746}
+ inSlope: {x: -0.009178528, y: 0.054047234, z: -0.28010157, w: -0.93337923}
+ outSlope: {x: -0.009178528, y: 0.054047234, z: -0.28010157, w: -0.93337923}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.000000340617, y: -0.00000010537457, z: -0.17403722, w: 0.9847391}
+ inSlope: {x: -0.00000017540059, y: 0.0000006357734, z: -1.8107507, w: -0.37793395}
+ outSlope: {x: -0.00000017540059, y: 0.0000006357734, z: -1.8107507, w: -0.37793395}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: -0.00000034646368, y: -0.00000008418212, z: -0.23439558, w: 0.9721413}
+ inSlope: {x: -0.00000021073572, y: 0.000001032407, z: -2.8453782, w: -0.79851496}
+ outSlope: {x: -0.00000021073572, y: 0.000001032407, z: -2.8453782, w: -0.79851496}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: -0.00000035466604, y: -0.00000003654743, z: -0.36372912, w: 0.9315048}
+ inSlope: {x: -0.00000014829779, y: 0.000001439116, z: -3.779735, w: -1.4758909}
+ outSlope: {x: -0.00000014829779, y: 0.000001439116, z: -3.779735, w: -1.4758909}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: -0.0000003563502, y: 0.000000011758954, z: -0.48637792, w: 0.8737486}
+ inSlope: {x: -0.0000000042304293, y: 0.0000010536871, z: -2.633597, w: -1.3408873}
+ outSlope: {x: -0.0000000042304293, y: 0.0000010536871, z: -2.633597, w: -1.3408873}
+ tangentMode: 0
+ - time: 0.13333334
+ value: {x: -0.00000035494807, y: 0.00000003369837, z: -0.53930223, w: 0.8421123}
+ inSlope: {x: 0.000000020623078, y: 0.0000003247661, z: -0.7836007, w: -0.46797755}
+ outSlope: {x: 0.000000020623078, y: 0.0000003247661, z: -0.7836007, w: -0.46797755}
+ tangentMode: 0
+ - time: 0.16666669
+ value: {x: -0.00000035497533, y: 0.000000033410025, z: -0.53861797, w: 0.8425501}
+ inSlope: {x: -0.0000000015351986, y: -0.000000016437571, z: 0.03903061, w: 0.02491057}
+ outSlope: {x: -0.0000000015351986, y: -0.000000016437571, z: 0.03903061, w: 0.02491057}
+ tangentMode: 0
+ - time: 0.6333333
+ value: {x: -0.0000003562708, y: 0.000000013958788, z: -0.49176303, w: 0.8707291}
+ inSlope: {x: 1.8800954e-10, y: 0.000000004772514, z: -0.011662687, w: -0.0065892907}
+ outSlope: {x: 1.8800954e-10, y: 0.000000004772514, z: -0.011662687, w: -0.0065892907}
+ tangentMode: 0
+ - time: 1.5666668
+ value: {x: -0.00000035617296, y: 0.000000016265089, z: -0.49739006, w: 0.86752707}
+ inSlope: {x: -0.0000000030196619, y: -0.00000006679514, z: 0.16273129, w: 0.093202226}
+ outSlope: {x: -0.0000000030196619, y: -0.00000006679514, z: 0.16273129, w: 0.093202226}
+ tangentMode: 0
+ - time: 1.7333335
+ value: {x: -0.00000035624907, y: 0.0000000145025085, z: -0.49309134, w: 0.86997753}
+ inSlope: {x: 0.0000000013233161, y: 0.000000032869394, z: -0.08028753, w: -0.045458123}
+ outSlope: {x: 0.0000000013233161, y: 0.000000032869394, z: -0.08028753, w: -0.045458123}
+ tangentMode: 0
+ - time: 1.8000001
+ value: {x: -0.00000035620963, y: 0.000000015441554, z: -0.49538296, w: 0.86867476}
+ inSlope: {x: -9.660514e-10, y: -0.000000023477838, z: 0.057320446, w: 0.0325217}
+ outSlope: {x: -9.660514e-10, y: -0.000000023477838, z: 0.057320446, w: 0.0325217}
+ tangentMode: 0
+ - time: 1.8666668
+ value: {x: -0.00000035653022, y: 0.000000003151058, z: -0.46513847, w: 0.88523793}
+ inSlope: {x: 0.0000000041319526, y: -0.000000503891, z: 1.2621353, w: 0.6359756}
+ outSlope: {x: 0.0000000041319526, y: -0.000000503891, z: 1.2621353, w: 0.6359756}
+ tangentMode: 0
+ - time: 1.9333335
+ value: {x: -0.00000035325525, y: -0.00000004831615, z: -0.3325654, w: 0.9430802}
+ inSlope: {x: 0.00000011533581, y: -0.0000008470362, z: 2.2606564, w: 0.798714}
+ outSlope: {x: 0.00000011533581, y: -0.0000008470362, z: 2.2606564, w: 0.798714}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: -0.00000034305842, y: -0.000000097132194, z: -0.19772716, w: 0.98025715}
+ inSlope: {x: 0.000000115387564, y: -0.0000004378362, z: 1.2400721, w: 0.27375397}
+ outSlope: {x: 0.000000115387564, y: -0.0000004378362, z: 1.2400721, w: 0.27375397}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.000000340617, y: -0.00000010537457, z: -0.17403722, w: 0.9847391}
+ inSlope: {x: 0.000000073242816, y: -0.00000024727146, z: 0.7106989, w: 0.13445927}
+ outSlope: {x: 0.000000073242816, y: -0.00000024727146, z: 0.7106989, w: 0.13445927}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.00000034061722, y: -0.00000010537456, z: -0.17403722, w: 0.9847391}
+ inSlope: {x: -0.00000017540059, y: 0.00000063577386, z: -1.8107507, w: -0.37793395}
+ outSlope: {x: -0.00000017540059, y: 0.00000063577386, z: -1.8107507, w: -0.37793395}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: -0.0000003464639, y: -0.0000000841821, z: -0.23439558, w: 0.9721413}
+ inSlope: {x: -0.00000021073572, y: 0.0000010324076, z: -2.8453782, w: -0.79851496}
+ outSlope: {x: -0.00000021073572, y: 0.0000010324076, z: -2.8453782, w: -0.79851496}
+ tangentMode: 0
+ - time: 0.06666668
+ value: {x: -0.00000035466627, y: -0.00000003654738, z: -0.36372912, w: 0.9315048}
+ inSlope: {x: -0.00000014829736, y: 0.0000014391169, z: -3.779735, w: -1.4758909}
+ outSlope: {x: -0.00000014829736, y: 0.0000014391169, z: -3.779735, w: -1.4758909}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: -0.0000003563504, y: 0.000000011759035, z: -0.48637792, w: 0.8737486}
+ inSlope: {x: -0.000000004230003, y: 0.0000010536877, z: -2.633597, w: -1.3408873}
+ outSlope: {x: -0.000000004230003, y: 0.0000010536877, z: -2.633597, w: -1.3408873}
+ tangentMode: 0
+ - time: 0.13333334
+ value: {x: -0.00000035494827, y: 0.000000033698463, z: -0.53930223, w: 0.8421123}
+ inSlope: {x: 0.000000017515166, y: 0.00000029057338, z: -0.7023003, w: -0.416371}
+ outSlope: {x: 0.000000017515166, y: 0.00000029057338, z: -0.7023003, w: -0.416371}
+ tangentMode: 0
+ - time: 0.16666669
+ value: {x: -0.00000035518272, y: 0.00000003113059, z: -0.53319794, w: 0.84599054}
+ inSlope: {x: -0.000000011879564, y: -0.00000014649235, z: 0.35015434, w: 0.21751821}
+ outSlope: {x: -0.000000011879564, y: -0.00000014649235, z: 0.35015434, w: 0.21751821}
+ tangentMode: 0
+ - time: 0.3666667
+ value: {x: -0.00000035235726, y: -0.00000005448139, z: -0.31603557, w: 0.94874734}
+ inSlope: {x: 0.00000008624863, y: -0.0000005578129, z: 1.5019516, w: 0.5003122}
+ outSlope: {x: 0.00000008624863, y: -0.0000005578129, z: 1.5019516, w: 0.5003122}
+ tangentMode: 0
+ - time: 0.6
+ value: {x: -0.0000003281953, y: -0.00000013932588, z: -0.073421754, w: 0.997301}
+ inSlope: {x: 0.000000014985334, y: -0.000000035657422, z: 0.10815831, w: 0.008355969}
+ outSlope: {x: 0.000000014985334, y: -0.000000035657422, z: 0.10815831, w: 0.008355969}
+ tangentMode: 0
+ - time: 0.8666667
+ value: {x: -0.0000003281953, y: -0.00000013932588, z: -0.073421754, w: 0.997301}
+ inSlope: {x: 0, y: 0, z: 0, w: 0}
+ outSlope: {x: 0, y: 0, z: 0, w: 0}
+ tangentMode: 0
+ - time: 1.8000001
+ value: {x: -0.0000003281953, y: -0.00000013932588, z: -0.073421754, w: 0.997301}
+ inSlope: {x: -4.2632453e-13, y: 2.1316227e-13, z: -0.00000044703367, w: 0}
+ outSlope: {x: -4.2632453e-13, y: 2.1316227e-13, z: -0.00000044703367, w: 0}
+ tangentMode: 0
+ - time: 1.9000001
+ value: {x: -0.00000033174558, y: -0.00000013064738, z: -0.09962167, w: 0.9950254}
+ inSlope: {x: -0.00000008405854, y: 0.00000021522216, z: -0.6446318, w: -0.06637565}
+ outSlope: {x: -0.00000008405854, y: 0.00000021522216, z: -0.6446318, w: -0.06637565}
+ tangentMode: 0
+ - time: 2.0000002
+ value: {x: -0.00000033981584, y: -0.000000107930944, z: -0.16663308, w: 0.986019}
+ inSlope: {x: -0.0000000433307, y: 0.00000013380708, z: -0.38932505, w: -0.06353949}
+ outSlope: {x: -0.0000000433307, y: 0.00000013380708, z: -0.38932505, w: -0.06353949}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: -0.00000034061722, y: -0.00000010537456, z: -0.17403722, w: 0.9847391}
+ inSlope: {x: -0.000000024041379, y: 0.00000007669158, z: -0.22212422, w: -0.038396753}
+ outSlope: {x: -0.000000024041379, y: 0.00000007669158, z: -0.22212422, w: -0.038396753}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3
+ m_CompressedRotationCurves: []
+ m_EulerCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -28.0163, y: 92.7997, z: -91.315895}
+ inSlope: {x: 1.184578, y: -51.29742, z: 24.054401}
+ outSlope: {x: 1.184578, y: -51.29742, z: 24.054401}
+ tangentMode: 0
+ - time: 0.23333333
+ value: {x: -27.739899, y: 80.8303, z: -85.7032}
+ inSlope: {x: 0.592289, y: -25.64871, z: 12.027201}
+ outSlope: {x: 0.592289, y: -25.64871, z: 12.027201}
+ tangentMode: 0
+ - time: 1.6333333
+ value: {x: -27.739899, y: 80.8303, z: -85.7032}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ m_PositionCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0, y: 0, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0, y: 0, z: 0}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Controls
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 7.19978e-23, y: -3.5527136e-17, z: 5.684342e-16}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: 7.19978e-23, y: -3.5527136e-17, z: 5.684342e-16}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 7.4337745e-16, y: -1.7472501, z: -0.128325}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: 7.4337745e-16, y: -1.7472501, z: -0.128325}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/Lid
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -1.250624, y: 8.050634e-16, z: -0.09848316}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -1.250624, y: 8.050634e-16, z: -0.09848316}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/HousingLeftDoor1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -1.0792987, y: 5.708225e-16, z: 0.22159642}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -1.0792987, y: 5.708225e-16, z: 0.22159642}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1.2506199, y: 8.050634e-16, z: -0.0984832}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: 1.2506199, y: 8.050634e-16, z: -0.0984832}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/HousingRightDoor1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1.101812, y: -5.705413e-16, z: 0.0022962647}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: 1.101812, y: -5.705413e-16, z: 0.0022962647}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1.6940659e-23, y: 0.3155601, z: 0.05607515}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: 1.6940659e-23, y: 0.3155601, z: 0.05607515}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.48641288, y: 8.8649955e-18, z: -3.5527135e-16}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.48641288, y: 8.8649955e-18, z: -3.5527135e-16}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/spine2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.6448484, y: 4.3231363e-11, z: 0.00000026950906}
+ inSlope: {x: -0.9943482, y: 5.1698783e-25, z: 4.2351643e-21}
+ outSlope: {x: -0.9943482, y: 5.1698783e-25, z: 4.2351643e-21}
+ tangentMode: 0
+ - time: 0.033333335
+ value: {x: -0.6779936, y: 4.3231363e-11, z: 0.00000026950906}
+ inSlope: {x: -1.5909668, y: 2.2156623e-25, z: 1.8150705e-21}
+ outSlope: {x: -1.590965, y: 5.169879e-25, z: 4.2351647e-21}
+ tangentMode: 0
+ - time: 0.10000001
+ value: {x: -0.82383263, y: 4.3231363e-11, z: 0.00000026950906}
+ inSlope: {x: -1.5909779, y: 2.215662e-25, z: 1.8150703e-21}
+ outSlope: {x: -1.5909724, y: 5.169879e-25, z: 4.2351647e-21}
+ tangentMode: 0
+ - time: 0.2
+ value: {x: -0.85696673, y: 4.3231363e-11, z: 0.00000026950906}
+ inSlope: {x: 0.00033405842, y: 2.2156625e-25, z: 1.8150707e-21}
+ outSlope: {x: 0.0003443035, y: 5.169877e-25, z: 4.235163e-21}
+ tangentMode: 0
+ - time: 1.5666667
+ value: {x: -0.80439574, y: 4.3231363e-11, z: 0.00000026950906}
+ inSlope: {x: 0.15050387, y: 2.2156645e-25, z: 1.8150724e-21}
+ outSlope: {x: 0.15051554, y: 5.169884e-25, z: 4.2351688e-21}
+ tangentMode: 0
+ - time: 1.8666667
+ value: {x: -0.6894219, y: 4.3231363e-11, z: 0.00000026950906}
+ inSlope: {x: 0.45011142, y: 2.2156645e-25, z: 1.8150724e-21}
+ outSlope: {x: 0.450087, y: 5.169884e-25, z: 4.2351688e-21}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.6448484, y: 4.3231363e-11, z: 0.00000026950906}
+ inSlope: {x: 0.06652325, y: 2.2156645e-25, z: 1.8150724e-21}
+ outSlope: {x: 0.06652325, y: 2.2156645e-25, z: 1.8150724e-21}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/spine2/Head
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.13735615, y: -0.0005649498, z: -0.54466915}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.13735615, y: -0.0005649498, z: -0.54466915}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/spine2/Tongue
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.20701517, y: 0.8019186, z: -0.37920392}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.20701517, y: 0.8019186, z: -0.37920392}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.3169463, y: 2.3092638e-16, z: -0.00000025989718}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.3169463, y: 2.3092638e-16, z: -0.00000025989718}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.32263, y: -2.1316282e-16, z: -0.0000001322789}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.32263, y: -2.1316282e-16, z: -0.0000001322789}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.32154, y: -4.2632563e-16, z: -0.000000131832}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.32154, y: -4.2632563e-16, z: -0.000000131832}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.32044998, y: -5.684342e-16, z: -0.0000001313851}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.32044998, y: -5.684342e-16, z: -0.0000001313851}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.31936, y: -2.842171e-16, z: -0.00000013093819}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.31936, y: -2.842171e-16, z: -0.00000013093819}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.20701504, y: -0.8019178, z: -0.37920505}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.20701504, y: -0.8019178, z: -0.37920505}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.31694242, y: 0.000001034375, z: 0.0000015884948}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.31694242, y: 0.000001034375, z: 0.0000015884948}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.32263023, y: 0.0000014312133, z: -0.0000002129795}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.32263023, y: 0.0000014312133, z: -0.0000002129795}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.32154042, y: 0.0000019041405, z: 3.819707e-11}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.32154042, y: 0.0000019041405, z: 3.819707e-11}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.32045043, y: 0.0000019042094, z: 8.694137e-11}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.32045043, y: 0.0000019042094, z: 8.694137e-11}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.31936044, y: 0.0000019042094, z: 1.6413886e-10}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333333
+ value: {x: -0.31936044, y: 0.0000019042094, z: 1.6413886e-10}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: -0.054, y: 0.107, z: 0}
+ inSlope: {x: 0.36857143, y: -0.82285714, z: 0.07714286}
+ outSlope: {x: 0.36857143, y: -0.82285714, z: 0.07714286}
+ tangentMode: 0
+ - time: 0.23333333
+ value: {x: 0.032, y: -0.085, z: 0.018}
+ inSlope: {x: 0.24616072, y: -0.37767857, z: 0.16419645}
+ outSlope: {x: 0.24616072, y: -0.37767857, z: 0.16419645}
+ tangentMode: 0
+ - time: 0.5
+ value: {x: 0.065, y: -0.067, z: 0.085}
+ inSlope: {x: 0.061874997, y: 0.03375, z: 0.12562501}
+ outSlope: {x: 0.061874997, y: 0.03375, z: 0.12562501}
+ tangentMode: 0
+ - time: 1.6333333
+ value: {x: 0.065, y: -0.067, z: 0.085}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -1.8135017, y: 2.3865023, z: -0.6420006}
+ tangentMode: 0
+ - time: 1.6666666
+ value: {x: -0.0559, y: 0.0921, z: 0.0422}
+ inSlope: {x: -3.6270034, y: 4.7730045, z: -1.2840012}
+ outSlope: {x: -3.6270034, y: 4.7730045, z: -1.2840012}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ m_ScaleCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Controls
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/Lid
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/HousingLeftDoor1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/HousingRightDoor1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/spine2/Head/Tooth
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/spine2/Head/LeftEye
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/spine2/Head/RightEye
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/spine2/Tongue
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ - time: 2.0333335
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 0, y: 0, z: 0}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: {x: 0.37441173, y: 0.37441173, z: 0.37441173}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: 2.6810925, y: 2.6810925, z: 2.6810925}
+ tangentMode: 0
+ - time: 0.23333333
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 2.6810925, y: 2.6810925, z: 2.6810925}
+ outSlope: {x: -0, y: -0, z: -0}
+ tangentMode: 0
+ - time: 1.6333333
+ value: {x: 1, y: 1, z: 1}
+ inSlope: {x: 0, y: 0, z: 0}
+ outSlope: {x: -18.38544, y: -18.38544, z: -18.38544}
+ tangentMode: 0
+ - time: 1.6666666
+ value: {x: 0.38715255, y: 0.38715255, z: 0.38715255}
+ inSlope: {x: -18.38544, y: -18.38544, z: -18.38544}
+ outSlope: {x: -18.38544, y: -18.38544, z: -18.38544}
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ m_FloatCurves: []
+ m_PPtrCurves: []
+ m_SampleRate: 30
+ m_WrapMode: 0
+ m_Bounds:
+ m_Center: {x: 0, y: 0, z: 0}
+ m_Extent: {x: 0, y: 0, z: 0}
+ m_ClipBindingConstant:
+ genericBindings:
+ - path: 1618998343
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 931541514
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1618998343
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 160603765
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3884891548
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 274811057
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1580005538
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2474490551
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1094821862
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1793783185
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3885003310
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2453027920
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2164460882
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 291990833
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 905653561
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3429163629
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2194097202
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 446151756
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3476157122
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3104019733
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2984199880
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1820524857
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 593708691
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3750816361
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2654181424
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1697547679
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 931541514
+ attribute: 4
+ script: {fileID: 0}
+ classID: 4
+ customType: 14
+ isPPtrCurve: 0
+ - path: 931541514
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 60550761
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3465985350
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1984678390
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3775139577
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2152661591
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2300190775
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 594536696
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 717389904
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1710788836
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1327559021
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3884891548
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 274811057
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1580005538
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2474490551
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1094821862
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1793783185
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 291990833
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 905653561
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3429163629
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2194097202
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 446151756
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3476157122
+ attribute: 1
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 60550761
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3465985350
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1984678390
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3775139577
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2152661591
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2300190775
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 594536696
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 717389904
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1710788836
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1983772216
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2364560209
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1327559021
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 977997083
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 410630383
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 558611834
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1618716250
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1245625217
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3504243255
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3302860190
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 322856931
+ attribute: 2
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 60550761
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 615435132
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3465985350
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1984678390
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3775139577
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2152661591
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2300190775
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 594536696
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 717389904
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1983772216
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 160603765
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2364560209
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 1327559021
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3884891548
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3885003310
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2453027920
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 2164460882
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 291990833
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3104019733
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 593708691
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ - path: 3750816361
+ attribute: 3
+ script: {fileID: 0}
+ classID: 4
+ customType: 0
+ isPPtrCurve: 0
+ pptrCurveMapping: []
+ m_AnimationClipSettings:
+ serializedVersion: 2
+ m_AdditiveReferencePoseClip: {fileID: 0}
+ m_AdditiveReferencePoseTime: 0
+ m_StartTime: 0
+ m_StopTime: 2.0333335
+ m_OrientationOffsetY: 0
+ m_Level: 0
+ m_CycleOffset: 0
+ m_HasAdditiveReferencePose: 0
+ m_LoopTime: 0
+ m_LoopBlend: 0
+ m_LoopBlendOrientation: 0
+ m_LoopBlendPositionY: 0
+ m_LoopBlendPositionXZ: 0
+ m_KeepOriginalOrientation: 0
+ m_KeepOriginalPositionY: 1
+ m_KeepOriginalPositionXZ: 0
+ m_HeightFromFeet: 0
+ m_Mirror: 0
+ m_EditorCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Controls
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Controls
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Controls
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Controls
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Housing
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Housing
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Housing
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -6.123234e-17
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -6.123234e-17
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Housing
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.63528526
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.63528526
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Housing/Lid
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Housing/Lid
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Housing/Lid
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.7722776
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.7722776
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Housing/Lid
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9956375
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9956375
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Housing/HousingLeftDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 4.716463e-18
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 4.716463e-18
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Housing/HousingLeftDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.09330613
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.09330613
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Housing/HousingLeftDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 6.087179e-17
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 6.087179e-17
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Housing/HousingLeftDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.07522983
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.07522983
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9971662
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9971662
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Housing/HousingRightDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.008850181
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.008850181
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Housing/HousingRightDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Housing/HousingRightDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.99996084
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.99996084
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Housing/HousingRightDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.10557566
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.10557566
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9944113
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9944113
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.7071068
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.7071068
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.7071068
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.7071068
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000043023564
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000043023564
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.00000013470618
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.00000013470618
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -5.293956e-23
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -5.293956e-23
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/spine2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 5.293956e-23
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 5.293956e-23
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/spine2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/spine2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/spine2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.022218876
+ inSlope: -0.55916595
+ outSlope: -0.55916595
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.003580009
+ inSlope: -0.9406162
+ outSlope: -0.9406162
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.04048888
+ inSlope: -1.3990049
+ outSlope: -1.3990049
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.089687
+ inSlope: -1.1860867
+ outSlope: -1.1860867
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.14028436
+ inSlope: -0.2728683
+ outSlope: -0.2728683
+ tangentMode: 0
+ - time: 0.56666666
+ value: -0.18539838
+ inSlope: -0.02750047
+ outSlope: -0.02750047
+ tangentMode: 0
+ - time: 0.6333333
+ value: -0.17419878
+ inSlope: 0.6233251
+ outSlope: 0.6233251
+ tangentMode: 0
+ - time: 0.7
+ value: -0.11007525
+ inSlope: 0.8990264
+ outSlope: 0.8990264
+ tangentMode: 0
+ - time: 0.8
+ value: -0.053301275
+ inSlope: 0.44001436
+ outSlope: 0.44001436
+ tangentMode: 0
+ - time: 0.96666664
+ value: -0.005870458
+ inSlope: 0.12841056
+ outSlope: 0.12841056
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.0047812867
+ inSlope: 0.045321733
+ outSlope: 0.045321733
+ tangentMode: 0
+ - time: 1.6333334
+ value: 0.019426558
+ inSlope: 0.016359087
+ outSlope: 0.016359087
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.022218876
+ inSlope: 0.00032560932
+ outSlope: 0.00032560932
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/spine2/Head
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.004152865
+ inSlope: -0.83172035
+ outSlope: -0.83172035
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.031876877
+ inSlope: -1.3123841
+ outSlope: -1.3123841
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.09164515
+ inSlope: -1.762576
+ outSlope: -1.762576
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.14938195
+ inSlope: -1.2669286
+ outSlope: -1.2669286
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.1806259
+ inSlope: -0.052121807
+ outSlope: -0.052121807
+ tangentMode: 0
+ - time: 0.56666666
+ value: -0.18231021
+ inSlope: 0.019946247
+ outSlope: 0.019946247
+ tangentMode: 0
+ - time: 0.6333333
+ value: -0.16307345
+ inSlope: 0.91190153
+ outSlope: 0.91190153
+ tangentMode: 0
+ - time: 0.7
+ value: -0.07324017
+ inSlope: 1.2184753
+ outSlope: 1.2184753
+ tangentMode: 0
+ - time: 0.8
+ value: -0.0014782596
+ inSlope: 0.54473984
+ outSlope: 0.54473984
+ tangentMode: 0
+ - time: 0.96666664
+ value: 0.07167864
+ inSlope: 0.2564489
+ outSlope: 0.2564489
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.08114431
+ inSlope: 0.0012307998
+ outSlope: 0.0012307998
+ tangentMode: 0
+ - time: 1.6333334
+ value: 0.07302206
+ inSlope: -0.09934509
+ outSlope: -0.09934509
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.0041528638
+ inSlope: -0.037824884
+ outSlope: -0.037824884
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/spine2/Head
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0028369057
+ inSlope: -0.33112505
+ outSlope: -0.33112505
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.008200597
+ inSlope: -0.48394263
+ outSlope: -0.48394263
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.029425941
+ inSlope: -0.57415587
+ outSlope: -0.57415587
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.046477657
+ inSlope: -0.3856752
+ outSlope: -0.3856752
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.06394588
+ inSlope: -0.11580863
+ outSlope: -0.11580863
+ tangentMode: 0
+ - time: 0.56666666
+ value: -0.095155716
+ inSlope: -0.09902436
+ outSlope: -0.09902436
+ tangentMode: 0
+ - time: 0.6333333
+ value: -0.107882366
+ inSlope: -0.35624635
+ outSlope: -0.35624635
+ tangentMode: 0
+ - time: 0.7
+ value: -0.13424335
+ inSlope: -0.26525646
+ outSlope: -0.26525646
+ tangentMode: 0
+ - time: 0.8
+ value: -0.11885085
+ inSlope: 0.63620913
+ outSlope: 0.63620913
+ tangentMode: 0
+ - time: 0.96666664
+ value: 0.030811155
+ inSlope: 0.69017714
+ outSlope: 0.69017714
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.05566165
+ inSlope: -0.02528627
+ outSlope: -0.02528627
+ tangentMode: 0
+ - time: 1.6333334
+ value: 0.023297573
+ inSlope: -0.07827003
+ outSlope: -0.07827003
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.0028369064
+ inSlope: -0.006086301
+ outSlope: -0.006086301
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/spine2/Head
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9997405
+ inSlope: -0.008661747
+ outSlope: -0.008661747
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.99945176
+ inSlope: -0.078111276
+ outSlope: -0.078111276
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.99453306
+ inSlope: -0.23768395
+ outSlope: -0.23768395
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.98360616
+ inSlope: -0.28510365
+ outSlope: -0.28510365
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.9713936
+ inSlope: -0.05650163
+ outSlope: -0.05650163
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.96090364
+ inSlope: -0.011340381
+ outSlope: -0.011340381
+ tangentMode: 0
+ - time: 0.6333333
+ value: 0.96510273
+ inSlope: 0.2084201
+ outSlope: 0.2084201
+ tangentMode: 0
+ - time: 0.7
+ value: 0.9820886
+ inSlope: 0.16939318
+ outSlope: 0.16939318
+ tangentMode: 0
+ - time: 0.8
+ value: 0.99147934
+ inSlope: 0.09841741
+ outSlope: 0.09841741
+ tangentMode: 0
+ - time: 0.96666664
+ value: 0.9969345
+ inSlope: -0.035567846
+ outSlope: -0.035567846
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.9951354
+ inSlope: 0.0010943423
+ outSlope: 0.0010943423
+ tangentMode: 0
+ - time: 1.6333334
+ value: 0.9968689
+ inSlope: 0.008685001
+ outSlope: 0.008685001
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9997405
+ inSlope: -0.00012338173
+ outSlope: -0.00012338173
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/spine2/Head
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.000000019229727
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.000000019229727
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/spine2/Head/Tooth
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9988407
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9988407
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/spine2/Head/Tooth
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.0481376
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.0481376
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/spine2/Head/Tooth
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000039901107
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000039901107
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/spine2/Head/Tooth
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.3883996
+ inSlope: 0.0062486525
+ outSlope: 0.0062486525
+ tangentMode: 0
+ - time: 1.3666668
+ value: 0.38679516
+ inSlope: -0.09157473
+ outSlope: -0.09157473
+ tangentMode: 0
+ - time: 1.5333334
+ value: 0.36734122
+ inSlope: -0.1447274
+ outSlope: -0.1447274
+ tangentMode: 0
+ - time: 1.7333335
+ value: 0.36231172
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.36231172
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/spine2/Head/LeftEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.59108275
+ inSlope: -0.01304984
+ outSlope: -0.01304984
+ tangentMode: 0
+ - time: 1.3666668
+ value: -0.61655444
+ inSlope: 0.13360184
+ outSlope: 0.13360184
+ tangentMode: 0
+ - time: 1.5333334
+ value: -0.5867412
+ inSlope: 0.22897372
+ outSlope: 0.22897372
+ tangentMode: 0
+ - time: 1.7333335
+ value: -0.57874453
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.57874453
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/spine2/Head/LeftEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.38825226
+ inSlope: -0.0065562124
+ outSlope: -0.0065562124
+ tangentMode: 0
+ - time: 1.3666668
+ value: 0.38859832
+ inSlope: 0.10235678
+ outSlope: 0.10235678
+ tangentMode: 0
+ - time: 1.5333334
+ value: 0.4094958
+ inSlope: 0.14828221
+ outSlope: 0.14828221
+ tangentMode: 0
+ - time: 1.7333335
+ value: 0.41458818
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.41458818
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/spine2/Head/LeftEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5907853
+ inSlope: -0.012872814
+ outSlope: -0.012872814
+ tangentMode: 0
+ - time: 1.3666668
+ value: 0.5650147
+ inSlope: 0.13790321
+ outSlope: 0.13790321
+ tangentMode: 0
+ - time: 1.5333334
+ value: 0.5942292
+ inSlope: 0.21305393
+ outSlope: 0.21305393
+ tangentMode: 0
+ - time: 1.7333335
+ value: 0.6015826
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.6015826
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/spine2/Head/LeftEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.62254167
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.62254167
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/spine2/Head/RightEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.33532396
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.33532396
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/spine2/Head/RightEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.6225412
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.6225412
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/spine2/Head/RightEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.33532423
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.33532423
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/spine2/Head/RightEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5000005
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.5000005
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/spine2/Tongue
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.49999952
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.49999952
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/spine2/Tongue
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.49999952
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.49999952
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/spine2/Tongue
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5000005
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.5000005
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/spine2/Tongue
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.24799247
+ inSlope: 0.07253631
+ outSlope: 0.07253631
+ tangentMode: 0
+ - time: 0.3
+ value: 0.27954063
+ inSlope: -0.024938734
+ outSlope: -0.024938734
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.2532194
+ inSlope: -0.12364292
+ outSlope: -0.12364292
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.23134977
+ inSlope: 0.0026996448
+ outSlope: 0.0026996448
+ tangentMode: 0
+ - time: 1.7666668
+ value: 0.24650206
+ inSlope: 0.010730411
+ outSlope: 0.010730411
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.24799247
+ inSlope: 0.00076353626
+ outSlope: 0.00076353626
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.3417119
+ inSlope: -0.14474003
+ outSlope: -0.14474003
+ tangentMode: 0
+ - time: 0.3
+ value: -0.40883356
+ inSlope: 0.14891402
+ outSlope: 0.14891402
+ tangentMode: 0
+ - time: 0.56666666
+ value: -0.2856966
+ inSlope: 0.48083073
+ outSlope: 0.48083073
+ tangentMode: 0
+ - time: 0.8333334
+ value: -0.20857471
+ inSlope: -0.017694542
+ outSlope: -0.017694542
+ tangentMode: 0
+ - time: 1.7666668
+ value: -0.32643825
+ inSlope: -0.10554503
+ outSlope: -0.10554503
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.3417119
+ inSlope: -0.008153029
+ outSlope: -0.008153029
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.29154852
+ inSlope: 0.025163589
+ outSlope: 0.025163589
+ tangentMode: 0
+ - time: 0.3
+ value: -0.27555925
+ inSlope: -0.084938414
+ outSlope: -0.084938414
+ tangentMode: 0
+ - time: 0.56666666
+ value: -0.3289586
+ inSlope: -0.1487777
+ outSlope: -0.1487777
+ tangentMode: 0
+ - time: 0.8333334
+ value: -0.34732768
+ inSlope: 0.0054654507
+ outSlope: 0.0054654507
+ tangentMode: 0
+ - time: 1.7666668
+ value: -0.2995756
+ inSlope: 0.05383333
+ outSlope: 0.05383333
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.29154852
+ inSlope: 0.0044086617
+ outSlope: 0.0044086617
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.858331
+ inSlope: -0.07065117
+ outSlope: -0.07065117
+ tangentMode: 0
+ - time: 0.3
+ value: 0.8238807
+ inSlope: 0.05332232
+ outSlope: 0.05332232
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.86373824
+ inSlope: 0.13952765
+ outSlope: 0.13952765
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.88449836
+ inSlope: -0.0027385368
+ outSlope: -0.0027385368
+ tangentMode: 0
+ - time: 1.7666668
+ value: 0.86193347
+ inSlope: -0.024305306
+ outSlope: -0.024305306
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.858331
+ inSlope: -0.0019669551
+ outSlope: -0.0019669551
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.016186243
+ inSlope: 0.13997489
+ outSlope: 0.13997489
+ tangentMode: 0
+ - time: 0.3
+ value: 0.049855907
+ inSlope: -0.10920073
+ outSlope: -0.10920073
+ tangentMode: 0
+ - time: 0.56666666
+ value: -0.042350978
+ inSlope: -0.36675528
+ outSlope: -0.36675528
+ tangentMode: 0
+ - time: 0.8333334
+ value: -0.10198604
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.10198604
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.06762088
+ inSlope: 0.3183448
+ outSlope: 0.3183448
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.016186243
+ inSlope: 0.04516973
+ outSlope: 0.04516973
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.09894265
+ inSlope: -0.10214008
+ outSlope: -0.10214008
+ tangentMode: 0
+ - time: 0.3
+ value: -0.14633267
+ inSlope: 0.103395365
+ outSlope: 0.103395365
+ tangentMode: 0
+ - time: 0.56666666
+ value: -0.058102325
+ inSlope: 0.354064
+ outSlope: 0.354064
+ tangentMode: 0
+ - time: 0.8333334
+ value: -0.00026159352
+ inSlope: -0.000000023137526
+ outSlope: -0.000000023137526
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.00026159352
+ inSlope: -0.00000003492463
+ outSlope: -0.00000003492463
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.039473925
+ inSlope: -0.364889
+ outSlope: -0.364889
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.09894265
+ inSlope: -0.052759103
+ outSlope: -0.052759103
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.12453008
+ inSlope: 0.028182415
+ outSlope: 0.028182415
+ tangentMode: 0
+ - time: 0.3
+ value: 0.14038925
+ inSlope: -0.09797529
+ outSlope: -0.09797529
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.07278974
+ inSlope: -0.21561912
+ outSlope: -0.21561912
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.04262747
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.6000001
+ value: 0.04262747
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.07128307
+ inSlope: 0.28858262
+ outSlope: 0.28858262
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.12453008
+ inSlope: 0.053291745
+ outSlope: 0.053291745
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9871376
+ inSlope: -0.012019872
+ outSlope: -0.012019872
+ tangentMode: 0
+ - time: 0.3
+ value: 0.97795296
+ inSlope: 0.03456563
+ outSlope: 0.03456563
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.99475235
+ inSlope: 0.021661527
+ outSlope: 0.021661527
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.9938721
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.6000001
+ value: 0.9938721
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.9943782
+ inSlope: -0.013787426
+ outSlope: -0.013787426
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9871376
+ inSlope: -0.01113833
+ outSlope: -0.01113833
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.016186243
+ inSlope: 0.13997489
+ outSlope: 0.13997489
+ tangentMode: 0
+ - time: 0.3
+ value: 0.049855907
+ inSlope: -0.10920073
+ outSlope: -0.10920073
+ tangentMode: 0
+ - time: 0.56666666
+ value: -0.042350978
+ inSlope: -0.36675528
+ outSlope: -0.36675528
+ tangentMode: 0
+ - time: 0.8333334
+ value: -0.10198604
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.10198604
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.06762088
+ inSlope: 0.3183448
+ outSlope: 0.3183448
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.016186243
+ inSlope: 0.04516973
+ outSlope: 0.04516973
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.09894265
+ inSlope: -0.10214008
+ outSlope: -0.10214008
+ tangentMode: 0
+ - time: 0.3
+ value: -0.14633267
+ inSlope: 0.103395365
+ outSlope: 0.103395365
+ tangentMode: 0
+ - time: 0.56666666
+ value: -0.058102325
+ inSlope: 0.354064
+ outSlope: 0.354064
+ tangentMode: 0
+ - time: 0.8333334
+ value: -0.00026159352
+ inSlope: -0.000000023137526
+ outSlope: -0.000000023137526
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.00026159352
+ inSlope: -0.00000003492463
+ outSlope: -0.00000003492463
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.039473925
+ inSlope: -0.364889
+ outSlope: -0.364889
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.09894265
+ inSlope: -0.052759103
+ outSlope: -0.052759103
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.12453008
+ inSlope: 0.028182415
+ outSlope: 0.028182415
+ tangentMode: 0
+ - time: 0.3
+ value: 0.14038925
+ inSlope: -0.09797529
+ outSlope: -0.09797529
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.07278974
+ inSlope: -0.21561912
+ outSlope: -0.21561912
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.04262747
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.6000001
+ value: 0.04262747
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.07128307
+ inSlope: 0.28858262
+ outSlope: 0.28858262
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.12453008
+ inSlope: 0.053291745
+ outSlope: 0.053291745
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9871376
+ inSlope: -0.012019872
+ outSlope: -0.012019872
+ tangentMode: 0
+ - time: 0.3
+ value: 0.97795296
+ inSlope: 0.03456563
+ outSlope: 0.03456563
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.99475235
+ inSlope: 0.021661527
+ outSlope: 0.021661527
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.9938721
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.6000001
+ value: 0.9938721
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.9943782
+ inSlope: -0.013787426
+ outSlope: -0.013787426
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9871376
+ inSlope: -0.01113833
+ outSlope: -0.01113833
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.084592946
+ inSlope: -0.14506972
+ outSlope: -0.14506972
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.0894286
+ inSlope: -0.17214248
+ outSlope: -0.17214248
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.09606911
+ inSlope: -0.13374655
+ outSlope: -0.13374655
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.09834504
+ inSlope: 0.06279789
+ outSlope: 0.06279789
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.075064614
+ inSlope: 0.5338511
+ outSlope: 0.5338511
+ tangentMode: 0
+ - time: 0.23333335
+ value: -0.0357327
+ inSlope: 0.64460087
+ outSlope: 0.64460087
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.013319119
+ inSlope: 0.8702769
+ outSlope: 0.8702769
+ tangentMode: 0
+ - time: 0.3
+ value: 0.022285758
+ inSlope: 0.535623
+ outSlope: 0.535623
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.02238908
+ inSlope: -0.045817815
+ outSlope: -0.045817815
+ tangentMode: 0
+ - time: 0.6
+ value: -0.056708883
+ inSlope: -0.4796188
+ outSlope: -0.4796188
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.15617187
+ inSlope: -0.6834379
+ outSlope: -0.6834379
+ tangentMode: 0
+ - time: 0.90000004
+ value: -0.17915472
+ inSlope: 0.015320329
+ outSlope: 0.015320329
+ tangentMode: 0
+ - time: 1.1333334
+ value: -0.1758443
+ inSlope: 0.031798065
+ outSlope: 0.031798065
+ tangentMode: 0
+ - time: 1.3666668
+ value: -0.16677897
+ inSlope: -0.007499017
+ outSlope: -0.007499017
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.18126737
+ inSlope: -0.03307636
+ outSlope: -0.03307636
+ tangentMode: 0
+ - time: 1.7333335
+ value: -0.20746253
+ inSlope: -0.38723558
+ outSlope: -0.38723558
+ tangentMode: 0
+ - time: 1.8333335
+ value: -0.2405516
+ inSlope: -0.16095707
+ outSlope: -0.16095707
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.22603577
+ inSlope: 0.8527022
+ outSlope: 0.8527022
+ tangentMode: 0
+ - time: 1.9666667
+ value: -0.13944392
+ inSlope: 1.2848703
+ outSlope: 1.2848703
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.10067175
+ inSlope: 0.82276124
+ outSlope: 0.82276124
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.084592946
+ inSlope: 0.48236468
+ outSlope: 0.48236468
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.11793298
+ inSlope: 0.8006429
+ outSlope: 0.8006429
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.091244884
+ inSlope: 1.1278228
+ outSlope: 1.1278228
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.042744786
+ inSlope: 1.1095037
+ outSlope: 1.1095037
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.017277956
+ inSlope: 0.2226137
+ outSlope: 0.2226137
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.05540191
+ inSlope: -0.8504019
+ outSlope: -0.8504019
+ tangentMode: 0
+ - time: 0.23333335
+ value: -0.11857677
+ inSlope: -1.1387593
+ outSlope: -1.1387593
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.16051462
+ inSlope: -2.1173863
+ outSlope: -2.1173863
+ tangentMode: 0
+ - time: 0.3
+ value: -0.25973585
+ inSlope: -1.4830083
+ outSlope: -1.4830083
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.25938183
+ inSlope: 0.04535478
+ outSlope: 0.04535478
+ tangentMode: 0
+ - time: 0.6
+ value: -0.18672365
+ inSlope: 0.5047556
+ outSlope: 0.5047556
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.08054204
+ inSlope: 0.85809994
+ outSlope: 0.85809994
+ tangentMode: 0
+ - time: 0.90000004
+ value: -0.0014993157
+ inSlope: 0.23661482
+ outSlope: 0.23661482
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.020093173
+ inSlope: -0.05682609
+ outSlope: -0.05682609
+ tangentMode: 0
+ - time: 1.3666668
+ value: -0.05541715
+ inSlope: -0.061137997
+ outSlope: -0.061137997
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.035288848
+ inSlope: 0.05138704
+ outSlope: 0.05138704
+ tangentMode: 0
+ - time: 1.7333335
+ value: -0.017335506
+ inSlope: 0.24905571
+ outSlope: 0.24905571
+ tangentMode: 0
+ - time: 1.8333335
+ value: 0.0021625378
+ inSlope: 0.06600033
+ outSlope: 0.06600033
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.0117756855
+ inSlope: -0.66975194
+ outSlope: -0.66975194
+ tangentMode: 0
+ - time: 1.9666667
+ value: -0.07746813
+ inSlope: -0.9584627
+ outSlope: -0.9584627
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.10615344
+ inSlope: -0.6069703
+ outSlope: -0.6069703
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.11793298
+ inSlope: -0.35338652
+ outSlope: -0.35338652
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.20018956
+ inSlope: 0.4238574
+ outSlope: 0.4238574
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.21431814
+ inSlope: 0.62053967
+ outSlope: 0.62053967
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.24155888
+ inSlope: 0.63536096
+ outSlope: 0.63536096
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.25667554
+ inSlope: 0.16999976
+ outSlope: 0.16999976
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.24413955
+ inSlope: -0.2451646
+ outSlope: -0.2451646
+ tangentMode: 0
+ - time: 0.23333335
+ value: 0.22941981
+ inSlope: -0.21100336
+ outSlope: -0.21100336
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.222481
+ inSlope: -0.30540484
+ outSlope: -0.30540484
+ tangentMode: 0
+ - time: 0.3
+ value: 0.20905949
+ inSlope: -0.29179418
+ outSlope: -0.29179418
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.20302805
+ inSlope: -0.18163264
+ outSlope: -0.18163264
+ tangentMode: 0
+ - time: 0.6
+ value: 0.15011257
+ inSlope: -0.24492417
+ outSlope: -0.24492417
+ tangentMode: 0
+ - time: 0.73333335
+ value: 0.116326526
+ inSlope: -0.16690814
+ outSlope: -0.16690814
+ tangentMode: 0
+ - time: 0.90000004
+ value: 0.093809865
+ inSlope: -0.16637823
+ outSlope: -0.16637823
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.06563755
+ inSlope: -0.015587002
+ outSlope: -0.015587002
+ tangentMode: 0
+ - time: 1.3666668
+ value: 0.071510665
+ inSlope: 0.105177
+ outSlope: 0.105177
+ tangentMode: 0
+ - time: 1.6000001
+ value: 0.10691363
+ inSlope: 0.06743918
+ outSlope: 0.06743918
+ tangentMode: 0
+ - time: 1.7333335
+ value: 0.12794887
+ inSlope: 0.33849332
+ outSlope: 0.33849332
+ tangentMode: 0
+ - time: 1.8333335
+ value: 0.16520442
+ inSlope: 0.32236788
+ outSlope: 0.32236788
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.17997728
+ inSlope: 0.13497964
+ outSlope: 0.13497964
+ tangentMode: 0
+ - time: 1.9666667
+ value: 0.18945417
+ inSlope: 0.19321534
+ outSlope: 0.19321534
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.19656426
+ inSlope: 0.16103028
+ outSlope: 0.16103028
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.20018956
+ inSlope: 0.10875921
+ outSlope: 0.10875921
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9689479
+ inSlope: -0.017271638
+ outSlope: -0.017271638
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.96837217
+ inSlope: -0.06413161
+ outSlope: -0.06413161
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.96467245
+ inSlope: -0.10569513
+ outSlope: -0.10569513
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.9613258
+ inSlope: -0.029327275
+ outSlope: -0.029327275
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.96524185
+ inSlope: 0.053615555
+ outSlope: 0.053615555
+ tangentMode: 0
+ - time: 0.23333335
+ value: 0.96541667
+ inSlope: -0.07126988
+ outSlope: -0.07126988
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.96154034
+ inSlope: -0.34352306
+ outSlope: -0.34352306
+ tangentMode: 0
+ - time: 0.3
+ value: 0.94251513
+ inSlope: -0.26419047
+ outSlope: -0.26419047
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.94392765
+ inSlope: 0.05245862
+ outSlope: 0.05245862
+ tangentMode: 0
+ - time: 0.6
+ value: 0.96921855
+ inSlope: 0.104366556
+ outSlope: 0.104366556
+ tangentMode: 0
+ - time: 0.73333335
+ value: 0.9775436
+ inSlope: -0.014336395
+ outSlope: -0.014336395
+ tangentMode: 0
+ - time: 0.90000004
+ value: 0.97933704
+ inSlope: 0.019308329
+ outSlope: 0.019308329
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.98202175
+ inSlope: 0.007771261
+ outSlope: 0.007771261
+ tangentMode: 0
+ - time: 1.3666668
+ value: 0.981835
+ inSlope: -0.012299728
+ outSlope: -0.012299728
+ tangentMode: 0
+ - time: 1.6000001
+ value: 0.97696793
+ inSlope: -0.011530828
+ outSlope: -0.011530828
+ tangentMode: 0
+ - time: 1.7333335
+ value: 0.9696844
+ inSlope: -0.12363207
+ outSlope: -0.12363207
+ tangentMode: 0
+ - time: 1.8333335
+ value: 0.95647156
+ inSlope: -0.095203996
+ outSlope: -0.095203996
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.95727605
+ inSlope: 0.1517815
+ outSlope: 0.1517815
+ tangentMode: 0
+ - time: 1.9666667
+ value: 0.9688453
+ inSlope: 0.079144195
+ outSlope: 0.079144195
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.9695149
+ inSlope: 0.0015386231
+ outSlope: 0.0015386231
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9689479
+ inSlope: -0.017010586
+ outSlope: -0.017010586
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.084592946
+ inSlope: -0.09053416
+ outSlope: -0.09053416
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.08761075
+ inSlope: -0.12813783
+ outSlope: -0.12813783
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.09834504
+ inSlope: 0.07802218
+ outSlope: 0.07802218
+ tangentMode: 0
+ - time: 0.23333335
+ value: -0.056292504
+ inSlope: 0.5899787
+ outSlope: 0.5899787
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.0357327
+ inSlope: 0.64460063
+ outSlope: 0.64460063
+ tangentMode: 0
+ - time: 0.3
+ value: -0.013319132
+ inSlope: 0.870277
+ outSlope: 0.870277
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.022285758
+ inSlope: 0.53094584
+ outSlope: 0.53094584
+ tangentMode: 0
+ - time: 0.3666667
+ value: 0.022077251
+ inSlope: -0.06845154
+ outSlope: -0.06845154
+ tangentMode: 0
+ - time: 0.6
+ value: -0.056708883
+ inSlope: -0.5070493
+ outSlope: -0.5070493
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.15664464
+ inSlope: -0.6739762
+ outSlope: -0.6739762
+ tangentMode: 0
+ - time: 0.90000004
+ value: -0.17915472
+ inSlope: 0.015320329
+ outSlope: 0.015320329
+ tangentMode: 0
+ - time: 1.1333334
+ value: -0.1758443
+ inSlope: 0.031798065
+ outSlope: 0.031798065
+ tangentMode: 0
+ - time: 1.3666668
+ value: -0.16677897
+ inSlope: -0.007499017
+ outSlope: -0.007499017
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.18126737
+ inSlope: -0.03307636
+ outSlope: -0.03307636
+ tangentMode: 0
+ - time: 1.7000002
+ value: -0.19590585
+ inSlope: -0.35381734
+ outSlope: -0.35381734
+ tangentMode: 0
+ - time: 1.8333335
+ value: -0.24506187
+ inSlope: -0.17378941
+ outSlope: -0.17378941
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.23025316
+ inSlope: 0.87815547
+ outSlope: 0.87815547
+ tangentMode: 0
+ - time: 1.9666667
+ value: -0.14106944
+ inSlope: 1.3232863
+ outSlope: 1.3232863
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.1011435
+ inSlope: 0.847144
+ outSlope: 0.847144
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.084592946
+ inSlope: 0.49651715
+ outSlope: 0.49651715
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.11793298
+ inSlope: 0.48385373
+ outSlope: 0.48385373
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.101804525
+ inSlope: 0.7668405
+ outSlope: 0.7668405
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.017277958
+ inSlope: 0.06996706
+ outSlope: 0.06996706
+ tangentMode: 0
+ - time: 0.23333335
+ value: -0.08459736
+ inSlope: -0.947623
+ outSlope: -0.947623
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.11857677
+ inSlope: -1.1387587
+ outSlope: -1.1387587
+ tangentMode: 0
+ - time: 0.3
+ value: -0.1605146
+ inSlope: -2.1173863
+ outSlope: -2.1173863
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.25973585
+ inSlope: -1.4786022
+ outSlope: -1.4786022
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.25908807
+ inSlope: 0.06462514
+ outSlope: 0.06462514
+ tangentMode: 0
+ - time: 0.6
+ value: -0.18672365
+ inSlope: 0.53284305
+ outSlope: 0.53284305
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.08002164
+ inSlope: 0.8476511
+ outSlope: 0.8476511
+ tangentMode: 0
+ - time: 0.90000004
+ value: -0.0014993157
+ inSlope: 0.23661482
+ outSlope: 0.23661482
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.020093173
+ inSlope: -0.05682609
+ outSlope: -0.05682609
+ tangentMode: 0
+ - time: 1.3666668
+ value: -0.05541715
+ inSlope: -0.061137997
+ outSlope: -0.061137997
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.035288848
+ inSlope: 0.05138704
+ outSlope: 0.05138704
+ tangentMode: 0
+ - time: 1.7000002
+ value: -0.02484779
+ inSlope: 0.23552793
+ outSlope: 0.23552793
+ tangentMode: 0
+ - time: 1.8333335
+ value: 0.005301996
+ inSlope: 0.07417944
+ outSlope: 0.07417944
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.008886847
+ inSlope: -0.687938
+ outSlope: -0.687938
+ tangentMode: 0
+ - time: 1.9666667
+ value: -0.07638471
+ inSlope: -0.9846301
+ outSlope: -0.9846301
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.10584421
+ inSlope: -0.6232215
+ outSlope: -0.6232215
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.11793298
+ inSlope: -0.36266363
+ outSlope: -0.36266363
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.20018956
+ inSlope: 0.25396273
+ outSlope: 0.25396273
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.20865498
+ inSlope: 0.41399533
+ outSlope: 0.41399533
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.25667554
+ inSlope: 0.08040283
+ outSlope: 0.08040283
+ tangentMode: 0
+ - time: 0.23333335
+ value: 0.23654789
+ inSlope: -0.22079611
+ outSlope: -0.22079611
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.22941981
+ inSlope: -0.21100314
+ outSlope: -0.21100314
+ tangentMode: 0
+ - time: 0.3
+ value: 0.22248101
+ inSlope: -0.30540484
+ outSlope: -0.30540484
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.20905949
+ inSlope: -0.3030567
+ outSlope: -0.3030567
+ tangentMode: 0
+ - time: 0.3666667
+ value: 0.20227723
+ inSlope: -0.20624638
+ outSlope: -0.20624638
+ tangentMode: 0
+ - time: 0.6
+ value: 0.15011257
+ inSlope: -0.25875342
+ outSlope: -0.25875342
+ tangentMode: 0
+ - time: 0.73333335
+ value: 0.11619828
+ inSlope: -0.16332716
+ outSlope: -0.16332716
+ tangentMode: 0
+ - time: 0.90000004
+ value: 0.093809865
+ inSlope: -0.16637823
+ outSlope: -0.16637823
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.06563755
+ inSlope: -0.015587002
+ outSlope: -0.015587002
+ tangentMode: 0
+ - time: 1.3666668
+ value: 0.071510665
+ inSlope: 0.105177
+ outSlope: 0.105177
+ tangentMode: 0
+ - time: 1.6000001
+ value: 0.10691363
+ inSlope: 0.06743918
+ outSlope: 0.06743918
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.11759004
+ inSlope: 0.25678617
+ outSlope: 0.25678617
+ tangentMode: 0
+ - time: 1.8333335
+ value: 0.16509677
+ inSlope: 0.32306257
+ outSlope: 0.32306257
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.17974846
+ inSlope: 0.13054104
+ outSlope: 0.13054104
+ tangentMode: 0
+ - time: 1.9666667
+ value: 0.189098
+ inSlope: 0.19702831
+ outSlope: 0.19702831
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.19642505
+ inSlope: 0.16637278
+ outSlope: 0.16637278
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.20018956
+ inSlope: 0.11293541
+ outSlope: 0.11293541
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9689479
+ inSlope: -0.0067609544
+ outSlope: -0.0067609544
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.9687225
+ inSlope: -0.030107792
+ outSlope: -0.030107792
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.9613258
+ inSlope: -0.011037301
+ outSlope: -0.011037301
+ tangentMode: 0
+ - time: 0.23333335
+ value: 0.96629167
+ inSlope: 0.0026223073
+ outSlope: 0.0026223073
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.96541667
+ inSlope: -0.07126898
+ outSlope: -0.07126898
+ tangentMode: 0
+ - time: 0.3
+ value: 0.9615404
+ inSlope: -0.34352306
+ outSlope: -0.34352306
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.94251513
+ inSlope: -0.26045328
+ outSlope: -0.26045328
+ tangentMode: 0
+ - time: 0.3666667
+ value: 0.94417685
+ inSlope: 0.063216075
+ outSlope: 0.063216075
+ tangentMode: 0
+ - time: 0.6
+ value: 0.96921855
+ inSlope: 0.1104194
+ outSlope: 0.1104194
+ tangentMode: 0
+ - time: 0.73333335
+ value: 0.97752595
+ inSlope: -0.014959561
+ outSlope: -0.014959561
+ tangentMode: 0
+ - time: 0.90000004
+ value: 0.97933704
+ inSlope: 0.019308329
+ outSlope: 0.019308329
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.98202175
+ inSlope: 0.007771261
+ outSlope: 0.007771261
+ tangentMode: 0
+ - time: 1.3666668
+ value: 0.981835
+ inSlope: -0.012299728
+ outSlope: -0.012299728
+ tangentMode: 0
+ - time: 1.6000001
+ value: 0.97696793
+ inSlope: -0.011530828
+ outSlope: -0.011530828
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.97322977
+ inSlope: -0.0976118
+ outSlope: -0.0976118
+ tangentMode: 0
+ - time: 1.8333335
+ value: 0.9553322
+ inSlope: -0.099596545
+ outSlope: -0.099596545
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.9563446
+ inSlope: 0.16356623
+ outSlope: 0.16356623
+ tangentMode: 0
+ - time: 1.9666667
+ value: 0.96876556
+ inSlope: 0.08576211
+ outSlope: 0.08576211
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.96952784
+ inSlope: 0.00273488
+ outSlope: 0.00273488
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9689479
+ inSlope: -0.017398613
+ outSlope: -0.017398613
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.084592946
+ inSlope: -0.061301436
+ outSlope: -0.061301436
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.09094703
+ inSlope: -0.12592949
+ outSlope: -0.12592949
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.09834504
+ inSlope: 0.08490992
+ outSlope: 0.08490992
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.056292504
+ inSlope: 0.5899786
+ outSlope: 0.5899786
+ tangentMode: 0
+ - time: 0.3
+ value: -0.0357327
+ inSlope: 0.64460063
+ outSlope: 0.64460063
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.013319132
+ inSlope: 0.8702768
+ outSlope: 0.8702768
+ tangentMode: 0
+ - time: 0.3666667
+ value: 0.02228578
+ inSlope: 0.4990514
+ outSlope: 0.4990514
+ tangentMode: 0
+ - time: 0.40000004
+ value: 0.019950991
+ inSlope: -0.1858038
+ outSlope: -0.1858038
+ tangentMode: 0
+ - time: 0.56666666
+ value: -0.051822327
+ inSlope: -0.25998166
+ outSlope: -0.25998166
+ tangentMode: 0
+ - time: 0.6
+ value: -0.056708865
+ inSlope: -0.1626694
+ outSlope: -0.1626694
+ tangentMode: 0
+ - time: 0.6333333
+ value: -0.06266695
+ inSlope: -0.26090443
+ outSlope: -0.26090443
+ tangentMode: 0
+ - time: 0.6666667
+ value: -0.0741025
+ inSlope: -0.26660872
+ outSlope: -0.26660872
+ tangentMode: 0
+ - time: 0.7
+ value: -0.08044087
+ inSlope: -0.37228477
+ outSlope: -0.37228477
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.09892149
+ inSlope: -0.9413841
+ outSlope: -0.9413841
+ tangentMode: 0
+ - time: 0.7666667
+ value: -0.14319986
+ inSlope: -1.2442211
+ outSlope: -1.2442211
+ tangentMode: 0
+ - time: 0.8
+ value: -0.18186957
+ inSlope: -0.83422947
+ outSlope: -0.83422947
+ tangentMode: 0
+ - time: 0.8333334
+ value: -0.19881514
+ inSlope: -0.3998737
+ outSlope: -0.3998737
+ tangentMode: 0
+ - time: 0.93333334
+ value: -0.2147607
+ inSlope: -0.0009640325
+ outSlope: -0.0009640325
+ tangentMode: 0
+ - time: 1.1000001
+ value: -0.1817682
+ inSlope: 0.21613058
+ outSlope: 0.21613058
+ tangentMode: 0
+ - time: 1.3333335
+ value: -0.16824171
+ inSlope: 0.03318741
+ outSlope: 0.03318741
+ tangentMode: 0
+ - time: 1.4000001
+ value: -0.1637077
+ inSlope: 0.077316314
+ outSlope: 0.077316314
+ tangentMode: 0
+ - time: 1.4666668
+ value: -0.1614428
+ inSlope: -0.023632305
+ outSlope: -0.023632305
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.17939484
+ inSlope: -0.12091611
+ outSlope: -0.12091611
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.19108447
+ inSlope: -0.38087362
+ outSlope: -0.38087362
+ tangentMode: 0
+ - time: 1.7000002
+ value: -0.20726116
+ inSlope: -0.3575091
+ outSlope: -0.3575091
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.21392544
+ inSlope: -0.009029174
+ outSlope: -0.009029174
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.20526326
+ inSlope: 0.6694854
+ outSlope: 0.6694854
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.09872216
+ inSlope: 0.71732116
+ outSlope: 0.71732116
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.084592946
+ inSlope: 0.42387682
+ outSlope: 0.42387682
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.11793298
+ inSlope: 0.3224891
+ outSlope: 0.3224891
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.08179033
+ inSlope: 0.82820404
+ outSlope: 0.82820404
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.017277958
+ inSlope: -0.0070275962
+ outSlope: -0.0070275962
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.08459736
+ inSlope: -0.9476229
+ outSlope: -0.9476229
+ tangentMode: 0
+ - time: 0.3
+ value: -0.11857677
+ inSlope: -1.1387587
+ outSlope: -1.1387587
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.1605146
+ inSlope: -2.1173854
+ outSlope: -2.1173854
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.25973588
+ inSlope: -1.44437
+ outSlope: -1.44437
+ tangentMode: 0
+ - time: 0.40000004
+ value: -0.25680602
+ inSlope: 0.18700475
+ outSlope: 0.18700475
+ tangentMode: 0
+ - time: 0.56666666
+ value: -0.19113171
+ inSlope: 0.23482504
+ outSlope: 0.23482504
+ tangentMode: 0
+ - time: 0.6
+ value: -0.18672375
+ inSlope: -0.57708305
+ outSlope: -0.57708305
+ tangentMode: 0
+ - time: 0.6333333
+ value: -0.22960387
+ inSlope: -1.8168294
+ outSlope: -1.8168294
+ tangentMode: 0
+ - time: 0.6666667
+ value: -0.30784574
+ inSlope: -1.7920176
+ outSlope: -1.7920176
+ tangentMode: 0
+ - time: 0.7
+ value: -0.34907174
+ inSlope: 0.32526255
+ outSlope: 0.32526255
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.28616148
+ inSlope: 2.985015
+ outSlope: 2.985015
+ tangentMode: 0
+ - time: 0.7666667
+ value: -0.15007058
+ inSlope: 3.7772384
+ outSlope: 3.7772384
+ tangentMode: 0
+ - time: 0.8
+ value: -0.034345575
+ inSlope: 2.7227545
+ outSlope: 2.7227545
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.031446334
+ inSlope: 1.7771585
+ outSlope: 1.7771585
+ tangentMode: 0
+ - time: 0.93333334
+ value: 0.13278687
+ inSlope: 0.12186137
+ outSlope: 0.12186137
+ tangentMode: 0
+ - time: 1.1000001
+ value: 0.03885494
+ inSlope: -0.6454929
+ outSlope: -0.6454929
+ tangentMode: 0
+ - time: 1.3333335
+ value: -0.040862124
+ inSlope: -0.38867092
+ outSlope: -0.38867092
+ tangentMode: 0
+ - time: 1.4000001
+ value: -0.0864576
+ inSlope: -1.0592554
+ outSlope: -1.0592554
+ tangentMode: 0
+ - time: 1.4666668
+ value: -0.1452521
+ inSlope: -0.118528575
+ outSlope: -0.118528575
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.046068452
+ inSlope: 0.59285617
+ outSlope: 0.59285617
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.009015705
+ inSlope: 1.0717309
+ outSlope: 1.0717309
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.03710318
+ inSlope: 1.0404379
+ outSlope: 1.0404379
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.04583589
+ inSlope: -0.375368
+ outSlope: -0.375368
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.018586906
+ inSlope: -0.9376738
+ outSlope: -0.9376738
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.108666934
+ inSlope: -0.49669886
+ outSlope: -0.49669886
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.11793298
+ inSlope: -0.27798173
+ outSlope: -0.27798173
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.20018956
+ inSlope: 0.16852407
+ outSlope: 0.16852407
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.21946976
+ inSlope: 0.45621827
+ outSlope: 0.45621827
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.25667554
+ inSlope: 0.034700144
+ outSlope: 0.034700144
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.23654789
+ inSlope: -0.22079611
+ outSlope: -0.22079611
+ tangentMode: 0
+ - time: 0.3
+ value: 0.22941981
+ inSlope: -0.21100314
+ outSlope: -0.21100314
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.22248101
+ inSlope: -0.30540466
+ outSlope: -0.30540466
+ tangentMode: 0
+ - time: 0.3666667
+ value: 0.20905949
+ inSlope: -0.33926284
+ outSlope: -0.33926284
+ tangentMode: 0
+ - time: 0.40000004
+ value: 0.19986348
+ inSlope: -0.30895922
+ outSlope: -0.30895922
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.15202321
+ inSlope: -0.10970732
+ outSlope: -0.10970732
+ tangentMode: 0
+ - time: 0.6
+ value: 0.15011255
+ inSlope: -0.024072351
+ outSlope: -0.024072351
+ tangentMode: 0
+ - time: 0.6333333
+ value: 0.15041839
+ inSlope: 0.0034124455
+ outSlope: 0.0034124455
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.15034005
+ inSlope: -0.0073615513
+ outSlope: -0.0073615513
+ tangentMode: 0
+ - time: 0.7
+ value: 0.14992762
+ inSlope: -0.23759033
+ outSlope: -0.23759033
+ tangentMode: 0
+ - time: 0.73333335
+ value: 0.13450068
+ inSlope: -0.5428403
+ outSlope: -0.5428403
+ tangentMode: 0
+ - time: 0.7666667
+ value: 0.11373823
+ inSlope: -0.39555234
+ outSlope: -0.39555234
+ tangentMode: 0
+ - time: 0.8
+ value: 0.108130515
+ inSlope: -0.07935112
+ outSlope: -0.07935112
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.10844816
+ inSlope: 0.021779774
+ outSlope: 0.021779774
+ tangentMode: 0
+ - time: 0.93333334
+ value: 0.10603722
+ inSlope: -0.14196286
+ outSlope: -0.14196286
+ tangentMode: 0
+ - time: 1.1000001
+ value: 0.069588475
+ inSlope: -0.15042156
+ outSlope: -0.15042156
+ tangentMode: 0
+ - time: 1.3333335
+ value: 0.06689241
+ inSlope: 0.115969166
+ outSlope: 0.115969166
+ tangentMode: 0
+ - time: 1.4000001
+ value: 0.08986637
+ inSlope: 0.7043024
+ outSlope: 0.7043024
+ tangentMode: 0
+ - time: 1.4666668
+ value: 0.13335039
+ inSlope: 0.17978482
+ outSlope: 0.17978482
+ tangentMode: 0
+ - time: 1.6000001
+ value: 0.11045533
+ inSlope: -0.12244609
+ outSlope: -0.12244609
+ tangentMode: 0
+ - time: 1.6666667
+ value: 0.115251884
+ inSlope: 0.35193613
+ outSlope: 0.35193613
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.13159297
+ inSlope: 0.46043515
+ outSlope: 0.46043515
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.16574748
+ inSlope: 0.29068106
+ outSlope: 0.29068106
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.18340512
+ inSlope: 0.08065306
+ outSlope: 0.08065306
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.1972415
+ inSlope: 0.13396196
+ outSlope: 0.13396196
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.20018956
+ inSlope: 0.0884419
+ outSlope: 0.0884419
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9689479
+ inSlope: -0.003261566
+ outSlope: -0.003261566
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.9679215
+ inSlope: -0.047933757
+ outSlope: -0.047933757
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.9613258
+ inSlope: -0.0009208806
+ outSlope: -0.0009208806
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.96629167
+ inSlope: 0.0026223073
+ outSlope: 0.0026223073
+ tangentMode: 0
+ - time: 0.3
+ value: 0.96541667
+ inSlope: -0.07126898
+ outSlope: -0.07126898
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.9615404
+ inSlope: -0.3435228
+ outSlope: -0.3435228
+ tangentMode: 0
+ - time: 0.3666667
+ value: 0.94251513
+ inSlope: -0.24269229
+ outSlope: -0.24269229
+ tangentMode: 0
+ - time: 0.40000004
+ value: 0.9453609
+ inSlope: 0.11813076
+ outSlope: 0.11813076
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.96833473
+ inSlope: 0.05174699
+ outSlope: 0.05174699
+ tangentMode: 0
+ - time: 0.6
+ value: 0.96921855
+ inSlope: -0.13182536
+ outSlope: -0.13182536
+ tangentMode: 0
+ - time: 0.6333333
+ value: 0.9595464
+ inSlope: -0.489933
+ outSlope: -0.489933
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.93655634
+ inSlope: -0.5703895
+ outSlope: -0.5703895
+ tangentMode: 0
+ - time: 0.7
+ value: 0.9215204
+ inSlope: 0.104500175
+ outSlope: 0.104500175
+ tangentMode: 0
+ - time: 0.73333335
+ value: 0.94352305
+ inSlope: 0.7514229
+ outSlope: 0.7514229
+ tangentMode: 0
+ - time: 0.7666667
+ value: 0.9716153
+ inSlope: 0.49848914
+ outSlope: 0.49848914
+ tangentMode: 0
+ - time: 0.8
+ value: 0.9767557
+ inSlope: 0.028427955
+ outSlope: 0.028427955
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.9735105
+ inSlope: -0.12819263
+ outSlope: -0.12819263
+ tangentMode: 0
+ - time: 0.93333334
+ value: 0.96177006
+ inSlope: -0.00041663833
+ outSlope: -0.00041663833
+ tangentMode: 0
+ - time: 1.1000001
+ value: 0.9801062
+ inSlope: 0.078669086
+ outSlope: 0.078669086
+ tangentMode: 0
+ - time: 1.3333335
+ value: 0.9826243
+ inSlope: -0.019111626
+ outSlope: -0.019111626
+ tangentMode: 0
+ - time: 1.4000001
+ value: 0.9785954
+ inSlope: -0.153891
+ outSlope: -0.153891
+ tangentMode: 0
+ - time: 1.4666668
+ value: 0.96698284
+ inSlope: -0.042901732
+ outSlope: -0.042901732
+ tangentMode: 0
+ - time: 1.6000001
+ value: 0.9764706
+ inSlope: 0.02491417
+ outSlope: 0.02491417
+ tangentMode: 0
+ - time: 1.6666667
+ value: 0.9747423
+ inSlope: -0.12106845
+ outSlope: -0.12106845
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.96868443
+ inSlope: -0.16446751
+ outSlope: -0.16446751
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.96159387
+ inSlope: -0.035089523
+ outSlope: -0.035089523
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.9611889
+ inSlope: 0.09937212
+ outSlope: 0.09937212
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.9692994
+ inSlope: 0.0012999317
+ outSlope: 0.0012999317
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9689479
+ inSlope: -0.010544668
+ outSlope: -0.010544668
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.91728246
+ inSlope: -0.416041
+ outSlope: -0.416041
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.9034144
+ inSlope: -0.77756244
+ outSlope: -0.77756244
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.86544496
+ inSlope: -1.3943052
+ outSlope: -1.3943052
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.75340444
+ inSlope: -1.7444136
+ outSlope: -1.7444136
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.6252788
+ inSlope: -2.0055423
+ outSlope: -2.0055423
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.51641786
+ inSlope: -1.0509973
+ outSlope: -1.0509973
+ tangentMode: 0
+ - time: 0.3666667
+ value: 0.4487553
+ inSlope: -0.52674
+ outSlope: -0.52674
+ tangentMode: 0
+ - time: 0.73333335
+ value: 0.38400677
+ inSlope: -0.0036777523
+ outSlope: -0.0036777523
+ tangentMode: 0
+ - time: 0.7666667
+ value: 0.3839778
+ inSlope: 2.9666822
+ outSlope: 2.9666822
+ tangentMode: 0
+ - time: 0.8
+ value: 0.5817854
+ inSlope: 7.1927147
+ outSlope: 7.1927147
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.86349213
+ inSlope: 5.591221
+ outSlope: 5.591221
+ tangentMode: 0
+ - time: 0.8666667
+ value: 0.9545336
+ inSlope: 1.3564606
+ outSlope: 1.3564606
+ tangentMode: 0
+ - time: 0.90000004
+ value: 0.95392275
+ inSlope: -0.035963077
+ outSlope: -0.035963077
+ tangentMode: 0
+ - time: 1.3000001
+ value: 0.85621405
+ inSlope: -0.43761185
+ outSlope: -0.43761185
+ tangentMode: 0
+ - time: 1.6666667
+ value: 0.70046145
+ inSlope: -0.2385162
+ outSlope: -0.2385162
+ tangentMode: 0
+ - time: 1.7666668
+ value: 0.68784845
+ inSlope: 0.16480492
+ outSlope: 0.16480492
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.7746345
+ inSlope: 1.3060412
+ outSlope: 1.3060412
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.85938853
+ inSlope: 1.0687071
+ outSlope: 1.0687071
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.9102838
+ inSlope: 0.4014677
+ outSlope: 0.4014677
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.91728246
+ inSlope: 0.20995994
+ outSlope: 0.20995994
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.3966457
+ inSlope: -0.92236066
+ outSlope: -0.92236066
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.42739105
+ inSlope: -1.5501038
+ outSlope: -1.5501038
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.49998596
+ inSlope: -2.3643332
+ outSlope: -2.3643332
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.6568756
+ inSlope: -2.0122018
+ outSlope: -2.0122018
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.77972746
+ inSlope: -1.6245399
+ outSlope: -1.6245399
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.8555977
+ inSlope: -0.6495193
+ outSlope: -0.6495193
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.8929377
+ inSlope: -0.26610005
+ outSlope: -0.26610005
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.9227408
+ inSlope: -0.0015842902
+ outSlope: -0.0015842902
+ tangentMode: 0
+ - time: 0.7666667
+ value: -0.9227538
+ inSlope: 1.6465256
+ outSlope: 1.6465256
+ tangentMode: 0
+ - time: 0.8
+ value: -0.81297255
+ inSlope: 6.284624
+ outSlope: 6.284624
+ tangentMode: 0
+ - time: 0.8333334
+ value: -0.5037787
+ inSlope: 7.7497616
+ outSlope: 7.7497616
+ tangentMode: 0
+ - time: 0.8666667
+ value: -0.2963217
+ inSlope: 3.0825567
+ outSlope: 3.0825567
+ tangentMode: 0
+ - time: 0.90000004
+ value: -0.2982751
+ inSlope: -0.11422506
+ outSlope: -0.11422506
+ tangentMode: 0
+ - time: 1.3000001
+ value: -0.51577276
+ inSlope: -0.7263541
+ outSlope: -0.7263541
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.71290725
+ inSlope: -0.23460913
+ outSlope: -0.23460913
+ tangentMode: 0
+ - time: 1.7666668
+ value: -0.72505075
+ inSlope: 0.15922146
+ outSlope: 0.15922146
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.6316123
+ inSlope: 1.6164598
+ outSlope: 1.6164598
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.51030433
+ inSlope: 1.7825577
+ outSlope: 1.7825577
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.4125036
+ inSlope: 0.8558499
+ outSlope: 0.8558499
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.3966457
+ inSlope: 0.4757376
+ outSlope: 0.4757376
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.026076216
+ inSlope: 0.04590282
+ outSlope: 0.04590282
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.024546122
+ inSlope: 0.07683939
+ outSlope: 0.07683939
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.02095359
+ inSlope: 0.11518888
+ outSlope: 0.11518888
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.013661283
+ inSlope: 0.08432439
+ outSlope: 0.08432439
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.009254328
+ inSlope: 0.04938292
+ outSlope: 0.04938292
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.0071840202
+ inSlope: 0.020873182
+ outSlope: 0.020873182
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.0052432753
+ inSlope: 0.020778053
+ outSlope: 0.020778053
+ tangentMode: 0
+ - time: 0.73333335
+ value: 0.0020055755
+ inSlope: 0.0046148086
+ outSlope: 0.0046148086
+ tangentMode: 0
+ - time: 0.7666667
+ value: 0.002081934
+ inSlope: -0.051539723
+ outSlope: -0.051539723
+ tangentMode: 0
+ - time: 0.8
+ value: -0.0014304024
+ inSlope: -0.25628388
+ outSlope: -0.25628388
+ tangentMode: 0
+ - time: 0.8333334
+ value: -0.015003665
+ inSlope: -0.32645914
+ outSlope: -0.32645914
+ tangentMode: 0
+ - time: 0.8666667
+ value: -0.023194348
+ inSlope: -0.12239316
+ outSlope: -0.12239316
+ tangentMode: 0
+ - time: 0.90000004
+ value: -0.023163201
+ inSlope: 0.0030461813
+ outSlope: 0.0030461813
+ tangentMode: 0
+ - time: 1.3000001
+ value: -0.015805291
+ inSlope: 0.022912305
+ outSlope: 0.022912305
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.010955696
+ inSlope: 0.002430011
+ outSlope: 0.002430011
+ tangentMode: 0
+ - time: 1.7666668
+ value: -0.010956733
+ inSlope: -0.008064083
+ outSlope: -0.008064083
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.014741767
+ inSlope: -0.07058171
+ outSlope: -0.07058171
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.020396698
+ inSlope: -0.08683799
+ outSlope: -0.08683799
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.025275256
+ inSlope: -0.043104008
+ outSlope: -0.043104008
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.026076216
+ inSlope: -0.024028815
+ outSlope: -0.024028815
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.02419145
+ inSlope: -0.0052402536
+ outSlope: -0.0052402536
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.024016775
+ inSlope: -0.0016091577
+ outSlope: -0.0016091577
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.024084173
+ inSlope: 0.01576812
+ outSlope: 0.01576812
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.0266397
+ inSlope: 0.05225808
+ outSlope: 0.05225808
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.031079596
+ inSlope: 0.0743407
+ outSlope: 0.0743407
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.03483892
+ inSlope: 0.025096929
+ outSlope: 0.025096929
+ tangentMode: 0
+ - time: 0.3666667
+ value: 0.035403855
+ inSlope: -0.0006497658
+ outSlope: -0.0006497658
+ tangentMode: 0
+ - time: 0.73333335
+ value: 0.032927196
+ inSlope: -0.0017604777
+ outSlope: -0.0017604777
+ tangentMode: 0
+ - time: 0.7666667
+ value: 0.032896284
+ inSlope: -0.12663281
+ outSlope: -0.12663281
+ tangentMode: 0
+ - time: 0.8
+ value: 0.024485016
+ inSlope: -0.2075437
+ outSlope: -0.2075437
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.01906004
+ inSlope: -0.02483666
+ outSlope: -0.02483666
+ tangentMode: 0
+ - time: 0.8666667
+ value: 0.02282923
+ inSlope: 0.05838188
+ outSlope: 0.05838188
+ tangentMode: 0
+ - time: 0.90000004
+ value: 0.022952162
+ inSlope: 0.003199903
+ outSlope: 0.003199903
+ tangentMode: 0
+ - time: 1.3000001
+ value: 0.025022645
+ inSlope: 0.014070297
+ outSlope: 0.014070297
+ tangentMode: 0
+ - time: 1.6666667
+ value: 0.03157461
+ inSlope: 0.012410294
+ outSlope: 0.012410294
+ tangentMode: 0
+ - time: 1.7666668
+ value: 0.032339584
+ inSlope: -0.0070877997
+ outSlope: -0.0070877997
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.028107299
+ inSlope: -0.057511702
+ outSlope: -0.057511702
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.024999421
+ inSlope: -0.028735671
+ outSlope: -0.028735671
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.024193527
+ inSlope: -0.0025699036
+ outSlope: -0.0025699036
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.02419145
+ inSlope: -0.00006230554
+ outSlope: -0.00006230554
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0000007479496
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.0000007479496
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.00000074522274
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.00000074522274
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.14552878
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.14552878
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9893541
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9893541
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0000007479496
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.0000007479496
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.00000074522274
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.00000074522274
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.14552878
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.14552878
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9893541
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9893541
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.01303056
+ inSlope: -0.042859603
+ outSlope: -0.042859603
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.011601906
+ inSlope: -0.07461403
+ outSlope: -0.07461403
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.00805629
+ inSlope: -0.119003415
+ outSlope: -0.119003415
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.000021906773
+ inSlope: -0.10007713
+ outSlope: -0.10007713
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.0057914015
+ inSlope: -0.07160269
+ outSlope: -0.07160269
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.008611402
+ inSlope: -0.015569085
+ outSlope: -0.015569085
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.009337949
+ inSlope: -0.009022584
+ outSlope: -0.009022584
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.013257278
+ inSlope: -0.0026642696
+ outSlope: -0.0026642696
+ tangentMode: 0
+ - time: 0.7666667
+ value: -0.01330071
+ inSlope: 0.0897617
+ outSlope: 0.0897617
+ tangentMode: 0
+ - time: 0.8
+ value: -0.0072731706
+ inSlope: 0.3038792
+ outSlope: 0.3038792
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.00695791
+ inSlope: 0.3061822
+ outSlope: 0.3061822
+ tangentMode: 0
+ - time: 0.8666667
+ value: 0.013138984
+ inSlope: 0.09043391
+ outSlope: 0.09043391
+ tangentMode: 0
+ - time: 0.90000004
+ value: 0.012986831
+ inSlope: -0.0063688094
+ outSlope: -0.0063688094
+ tangentMode: 0
+ - time: 1.3000001
+ value: 0.004697078
+ inSlope: -0.027850803
+ outSlope: -0.027850803
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.0026826607
+ inSlope: -0.007275181
+ outSlope: -0.007275181
+ tangentMode: 0
+ - time: 1.7666668
+ value: -0.0029573236
+ inSlope: 0.00990146
+ outSlope: 0.00990146
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.0018140725
+ inSlope: 0.08129457
+ outSlope: 0.08129457
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.00781297
+ inSlope: 0.08554322
+ outSlope: 0.08554322
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.012334698
+ inSlope: 0.038330756
+ outSlope: 0.038330756
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.01303056
+ inSlope: 0.020875877
+ outSlope: 0.020875877
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.033094514
+ inSlope: 0.025144143
+ outSlope: 0.025144143
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.032256376
+ inSlope: 0.03510293
+ outSlope: 0.03510293
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.030754318
+ inSlope: 0.035005536
+ outSlope: 0.035005536
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.03002962
+ inSlope: -0.012621745
+ outSlope: -0.012621745
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.032210268
+ inSlope: -0.045474596
+ outSlope: -0.045474596
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.034510147
+ inSlope: -0.008450859
+ outSlope: -0.008450859
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.033768713
+ inSlope: 0.01135591
+ outSlope: 0.01135591
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.028951999
+ inSlope: 0.002891838
+ outSlope: 0.002891838
+ tangentMode: 0
+ - time: 0.7666667
+ value: -0.028903704
+ inSlope: 0.098638244
+ outSlope: 0.098638244
+ tangentMode: 0
+ - time: 0.8
+ value: -0.022376122
+ inSlope: 0.10450669
+ outSlope: 0.10450669
+ tangentMode: 0
+ - time: 0.8333334
+ value: -0.021936597
+ inSlope: -0.08911088
+ outSlope: -0.08911088
+ tangentMode: 0
+ - time: 0.8666667
+ value: -0.02831684
+ inSlope: -0.103426546
+ outSlope: -0.103426546
+ tangentMode: 0
+ - time: 0.90000004
+ value: -0.028831694
+ inSlope: -0.013402858
+ outSlope: -0.013402858
+ tangentMode: 0
+ - time: 1.3000001
+ value: -0.02990738
+ inSlope: -0.0049692057
+ outSlope: -0.0049692057
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.034258753
+ inSlope: -0.01163698
+ outSlope: -0.01163698
+ tangentMode: 0
+ - time: 1.7666668
+ value: -0.035122875
+ inSlope: 0.0017934495
+ outSlope: 0.0017934495
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.0326823
+ inSlope: 0.027506806
+ outSlope: 0.027506806
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.03183557
+ inSlope: -0.004301625
+ outSlope: -0.004301625
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.032815043
+ inSlope: -0.012803029
+ outSlope: -0.012803029
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.033094514
+ inSlope: -0.008384147
+ outSlope: -0.008384147
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.99857855
+ inSlope: 0.02447605
+ outSlope: 0.02447605
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.9993944
+ inSlope: -0.02956777
+ outSlope: -0.02956777
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.99660736
+ inSlope: -0.23299992
+ outSlope: -0.23299992
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.9635439
+ inSlope: -0.7011946
+ outSlope: -0.7011946
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.9012468
+ inSlope: -1.1042262
+ outSlope: -1.1042262
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.8359958
+ inSlope: -0.66558754
+ outSlope: -0.66558754
+ tangentMode: 0
+ - time: 0.3666667
+ value: 0.7912217
+ inSlope: -0.35923883
+ outSlope: -0.35923883
+ tangentMode: 0
+ - time: 0.73333335
+ value: 0.74578065
+ inSlope: -0.002658067
+ outSlope: -0.002658067
+ tangentMode: 0
+ - time: 0.7666667
+ value: 0.7457593
+ inSlope: 1.9611374
+ outSlope: 1.9611374
+ tangentMode: 0
+ - time: 0.8
+ value: 0.876523
+ inSlope: 3.761455
+ outSlope: 3.761455
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.99652296
+ inSlope: 1.6833421
+ outSlope: 1.6833421
+ tangentMode: 0
+ - time: 0.8666667
+ value: 0.9887459
+ inSlope: -0.112322986
+ outSlope: -0.112322986
+ tangentMode: 0
+ - time: 0.90000004
+ value: 0.9890348
+ inSlope: 0.017007895
+ outSlope: 0.017007895
+ tangentMode: 0
+ - time: 1.3000001
+ value: 0.9947134
+ inSlope: -0.08475503
+ outSlope: -0.08475503
+ tangentMode: 0
+ - time: 1.6666667
+ value: 0.93720376
+ inSlope: -0.118046634
+ outSlope: -0.118046634
+ tangentMode: 0
+ - time: 1.7666668
+ value: 0.9308409
+ inSlope: 0.083151236
+ outSlope: 0.083151236
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.9703221
+ inSlope: 0.49958247
+ outSlope: 0.49958247
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.9953537
+ inSlope: 0.20170645
+ outSlope: 0.20170645
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.9991431
+ inSlope: -0.008133362
+ outSlope: -0.008133362
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.99857855
+ inSlope: -0.016937273
+ outSlope: -0.016937273
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.03969673
+ inSlope: -1.0117096
+ outSlope: -1.0117096
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.0059730792
+ inSlope: -1.7341771
+ outSlope: -1.7341771
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.07591508
+ inSlope: -2.7352355
+ outSlope: -2.7352355
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.26585978
+ inSlope: -2.569109
+ outSlope: -2.569109
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.43206853
+ inSlope: -2.3325872
+ outSlope: -2.3325872
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.5475819
+ inSlope: -1.0403754
+ outSlope: -1.0403754
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.6105251
+ inSlope: -0.46785396
+ outSlope: -0.46785396
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.6654301
+ inSlope: -0.0030532454
+ outSlope: -0.0030532454
+ tangentMode: 0
+ - time: 0.7666667
+ value: -0.6654553
+ inSlope: 2.7696867
+ outSlope: 2.7696867
+ tangentMode: 0
+ - time: 0.8
+ value: -0.48078454
+ inSlope: 8.780671
+ outSlope: 8.780671
+ tangentMode: 0
+ - time: 0.8333334
+ value: -0.08007707
+ inSlope: 9.406437
+ outSlope: 9.406437
+ tangentMode: 0
+ - time: 0.8666667
+ value: 0.14631133
+ inSlope: 3.365026
+ outSlope: 3.365026
+ tangentMode: 0
+ - time: 0.90000004
+ value: 0.14425778
+ inSlope: -0.120370895
+ outSlope: -0.120370895
+ tangentMode: 0
+ - time: 1.3000001
+ value: -0.09812565
+ inSlope: -0.85829955
+ outSlope: -0.85829955
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.3470854
+ inSlope: -0.31917822
+ outSlope: -0.31917822
+ tangentMode: 0
+ - time: 1.7666668
+ value: -0.36372098
+ inSlope: 0.21892747
+ outSlope: 0.21892747
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.23959085
+ inSlope: 2.0629807
+ outSlope: 2.0629807
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.090534374
+ inSlope: 2.1131105
+ outSlope: 2.1131105
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.022002602
+ inSlope: 0.9654424
+ outSlope: 0.9654424
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.03969673
+ inSlope: 0.53082436
+ outSlope: 0.53082436
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000041763917
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000041763917
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.00000041763815
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.00000041763815
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.31867462
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.31867462
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9478642
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9478642
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000041763917
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000041763917
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.00000041763815
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.00000041763815
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.31867462
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.31867462
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9478642
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9478642
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.013030555
+ inSlope: -0.042816993
+ outSlope: -0.042816993
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.011603322
+ inSlope: -0.07454752
+ outSlope: -0.07454752
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.00806072
+ inSlope: -0.118916914
+ outSlope: -0.118916914
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.000013791064
+ inSlope: -0.1000727
+ outSlope: -0.1000727
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.0057853963
+ inSlope: -0.07166207
+ outSlope: -0.07166207
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.008611405
+ inSlope: -0.015670793
+ outSlope: -0.015670793
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.0093434835
+ inSlope: -0.009023311
+ outSlope: -0.009023311
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.013246649
+ inSlope: -0.0026507748
+ outSlope: -0.0026507748
+ tangentMode: 0
+ - time: 0.7666667
+ value: -0.01328985
+ inSlope: 0.08980298
+ outSlope: 0.08980298
+ tangentMode: 0
+ - time: 0.8
+ value: -0.007259789
+ inSlope: 0.3042568
+ outSlope: 0.3042568
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.0069939424
+ inSlope: 0.306765
+ outSlope: 0.306765
+ tangentMode: 0
+ - time: 0.8666667
+ value: 0.013191217
+ inSlope: 0.09063468
+ outSlope: 0.09063468
+ tangentMode: 0
+ - time: 0.90000004
+ value: 0.013036248
+ inSlope: -0.006493784
+ outSlope: -0.006493784
+ tangentMode: 0
+ - time: 1.3000001
+ value: 0.0045739016
+ inSlope: -0.028442072
+ outSlope: -0.028442072
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.0030062262
+ inSlope: -0.0076102996
+ outSlope: -0.0076102996
+ tangentMode: 0
+ - time: 1.7666668
+ value: -0.0033010552
+ inSlope: 0.010079936
+ outSlope: 0.010079936
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.0015828245
+ inSlope: 0.08304437
+ outSlope: 0.08304437
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.0077029117
+ inSlope: 0.08725819
+ outSlope: 0.08725819
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.012318889
+ inSlope: 0.03917031
+ outSlope: 0.03917031
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.013030555
+ inSlope: 0.021350013
+ outSlope: 0.021350013
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.033094514
+ inSlope: 0.025154872
+ outSlope: 0.025154872
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.03225602
+ inSlope: 0.035125617
+ outSlope: 0.035125617
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.030752806
+ inSlope: 0.0350494
+ outSlope: 0.0350494
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.030024966
+ inSlope: -0.012590229
+ outSlope: -0.012590229
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.03220467
+ inSlope: -0.045493037
+ outSlope: -0.045493037
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.034510147
+ inSlope: -0.0085984925
+ outSlope: -0.0085984925
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.03378482
+ inSlope: 0.0112118535
+ outSlope: 0.0112118535
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.028997991
+ inSlope: 0.0028754375
+ outSlope: 0.0028754375
+ tangentMode: 0
+ - time: 0.7666667
+ value: -0.028949976
+ inSlope: 0.09888126
+ outSlope: 0.09888126
+ tangentMode: 0
+ - time: 0.8
+ value: -0.022405913
+ inSlope: 0.10498616
+ outSlope: 0.10498616
+ tangentMode: 0
+ - time: 0.8333334
+ value: -0.021950904
+ inSlope: -0.0889937
+ outSlope: -0.0889937
+ tangentMode: 0
+ - time: 0.8666667
+ value: -0.02833882
+ inSlope: -0.10368037
+ outSlope: -0.10368037
+ tangentMode: 0
+ - time: 0.90000004
+ value: -0.028862923
+ inSlope: -0.013677812
+ outSlope: -0.013677812
+ tangentMode: 0
+ - time: 1.3000001
+ value: -0.030013634
+ inSlope: -0.0050164796
+ outSlope: -0.0050164796
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.034351725
+ inSlope: -0.011597082
+ outSlope: -0.011597082
+ tangentMode: 0
+ - time: 1.7666668
+ value: -0.03521398
+ inSlope: 0.0017869675
+ outSlope: 0.0017869675
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.032768443
+ inSlope: 0.02776888
+ outSlope: 0.02776888
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.03188897
+ inSlope: -0.003635207
+ outSlope: -0.003635207
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.03282362
+ inSlope: -0.012364489
+ outSlope: -0.012364489
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.033094514
+ inSlope: -0.008126877
+ outSlope: -0.008126877
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.99857855
+ inSlope: 0.02447605
+ outSlope: 0.02447605
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.9993944
+ inSlope: -0.02956777
+ outSlope: -0.02956777
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.99660736
+ inSlope: -0.23299813
+ outSlope: -0.23299813
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.9635441
+ inSlope: -0.7011919
+ outSlope: -0.7011919
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.901247
+ inSlope: -1.1042271
+ outSlope: -1.1042271
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.8359958
+ inSlope: -0.6655956
+ outSlope: -0.6655956
+ tangentMode: 0
+ - time: 0.3666667
+ value: 0.7912209
+ inSlope: -0.3592442
+ outSlope: -0.3592442
+ tangentMode: 0
+ - time: 0.73333335
+ value: 0.7457791
+ inSlope: -0.0026553848
+ outSlope: -0.0026553848
+ tangentMode: 0
+ - time: 0.7666667
+ value: 0.745758
+ inSlope: 1.9611473
+ outSlope: 1.9611473
+ tangentMode: 0
+ - time: 0.8
+ value: 0.8765221
+ inSlope: 3.761465
+ outSlope: 3.761465
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.9965223
+ inSlope: 1.6833385
+ outSlope: 1.6833385
+ tangentMode: 0
+ - time: 0.8666667
+ value: 0.9887448
+ inSlope: -0.11240971
+ outSlope: -0.11240971
+ tangentMode: 0
+ - time: 0.90000004
+ value: 0.98902833
+ inSlope: 0.016717322
+ outSlope: 0.016717322
+ tangentMode: 0
+ - time: 1.3000001
+ value: 0.9951066
+ inSlope: -0.07985821
+ outSlope: -0.07985821
+ tangentMode: 0
+ - time: 1.6666667
+ value: 0.9400898
+ inSlope: -0.11343591
+ outSlope: -0.11343591
+ tangentMode: 0
+ - time: 1.7666668
+ value: 0.9339735
+ inSlope: 0.079522215
+ outSlope: 0.079522215
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.97173077
+ inSlope: 0.4772298
+ outSlope: 0.4772298
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.995599
+ inSlope: 0.1915257
+ outSlope: 0.1915257
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.99913466
+ inSlope: -0.008618838
+ outSlope: -0.008618838
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.99857855
+ inSlope: -0.016683357
+ outSlope: -0.016683357
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.03969673
+ inSlope: -1.0117083
+ outSlope: -1.0117083
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.0059731207
+ inSlope: -1.7341769
+ outSlope: -1.7341769
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.075915076
+ inSlope: -2.7352347
+ outSlope: -2.7352347
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.26585954
+ inSlope: -2.5691068
+ outSlope: -2.5691068
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.4320685
+ inSlope: -2.3325894
+ outSlope: -2.3325894
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.5475819
+ inSlope: -1.0403771
+ outSlope: -1.0403771
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.610525
+ inSlope: -0.46785128
+ outSlope: -0.46785128
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.66543007
+ inSlope: -0.0030505632
+ outSlope: -0.0030505632
+ tangentMode: 0
+ - time: 0.7666667
+ value: -0.66545504
+ inSlope: 2.7696786
+ outSlope: 2.7696786
+ tangentMode: 0
+ - time: 0.8
+ value: -0.480785
+ inSlope: 8.780651
+ outSlope: 8.780651
+ tangentMode: 0
+ - time: 0.8333334
+ value: -0.08007814
+ inSlope: 9.406424
+ outSlope: 9.406424
+ tangentMode: 0
+ - time: 0.8666667
+ value: 0.14631003
+ inSlope: 3.365544
+ outSlope: 3.365544
+ tangentMode: 0
+ - time: 0.90000004
+ value: 0.14429125
+ inSlope: -0.11834113
+ outSlope: -0.11834113
+ tangentMode: 0
+ - time: 1.3000001
+ value: -0.09402774
+ inSlope: -0.844226
+ outSlope: -0.844226
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.33917865
+ inSlope: -0.31477985
+ outSlope: -0.31477985
+ tangentMode: 0
+ - time: 1.7666668
+ value: -0.35558775
+ inSlope: 0.21485096
+ outSlope: 0.21485096
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.2338012
+ inSlope: 2.0222294
+ outSlope: 2.0222294
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.087786816
+ inSlope: 2.06903
+ outSlope: 2.06903
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.022377057
+ inSlope: 0.94501483
+ outSlope: 0.94501483
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.03969673
+ inSlope: 0.51959074
+ outSlope: 0.51959074
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000010746149
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000010746149
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.00000010685985
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.00000010685985
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.08153833
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.08153833
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.99667025
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.99667025
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000010746149
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000010746149
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.00000010685985
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.00000010685985
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.08153833
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.08153833
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.99667025
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.99667025
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.6181439
+ inSlope: -0.07912695
+ outSlope: -0.07912695
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.61550635
+ inSlope: -0.051750533
+ outSlope: -0.051750533
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.6146939
+ inSlope: 0.04550547
+ outSlope: 0.04550547
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.61854005
+ inSlope: 0.09387285
+ outSlope: 0.09387285
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.62095207
+ inSlope: 0.029473908
+ outSlope: 0.029473908
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.620505
+ inSlope: -0.020653008
+ outSlope: -0.020653008
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.61874205
+ inSlope: 0.019110741
+ outSlope: 0.019110741
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.6315038
+ inSlope: 0.54902375
+ outSlope: 0.54902375
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.71636033
+ inSlope: 0.75328624
+ outSlope: 0.75328624
+ tangentMode: 0
+ - time: 0.5
+ value: 0.74923265
+ inSlope: 0.21775138
+ outSlope: 0.21775138
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.75068355
+ inSlope: -0.042943962
+ outSlope: -0.042943962
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.7493605
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.7493605
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.7426572
+ inSlope: -0.15655065
+ outSlope: -0.15655065
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.6638586
+ inSlope: -0.52995133
+ outSlope: -0.52995133
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.6181439
+ inSlope: -0.11140834
+ outSlope: -0.11140834
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.2964857
+ inSlope: 0.7658895
+ outSlope: 0.7658895
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.32201535
+ inSlope: 1.1365359
+ outSlope: 1.1365359
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.37225476
+ inSlope: 1.3480742
+ outSlope: 1.3480742
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.41188696
+ inSlope: 0.8027548
+ outSlope: 0.8027548
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.42577174
+ inSlope: 0.20756812
+ outSlope: 0.20756812
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.42572483
+ inSlope: -0.0049307942
+ outSlope: -0.0049307942
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.4232977
+ inSlope: -0.055690266
+ outSlope: -0.055690266
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.4100794
+ inSlope: -0.5309224
+ outSlope: -0.5309224
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.31178412
+ inSlope: -1.2161322
+ outSlope: -1.2161322
+ tangentMode: 0
+ - time: 0.5
+ value: 0.23143157
+ inSlope: -1.0757129
+ outSlope: -1.0757129
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.17621185
+ inSlope: -0.4632349
+ outSlope: -0.4632349
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.16783611
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.16783611
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.18563597
+ inSlope: 0.3228164
+ outSlope: 0.3228164
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.269551
+ inSlope: 0.36371535
+ outSlope: 0.36371535
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.2964857
+ inSlope: 0.057651456
+ outSlope: 0.057651456
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.62088716
+ inSlope: -1.3474505
+ outSlope: -1.3474505
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.57597214
+ inSlope: -2.5016983
+ outSlope: -2.5016983
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.45410725
+ inSlope: -4.0526547
+ outSlope: -4.0526547
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.30579513
+ inSlope: -3.336822
+ outSlope: -3.336822
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.23165247
+ inSlope: -1.1032808
+ outSlope: -1.1032808
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.23224309
+ inSlope: 0.043249503
+ outSlope: 0.043249503
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.24730419
+ inSlope: 0.29924893
+ outSlope: 0.29924893
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.2851898
+ inSlope: 1.0605261
+ outSlope: 1.0605261
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.44662538
+ inSlope: 1.7719312
+ outSlope: 1.7719312
+ tangentMode: 0
+ - time: 0.5
+ value: 0.55395055
+ inSlope: 1.3106532
+ outSlope: 1.3106532
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.61560154
+ inSlope: 0.4843759
+ outSlope: 0.4843759
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.6240239
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.6240239
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.6183022
+ inSlope: -0.08578502
+ outSlope: -0.08578502
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.6138595
+ inSlope: 0.061517294
+ outSlope: 0.061517294
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.62088716
+ inSlope: 0.020030756
+ outSlope: 0.020030756
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.380123
+ inSlope: 1.5246811
+ outSlope: 1.5246811
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.4309457
+ inSlope: 2.1979651
+ outSlope: 2.1979651
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.526654
+ inSlope: 2.463608
+ outSlope: 2.463608
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.59518623
+ inSlope: 1.34041
+ outSlope: 1.34041
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.61601466
+ inSlope: 0.3163344
+ outSlope: 0.3163344
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.6162752
+ inSlope: 0.0078338375
+ outSlope: 0.0078338375
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.613855
+ inSlope: -0.1026562
+ outSlope: -0.1026562
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.59304684
+ inSlope: -0.769098
+ outSlope: -0.769098
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.43605542
+ inSlope: -2.1967125
+ outSlope: -2.1967125
+ tangentMode: 0
+ - time: 0.5
+ value: 0.2796941
+ inSlope: -2.2073374
+ outSlope: -2.2073374
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.16266021
+ inSlope: -0.99741364
+ outSlope: -0.99741364
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.14451301
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.14451301
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.17805037
+ inSlope: 0.6028458
+ outSlope: 0.6028458
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.3313768
+ inSlope: 0.65725875
+ outSlope: 0.65725875
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.380123
+ inSlope: 0.1046733
+ outSlope: 0.1046733
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.11425359
+ inSlope: -0.15717028
+ outSlope: -0.15717028
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.10901458
+ inSlope: -0.19618925
+ outSlope: -0.19618925
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.1011743
+ inSlope: -0.15398794
+ outSlope: -0.15398794
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.098748714
+ inSlope: -0.02469432
+ outSlope: -0.02469432
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.09988343
+ inSlope: 0.015696622
+ outSlope: 0.015696622
+ tangentMode: 0
+ - time: 0.3
+ value: 0.09910279
+ inSlope: -0.13423675
+ outSlope: -0.13423675
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.04032357
+ inSlope: -0.5159506
+ outSlope: -0.5159506
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.0011602888
+ inSlope: -0.0752454
+ outSlope: -0.0752454
+ tangentMode: 0
+ - time: 0.6666667
+ value: -5.551115e-17
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: -1.7064776e-14
+ inSlope: 0.000000046247354
+ outSlope: 0.000000046247354
+ tangentMode: 0
+ - time: 1.7666668
+ value: 0.036830205
+ inSlope: 0.3687688
+ outSlope: 0.3687688
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.11425359
+ inSlope: 0.058862697
+ outSlope: 0.058862697
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.16137956
+ inSlope: -0.6905727
+ outSlope: -0.6905727
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.18439865
+ inSlope: -1.0515163
+ outSlope: -1.0515163
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.23148066
+ inSlope: -1.328579
+ outSlope: -1.328579
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.2729706
+ inSlope: -0.87436044
+ outSlope: -0.87436044
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.28975984
+ inSlope: 0.004085452
+ outSlope: 0.004085452
+ tangentMode: 0
+ - time: 0.3
+ value: -0.28376514
+ inSlope: 0.23900317
+ outSlope: 0.23900317
+ tangentMode: 0
+ - time: 0.43333337
+ value: -0.1587675
+ inSlope: 1.3779763
+ outSlope: 1.3779763
+ tangentMode: 0
+ - time: 0.56666666
+ value: -0.008869438
+ inSlope: 0.49487498
+ outSlope: 0.49487498
+ tangentMode: 0
+ - time: 0.6666667
+ value: 1.6401612e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: 2.4657996e-14
+ inSlope: -0.00000006659793
+ outSlope: -0.00000006659793
+ tangentMode: 0
+ - time: 1.7666668
+ value: -0.052679986
+ inSlope: -0.5234096
+ outSlope: -0.5234096
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.16137956
+ inSlope: -0.08198626
+ outSlope: -0.08198626
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.13521227
+ inSlope: -1.0570201
+ outSlope: -1.0570201
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.09997827
+ inSlope: -1.7096438
+ outSlope: -1.7096438
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.021235999
+ inSlope: -2.375471
+ outSlope: -2.375471
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.05838648
+ inSlope: -1.7374094
+ outSlope: -1.7374094
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.094375215
+ inSlope: 0.017675646
+ outSlope: 0.017675646
+ tangentMode: 0
+ - time: 0.3
+ value: -0.08132042
+ inSlope: 0.27924713
+ outSlope: 0.27924713
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.017137328
+ inSlope: 1.0740677
+ outSlope: 1.0740677
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.14143854
+ inSlope: 0.43552077
+ outSlope: 0.43552077
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.14932641
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.14932641
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.7666668
+ value: 0.13984612
+ inSlope: -0.069887035
+ outSlope: -0.069887035
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.13521227
+ inSlope: 0.00389323
+ outSlope: 0.00389323
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9708864
+ inSlope: 0.023117064
+ outSlope: 0.023117064
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.971657
+ inSlope: -0.05332946
+ outSlope: -0.05332946
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.9673311
+ inSlope: -0.24748474
+ outSlope: -0.24748474
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.955158
+ inSlope: -0.30203465
+ outSlope: -0.30203465
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.94718313
+ inSlope: 0.001344681
+ outSlope: 0.001344681
+ tangentMode: 0
+ - time: 0.3
+ value: 0.95028573
+ inSlope: 0.10646046
+ outSlope: 0.10646046
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.9863434
+ inSlope: 0.2230222
+ outSlope: 0.2230222
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.98990667
+ inSlope: -0.050843973
+ outSlope: -0.050843973
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.98878795
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.98878795
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.7666668
+ value: 0.98808473
+ inSlope: -0.032324225
+ outSlope: -0.032324225
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9708864
+ inSlope: -0.020914098
+ outSlope: -0.020914098
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.16021426
+ inSlope: -0.5855539
+ outSlope: -0.5855539
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.1406958
+ inSlope: -0.7507817
+ outSlope: -0.7507817
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.11016214
+ inSlope: -0.6352611
+ outSlope: -0.6352611
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.09834505
+ inSlope: -0.15951186
+ outSlope: -0.15951186
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.099528015
+ inSlope: 0.024625584
+ outSlope: 0.024625584
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.099986754
+ inSlope: 0.01994714
+ outSlope: 0.01994714
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.09080632
+ inSlope: -0.33434108
+ outSlope: -0.33434108
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.04078403
+ inSlope: -0.5000749
+ outSlope: -0.5000749
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.0013554234
+ inSlope: -0.08421072
+ outSlope: -0.08421072
+ tangentMode: 0
+ - time: 0.6666667
+ value: -1.1250384e-10
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: -1.125288e-10
+ inSlope: 0.000000067857265
+ outSlope: 0.000000067857265
+ tangentMode: 0
+ - time: 1.7666668
+ value: 0.053092793
+ inSlope: 0.5222962
+ outSlope: 0.5222962
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.16021426
+ inSlope: 0.08019455
+ outSlope: 0.08019455
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.050204527
+ inSlope: -1.6946874
+ outSlope: -1.6946874
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.006285057
+ inSlope: -2.6716409
+ outSlope: -2.6716409
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.12790489
+ inSlope: -3.53262
+ outSlope: -3.53262
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.24179307
+ inSlope: -2.427997
+ outSlope: -2.427997
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.28977135
+ inSlope: -0.71832335
+ outSlope: -0.71832335
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.2896813
+ inSlope: 0.014339536
+ outSlope: 0.014339536
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.25450644
+ inSlope: 0.7212732
+ outSlope: 0.7212732
+ tangentMode: 0
+ - time: 0.43333337
+ value: -0.14313726
+ inSlope: 1.2873019
+ outSlope: 1.2873019
+ tangentMode: 0
+ - time: 0.56666666
+ value: -0.0077670566
+ inSlope: 0.43568915
+ outSlope: 0.43568915
+ tangentMode: 0
+ - time: 0.6666667
+ value: 1.6990447e-11
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: 1.6982811e-11
+ inSlope: 0.000000020769033
+ outSlope: 0.000000020769033
+ tangentMode: 0
+ - time: 1.7666668
+ value: 0.016393064
+ inSlope: 0.16261503
+ outSlope: 0.16261503
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.050204527
+ inSlope: 0.025611544
+ outSlope: 0.025611544
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.15210365
+ inSlope: -1.0472561
+ outSlope: -1.0472561
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.11719511
+ inSlope: -1.768017
+ outSlope: -1.768017
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.034235824
+ inSlope: -2.567161
+ outSlope: -2.567161
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.053948972
+ inSlope: -1.9324067
+ outSlope: -1.9324067
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.09459128
+ inSlope: -0.60570014
+ outSlope: -0.60570014
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.09432898
+ inSlope: 0.020718388
+ outSlope: 0.020718388
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.06642514
+ inSlope: 0.53432155
+ outSlope: 0.53432155
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.019981215
+ inSlope: 1.0642214
+ outSlope: 1.0642214
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.14167652
+ inSlope: 0.4229506
+ outSlope: 0.4229506
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.14932641
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.14932641
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.7666668
+ value: 0.15159439
+ inSlope: 0.01566635
+ outSlope: 0.01566635
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.15210365
+ inSlope: -0.0016513483
+ outSlope: -0.0016513483
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9739997
+ inSlope: 0.2721691
+ outSlope: 0.2721691
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.983072
+ inSlope: 0.165824
+ outSlope: 0.165824
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.9850546
+ inSlope: -0.28874162
+ outSlope: -0.28874162
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.96382254
+ inSlope: -0.5678872
+ outSlope: -0.5678872
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.9471955
+ inSlope: -0.24932565
+ outSlope: -0.24932565
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.94720083
+ inSlope: 0.0043228273
+ outSlope: 0.0043228273
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.96050423
+ inSlope: 0.25100905
+ outSlope: 0.25100905
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.9886603
+ inSlope: 0.18520391
+ outSlope: 0.18520391
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.98988163
+ inSlope: -0.05111756
+ outSlope: -0.05111756
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.98878795
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.98878795
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.7666668
+ value: 0.9868797
+ inSlope: -0.033592016
+ outSlope: -0.033592016
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9739997
+ inSlope: -0.014128102
+ outSlope: -0.014128102
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1.7890303e-10
+ inSlope: 0.10104324
+ outSlope: 0.10104324
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.0033681083
+ inSlope: 0.40993437
+ outSlope: 0.40993437
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.027328962
+ inSlope: 1.0383793
+ outSlope: 1.0383793
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.0725934
+ inSlope: 1.0829859
+ outSlope: 1.0829859
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.099528015
+ inSlope: 0.40280008
+ outSlope: 0.40280008
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.09944674
+ inSlope: -0.00836961
+ outSlope: -0.00836961
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.09547056
+ inSlope: -0.089035824
+ outSlope: -0.089035824
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.07198324
+ inSlope: -0.91436815
+ outSlope: -0.91436815
+ tangentMode: 0
+ - time: 0.43333337
+ value: -0.055165887
+ inSlope: -1.0318619
+ outSlope: -1.0318619
+ tangentMode: 0
+ - time: 0.53333336
+ value: -0.1391158
+ inSlope: -0.6081214
+ outSlope: -0.6081214
+ tangentMode: 0
+ - time: 0.6
+ value: -0.16128837
+ inSlope: -0.08898333
+ outSlope: -0.08898333
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.16128835
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.16128835
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.15109712
+ inSlope: 0.2840997
+ outSlope: 0.2840997
+ tangentMode: 0
+ - time: 1.8333335
+ value: -0.07903483
+ inSlope: 0.43566146
+ outSlope: 0.43566146
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.0040759337
+ inSlope: 0.22198784
+ outSlope: 0.22198784
+ tangentMode: 0
+ - time: 2.0333335
+ value: -1.1024215e-10
+ inSlope: 0.12227813
+ outSlope: 0.12227813
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.000000002185961
+ inSlope: -1.2823457
+ outSlope: -1.2823457
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.04274486
+ inSlope: -2.1289303
+ outSlope: -2.1289303
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.1419287
+ inSlope: -3.0179133
+ outSlope: -3.0179133
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.24393909
+ inSlope: -2.21764
+ outSlope: -2.21764
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.28977135
+ inSlope: -0.68335605
+ outSlope: -0.68335605
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.28949615
+ inSlope: 0.019332021
+ outSlope: 0.019332021
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.283097
+ inSlope: 0.12469725
+ outSlope: 0.12469725
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.27159464
+ inSlope: 0.21762854
+ outSlope: 0.21762854
+ tangentMode: 0
+ - time: 0.43333337
+ value: -0.2372571
+ inSlope: 0.6755416
+ outSlope: 0.6755416
+ tangentMode: 0
+ - time: 0.53333336
+ value: -0.13005538
+ inSlope: 1.0391326
+ outSlope: 1.0391326
+ tangentMode: 0
+ - time: 0.6
+ value: -0.08794665
+ inSlope: 0.1804135
+ outSlope: 0.1804135
+ tangentMode: 0
+ - time: 0.73333335
+ value: -0.08794667
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.08794667
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.083657056
+ inSlope: 0.12956259
+ outSlope: 0.12956259
+ tangentMode: 0
+ - time: 1.8333335
+ value: -0.042648055
+ inSlope: 0.2759183
+ outSlope: 0.2759183
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.001771375
+ inSlope: 0.10033769
+ outSlope: 0.10033769
+ tangentMode: 0
+ - time: 2.0333335
+ value: 2.3967769e-11
+ inSlope: 0.0531413
+ outSlope: 0.0531413
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.21244518
+ inSlope: -1.5270509
+ outSlope: -1.5270509
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.16154349
+ inSlope: -2.4115913
+ outSlope: -2.4115913
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.051672418
+ inSlope: -3.1924503
+ outSlope: -3.1924503
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.05128654
+ inSlope: -2.1939557
+ outSlope: -2.1939557
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.09459128
+ inSlope: -0.64786786
+ outSlope: -0.64786786
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.09447773
+ inSlope: 0.015073121
+ outSlope: 0.015073121
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.0861447
+ inSlope: 0.19779572
+ outSlope: 0.19779572
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.057826266
+ inSlope: 0.79642594
+ outSlope: 0.79642594
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.038822547
+ inSlope: 0.7300968
+ outSlope: 0.7300968
+ tangentMode: 0
+ - time: 0.53333336
+ value: 0.099813305
+ inSlope: 0.51239485
+ outSlope: 0.51239485
+ tangentMode: 0
+ - time: 0.6
+ value: 0.12034215
+ inSlope: 0.087121315
+ outSlope: 0.087121315
+ tangentMode: 0
+ - time: 0.73333335
+ value: 0.12034215
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.12034215
+ inSlope: 0.00000033527644
+ outSlope: 0.00000033527644
+ tangentMode: 0
+ - time: 1.6666667
+ value: 0.15117146
+ inSlope: 0.78772616
+ outSlope: 0.78772616
+ tangentMode: 0
+ - time: 1.8333335
+ value: 0.27558574
+ inSlope: 0.077552974
+ outSlope: 0.077552974
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.21733989
+ inSlope: -0.25578645
+ outSlope: -0.25578645
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.21244518
+ inSlope: -0.14684124
+ outSlope: -0.14684124
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.97717303
+ inSlope: 0.26281893
+ outSlope: 0.26281893
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.98593366
+ inSlope: 0.1646465
+ outSlope: 0.1646465
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.98814946
+ inSlope: -0.30337217
+ outSlope: -0.30337217
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.96570885
+ inSlope: -0.61430997
+ outSlope: -0.61430997
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.9471955
+ inSlope: -0.2761406
+ outSlope: -0.2761406
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.9472995
+ inSlope: 0.008272827
+ outSlope: 0.008272827
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.95043176
+ inSlope: 0.063472696
+ outSlope: 0.063472696
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.9579723
+ inSlope: 0.1627081
+ outSlope: 0.1627081
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.96910197
+ inSlope: 0.07993793
+ outSlope: 0.07993793
+ tangentMode: 0
+ - time: 0.53333336
+ value: 0.9766113
+ inSlope: 0.007989386
+ outSlope: 0.007989386
+ tangentMode: 0
+ - time: 0.6
+ value: 0.97558665
+ inSlope: -0.007549518
+ outSlope: -0.007549518
+ tangentMode: 0
+ - time: 0.73333335
+ value: 0.97558665
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.97558665
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.6666667
+ value: 0.97330284
+ inSlope: -0.07115265
+ outSlope: -0.07115265
+ tangentMode: 0
+ - time: 1.8333335
+ value: 0.9570722
+ inSlope: 0.026297342
+ outSlope: 0.026297342
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.9760859
+ inSlope: 0.05999003
+ outSlope: 0.05999003
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.97717303
+ inSlope: 0.032613903
+ outSlope: 0.032613903
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 5.6632993e-11
+ inSlope: 0.10104325
+ outSlope: 0.10104325
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.0033681083
+ inSlope: 0.40993437
+ outSlope: 0.40993437
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.027328962
+ inSlope: 1.0383793
+ outSlope: 1.0383793
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.0725934
+ inSlope: 1.0829859
+ outSlope: 1.0829859
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.099528015
+ inSlope: 0.40272936
+ outSlope: 0.40272936
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.09944202
+ inSlope: -0.008579716
+ outSlope: -0.008579716
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.09545337
+ inSlope: -0.08872905
+ outSlope: -0.08872905
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.0721471
+ inSlope: -0.91414195
+ outSlope: -0.91414195
+ tangentMode: 0
+ - time: 0.43333337
+ value: -0.05966183
+ inSlope: -1.1770343
+ outSlope: -1.1770343
+ tangentMode: 0
+ - time: 0.53333336
+ value: -0.16834113
+ inSlope: -0.8536679
+ outSlope: -0.8536679
+ tangentMode: 0
+ - time: 0.6
+ value: -0.20050791
+ inSlope: -0.17338754
+ outSlope: -0.17338754
+ tangentMode: 0
+ - time: 0.6666667
+ value: -0.2097505
+ inSlope: -0.20926574
+ outSlope: -0.20926574
+ tangentMode: 0
+ - time: 0.8
+ value: -0.22462183
+ inSlope: 0.06464904
+ outSlope: 0.06464904
+ tangentMode: 0
+ - time: 1.1333334
+ value: -0.16469711
+ inSlope: 0.073581785
+ outSlope: 0.073581785
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.19989389
+ inSlope: -0.034881845
+ outSlope: -0.034881845
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.18738139
+ inSlope: 0.3639029
+ outSlope: 0.3639029
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.1145007
+ inSlope: 0.5640906
+ outSlope: 0.5640906
+ tangentMode: 0
+ - time: 1.9666667
+ value: -0.018210484
+ inSlope: 0.47590584
+ outSlope: 0.47590584
+ tangentMode: 0
+ - time: 2.0333335
+ value: -2.3251219e-10
+ inSlope: 0.15064025
+ outSlope: 0.15064025
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.0000000021593787
+ inSlope: -1.2823457
+ outSlope: -1.2823457
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.04274486
+ inSlope: -2.1289303
+ outSlope: -2.1289303
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.1419287
+ inSlope: -3.0179133
+ outSlope: -3.0179133
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.24393909
+ inSlope: -2.21764
+ outSlope: -2.21764
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.28977135
+ inSlope: -0.68264705
+ outSlope: -0.68264705
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.2894489
+ inSlope: 0.021459907
+ outSlope: 0.021459907
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.28290728
+ inSlope: 0.1215014
+ outSlope: 0.1215014
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.27215707
+ inSlope: 0.1963242
+ outSlope: 0.1963242
+ tangentMode: 0
+ - time: 0.43333337
+ value: -0.24024525
+ inSlope: 0.6569563
+ outSlope: 0.6569563
+ tangentMode: 0
+ - time: 0.53333336
+ value: -0.13548358
+ inSlope: 1.0069901
+ outSlope: 1.0069901
+ tangentMode: 0
+ - time: 0.6
+ value: -0.09491467
+ inSlope: 0.24429083
+ outSlope: 0.24429083
+ tangentMode: 0
+ - time: 0.6666667
+ value: -0.0789671
+ inSlope: 0.36628854
+ outSlope: 0.36628854
+ tangentMode: 0
+ - time: 0.8
+ value: -0.051952608
+ inSlope: -0.093620576
+ outSlope: -0.093620576
+ tangentMode: 0
+ - time: 1.1333334
+ value: -0.13610938
+ inSlope: -0.10065244
+ outSlope: -0.10065244
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.095628574
+ inSlope: 0.04054834
+ outSlope: 0.04054834
+ tangentMode: 0
+ - time: 1.6666667
+ value: -0.090342306
+ inSlope: 0.14005683
+ outSlope: 0.14005683
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.054980744
+ inSlope: 0.31843448
+ outSlope: 0.31843448
+ tangentMode: 0
+ - time: 1.9666667
+ value: -0.0065908115
+ inSlope: 0.18739714
+ outSlope: 0.18739714
+ tangentMode: 0
+ - time: 2.0333335
+ value: 5.0550245e-11
+ inSlope: 0.051561933
+ outSlope: 0.051561933
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.21244518
+ inSlope: -1.5270509
+ outSlope: -1.5270509
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.16154349
+ inSlope: -2.4115913
+ outSlope: -2.4115913
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.051672418
+ inSlope: -3.1924503
+ outSlope: -3.1924503
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.05128654
+ inSlope: -2.1939557
+ outSlope: -2.1939557
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.09459128
+ inSlope: -0.64794266
+ outSlope: -0.64794266
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.09448271
+ inSlope: 0.014850497
+ outSlope: 0.014850497
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.08616376
+ inSlope: 0.19812486
+ outSlope: 0.19812486
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.05723997
+ inSlope: 0.82232857
+ outSlope: 0.82232857
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.04154216
+ inSlope: 0.7188298
+ outSlope: 0.7188298
+ tangentMode: 0
+ - time: 0.53333336
+ value: 0.100666404
+ inSlope: 0.51358366
+ outSlope: 0.51358366
+ tangentMode: 0
+ - time: 0.6
+ value: 0.12172277
+ inSlope: 0.13410047
+ outSlope: 0.13410047
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.13165992
+ inSlope: 0.234907
+ outSlope: 0.234907
+ tangentMode: 0
+ - time: 0.8
+ value: 0.14989698
+ inSlope: -0.05288107
+ outSlope: -0.05288107
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.10983421
+ inSlope: -0.039478578
+ outSlope: -0.039478578
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.12148023
+ inSlope: 0.013684049
+ outSlope: 0.013684049
+ tangentMode: 0
+ - time: 1.6666667
+ value: 0.15243144
+ inSlope: 0.78494203
+ outSlope: 0.78494203
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.2675073
+ inSlope: 0.46954793
+ outSlope: 0.46954793
+ tangentMode: 0
+ - time: 1.9666667
+ value: 0.22993371
+ inSlope: -0.42659545
+ outSlope: -0.42659545
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.21244518
+ inSlope: -0.15064687
+ outSlope: -0.15064687
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.97717303
+ inSlope: 0.26281893
+ outSlope: 0.26281893
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.98593366
+ inSlope: 0.1646465
+ outSlope: 0.1646465
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.98814946
+ inSlope: -0.30337217
+ outSlope: -0.30337217
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.96570885
+ inSlope: -0.61430997
+ outSlope: -0.61430997
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.9471955
+ inSlope: -0.27592424
+ outSlope: -0.27592424
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.9473139
+ inSlope: 0.008921027
+ outSlope: 0.008921027
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.95048827
+ inSlope: 0.062507994
+ outSlope: 0.062507994
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.95783556
+ inSlope: 0.15750104
+ outSlope: 0.15750104
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.96798605
+ inSlope: 0.061229505
+ outSlope: 0.061229505
+ tangentMode: 0
+ - time: 0.53333336
+ value: 0.9711703
+ inSlope: -0.05047562
+ outSlope: -0.05047562
+ tangentMode: 0
+ - time: 0.6
+ value: 0.9674561
+ inSlope: -0.027211001
+ outSlope: -0.027211001
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.96562654
+ inSlope: -0.048226126
+ outSlope: -0.048226126
+ tangentMode: 0
+ - time: 0.8
+ value: 0.9614452
+ inSlope: 0.018028013
+ outSlope: 0.018028013
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.970714
+ inSlope: 0.0031140477
+ outSlope: 0.0031140477
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.96754336
+ inSlope: -0.0048682014
+ outSlope: -0.0048682014
+ tangentMode: 0
+ - time: 1.6666667
+ value: 0.96617347
+ inSlope: -0.04458451
+ outSlope: -0.04458451
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.9551474
+ inSlope: -0.041540295
+ outSlope: -0.041540295
+ tangentMode: 0
+ - time: 1.9666667
+ value: 0.9730136
+ inSlope: 0.11341276
+ outSlope: 0.11341276
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.97717303
+ inSlope: 0.03359202
+ outSlope: 0.03359202
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -2.366097e-11
+ inSlope: 0.10104325
+ outSlope: 0.10104325
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.0033681083
+ inSlope: 0.40993437
+ outSlope: 0.40993437
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.027328962
+ inSlope: 1.0383793
+ outSlope: 1.0383793
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.0725934
+ inSlope: 1.0829859
+ outSlope: 1.0829859
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.099528015
+ inSlope: 0.40263134
+ outSlope: 0.40263134
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.099435486
+ inSlope: -0.008872077
+ outSlope: -0.008872077
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.09542946
+ inSlope: -0.08830235
+ outSlope: -0.08830235
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.07391726
+ inSlope: -0.83122736
+ outSlope: -0.83122736
+ tangentMode: 0
+ - time: 0.43333337
+ value: -0.049535975
+ inSlope: -1.1932874
+ outSlope: -1.1932874
+ tangentMode: 0
+ - time: 0.53333336
+ value: -0.16875327
+ inSlope: -0.9700184
+ outSlope: -0.9700184
+ tangentMode: 0
+ - time: 0.6
+ value: -0.2056872
+ inSlope: -0.19384606
+ outSlope: -0.19384606
+ tangentMode: 0
+ - time: 0.6666667
+ value: -0.21493022
+ inSlope: -0.20933771
+ outSlope: -0.20933771
+ tangentMode: 0
+ - time: 0.8
+ value: -0.2298126
+ inSlope: 0.06475029
+ outSlope: 0.06475029
+ tangentMode: 0
+ - time: 1.1333334
+ value: -0.16986652
+ inSlope: 0.07352859
+ outSlope: 0.07352859
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.20507275
+ inSlope: -0.034906656
+ outSlope: -0.034906656
+ tangentMode: 0
+ - time: 1.7000002
+ value: -0.21052746
+ inSlope: -0.06116526
+ outSlope: -0.06116526
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.21437287
+ inSlope: -0.012946354
+ outSlope: -0.012946354
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.19895545
+ inSlope: 0.8236605
+ outSlope: 0.8236605
+ tangentMode: 0
+ - time: 1.9666667
+ value: -0.056172926
+ inSlope: 1.3806286
+ outSlope: 1.3806286
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.01606407
+ inSlope: 0.84259033
+ outSlope: 0.84259033
+ tangentMode: 0
+ - time: 2.0333335
+ value: -3.128062e-10
+ inSlope: 0.48192257
+ outSlope: 0.48192257
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.0000000021419222
+ inSlope: -1.2823457
+ outSlope: -1.2823457
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.04274486
+ inSlope: -2.1289303
+ outSlope: -2.1289303
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.1419287
+ inSlope: -3.0179133
+ outSlope: -3.0179133
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.24393909
+ inSlope: -2.21764
+ outSlope: -2.21764
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.28977135
+ inSlope: -0.68166137
+ outSlope: -0.68166137
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.28938317
+ inSlope: 0.02441883
+ outSlope: 0.02441883
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.28264356
+ inSlope: 0.117059216
+ outSlope: 0.117059216
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.27308726
+ inSlope: 0.16274431
+ outSlope: 0.16274431
+ tangentMode: 0
+ - time: 0.43333337
+ value: -0.24350126
+ inSlope: 0.66304743
+ outSlope: 0.66304743
+ tangentMode: 0
+ - time: 0.53333336
+ value: -0.1367893
+ inSlope: 1.0211587
+ outSlope: 1.0211587
+ tangentMode: 0
+ - time: 0.6
+ value: -0.09582748
+ inSlope: 0.24569485
+ outSlope: 0.24569485
+ tangentMode: 0
+ - time: 0.6666667
+ value: -0.07982605
+ inSlope: 0.36756998
+ outSlope: 0.36756998
+ tangentMode: 0
+ - time: 0.8
+ value: -0.05271126
+ inSlope: -0.09392338
+ outSlope: -0.09392338
+ tangentMode: 0
+ - time: 1.1333334
+ value: -0.137088
+ inSlope: -0.10085741
+ outSlope: -0.10085741
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.09654279
+ inSlope: 0.04062657
+ outSlope: 0.04062657
+ tangentMode: 0
+ - time: 1.7000002
+ value: -0.08668427
+ inSlope: 0.1373187
+ outSlope: 0.1373187
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.074934
+ inSlope: 0.060448386
+ outSlope: 0.060448386
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.068193905
+ inSlope: 0.29450732
+ outSlope: 0.29450732
+ tangentMode: 0
+ - time: 1.9666667
+ value: -0.018551484
+ inSlope: 0.4644351
+ outSlope: 0.4644351
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.0052455524
+ inSlope: 0.27827108
+ outSlope: 0.27827108
+ tangentMode: 0
+ - time: 2.0333335
+ value: 6.80068e-11
+ inSlope: 0.15736672
+ outSlope: 0.15736672
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.21244518
+ inSlope: -1.5270509
+ outSlope: -1.5270509
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.16154349
+ inSlope: -2.4115913
+ outSlope: -2.4115913
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.051672418
+ inSlope: -3.1924503
+ outSlope: -3.1924503
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.05128654
+ inSlope: -2.1939557
+ outSlope: -2.1939557
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.09459128
+ inSlope: -0.6480459
+ outSlope: -0.6480459
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.0944896
+ inSlope: 0.014541708
+ outSlope: 0.014541708
+ tangentMode: 0
+ - time: 0.26666668
+ value: -0.08619024
+ inSlope: 0.19858228
+ outSlope: 0.19858228
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.057463925
+ inSlope: 0.8089438
+ outSlope: 0.8089438
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.03906359
+ inSlope: 0.70518196
+ outSlope: 0.70518196
+ tangentMode: 0
+ - time: 0.53333336
+ value: 0.09924599
+ inSlope: 0.5434821
+ outSlope: 0.5434821
+ tangentMode: 0
+ - time: 0.6
+ value: 0.121890835
+ inSlope: 0.14142066
+ outSlope: 0.14142066
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.13173053
+ inSlope: 0.23267809
+ outSlope: 0.23267809
+ tangentMode: 0
+ - time: 0.8
+ value: 0.14980446
+ inSlope: -0.052307077
+ outSlope: -0.052307077
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.11027089
+ inSlope: -0.0388344
+ outSlope: -0.0388344
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.12165289
+ inSlope: 0.013423204
+ outSlope: 0.013423204
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.16146217
+ inSlope: 0.6146394
+ outSlope: 0.6146394
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.21660487
+ inSlope: 0.2965504
+ outSlope: 0.2965504
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.22216637
+ inSlope: -0.005794024
+ outSlope: -0.005794024
+ tangentMode: 0
+ - time: 1.9666667
+ value: 0.21704592
+ inSlope: -0.09184769
+ outSlope: -0.09184769
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.21390435
+ inSlope: -0.069010735
+ outSlope: -0.069010735
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.21244518
+ inSlope: -0.043775033
+ outSlope: -0.043775033
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.97717303
+ inSlope: 0.26281893
+ outSlope: 0.26281893
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.98593366
+ inSlope: 0.1646465
+ outSlope: 0.1646465
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.98814946
+ inSlope: -0.30337217
+ outSlope: -0.30337217
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.96570885
+ inSlope: -0.61430997
+ outSlope: -0.61430997
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.9471955
+ inSlope: -0.27562293
+ outSlope: -0.27562293
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.947334
+ inSlope: 0.009819567
+ outSlope: 0.009819567
+ tangentMode: 0
+ - time: 0.26666668
+ value: 0.9505667
+ inSlope: 0.061168678
+ outSlope: 0.061168678
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.9574223
+ inSlope: 0.14499658
+ outSlope: 0.14499658
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.96784675
+ inSlope: 0.076367006
+ outSlope: 0.076367006
+ tangentMode: 0
+ - time: 0.53333336
+ value: 0.97106194
+ inSlope: -0.06870124
+ outSlope: -0.06870124
+ tangentMode: 0
+ - time: 0.6
+ value: 0.966257
+ inSlope: -0.032832906
+ outSlope: -0.032832906
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.9644065
+ inSlope: -0.04870714
+ outSlope: -0.04870714
+ tangentMode: 0
+ - time: 0.8
+ value: 0.9601908
+ inSlope: 0.018239908
+ outSlope: 0.018239908
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.9696353
+ inSlope: 0.0033134252
+ outSlope: 0.0033134252
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.9663464
+ inSlope: -0.0049880063
+ outSlope: -0.0049880063
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.9602573
+ inSlope: -0.104955666
+ outSlope: -0.104955666
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.9494796
+ inSlope: -0.06431669
+ outSlope: -0.06431669
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.95205486
+ inSlope: 0.18259335
+ outSlope: 0.18259335
+ tangentMode: 0
+ - time: 1.9666667
+ value: 0.97436726
+ inSlope: 0.11849837
+ outSlope: 0.11849837
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.9767084
+ inSlope: 0.042086333
+ outSlope: 0.042086333
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.97717303
+ inSlope: 0.013938559
+ outSlope: 0.013938559
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9284578
+ inSlope: -0.2252072
+ outSlope: -0.2252072
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.9209509
+ inSlope: -0.41538113
+ outSlope: -0.41538113
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.8733806
+ inSlope: -0.75866914
+ outSlope: -0.75866914
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.81417406
+ inSlope: -0.5959905
+ outSlope: -0.5959905
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.6552147
+ inSlope: -0.6209281
+ outSlope: -0.6209281
+ tangentMode: 0
+ - time: 0.6
+ value: 0.5951466
+ inSlope: -0.043203197
+ outSlope: -0.043203197
+ tangentMode: 0
+ - time: 1.1000001
+ value: 0.5951466
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.5951466
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.6295602
+ inSlope: 1.7166029
+ outSlope: 1.7166029
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.7095867
+ inSlope: 2.5490537
+ outSlope: 2.5490537
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.79949725
+ inSlope: 2.4332147
+ outSlope: 2.4332147
+ tangentMode: 0
+ - time: 1.9666667
+ value: 0.8718009
+ inSlope: 1.7262957
+ outSlope: 1.7262957
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.91458356
+ inSlope: 0.84984964
+ outSlope: 0.84984964
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9284578
+ inSlope: 0.41622737
+ outSlope: 0.41622737
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.31780726
+ inSlope: 0.7383611
+ outSlope: 0.7383611
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.3424193
+ inSlope: 1.2124759
+ outSlope: 1.2124759
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.4605418
+ inSlope: 1.5928197
+ outSlope: 1.5928197
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.5636833
+ inSlope: 0.8947367
+ outSlope: 0.8947367
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.7428438
+ inSlope: 0.52547807
+ outSlope: 0.52547807
+ tangentMode: 0
+ - time: 0.6
+ value: 0.7886462
+ inSlope: 0.029759979
+ outSlope: 0.029759979
+ tangentMode: 0
+ - time: 1.1000001
+ value: 0.7886462
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.7886462
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.7613953
+ inSlope: -1.5275669
+ outSlope: -1.5275669
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.6868085
+ inSlope: -2.7571778
+ outSlope: -2.7571778
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.5775832
+ inSlope: -3.447031
+ outSlope: -3.447031
+ tangentMode: 0
+ - time: 1.9666667
+ value: 0.45700672
+ inSlope: -3.288406
+ outSlope: -3.288406
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.35835606
+ inSlope: -2.0879834
+ outSlope: -2.0879834
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.31780726
+ inSlope: -1.2164652
+ outSlope: -1.2164652
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.19214165
+ inSlope: -0.18516047
+ outSlope: -0.18516047
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.18596964
+ inSlope: -0.32656246
+ outSlope: -0.32656246
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.15121052
+ inSlope: -0.4857664
+ outSlope: -0.4857664
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.12770188
+ inSlope: -0.11085291
+ outSlope: -0.11085291
+ tangentMode: 0
+ - time: 0.43333337
+ value: 0.13718246
+ inSlope: 0.14264017
+ outSlope: 0.14264017
+ tangentMode: 0
+ - time: 0.6
+ value: 0.15399711
+ inSlope: 0.014294597
+ outSlope: 0.014294597
+ tangentMode: 0
+ - time: 1.1000001
+ value: 0.15399711
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.15399711
+ inSlope: 0.00000022351684
+ outSlope: 0.00000022351684
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.15440564
+ inSlope: 0.049648408
+ outSlope: 0.049648408
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.15730701
+ inSlope: 0.15747492
+ outSlope: 0.15747492
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.16490398
+ inSlope: 0.28570604
+ outSlope: 0.28570604
+ tangentMode: 0
+ - time: 1.9666667
+ value: 0.17635405
+ inSlope: 0.33635926
+ outSlope: 0.33635926
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.18732795
+ inSlope: 0.23681307
+ outSlope: 0.23681307
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.19214165
+ inSlope: 0.14441116
+ outSlope: 0.14441116
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.006803551
+ inSlope: -0.3155561
+ outSlope: -0.3155561
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.0037149864
+ inSlope: -0.49376565
+ outSlope: -0.49376565
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.04736002
+ inSlope: -0.4687148
+ outSlope: -0.4687148
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.05544355
+ inSlope: 0.09972169
+ outSlope: 0.09972169
+ tangentMode: 0
+ - time: 0.43333337
+ value: -0.00759649
+ inSlope: 0.1998914
+ outSlope: 0.1998914
+ tangentMode: 0
+ - time: 0.6
+ value: 0.011073042
+ inSlope: 0.013136834
+ outSlope: 0.013136834
+ tangentMode: 0
+ - time: 1.1000001
+ value: 0.011073042
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.011073042
+ inSlope: -0.00000029336584
+ outSlope: -0.00000029336584
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.009500462
+ inSlope: -0.07674962
+ outSlope: -0.07674962
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.0059563858
+ inSlope: -0.09877439
+ outSlope: -0.09877439
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.0029154979
+ inSlope: -0.048836954
+ outSlope: -0.048836954
+ tangentMode: 0
+ - time: 1.9666667
+ value: 0.002700582
+ inSlope: 0.03290149
+ outSlope: 0.03290149
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.0051089465
+ inSlope: 0.061544336
+ outSlope: 0.061544336
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.006803551
+ inSlope: 0.05083819
+ outSlope: 0.05083819
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000067319047
+ inSlope: -0.00000014506837
+ outSlope: -0.00000014506837
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.0000006780261
+ inSlope: -0.00000021115054
+ outSlope: -0.00000021115054
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.0000006945662
+ inSlope: -0.00000014953629
+ outSlope: -0.00000014953629
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.0000006971123
+ inSlope: 0.0000000034941654
+ outSlope: 0.0000000034941654
+ tangentMode: 0
+ - time: 0.7666667
+ value: -0.0000006950689
+ inSlope: -0.000000002433467
+ outSlope: -0.000000002433467
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.0000006948412
+ inSlope: 0.000000007630383
+ outSlope: 0.000000007630383
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.00000069504216
+ inSlope: 0.0000000030141143
+ outSlope: 0.0000000030141143
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.0000006900368
+ inSlope: 0.00000012343136
+ outSlope: 0.00000012343136
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.0000006751281
+ inSlope: 0.00000009808946
+ outSlope: 0.00000009808946
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000067319047
+ inSlope: 0.000000058128705
+ outSlope: 0.000000058128705
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000020826067
+ inSlope: 0.0000004898081
+ outSlope: 0.0000004898081
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.00000019193374
+ inSlope: 0.0000007894073
+ outSlope: 0.0000007894073
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.00000011889351
+ inSlope: 0.00000080336054
+ outSlope: 0.00000080336054
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.00000010291948
+ inSlope: -0.000000023631552
+ outSlope: -0.000000023631552
+ tangentMode: 0
+ - time: 0.7666667
+ value: -0.00000011591874
+ inSlope: 0.000000014593661
+ outSlope: 0.000000014593661
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.000000117275796
+ inSlope: -0.000000045333593
+ outSlope: -0.000000045333593
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.00000011607939
+ inSlope: -0.000000017946025
+ outSlope: -0.000000017946025
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.00000014285354
+ inSlope: -0.0000005866902
+ outSlope: -0.0000005866902
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.00000020189127
+ inSlope: -0.0000003367547
+ outSlope: -0.0000003367547
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000020826067
+ inSlope: -0.00000019108232
+ outSlope: -0.00000019108232
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.34396434
+ inSlope: -0.6776386
+ outSlope: -0.6776386
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.3665523
+ inSlope: -1.0726452
+ outSlope: -1.0726452
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.4632218
+ inSlope: -1.035399
+ outSlope: -1.035399
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.48344207
+ inSlope: 0.02967954
+ outSlope: 0.02967954
+ tangentMode: 0
+ - time: 0.7666667
+ value: -0.46701187
+ inSlope: -0.018565359
+ outSlope: -0.018565359
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.46528426
+ inSlope: 0.05773237
+ outSlope: 0.05773237
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.46680748
+ inSlope: 0.022848338
+ outSlope: 0.022848338
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.43228146
+ inSlope: 0.7683823
+ outSlope: 0.7683823
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.35282025
+ inSlope: 0.46447486
+ outSlope: 0.46447486
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.34396434
+ inSlope: 0.26567754
+ outSlope: 0.26567754
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9389827
+ inSlope: -0.25755823
+ outSlope: -0.25755823
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.93039745
+ inSlope: -0.44066542
+ outSlope: -0.44066542
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.8862424
+ inSlope: -0.52221185
+ outSlope: -0.52221185
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.87537634
+ inSlope: 0.01638204
+ outSlope: 0.01638204
+ tangentMode: 0
+ - time: 0.7666667
+ value: 0.88425106
+ inSlope: -0.009806158
+ outSlope: -0.009806158
+ tangentMode: 0
+ - time: 1.6000001
+ value: 0.88516134
+ inSlope: 0.030380515
+ outSlope: 0.030380515
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.884359
+ inSlope: 0.01203504
+ outSlope: 0.01203504
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.90173876
+ inSlope: 0.36531293
+ outSlope: 0.36531293
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.9356912
+ inSlope: 0.17893924
+ outSlope: 0.17893924
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9389827
+ inSlope: 0.098746516
+ outSlope: 0.098746516
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000067319024
+ inSlope: -0.00000014506837
+ outSlope: -0.00000014506837
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.00000067802586
+ inSlope: -0.00000021114968
+ outSlope: -0.00000021114968
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.000000694566
+ inSlope: -0.00000014953629
+ outSlope: -0.00000014953629
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.0000006930947
+ inSlope: 0.00000013373752
+ outSlope: 0.00000013373752
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.00000064848496
+ inSlope: 0.00000056365855
+ outSlope: 0.00000056365855
+ tangentMode: 0
+ - time: 0.46666667
+ value: -0.0000005531247
+ inSlope: 0.0000007363907
+ outSlope: 0.0000007363907
+ tangentMode: 0
+ - time: 0.6
+ value: -0.0000004922237
+ inSlope: 0.00000007156552
+ outSlope: 0.00000007156552
+ tangentMode: 0
+ - time: 0.8
+ value: -0.0000004922237
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.0000004922237
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.0000005104662
+ inSlope: -0.0000009114715
+ outSlope: -0.0000009114715
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.0000005529884
+ inSlope: -0.0000013611252
+ outSlope: -0.0000013611252
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.00000060120794
+ inSlope: -0.0000013174008
+ outSlope: -0.0000013174008
+ tangentMode: 0
+ - time: 1.9666667
+ value: -0.0000006408151
+ inSlope: -0.0000009577981
+ outSlope: -0.0000009577981
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.0000006650611
+ inSlope: -0.0000004856254
+ outSlope: -0.0000004856254
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000067319024
+ inSlope: -0.00000024387384
+ outSlope: -0.00000024387384
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000020826056
+ inSlope: 0.00000048980763
+ outSlope: 0.00000048980763
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.00000019193364
+ inSlope: 0.00000078940684
+ outSlope: 0.00000078940684
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.000000118893425
+ inSlope: 0.0000008033603
+ outSlope: 0.0000008033603
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.00000012718981
+ inSlope: -0.0000007006039
+ outSlope: -0.0000007006039
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.0000002757259
+ inSlope: -0.0000013204476
+ outSlope: -0.0000013204476
+ tangentMode: 0
+ - time: 0.46666667
+ value: -0.00000043658972
+ inSlope: -0.0000009412006
+ outSlope: -0.0000009412006
+ tangentMode: 0
+ - time: 0.6
+ value: -0.0000005042553
+ inSlope: -0.00000007052614
+ outSlope: -0.00000007052614
+ tangentMode: 0
+ - time: 0.8
+ value: -0.0000005042553
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.0000005042553
+ inSlope: 8.5264906e-13
+ outSlope: 8.5264906e-13
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.0000004857796
+ inSlope: 0.0000010123939
+ outSlope: 0.0000010123939
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.00000043676238
+ inSlope: 0.0000017731647
+ outSlope: 0.0000017731647
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.00000036756848
+ inSlope: 0.0000021547849
+ outSlope: 0.0000021547849
+ tangentMode: 0
+ - time: 1.9666667
+ value: -0.00000029311022
+ inSlope: 0.0000020197426
+ outSlope: 0.0000020197426
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.00000023291894
+ inSlope: 0.0000012727396
+ outSlope: 0.0000012727396
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000020826056
+ inSlope: 0.000000739752
+ outSlope: 0.000000739752
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.34396434
+ inSlope: -0.6776386
+ outSlope: -0.6776386
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.3665523
+ inSlope: -1.0726452
+ outSlope: -1.0726452
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.4632218
+ inSlope: -1.035399
+ outSlope: -1.035399
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.45259193
+ inSlope: 0.90582585
+ outSlope: 0.90582585
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.24656425
+ inSlope: 1.9752522
+ outSlope: 1.9752522
+ tangentMode: 0
+ - time: 0.46666667
+ value: 0.017030334
+ inSlope: 1.6957573
+ outSlope: 1.6957573
+ tangentMode: 0
+ - time: 0.6
+ value: 0.14578965
+ inSlope: 0.14116074
+ outSlope: 0.14116074
+ tangentMode: 0
+ - time: 0.8
+ value: 0.14578965
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.14578965
+ inSlope: -0.0000006705505
+ outSlope: -0.0000006705505
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.10924459
+ inSlope: -1.9267085
+ outSlope: -1.9267085
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.0173425
+ inSlope: -3.1721768
+ outSlope: -3.1721768
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.10223409
+ inSlope: -3.5653143
+ outSlope: -3.5653143
+ tangentMode: 0
+ - time: 1.9666667
+ value: -0.2203449
+ inSlope: -3.1035817
+ outSlope: -3.1035817
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.30913955
+ inSlope: -1.8542838
+ outSlope: -1.8542838
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.34396434
+ inSlope: -1.0447446
+ outSlope: -1.0447446
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9389827
+ inSlope: -0.25755823
+ outSlope: -0.25755823
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.93039745
+ inSlope: -0.44066542
+ outSlope: -0.44066542
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.8862424
+ inSlope: -0.52221185
+ outSlope: -0.52221185
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.89171773
+ inSlope: 0.45165992
+ outSlope: 0.45165992
+ tangentMode: 0
+ - time: 0.33333334
+ value: 0.96912646
+ inSlope: 0.4995443
+ outSlope: 0.4995443
+ tangentMode: 0
+ - time: 0.46666667
+ value: 0.999855
+ inSlope: -0.021628398
+ outSlope: -0.021628398
+ tangentMode: 0
+ - time: 0.6
+ value: 0.9893156
+ inSlope: -0.02011655
+ outSlope: -0.02011655
+ tangentMode: 0
+ - time: 0.8
+ value: 0.9893156
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.9893156
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.9940149
+ inSlope: 0.15800998
+ outSlope: 0.15800998
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.9998496
+ inSlope: 0.0111824125
+ outSlope: 0.0111824125
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.9947604
+ inSlope: -0.366415
+ outSlope: -0.366415
+ tangentMode: 0
+ - time: 1.9666667
+ value: 0.975422
+ inSlope: -0.656155
+ outSlope: -0.656155
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.95101666
+ inSlope: -0.5465874
+ outSlope: -0.5465874
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9389827
+ inSlope: -0.36101854
+ outSlope: -0.36101854
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.19106962
+ inSlope: 0.9546639
+ outSlope: 0.9546639
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.15924749
+ inSlope: 1.5171497
+ outSlope: 1.5171497
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.089926295
+ inSlope: 1.9710214
+ outSlope: 1.9710214
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.027846051
+ inSlope: 1.2899175
+ outSlope: 1.2899175
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.0039317976
+ inSlope: 0.33568484
+ outSlope: 0.33568484
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.0054670656
+ inSlope: -0.08852619
+ outSlope: -0.08852619
+ tangentMode: 0
+ - time: 0.40000004
+ value: -0.07773268
+ inSlope: -0.4275163
+ outSlope: -0.4275163
+ tangentMode: 0
+ - time: 0.6
+ value: -0.1347058
+ inSlope: -0.031260673
+ outSlope: -0.031260673
+ tangentMode: 0
+ - time: 1.1333334
+ value: -0.119131505
+ inSlope: 0.025064373
+ outSlope: 0.025064373
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.13107118
+ inSlope: -0.101794675
+ outSlope: -0.101794675
+ tangentMode: 0
+ - time: 1.7000002
+ value: -0.13565545
+ inSlope: 0.0498714
+ outSlope: 0.0498714
+ tangentMode: 0
+ - time: 1.8333335
+ value: -0.13470525
+ inSlope: -0.14734493
+ outSlope: -0.14734493
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.16801728
+ inSlope: -0.3831109
+ outSlope: -0.3831109
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.18808118
+ inSlope: -0.16679133
+ outSlope: -0.16679133
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.19106962
+ inSlope: -0.089653365
+ outSlope: -0.089653365
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.061082628
+ inSlope: 0.24597678
+ outSlope: 0.24597678
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.0528834
+ inSlope: 0.104920976
+ outSlope: 0.104920976
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.054087896
+ inSlope: -0.4106821
+ outSlope: -0.4106821
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.08026221
+ inSlope: -0.68137467
+ outSlope: -0.68137467
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.09951287
+ inSlope: -0.26156572
+ outSlope: -0.26156572
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.09769992
+ inSlope: 0.10248731
+ outSlope: 0.10248731
+ tangentMode: 0
+ - time: 0.40000004
+ value: -0.03405123
+ inSlope: 0.28012323
+ outSlope: 0.28012323
+ tangentMode: 0
+ - time: 0.6
+ value: -0.004171381
+ inSlope: 0.014299565
+ outSlope: 0.014299565
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.0007305221
+ inSlope: 0.0069246604
+ outSlope: 0.0069246604
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.0029298621
+ inSlope: -0.034346983
+ outSlope: -0.034346983
+ tangentMode: 0
+ - time: 1.7000002
+ value: -0.0045259194
+ inSlope: 0.017853945
+ outSlope: 0.017853945
+ tangentMode: 0
+ - time: 1.8333335
+ value: -0.0041885623
+ inSlope: -0.0738642
+ outSlope: -0.0738642
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.03011153
+ inSlope: -0.4051664
+ outSlope: -0.4051664
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.056149974
+ inSlope: -0.2514935
+ outSlope: -0.2514935
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.061082624
+ inSlope: -0.14797962
+ outSlope: -0.14797962
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9330375
+ inSlope: 0.783686
+ outSlope: 0.783686
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.9591604
+ inSlope: 0.89424574
+ outSlope: 0.89424574
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.9926539
+ inSlope: 0.45614177
+ outSlope: 0.45614177
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.98956984
+ inSlope: -0.26025388
+ outSlope: -0.26025388
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.97530365
+ inSlope: -0.20090462
+ outSlope: -0.20090462
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.9761762
+ inSlope: 0.048116148
+ outSlope: 0.048116148
+ tangentMode: 0
+ - time: 0.40000004
+ value: 0.9948828
+ inSlope: 0.016181769
+ outSlope: 0.016181769
+ tangentMode: 0
+ - time: 0.6
+ value: 0.9903452
+ inSlope: -0.0054681245
+ outSlope: -0.0054681245
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.9928703
+ inSlope: 0.0027823476
+ outSlope: 0.0027823476
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.9910798
+ inSlope: -0.019496072
+ outSlope: -0.019496072
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.9901381
+ inSlope: 0.010943406
+ outSlope: 0.010943406
+ tangentMode: 0
+ - time: 1.8333335
+ value: 0.99034506
+ inSlope: -0.041831747
+ outSlope: -0.041831747
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.9697199
+ inSlope: -0.41330755
+ outSlope: -0.41330755
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.9394467
+ inSlope: -0.31480068
+ outSlope: -0.31480068
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9330375
+ inSlope: -0.19227523
+ outSlope: -0.19227523
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.29866746
+ inSlope: 2.1285129
+ outSlope: 2.1285129
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.22771703
+ inSlope: 3.5767617
+ outSlope: 3.5767617
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.060216658
+ inSlope: 5.1608
+ outSlope: 5.1608
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.11633629
+ inSlope: 3.8603625
+ outSlope: 3.8603625
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.19714083
+ inSlope: 1.1598812
+ outSlope: 1.1598812
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.1936617
+ inSlope: -0.19820742
+ outSlope: -0.19820742
+ tangentMode: 0
+ - time: 0.40000004
+ value: 0.054830573
+ inSlope: -0.7137914
+ outSlope: -0.7137914
+ tangentMode: 0
+ - time: 0.6
+ value: -0.03245705
+ inSlope: -0.042541243
+ outSlope: -0.042541243
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.0039662104
+ inSlope: 0.058357436
+ outSlope: 0.058357436
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.023927672
+ inSlope: -0.23871908
+ outSlope: -0.23871908
+ tangentMode: 0
+ - time: 1.7000002
+ value: -0.03469316
+ inSlope: 0.1172712
+ outSlope: 0.1172712
+ tangentMode: 0
+ - time: 1.8333335
+ value: -0.032459382
+ inSlope: -0.48271877
+ outSlope: -0.48271877
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.17466214
+ inSlope: -1.8656857
+ outSlope: -1.8656857
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.28091383
+ inSlope: -0.9465078
+ outSlope: -0.9465078
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.29866746
+ inSlope: -0.53260946
+ outSlope: -0.53260946
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000085833966
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000085833966
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000026553903
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000026553903
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.43856585
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.43856585
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.8986991
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.8986991
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.0000008583398
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.0000008583398
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000026553911
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000026553911
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.43856585
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.43856585
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.8986991
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.8986991
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.19106962
+ inSlope: 0.0030156968
+ outSlope: 0.0030156968
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.1909691
+ inSlope: -0.118593626
+ outSlope: -0.118593626
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.19897586
+ inSlope: -0.40864035
+ outSlope: -0.40864035
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.21821178
+ inSlope: -0.4714443
+ outSlope: -0.4714443
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.23040548
+ inSlope: -0.18031844
+ outSlope: -0.18031844
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.23023301
+ inSlope: 0.009833202
+ outSlope: 0.009833202
+ tangentMode: 0
+ - time: 0.6333333
+ value: -0.21944718
+ inSlope: -0.0023286035
+ outSlope: -0.0023286035
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.22066642
+ inSlope: 0.034797166
+ outSlope: 0.034797166
+ tangentMode: 0
+ - time: 1.7000002
+ value: -0.2190926
+ inSlope: -0.016413545
+ outSlope: -0.016413545
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.22018927
+ inSlope: 0.012333659
+ outSlope: 0.012333659
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.21407251
+ inSlope: 0.22302991
+ outSlope: 0.22302991
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.19599642
+ inSlope: 0.19441766
+ outSlope: 0.19441766
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.19076367
+ inSlope: 0.0071178353
+ outSlope: 0.0071178353
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.19106962
+ inSlope: -0.009178528
+ outSlope: -0.009178528
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.061082628
+ inSlope: -0.14274123
+ outSlope: -0.14274123
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.06584067
+ inSlope: -0.2363516
+ outSlope: -0.2363516
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.0768394
+ inSlope: -0.29091865
+ outSlope: -0.29091865
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.085235246
+ inSlope: -0.15409695
+ outSlope: -0.15409695
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.08711253
+ inSlope: -0.027938897
+ outSlope: -0.027938897
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.08709784
+ inSlope: 0.00085271895
+ outSlope: 0.00085271895
+ tangentMode: 0
+ - time: 0.6333333
+ value: -0.085467644
+ inSlope: -0.00056572235
+ outSlope: -0.00056572235
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.08571599
+ inSlope: 0.007171775
+ outSlope: 0.007171775
+ tangentMode: 0
+ - time: 1.7000002
+ value: -0.085384995
+ inSlope: -0.0038535497
+ outSlope: -0.0038535497
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.08563767
+ inSlope: 0.0025699965
+ outSlope: 0.0025699965
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.08409857
+ inSlope: 0.077934675
+ outSlope: 0.077934675
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.07423094
+ inSlope: 0.18826054
+ outSlope: 0.18826054
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.0628842
+ inSlope: 0.09953748
+ outSlope: 0.09953748
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.061082624
+ inSlope: 0.054047234
+ outSlope: 0.054047234
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9330375
+ inSlope: 0.6499421
+ outSlope: 0.6499421
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.95470226
+ inSlope: 0.6484088
+ outSlope: 0.6484088
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.9762648
+ inSlope: 0.1027786
+ outSlope: 0.1027786
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.96155417
+ inSlope: -0.49764907
+ outSlope: -0.49764907
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.9430882
+ inSlope: -0.2726439
+ outSlope: -0.2726439
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.9433779
+ inSlope: 0.016421378
+ outSlope: 0.016421378
+ tangentMode: 0
+ - time: 0.6333333
+ value: 0.9600122
+ inSlope: -0.0033617006
+ outSlope: -0.0033617006
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.9583349
+ inSlope: 0.049434863
+ outSlope: 0.049434863
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.9605084
+ inSlope: -0.022923935
+ outSlope: -0.022923935
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.9589502
+ inSlope: 0.016906813
+ outSlope: 0.016906813
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.9667898
+ inSlope: 0.22720924
+ outSlope: 0.22720924
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.97433
+ inSlope: -0.21480827
+ outSlope: -0.21480827
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.9423742
+ inSlope: -0.41797864
+ outSlope: -0.41797864
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9330375
+ inSlope: -0.28010157
+ outSlope: -0.28010157
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.29866746
+ inSlope: 2.4052198
+ outSlope: 2.4052198
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.21849346
+ inSlope: 3.9164743
+ outSlope: 3.9164743
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.03756912
+ inSlope: 5.4267592
+ outSlope: 5.4267592
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.14329052
+ inSlope: 3.9146023
+ outSlope: 3.9146023
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.22340435
+ inSlope: 1.1860743
+ outSlope: 1.1860743
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.22236213
+ inSlope: -0.059429705
+ outSlope: -0.059429705
+ tangentMode: 0
+ - time: 0.6333333
+ value: 0.15137647
+ inSlope: 0.017586343
+ outSlope: 0.017586343
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.15985422
+ inSlope: -0.24545413
+ outSlope: -0.24545413
+ tangentMode: 0
+ - time: 1.7000002
+ value: 0.14876632
+ inSlope: 0.12112312
+ outSlope: 0.12112312
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.15683548
+ inSlope: -0.08633807
+ outSlope: -0.08633807
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.11143572
+ inSlope: -1.876797
+ outSlope: -1.876797
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.082196265
+ inSlope: -3.2112484
+ outSlope: -3.2112484
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.26755485
+ inSlope: -1.6581407
+ outSlope: -1.6581407
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.29866746
+ inSlope: -0.93337923
+ outSlope: -0.93337923
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.000000340617
+ inSlope: -0.00000017540059
+ outSlope: -0.00000017540059
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.00000034646368
+ inSlope: -0.00000021073572
+ outSlope: -0.00000021073572
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.00000035466604
+ inSlope: -0.00000014829779
+ outSlope: -0.00000014829779
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.0000003563502
+ inSlope: -0.0000000042304293
+ outSlope: -0.0000000042304293
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.00000035494807
+ inSlope: 0.000000020623078
+ outSlope: 0.000000020623078
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.00000035497533
+ inSlope: -0.0000000015351986
+ outSlope: -0.0000000015351986
+ tangentMode: 0
+ - time: 0.6333333
+ value: -0.0000003562708
+ inSlope: 1.8800954e-10
+ outSlope: 1.8800954e-10
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.00000035617296
+ inSlope: -0.0000000030196619
+ outSlope: -0.0000000030196619
+ tangentMode: 0
+ - time: 1.7333335
+ value: -0.00000035624907
+ inSlope: 0.0000000013233161
+ outSlope: 0.0000000013233161
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.00000035620963
+ inSlope: -9.660514e-10
+ outSlope: -9.660514e-10
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.00000035653022
+ inSlope: 0.0000000041319526
+ outSlope: 0.0000000041319526
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.00000035325525
+ inSlope: 0.00000011533581
+ outSlope: 0.00000011533581
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.00000034305842
+ inSlope: 0.000000115387564
+ outSlope: 0.000000115387564
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.000000340617
+ inSlope: 0.000000073242816
+ outSlope: 0.000000073242816
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000010537457
+ inSlope: 0.0000006357734
+ outSlope: 0.0000006357734
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.00000008418212
+ inSlope: 0.000001032407
+ outSlope: 0.000001032407
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.00000003654743
+ inSlope: 0.000001439116
+ outSlope: 0.000001439116
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.000000011758954
+ inSlope: 0.0000010536871
+ outSlope: 0.0000010536871
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.00000003369837
+ inSlope: 0.0000003247661
+ outSlope: 0.0000003247661
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.000000033410025
+ inSlope: -0.000000016437571
+ outSlope: -0.000000016437571
+ tangentMode: 0
+ - time: 0.6333333
+ value: 0.000000013958788
+ inSlope: 0.000000004772514
+ outSlope: 0.000000004772514
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.000000016265089
+ inSlope: -0.00000006679514
+ outSlope: -0.00000006679514
+ tangentMode: 0
+ - time: 1.7333335
+ value: 0.0000000145025085
+ inSlope: 0.000000032869394
+ outSlope: 0.000000032869394
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.000000015441554
+ inSlope: -0.000000023477838
+ outSlope: -0.000000023477838
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.000000003151058
+ inSlope: -0.000000503891
+ outSlope: -0.000000503891
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.00000004831615
+ inSlope: -0.0000008470362
+ outSlope: -0.0000008470362
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.000000097132194
+ inSlope: -0.0000004378362
+ outSlope: -0.0000004378362
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000010537457
+ inSlope: -0.00000024727146
+ outSlope: -0.00000024727146
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.17403722
+ inSlope: -1.8107507
+ outSlope: -1.8107507
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.23439558
+ inSlope: -2.8453782
+ outSlope: -2.8453782
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.36372912
+ inSlope: -3.779735
+ outSlope: -3.779735
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.48637792
+ inSlope: -2.633597
+ outSlope: -2.633597
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.53930223
+ inSlope: -0.7836007
+ outSlope: -0.7836007
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.53861797
+ inSlope: 0.03903061
+ outSlope: 0.03903061
+ tangentMode: 0
+ - time: 0.6333333
+ value: -0.49176303
+ inSlope: -0.011662687
+ outSlope: -0.011662687
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.49739006
+ inSlope: 0.16273129
+ outSlope: 0.16273129
+ tangentMode: 0
+ - time: 1.7333335
+ value: -0.49309134
+ inSlope: -0.08028753
+ outSlope: -0.08028753
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.49538296
+ inSlope: 0.057320446
+ outSlope: 0.057320446
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.46513847
+ inSlope: 1.2621353
+ outSlope: 1.2621353
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.3325654
+ inSlope: 2.2606564
+ outSlope: 2.2606564
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.19772716
+ inSlope: 1.2400721
+ outSlope: 1.2400721
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.17403722
+ inSlope: 0.7106989
+ outSlope: 0.7106989
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9847391
+ inSlope: -0.37793395
+ outSlope: -0.37793395
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.9721413
+ inSlope: -0.79851496
+ outSlope: -0.79851496
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.9315048
+ inSlope: -1.4758909
+ outSlope: -1.4758909
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.8737486
+ inSlope: -1.3408873
+ outSlope: -1.3408873
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.8421123
+ inSlope: -0.46797755
+ outSlope: -0.46797755
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.8425501
+ inSlope: 0.02491057
+ outSlope: 0.02491057
+ tangentMode: 0
+ - time: 0.6333333
+ value: 0.8707291
+ inSlope: -0.0065892907
+ outSlope: -0.0065892907
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.86752707
+ inSlope: 0.093202226
+ outSlope: 0.093202226
+ tangentMode: 0
+ - time: 1.7333335
+ value: 0.86997753
+ inSlope: -0.045458123
+ outSlope: -0.045458123
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.86867476
+ inSlope: 0.0325217
+ outSlope: 0.0325217
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.88523793
+ inSlope: 0.6359756
+ outSlope: 0.6359756
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.9430802
+ inSlope: 0.798714
+ outSlope: 0.798714
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.98025715
+ inSlope: 0.27375397
+ outSlope: 0.27375397
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9847391
+ inSlope: 0.13445927
+ outSlope: 0.13445927
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000034061722
+ inSlope: -0.00000017540059
+ outSlope: -0.00000017540059
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.0000003464639
+ inSlope: -0.00000021073572
+ outSlope: -0.00000021073572
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.00000035466627
+ inSlope: -0.00000014829736
+ outSlope: -0.00000014829736
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.0000003563504
+ inSlope: -0.000000004230003
+ outSlope: -0.000000004230003
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.00000035494827
+ inSlope: 0.000000017515166
+ outSlope: 0.000000017515166
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.00000035518272
+ inSlope: -0.000000011879564
+ outSlope: -0.000000011879564
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.00000035235726
+ inSlope: 0.00000008624863
+ outSlope: 0.00000008624863
+ tangentMode: 0
+ - time: 0.6
+ value: -0.0000003281953
+ inSlope: 0.000000014985334
+ outSlope: 0.000000014985334
+ tangentMode: 0
+ - time: 0.8666667
+ value: -0.0000003281953
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.0000003281953
+ inSlope: -4.2632453e-13
+ outSlope: -4.2632453e-13
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.00000033174558
+ inSlope: -0.00000008405854
+ outSlope: -0.00000008405854
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.00000033981584
+ inSlope: -0.0000000433307
+ outSlope: -0.0000000433307
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000034061722
+ inSlope: -0.000000024041379
+ outSlope: -0.000000024041379
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000010537456
+ inSlope: 0.00000063577386
+ outSlope: 0.00000063577386
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.0000000841821
+ inSlope: 0.0000010324076
+ outSlope: 0.0000010324076
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.00000003654738
+ inSlope: 0.0000014391169
+ outSlope: 0.0000014391169
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.000000011759035
+ inSlope: 0.0000010536877
+ outSlope: 0.0000010536877
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.000000033698463
+ inSlope: 0.00000029057338
+ outSlope: 0.00000029057338
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.00000003113059
+ inSlope: -0.00000014649235
+ outSlope: -0.00000014649235
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.00000005448139
+ inSlope: -0.0000005578129
+ outSlope: -0.0000005578129
+ tangentMode: 0
+ - time: 0.6
+ value: -0.00000013932588
+ inSlope: -0.000000035657422
+ outSlope: -0.000000035657422
+ tangentMode: 0
+ - time: 0.8666667
+ value: -0.00000013932588
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.00000013932588
+ inSlope: 2.1316227e-13
+ outSlope: 2.1316227e-13
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.00000013064738
+ inSlope: 0.00000021522216
+ outSlope: 0.00000021522216
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.000000107930944
+ inSlope: 0.00000013380708
+ outSlope: 0.00000013380708
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000010537456
+ inSlope: 0.00000007669158
+ outSlope: 0.00000007669158
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.17403722
+ inSlope: -1.8107507
+ outSlope: -1.8107507
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.23439558
+ inSlope: -2.8453782
+ outSlope: -2.8453782
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.36372912
+ inSlope: -3.779735
+ outSlope: -3.779735
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.48637792
+ inSlope: -2.633597
+ outSlope: -2.633597
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.53930223
+ inSlope: -0.7023003
+ outSlope: -0.7023003
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.53319794
+ inSlope: 0.35015434
+ outSlope: 0.35015434
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.31603557
+ inSlope: 1.5019516
+ outSlope: 1.5019516
+ tangentMode: 0
+ - time: 0.6
+ value: -0.073421754
+ inSlope: 0.10815831
+ outSlope: 0.10815831
+ tangentMode: 0
+ - time: 0.8666667
+ value: -0.073421754
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.073421754
+ inSlope: -0.00000044703367
+ outSlope: -0.00000044703367
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.09962167
+ inSlope: -0.6446318
+ outSlope: -0.6446318
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.16663308
+ inSlope: -0.38932505
+ outSlope: -0.38932505
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.17403722
+ inSlope: -0.22212422
+ outSlope: -0.22212422
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.9847391
+ inSlope: -0.37793395
+ outSlope: -0.37793395
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.9721413
+ inSlope: -0.79851496
+ outSlope: -0.79851496
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.9315048
+ inSlope: -1.4758909
+ outSlope: -1.4758909
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.8737486
+ inSlope: -1.3408873
+ outSlope: -1.3408873
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.8421123
+ inSlope: -0.416371
+ outSlope: -0.416371
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.84599054
+ inSlope: 0.21751821
+ outSlope: 0.21751821
+ tangentMode: 0
+ - time: 0.3666667
+ value: 0.94874734
+ inSlope: 0.5003122
+ outSlope: 0.5003122
+ tangentMode: 0
+ - time: 0.6
+ value: 0.997301
+ inSlope: 0.008355969
+ outSlope: 0.008355969
+ tangentMode: 0
+ - time: 0.8666667
+ value: 0.997301
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.997301
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.9950254
+ inSlope: -0.06637565
+ outSlope: -0.06637565
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.986019
+ inSlope: -0.06353949
+ outSlope: -0.06353949
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.9847391
+ inSlope: -0.038396753
+ outSlope: -0.038396753
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalRotation.w
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Controls
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Controls
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Controls
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 7.19978e-23
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 7.19978e-23
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Housing
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -3.5527136e-17
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -3.5527136e-17
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Housing
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 5.684342e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 5.684342e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Housing
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 7.4337745e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 7.4337745e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Housing/Lid
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -1.7472501
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -1.7472501
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Housing/Lid
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.128325
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.128325
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Housing/Lid
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -1.250624
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -1.250624
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Housing/HousingLeftDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 8.050634e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 8.050634e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Housing/HousingLeftDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.09848316
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.09848316
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Housing/HousingLeftDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -1.0792987
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -1.0792987
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 5.708225e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 5.708225e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.22159642
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0.22159642
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1.2506199
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 1.2506199
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Housing/HousingRightDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 8.050634e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 8.050634e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Housing/HousingRightDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.0984832
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.0984832
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Housing/HousingRightDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1.101812
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 1.101812
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -5.705413e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -5.705413e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0022962647
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0.0022962647
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1.6940659e-23
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 1.6940659e-23
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.3155601
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0.3155601
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.05607515
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0.05607515
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.48641288
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.48641288
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/spine2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 8.8649955e-18
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 8.8649955e-18
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/spine2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -3.5527135e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -3.5527135e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/spine2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.6448484
+ inSlope: -0.9943482
+ outSlope: -0.9943482
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.6779936
+ inSlope: -1.5909668
+ outSlope: -1.590965
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.82383263
+ inSlope: -1.5909779
+ outSlope: -1.5909724
+ tangentMode: 0
+ - time: 0.2
+ value: -0.85696673
+ inSlope: 0.00033405842
+ outSlope: 0.0003443035
+ tangentMode: 0
+ - time: 1.5666667
+ value: -0.80439574
+ inSlope: 0.15050387
+ outSlope: 0.15051554
+ tangentMode: 0
+ - time: 1.8666667
+ value: -0.6894219
+ inSlope: 0.45011142
+ outSlope: 0.450087
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.6448484
+ inSlope: 0.06652325
+ outSlope: 0.06652325
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/spine2/Head
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 4.3231363e-11
+ inSlope: 5.1698783e-25
+ outSlope: 5.1698783e-25
+ tangentMode: 0
+ - time: 0.033333335
+ value: 4.3231363e-11
+ inSlope: 2.2156623e-25
+ outSlope: 5.169879e-25
+ tangentMode: 0
+ - time: 0.10000001
+ value: 4.3231363e-11
+ inSlope: 2.215662e-25
+ outSlope: 5.169879e-25
+ tangentMode: 0
+ - time: 0.2
+ value: 4.3231363e-11
+ inSlope: 2.2156625e-25
+ outSlope: 5.169877e-25
+ tangentMode: 0
+ - time: 1.5666667
+ value: 4.3231363e-11
+ inSlope: 2.2156645e-25
+ outSlope: 5.169884e-25
+ tangentMode: 0
+ - time: 1.8666667
+ value: 4.3231363e-11
+ inSlope: 2.2156645e-25
+ outSlope: 5.169884e-25
+ tangentMode: 0
+ - time: 2.0333333
+ value: 4.3231363e-11
+ inSlope: 2.2156645e-25
+ outSlope: 2.2156645e-25
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/spine2/Head
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.00000026950906
+ inSlope: 4.2351643e-21
+ outSlope: 4.2351643e-21
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.00000026950906
+ inSlope: 1.8150705e-21
+ outSlope: 4.2351647e-21
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.00000026950906
+ inSlope: 1.8150703e-21
+ outSlope: 4.2351647e-21
+ tangentMode: 0
+ - time: 0.2
+ value: 0.00000026950906
+ inSlope: 1.8150707e-21
+ outSlope: 4.235163e-21
+ tangentMode: 0
+ - time: 1.5666667
+ value: 0.00000026950906
+ inSlope: 1.8150724e-21
+ outSlope: 4.2351688e-21
+ tangentMode: 0
+ - time: 1.8666667
+ value: 0.00000026950906
+ inSlope: 1.8150724e-21
+ outSlope: 4.2351688e-21
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0.00000026950906
+ inSlope: 1.8150724e-21
+ outSlope: 1.8150724e-21
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/spine2/Head
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.13735615
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.13735615
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/spine2/Tongue
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.0005649498
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.0005649498
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/spine2/Tongue
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.54466915
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.54466915
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/spine2/Tongue
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.20701517
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.20701517
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/LeftArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.8019186
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0.8019186
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/LeftArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.37920392
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.37920392
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/LeftArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.3169463
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.3169463
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 2.3092638e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 2.3092638e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000025989718
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.00000025989718
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.32263
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.32263
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -2.1316282e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -2.1316282e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.0000001322789
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.0000001322789
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.32154
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.32154
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -4.2632563e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -4.2632563e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.000000131832
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.000000131832
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.32044998
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.32044998
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -5.684342e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -5.684342e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.0000001313851
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.0000001313851
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.31936
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.31936
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -2.842171e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -2.842171e-16
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000013093819
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.00000013093819
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.20701504
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.20701504
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/RightArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.8019178
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.8019178
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/RightArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.37920505
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.37920505
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/RightArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.31694242
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.31694242
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/RightArm1/RightArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.000001034375
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0.000001034375
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/RightArm1/RightArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0000015884948
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0.0000015884948
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/RightArm1/RightArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.32263023
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.32263023
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0000014312133
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0.0000014312133
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.0000002129795
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.0000002129795
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.32154042
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.32154042
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0000019041405
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0.0000019041405
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 3.819707e-11
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 3.819707e-11
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.32045043
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.32045043
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0000019042094
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0.0000019042094
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 8.694137e-11
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 8.694137e-11
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.31936044
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: -0.31936044
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0000019042094
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 0.0000019042094
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1.6413886e-10
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333333
+ value: 1.6413886e-10
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Controls
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Controls
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Controls
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Housing
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Housing
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Housing
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Housing/Lid
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Housing/Lid
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Housing/Lid
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Housing/HousingLeftDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Housing/HousingLeftDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Housing/HousingLeftDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Housing/HousingRightDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Housing/HousingRightDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Housing/HousingRightDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1/spine2/Head/Tooth
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1/spine2/Head/Tooth
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1/spine2/Head/Tooth
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1/spine2/Head/LeftEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1/spine2/Head/LeftEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1/spine2/Head/LeftEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1/spine2/Head/RightEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1/spine2/Head/RightEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1/spine2/Head/RightEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1/spine2/Tongue
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1/spine2/Tongue
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1/spine2/Tongue
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1/LeftArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1/LeftArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1/LeftArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1/RightArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1/RightArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1/RightArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.37441173
+ inSlope: 0
+ outSlope: 2.6810925
+ tangentMode: 21
+ - time: 0.23333333
+ value: 1
+ inSlope: 2.6810925
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.6333333
+ value: 1
+ inSlope: 0
+ outSlope: -18.38544
+ tangentMode: 21
+ - time: 1.6666666
+ value: 0.38715255
+ inSlope: -18.38544
+ outSlope: -18.38544
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.37441173
+ inSlope: 0
+ outSlope: 2.6810925
+ tangentMode: 21
+ - time: 0.23333333
+ value: 1
+ inSlope: 2.6810925
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.6333333
+ value: 1
+ inSlope: 0
+ outSlope: -18.38544
+ tangentMode: 21
+ - time: 1.6666666
+ value: 0.38715255
+ inSlope: -18.38544
+ outSlope: -18.38544
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.37441173
+ inSlope: 0
+ outSlope: 2.6810925
+ tangentMode: 21
+ - time: 0.23333333
+ value: 1
+ inSlope: 2.6810925
+ outSlope: -0
+ tangentMode: 21
+ - time: 1.6333333
+ value: 1
+ inSlope: 0
+ outSlope: -18.38544
+ tangentMode: 21
+ - time: 1.6666666
+ value: 0.38715255
+ inSlope: -18.38544
+ outSlope: -18.38544
+ tangentMode: 21
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalScale.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.054
+ inSlope: 0.36857143
+ outSlope: 0.36857143
+ tangentMode: 10
+ - time: 0.23333333
+ value: 0.032
+ inSlope: 0.24616072
+ outSlope: 0.24616072
+ tangentMode: 10
+ - time: 0.5
+ value: 0.065
+ inSlope: 0.061874997
+ outSlope: 0.061874997
+ tangentMode: 10
+ - time: 1.6333333
+ value: 0.065
+ inSlope: 0
+ outSlope: -1.8135017
+ tangentMode: 5
+ - time: 1.6666666
+ value: -0.0559
+ inSlope: -3.6270034
+ outSlope: -3.6270034
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.107
+ inSlope: -0.82285714
+ outSlope: -0.82285714
+ tangentMode: 10
+ - time: 0.23333333
+ value: -0.085
+ inSlope: -0.37767857
+ outSlope: -0.37767857
+ tangentMode: 10
+ - time: 0.5
+ value: -0.067
+ inSlope: 0.03375
+ outSlope: 0.03375
+ tangentMode: 10
+ - time: 1.6333333
+ value: -0.067
+ inSlope: 0
+ outSlope: 2.3865023
+ tangentMode: 5
+ - time: 1.6666666
+ value: 0.0921
+ inSlope: 4.7730045
+ outSlope: 4.7730045
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0.07714286
+ outSlope: 0.07714286
+ tangentMode: 10
+ - time: 0.23333333
+ value: 0.018
+ inSlope: 0.16419645
+ outSlope: 0.16419645
+ tangentMode: 10
+ - time: 0.5
+ value: 0.085
+ inSlope: 0.12562501
+ outSlope: 0.12562501
+ tangentMode: 10
+ - time: 1.6333333
+ value: 0.085
+ inSlope: 0
+ outSlope: -0.6420006
+ tangentMode: 5
+ - time: 1.6666666
+ value: 0.0422
+ inSlope: -1.2840012
+ outSlope: -1.2840012
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalPosition.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -28.0163
+ inSlope: 1.184578
+ outSlope: 1.184578
+ tangentMode: 10
+ - time: 0.23333333
+ value: -27.739899
+ inSlope: 0.592289
+ outSlope: 0.592289
+ tangentMode: 10
+ - time: 1.6333333
+ value: -27.739899
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAnglesRaw.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 92.7997
+ inSlope: -51.29742
+ outSlope: -51.29742
+ tangentMode: 10
+ - time: 0.23333333
+ value: 80.8303
+ inSlope: -25.64871
+ outSlope: -25.64871
+ tangentMode: 10
+ - time: 1.6333333
+ value: 80.8303
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAnglesRaw.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -91.315895
+ inSlope: 24.054401
+ outSlope: 24.054401
+ tangentMode: 10
+ - time: 0.23333333
+ value: -85.7032
+ inSlope: 12.027201
+ outSlope: 12.027201
+ tangentMode: 10
+ - time: 1.6333333
+ value: -85.7032
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAnglesRaw.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ classID: 4
+ script: {fileID: 0}
+ m_EulerEditorCurves:
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Controls
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Controls
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Controls
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -7.016709e-15
+ inSlope: 1.03525205e-14
+ outSlope: 1.03525205e-14
+ tangentMode: 0
+ - time: 2.0333335
+ value: -7.016709e-15
+ inSlope: 1.03525205e-14
+ outSlope: 1.03525205e-14
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Housing
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 180
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 180
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Housing
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 180
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 180
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Housing
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 281.1177
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 281.1177
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Housing/Lid
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Housing/Lid
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Housing/Lid
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 6.995392e-15
+ inSlope: -1.0321069e-14
+ outSlope: -1.0321069e-14
+ tangentMode: 0
+ - time: 2.0333335
+ value: 6.995392e-15
+ inSlope: -1.0321069e-14
+ outSlope: -1.0321069e-14
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Housing/HousingLeftDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 190.70767
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 190.70767
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Housing/HousingLeftDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 180
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 180
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Housing/HousingLeftDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 8.628856
+ inSlope: 0.0000070353017
+ outSlope: 0.0000070353017
+ tangentMode: 0
+ - time: 2.0333335
+ value: 8.628856
+ inSlope: 0.0000070353017
+ outSlope: 0.0000070353017
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Housing/HousingLeftDoor1/HousingLeftDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Housing/HousingRightDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1.0141692
+ inSlope: 0.000009145892
+ outSlope: 0.000009145892
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1.0141692
+ inSlope: 0.000009145892
+ outSlope: 0.000009145892
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Housing/HousingRightDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Housing/HousingRightDoor1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 347.87933
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 347.87933
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Housing/HousingRightDoor1/HousingRightDoor2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.0000239463
+ inSlope: -0.000009695326
+ outSlope: -0.000009695326
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.0000239463
+ inSlope: -0.000009695326
+ outSlope: -0.000009695326
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 180.00005
+ inSlope: 0.000022512964
+ outSlope: 0.000022512964
+ tangentMode: 0
+ - time: 2.0333335
+ value: 180.00005
+ inSlope: 0.000022512964
+ outSlope: 0.000022512964
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 270
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 270
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -6.0664263e-21
+ inSlope: 8.950464e-21
+ outSlope: 8.950464e-21
+ tangentMode: 0
+ - time: 2.0333335
+ value: -6.0664263e-21
+ inSlope: 8.950464e-21
+ outSlope: 8.950464e-21
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/spine2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 6.0664263e-21
+ inSlope: -8.950464e-21
+ outSlope: -8.950464e-21
+ tangentMode: 0
+ - time: 2.0333335
+ value: 6.0664263e-21
+ inSlope: -8.950464e-21
+ outSlope: -8.950464e-21
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/spine2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -3.21e-43
+ inSlope: 4.74e-43
+ outSlope: 4.74e-43
+ tangentMode: 0
+ - time: 2.0333335
+ value: -3.21e-43
+ inSlope: 4.74e-43
+ outSlope: 4.74e-43
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/spine2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 2.547624
+ inSlope: -64.31546
+ outSlope: -64.31546
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.38006136
+ inSlope: -111.51082
+ outSlope: -111.510796
+ tangentMode: 0
+ - time: 0.06666668
+ value: 355.07056
+ inSlope: -171.6888
+ outSlope: -171.68886
+ tangentMode: 0
+ - time: 0.10000001
+ value: 349.02856
+ inSlope: -146.1017
+ outSlope: -145.97533
+ tangentMode: 0
+ - time: 0.20000002
+ value: 342.80386
+ inSlope: -33.752743
+ outSlope: -33.761738
+ tangentMode: 0
+ - time: 0.56666666
+ value: 336.98355
+ inSlope: -4.9830494
+ outSlope: -5.033112
+ tangentMode: 0
+ - time: 0.6333333
+ value: 338.19647
+ inSlope: 75.456856
+ outSlope: 75.456856
+ tangentMode: 0
+ - time: 0.7
+ value: 346.357
+ inSlope: 120.4239
+ outSlope: 120.90451
+ tangentMode: 0
+ - time: 0.8
+ value: 353.91257
+ inSlope: 56.09709
+ outSlope: 55.305737
+ tangentMode: 0
+ - time: 0.96666664
+ value: 359.07623
+ inSlope: 6.98401
+ outSlope: 6.984003
+ tangentMode: 0
+ - time: 1.1333334
+ value: 0.027662586
+ inSlope: 5.3965087
+ outSlope: 5.397501
+ tangentMode: 0
+ - time: 1.6333334
+ value: 2.0246234
+ inSlope: 2.658351
+ outSlope: 2.6889353
+ tangentMode: 0
+ - time: 2.0333335
+ value: 2.547624
+ inSlope: 0.0423324
+ outSlope: 0.0423324
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/spine2/Head
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 359.53098
+ inSlope: -96.1386
+ outSlope: -96.1386
+ tangentMode: 0
+ - time: 0.033333335
+ value: 356.34323
+ inSlope: -149.34538
+ outSlope: -149.34535
+ tangentMode: 0
+ - time: 0.06666668
+ value: 349.59686
+ inSlope: -197.24298
+ outSlope: -197.24306
+ tangentMode: 0
+ - time: 0.10000001
+ value: 343.09143
+ inSlope: -143.55287
+ outSlope: -144.10399
+ tangentMode: 0
+ - time: 0.20000002
+ value: 339.60086
+ inSlope: -4.6774287
+ outSlope: -4.522123
+ tangentMode: 0
+ - time: 0.56666666
+ value: 339.98083
+ inSlope: 4.8929114
+ outSlope: 4.8284917
+ tangentMode: 0
+ - time: 0.6333333
+ value: 342.63034
+ inSlope: 115.59403
+ outSlope: 115.59403
+ tangentMode: 0
+ - time: 0.7
+ value: 353.24512
+ inSlope: 131.42397
+ outSlope: 130.49191
+ tangentMode: 0
+ - time: 0.8
+ value: 0.5611466
+ inSlope: 53.323822
+ outSlope: 54.029316
+ tangentMode: 0
+ - time: 0.96666664
+ value: 8.196854
+ inSlope: 29.482094
+ outSlope: 29.482061
+ tangentMode: 0
+ - time: 1.1333334
+ value: 9.324828
+ inSlope: 0.42546237
+ outSlope: 0.41254234
+ tangentMode: 0
+ - time: 1.6333334
+ value: 8.428989
+ inSlope: -11.5575485
+ outSlope: -11.5507765
+ tangentMode: 0
+ - time: 2.0333335
+ value: 359.53098
+ inSlope: -4.3531027
+ outSlope: -4.3531027
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/spine2/Head
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.31474015
+ inSlope: -39.231915
+ outSlope: -39.231915
+ tangentMode: 0
+ - time: 0.033333335
+ value: 359.04764
+ inSlope: -50.91888
+ outSlope: -50.91887
+ tangentMode: 0
+ - time: 0.06666668
+ value: 357.0595
+ inSlope: -39.50133
+ outSlope: -39.501347
+ tangentMode: 0
+ - time: 0.10000001
+ value: 356.2249
+ inSlope: -8.371583
+ outSlope: -4.207763
+ tangentMode: 0
+ - time: 0.20000002
+ value: 355.584
+ inSlope: -7.068786
+ outSlope: -7.0020366
+ tangentMode: 0
+ - time: 0.56666666
+ value: 352.80533
+ inSlope: -11.965859
+ outSlope: -11.92154
+ tangentMode: 0
+ - time: 0.6333333
+ value: 350.61383
+ inSlope: -71.64735
+ outSlope: -71.64735
+ tangentMode: 0
+ - time: 0.7
+ value: 345.24173
+ inSlope: -47.437595
+ outSlope: -45.74248
+ tangentMode: 0
+ - time: 0.8
+ value: 346.29904
+ inSlope: 72.07854
+ outSlope: 72.56087
+ tangentMode: 0
+ - time: 0.96666664
+ value: 3.4742362
+ inSlope: 79.767746
+ outSlope: 79.76766
+ tangentMode: 0
+ - time: 1.1333334
+ value: 6.405119
+ inSlope: -2.4683168
+ outSlope: -2.466236
+ tangentMode: 0
+ - time: 1.6333334
+ value: 2.8268125
+ inSlope: -9.0588665
+ outSlope: -9.050213
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.3147402
+ inSlope: -0.7947708
+ outSlope: -0.7947708
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/spine2/Head
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 5.5182953
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 5.5182953
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/spine2/Head/Tooth
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 180.00005
+ inSlope: 0.000022512964
+ outSlope: 0.000022512964
+ tangentMode: 0
+ - time: 2.0333335
+ value: 180.00005
+ inSlope: 0.000022512964
+ outSlope: 0.000022512964
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/spine2/Head/Tooth
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 2.0450326e-13
+ inSlope: -3.017261e-13
+ outSlope: -3.017261e-13
+ tangentMode: 0
+ - time: 2.0333335
+ value: 2.0450326e-13
+ inSlope: -3.017261e-13
+ outSlope: -3.017261e-13
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/spine2/Head/Tooth
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 66.62097
+ inSlope: -0.07811011
+ outSlope: -0.07811011
+ tangentMode: 0
+ - time: 1.3666668
+ value: 66.38726
+ inSlope: -2.956042
+ outSlope: 2.8708656
+ tangentMode: 0
+ - time: 1.5333334
+ value: 66.506584
+ inSlope: -6.138475
+ outSlope: -6.535376
+ tangentMode: 0
+ - time: 1.7333335
+ value: 66.31989
+ inSlope: -0.00011444089
+ outSlope: -0.00007629393
+ tangentMode: 0
+ - time: 2.0333335
+ value: 66.31989
+ inSlope: -0.00007629393
+ outSlope: -0.00007629393
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/spine2/Head/LeftEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 269.9327
+ inSlope: -5.852832
+ outSlope: -5.852832
+ tangentMode: 0
+ - time: 1.3666668
+ value: 261.45743
+ inSlope: 65.726105
+ outSlope: 67.32698
+ tangentMode: 0
+ - time: 1.5333334
+ value: 275.98853
+ inSlope: 106.04061
+ outSlope: 105.70585
+ tangentMode: 0
+ - time: 1.7333335
+ value: 279.68546
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 279.68546
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/spine2/Head/LeftEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 359.9415
+ inSlope: -5.085263
+ outSlope: -5.085263
+ tangentMode: 0
+ - time: 1.3666668
+ value: 354.5802
+ inSlope: 61.177227
+ outSlope: 62.764908
+ tangentMode: 0
+ - time: 1.5333334
+ value: 8.017388
+ inSlope: 97.330215
+ outSlope: 96.99493
+ tangentMode: 0
+ - time: 1.7333335
+ value: 11.408901
+ inSlope: 0.000057220444
+ outSlope: 0.000038146965
+ tangentMode: 0
+ - time: 2.0333335
+ value: 11.408901
+ inSlope: 0.000038146965
+ outSlope: 0.000038146965
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/spine2/Head/LeftEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 56.61713
+ inSlope: -0.000005628241
+ outSlope: -0.000005628241
+ tangentMode: 0
+ - time: 2.0333335
+ value: 56.61713
+ inSlope: -0.000005628241
+ outSlope: -0.000005628241
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/spine2/Head/RightEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 90.00004
+ inSlope: -0.000011256482
+ outSlope: -0.000011256482
+ tangentMode: 0
+ - time: 2.0333335
+ value: 90.00004
+ inSlope: -0.000011256482
+ outSlope: -0.000011256482
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/spine2/Head/RightEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 179.99998
+ inSlope: 0.000022512964
+ outSlope: 0.000022512964
+ tangentMode: 0
+ - time: 2.0333335
+ value: 179.99998
+ inSlope: 0.000022512964
+ outSlope: 0.000022512964
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/spine2/Head/RightEye
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 90
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 90
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/spine2/Tongue
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 270.0001
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 270.0001
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/spine2/Tongue
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/spine2/Tongue
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 13.089219
+ inSlope: 1.2647915
+ outSlope: 1.2647915
+ tangentMode: 0
+ - time: 0.3
+ value: 13.609336
+ inSlope: 0.18090248
+ outSlope: 0.1710713
+ tangentMode: 0
+ - time: 0.56666666
+ value: 14.445906
+ inSlope: 5.393794
+ outSlope: 5.3937926
+ tangentMode: 0
+ - time: 0.8333334
+ value: 15.329486
+ inSlope: -0.38575524
+ outSlope: -0.38453066
+ tangentMode: 0
+ - time: 1.7666668
+ value: 13.258858
+ inSlope: -1.1316162
+ outSlope: -1.2312407
+ tangentMode: 0
+ - time: 2.0333335
+ value: 13.089219
+ inSlope: -0.08240816
+ outSlope: -0.08240816
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 311.3479
+ inSlope: -20.907288
+ outSlope: -20.907288
+ tangentMode: 0
+ - time: 0.3
+ value: 301.6104
+ inSlope: 18.765259
+ outSlope: 18.765337
+ tangentMode: 0
+ - time: 0.56666666
+ value: 317.02463
+ inSlope: 60.038227
+ outSlope: 60.03821
+ tangentMode: 0
+ - time: 0.8333334
+ value: 326.6867
+ inSlope: -2.0283506
+ outSlope: -2.0281546
+ tangentMode: 0
+ - time: 1.7666668
+ value: 313.12332
+ inSlope: -12.246223
+ outSlope: -12.2480345
+ tangentMode: 0
+ - time: 2.0333335
+ value: 311.3479
+ inSlope: -0.94928706
+ outSlope: -0.94928706
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 316.5402
+ inSlope: -3.370056
+ outSlope: -3.370056
+ tangentMode: 0
+ - time: 0.3
+ value: 315.38437
+ inSlope: -5.5184937
+ outSlope: -5.519257
+ tangentMode: 0
+ - time: 0.56666666
+ value: 312.58847
+ inSlope: -4.136353
+ outSlope: -4.136352
+ tangentMode: 0
+ - time: 0.8333334
+ value: 312.51028
+ inSlope: 0.31379694
+ outSlope: 0.31546456
+ tangentMode: 0
+ - time: 1.7666668
+ value: 315.89987
+ inSlope: 4.2887874
+ outSlope: 4.264754
+ tangentMode: 0
+ - time: 2.0333335
+ value: 316.5402
+ inSlope: 0.35499558
+ outSlope: 0.35499558
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 359.58093
+ inSlope: 17.645264
+ outSlope: 17.645264
+ tangentMode: 0
+ - time: 0.3
+ value: 7.966872
+ inSlope: -15.410146
+ outSlope: -15.418959
+ tangentMode: 0
+ - time: 0.56666666
+ value: 355.65286
+ inSlope: -45.654034
+ outSlope: -45.654022
+ tangentMode: 0
+ - time: 0.8333334
+ value: 348.30508
+ inSlope: -0.0003433227
+ outSlope: -0.000119416596
+ tangentMode: 0
+ - time: 1.6000001
+ value: 348.30508
+ inSlope: -0.000119416596
+ outSlope: -0.00045776385
+ tangentMode: 0
+ - time: 1.8000001
+ value: 352.59665
+ inSlope: 41.76683
+ outSlope: 41.88496
+ tangentMode: 0
+ - time: 2.0333335
+ value: 359.58093
+ inSlope: 6.5086107
+ outSlope: 6.5086107
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 348.49948
+ inSlope: -9.628601
+ outSlope: -9.628601
+ tangentMode: 0
+ - time: 0.3
+ value: 344.04587
+ inSlope: 9.83429
+ outSlope: 9.822808
+ tangentMode: 0
+ - time: 0.56666666
+ value: 352.98602
+ inSlope: 39.15871
+ outSlope: 39.1587
+ tangentMode: 0
+ - time: 0.8333334
+ value: 359.46082
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.6000001
+ value: 359.46082
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 354.90048
+ inSlope: -40.2498
+ outSlope: -40.094975
+ tangentMode: 0
+ - time: 2.0333335
+ value: 348.49948
+ inSlope: -5.3672104
+ outSlope: -5.3672104
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 14.422266
+ inSlope: 1.505184
+ outSlope: 1.505184
+ tangentMode: 0
+ - time: 0.3
+ value: 15.22029
+ inSlope: -9.063406
+ outSlope: -9.050321
+ tangentMode: 0
+ - time: 0.56666666
+ value: 8.636715
+ inSlope: -24.948536
+ outSlope: -24.94853
+ tangentMode: 0
+ - time: 0.8333334
+ value: 4.9670734
+ inSlope: -0.000021457668
+ outSlope: -0.0000074635373
+ tangentMode: 0
+ - time: 1.6000001
+ value: 4.9670734
+ inSlope: -0.0000074635373
+ outSlope: -0.00002861024
+ tangentMode: 0
+ - time: 1.8000001
+ value: 8.530727
+ inSlope: 32.94326
+ outSlope: 32.762047
+ tangentMode: 0
+ - time: 2.0333335
+ value: 14.422266
+ inSlope: 5.5927
+ outSlope: 5.5927
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 359.58093
+ inSlope: 17.645264
+ outSlope: 17.645264
+ tangentMode: 0
+ - time: 0.3
+ value: 7.966872
+ inSlope: -15.410146
+ outSlope: -15.418959
+ tangentMode: 0
+ - time: 0.56666666
+ value: 355.65286
+ inSlope: -45.654034
+ outSlope: -45.654022
+ tangentMode: 0
+ - time: 0.8333334
+ value: 348.30508
+ inSlope: -0.0003433227
+ outSlope: -0.000119416596
+ tangentMode: 0
+ - time: 1.6000001
+ value: 348.30508
+ inSlope: -0.000119416596
+ outSlope: -0.00045776385
+ tangentMode: 0
+ - time: 1.8000001
+ value: 352.59665
+ inSlope: 41.76683
+ outSlope: 41.88496
+ tangentMode: 0
+ - time: 2.0333335
+ value: 359.58093
+ inSlope: 6.5086107
+ outSlope: 6.5086107
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 348.49948
+ inSlope: -9.628601
+ outSlope: -9.628601
+ tangentMode: 0
+ - time: 0.3
+ value: 344.04587
+ inSlope: 9.83429
+ outSlope: 9.822808
+ tangentMode: 0
+ - time: 0.56666666
+ value: 352.98602
+ inSlope: 39.15871
+ outSlope: 39.1587
+ tangentMode: 0
+ - time: 0.8333334
+ value: 359.46082
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.6000001
+ value: 359.46082
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 354.90048
+ inSlope: -40.2498
+ outSlope: -40.094975
+ tangentMode: 0
+ - time: 2.0333335
+ value: 348.49948
+ inSlope: -5.3672104
+ outSlope: -5.3672104
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 14.422266
+ inSlope: 1.505184
+ outSlope: 1.505184
+ tangentMode: 0
+ - time: 0.3
+ value: 15.22029
+ inSlope: -9.063406
+ outSlope: -9.050321
+ tangentMode: 0
+ - time: 0.56666666
+ value: 8.636715
+ inSlope: -24.948536
+ outSlope: -24.94853
+ tangentMode: 0
+ - time: 0.8333334
+ value: 4.9670734
+ inSlope: -0.000021457668
+ outSlope: -0.0000074635373
+ tangentMode: 0
+ - time: 1.6000001
+ value: 4.9670734
+ inSlope: -0.0000074635373
+ outSlope: -0.00002861024
+ tangentMode: 0
+ - time: 1.8000001
+ value: 8.530727
+ inSlope: 32.94326
+ outSlope: 32.762047
+ tangentMode: 0
+ - time: 2.0333335
+ value: 14.422266
+ inSlope: 5.5927
+ outSlope: 5.5927
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 353.2975
+ inSlope: -29.349974
+ outSlope: -29.349974
+ tangentMode: 0
+ - time: 0.033333335
+ value: 352.294
+ inSlope: -41.039425
+ outSlope: -41.039417
+ tangentMode: 0
+ - time: 0.06666668
+ value: 350.5202
+ inSlope: -42.18749
+ outSlope: -42.187504
+ tangentMode: 0
+ - time: 0.10000001
+ value: 349.6178
+ inSlope: 1.1260988
+ outSlope: 1.0848998
+ tangentMode: 0
+ - time: 0.16666669
+ value: 353.2314
+ inSlope: 80.899185
+ outSlope: 80.89921
+ tangentMode: 0
+ - time: 0.23333335
+ value: 359.16425
+ inSlope: 97.91291
+ outSlope: 98.311165
+ tangentMode: 0
+ - time: 0.26666668
+ value: 2.6255906
+ inSlope: 144.174
+ outSlope: 144.174
+ tangentMode: 0
+ - time: 0.3
+ value: 8.662268
+ inSlope: 82.38734
+ outSlope: 82.38734
+ tangentMode: 0
+ - time: 0.33333334
+ value: 8.487342
+ inSlope: -11.392051
+ outSlope: -11.350153
+ tangentMode: 0
+ - time: 0.6
+ value: 356.9121
+ inSlope: -67.1299
+ outSlope: -67.60163
+ tangentMode: 0
+ - time: 0.73333335
+ value: 343.346
+ inSlope: -92.10114
+ outSlope: -91.81274
+ tangentMode: 0
+ - time: 0.90000004
+ value: 339.4745
+ inSlope: -0.9558104
+ outSlope: -0.8067101
+ tangentMode: 0
+ - time: 1.1333334
+ value: 339.63474
+ inSlope: 4.1359587
+ outSlope: 4.13596
+ tangentMode: 0
+ - time: 1.3666668
+ value: 341.36288
+ inSlope: 0.6784057
+ outSlope: 0.6784057
+ tangentMode: 0
+ - time: 1.6000001
+ value: 339.7181
+ inSlope: -4.0865216
+ outSlope: -4.077988
+ tangentMode: 0
+ - time: 1.7333335
+ value: 336.5524
+ inSlope: -47.152637
+ outSlope: -47.11028
+ tangentMode: 0
+ - time: 1.8333335
+ value: 332.55634
+ inSlope: -18.285824
+ outSlope: -18.31148
+ tangentMode: 0
+ - time: 1.9000001
+ value: 334.6264
+ inSlope: 114.03819
+ outSlope: 114.03819
+ tangentMode: 0
+ - time: 1.9666667
+ value: 346.0635
+ inSlope: 169.15529
+ outSlope: 169.16368
+ tangentMode: 0
+ - time: 2.0000002
+ value: 351.1717
+ inSlope: 108.5827
+ outSlope: 108.58348
+ tangentMode: 0
+ - time: 2.0333335
+ value: 353.2975
+ inSlope: 63.825134
+ outSlope: 63.825134
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 344.67957
+ inSlope: 83.82018
+ outSlope: 83.82018
+ tangentMode: 0
+ - time: 0.033333335
+ value: 347.46652
+ inSlope: 117.29278
+ outSlope: 117.292755
+ tangentMode: 0
+ - time: 0.06666668
+ value: 352.49188
+ inSlope: 114.13144
+ outSlope: 114.13148
+ tangentMode: 0
+ - time: 0.10000001
+ value: 355.11832
+ inSlope: 25.079042
+ outSlope: 25.08041
+ tangentMode: 0
+ - time: 0.16666669
+ value: 351.68515
+ inSlope: -77.68294
+ outSlope: -77.68296
+ tangentMode: 0
+ - time: 0.23333335
+ value: 345.79605
+ inSlope: -111.01548
+ outSlope: -110.69001
+ tangentMode: 0
+ - time: 0.26666668
+ value: 341.64282
+ inSlope: -221.4734
+ outSlope: -221.4734
+ tangentMode: 0
+ - time: 0.3
+ value: 330.9329
+ inSlope: -164.339
+ outSlope: -164.339
+ tangentMode: 0
+ - time: 0.33333334
+ value: 330.92816
+ inSlope: 3.056946
+ outSlope: 3.202171
+ tangentMode: 0
+ - time: 0.6
+ value: 337.69553
+ inSlope: 50.64594
+ outSlope: 50.010456
+ tangentMode: 0
+ - time: 0.73333335
+ value: 348.3293
+ inSlope: 92.34353
+ outSlope: 92.86248
+ tangentMode: 0
+ - time: 0.90000004
+ value: 357.76334
+ inSlope: 32.19598
+ outSlope: 32.198956
+ tangentMode: 0
+ - time: 1.1333334
+ value: 1.0011232
+ inSlope: -6.235055
+ outSlope: -6.2350564
+ tangentMode: 0
+ - time: 1.3666668
+ value: 351.9512
+ inSlope: -9.418814
+ outSlope: -9.418814
+ tangentMode: 0
+ - time: 1.6000001
+ value: 353.40607
+ inSlope: 4.095546
+ outSlope: 4.103394
+ tangentMode: 0
+ - time: 1.7333335
+ value: 354.57666
+ inSlope: 12.892457
+ outSlope: 13.0700655
+ tangentMode: 0
+ - time: 1.8333335
+ value: 355.12985
+ inSlope: -6.4114366
+ outSlope: -6.3212647
+ tangentMode: 0
+ - time: 1.9000001
+ value: 353.39627
+ inSlope: -59.308376
+ outSlope: -59.308376
+ tangentMode: 0
+ - time: 1.9666667
+ value: 347.9303
+ inSlope: -76.59126
+ outSlope: -77.041145
+ tangentMode: 0
+ - time: 2.0000002
+ value: 345.61987
+ inSlope: -48.11982
+ outSlope: -48.120163
+ tangentMode: 0
+ - time: 2.0333335
+ value: 344.67957
+ inSlope: -27.965725
+ outSlope: -27.965725
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 24.249195
+ inSlope: 47.16808
+ outSlope: 47.16808
+ tangentMode: 0
+ - time: 0.033333335
+ value: 25.806332
+ inSlope: 67.61433
+ outSlope: 67.61431
+ tangentMode: 0
+ - time: 0.06666668
+ value: 28.739597
+ inSlope: 66.753944
+ outSlope: 66.752594
+ tangentMode: 0
+ - time: 0.10000001
+ value: 30.34243
+ inSlope: 17.455217
+ outSlope: 17.456242
+ tangentMode: 0
+ - time: 0.16666669
+ value: 28.880941
+ inSlope: -31.375832
+ outSlope: -31.37584
+ tangentMode: 0
+ - time: 0.23333335
+ value: 26.839546
+ inSlope: -35.38319
+ outSlope: -34.332966
+ tangentMode: 0
+ - time: 0.26666668
+ value: 25.631332
+ inSlope: -57.406315
+ outSlope: -57.406315
+ tangentMode: 0
+ - time: 0.3
+ value: 22.762997
+ inSlope: -63.35507
+ outSlope: -63.35507
+ tangentMode: 0
+ - time: 0.33333334
+ value: 22.073048
+ inSlope: -19.174234
+ outSlope: -19.175648
+ tangentMode: 0
+ - time: 0.6
+ value: 18.216917
+ inSlope: -20.824734
+ outSlope: -19.460865
+ tangentMode: 0
+ - time: 0.73333335
+ value: 15.286417
+ inSlope: -26.47967
+ outSlope: -27.4366
+ tangentMode: 0
+ - time: 0.90000004
+ value: 11.348258
+ inSlope: -25.327723
+ outSlope: -25.331608
+ tangentMode: 0
+ - time: 1.1333334
+ value: 7.4680114
+ inSlope: -0.73090327
+ outSlope: -0.73090345
+ tangentMode: 0
+ - time: 1.3666668
+ value: 9.654245
+ inSlope: 13.818912
+ outSlope: 13.818912
+ tangentMode: 0
+ - time: 1.6000001
+ value: 13.671205
+ inSlope: 7.461666
+ outSlope: 7.4638157
+ tangentMode: 0
+ - time: 1.7333335
+ value: 16.159664
+ inSlope: 40.765545
+ outSlope: 40.747936
+ tangentMode: 0
+ - time: 1.8333335
+ value: 20.789045
+ inSlope: 41.896866
+ outSlope: 41.846363
+ tangentMode: 0
+ - time: 1.9000001
+ value: 22.783915
+ inSlope: 17.406738
+ outSlope: 17.406738
+ tangentMode: 0
+ - time: 1.9666667
+ value: 23.6093
+ inSlope: 9.021071
+ outSlope: 10.340646
+ tangentMode: 0
+ - time: 2.0000002
+ value: 24.038044
+ inSlope: 7.729864
+ outSlope: 7.729919
+ tangentMode: 0
+ - time: 2.0333335
+ value: 24.249195
+ inSlope: 5.6136756
+ outSlope: 5.6136756
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 353.2975
+ inSlope: -17.98462
+ outSlope: -17.98462
+ tangentMode: 0
+ - time: 0.033333335
+ value: 352.68887
+ inSlope: -28.149717
+ outSlope: -28.836363
+ tangentMode: 0
+ - time: 0.13333334
+ value: 349.6178
+ inSlope: 6.9360347
+ outSlope: 6.9360347
+ tangentMode: 0
+ - time: 0.23333335
+ value: 356.05682
+ inSlope: 88.19274
+ outSlope: 88.77503
+ tangentMode: 0
+ - time: 0.26666668
+ value: 359.16425
+ inSlope: 98.311165
+ outSlope: 98.311165
+ tangentMode: 0
+ - time: 0.3
+ value: 2.6255887
+ inSlope: 144.17416
+ outSlope: 144.17416
+ tangentMode: 0
+ - time: 0.33333334
+ value: 8.662268
+ inSlope: 81.42741
+ outSlope: 81.42734
+ tangentMode: 0
+ - time: 0.3666667
+ value: 8.424434
+ inSlope: -15.015122
+ outSlope: -14.954294
+ tangentMode: 0
+ - time: 0.6
+ value: 356.9121
+ inSlope: -71.03289
+ outSlope: -71.42487
+ tangentMode: 0
+ - time: 0.73333335
+ value: 343.2826
+ inSlope: -90.837715
+ outSlope: -90.5581
+ tangentMode: 0
+ - time: 0.90000004
+ value: 339.4745
+ inSlope: -0.9558104
+ outSlope: -0.8067101
+ tangentMode: 0
+ - time: 1.1333334
+ value: 339.63474
+ inSlope: 4.1359587
+ outSlope: 4.13596
+ tangentMode: 0
+ - time: 1.3666668
+ value: 341.36288
+ inSlope: 0.6784057
+ outSlope: 0.6784057
+ tangentMode: 0
+ - time: 1.6000001
+ value: 339.7181
+ inSlope: -4.0865216
+ outSlope: -4.0750113
+ tangentMode: 0
+ - time: 1.7000002
+ value: 337.94608
+ inSlope: -43.03069
+ outSlope: -43.069843
+ tangentMode: 0
+ - time: 1.8333335
+ value: 331.9669
+ inSlope: -20.037004
+ outSlope: -20.083027
+ tangentMode: 0
+ - time: 1.9000001
+ value: 334.07413
+ inSlope: 117.41512
+ outSlope: 117.41512
+ tangentMode: 0
+ - time: 1.9666667
+ value: 345.85135
+ inSlope: 174.14308
+ outSlope: 174.15144
+ tangentMode: 0
+ - time: 2.0000002
+ value: 351.10977
+ inSlope: 111.760475
+ outSlope: 111.76128
+ tangentMode: 0
+ - time: 2.0333335
+ value: 353.2975
+ inSlope: 65.68732
+ outSlope: 65.68732
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 344.67957
+ inSlope: 50.674435
+ outSlope: 50.674435
+ tangentMode: 0
+ - time: 0.033333335
+ value: 346.36603
+ inSlope: 79.96398
+ outSlope: 79.76623
+ tangentMode: 0
+ - time: 0.13333334
+ value: 355.11832
+ inSlope: 9.436339
+ outSlope: 9.436339
+ tangentMode: 0
+ - time: 0.23333335
+ value: 349.01367
+ inSlope: -88.91967
+ outSlope: -88.467415
+ tangentMode: 0
+ - time: 0.26666668
+ value: 345.79605
+ inSlope: -110.69001
+ outSlope: -110.69001
+ tangentMode: 0
+ - time: 0.3
+ value: 341.64282
+ inSlope: -221.46791
+ outSlope: -221.46791
+ tangentMode: 0
+ - time: 0.33333334
+ value: 330.9329
+ inSlope: -164.00667
+ outSlope: -164.00652
+ tangentMode: 0
+ - time: 0.3666667
+ value: 330.951
+ inSlope: 4.7241173
+ outSlope: 4.905396
+ tangentMode: 0
+ - time: 0.6
+ value: 337.69553
+ inSlope: 53.35079
+ outSlope: 52.82021
+ tangentMode: 0
+ - time: 0.73333335
+ value: 348.38345
+ inSlope: 91.23254
+ outSlope: 91.73528
+ tangentMode: 0
+ - time: 0.90000004
+ value: 357.76334
+ inSlope: 32.19598
+ outSlope: 32.198956
+ tangentMode: 0
+ - time: 1.1333334
+ value: 1.0011232
+ inSlope: -6.235055
+ outSlope: -6.2350564
+ tangentMode: 0
+ - time: 1.3666668
+ value: 351.9512
+ inSlope: -9.418814
+ outSlope: -9.418814
+ tangentMode: 0
+ - time: 1.6000001
+ value: 353.40607
+ inSlope: 4.095546
+ outSlope: 4.1070547
+ tangentMode: 0
+ - time: 1.7000002
+ value: 354.15176
+ inSlope: 15.237118
+ outSlope: 15.127488
+ tangentMode: 0
+ - time: 1.8333335
+ value: 355.40015
+ inSlope: -6.1358647
+ outSlope: -5.938116
+ tangentMode: 0
+ - time: 1.9000001
+ value: 353.6306
+ inSlope: -60.905514
+ outSlope: -60.905514
+ tangentMode: 0
+ - time: 1.9666667
+ value: 348.01538
+ inSlope: -78.61275
+ outSlope: -79.09009
+ tangentMode: 0
+ - time: 2.0000002
+ value: 345.6437
+ inSlope: -49.353027
+ outSlope: -49.35338
+ tangentMode: 0
+ - time: 2.0333335
+ value: 344.67957
+ inSlope: -28.663357
+ outSlope: -28.663357
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 24.249195
+ inSlope: 28.266104
+ outSlope: 28.266104
+ tangentMode: 0
+ - time: 0.033333335
+ value: 25.185843
+ inSlope: 45.48288
+ outSlope: 45.066658
+ tangentMode: 0
+ - time: 0.13333334
+ value: 30.34243
+ inSlope: 8.133773
+ outSlope: 8.133773
+ tangentMode: 0
+ - time: 0.23333335
+ value: 27.890303
+ inSlope: -32.514435
+ outSlope: -31.027967
+ tangentMode: 0
+ - time: 0.26666668
+ value: 26.839546
+ inSlope: -34.332966
+ outSlope: -34.332966
+ tangentMode: 0
+ - time: 0.3
+ value: 25.631332
+ inSlope: -57.406315
+ outSlope: -57.406315
+ tangentMode: 0
+ - time: 0.33333334
+ value: 22.762997
+ inSlope: -64.46469
+ outSlope: -64.46463
+ tangentMode: 0
+ - time: 0.3666667
+ value: 21.997902
+ inSlope: -21.226255
+ outSlope: -21.240595
+ tangentMode: 0
+ - time: 0.6
+ value: 18.216917
+ inSlope: -21.77488
+ outSlope: -20.634686
+ tangentMode: 0
+ - time: 0.73333335
+ value: 15.270422
+ inSlope: -26.034637
+ outSlope: -26.966866
+ tangentMode: 0
+ - time: 0.90000004
+ value: 11.348258
+ inSlope: -25.327723
+ outSlope: -25.331608
+ tangentMode: 0
+ - time: 1.1333334
+ value: 7.4680114
+ inSlope: -0.73090327
+ outSlope: -0.73090345
+ tangentMode: 0
+ - time: 1.3666668
+ value: 9.654245
+ inSlope: 13.818912
+ outSlope: 13.818912
+ tangentMode: 0
+ - time: 1.6000001
+ value: 13.671205
+ inSlope: 7.461666
+ outSlope: 7.464264
+ tangentMode: 0
+ - time: 1.7000002
+ value: 14.919273
+ inSlope: 30.349953
+ outSlope: 30.333426
+ tangentMode: 0
+ - time: 1.8333335
+ value: 20.758442
+ inSlope: 42.14862
+ outSlope: 42.036995
+ tangentMode: 0
+ - time: 1.9000001
+ value: 22.757103
+ inSlope: 17.270868
+ outSlope: 17.270868
+ tangentMode: 0
+ - time: 1.9666667
+ value: 23.582586
+ inSlope: 9.158229
+ outSlope: 10.553161
+ tangentMode: 0
+ - time: 2.0000002
+ value: 24.02792
+ inSlope: 8.024433
+ outSlope: 8.023117
+ tangentMode: 0
+ - time: 2.0333335
+ value: 24.249195
+ inSlope: 5.877348
+ outSlope: 5.877348
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 353.2975
+ inSlope: -12.128904
+ outSlope: -12.128904
+ tangentMode: 0
+ - time: 0.06666668
+ value: 351.943
+ inSlope: -31.168207
+ outSlope: -31.56555
+ tangentMode: 0
+ - time: 0.16666669
+ value: 349.6178
+ inSlope: 9.7924795
+ outSlope: 9.792481
+ tangentMode: 0
+ - time: 0.26666668
+ value: 356.05682
+ inSlope: 88.19276
+ outSlope: 88.77503
+ tangentMode: 0
+ - time: 0.3
+ value: 359.16425
+ inSlope: 98.311165
+ outSlope: 98.311165
+ tangentMode: 0
+ - time: 0.33333334
+ value: 2.6255887
+ inSlope: 144.17416
+ outSlope: 144.17404
+ tangentMode: 0
+ - time: 0.3666667
+ value: 8.662271
+ inSlope: 76.05888
+ outSlope: 76.05758
+ tangentMode: 0
+ - time: 0.40000004
+ value: 8.069491
+ inSlope: -33.49208
+ outSlope: -33.30429
+ tangentMode: 0
+ - time: 0.56666666
+ value: 357.57852
+ inSlope: -35.584175
+ outSlope: -35.65335
+ tangentMode: 0
+ - time: 0.6
+ value: 356.9121
+ inSlope: -7.8771906
+ outSlope: -7.877205
+ tangentMode: 0
+ - time: 0.6333333
+ value: 357.0657
+ inSlope: 6.3253846
+ outSlope: 6.325373
+ tangentMode: 0
+ - time: 0.6666667
+ value: 357.34973
+ inSlope: 7.3168883
+ outSlope: 7.3169017
+ tangentMode: 0
+ - time: 0.7
+ value: 357.50198
+ inSlope: -55.516716
+ outSlope: -55.516617
+ tangentMode: 0
+ - time: 0.73333335
+ value: 353.70245
+ inSlope: -175.44601
+ outSlope: -175.44601
+ tangentMode: 0
+ - time: 0.7666667
+ value: 345.8694
+ inSlope: -204.2906
+ outSlope: -204.29097
+ tangentMode: 0
+ - time: 0.8
+ value: 339.6437
+ inSlope: -131.35541
+ outSlope: -131.35518
+ tangentMode: 0
+ - time: 0.8333334
+ value: 336.8015
+ inSlope: -68.04926
+ outSlope: -66.31533
+ tangentMode: 0
+ - time: 0.93333334
+ value: 333.81558
+ inSlope: 0.80841094
+ outSlope: 0.8805535
+ tangentMode: 0
+ - time: 1.1000001
+ value: 338.79462
+ inSlope: 30.457373
+ outSlope: 30.368563
+ tangentMode: 0
+ - time: 1.3333335
+ value: 341.0241
+ inSlope: 8.685476
+ outSlope: 8.226021
+ tangentMode: 0
+ - time: 1.4000001
+ value: 342.2498
+ inSlope: 33.158142
+ outSlope: 33.158085
+ tangentMode: 0
+ - time: 1.4666668
+ value: 344.12817
+ inSlope: 3.2849095
+ outSlope: 3.3618166
+ tangentMode: 0
+ - time: 1.6000001
+ value: 340.11273
+ inSlope: -22.701876
+ outSlope: -23.04934
+ tangentMode: 0
+ - time: 1.6666667
+ value: 338.25735
+ inSlope: -58.899136
+ outSlope: -58.680573
+ tangentMode: 0
+ - time: 1.7000002
+ value: 335.71307
+ inSlope: -58.177948
+ outSlope: -58.71832
+ tangentMode: 0
+ - time: 1.8000001
+ value: 334.74716
+ inSlope: 6.6586366
+ outSlope: 6.658629
+ tangentMode: 0
+ - time: 1.9000001
+ value: 337.18384
+ inSlope: 99.00144
+ outSlope: 99.00132
+ tangentMode: 0
+ - time: 2.0000002
+ value: 351.45908
+ inSlope: 93.77641
+ outSlope: 93.78763
+ tangentMode: 0
+ - time: 2.0333335
+ value: 353.2975
+ inSlope: 55.178886
+ outSlope: 55.178886
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 344.67957
+ inSlope: 33.76373
+ outSlope: 33.76373
+ tangentMode: 0
+ - time: 0.06666668
+ value: 348.4496
+ inSlope: 85.82243
+ outSlope: 85.697014
+ tangentMode: 0
+ - time: 0.16666669
+ value: 355.11832
+ inSlope: 1.5225219
+ outSlope: 1.5225221
+ tangentMode: 0
+ - time: 0.26666668
+ value: 349.01367
+ inSlope: -88.919685
+ outSlope: -88.467415
+ tangentMode: 0
+ - time: 0.3
+ value: 345.79605
+ inSlope: -110.69001
+ outSlope: -110.69001
+ tangentMode: 0
+ - time: 0.33333334
+ value: 341.64282
+ inSlope: -221.46791
+ outSlope: -221.46771
+ tangentMode: 0
+ - time: 0.3666667
+ value: 330.9329
+ inSlope: -160.8809
+ outSlope: -160.88106
+ tangentMode: 0
+ - time: 0.40000004
+ value: 331.161
+ inSlope: 16.218569
+ outSlope: 16.570683
+ tangentMode: 0
+ - time: 0.56666666
+ value: 337.278
+ inSlope: 22.441778
+ outSlope: 22.329693
+ tangentMode: 0
+ - time: 0.6
+ value: 337.6955
+ inSlope: -70.05426
+ outSlope: -70.05439
+ tangentMode: 0
+ - time: 0.6333333
+ value: 332.60727
+ inSlope: -217.88107
+ outSlope: -217.88068
+ tangentMode: 0
+ - time: 0.6666667
+ value: 323.16217
+ inSlope: -217.57855
+ outSlope: -217.57895
+ tangentMode: 0
+ - time: 0.7
+ value: 318.07874
+ inSlope: 30.459623
+ outSlope: 30.45957
+ tangentMode: 0
+ - time: 0.73333335
+ value: 325.2463
+ inSlope: 333.1052
+ outSlope: 333.1052
+ tangentMode: 0
+ - time: 0.7666667
+ value: 340.46927
+ inSlope: 426.96405
+ outSlope: 426.9648
+ tangentMode: 0
+ - time: 0.8
+ value: 353.482
+ inSlope: 315.0827
+ outSlope: 315.08762
+ tangentMode: 0
+ - time: 0.8333334
+ value: 1.1286271
+ inSlope: 210.67543
+ outSlope: 212.23412
+ tangentMode: 0
+ - time: 0.93333334
+ value: 13.525395
+ inSlope: 19.259356
+ outSlope: 19.25289
+ tangentMode: 0
+ - time: 1.1000001
+ value: 3.1276264
+ inSlope: -72.56577
+ outSlope: -72.40698
+ tangentMode: 0
+ - time: 1.3333335
+ value: 353.7584
+ inSlope: -48.039677
+ outSlope: -48.212173
+ tangentMode: 0
+ - time: 1.4000001
+ value: 347.9616
+ inSlope: -136.38716
+ outSlope: -136.38692
+ tangentMode: 0
+ - time: 1.4666668
+ value: 340.31735
+ inSlope: -17.293839
+ outSlope: -17.27257
+ tangentMode: 0
+ - time: 1.6000001
+ value: 352.07837
+ inSlope: 71.49354
+ outSlope: 71.27387
+ tangentMode: 0
+ - time: 1.6666667
+ value: 356.19614
+ inSlope: 114.16591
+ outSlope: 114.02955
+ tangentMode: 0
+ - time: 1.7000002
+ value: 1.089683
+ inSlope: 108.57008
+ outSlope: 108.6826
+ tangentMode: 0
+ - time: 1.8000001
+ value: 1.0919529
+ inSlope: -53.921055
+ outSlope: -53.92099
+ tangentMode: 0
+ - time: 1.9000001
+ value: 353.08203
+ inSlope: -93.25193
+ outSlope: -93.25182
+ tangentMode: 0
+ - time: 2.0000002
+ value: 345.38013
+ inSlope: -38.00898
+ outSlope: -38.210487
+ tangentMode: 0
+ - time: 2.0333335
+ value: 344.67957
+ inSlope: -20.86855
+ outSlope: -20.86855
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 24.249195
+ inSlope: 18.722588
+ outSlope: 18.722588
+ tangentMode: 0
+ - time: 0.06666668
+ value: 26.367048
+ inSlope: 49.076004
+ outSlope: 48.82467
+ tangentMode: 0
+ - time: 0.16666669
+ value: 30.34243
+ inSlope: 3.3327482
+ outSlope: 3.3327487
+ tangentMode: 0
+ - time: 0.26666668
+ value: 27.890303
+ inSlope: -32.514442
+ outSlope: -31.027967
+ tangentMode: 0
+ - time: 0.3
+ value: 26.839546
+ inSlope: -34.332966
+ outSlope: -34.332966
+ tangentMode: 0
+ - time: 0.33333334
+ value: 25.631332
+ inSlope: -57.406315
+ outSlope: -57.40626
+ tangentMode: 0
+ - time: 0.3666667
+ value: 22.762997
+ inSlope: -67.35678
+ outSlope: -67.35684
+ tangentMode: 0
+ - time: 0.40000004
+ value: 21.796783
+ inSlope: -28.910524
+ outSlope: -29.074501
+ tangentMode: 0
+ - time: 0.56666666
+ value: 18.331192
+ inSlope: -7.3207417
+ outSlope: -7.006525
+ tangentMode: 0
+ - time: 0.6
+ value: 18.216915
+ inSlope: 3.1520436
+ outSlope: 3.1520493
+ tangentMode: 0
+ - time: 0.6333333
+ value: 18.533598
+ inSlope: 13.660311
+ outSlope: 13.660286
+ tangentMode: 0
+ - time: 0.6666667
+ value: 19.121864
+ inSlope: 13.130712
+ outSlope: 13.130734
+ tangentMode: 0
+ - time: 0.7
+ value: 19.438704
+ inSlope: -10.489035
+ outSlope: -10.489017
+ tangentMode: 0
+ - time: 0.73333335
+ value: 18.198412
+ inSlope: -47.76182
+ outSlope: -47.76182
+ tangentMode: 0
+ - time: 0.7666667
+ value: 15.797435
+ inSlope: -79.6751
+ outSlope: -79.67525
+ tangentMode: 0
+ - time: 0.8
+ value: 13.805695
+ inSlope: -62.648224
+ outSlope: -62.64811
+ tangentMode: 0
+ - time: 0.8333334
+ value: 12.481312
+ inSlope: -41.212772
+ outSlope: -44.409615
+ tangentMode: 0
+ - time: 0.93333334
+ value: 9.42374
+ inSlope: -21.150635
+ outSlope: -21.144064
+ tangentMode: 0
+ - time: 1.1000001
+ value: 7.536868
+ inSlope: -4.7403736
+ outSlope: -5.1783247
+ tangentMode: 0
+ - time: 1.3333335
+ value: 8.832969
+ inSlope: 20.914547
+ outSlope: 21.16076
+ tangentMode: 0
+ - time: 1.4000001
+ value: 12.380315
+ inSlope: 100.689575
+ outSlope: 100.6894
+ tangentMode: 0
+ - time: 1.4666668
+ value: 18.47407
+ inSlope: 23.495188
+ outSlope: 23.476883
+ tangentMode: 0
+ - time: 1.6000001
+ value: 14.298285
+ inSlope: -26.107765
+ outSlope: -25.73713
+ tangentMode: 0
+ - time: 1.6666667
+ value: 14.21729
+ inSlope: 21.277576
+ outSlope: 21.932344
+ tangentMode: 0
+ - time: 1.7000002
+ value: 15.237738
+ inSlope: 31.550764
+ outSlope: 30.325327
+ tangentMode: 0
+ - time: 1.8000001
+ value: 19.31504
+ inSlope: 46.357544
+ outSlope: 46.357487
+ tangentMode: 0
+ - time: 1.9000001
+ value: 23.003134
+ inSlope: 16.999794
+ outSlope: 16.999773
+ tangentMode: 0
+ - time: 2.0000002
+ value: 24.101625
+ inSlope: 4.9181485
+ outSlope: 5.6303267
+ tangentMode: 0
+ - time: 2.0333335
+ value: 24.249195
+ inSlope: 3.9629784
+ outSlope: 3.9629784
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1.3577362
+ inSlope: -2.2873554
+ outSlope: -2.2873554
+ tangentMode: 0
+ - time: 0.033333335
+ value: 1.284256
+ inSlope: -2.6875303
+ outSlope: -2.6875298
+ tangentMode: 0
+ - time: 0.06666668
+ value: 1.1880587
+ inSlope: -1.0788808
+ outSlope: -0.8580441
+ tangentMode: 0
+ - time: 0.13333334
+ value: 1.2716931
+ inSlope: 2.3547275
+ outSlope: 2.354727
+ tangentMode: 0
+ - time: 0.20000002
+ value: 1.4001682
+ inSlope: 0.44808978
+ outSlope: 0.44808987
+ tangentMode: 0
+ - time: 0.26666668
+ value: 1.357442
+ inSlope: -1.3137729
+ outSlope: -1.3510069
+ tangentMode: 0
+ - time: 0.3666667
+ value: 1.2841917
+ inSlope: -0.19948836
+ outSlope: -0.1785015
+ tangentMode: 0
+ - time: 0.73333335
+ value: 1.6612251
+ inSlope: 0.39737466
+ outSlope: 0.3968164
+ tangentMode: 0
+ - time: 0.7666667
+ value: 1.6678354
+ inSlope: 0.47068438
+ outSlope: 0.4706852
+ tangentMode: 0
+ - time: 0.8
+ value: 1.4992746
+ inSlope: -15.2331915
+ outSlope: -15.233164
+ tangentMode: 0
+ - time: 0.8333334
+ value: 1.0198807
+ inSlope: 4.2133927
+ outSlope: 4.2134004
+ tangentMode: 0
+ - time: 0.8666667
+ value: 1.7097627
+ inSlope: 12.896578
+ outSlope: 12.896554
+ tangentMode: 0
+ - time: 0.90000004
+ value: 1.7174784
+ inSlope: 0.058139514
+ outSlope: 0.0572589
+ tangentMode: 0
+ - time: 1.3000001
+ value: 1.5211297
+ inSlope: 0.17661004
+ outSlope: 0.17581148
+ tangentMode: 0
+ - time: 1.6666667
+ value: 1.6396166
+ inSlope: -0.020588636
+ outSlope: 0.020180935
+ tangentMode: 0
+ - time: 1.7666668
+ value: 1.6389452
+ inSlope: -0.41332117
+ outSlope: -0.41332117
+ tangentMode: 0
+ - time: 1.8666668
+ value: 1.428165
+ inSlope: -3.2927935
+ outSlope: -3.2816265
+ tangentMode: 0
+ - time: 1.9333335
+ value: 1.2692841
+ inSlope: -0.50935644
+ outSlope: -0.50935644
+ tangentMode: 0
+ - time: 2.0000002
+ value: 1.3290193
+ inSlope: 1.3145066
+ outSlope: 1.2831914
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1.3577362
+ inSlope: 0.9041735
+ outSlope: 0.9041735
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 183.84447
+ inSlope: -3.6570737
+ outSlope: -3.6570737
+ tangentMode: 0
+ - time: 0.033333335
+ value: 183.72089
+ inSlope: -5.7156367
+ outSlope: -5.715636
+ tangentMode: 0
+ - time: 0.06666668
+ value: 183.46075
+ inSlope: -7.2125225
+ outSlope: -7.231751
+ tangentMode: 0
+ - time: 0.13333334
+ value: 183.1871
+ inSlope: 0.15792848
+ outSlope: 0.15792844
+ tangentMode: 0
+ - time: 0.20000002
+ value: 183.44316
+ inSlope: 6.702346
+ outSlope: 6.7023473
+ tangentMode: 0
+ - time: 0.26666668
+ value: 183.84485
+ inSlope: 2.81662
+ outSlope: 2.7960198
+ tangentMode: 0
+ - time: 0.3666667
+ value: 183.89624
+ inSlope: -0.38635245
+ outSlope: -0.39450908
+ tangentMode: 0
+ - time: 0.73333335
+ value: 183.39682
+ inSlope: -0.3822743
+ outSlope: -0.38177457
+ tangentMode: 0
+ - time: 0.7666667
+ value: 183.39026
+ inSlope: -15.548388
+ outSlope: -15.548416
+ tangentMode: 0
+ - time: 0.8
+ value: 182.37787
+ inSlope: -12.837537
+ outSlope: -12.837514
+ tangentMode: 0
+ - time: 0.8333334
+ value: 182.5862
+ inSlope: 18.148026
+ outSlope: 18.148058
+ tangentMode: 0
+ - time: 0.8666667
+ value: 183.31555
+ inSlope: 7.882698
+ outSlope: 7.8826838
+ tangentMode: 0
+ - time: 0.90000004
+ value: 183.31985
+ inSlope: -0.019226057
+ outSlope: -0.016250608
+ tangentMode: 0
+ - time: 1.3000001
+ value: 183.03214
+ inSlope: -0.10597228
+ outSlope: -0.107616074
+ tangentMode: 0
+ - time: 1.6666667
+ value: 183.46233
+ inSlope: 1.3666742
+ outSlope: 1.3682553
+ tangentMode: 0
+ - time: 1.7666668
+ value: 183.55429
+ inSlope: -0.31951895
+ outSlope: -0.31951895
+ tangentMode: 0
+ - time: 1.8666668
+ value: 183.34584
+ inSlope: -0.61019886
+ outSlope: -0.68595827
+ tangentMode: 0
+ - time: 1.9333335
+ value: 183.4735
+ inSlope: 4.2249265
+ outSlope: 4.2249265
+ tangentMode: 0
+ - time: 2.0000002
+ value: 183.78386
+ inSlope: 3.043897
+ outSlope: 3.0610685
+ tangentMode: 0
+ - time: 2.0333335
+ value: 183.84447
+ inSlope: 1.7976396
+ outSlope: 1.7976396
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 226.81422
+ inSlope: 115.90438
+ outSlope: 115.90438
+ tangentMode: 0
+ - time: 0.033333335
+ value: 230.67787
+ inSlope: 198.70284
+ outSlope: 198.70279
+ tangentMode: 0
+ - time: 0.06666668
+ value: 240.06778
+ inSlope: 314.5632
+ outSlope: 314.3642
+ tangentMode: 0
+ - time: 0.13333334
+ value: 262.2042
+ inSlope: 304.96127
+ outSlope: 304.96118
+ tangentMode: 0
+ - time: 0.20000002
+ value: 282.58847
+ inSlope: 295.59534
+ outSlope: 295.59543
+ tangentMode: 0
+ - time: 0.26666668
+ value: 297.81723
+ inSlope: 141.57396
+ outSlope: 141.50662
+ tangentMode: 0
+ - time: 0.3666667
+ value: 306.67908
+ inSlope: 67.64555
+ outSlope: 67.530464
+ tangentMode: 0
+ - time: 0.73333335
+ value: 314.8591
+ inSlope: 0.46517116
+ outSlope: 0.46417198
+ tangentMode: 0
+ - time: 0.7666667
+ value: 314.86285
+ inSlope: -388.23453
+ outSlope: -388.23523
+ tangentMode: 0
+ - time: 0.8
+ value: 288.854
+ inSlope: -1097.3375
+ outSlope: -1097.3354
+ tangentMode: 0
+ - time: 0.8333334
+ value: 240.54332
+ inSlope: -1074.9852
+ outSlope: -1074.9844
+ tangentMode: 0
+ - time: 0.8666667
+ value: 214.54195
+ inSlope: -381.34268
+ outSlope: -381.34476
+ tangentMode: 0
+ - time: 0.90000004
+ value: 214.77689
+ inSlope: 13.730152
+ outSlope: 13.73062
+ tangentMode: 0
+ - time: 1.3000001
+ value: 242.16875
+ inSlope: 96.80797
+ outSlope: 96.87332
+ tangentMode: 0
+ - time: 1.6666667
+ value: 271.05862
+ inSlope: 38.355766
+ outSlope: 38.377068
+ tangentMode: 0
+ - time: 1.7666668
+ value: 273.06738
+ inSlope: -26.291193
+ outSlope: -26.291193
+ tangentMode: 0
+ - time: 1.8666668
+ value: 258.42712
+ inSlope: -238.0517
+ outSlope: -238.23833
+ tangentMode: 0
+ - time: 1.9333335
+ value: 241.4421
+ inSlope: -238.03851
+ outSlope: -238.03851
+ tangentMode: 0
+ - time: 2.0000002
+ value: 228.8001
+ inSlope: -108.2585
+ outSlope: -108.28548
+ tangentMode: 0
+ - time: 2.0333335
+ value: 226.81422
+ inSlope: -59.5693
+ outSlope: -59.5693
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.00009722386
+ inSlope: -0.0000083672385
+ outSlope: -0.0000083672385
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.00009722386
+ inSlope: -0.0000083672385
+ outSlope: -0.0000083672385
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.000072014016
+ inSlope: 0.000006314649
+ outSlope: 0.000006314649
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.000072014016
+ inSlope: 0.000006314649
+ outSlope: 0.000006314649
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 343.2642
+ inSlope: -0.00004502593
+ outSlope: -0.00004502593
+ tangentMode: 0
+ - time: 2.0333335
+ value: 343.2642
+ inSlope: -0.00004502593
+ outSlope: -0.00004502593
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.00009722386
+ inSlope: -0.0000083672385
+ outSlope: -0.0000083672385
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.00009722386
+ inSlope: -0.0000083672385
+ outSlope: -0.0000083672385
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.000072014016
+ inSlope: 0.000006314649
+ outSlope: 0.000006314649
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.000072014016
+ inSlope: 0.000006314649
+ outSlope: 0.000006314649
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 343.2642
+ inSlope: -0.00004502593
+ outSlope: -0.00004502593
+ tangentMode: 0
+ - time: 2.0333335
+ value: 343.2642
+ inSlope: -0.00004502593
+ outSlope: -0.00004502593
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftThumb1/LeftThumb2/LeftThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 3.8491306
+ inSlope: -4.3583107
+ outSlope: -4.3583107
+ tangentMode: 0
+ - time: 0.033333335
+ value: 3.704591
+ inSlope: -6.149704
+ outSlope: -6.1497025
+ tangentMode: 0
+ - time: 0.06666668
+ value: 3.4442194
+ inSlope: -5.9990273
+ outSlope: -5.8490934
+ tangentMode: 0
+ - time: 0.13333334
+ value: 3.3182123
+ inSlope: 2.088529
+ outSlope: 2.0885286
+ tangentMode: 0
+ - time: 0.20000002
+ value: 3.6156638
+ inSlope: 5.360544
+ outSlope: 5.360545
+ tangentMode: 0
+ - time: 0.26666668
+ value: 3.8492503
+ inSlope: -0.027787687
+ outSlope: -0.07986543
+ tangentMode: 0
+ - time: 0.3666667
+ value: 3.717619
+ inSlope: -1.3096043
+ outSlope: -1.3332003
+ tangentMode: 0
+ - time: 0.73333335
+ value: 3.487298
+ inSlope: -0.04801057
+ outSlope: -0.04746433
+ tangentMode: 0
+ - time: 0.7666667
+ value: 3.4864485
+ inSlope: -10.792535
+ outSlope: -10.792554
+ tangentMode: 0
+ - time: 0.8
+ value: 2.649156
+ inSlope: -19.988398
+ outSlope: -19.988363
+ tangentMode: 0
+ - time: 0.8333334
+ value: 2.4419007
+ inSlope: 15.465432
+ outSlope: 15.46546
+ tangentMode: 0
+ - time: 0.8666667
+ value: 3.4306912
+ inSlope: 15.112009
+ outSlope: 15.111982
+ tangentMode: 0
+ - time: 0.90000004
+ value: 3.4844701
+ inSlope: 1.2946905
+ outSlope: 1.3028829
+ tangentMode: 0
+ - time: 1.3000001
+ value: 3.3581219
+ inSlope: 0.15141962
+ outSlope: 0.14970432
+ tangentMode: 0
+ - time: 1.6666667
+ value: 3.7886984
+ inSlope: 1.1295767
+ outSlope: 1.1608241
+ tangentMode: 0
+ - time: 1.7666668
+ value: 3.8726418
+ inSlope: -0.32613507
+ outSlope: -0.32613507
+ tangentMode: 0
+ - time: 1.8666668
+ value: 3.5865047
+ inSlope: -2.861101
+ outSlope: -2.8847134
+ tangentMode: 0
+ - time: 1.9333335
+ value: 3.5523574
+ inSlope: 2.2622912
+ outSlope: 2.2622912
+ tangentMode: 0
+ - time: 2.0000002
+ value: 3.7909696
+ inSlope: 2.809075
+ outSlope: 2.802911
+ tangentMode: 0
+ - time: 2.0333335
+ value: 3.8491306
+ inSlope: 1.752836
+ outSlope: 1.752836
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1.3436794
+ inSlope: -0.93023294
+ outSlope: -0.93023294
+ tangentMode: 0
+ - time: 0.033333335
+ value: 1.3094468
+ inSlope: -2.173791
+ outSlope: -2.1737902
+ tangentMode: 0
+ - time: 0.06666668
+ value: 1.1898239
+ inSlope: -4.609171
+ outSlope: -4.7840633
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.9140131
+ inSlope: -1.7143903
+ outSlope: -1.7143899
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.9987054
+ inSlope: 4.4926133
+ outSlope: 4.4926147
+ tangentMode: 0
+ - time: 0.26666668
+ value: 1.3436502
+ inSlope: 3.7803538
+ outSlope: 3.7777116
+ tangentMode: 0
+ - time: 0.3666667
+ value: 1.5192211
+ inSlope: 0.5522131
+ outSlope: 0.4816916
+ tangentMode: 0
+ - time: 0.73333335
+ value: 1.0767554
+ inSlope: -0.43498898
+ outSlope: -0.4356655
+ tangentMode: 0
+ - time: 0.7666667
+ value: 1.069461
+ inSlope: -10.867111
+ outSlope: -10.86713
+ tangentMode: 0
+ - time: 0.8
+ value: 0.50279766
+ inSlope: 2.1761909
+ outSlope: 2.176187
+ tangentMode: 0
+ - time: 0.8333334
+ value: 0.99679446
+ inSlope: 9.91526
+ outSlope: 9.9152775
+ tangentMode: 0
+ - time: 0.8666667
+ value: 1.0157845
+ inSlope: -3.8952794
+ outSlope: -3.8952723
+ tangentMode: 0
+ - time: 0.90000004
+ value: 0.9971478
+ inSlope: -0.5178376
+ outSlope: -0.49851355
+ tangentMode: 0
+ - time: 1.3000001
+ value: 0.87322277
+ inSlope: -0.20548178
+ outSlope: -0.2071831
+ tangentMode: 0
+ - time: 1.6666667
+ value: 1.0768859
+ inSlope: 1.0206302
+ outSlope: 0.98657346
+ tangentMode: 0
+ - time: 1.7666668
+ value: 1.151157
+ inSlope: 0.079547144
+ outSlope: 0.079547144
+ tangentMode: 0
+ - time: 1.8666668
+ value: 1.1012276
+ inSlope: 0.88528967
+ outSlope: 0.8191299
+ tangentMode: 0
+ - time: 1.9333335
+ value: 1.2238624
+ inSlope: 2.1484797
+ outSlope: 2.1484797
+ tangentMode: 0
+ - time: 2.0000002
+ value: 1.3325397
+ inSlope: 0.622567
+ outSlope: 0.65187395
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1.3436794
+ inSlope: 0.29199627
+ outSlope: 0.29199627
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 175.49216
+ inSlope: 115.95794
+ outSlope: 115.95794
+ tangentMode: 0
+ - time: 0.033333335
+ value: 179.35747
+ inSlope: 198.73854
+ outSlope: 198.7385
+ tangentMode: 0
+ - time: 0.06666668
+ value: 188.74779
+ inSlope: 314.5069
+ outSlope: 314.29895
+ tangentMode: 0
+ - time: 0.13333334
+ value: 210.87682
+ inSlope: 304.86307
+ outSlope: 304.86438
+ tangentMode: 0
+ - time: 0.20000002
+ value: 231.25877
+ inSlope: 295.67294
+ outSlope: 295.673
+ tangentMode: 0
+ - time: 0.26666668
+ value: 246.49521
+ inSlope: 141.6591
+ outSlope: 141.59268
+ tangentMode: 0
+ - time: 0.3666667
+ value: 255.35852
+ inSlope: 67.62358
+ outSlope: 67.503746
+ tangentMode: 0
+ - time: 0.73333335
+ value: 263.51526
+ inSlope: 0.45043948
+ outSlope: 0.45318565
+ tangentMode: 0
+ - time: 0.7666667
+ value: 263.51886
+ inSlope: -388.51468
+ outSlope: -388.51263
+ tangentMode: 0
+ - time: 0.8
+ value: 237.50233
+ inSlope: -1096.99
+ outSlope: -1096.9908
+ tangentMode: 0
+ - time: 0.8333334
+ value: 189.20967
+ inSlope: -1074.815
+ outSlope: -1074.8141
+ tangentMode: 0
+ - time: 0.8666667
+ value: 163.1957
+ inSlope: -381.71622
+ outSlope: -381.71555
+ tangentMode: 0
+ - time: 0.90000004
+ value: 163.43336
+ inSlope: 13.932026
+ outSlope: 13.93238
+ tangentMode: 0
+ - time: 1.3000001
+ value: 191.29327
+ inSlope: 98.441154
+ outSlope: 98.50941
+ tangentMode: 0
+ - time: 1.6666667
+ value: 220.67897
+ inSlope: 39.04179
+ outSlope: 39.061424
+ tangentMode: 0
+ - time: 1.7666668
+ value: 222.72452
+ inSlope: -26.853327
+ outSlope: -26.853327
+ tangentMode: 0
+ - time: 1.8666668
+ value: 207.77443
+ inSlope: -243.03354
+ outSlope: -243.23505
+ tangentMode: 0
+ - time: 1.9333335
+ value: 190.43225
+ inSlope: -243.05034
+ outSlope: -243.05034
+ tangentMode: 0
+ - time: 2.0000002
+ value: 177.52103
+ inSlope: -110.58966
+ outSlope: -110.6187
+ tangentMode: 0
+ - time: 2.0333335
+ value: 175.49216
+ inSlope: -60.86157
+ outSlope: -60.86157
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.000060613875
+ inSlope: -0.00000062156295
+ outSlope: -0.00000062156295
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.000060613875
+ inSlope: -0.00000062156295
+ outSlope: -0.00000062156295
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.000030111596
+ inSlope: 0.00000059898986
+ outSlope: 0.00000059898986
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.000030111596
+ inSlope: 0.00000059898986
+ outSlope: 0.00000059898986
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 37.165577
+ inSlope: -0.000005628241
+ outSlope: -0.000005628241
+ tangentMode: 0
+ - time: 2.0333335
+ value: 37.165577
+ inSlope: -0.000005628241
+ outSlope: -0.000005628241
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.000060613875
+ inSlope: -0.00000062156295
+ outSlope: -0.00000062156295
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.000060613875
+ inSlope: -0.00000062156295
+ outSlope: -0.00000062156295
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.000030111596
+ inSlope: 0.00000059898986
+ outSlope: 0.00000059898986
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.000030111596
+ inSlope: 0.00000059898986
+ outSlope: 0.00000059898986
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 37.165577
+ inSlope: -0.000005628241
+ outSlope: -0.000005628241
+ tangentMode: 0
+ - time: 2.0333335
+ value: 37.165577
+ inSlope: -0.000005628241
+ outSlope: -0.000005628241
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 3.8491306
+ inSlope: -4.359684
+ outSlope: -4.359684
+ tangentMode: 0
+ - time: 0.033333335
+ value: 3.7045515
+ inSlope: -6.1530085
+ outSlope: -6.153007
+ tangentMode: 0
+ - time: 0.06666668
+ value: 3.4440076
+ inSlope: -6.0060654
+ outSlope: -5.8567324
+ tangentMode: 0
+ - time: 0.13333334
+ value: 3.3174505
+ inSlope: 2.0829823
+ outSlope: 2.0829818
+ tangentMode: 0
+ - time: 0.20000002
+ value: 3.6147873
+ inSlope: 5.365651
+ outSlope: 5.365652
+ tangentMode: 0
+ - time: 0.26666668
+ value: 3.8492503
+ inSlope: -0.007874967
+ outSlope: -0.059266075
+ tangentMode: 0
+ - time: 0.3666667
+ value: 3.7194672
+ inSlope: -1.2968441
+ outSlope: -1.3213557
+ tangentMode: 0
+ - time: 0.73333335
+ value: 3.4904187
+ inSlope: -0.04770041
+ outSlope: -0.048172433
+ tangentMode: 0
+ - time: 0.7666667
+ value: 3.489576
+ inSlope: -10.800732
+ outSlope: -10.800751
+ tangentMode: 0
+ - time: 0.8
+ value: 2.6514115
+ inSlope: -20.027967
+ outSlope: -20.027931
+ tangentMode: 0
+ - time: 0.8333334
+ value: 2.4432025
+ inSlope: 15.491096
+ outSlope: 15.491123
+ tangentMode: 0
+ - time: 0.8666667
+ value: 3.4340575
+ inSlope: 15.160611
+ outSlope: 15.1605835
+ tangentMode: 0
+ - time: 0.90000004
+ value: 3.4888632
+ inSlope: 1.3264049
+ outSlope: 1.3336782
+ tangentMode: 0
+ - time: 1.3000001
+ value: 3.3751478
+ inSlope: 0.19664524
+ outSlope: 0.19392273
+ tangentMode: 0
+ - time: 1.6666667
+ value: 3.820259
+ inSlope: 1.1662362
+ outSlope: 1.1954496
+ tangentMode: 0
+ - time: 1.7666668
+ value: 3.9063275
+ inSlope: -0.34518948
+ outSlope: -0.34518948
+ tangentMode: 0
+ - time: 1.8666668
+ value: 3.6088157
+ inSlope: -3.0099528
+ outSlope: -3.0406997
+ tangentMode: 0
+ - time: 1.9333335
+ value: 3.5629318
+ inSlope: 2.1105428
+ outSlope: 2.1105428
+ tangentMode: 0
+ - time: 2.0000002
+ value: 3.792411
+ inSlope: 2.7373421
+ outSlope: 2.729483
+ tangentMode: 0
+ - time: 2.0333335
+ value: 3.8491306
+ inSlope: 1.7116373
+ outSlope: 1.7116373
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1.343679
+ inSlope: -0.92469686
+ outSlope: -0.92469686
+ tangentMode: 0
+ - time: 0.033333335
+ value: 1.3096095
+ inSlope: -2.1664631
+ outSlope: -2.1664624
+ tangentMode: 0
+ - time: 0.06666668
+ value: 1.1903175
+ inSlope: -4.600041
+ outSlope: -4.775378
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.9147674
+ inSlope: -1.7174346
+ outSlope: -1.7174343
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.9990479
+ inSlope: 4.485441
+ outSlope: 4.485442
+ tangentMode: 0
+ - time: 0.26666668
+ value: 1.3436499
+ inSlope: 3.7810566
+ outSlope: 3.7781801
+ tangentMode: 0
+ - time: 0.3666667
+ value: 1.5198516
+ inSlope: 0.56351054
+ outSlope: 0.4936367
+ tangentMode: 0
+ - time: 0.73333335
+ value: 1.0811853
+ inSlope: -0.43253207
+ outSlope: -0.4319855
+ tangentMode: 0
+ - time: 0.7666667
+ value: 1.0739311
+ inSlope: -10.890392
+ outSlope: -10.890412
+ tangentMode: 0
+ - time: 0.8
+ value: 0.5057892
+ inSlope: 2.1733692
+ outSlope: 2.1733654
+ tangentMode: 0
+ - time: 0.8333334
+ value: 1.0010481
+ inSlope: 9.962274
+ outSlope: 9.962292
+ tangentMode: 0
+ - time: 0.8666667
+ value: 1.0213509
+ inSlope: -3.8936272
+ outSlope: -3.89362
+ tangentMode: 0
+ - time: 0.90000004
+ value: 1.0021265
+ inSlope: -0.5443163
+ outSlope: -0.5237227
+ tangentMode: 0
+ - time: 1.3000001
+ value: 0.846455
+ inSlope: -0.3055885
+ outSlope: -0.30777615
+ tangentMode: 0
+ - time: 1.6666667
+ value: 1.0136039
+ inSlope: 0.9594876
+ outSlope: 0.92534757
+ tangentMode: 0
+ - time: 1.7666668
+ value: 1.0841628
+ inSlope: 0.11641142
+ outSlope: 0.11641142
+ tangentMode: 0
+ - time: 1.8666668
+ value: 1.0563257
+ inSlope: 1.2248108
+ outSlope: 1.1560633
+ tangentMode: 0
+ - time: 1.9333335
+ value: 1.2020062
+ inSlope: 2.4865613
+ outSlope: 2.4865613
+ tangentMode: 0
+ - time: 2.0000002
+ value: 1.3292818
+ inSlope: 0.79938346
+ outSlope: 0.82835275
+ tangentMode: 0
+ - time: 2.0333335
+ value: 1.343679
+ inSlope: 0.39228955
+ outSlope: 0.39228955
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 175.49216
+ inSlope: 115.95794
+ outSlope: 115.95794
+ tangentMode: 0
+ - time: 0.033333335
+ value: 179.35747
+ inSlope: 198.73854
+ outSlope: 198.7385
+ tangentMode: 0
+ - time: 0.06666668
+ value: 188.7478
+ inSlope: 314.50552
+ outSlope: 314.29965
+ tangentMode: 0
+ - time: 0.13333334
+ value: 210.8768
+ inSlope: 304.86377
+ outSlope: 304.86368
+ tangentMode: 0
+ - time: 0.20000002
+ value: 231.25874
+ inSlope: 295.67294
+ outSlope: 295.673
+ tangentMode: 0
+ - time: 0.26666668
+ value: 246.49521
+ inSlope: 141.6591
+ outSlope: 141.5936
+ tangentMode: 0
+ - time: 0.3666667
+ value: 255.35863
+ inSlope: 67.62404
+ outSlope: 67.50437
+ tangentMode: 0
+ - time: 0.73333335
+ value: 263.51556
+ inSlope: 0.44994012
+ outSlope: 0.45043907
+ tangentMode: 0
+ - time: 0.7666667
+ value: 263.51907
+ inSlope: -388.51468
+ outSlope: -388.51263
+ tangentMode: 0
+ - time: 0.8
+ value: 237.50249
+ inSlope: -1096.99
+ outSlope: -1096.988
+ tangentMode: 0
+ - time: 0.8333334
+ value: 189.2099
+ inSlope: -1074.8136
+ outSlope: -1074.8099
+ tangentMode: 0
+ - time: 0.8666667
+ value: 163.19603
+ inSlope: -381.7739
+ outSlope: -381.77322
+ tangentMode: 0
+ - time: 0.90000004
+ value: 163.42964
+ inSlope: 13.698566
+ outSlope: 13.697089
+ tangentMode: 0
+ - time: 1.3000001
+ value: 190.82065
+ inSlope: 96.79984
+ outSlope: 96.865204
+ tangentMode: 0
+ - time: 1.6666667
+ value: 219.71207
+ inSlope: 38.38598
+ outSlope: 38.404533
+ tangentMode: 0
+ - time: 1.7666668
+ value: 221.7232
+ inSlope: -26.268305
+ outSlope: -26.268305
+ tangentMode: 0
+ - time: 1.8666668
+ value: 207.09006
+ inSlope: -237.90338
+ outSlope: -238.09276
+ tangentMode: 0
+ - time: 1.9333335
+ value: 190.11542
+ inSlope: -237.9156
+ outSlope: -237.9156
+ tangentMode: 0
+ - time: 2.0000002
+ value: 177.47798
+ inSlope: -108.24614
+ outSlope: -108.27174
+ tangentMode: 0
+ - time: 2.0333335
+ value: 175.49216
+ inSlope: -59.570675
+ outSlope: -59.570675
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.000013271631
+ inSlope: -0.0000029318717
+ outSlope: -0.0000029318717
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.000013271631
+ inSlope: -0.0000029318717
+ outSlope: -0.0000029318717
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.000011200384
+ inSlope: 0.0000059878107
+ outSlope: 0.0000059878107
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.000011200384
+ inSlope: 0.0000059878107
+ outSlope: 0.0000059878107
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 9.353988
+ inSlope: 0.0000014070603
+ outSlope: 0.0000014070603
+ tangentMode: 0
+ - time: 2.0333335
+ value: 9.353988
+ inSlope: 0.0000014070603
+ outSlope: 0.0000014070603
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.000013271631
+ inSlope: -0.0000029318717
+ outSlope: -0.0000029318717
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.000013271631
+ inSlope: -0.0000029318717
+ outSlope: -0.0000029318717
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.000011200384
+ inSlope: 0.0000059878107
+ outSlope: 0.0000059878107
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.000011200384
+ inSlope: 0.0000059878107
+ outSlope: 0.0000059878107
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 9.353988
+ inSlope: 0.0000014070603
+ outSlope: 0.0000014070603
+ tangentMode: 0
+ - time: 2.0333335
+ value: 9.353988
+ inSlope: 0.0000014070603
+ outSlope: 0.0000014070603
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/LeftArm1/LeftArm2/LeftArm3/LeftArm4/LeftArm5/LeftArm6/LeftArmEnd/LeftIndex1/LeftIndex2/LeftIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 5.841283
+ inSlope: 98.33956
+ outSlope: 98.33956
+ tangentMode: 0
+ - time: 0.033333335
+ value: 9.18112
+ inSlope: 178.06657
+ outSlope: 178.06653
+ tangentMode: 0
+ - time: 0.06666668
+ value: 18.021559
+ inSlope: 298.49176
+ outSlope: 298.49185
+ tangentMode: 0
+ - time: 0.10000001
+ value: 28.972311
+ inSlope: 254.77931
+ outSlope: 254.77931
+ tangentMode: 0
+ - time: 0.13333334
+ value: 34.594795
+ inSlope: 85.093925
+ outSlope: 85.09389
+ tangentMode: 0
+ - time: 0.16666669
+ value: 34.545486
+ inSlope: -3.493651
+ outSlope: -3.4936526
+ tangentMode: 0
+ - time: 0.26666668
+ value: 33.385487
+ inSlope: -22.508814
+ outSlope: -22.520773
+ tangentMode: 0
+ - time: 0.33333334
+ value: 31.005594
+ inSlope: -58.54932
+ outSlope: -58.966183
+ tangentMode: 0
+ - time: 0.43333337
+ value: 20.257765
+ inSlope: -153.98062
+ outSlope: -153.98848
+ tangentMode: 0
+ - time: 0.5
+ value: 9.364148
+ inSlope: -149.33162
+ outSlope: -149.33154
+ tangentMode: 0
+ - time: 0.56666666
+ value: 1.5620826
+ inSlope: -63.042744
+ outSlope: -62.64021
+ tangentMode: 0
+ - time: 0.6666667
+ value: 0.40778792
+ inSlope: 0.0000965595
+ outSlope: 0.000010728834
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.40778792
+ inSlope: 0.000010728834
+ outSlope: 0.00007241965
+ tangentMode: 0
+ - time: 1.7000002
+ value: 2.0001729
+ inSlope: 26.692547
+ outSlope: 26.477213
+ tangentMode: 0
+ - time: 1.9000001
+ value: 6.260081
+ inSlope: -0.8188608
+ outSlope: 0.24559358
+ tangentMode: 0
+ - time: 2.0333335
+ value: 5.841283
+ inSlope: -2.3099809
+ outSlope: -2.3099809
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 86.542854
+ inSlope: 47.06474
+ outSlope: 47.06474
+ tangentMode: 0
+ - time: 0.033333335
+ value: 87.97306
+ inSlope: 89.04624
+ outSlope: 89.04623
+ tangentMode: 0
+ - time: 0.06666668
+ value: 91.97932
+ inSlope: 120.8846
+ outSlope: 120.88189
+ tangentMode: 0
+ - time: 0.10000001
+ value: 96.85931
+ inSlope: 88.28683
+ outSlope: 88.28683
+ tangentMode: 0
+ - time: 0.13333334
+ value: 99.34907
+ inSlope: 31.741564
+ outSlope: 31.74155
+ tangentMode: 0
+ - time: 0.16666669
+ value: 99.2596
+ inSlope: -4.5881634
+ outSlope: -4.58725
+ tangentMode: 0
+ - time: 0.26666668
+ value: 98.54346
+ inSlope: -5.552674
+ outSlope: -5.4931645
+ tangentMode: 0
+ - time: 0.33333334
+ value: 98.98928
+ inSlope: 30.696146
+ outSlope: 29.430763
+ tangentMode: 0
+ - time: 0.43333337
+ value: 103.610405
+ inSlope: 11.575238
+ outSlope: 16.802567
+ tangentMode: 0
+ - time: 0.5
+ value: 103.46928
+ inSlope: -37.70956
+ outSlope: -37.709545
+ tangentMode: 0
+ - time: 0.56666666
+ value: 100.90745
+ inSlope: -31.402018
+ outSlope: -32.09861
+ tangentMode: 0
+ - time: 0.6666667
+ value: 100.33625
+ inSlope: -0.00022888178
+ outSlope: -0.00002543131
+ tangentMode: 0
+ - time: 1.5666668
+ value: 100.33625
+ inSlope: -0.00002543131
+ outSlope: -0.00017166139
+ tangentMode: 0
+ - time: 1.7000002
+ value: 99.91026
+ inSlope: -13.463403
+ outSlope: -13.851705
+ tangentMode: 0
+ - time: 1.9000001
+ value: 91.541
+ inSlope: -58.669533
+ outSlope: -58.735264
+ tangentMode: 0
+ - time: 2.0333335
+ value: 86.542854
+ inSlope: -11.96908
+ outSlope: -11.96908
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 122.54752
+ inSlope: -219.03784
+ outSlope: -219.03784
+ tangentMode: 0
+ - time: 0.033333335
+ value: 115.25512
+ inSlope: -335.4421
+ outSlope: -335.44202
+ tangentMode: 0
+ - time: 0.06666668
+ value: 100.18327
+ inSlope: -424.81235
+ outSlope: -424.8125
+ tangentMode: 0
+ - time: 0.10000001
+ value: 86.86825
+ inSlope: -281.63385
+ outSlope: -281.63385
+ tangentMode: 0
+ - time: 0.13333334
+ value: 81.511505
+ inSlope: -81.31806
+ outSlope: -81.31802
+ tangentMode: 0
+ - time: 0.16666669
+ value: 81.47704
+ inSlope: -0.4113005
+ outSlope: -0.40809634
+ tangentMode: 0
+ - time: 0.26666668
+ value: 82.29161
+ inSlope: 25.809175
+ outSlope: 25.832293
+ tangentMode: 0
+ - time: 0.33333334
+ value: 87.34258
+ inSlope: 176.97499
+ outSlope: 176.16779
+ tangentMode: 0
+ - time: 0.43333337
+ value: 116.95778
+ inSlope: 330.31073
+ outSlope: 332.66138
+ tangentMode: 0
+ - time: 0.5
+ value: 138.27667
+ inSlope: 274.78058
+ outSlope: 274.78046
+ tangentMode: 0
+ - time: 0.56666666
+ value: 152.28983
+ inSlope: 117.81876
+ outSlope: 117.94644
+ tangentMode: 0
+ - time: 0.6666667
+ value: 154.41118
+ inSlope: 0.00045776356
+ outSlope: 0.00005086262
+ tangentMode: 0
+ - time: 1.5666668
+ value: 154.41118
+ inSlope: 0.00005086262
+ outSlope: 0.00034332278
+ tangentMode: 0
+ - time: 1.7000002
+ value: 150.25056
+ inSlope: -75.86095
+ outSlope: -75.92494
+ tangentMode: 0
+ - time: 1.9000001
+ value: 129.70781
+ inSlope: -94.22038
+ outSlope: -94.30622
+ tangentMode: 0
+ - time: 2.0333335
+ value: 122.54752
+ inSlope: -15.650869
+ outSlope: -15.650869
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 15.396397
+ inSlope: -27.392004
+ outSlope: -27.392004
+ tangentMode: 0
+ - time: 0.033333335
+ value: 14.401856
+ inSlope: -49.607475
+ outSlope: -49.607464
+ tangentMode: 0
+ - time: 0.06666668
+ value: 11.862841
+ inSlope: -86.33346
+ outSlope: -86.33349
+ tangentMode: 0
+ - time: 0.10000001
+ value: 9.019213
+ inSlope: -70.19869
+ outSlope: -72.27432
+ tangentMode: 0
+ - time: 0.16666669
+ value: 7.7310667
+ inSlope: 2.3715444
+ outSlope: 2.3716094
+ tangentMode: 0
+ - time: 0.3
+ value: 8.175178
+ inSlope: -2.5555017
+ outSlope: -2.555501
+ tangentMode: 0
+ - time: 0.43333337
+ value: 4.875304
+ inSlope: -49.081047
+ outSlope: -49.08107
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.27537122
+ inSlope: -17.18253
+ outSlope: -16.920647
+ tangentMode: 0
+ - time: 0.6666667
+ value: -9.096357e-15
+ inSlope: 2.7289065e-13
+ outSlope: 3.0321184e-14
+ tangentMode: 0
+ - time: 1.5666668
+ value: -2.3554906e-12
+ inSlope: 7.851633e-12
+ outSlope: 3.533237e-11
+ tangentMode: 0
+ - time: 1.7666668
+ value: 5.0207725
+ inSlope: 49.332905
+ outSlope: 49.154472
+ tangentMode: 0
+ - time: 2.0333335
+ value: 15.396397
+ inSlope: 7.8831596
+ outSlope: 7.8831596
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 342.96356
+ inSlope: -99.7998
+ outSlope: -99.7998
+ tangentMode: 0
+ - time: 0.033333335
+ value: 339.66763
+ inSlope: -150.2188
+ outSlope: -150.21877
+ tangentMode: 0
+ - time: 0.06666668
+ value: 333.04956
+ inSlope: -181.75227
+ outSlope: -181.75233
+ tangentMode: 0
+ - time: 0.10000001
+ value: 327.33926
+ inSlope: -115.090034
+ outSlope: -113.459915
+ tangentMode: 0
+ - time: 0.16666669
+ value: 325.04224
+ inSlope: 0.30624384
+ outSlope: 0.30624393
+ tangentMode: 0
+ - time: 0.3
+ value: 325.86557
+ inSlope: 32.894444
+ outSlope: 32.894436
+ tangentMode: 0
+ - time: 0.43333337
+ value: 341.76297
+ inSlope: 162.55162
+ outSlope: 162.5517
+ tangentMode: 0
+ - time: 0.56666666
+ value: 359.0126
+ inSlope: 54.68927
+ outSlope: 54.78423
+ tangentMode: 0
+ - time: 0.6666667
+ value: 1.7634252e-14
+ inSlope: -5.2902745e-13
+ outSlope: -5.8780834e-14
+ tangentMode: 0
+ - time: 1.5666668
+ value: 2.5019125e-12
+ inSlope: -8.3397065e-12
+ outSlope: -3.75287e-11
+ tangentMode: 0
+ - time: 1.7666668
+ value: 354.59674
+ inSlope: -54.83919
+ outSlope: -55.024315
+ tangentMode: 0
+ - time: 2.0333335
+ value: 342.96356
+ inSlope: -9.117275
+ outSlope: -9.117275
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 13.53714
+ inSlope: -132.27951
+ outSlope: -132.27951
+ tangentMode: 0
+ - time: 0.033333335
+ value: 9.153736
+ inSlope: -209.21161
+ outSlope: -209.21156
+ tangentMode: 0
+ - time: 0.06666668
+ value: 359.66306
+ inSlope: -279.0499
+ outSlope: -279.05002
+ tangentMode: 0
+ - time: 0.10000001
+ value: 350.35638
+ inSlope: -198.67128
+ outSlope: -197.46548
+ tangentMode: 0
+ - time: 0.16666669
+ value: 346.1821
+ inSlope: 1.407623
+ outSlope: 1.4069368
+ tangentMode: 0
+ - time: 0.3
+ value: 347.70392
+ inSlope: 37.698215
+ outSlope: 37.698204
+ tangentMode: 0
+ - time: 0.43333337
+ value: 1.2078098
+ inSlope: 134.63673
+ outSlope: 134.63644
+ tangentMode: 0
+ - time: 0.56666666
+ value: 16.260475
+ inSlope: 50.114666
+ outSlope: 50.216434
+ tangentMode: 0
+ - time: 0.6666667
+ value: 17.175787
+ inSlope: -0.00017166133
+ outSlope: -0.000019073483
+ tangentMode: 0
+ - time: 1.5666668
+ value: 17.175787
+ inSlope: -0.000019073483
+ outSlope: -0.00008583072
+ tangentMode: 0
+ - time: 1.7666668
+ value: 15.874352
+ inSlope: -13.782253
+ outSlope: -14.323173
+ tangentMode: 0
+ - time: 2.0333335
+ value: 13.53714
+ inSlope: -1.7322342
+ outSlope: -1.7322342
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 17.266985
+ inSlope: -26.816423
+ outSlope: -26.816423
+ tangentMode: 0
+ - time: 0.033333335
+ value: 16.14692
+ inSlope: -53.2624
+ outSlope: -53.26239
+ tangentMode: 0
+ - time: 0.06666668
+ value: 13.049296
+ inSlope: -115.90256
+ outSlope: -115.902596
+ tangentMode: 0
+ - time: 0.10000001
+ value: 9.409258
+ inSlope: -102.677025
+ outSlope: -102.677025
+ tangentMode: 0
+ - time: 0.13333334
+ value: 7.684915
+ inSlope: -29.426323
+ outSlope: -29.426311
+ tangentMode: 0
+ - time: 0.16666669
+ value: 7.744995
+ inSlope: 3.0857837
+ outSlope: 3.0846865
+ tangentMode: 0
+ - time: 0.33333334
+ value: 8.084213
+ inSlope: -16.518496
+ outSlope: -15.169369
+ tangentMode: 0
+ - time: 0.43333337
+ value: 4.9544196
+ inSlope: -47.337715
+ outSlope: -49.22077
+ tangentMode: 0
+ - time: 0.56666666
+ value: 0.27984723
+ inSlope: -17.160675
+ outSlope: -16.937284
+ tangentMode: 0
+ - time: 0.6666667
+ value: -0.000000013038177
+ inSlope: 0.00000039114522
+ outSlope: 0.000000043460584
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.000000013040875
+ inSlope: 0.000000043469576
+ outSlope: 0.0000001956132
+ tangentMode: 0
+ - time: 1.7666668
+ value: 5.7289324
+ inSlope: 56.174877
+ outSlope: 56.119976
+ tangentMode: 0
+ - time: 2.0333335
+ value: 17.266985
+ inSlope: 8.633856
+ outSlope: 8.633856
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 8.827059
+ inSlope: -229.35486
+ outSlope: -229.35486
+ tangentMode: 0
+ - time: 0.033333335
+ value: 1.2300763
+ inSlope: -352.23306
+ outSlope: -352.23297
+ tangentMode: 0
+ - time: 0.06666668
+ value: 345.46783
+ inSlope: -443.80908
+ outSlope: -443.80923
+ tangentMode: 0
+ - time: 0.10000001
+ value: 331.10516
+ inSlope: -296.11453
+ outSlope: -296.11453
+ tangentMode: 0
+ - time: 0.13333334
+ value: 325.04626
+ inSlope: -89.093636
+ outSlope: -89.09359
+ tangentMode: 0
+ - time: 0.16666669
+ value: 325.04996
+ inSlope: 1.4721674
+ outSlope: 1.4743654
+ tangentMode: 0
+ - time: 0.33333334
+ value: 329.60214
+ inSlope: 93.698555
+ outSlope: 94.02921
+ tangentMode: 0
+ - time: 0.43333337
+ value: 343.59326
+ inSlope: 152.37302
+ outSlope: 151.54546
+ tangentMode: 0
+ - time: 0.56666666
+ value: 359.14093
+ inSlope: 47.838608
+ outSlope: 47.927845
+ tangentMode: 0
+ - time: 0.6666667
+ value: 1.789062e-14
+ inSlope: -5.3671846e-13
+ outSlope: -5.963539e-14
+ tangentMode: 0
+ - time: 1.5666668
+ value: -1.2746073e-12
+ inSlope: 4.2486904e-12
+ outSlope: 1.9119116e-11
+ tangentMode: 0
+ - time: 1.7666668
+ value: 2.7911975
+ inSlope: 28.234205
+ outSlope: 28.344559
+ tangentMode: 0
+ - time: 2.0333335
+ value: 8.827059
+ inSlope: 4.827781
+ outSlope: 4.827781
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 19.094536
+ inSlope: -161.4791
+ outSlope: -161.4791
+ tangentMode: 0
+ - time: 0.033333335
+ value: 13.771142
+ inSlope: -254.24637
+ outSlope: -254.2463
+ tangentMode: 0
+ - time: 0.06666668
+ value: 2.310143
+ inSlope: -330.0835
+ outSlope: -330.08362
+ tangentMode: 0
+ - time: 0.10000001
+ value: 351.16327
+ inSlope: -230.38881
+ outSlope: -230.38881
+ tangentMode: 0
+ - time: 0.13333334
+ value: 346.17126
+ inSlope: -72.70753
+ outSlope: -72.70749
+ tangentMode: 0
+ - time: 0.16666669
+ value: 346.18402
+ inSlope: 1.6699213
+ outSlope: 1.669922
+ tangentMode: 0
+ - time: 0.33333334
+ value: 349.88818
+ inSlope: 75.41895
+ outSlope: 75.79283
+ tangentMode: 0
+ - time: 0.43333337
+ value: 1.6009505
+ inSlope: 133.35574
+ outSlope: 132.45709
+ tangentMode: 0
+ - time: 0.56666666
+ value: 16.288153
+ inSlope: 48.70983
+ outSlope: 48.79834
+ tangentMode: 0
+ - time: 0.6666667
+ value: 17.175787
+ inSlope: -0.00017166133
+ outSlope: -0.000019073483
+ tangentMode: 0
+ - time: 1.5666668
+ value: 17.175787
+ inSlope: -0.000019073483
+ outSlope: -0.00008583072
+ tangentMode: 0
+ - time: 1.7666668
+ value: 17.60555
+ inSlope: 6.0842824
+ outSlope: 6.405649
+ tangentMode: 0
+ - time: 2.0333335
+ value: 19.094536
+ inSlope: 1.5168852
+ outSlope: 1.5168852
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.00000007324877
+ inSlope: 40.113823
+ outSlope: 40.113823
+ tangentMode: 0
+ - time: 0.033333335
+ value: 1.1718818
+ inSlope: 67.842705
+ outSlope: 67.84269
+ tangentMode: 0
+ - time: 0.06666668
+ value: 3.938048
+ inSlope: 69.11235
+ outSlope: 69.11237
+ tangentMode: 0
+ - time: 0.10000001
+ value: 6.614387
+ inSlope: 30.75009
+ outSlope: 30.75009
+ tangentMode: 0
+ - time: 0.13333334
+ value: 7.684915
+ inSlope: 10.355173
+ outSlope: 10.355168
+ tangentMode: 0
+ - time: 0.16666669
+ value: 7.6840205
+ inSlope: -0.105700456
+ outSlope: -0.1071024
+ tangentMode: 0
+ - time: 0.26666668
+ value: 7.625752
+ inSlope: -1.493354
+ outSlope: -1.4483286
+ tangentMode: 0
+ - time: 0.33333334
+ value: 6.113899
+ inSlope: -73.96031
+ outSlope: -74.38681
+ tangentMode: 0
+ - time: 0.43333337
+ value: 354.9226
+ inSlope: -100.54319
+ outSlope: -100.54322
+ tangentMode: 0
+ - time: 0.53333336
+ value: 345.77313
+ inSlope: -76.03272
+ outSlope: -75.53651
+ tangentMode: 0
+ - time: 0.6
+ value: 342.93033
+ inSlope: -11.916047
+ outSlope: -11.945573
+ tangentMode: 0
+ - time: 0.73333335
+ value: 342.93033
+ inSlope: -0.00068664557
+ outSlope: -0.000109863264
+ tangentMode: 0
+ - time: 1.5666668
+ value: 342.93033
+ inSlope: -0.000109863264
+ outSlope: -0.0009155282
+ tangentMode: 0
+ - time: 1.6666667
+ value: 344.40515
+ inSlope: 39.316444
+ outSlope: 39.12559
+ tangentMode: 0
+ - time: 1.8333335
+ value: 352.65878
+ inSlope: 39.462322
+ outSlope: 39.462322
+ tangentMode: 0
+ - time: 2.0000002
+ value: 359.58823
+ inSlope: 22.489552
+ outSlope: 22.29952
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.000000012927932
+ inSlope: 12.413191
+ outSlope: 12.413191
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000024041933
+ inSlope: -141.92136
+ outSlope: -141.92136
+ tangentMode: 0
+ - time: 0.033333335
+ value: 355.2265
+ inSlope: -239.17235
+ outSlope: -239.1723
+ tangentMode: 0
+ - time: 0.06666668
+ value: 343.83966
+ inSlope: -360.15372
+ outSlope: -360.15384
+ tangentMode: 0
+ - time: 0.10000001
+ value: 331.19687
+ inSlope: -284.697
+ outSlope: -284.697
+ tangentMode: 0
+ - time: 0.13333334
+ value: 325.04626
+ inSlope: -92.590034
+ outSlope: -92.58999
+ tangentMode: 0
+ - time: 0.16666669
+ value: 325.0815
+ inSlope: 2.5790396
+ outSlope: 2.5762942
+ tangentMode: 0
+ - time: 0.26666668
+ value: 325.977
+ inSlope: 17.8006
+ outSlope: 17.80472
+ tangentMode: 0
+ - time: 0.33333334
+ value: 327.87894
+ inSlope: 39.416203
+ outSlope: 38.529045
+ tangentMode: 0
+ - time: 0.43333337
+ value: 332.22736
+ inSlope: 64.79735
+ outSlope: 64.79737
+ tangentMode: 0
+ - time: 0.53333336
+ value: 343.09927
+ inSlope: 102.74506
+ outSlope: 103.00095
+ tangentMode: 0
+ - time: 0.6
+ value: 347.2842
+ inSlope: 17.876131
+ outSlope: 17.865831
+ tangentMode: 0
+ - time: 0.73333335
+ value: 347.2842
+ inSlope: -0.00068664557
+ outSlope: -0.000109863264
+ tangentMode: 0
+ - time: 1.5666668
+ value: 347.2842
+ inSlope: -0.000109863264
+ outSlope: -0.0009155282
+ tangentMode: 0
+ - time: 1.6666667
+ value: 347.49643
+ inSlope: 10.159616
+ outSlope: 10.806697
+ tangentMode: 0
+ - time: 1.8333335
+ value: 352.74814
+ inSlope: 44.492958
+ outSlope: 44.492958
+ tangentMode: 0
+ - time: 2.0000002
+ value: 359.70035
+ inSlope: 16.530571
+ outSlope: 16.795364
+ tangentMode: 0
+ - time: 2.0333335
+ value: 2.8028634e-14
+ inSlope: 8.907174
+ outSlope: 8.907174
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 24.531368
+ inSlope: -178.05782
+ outSlope: -178.05782
+ tangentMode: 0
+ - time: 0.033333335
+ value: 18.561413
+ inSlope: -283.5087
+ outSlope: -283.50864
+ tangentMode: 0
+ - time: 0.06666668
+ value: 5.4274883
+ inSlope: -394.16446
+ outSlope: -394.16458
+ tangentMode: 0
+ - time: 0.10000001
+ value: 352.2198
+ inSlope: -291.41788
+ outSlope: -291.41788
+ tangentMode: 0
+ - time: 0.13333334
+ value: 346.17126
+ inSlope: -91.33485
+ outSlope: -91.3348
+ tangentMode: 0
+ - time: 0.16666669
+ value: 346.189
+ inSlope: 2.1286004
+ outSlope: 2.1267703
+ tangentMode: 0
+ - time: 0.26666668
+ value: 347.3058
+ inSlope: 26.048586
+ outSlope: 26.048586
+ tangentMode: 0
+ - time: 0.33333334
+ value: 351.32962
+ inSlope: 118.821266
+ outSlope: 118.457306
+ tangentMode: 0
+ - time: 0.43333337
+ value: 5.84413
+ inSlope: 105.37309
+ outSlope: 105.372665
+ tangentMode: 0
+ - time: 0.53333336
+ value: 13.79546
+ inSlope: 55.378765
+ outSlope: 56.077484
+ tangentMode: 0
+ - time: 0.6
+ value: 15.980221
+ inSlope: 8.787862
+ outSlope: 8.7500105
+ tangentMode: 0
+ - time: 0.73333335
+ value: 15.980221
+ inSlope: 0.000085830696
+ outSlope: 0.000013732908
+ tangentMode: 0
+ - time: 1.5666668
+ value: 15.980221
+ inSlope: 0.000068664536
+ outSlope: 0.00011444103
+ tangentMode: 0
+ - time: 1.6666667
+ value: 19.375956
+ inSlope: 85.982
+ outSlope: 85.866455
+ tangentMode: 0
+ - time: 1.8333335
+ value: 32.59299
+ inSlope: 3.2029939
+ outSlope: 3.2029939
+ tangentMode: 0
+ - time: 2.0000002
+ value: 25.107008
+ inSlope: -30.035473
+ outSlope: -30.186167
+ tangentMode: 0
+ - time: 2.0333335
+ value: 24.531368
+ inSlope: -17.226236
+ outSlope: -17.226236
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.000000058910352
+ inSlope: 40.113823
+ outSlope: 40.113823
+ tangentMode: 0
+ - time: 0.033333335
+ value: 1.1718818
+ inSlope: 67.842705
+ outSlope: 67.84269
+ tangentMode: 0
+ - time: 0.06666668
+ value: 3.938048
+ inSlope: 69.11235
+ outSlope: 69.11237
+ tangentMode: 0
+ - time: 0.10000001
+ value: 6.614387
+ inSlope: 30.75009
+ outSlope: 30.75009
+ tangentMode: 0
+ - time: 0.13333334
+ value: 7.684915
+ inSlope: 10.356546
+ outSlope: 10.356542
+ tangentMode: 0
+ - time: 0.16666669
+ value: 7.6840196
+ inSlope: -0.105614625
+ outSlope: -0.10707379
+ tangentMode: 0
+ - time: 0.26666668
+ value: 7.625753
+ inSlope: -1.4933826
+ outSlope: -1.4497448
+ tangentMode: 0
+ - time: 0.33333334
+ value: 6.1454954
+ inSlope: -73.21439
+ outSlope: -73.6222
+ tangentMode: 0
+ - time: 0.43333337
+ value: 354.51743
+ inSlope: -116.6409
+ outSlope: -116.64094
+ tangentMode: 0
+ - time: 0.53333336
+ value: 342.5605
+ inSlope: -103.4546
+ outSlope: -103.00782
+ tangentMode: 0
+ - time: 0.6
+ value: 338.6011
+ inSlope: -22.050936
+ outSlope: -22.050936
+ tangentMode: 0
+ - time: 0.6666667
+ value: 337.40045
+ inSlope: -27.685549
+ outSlope: -27.826998
+ tangentMode: 0
+ - time: 0.8
+ value: 335.39575
+ inSlope: 8.717652
+ outSlope: 8.69238
+ tangentMode: 0
+ - time: 1.1333334
+ value: 343.1511
+ inSlope: 9.136502
+ outSlope: 9.123088
+ tangentMode: 0
+ - time: 1.5666668
+ value: 338.67987
+ inSlope: -4.4811535
+ outSlope: -4.476933
+ tangentMode: 0
+ - time: 1.6666667
+ value: 340.4552
+ inSlope: 49.359787
+ outSlope: 49.257206
+ tangentMode: 0
+ - time: 1.8000001
+ value: 349.08722
+ inSlope: 55.70206
+ outSlope: 55.466686
+ tangentMode: 0
+ - time: 1.9666667
+ value: 358.14285
+ inSlope: 48.40083
+ outSlope: 47.93185
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00000002726635
+ inSlope: 15.644492
+ outSlope: 15.644492
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000024041935
+ inSlope: -141.92136
+ outSlope: -141.92136
+ tangentMode: 0
+ - time: 0.033333335
+ value: 355.2265
+ inSlope: -239.17235
+ outSlope: -239.1723
+ tangentMode: 0
+ - time: 0.06666668
+ value: 343.83966
+ inSlope: -360.15372
+ outSlope: -360.15384
+ tangentMode: 0
+ - time: 0.10000001
+ value: 331.19687
+ inSlope: -284.697
+ outSlope: -284.697
+ tangentMode: 0
+ - time: 0.13333334
+ value: 325.04626
+ inSlope: -92.50489
+ outSlope: -92.504845
+ tangentMode: 0
+ - time: 0.16666669
+ value: 325.08725
+ inSlope: 2.8344715
+ outSlope: 2.8335574
+ tangentMode: 0
+ - time: 0.26666668
+ value: 325.99985
+ inSlope: 17.415163
+ outSlope: 17.418825
+ tangentMode: 0
+ - time: 0.33333334
+ value: 327.813
+ inSlope: 36.97449
+ outSlope: 36.077263
+ tangentMode: 0
+ - time: 0.43333337
+ value: 331.82114
+ inSlope: 59.81047
+ outSlope: 59.81049
+ tangentMode: 0
+ - time: 0.53333336
+ value: 341.8588
+ inSlope: 91.45295
+ outSlope: 91.81687
+ tangentMode: 0
+ - time: 0.6
+ value: 345.54163
+ inSlope: 22.060549
+ outSlope: 22.060549
+ tangentMode: 0
+ - time: 0.6666667
+ value: 346.99625
+ inSlope: 33.01804
+ outSlope: 32.95006
+ tangentMode: 0
+ - time: 0.8
+ value: 349.40063
+ inSlope: -8.160096
+ outSlope: -8.172727
+ tangentMode: 0
+ - time: 1.1333334
+ value: 341.70554
+ inSlope: -9.623746
+ outSlope: -9.628881
+ tangentMode: 0
+ - time: 1.5666668
+ value: 345.4764
+ inSlope: 3.7059836
+ outSlope: 3.7069738
+ tangentMode: 0
+ - time: 1.6666667
+ value: 345.76703
+ inSlope: 11.54298
+ outSlope: 11.93802
+ tangentMode: 0
+ - time: 1.8000001
+ value: 350.24988
+ inSlope: 50.495914
+ outSlope: 50.68324
+ tangentMode: 0
+ - time: 1.9666667
+ value: 358.78458
+ inSlope: 33.077095
+ outSlope: 33.814457
+ tangentMode: 0
+ - time: 2.0333335
+ value: 2.743228e-14
+ inSlope: 9.387106
+ outSlope: 9.387106
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 24.531368
+ inSlope: -178.05782
+ outSlope: -178.05782
+ tangentMode: 0
+ - time: 0.033333335
+ value: 18.561413
+ inSlope: -283.5087
+ outSlope: -283.50864
+ tangentMode: 0
+ - time: 0.06666668
+ value: 5.4274883
+ inSlope: -394.16446
+ outSlope: -394.16458
+ tangentMode: 0
+ - time: 0.10000001
+ value: 352.2198
+ inSlope: -291.41788
+ outSlope: -291.41788
+ tangentMode: 0
+ - time: 0.13333334
+ value: 346.17126
+ inSlope: -91.33485
+ outSlope: -91.3348
+ tangentMode: 0
+ - time: 0.16666669
+ value: 346.189
+ inSlope: 2.1286004
+ outSlope: 2.1267703
+ tangentMode: 0
+ - time: 0.26666668
+ value: 347.3058
+ inSlope: 26.048586
+ outSlope: 26.048586
+ tangentMode: 0
+ - time: 0.33333334
+ value: 351.38556
+ inSlope: 121.63239
+ outSlope: 121.2872
+ tangentMode: 0
+ - time: 0.43333337
+ value: 6.29184
+ inSlope: 108.5522
+ outSlope: 108.55223
+ tangentMode: 0
+ - time: 0.53333336
+ value: 14.641004
+ inSlope: 60.324642
+ outSlope: 61.117077
+ tangentMode: 0
+ - time: 0.6
+ value: 17.088097
+ inSlope: 14.6066675
+ outSlope: 14.6066675
+ tangentMode: 0
+ - time: 0.6666667
+ value: 18.137531
+ inSlope: 24.564573
+ outSlope: 24.42527
+ tangentMode: 0
+ - time: 0.8
+ value: 20.040798
+ inSlope: -5.5576234
+ outSlope: -5.5900826
+ tangentMode: 0
+ - time: 1.1333334
+ value: 15.643083
+ inSlope: -4.769584
+ outSlope: -4.7922635
+ tangentMode: 0
+ - time: 1.5666668
+ value: 17.06066
+ inSlope: 1.5289613
+ outSlope: 1.5434089
+ tangentMode: 0
+ - time: 1.6666667
+ value: 20.394806
+ inSlope: 83.21236
+ outSlope: 83.1284
+ tangentMode: 0
+ - time: 1.8000001
+ value: 32.22541
+ inSlope: 44.784912
+ outSlope: 45.009212
+ tangentMode: 0
+ - time: 1.9666667
+ value: 26.611116
+ inSlope: -50.8011
+ outSlope: -51.299236
+ tangentMode: 0
+ - time: 2.0333335
+ value: 24.531368
+ inSlope: -17.657558
+ outSlope: -17.657558
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.000000049494407
+ inSlope: 40.113823
+ outSlope: 40.113823
+ tangentMode: 0
+ - time: 0.033333335
+ value: 1.1718818
+ inSlope: 67.842705
+ outSlope: 67.84269
+ tangentMode: 0
+ - time: 0.06666668
+ value: 3.938048
+ inSlope: 69.11235
+ outSlope: 69.11237
+ tangentMode: 0
+ - time: 0.10000001
+ value: 6.614387
+ inSlope: 30.75009
+ outSlope: 30.75009
+ tangentMode: 0
+ - time: 0.13333334
+ value: 7.684915
+ inSlope: 10.356546
+ outSlope: 10.356542
+ tangentMode: 0
+ - time: 0.16666669
+ value: 7.684022
+ inSlope: -0.105829194
+ outSlope: -0.10714532
+ tangentMode: 0
+ - time: 0.26666668
+ value: 7.625753
+ inSlope: -1.4933826
+ outSlope: -1.4511181
+ tangentMode: 0
+ - time: 0.33333334
+ value: 6.324235
+ inSlope: -64.55296
+ outSlope: -64.900375
+ tangentMode: 0
+ - time: 0.43333337
+ value: 355.59177
+ inSlope: -118.318146
+ outSlope: -118.318184
+ tangentMode: 0
+ - time: 0.53333336
+ value: 342.50705
+ inSlope: -116.14655
+ outSlope: -115.67643
+ tangentMode: 0
+ - time: 0.6
+ value: 338.0293
+ inSlope: -24.312746
+ outSlope: -24.312746
+ tangentMode: 0
+ - time: 0.6666667
+ value: 336.82574
+ inSlope: -27.75696
+ outSlope: -27.895662
+ tangentMode: 0
+ - time: 0.8
+ value: 334.81543
+ inSlope: 8.745118
+ outSlope: 8.720944
+ tangentMode: 0
+ - time: 1.1333334
+ value: 342.59143
+ inSlope: 9.1582
+ outSlope: 9.144849
+ tangentMode: 0
+ - time: 1.5666668
+ value: 338.1083
+ inSlope: -4.493619
+ outSlope: -4.488602
+ tangentMode: 0
+ - time: 1.7000002
+ value: 337.89352
+ inSlope: -0.71342474
+ outSlope: -0.71319646
+ tangentMode: 0
+ - time: 1.8000001
+ value: 337.99896
+ inSlope: 1.3824476
+ outSlope: 1.3815296
+ tangentMode: 0
+ - time: 1.8666668
+ value: 339.60242
+ inSlope: 83.21038
+ outSlope: 83.35335
+ tangentMode: 0
+ - time: 1.9666667
+ value: 354.17944
+ inSlope: 142.82607
+ outSlope: 142.6401
+ tangentMode: 0
+ - time: 2.0000002
+ value: 358.33038
+ inSlope: 87.478096
+ outSlope: 87.47872
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.0000000366823
+ inSlope: 50.1444
+ outSlope: 50.1444
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00000024041938
+ inSlope: -141.92136
+ outSlope: -141.92136
+ tangentMode: 0
+ - time: 0.033333335
+ value: 355.2265
+ inSlope: -239.17235
+ outSlope: -239.1723
+ tangentMode: 0
+ - time: 0.06666668
+ value: 343.83966
+ inSlope: -360.15372
+ outSlope: -360.15384
+ tangentMode: 0
+ - time: 0.10000001
+ value: 331.19687
+ inSlope: -284.697
+ outSlope: -284.697
+ tangentMode: 0
+ - time: 0.13333334
+ value: 325.04626
+ inSlope: -92.38404
+ outSlope: -92.383995
+ tangentMode: 0
+ - time: 0.16666669
+ value: 325.0952
+ inSlope: 3.1887805
+ outSlope: 3.190613
+ tangentMode: 0
+ - time: 0.26666668
+ value: 326.03165
+ inSlope: 16.877748
+ outSlope: 16.883242
+ tangentMode: 0
+ - time: 0.33333334
+ value: 327.67856
+ inSlope: 32.505802
+ outSlope: 31.743156
+ tangentMode: 0
+ - time: 0.43333337
+ value: 331.53485
+ inSlope: 62.312607
+ outSlope: 62.312626
+ tangentMode: 0
+ - time: 0.53333336
+ value: 341.71985
+ inSlope: 89.908455
+ outSlope: 90.39002
+ tangentMode: 0
+ - time: 0.6
+ value: 345.29987
+ inSlope: 21.442568
+ outSlope: 21.442568
+ tangentMode: 0
+ - time: 0.6666667
+ value: 346.75714
+ inSlope: 33.088078
+ outSlope: 33.023533
+ tangentMode: 0
+ - time: 0.8
+ value: 349.16708
+ inSlope: -8.175889
+ outSlope: -8.186734
+ tangentMode: 0
+ - time: 1.1333334
+ value: 341.4656
+ inSlope: -9.62045
+ outSlope: -9.625078
+ tangentMode: 0
+ - time: 1.5666668
+ value: 345.23465
+ inSlope: 3.7072513
+ outSlope: 3.7071993
+ tangentMode: 0
+ - time: 1.7000002
+ value: 345.34094
+ inSlope: 0.10025025
+ outSlope: 0.106201276
+ tangentMode: 0
+ - time: 1.8000001
+ value: 345.30725
+ inSlope: -0.3277591
+ outSlope: -0.33508274
+ tangentMode: 0
+ - time: 1.8666668
+ value: 346.53497
+ inSlope: 63.08619
+ outSlope: 62.697205
+ tangentMode: 0
+ - time: 1.9666667
+ value: 356.5114
+ inSlope: 86.912926
+ outSlope: 87.67036
+ tangentMode: 0
+ - time: 2.0000002
+ value: 359.01868
+ inSlope: 51.888107
+ outSlope: 51.888477
+ tangentMode: 0
+ - time: 2.0333335
+ value: 2.7829849e-14
+ inSlope: 29.326658
+ outSlope: 29.326658
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 24.531368
+ inSlope: -178.05782
+ outSlope: -178.05782
+ tangentMode: 0
+ - time: 0.033333335
+ value: 18.561413
+ inSlope: -283.5087
+ outSlope: -283.50864
+ tangentMode: 0
+ - time: 0.06666668
+ value: 5.4274883
+ inSlope: -394.16446
+ outSlope: -394.16458
+ tangentMode: 0
+ - time: 0.10000001
+ value: 352.2198
+ inSlope: -291.41788
+ outSlope: -291.41788
+ tangentMode: 0
+ - time: 0.13333334
+ value: 346.17126
+ inSlope: -91.33485
+ outSlope: -91.3348
+ tangentMode: 0
+ - time: 0.16666669
+ value: 346.189
+ inSlope: 2.1286004
+ outSlope: 2.1267703
+ tangentMode: 0
+ - time: 0.26666668
+ value: 347.3058
+ inSlope: 26.048586
+ outSlope: 26.048586
+ tangentMode: 0
+ - time: 0.33333334
+ value: 351.29614
+ inSlope: 117.531746
+ outSlope: 117.249725
+ tangentMode: 0
+ - time: 0.43333337
+ value: 5.741198
+ inSlope: 107.95934
+ outSlope: 107.95937
+ tangentMode: 0
+ - time: 0.53333336
+ value: 14.507095
+ inSlope: 66.21873
+ outSlope: 67.06742
+ tangentMode: 0
+ - time: 0.6
+ value: 17.248146
+ inSlope: 15.92022
+ outSlope: 15.92022
+ tangentMode: 0
+ - time: 0.6666667
+ value: 18.282967
+ inSlope: 24.231379
+ outSlope: 24.090788
+ tangentMode: 0
+ - time: 0.8
+ value: 20.16184
+ inSlope: -5.479217
+ outSlope: -5.511891
+ tangentMode: 0
+ - time: 1.1333334
+ value: 15.838057
+ inSlope: -4.6778226
+ outSlope: -4.70055
+ tangentMode: 0
+ - time: 1.5666668
+ value: 17.221306
+ inSlope: 1.4950383
+ outSlope: 1.508732
+ tangentMode: 0
+ - time: 1.7000002
+ value: 21.96808
+ inSlope: 73.439445
+ outSlope: 73.44545
+ tangentMode: 0
+ - time: 1.8000001
+ value: 28.573206
+ inSlope: 35.5776
+ outSlope: 35.580826
+ tangentMode: 0
+ - time: 1.8666668
+ value: 28.703644
+ inSlope: -26.03895
+ outSlope: -25.433374
+ tangentMode: 0
+ - time: 1.9666667
+ value: 25.293276
+ inSlope: -18.364637
+ outSlope: -20.831493
+ tangentMode: 0
+ - time: 2.0000002
+ value: 24.720392
+ inSlope: -9.819828
+ outSlope: -9.819899
+ tangentMode: 0
+ - time: 2.0333335
+ value: 24.531368
+ inSlope: -5.0973177
+ outSlope: -5.0973177
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 353.7138
+ inSlope: -43.3905
+ outSlope: -43.3905
+ tangentMode: 0
+ - time: 0.033333335
+ value: 352.28754
+ inSlope: -65.093994
+ outSlope: -64.195854
+ tangentMode: 0
+ - time: 0.10000001
+ value: 347.17322
+ inSlope: -41.374504
+ outSlope: -39.31091
+ tangentMode: 0
+ - time: 0.20000002
+ value: 346.45267
+ inSlope: 8.030089
+ outSlope: 8.900103
+ tangentMode: 0
+ - time: 0.43333337
+ value: 347.65692
+ inSlope: -6.0197225
+ outSlope: -5.7139897
+ tangentMode: 0
+ - time: 0.6
+ value: 346.7195
+ inSlope: -1.0046998
+ outSlope: -1.0123899
+ tangentMode: 0
+ - time: 1.1000001
+ value: 346.7195
+ inSlope: -0.00018310543
+ outSlope: -0.00013078963
+ tangentMode: 0
+ - time: 1.8000001
+ value: 346.7195
+ inSlope: -0.00013078963
+ outSlope: -0.0013732899
+ tangentMode: 0
+ - time: 1.8666668
+ value: 347.10498
+ inSlope: 18.934921
+ outSlope: 18.248308
+ tangentMode: 0
+ - time: 1.9000001
+ value: 348.0167
+ inSlope: 32.346527
+ outSlope: 32.346413
+ tangentMode: 0
+ - time: 1.9333335
+ value: 349.29047
+ inSlope: 46.488525
+ outSlope: 46.488857
+ tangentMode: 0
+ - time: 1.9666667
+ value: 350.99728
+ inSlope: 57.10994
+ outSlope: 57.109325
+ tangentMode: 0
+ - time: 2.0000002
+ value: 352.82413
+ inSlope: 44.431183
+ outSlope: 44.4315
+ tangentMode: 0
+ - time: 2.0333335
+ value: 353.7138
+ inSlope: 28.11404
+ outSlope: 28.11404
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 158.69702
+ inSlope: 36.372986
+ outSlope: 36.372986
+ tangentMode: 0
+ - time: 0.033333335
+ value: 159.93431
+ inSlope: 64.52408
+ outSlope: 65.49018
+ tangentMode: 0
+ - time: 0.10000001
+ value: 166.92952
+ inSlope: 100.183624
+ outSlope: 100.99685
+ tangentMode: 0
+ - time: 0.20000002
+ value: 171.39622
+ inSlope: 18.988493
+ outSlope: 18.491755
+ tangentMode: 0
+ - time: 0.43333337
+ value: 170.06862
+ inSlope: -17.978144
+ outSlope: -18.099154
+ tangentMode: 0
+ - time: 0.6
+ value: 168.09534
+ inSlope: -1.5540162
+ outSlope: -1.5483395
+ tangentMode: 0
+ - time: 1.1000001
+ value: 168.09534
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 168.09534
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8666668
+ value: 167.62631
+ inSlope: -26.915108
+ outSlope: -27.424648
+ tangentMode: 0
+ - time: 1.9000001
+ value: 166.31503
+ inSlope: -50.39159
+ outSlope: -50.391407
+ tangentMode: 0
+ - time: 1.9333335
+ value: 164.22963
+ inSlope: -67.00681
+ outSlope: -67.00729
+ tangentMode: 0
+ - time: 1.9666667
+ value: 161.71007
+ inSlope: -66.09817
+ outSlope: -66.09746
+ tangentMode: 0
+ - time: 2.0000002
+ value: 159.57079
+ inSlope: -41.361897
+ outSlope: -41.36219
+ tangentMode: 0
+ - time: 2.0333335
+ value: 158.69702
+ inSlope: -24.603905
+ outSlope: -24.603905
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 143.3917
+ inSlope: -84.100334
+ outSlope: -84.100334
+ tangentMode: 0
+ - time: 0.033333335
+ value: 140.57513
+ inSlope: -142.69043
+ outSlope: -143.23972
+ tangentMode: 0
+ - time: 0.10000001
+ value: 125.869286
+ inSlope: -211.55373
+ outSlope: -211.93427
+ tangentMode: 0
+ - time: 0.20000002
+ value: 111.631195
+ inSlope: -127.08343
+ outSlope: -126.674706
+ tangentMode: 0
+ - time: 0.43333337
+ value: 83.90344
+ inSlope: -91.51572
+ outSlope: -91.58149
+ tangentMode: 0
+ - time: 0.6
+ value: 75.4704
+ inSlope: -5.7897954
+ outSlope: -5.7894273
+ tangentMode: 0
+ - time: 1.1000001
+ value: 75.4704
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8000001
+ value: 75.4704
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1.8666668
+ value: 80.575035
+ inSlope: 267.51172
+ outSlope: 267.6224
+ tangentMode: 0
+ - time: 1.9000001
+ value: 93.31218
+ inSlope: 437.05167
+ outSlope: 437.05283
+ tangentMode: 0
+ - time: 1.9333335
+ value: 109.79631
+ inSlope: 489.67172
+ outSlope: 489.6725
+ tangentMode: 0
+ - time: 1.9666667
+ value: 126.12421
+ inSlope: 427.82605
+ outSlope: 427.82693
+ tangentMode: 0
+ - time: 2.0000002
+ value: 138.50175
+ inSlope: 257.27762
+ outSlope: 257.2767
+ tangentMode: 0
+ - time: 2.0333335
+ value: 143.3917
+ inSlope: 146.14851
+ outSlope: 146.14851
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.00008064363
+ inSlope: 0.00039147152
+ outSlope: 0.00039147152
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.00008035017
+ inSlope: 0.00036506003
+ outSlope: 0.00018252998
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.000076848315
+ inSlope: 0.000024946636
+ outSlope: 0.000016631091
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.00007562942
+ inSlope: -0.000019935831
+ outSlope: -0.0000035180879
+ tangentMode: 0
+ - time: 0.7666667
+ value: -0.00007663319
+ inSlope: 0.0000017959844
+ outSlope: 0.0000012212694
+ tangentMode: 0
+ - time: 1.6000001
+ value: -0.00007673201
+ inSlope: 0.0000015770287
+ outSlope: 0.000006570956
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.00007664497
+ inSlope: 0.0000052653213
+ outSlope: 0.000010530636
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.000078379
+ inSlope: 0.000062551684
+ outSlope: 0.00006255161
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.0000805513
+ inSlope: 0.00012772037
+ outSlope: 0.00038316206
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.00008064363
+ inSlope: 0.00039147193
+ outSlope: 0.00039147193
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.000004125335
+ inSlope: -0.00037128016
+ outSlope: -0.00037128016
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.000008016522
+ inSlope: 0.00065180403
+ outSlope: 0.000325902
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.000024794144
+ inSlope: 0.00025755446
+ outSlope: 0.000171703
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.000028294962
+ inSlope: 0.00006667847
+ outSlope: 0.000011766789
+ tangentMode: 0
+ - time: 0.7666667
+ value: 0.00002545126
+ inSlope: 0.000026821683
+ outSlope: 0.000018238745
+ tangentMode: 0
+ - time: 1.6000001
+ value: 0.00002515178
+ inSlope: 0.000019316873
+ outSlope: 0.00008048701
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.000025415835
+ inSlope: 0.00007652618
+ outSlope: 0.00015305226
+ tangentMode: 0
+ - time: 1.9000001
+ value: 0.000019420237
+ inSlope: -0.0001248434
+ outSlope: -0.00012484325
+ tangentMode: 0
+ - time: 2.0000002
+ value: 0.00000564833
+ inSlope: -0.00016944966
+ outSlope: -0.0005083502
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.000004125335
+ inSlope: -0.00037128053
+ outSlope: -0.00037128053
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 319.76282
+ inSlope: -83.07311
+ outSlope: -83.07311
+ tangentMode: 0
+ - time: 0.033333335
+ value: 316.9937
+ inSlope: -132.88788
+ outSlope: -132.89061
+ tangentMode: 0
+ - time: 0.10000001
+ value: 304.80957
+ inSlope: -132.79036
+ outSlope: -132.72948
+ tangentMode: 0
+ - time: 0.20000002
+ value: 302.17908
+ inSlope: 3.8854978
+ outSlope: 3.8847976
+ tangentMode: 0
+ - time: 0.7666667
+ value: 304.31897
+ inSlope: -2.405844
+ outSlope: -2.4058957
+ tangentMode: 0
+ - time: 1.6000001
+ value: 304.54276
+ inSlope: 7.474767
+ outSlope: 7.4752836
+ tangentMode: 0
+ - time: 1.8000001
+ value: 304.3455
+ inSlope: 2.9589853
+ outSlope: 2.9589837
+ tangentMode: 0
+ - time: 1.9000001
+ value: 308.77515
+ inSlope: 97.47617
+ outSlope: 97.47606
+ tangentMode: 0
+ - time: 2.0000002
+ value: 318.68018
+ inSlope: 57.024456
+ outSlope: 57.035576
+ tangentMode: 0
+ - time: 2.0333335
+ value: 319.76282
+ inSlope: 32.478363
+ outSlope: 32.478363
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.0000806436
+ inSlope: 0.0003914689
+ outSlope: 0.0003914689
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.00008035014
+ inSlope: 0.0003650574
+ outSlope: 0.00018252867
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.000076848286
+ inSlope: 0.000024945326
+ outSlope: 0.000016630218
+ tangentMode: 0
+ - time: 0.20000002
+ value: -0.000077419194
+ inSlope: 0.000033757457
+ outSlope: 0.000025318097
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.00007980707
+ inSlope: 0.00007904528
+ outSlope: 0.00007904528
+ tangentMode: 0
+ - time: 0.46666667
+ value: -0.00006252221
+ inSlope: 0.00037678148
+ outSlope: 0.0003767814
+ tangentMode: 0
+ - time: 0.6
+ value: -0.00004737781
+ inSlope: 0.000036032437
+ outSlope: 0.00002402163
+ tangentMode: 0
+ - time: 0.8
+ value: -0.00004737781
+ inSlope: 0.00002402163
+ outSlope: 0.0000048043257
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.00004737781
+ inSlope: 0.0000048043257
+ outSlope: 0.000072064824
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.00005206378
+ inSlope: 0.00028293335
+ outSlope: 0.00056586775
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.00006249029
+ inSlope: 0.00013096213
+ outSlope: 0.00013096165
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.000072838506
+ inSlope: -0.00031098875
+ outSlope: -0.00031099096
+ tangentMode: 0
+ - time: 1.9666667
+ value: -0.00007902812
+ inSlope: 0.00024607676
+ outSlope: 0.00024607414
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.00008072845
+ inSlope: 0.00039910316
+ outSlope: 0.000399106
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.0000806436
+ inSlope: 0.0003914693
+ outSlope: 0.0003914693
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.0000041253384
+ inSlope: -0.00037128042
+ outSlope: -0.00037128042
+ tangentMode: 0
+ - time: 0.033333335
+ value: 0.000008016523
+ inSlope: 0.0006518039
+ outSlope: 0.00032590193
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.000024794139
+ inSlope: 0.00025755473
+ outSlope: 0.00017170316
+ tangentMode: 0
+ - time: 0.20000002
+ value: 0.000022949442
+ inSlope: 0.00022704407
+ outSlope: 0.00017028308
+ tangentMode: 0
+ - time: 0.33333334
+ value: -0.000012297973
+ inSlope: -0.00040994116
+ outSlope: -0.00040994116
+ tangentMode: 0
+ - time: 0.46666667
+ value: -0.000051101677
+ inSlope: -0.0002235033
+ outSlope: -0.00022350324
+ tangentMode: 0
+ - time: 0.6
+ value: -0.000065389235
+ inSlope: 0.00009796675
+ outSlope: 0.000065311186
+ tangentMode: 0
+ - time: 0.8
+ value: -0.000065389235
+ inSlope: 0.000065311186
+ outSlope: 0.000013062236
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.000065389235
+ inSlope: 0.000013062236
+ outSlope: 0.00019593337
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.000061723345
+ inSlope: 0.000030968487
+ outSlope: 0.000061937084
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.00005114071
+ inSlope: 0.00048279122
+ outSlope: 0.00048278947
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.000034856297
+ inSlope: 0.00039048368
+ outSlope: 0.00039048647
+ tangentMode: 0
+ - time: 1.9666667
+ value: -0.000016582066
+ inSlope: 0.000119095435
+ outSlope: 0.000119094155
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.0000018235071
+ inSlope: 0.00016411462
+ outSlope: 0.0001641158
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.0000041253384
+ inSlope: -0.0003712808
+ outSlope: -0.0003712808
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 319.76282
+ inSlope: -83.07311
+ outSlope: -83.07311
+ tangentMode: 0
+ - time: 0.033333335
+ value: 316.9937
+ inSlope: -132.88788
+ outSlope: -132.89061
+ tangentMode: 0
+ - time: 0.10000001
+ value: 304.80957
+ inSlope: -132.79036
+ outSlope: -132.72948
+ tangentMode: 0
+ - time: 0.20000002
+ value: 306.1798
+ inSlope: 115.96801
+ outSlope: 115.943535
+ tangentMode: 0
+ - time: 0.33333334
+ value: 331.45142
+ inSlope: 232.8676
+ outSlope: 232.8676
+ tangentMode: 0
+ - time: 0.46666667
+ value: 1.9516268
+ inSlope: 193.90465
+ outSlope: 193.9046
+ tangentMode: 0
+ - time: 0.6
+ value: 16.766014
+ inSlope: 16.338213
+ outSlope: 16.337702
+ tangentMode: 0
+ - time: 0.8
+ value: 16.766014
+ inSlope: 0.000114440925
+ outSlope: 0.000022888184
+ tangentMode: 0
+ - time: 1.8000001
+ value: 16.766014
+ inSlope: -0.00006866455
+ outSlope: 0.00034332246
+ tangentMode: 0
+ - time: 1.8666668
+ value: 12.543542
+ inSlope: -221.56766
+ outSlope: -221.53754
+ tangentMode: 0
+ - time: 1.9000001
+ value: 1.9874038
+ inSlope: -363.50018
+ outSlope: -363.49887
+ tangentMode: 0
+ - time: 1.9333335
+ value: 348.26434
+ inSlope: -410.4921
+ outSlope: -410.48953
+ tangentMode: 0
+ - time: 1.9666667
+ value: 334.5414
+ inSlope: -363.14374
+ outSlope: -363.14532
+ tangentMode: 0
+ - time: 2.0000002
+ value: 323.98523
+ inSlope: -221.27426
+ outSlope: -221.2731
+ tangentMode: 0
+ - time: 2.0333335
+ value: 319.76282
+ inSlope: -126.609314
+ outSlope: -126.609314
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightThumb1/RightThumb2/RightThumb3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 13.1862545
+ inSlope: -98.506676
+ outSlope: -98.506676
+ tangentMode: 0
+ - time: 0.033333335
+ value: 10.01896
+ inSlope: -103.54554
+ outSlope: -103.54552
+ tangentMode: 0
+ - time: 0.06666668
+ value: 6.788879
+ inSlope: -6.21959
+ outSlope: -6.2195926
+ tangentMode: 0
+ - time: 0.10000001
+ value: 8.764359
+ inSlope: 81.036446
+ outSlope: 81.036446
+ tangentMode: 0
+ - time: 0.13333334
+ value: 11.102237
+ inSlope: 33.573963
+ outSlope: 33.573948
+ tangentMode: 0
+ - time: 0.16666669
+ value: 10.872676
+ inSlope: -12.96618
+ outSlope: -12.891609
+ tangentMode: 0
+ - time: 0.40000004
+ value: 3.3955996
+ inSlope: -25.630714
+ outSlope: -26.01769
+ tangentMode: 0
+ - time: 0.6
+ value: 0.97444874
+ inSlope: -0.8423934
+ outSlope: -0.82453
+ tangentMode: 0
+ - time: 1.1333334
+ value: 359.86273
+ inSlope: -1.5439222
+ outSlope: -1.5494946
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.69214463
+ inSlope: 8.1341715
+ outSlope: 7.8770638
+ tangentMode: 0
+ - time: 1.7000002
+ value: 1.0528808
+ inSlope: -4.0133038
+ outSlope: -4.0133038
+ tangentMode: 0
+ - time: 1.8333335
+ value: 0.9764328
+ inSlope: 16.712439
+ outSlope: 16.629864
+ tangentMode: 0
+ - time: 1.9333335
+ value: 6.7243037
+ inSlope: 88.89038
+ outSlope: 88.59301
+ tangentMode: 0
+ - time: 2.0000002
+ value: 12.190867
+ inSlope: 51.560383
+ outSlope: 51.588154
+ tangentMode: 0
+ - time: 2.0333335
+ value: 13.1862545
+ inSlope: 29.827394
+ outSlope: 29.827394
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 340.80823
+ inSlope: 73.34472
+ outSlope: 73.34472
+ tangentMode: 0
+ - time: 0.033333335
+ value: 343.39566
+ inSlope: 136.43646
+ outSlope: 136.43643
+ tangentMode: 0
+ - time: 0.06666668
+ value: 350.0242
+ inSlope: 195.05396
+ outSlope: 195.05403
+ tangentMode: 0
+ - time: 0.10000001
+ value: 355.7184
+ inSlope: 101.31867
+ outSlope: 101.31867
+ tangentMode: 0
+ - time: 0.13333334
+ value: 357.26022
+ inSlope: 18.399355
+ outSlope: 18.399345
+ tangentMode: 0
+ - time: 0.16666669
+ value: 357.1683
+ inSlope: -5.4574566
+ outSlope: -5.626177
+ tangentMode: 0
+ - time: 0.40000004
+ value: 350.86957
+ inSlope: -46.094707
+ outSlope: -45.916447
+ tangentMode: 0
+ - time: 0.6
+ value: 344.5392
+ inSlope: -3.6222842
+ outSlope: -3.626346
+ tangentMode: 0
+ - time: 1.1333334
+ value: 346.31644
+ inSlope: 2.9194446
+ outSlope: 2.916236
+ tangentMode: 0
+ - time: 1.5666668
+ value: 344.94873
+ inSlope: -11.248308
+ outSlope: -11.438142
+ tangentMode: 0
+ - time: 1.7000002
+ value: 344.4329
+ inSlope: 5.5995946
+ outSlope: 5.5995946
+ tangentMode: 0
+ - time: 1.8333335
+ value: 344.53937
+ inSlope: -16.070253
+ outSlope: -16.155392
+ tangentMode: 0
+ - time: 1.9333335
+ value: 341.4867
+ inSlope: -19.394527
+ outSlope: -21.18437
+ tangentMode: 0
+ - time: 2.0000002
+ value: 340.77597
+ inSlope: 1.1109915
+ outSlope: 0.5520635
+ tangentMode: 0
+ - time: 2.0333335
+ value: 340.80823
+ inSlope: 1.7028825
+ outSlope: 1.7028825
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 213.26106
+ inSlope: -239.88234
+ outSlope: -239.88234
+ tangentMode: 0
+ - time: 0.033333335
+ value: 205.24533
+ inSlope: -402.07486
+ outSlope: -402.07477
+ tangentMode: 0
+ - time: 0.06666668
+ value: 186.34969
+ inSlope: -583.0841
+ outSlope: -583.08154
+ tangentMode: 0
+ - time: 0.10000001
+ value: 166.26161
+ inSlope: -437.6775
+ outSlope: -437.6775
+ tangentMode: 0
+ - time: 0.13333334
+ value: 156.87889
+ inSlope: -134.41637
+ outSlope: -134.4163
+ tangentMode: 0
+ - time: 0.16666669
+ value: 157.28825
+ inSlope: 23.273153
+ outSlope: 23.281794
+ tangentMode: 0
+ - time: 0.40000004
+ value: 173.41972
+ inSlope: 83.61007
+ outSlope: 83.540276
+ tangentMode: 0
+ - time: 0.6
+ value: 183.62193
+ inSlope: 5.0241857
+ outSlope: 5.0266733
+ tangentMode: 0
+ - time: 1.1333334
+ value: 179.5587
+ inSlope: -6.555318
+ outSlope: -6.5540833
+ tangentMode: 0
+ - time: 1.5666668
+ value: 182.67462
+ inSlope: 26.422115
+ outSlope: 26.508638
+ tangentMode: 0
+ - time: 1.7000002
+ value: 183.86957
+ inSlope: -13.003007
+ outSlope: -13.003007
+ tangentMode: 0
+ - time: 1.8333335
+ value: 183.62193
+ inSlope: 53.495525
+ outSlope: 53.520344
+ tangentMode: 0
+ - time: 1.9333335
+ value: 199.32368
+ inSlope: 206.07372
+ outSlope: 206.1466
+ tangentMode: 0
+ - time: 2.0000002
+ value: 211.22333
+ inSlope: 107.87329
+ outSlope: 107.77598
+ tangentMode: 0
+ - time: 2.0333335
+ value: 213.26106
+ inSlope: 61.302395
+ outSlope: 61.302395
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.000101739584
+ inSlope: -0.0000074831883
+ outSlope: -0.0000074831883
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.000101739584
+ inSlope: -0.0000074831883
+ outSlope: -0.0000074831883
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.000015790572
+ inSlope: -0.00000078459834
+ outSlope: -0.00000078459834
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.000015790572
+ inSlope: -0.00000078459834
+ outSlope: -0.00000078459834
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 307.9752
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 307.9752
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.0001017396
+ inSlope: -0.0000074831664
+ outSlope: -0.0000074831664
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.0001017396
+ inSlope: -0.0000074831664
+ outSlope: -0.0000074831664
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.000015790572
+ inSlope: -0.00000078459834
+ outSlope: -0.00000078459834
+ tangentMode: 0
+ - time: 2.0333335
+ value: 0.000015790572
+ inSlope: -0.00000078459834
+ outSlope: -0.00000078459834
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 307.9752
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 2.0333335
+ value: 307.9752
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightMiddle1/RightMiddle2/RightMiddle3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 13.1862545
+ inSlope: -31.88421
+ outSlope: -31.88421
+ tangentMode: 0
+ - time: 0.033333335
+ value: 12.073568
+ inSlope: -50.931755
+ outSlope: -50.931744
+ tangentMode: 0
+ - time: 0.06666668
+ value: 9.496182
+ inSlope: -95.25393
+ outSlope: -95.25396
+ tangentMode: 0
+ - time: 0.10000001
+ value: 5.8187146
+ inSlope: -99.07372
+ outSlope: -99.07372
+ tangentMode: 0
+ - time: 0.13333334
+ value: 3.5180175
+ inSlope: -36.350735
+ outSlope: -36.352093
+ tangentMode: 0
+ - time: 0.16666669
+ value: 3.5512972
+ inSlope: 1.8940251
+ outSlope: 1.8816234
+ tangentMode: 0
+ - time: 0.6333333
+ value: 5.604535
+ inSlope: -0.45640472
+ outSlope: -0.45744377
+ tangentMode: 0
+ - time: 1.5666668
+ value: 5.378823
+ inSlope: 6.1202893
+ outSlope: 6.512994
+ tangentMode: 0
+ - time: 1.7000002
+ value: 5.6723075
+ inSlope: -3.1497612
+ outSlope: -3.1459124
+ tangentMode: 0
+ - time: 1.8000001
+ value: 5.461538
+ inSlope: 2.2914097
+ outSlope: 2.293158
+ tangentMode: 0
+ - time: 1.8666668
+ value: 6.5978928
+ inSlope: 41.70029
+ outSlope: 41.70029
+ tangentMode: 0
+ - time: 1.9333335
+ value: 10.187569
+ inSlope: 44.093246
+ outSlope: 44.093246
+ tangentMode: 0
+ - time: 2.0000002
+ value: 12.744298
+ inSlope: 20.920483
+ outSlope: 21.336414
+ tangentMode: 0
+ - time: 2.0333335
+ value: 13.1862545
+ inSlope: 12.823289
+ outSlope: 12.823289
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 340.80823
+ inSlope: -28.82263
+ outSlope: -28.82263
+ tangentMode: 0
+ - time: 0.033333335
+ value: 339.91196
+ inSlope: -57.58758
+ outSlope: -57.58757
+ tangentMode: 0
+ - time: 0.06666668
+ value: 337.16675
+ inSlope: -91.74131
+ outSlope: -91.74134
+ tangentMode: 0
+ - time: 0.10000001
+ value: 333.48886
+ inSlope: -69.40888
+ outSlope: -69.40888
+ tangentMode: 0
+ - time: 0.13333334
+ value: 331.67957
+ inSlope: -23.381655
+ outSlope: -23.381643
+ tangentMode: 0
+ - time: 0.16666669
+ value: 331.70325
+ inSlope: 1.3513179
+ outSlope: 1.366817
+ tangentMode: 0
+ - time: 0.6333333
+ value: 333.29688
+ inSlope: -0.3743199
+ outSlope: -0.37314272
+ tangentMode: 0
+ - time: 1.5666668
+ value: 333.10605
+ inSlope: 5.9193735
+ outSlope: 5.5089574
+ tangentMode: 0
+ - time: 1.7000002
+ value: 333.3537
+ inSlope: -2.6216128
+ outSlope: -2.6239038
+ tangentMode: 0
+ - time: 1.8000001
+ value: 333.17856
+ inSlope: 1.930849
+ outSlope: 1.9294722
+ tangentMode: 0
+ - time: 1.8666668
+ value: 334.17944
+ inSlope: 39.71829
+ outSlope: 39.71829
+ tangentMode: 0
+ - time: 1.9333335
+ value: 337.93552
+ inSlope: 57.03685
+ outSlope: 57.03685
+ tangentMode: 0
+ - time: 2.0000002
+ value: 340.48077
+ inSlope: 21.250288
+ outSlope: 20.846577
+ tangentMode: 0
+ - time: 2.0333335
+ value: 340.80823
+ inSlope: 10.420542
+ outSlope: 10.420542
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 213.26106
+ inSlope: -289.29886
+ outSlope: -289.29886
+ tangentMode: 0
+ - time: 0.033333335
+ value: 203.6353
+ inSlope: -461.45184
+ outSlope: -461.45175
+ tangentMode: 0
+ - time: 0.06666668
+ value: 182.48575
+ inSlope: -624.1688
+ outSlope: -624.16907
+ tangentMode: 0
+ - time: 0.10000001
+ value: 161.6765
+ inSlope: -443.90125
+ outSlope: -443.90125
+ tangentMode: 0
+ - time: 0.13333334
+ value: 152.45831
+ inSlope: -135.36256
+ outSlope: -135.3625
+ tangentMode: 0
+ - time: 0.16666669
+ value: 152.57848
+ inSlope: 6.851346
+ outSlope: 6.8555675
+ tangentMode: 0
+ - time: 0.6333333
+ value: 160.74736
+ inSlope: -2.020798
+ outSlope: -2.020356
+ tangentMode: 0
+ - time: 1.5666668
+ value: 159.77306
+ inSlope: 28.302296
+ outSlope: 28.229715
+ tangentMode: 0
+ - time: 1.7000002
+ value: 161.0473
+ inSlope: -13.914186
+ outSlope: -13.916029
+ tangentMode: 0
+ - time: 1.8000001
+ value: 160.11998
+ inSlope: 9.920206
+ outSlope: 9.919959
+ tangentMode: 0
+ - time: 1.8666668
+ value: 165.33583
+ inSlope: 215.55638
+ outSlope: 215.55638
+ tangentMode: 0
+ - time: 1.9333335
+ value: 187.65306
+ inSlope: 373.08234
+ outSlope: 373.08234
+ tangentMode: 0
+ - time: 2.0000002
+ value: 209.49927
+ inSlope: 198.49806
+ outSlope: 198.52588
+ tangentMode: 0
+ - time: 2.0333335
+ value: 213.26106
+ inSlope: 112.99312
+ outSlope: 112.99312
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.000040537678
+ inSlope: -0.00047148202
+ outSlope: -0.00047148202
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.00004085688
+ inSlope: -0.00044275372
+ outSlope: -0.0004427536
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.000039381277
+ inSlope: -0.00057555793
+ outSlope: -0.00057555817
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.0000350239
+ inSlope: 0.0004055689
+ outSlope: 0.0004055689
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.000032169577
+ inSlope: 0.00014867992
+ outSlope: 0.00014867984
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.000032210453
+ inSlope: 0.00015235871
+ outSlope: 0.00001088277
+ tangentMode: 0
+ - time: 0.6333333
+ value: -0.000034761455
+ inSlope: 0.000027282067
+ outSlope: 0.00001364103
+ tangentMode: 0
+ - time: 1.5666668
+ value: -0.000034480552
+ inSlope: 0.000012738128
+ outSlope: 0.00007133355
+ tangentMode: 0
+ - time: 1.7333335
+ value: -0.000034695757
+ inSlope: 0.00007520723
+ outSlope: 0.00018801822
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.000034581535
+ inSlope: 0.00018287824
+ outSlope: 0.00018287792
+ tangentMode: 0
+ - time: 1.8666668
+ value: -0.000035998753
+ inSlope: 0.0002466527
+ outSlope: 0.0002466527
+ tangentMode: 0
+ - time: 1.9333335
+ value: -0.000040017236
+ inSlope: -0.0002591607
+ outSlope: -0.0002591607
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.000040736282
+ inSlope: -0.00022680363
+ outSlope: -0.00045360808
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.000040537678
+ inSlope: -0.0004714825
+ outSlope: -0.0004714825
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.0000050977683
+ inSlope: 0.0004587991
+ outSlope: 0.0004587991
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.0000000718901
+ inSlope: 0.0000064701085
+ outSlope: 0.000006470107
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.000010881416
+ inSlope: 0.0003939635
+ outSlope: 0.00039396362
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.000021038459
+ inSlope: -0.0005201703
+ outSlope: -0.0005201703
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.000025187464
+ inSlope: 0.00047971026
+ outSlope: 0.00047971006
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.000025135165
+ inSlope: 0.00048441702
+ outSlope: 0.00003460123
+ tangentMode: 0
+ - time: 0.6333333
+ value: 0.000021469314
+ inSlope: -0.000039924802
+ outSlope: -0.000019962397
+ tangentMode: 0
+ - time: 1.5666668
+ value: 0.000021917613
+ inSlope: -0.000021403357
+ outSlope: -0.00011985885
+ tangentMode: 0
+ - time: 1.7333335
+ value: 0.000021575319
+ inSlope: -0.00011369756
+ outSlope: -0.0002842441
+ tangentMode: 0
+ - time: 1.8000001
+ value: 0.000021757936
+ inSlope: -0.00029246192
+ outSlope: -0.0002924614
+ tangentMode: 0
+ - time: 1.8666668
+ value: 0.00001932304
+ inSlope: -0.00018289118
+ outSlope: -0.00018289118
+ tangentMode: 0
+ - time: 1.9333335
+ value: 0.00000824079
+ inSlope: 0.0003158097
+ outSlope: 0.0003158097
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.00000313781
+ inSlope: 0.00014120134
+ outSlope: 0.00028240317
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.0000050977683
+ inSlope: 0.00045879956
+ outSlope: 0.00045879956
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 339.9547
+ inSlope: -211.9702
+ outSlope: -211.9702
+ tangentMode: 0
+ - time: 0.033333335
+ value: 332.888
+ inSlope: -338.70847
+ outSlope: -338.7084
+ tangentMode: 0
+ - time: 0.06666668
+ value: 317.3412
+ inSlope: -464.6584
+ outSlope: -464.65854
+ tangentMode: 0
+ - time: 0.10000001
+ value: 301.7944
+ inSlope: -337.8873
+ outSlope: -337.8873
+ tangentMode: 0
+ - time: 0.13333334
+ value: 294.7277
+ inSlope: -104.50196
+ outSlope: -104.501915
+ tangentMode: 0
+ - time: 0.16666669
+ value: 294.82077
+ inSlope: 5.3063946
+ outSlope: 5.3060045
+ tangentMode: 0
+ - time: 0.6333333
+ value: 301.08694
+ inSlope: -1.534947
+ outSlope: -1.5349467
+ tangentMode: 0
+ - time: 1.5666668
+ value: 300.34503
+ inSlope: 21.465809
+ outSlope: 21.489264
+ tangentMode: 0
+ - time: 1.7333335
+ value: 300.91205
+ inSlope: -10.572696
+ outSlope: -10.572978
+ tangentMode: 0
+ - time: 1.8000001
+ value: 300.61
+ inSlope: 7.5517344
+ outSlope: 7.551721
+ tangentMode: 0
+ - time: 1.8666668
+ value: 304.5616
+ inSlope: 161.96443
+ outSlope: 161.96443
+ tangentMode: 0
+ - time: 1.9333335
+ value: 321.15088
+ inSlope: 274.47668
+ outSlope: 274.47668
+ tangentMode: 0
+ - time: 2.0000002
+ value: 337.19183
+ inSlope: 145.3847
+ outSlope: 145.45363
+ tangentMode: 0
+ - time: 2.0333335
+ value: 339.9547
+ inSlope: 82.86995
+ outSlope: 82.86995
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.000040537703
+ inSlope: -0.00047147973
+ outSlope: -0.00047147973
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.00004085691
+ inSlope: -0.0004427511
+ outSlope: -0.00044275098
+ tangentMode: 0
+ - time: 0.06666668
+ value: -0.0000393813
+ inSlope: -0.000575556
+ outSlope: -0.0005755562
+ tangentMode: 0
+ - time: 0.10000001
+ value: -0.000035023913
+ inSlope: 0.0004055702
+ outSlope: 0.0004055702
+ tangentMode: 0
+ - time: 0.13333334
+ value: -0.00003216959
+ inSlope: 0.00014868123
+ outSlope: 0.00014868115
+ tangentMode: 0
+ - time: 0.16666669
+ value: -0.00003253053
+ inSlope: 0.0001811656
+ outSlope: 0.000030194276
+ tangentMode: 0
+ - time: 0.3666667
+ value: -0.00004028077
+ inSlope: -0.00008243394
+ outSlope: -0.00007065767
+ tangentMode: 0
+ - time: 0.6
+ value: -0.000038679125
+ inSlope: -0.00009125026
+ outSlope: -0.00007984398
+ tangentMode: 0
+ - time: 0.8666667
+ value: -0.000038679125
+ inSlope: -0.00007984398
+ outSlope: -0.000022812561
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.000038679125
+ inSlope: -0.000022812561
+ outSlope: -0.0002129172
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.000039317572
+ inSlope: -0.0001937638
+ outSlope: -0.00019376357
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.000040456518
+ inSlope: -0.00015959525
+ outSlope: -0.00047878688
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.000040537703
+ inSlope: -0.00047148022
+ outSlope: -0.00047148022
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.000005097763
+ inSlope: 0.0004587986
+ outSlope: 0.0004587986
+ tangentMode: 0
+ - time: 0.033333335
+ value: -0.000000071881956
+ inSlope: 0.000006469376
+ outSlope: 0.0000064693745
+ tangentMode: 0
+ - time: 0.06666668
+ value: 0.000010881428
+ inSlope: 0.00039396234
+ outSlope: 0.0003939625
+ tangentMode: 0
+ - time: 0.10000001
+ value: 0.000021038479
+ inSlope: -0.0005201721
+ outSlope: -0.0005201721
+ tangentMode: 0
+ - time: 0.13333334
+ value: 0.000025187484
+ inSlope: 0.00047970845
+ outSlope: 0.00047970825
+ tangentMode: 0
+ - time: 0.16666669
+ value: 0.00002471956
+ inSlope: 0.0005218214
+ outSlope: 0.000086970256
+ tangentMode: 0
+ - time: 0.3666667
+ value: 0.0000068374893
+ inSlope: -0.00033144414
+ outSlope: -0.00028409503
+ tangentMode: 0
+ - time: 0.6
+ value: -0.0000131612005
+ inSlope: -0.000026968997
+ outSlope: -0.000023597873
+ tangentMode: 0
+ - time: 0.8666667
+ value: -0.0000131612005
+ inSlope: -0.000023597873
+ outSlope: -0.0000067422484
+ tangentMode: 0
+ - time: 1.8000001
+ value: -0.0000131612005
+ inSlope: -0.0000067422484
+ outSlope: -0.00006292764
+ tangentMode: 0
+ - time: 1.9000001
+ value: -0.000011109469
+ inSlope: -0.00012447959
+ outSlope: -0.00012447944
+ tangentMode: 0
+ - time: 2.0000002
+ value: -0.0000057063617
+ inSlope: 0.0001711906
+ outSlope: 0.000513573
+ tangentMode: 0
+ - time: 2.0333335
+ value: -0.000005097763
+ inSlope: 0.00045879907
+ outSlope: 0.00045879907
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 339.9547
+ inSlope: -211.9702
+ outSlope: -211.9702
+ tangentMode: 0
+ - time: 0.033333335
+ value: 332.888
+ inSlope: -338.70847
+ outSlope: -338.7084
+ tangentMode: 0
+ - time: 0.06666668
+ value: 317.3412
+ inSlope: -464.6584
+ outSlope: -464.65854
+ tangentMode: 0
+ - time: 0.10000001
+ value: 301.7944
+ inSlope: -337.8873
+ outSlope: -337.8873
+ tangentMode: 0
+ - time: 0.13333334
+ value: 294.7277
+ inSlope: -93.47169
+ outSlope: -93.47164
+ tangentMode: 0
+ - time: 0.16666669
+ value: 295.55643
+ inSlope: 47.2357
+ outSlope: 47.23251
+ tangentMode: 0
+ - time: 0.3666667
+ value: 323.15332
+ inSlope: 180.73973
+ outSlope: 180.4999
+ tangentMode: 0
+ - time: 0.6
+ value: 351.5789
+ inSlope: 12.429853
+ outSlope: 12.430688
+ tangentMode: 0
+ - time: 0.8666667
+ value: 351.5789
+ inSlope: -0.00034332278
+ outSlope: -0.00009809221
+ tangentMode: 0
+ - time: 1.8000001
+ value: 351.5789
+ inSlope: -0.00009809221
+ outSlope: -0.0009155271
+ tangentMode: 0
+ - time: 1.9000001
+ value: 348.56522
+ inSlope: -74.252
+ outSlope: -74.25374
+ tangentMode: 0
+ - time: 2.0000002
+ value: 340.81577
+ inSlope: -45.196774
+ outSlope: -45.200542
+ tangentMode: 0
+ - time: 2.0333335
+ value: 339.9547
+ inSlope: -25.828882
+ outSlope: -25.828882
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: localEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/RightIndex1/RightIndex2/RightIndex3
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve: []
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalEulerAngles.x
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve: []
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalEulerAngles.y
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ classID: 4
+ script: {fileID: 0}
+ - curve:
+ serializedVersion: 2
+ m_Curve: []
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ attribute: m_LocalEulerAngles.z
+ path: Skeleton/Spine1/RightArm1/RightArm2/RightArm3/RightArm4/RightArm5/RightArm6/RightArmEnd/CoffeeCup
+ classID: 4
+ script: {fileID: 0}
+ m_HasGenericRootTransform: 0
+ m_HasMotionFloatCurves: 0
+ m_GenerateMotionCurves: 0
+ m_Events: []
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeebotMakeCoffeeWithCup.anim.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeebotMakeCoffeeWithCup.anim.meta
new file mode 100644
index 00000000..476fa95b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CoffeebotMakeCoffeeWithCup.anim.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: bb7fa01900e018b4cba3b01cc242f400
+timeCreated: 1462465212
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CustomerIdle.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CustomerIdle.fbx
new file mode 100644
index 00000000..795bc2ab
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CustomerIdle.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CustomerIdle.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CustomerIdle.fbx.meta
new file mode 100644
index 00000000..f8cd28c2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/CustomerIdle.fbx.meta
@@ -0,0 +1,373 @@
+fileFormatVersion: 2
+guid: 33113e3691f1fc842a04491169555506
+timeCreated: 1461757334
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: //RootNode
+ 100004: Head
+ 100006: HeadEnd
+ 100008: Hips
+ 100010: LeftArm
+ 100012: LeftFoot
+ 100014: LeftHand
+ 100016: LeftIndex1
+ 100018: LeftIndex2
+ 100020: LeftIndex3
+ 100022: LeftIndexEnd
+ 100024: LeftLeg
+ 100026: LeftMiddle1
+ 100028: LeftMiddle2
+ 100030: LeftMiddle3
+ 100032: LeftMiddleEnd
+ 100034: LeftPinky1
+ 100036: LeftPinky2
+ 100038: LeftPinky3
+ 100040: LeftPinkyEnd
+ 100042: LeftRing1
+ 100044: LeftRing2
+ 100046: LeftRing3
+ 100048: LeftRingEnd
+ 100050: LeftShoulder
+ 100052: LeftThumb1
+ 100054: LeftThumb2
+ 100056: LeftThumb3
+ 100058: LeftThumbEnd
+ 100060: LeftToe
+ 100062: LeftToeEnd
+ 100064: LeftUpLeg
+ 100066: LeftUpperArm
+ 100068: Mouth
+ 100070: Neck
+ 100072: RightArm
+ 100074: RightFoot
+ 100076: RightHand
+ 100078: RightIndex1
+ 100080: RightIndex2
+ 100082: RightIndex3
+ 100084: RightIndexEnd
+ 100086: RightLeg
+ 100088: RightMiddle1
+ 100090: RightMiddle2
+ 100092: RightMiddle3
+ 100094: RightMiddleEnd
+ 100096: RightPinky1
+ 100098: RightPinky2
+ 100100: RightPinky3
+ 100102: RightPinkyEnd
+ 100104: RightRing1
+ 100106: RightRing2
+ 100108: RightRing3
+ 100110: RightRingEnd
+ 100112: RightShoulder
+ 100114: RightThumb1
+ 100116: RightThumb2
+ 100118: RightThumb3
+ 100120: RightThumbEnd
+ 100122: RightToe
+ 100124: RightToeEnd
+ 100126: RightUpLeg
+ 100128: RightUpperArm
+ 100130: Skeleton
+ 100132: Spine1
+ 100134: Spine2
+ 400000: Controls
+ 400002: //RootNode
+ 400004: Head
+ 400006: HeadEnd
+ 400008: Hips
+ 400010: LeftArm
+ 400012: LeftFoot
+ 400014: LeftHand
+ 400016: LeftIndex1
+ 400018: LeftIndex2
+ 400020: LeftIndex3
+ 400022: LeftIndexEnd
+ 400024: LeftLeg
+ 400026: LeftMiddle1
+ 400028: LeftMiddle2
+ 400030: LeftMiddle3
+ 400032: LeftMiddleEnd
+ 400034: LeftPinky1
+ 400036: LeftPinky2
+ 400038: LeftPinky3
+ 400040: LeftPinkyEnd
+ 400042: LeftRing1
+ 400044: LeftRing2
+ 400046: LeftRing3
+ 400048: LeftRingEnd
+ 400050: LeftShoulder
+ 400052: LeftThumb1
+ 400054: LeftThumb2
+ 400056: LeftThumb3
+ 400058: LeftThumbEnd
+ 400060: LeftToe
+ 400062: LeftToeEnd
+ 400064: LeftUpLeg
+ 400066: LeftUpperArm
+ 400068: Mouth
+ 400070: Neck
+ 400072: RightArm
+ 400074: RightFoot
+ 400076: RightHand
+ 400078: RightIndex1
+ 400080: RightIndex2
+ 400082: RightIndex3
+ 400084: RightIndexEnd
+ 400086: RightLeg
+ 400088: RightMiddle1
+ 400090: RightMiddle2
+ 400092: RightMiddle3
+ 400094: RightMiddleEnd
+ 400096: RightPinky1
+ 400098: RightPinky2
+ 400100: RightPinky3
+ 400102: RightPinkyEnd
+ 400104: RightRing1
+ 400106: RightRing2
+ 400108: RightRing3
+ 400110: RightRingEnd
+ 400112: RightShoulder
+ 400114: RightThumb1
+ 400116: RightThumb2
+ 400118: RightThumb3
+ 400120: RightThumbEnd
+ 400122: RightToe
+ 400124: RightToeEnd
+ 400126: RightUpLeg
+ 400128: RightUpperArm
+ 400130: Skeleton
+ 400132: Spine1
+ 400134: Spine2
+ 7400000: CustomerIdle
+ 9500000: //RootNode
+ materials:
+ importMaterials: 0
+ materialName: 0
+ materialSearch: 1
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: CustomerIdle
+ takeName: Take 001
+ firstFrame: 0
+ lastFrame: 300
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 1
+ loopBlend: 0
+ loopBlendOrientation: 0
+ loopBlendPositionY: 0
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 1
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Hips
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToe
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToe/LeftToeEnd
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot/RightToe
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot/RightToe/RightToeEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftPinky1/LeftPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3/LeftPinkyEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftRing1/LeftRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftRing1/LeftRing2/LeftRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftRing1/LeftRing2/LeftRing3/LeftRingEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftUpperArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/HeadEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/Mouth
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightIndex1/RightIndex2/RightIndex3/RightIndexEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightPinky1/RightPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightPinky1/RightPinky2/RightPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightPinky1/RightPinky2/RightPinky3/RightPinkyEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightRing1/RightRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightRing1/RightRing2/RightRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightRing1/RightRing2/RightRing3/RightRingEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightUpperArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/FruitVendorIdle.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/FruitVendorIdle.fbx
new file mode 100644
index 00000000..68db7cc7
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/FruitVendorIdle.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/FruitVendorIdle.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/FruitVendorIdle.fbx.meta
new file mode 100644
index 00000000..818abc53
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/FruitVendorIdle.fbx.meta
@@ -0,0 +1,389 @@
+fileFormatVersion: 2
+guid: d4e3dafe974b62f42ae5f71dbcee2d39
+timeCreated: 1461664492
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: //RootNode
+ 100004: Hair
+ 100006: HairEnd
+ 100008: Head
+ 100010: Hips
+ 100012: LeftArm
+ 100014: LeftEye
+ 100016: LeftFoot
+ 100018: LeftForeArm
+ 100020: LeftHand
+ 100022: LeftIndex1
+ 100024: LeftIndex2
+ 100026: LeftIndex3
+ 100028: LeftIndexEnd
+ 100030: LeftLeg
+ 100032: LeftMiddle1
+ 100034: LeftMiddle2
+ 100036: LeftMiddle3
+ 100038: LeftMiddleEnd
+ 100040: LeftPinky1
+ 100042: LeftPinky2
+ 100044: LeftPinky3
+ 100046: LeftPinkyEnd
+ 100048: LeftRing1
+ 100050: LeftRing2
+ 100052: LeftRing3
+ 100054: LeftRingEnd
+ 100056: LeftShoulder
+ 100058: LeftThumb1
+ 100060: LeftThumb2
+ 100062: LeftThumb3
+ 100064: LeftThumbEnd
+ 100066: LeftToe
+ 100068: LeftToeEnd
+ 100070: LeftUpLeg
+ 100072: LowerEyeLids
+ 100074: Mouth
+ 100076: RightArm
+ 100078: RightEye
+ 100080: RightFoot
+ 100082: RightForeArm
+ 100084: RightHand
+ 100086: RightIndex1
+ 100088: RightIndex2
+ 100090: RightIndex3
+ 100092: RightIndexEnd
+ 100094: RightLeg
+ 100096: RightMiddle1
+ 100098: RightMiddle2
+ 100100: RightMiddle3
+ 100102: RightMiddleEnd
+ 100104: RightPinky1
+ 100106: RightPinky2
+ 100108: RightPinky3
+ 100110: RightPinkyEnd
+ 100112: RightRing1
+ 100114: RightRing2
+ 100116: RightRing3
+ 100118: RightRingEnd
+ 100120: RightShoulder
+ 100122: RightThumb1
+ 100124: RightThumb2
+ 100126: RightThumb3
+ 100128: RightThumbEnd
+ 100130: RightToe
+ 100132: RightToeEnd
+ 100134: RightUpLeg
+ 100136: Skeleton
+ 100138: Spine1
+ 100140: Spine2
+ 100142: UpperEyeLids
+ 400000: Controls
+ 400002: //RootNode
+ 400004: Hair
+ 400006: HairEnd
+ 400008: Head
+ 400010: Hips
+ 400012: LeftArm
+ 400014: LeftEye
+ 400016: LeftFoot
+ 400018: LeftForeArm
+ 400020: LeftHand
+ 400022: LeftIndex1
+ 400024: LeftIndex2
+ 400026: LeftIndex3
+ 400028: LeftIndexEnd
+ 400030: LeftLeg
+ 400032: LeftMiddle1
+ 400034: LeftMiddle2
+ 400036: LeftMiddle3
+ 400038: LeftMiddleEnd
+ 400040: LeftPinky1
+ 400042: LeftPinky2
+ 400044: LeftPinky3
+ 400046: LeftPinkyEnd
+ 400048: LeftRing1
+ 400050: LeftRing2
+ 400052: LeftRing3
+ 400054: LeftRingEnd
+ 400056: LeftShoulder
+ 400058: LeftThumb1
+ 400060: LeftThumb2
+ 400062: LeftThumb3
+ 400064: LeftThumbEnd
+ 400066: LeftToe
+ 400068: LeftToeEnd
+ 400070: LeftUpLeg
+ 400072: LowerEyeLids
+ 400074: Mouth
+ 400076: RightArm
+ 400078: RightEye
+ 400080: RightFoot
+ 400082: RightForeArm
+ 400084: RightHand
+ 400086: RightIndex1
+ 400088: RightIndex2
+ 400090: RightIndex3
+ 400092: RightIndexEnd
+ 400094: RightLeg
+ 400096: RightMiddle1
+ 400098: RightMiddle2
+ 400100: RightMiddle3
+ 400102: RightMiddleEnd
+ 400104: RightPinky1
+ 400106: RightPinky2
+ 400108: RightPinky3
+ 400110: RightPinkyEnd
+ 400112: RightRing1
+ 400114: RightRing2
+ 400116: RightRing3
+ 400118: RightRingEnd
+ 400120: RightShoulder
+ 400122: RightThumb1
+ 400124: RightThumb2
+ 400126: RightThumb3
+ 400128: RightThumbEnd
+ 400130: RightToe
+ 400132: RightToeEnd
+ 400134: RightUpLeg
+ 400136: Skeleton
+ 400138: Spine1
+ 400140: Spine2
+ 400142: UpperEyeLids
+ 7400000: FruitVendorIdle
+ 9500000: //RootNode
+ materials:
+ importMaterials: 0
+ materialName: 0
+ materialSearch: 1
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: FruitVendorIdle
+ takeName: Take 001
+ firstFrame: 1
+ lastFrame: 80
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 1
+ loopBlend: 0
+ loopBlendOrientation: 0
+ loopBlendPositionY: 0
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 1
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Hips
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToe
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToe/LeftToeEnd
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot/RightToe
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot/RightToe/RightToeEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/Hair
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/Hair/HairEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/LeftEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/LowerEyeLids
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/Mouth
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/RightEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/UpperEyeLids
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftPinky1/LeftPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3/LeftPinkyEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftRing1/LeftRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftRing1/LeftRing2/LeftRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftRing1/LeftRing2/LeftRing3/LeftRingEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightIndex1/RightIndex2/RightIndex3/RightIndexEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightPinky1/RightPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightPinky1/RightPinky2/RightPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightPinky1/RightPinky2/RightPinky3/RightPinkyEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightRing1/RightRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightRing1/RightRing2/RightRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightRing1/RightRing2/RightRing3/RightRingEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 1
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/GuardIdle.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/GuardIdle.fbx
new file mode 100644
index 00000000..9a5c6945
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/GuardIdle.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/GuardIdle.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/GuardIdle.fbx.meta
new file mode 100644
index 00000000..02419633
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/GuardIdle.fbx.meta
@@ -0,0 +1,385 @@
+fileFormatVersion: 2
+guid: 9188a43929f6dde4e84a96c5b7224c3b
+timeCreated: 1460644831
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: DownEyeLid
+ 100004: //RootNode
+ 100006: Head
+ 100008: HeadEnd
+ 100010: Hips
+ 100012: LeftArm
+ 100014: LeftEye
+ 100016: LeftFoot
+ 100018: LeftForeArm
+ 100020: LeftHand
+ 100022: LeftIndex1
+ 100024: LeftIndex2
+ 100026: LeftIndex3
+ 100028: LeftIndexEnd
+ 100030: LeftLeg
+ 100032: LeftMiddle1
+ 100034: LeftMiddle2
+ 100036: LeftMiddle3
+ 100038: LeftMiddleEnd
+ 100040: LeftPinky1
+ 100042: LeftPinky2
+ 100044: LeftPinky3
+ 100046: LeftPinkyEnd
+ 100048: LeftRing1
+ 100050: LeftRing2
+ 100052: LeftRing3
+ 100054: LeftRingEnd
+ 100056: LeftShoulder
+ 100058: LeftThumb1
+ 100060: LeftThumb2
+ 100062: LeftThumb3
+ 100064: LeftThumbEnd
+ 100066: LeftToe
+ 100068: LeftToeEnd
+ 100070: LeftUpLeg
+ 100072: Mouth
+ 100074: RightArm
+ 100076: RightEye
+ 100078: RightFoot
+ 100080: RightForeArm
+ 100082: RightHand
+ 100084: RightIndex1
+ 100086: RightIndex2
+ 100088: RightIndex3
+ 100090: RightIndexEnd
+ 100092: RightLeg
+ 100094: RightMiddle1
+ 100096: RightMiddle2
+ 100098: RightMiddle3
+ 100100: RightMiddleEnd
+ 100102: RightPinky1
+ 100104: RightPinky2
+ 100106: RightPinky3
+ 100108: RightPinkyEnd
+ 100110: RightRing1
+ 100112: RightRing2
+ 100114: RightRing3
+ 100116: RightRingEnd
+ 100118: RightShoulder
+ 100120: RightThumb1
+ 100122: RightThumb2
+ 100124: RightThumb3
+ 100126: RightThumbEnd
+ 100128: RightToe
+ 100130: RightToeEnd
+ 100132: RightUpLeg
+ 100134: Skeleton
+ 100136: Spine1
+ 100138: Spine2
+ 100140: UpEyeLid
+ 400000: Controls
+ 400002: DownEyeLid
+ 400004: //RootNode
+ 400006: Head
+ 400008: HeadEnd
+ 400010: Hips
+ 400012: LeftArm
+ 400014: LeftEye
+ 400016: LeftFoot
+ 400018: LeftForeArm
+ 400020: LeftHand
+ 400022: LeftIndex1
+ 400024: LeftIndex2
+ 400026: LeftIndex3
+ 400028: LeftIndexEnd
+ 400030: LeftLeg
+ 400032: LeftMiddle1
+ 400034: LeftMiddle2
+ 400036: LeftMiddle3
+ 400038: LeftMiddleEnd
+ 400040: LeftPinky1
+ 400042: LeftPinky2
+ 400044: LeftPinky3
+ 400046: LeftPinkyEnd
+ 400048: LeftRing1
+ 400050: LeftRing2
+ 400052: LeftRing3
+ 400054: LeftRingEnd
+ 400056: LeftShoulder
+ 400058: LeftThumb1
+ 400060: LeftThumb2
+ 400062: LeftThumb3
+ 400064: LeftThumbEnd
+ 400066: LeftToe
+ 400068: LeftToeEnd
+ 400070: LeftUpLeg
+ 400072: Mouth
+ 400074: RightArm
+ 400076: RightEye
+ 400078: RightFoot
+ 400080: RightForeArm
+ 400082: RightHand
+ 400084: RightIndex1
+ 400086: RightIndex2
+ 400088: RightIndex3
+ 400090: RightIndexEnd
+ 400092: RightLeg
+ 400094: RightMiddle1
+ 400096: RightMiddle2
+ 400098: RightMiddle3
+ 400100: RightMiddleEnd
+ 400102: RightPinky1
+ 400104: RightPinky2
+ 400106: RightPinky3
+ 400108: RightPinkyEnd
+ 400110: RightRing1
+ 400112: RightRing2
+ 400114: RightRing3
+ 400116: RightRingEnd
+ 400118: RightShoulder
+ 400120: RightThumb1
+ 400122: RightThumb2
+ 400124: RightThumb3
+ 400126: RightThumbEnd
+ 400128: RightToe
+ 400130: RightToeEnd
+ 400132: RightUpLeg
+ 400134: Skeleton
+ 400136: Spine1
+ 400138: Spine2
+ 400140: UpEyeLid
+ 7400000: GuardIdle
+ 9500000: //RootNode
+ materials:
+ importMaterials: 0
+ materialName: 0
+ materialSearch: 1
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: GuardIdle
+ takeName: Take 001
+ firstFrame: 0
+ lastFrame: 120
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 1
+ loopBlend: 0
+ loopBlendOrientation: 0
+ loopBlendPositionY: 0
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 1
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Hips
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToe
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToe/LeftToeEnd
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot/RightToe
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot/RightToe/RightToeEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/DownEyeLid
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/HeadEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/LeftEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/Mouth
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/RightEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/UpEyeLid
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftPinky1/LeftPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3/LeftPinkyEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftRing1/LeftRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftRing1/LeftRing2/LeftRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftRing1/LeftRing2/LeftRing3/LeftRingEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightIndex1/RightIndex2/RightIndex3/RightIndexEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightPinky1/RightPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightPinky1/RightPinky2/RightPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightPinky1/RightPinky2/RightPinky3/RightPinkyEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightRing1/RightRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightRing1/RightRing2/RightRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightRing1/RightRing2/RightRing3/RightRingEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForeArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/SecondHandSalesmanTalk.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/SecondHandSalesmanTalk.fbx
new file mode 100644
index 00000000..42aef453
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/SecondHandSalesmanTalk.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/SecondHandSalesmanTalk.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/SecondHandSalesmanTalk.fbx.meta
new file mode 100644
index 00000000..7c26df65
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/SecondHandSalesmanTalk.fbx.meta
@@ -0,0 +1,325 @@
+fileFormatVersion: 2
+guid: 60100f1c1f843e446a3ffe008e517e8c
+timeCreated: 1461059947
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: EyeLidDown
+ 100004: EyelidUp
+ 100006: Head
+ 100008: HeadEnd
+ 100010: Hips
+ 100012: LeftArm
+ 100014: LeftEye
+ 100016: LeftFoot
+ 100018: LeftForearm
+ 100020: LeftHand
+ 100022: LeftIndex1
+ 100024: LeftIndex2
+ 100026: LeftIndexEnd
+ 100028: LeftLeg
+ 100030: LeftMiddle1
+ 100032: LeftMiddle2
+ 100034: LeftMiddleEnd
+ 100036: LeftPinky1
+ 100038: LeftPinky2
+ 100040: LeftPinkyEnd
+ 100042: LeftShoulder
+ 100044: LeftThumb1
+ 100046: LeftThumb2
+ 100048: LeftThumbEnd
+ 100050: LeftToe
+ 100052: LeftToeEnd
+ 100054: LeftUpLeg
+ 100056: Mouth
+ 100058: Neck
+ 100060: RightArm
+ 100062: RightEye
+ 100064: RightFoot
+ 100066: RightForearm
+ 100068: RightHand
+ 100070: RightIndex1
+ 100072: RightIndex2
+ 100074: RightIndexEnd
+ 100076: RightLeg
+ 100078: RightMiddle1
+ 100080: RightMiddle2
+ 100082: RightMiddleEnd
+ 100084: RightPinky1
+ 100086: RightPinky2
+ 100088: RightPinkyEnd
+ 100090: RightShoulder
+ 100092: RightThumb1
+ 100094: RightThumb2
+ 100096: RightThumbEnd
+ 100098: RightToe
+ 100100: RightToeEnd
+ 100102: RightUpLeg
+ 100104: //RootNode
+ 100106: Skeleton
+ 100108: Spine1
+ 100110: Spine2
+ 400000: Controls
+ 400002: EyeLidDown
+ 400004: EyelidUp
+ 400006: Head
+ 400008: HeadEnd
+ 400010: Hips
+ 400012: LeftArm
+ 400014: LeftEye
+ 400016: LeftFoot
+ 400018: LeftForearm
+ 400020: LeftHand
+ 400022: LeftIndex1
+ 400024: LeftIndex2
+ 400026: LeftIndexEnd
+ 400028: LeftLeg
+ 400030: LeftMiddle1
+ 400032: LeftMiddle2
+ 400034: LeftMiddleEnd
+ 400036: LeftPinky1
+ 400038: LeftPinky2
+ 400040: LeftPinkyEnd
+ 400042: LeftShoulder
+ 400044: LeftThumb1
+ 400046: LeftThumb2
+ 400048: LeftThumbEnd
+ 400050: LeftToe
+ 400052: LeftToeEnd
+ 400054: LeftUpLeg
+ 400056: Mouth
+ 400058: Neck
+ 400060: RightArm
+ 400062: RightEye
+ 400064: RightFoot
+ 400066: RightForearm
+ 400068: RightHand
+ 400070: RightIndex1
+ 400072: RightIndex2
+ 400074: RightIndexEnd
+ 400076: RightLeg
+ 400078: RightMiddle1
+ 400080: RightMiddle2
+ 400082: RightMiddleEnd
+ 400084: RightPinky1
+ 400086: RightPinky2
+ 400088: RightPinkyEnd
+ 400090: RightShoulder
+ 400092: RightThumb1
+ 400094: RightThumb2
+ 400096: RightThumbEnd
+ 400098: RightToe
+ 400100: RightToeEnd
+ 400102: RightUpLeg
+ 400104: //RootNode
+ 400106: Skeleton
+ 400108: Spine1
+ 400110: Spine2
+ 7400000: SecondHandSalesmanTalk
+ 9500000: //RootNode
+ materials:
+ importMaterials: 0
+ materialName: 0
+ materialSearch: 1
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: SecondHandSalesmanTalk
+ takeName: Take 001
+ firstFrame: 0
+ lastFrame: 150
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 1
+ loopBlend: 0
+ loopBlendOrientation: 0
+ loopBlendPositionY: 0
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 1
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Hips
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToe
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToe/LeftToeEnd
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot/RightToe
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot/RightToe/RightToeEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm/LeftHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm/LeftHand/LeftIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm/LeftHand/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm/LeftHand/LeftIndex1/LeftIndex2/LeftIndexEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm/LeftHand/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm/LeftHand/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddleEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm/LeftHand/LeftPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm/LeftHand/LeftPinky1/LeftPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm/LeftHand/LeftPinky1/LeftPinky2/LeftPinkyEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm/LeftHand/LeftThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm/LeftHand/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftArm/LeftForearm/LeftHand/LeftThumb1/LeftThumb2/LeftThumbEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/EyeLidDown
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/EyelidUp
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/HeadEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LeftEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/Mouth
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/RightEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm/RightHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm/RightHand/RightIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm/RightHand/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm/RightHand/RightIndex1/RightIndex2/RightIndexEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm/RightHand/RightMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm/RightHand/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm/RightHand/RightMiddle1/RightMiddle2/RightMiddleEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm/RightHand/RightPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm/RightHand/RightPinky1/RightPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm/RightHand/RightPinky1/RightPinky2/RightPinkyEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm/RightHand/RightThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm/RightHand/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightArm/RightForearm/RightHand/RightThumb1/RightThumb2/RightThumbEnd
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/SharkmanIdleTalk.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/SharkmanIdleTalk.fbx
new file mode 100644
index 00000000..df20dc83
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/SharkmanIdleTalk.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/SharkmanIdleTalk.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/SharkmanIdleTalk.fbx.meta
new file mode 100644
index 00000000..fbd8f58b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/NPC/SharkmanIdleTalk.fbx.meta
@@ -0,0 +1,490 @@
+fileFormatVersion: 2
+guid: 2351c32753509ec4f8e7908b04f78edf
+timeCreated: 1461152368
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: Eyes
+ 100004: Head
+ 100006: HeadEnd
+ 100008: Hips
+ 100010: LeftArm
+ 100012: LeftClavicle
+ 100014: LeftFoot
+ 100016: LeftHand
+ 100018: LeftIndex1
+ 100020: LeftIndex2
+ 100022: LeftIndex3
+ 100024: LeftIndexEnd
+ 100026: LeftLeg
+ 100028: LeftMiddle1
+ 100030: LeftMiddle2
+ 100032: LeftMiddle3
+ 100034: LeftMiddleEnd
+ 100036: LeftPinky1
+ 100038: LeftPinky2
+ 100040: LeftPinky3
+ 100042: LeftPinkyEnd
+ 100044: LeftThumb1
+ 100046: LeftThumb2
+ 100048: LeftThumb3
+ 100050: LeftThumbEnd
+ 100052: LeftToe
+ 100054: LeftToeEnd
+ 100056: LeftUpLeg
+ 100058: LeftUpperArm
+ 100060: Mouth
+ 100062: RightArm
+ 100064: RightClavicle
+ 100066: RightFoot
+ 100068: RightHand
+ 100070: RightIndex1
+ 100072: RightIndex2
+ 100074: RightIndex3
+ 100076: RightIndexEnd
+ 100078: RightLeg
+ 100080: RightMiddle1
+ 100082: RightMiddle2
+ 100084: RightMiddle3
+ 100086: RightMiddleEnd
+ 100088: RightPinky1
+ 100090: RightPinky2
+ 100092: RightPinky3
+ 100094: RightPinkyEnd
+ 100096: RightThumb1
+ 100098: RightThumb2
+ 100100: RightThumb3
+ 100102: RightThumbEnd
+ 100104: RightToe
+ 100106: RightToeEnd
+ 100108: RightUpLeg
+ 100110: RightUpperArm
+ 100112: //RootNode
+ 100114: Skeleton
+ 100116: Spine1
+ 100118: Spine2
+ 400000: Controls
+ 400002: Eyes
+ 400004: Head
+ 400006: HeadEnd
+ 400008: Hips
+ 400010: LeftArm
+ 400012: LeftClavicle
+ 400014: LeftFoot
+ 400016: LeftHand
+ 400018: LeftIndex1
+ 400020: LeftIndex2
+ 400022: LeftIndex3
+ 400024: LeftIndexEnd
+ 400026: LeftLeg
+ 400028: LeftMiddle1
+ 400030: LeftMiddle2
+ 400032: LeftMiddle3
+ 400034: LeftMiddleEnd
+ 400036: LeftPinky1
+ 400038: LeftPinky2
+ 400040: LeftPinky3
+ 400042: LeftPinkyEnd
+ 400044: LeftThumb1
+ 400046: LeftThumb2
+ 400048: LeftThumb3
+ 400050: LeftThumbEnd
+ 400052: LeftToe
+ 400054: LeftToeEnd
+ 400056: LeftUpLeg
+ 400058: LeftUpperArm
+ 400060: Mouth
+ 400062: RightArm
+ 400064: RightClavicle
+ 400066: RightFoot
+ 400068: RightHand
+ 400070: RightIndex1
+ 400072: RightIndex2
+ 400074: RightIndex3
+ 400076: RightIndexEnd
+ 400078: RightLeg
+ 400080: RightMiddle1
+ 400082: RightMiddle2
+ 400084: RightMiddle3
+ 400086: RightMiddleEnd
+ 400088: RightPinky1
+ 400090: RightPinky2
+ 400092: RightPinky3
+ 400094: RightPinkyEnd
+ 400096: RightThumb1
+ 400098: RightThumb2
+ 400100: RightThumb3
+ 400102: RightThumbEnd
+ 400104: RightToe
+ 400106: RightToeEnd
+ 400108: RightUpLeg
+ 400110: RightUpperArm
+ 400112: //RootNode
+ 400114: Skeleton
+ 400116: Spine1
+ 400118: Spine2
+ 7400000: SharkmanIdle
+ 7400002: SharkmanTalk
+ 9500000: //RootNode
+ materials:
+ importMaterials: 0
+ materialName: 0
+ materialSearch: 1
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: SharkmanIdle
+ takeName: Take 001
+ firstFrame: 0
+ lastFrame: 215
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 1
+ loopBlend: 0
+ loopBlendOrientation: 0
+ loopBlendPositionY: 0
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 1
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Hips
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToe
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToe/LeftToeEnd
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot/RightToe
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot/RightToe/RightToeEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/Eyes
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/HeadEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/Mouth
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftPinky1/LeftPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3/LeftPinkyEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightIndex1/RightIndex2/RightIndex3/RightIndexEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightPinky1/RightPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightPinky1/RightPinky2/RightPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightPinky1/RightPinky2/RightPinky3/RightPinkyEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ - serializedVersion: 16
+ name: SharkmanTalk
+ takeName: Take 001
+ firstFrame: 216
+ lastFrame: 320
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 0
+ loopBlend: 0
+ loopBlendOrientation: 0
+ loopBlendPositionY: 0
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 1
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Hips
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToe
+ weight: 1
+ - path: Skeleton/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToe/LeftToeEnd
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot/RightToe
+ weight: 1
+ - path: Skeleton/Hips/RightUpLeg/RightLeg/RightFoot/RightToe/RightToeEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/Eyes
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/HeadEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Head/Mouth
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftPinky1/LeftPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3/LeftPinkyEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftClavicle/LeftArm/LeftUpperArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightIndex1/RightIndex2/RightIndex3/RightIndexEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightPinky1/RightPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightPinky1/RightPinky2/RightPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightPinky1/RightPinky2/RightPinky3/RightPinkyEnd
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightClavicle/RightArm/RightUpperArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player.meta
new file mode 100644
index 00000000..8d14edad
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 3d8874020d8a38d4d879b498fba88cdb
+folderAsset: yes
+timeCreated: 1462453427
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Idle.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Idle.fbx
new file mode 100644
index 00000000..16369fe9
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Idle.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Idle.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Idle.fbx.meta
new file mode 100644
index 00000000..d6735b38
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Idle.fbx.meta
@@ -0,0 +1,1458 @@
+fileFormatVersion: 2
+guid: c61460273d36d0b4e936b68977241e58
+timeCreated: 1473671714
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: ControlsEyeDirection
+ 100004: ControlsHips
+ 100006: ControlsLeftFoot
+ 100008: ControlsLeftHand
+ 100010: ControlsLeftIndex1
+ 100012: ControlsLeftIndex2
+ 100014: ControlsLeftIndex3
+ 100016: ControlsLeftLegPoleVector
+ 100018: ControlsLeftLegPoleVector1
+ 100020: ControlsLeftMiddle1
+ 100022: ControlsLeftMiddle2
+ 100024: ControlsLeftMiddle3
+ 100026: ControlsLeftPinky1
+ 100028: ControlsLeftPinky2
+ 100030: ControlsLeftPinky3
+ 100032: ControlsLeftRing1
+ 100034: ControlsLeftRing2
+ 100036: ControlsLeftRing3
+ 100038: ControlsLeftShoulder
+ 100040: ControlsLeftThumb1
+ 100042: ControlsLeftThumb2
+ 100044: ControlsLeftThumb3
+ 100046: ControlsLeftThumbOrient
+ 100048: ControlsLowerEyelid
+ 100050: ControlsNeck
+ 100052: ControlsRightFoot
+ 100054: ControlsRightHand
+ 100056: ControlsRightIndex1
+ 100058: ControlsRightIndex2
+ 100060: ControlsRightIndex3
+ 100062: ControlsRightLegPoleVector
+ 100064: ControlsRightLegPoleVector2
+ 100066: ControlsRightMiddle1
+ 100068: ControlsRightMiddle2
+ 100070: ControlsRightMiddle3
+ 100072: ControlsRightPinky1
+ 100074: ControlsRightPinky2
+ 100076: ControlsRightPinky3
+ 100078: ControlsRightRing1
+ 100080: ControlsRightRing2
+ 100082: ControlsRightRing3
+ 100084: ControlsRightShoulder
+ 100086: ControlsRightThumb1
+ 100088: ControlsRightThumb2
+ 100090: ControlsRightThumb3
+ 100092: ControlsRightThumbOrient
+ 100094: ControlsSpine1
+ 100096: ControlsSpine2
+ 100098: ControlsSpine3
+ 100100: ControlsUpperBody
+ 100102: ControlsUpperEyelid
+ 100104: Head
+ 100106: HeadEND
+ 100108: HeelPeel
+ 100110: HeelPeel 1
+ 100112: Hips
+ 100114: //RootNode
+ 100116: ikHandleLeftArm
+ 100118: ikHandleLeftFoot
+ 100120: ikHandleLeftLeg
+ 100122: ikHandleLeftToe
+ 100124: ikHandleRightArm
+ 100126: ikHandleRightFoot
+ 100128: ikHandleRightLeg
+ 100130: ikHandleRightToe
+ 100132: LeftArm
+ 100134: LeftEye
+ 100136: LeftFoot
+ 100138: LeftHand
+ 100140: LeftIndex1
+ 100142: LeftIndex2
+ 100144: LeftIndex3
+ 100146: LeftIndexEND
+ 100148: LeftLeg
+ 100150: LeftMiddle1
+ 100152: LeftMiddle2
+ 100154: LeftMiddle3
+ 100156: LeftMiddleEND
+ 100158: LeftPinky1
+ 100160: LeftPinky2
+ 100162: LeftPinky3
+ 100164: LeftPinkyEND
+ 100166: LeftRing1
+ 100168: LeftRing2
+ 100170: LeftRing3
+ 100172: LeftRingEND
+ 100174: LeftShoulder
+ 100176: LeftThumb1
+ 100178: LeftThumb2
+ 100180: LeftThumb3
+ 100182: LeftThumbEND
+ 100184: LeftThumbEnd
+ 100186: LeftToe
+ 100188: LeftToeEND
+ 100190: LeftUpperArm
+ 100192: LeftUpperLeg
+ 100194: LowerEyelids
+ 100196: Mesh
+ 100198: Neck
+ 100200: RightArm
+ 100202: RightEye
+ 100204: RightFoot
+ 100206: RightHand
+ 100208: RightIndex1
+ 100210: RightIndex2
+ 100212: RightIndex3
+ 100214: RightIndexEND
+ 100216: RightLeg
+ 100218: RightMiddle1
+ 100220: RightMiddle2
+ 100222: RightMiddle3
+ 100224: RightMiddleEND
+ 100226: RightPinky1
+ 100228: RightPinky2
+ 100230: RightPinky3
+ 100232: RightPinkyEND
+ 100234: RightRing1
+ 100236: RightRing2
+ 100238: RightRing3
+ 100240: RightRingEND
+ 100242: RightShoulder
+ 100244: RightThumb1
+ 100246: RightThumb2
+ 100248: RightThumb3
+ 100250: RightThumbEND
+ 100252: RightThumbEnd
+ 100254: RightToe
+ 100256: RightToeEND
+ 100258: RightUpperArm
+ 100260: RightUpperLeg
+ 100262: Skeleton
+ 100264: Spine1
+ 100266: Spine2
+ 100268: Swivel
+ 100270: Swivel 1
+ 100272: ToeTap
+ 100274: ToeTap 1
+ 100276: ToeTip
+ 100278: ToeTip 1
+ 100280: UpperEyelids
+ 100282: LowerEyelidsEND
+ 100284: UpperEyelidsEND
+ 400000: Controls
+ 400002: ControlsEyeDirection
+ 400004: ControlsHips
+ 400006: ControlsLeftFoot
+ 400008: ControlsLeftHand
+ 400010: ControlsLeftIndex1
+ 400012: ControlsLeftIndex2
+ 400014: ControlsLeftIndex3
+ 400016: ControlsLeftLegPoleVector
+ 400018: ControlsLeftLegPoleVector1
+ 400020: ControlsLeftMiddle1
+ 400022: ControlsLeftMiddle2
+ 400024: ControlsLeftMiddle3
+ 400026: ControlsLeftPinky1
+ 400028: ControlsLeftPinky2
+ 400030: ControlsLeftPinky3
+ 400032: ControlsLeftRing1
+ 400034: ControlsLeftRing2
+ 400036: ControlsLeftRing3
+ 400038: ControlsLeftShoulder
+ 400040: ControlsLeftThumb1
+ 400042: ControlsLeftThumb2
+ 400044: ControlsLeftThumb3
+ 400046: ControlsLeftThumbOrient
+ 400048: ControlsLowerEyelid
+ 400050: ControlsNeck
+ 400052: ControlsRightFoot
+ 400054: ControlsRightHand
+ 400056: ControlsRightIndex1
+ 400058: ControlsRightIndex2
+ 400060: ControlsRightIndex3
+ 400062: ControlsRightLegPoleVector
+ 400064: ControlsRightLegPoleVector2
+ 400066: ControlsRightMiddle1
+ 400068: ControlsRightMiddle2
+ 400070: ControlsRightMiddle3
+ 400072: ControlsRightPinky1
+ 400074: ControlsRightPinky2
+ 400076: ControlsRightPinky3
+ 400078: ControlsRightRing1
+ 400080: ControlsRightRing2
+ 400082: ControlsRightRing3
+ 400084: ControlsRightShoulder
+ 400086: ControlsRightThumb1
+ 400088: ControlsRightThumb2
+ 400090: ControlsRightThumb3
+ 400092: ControlsRightThumbOrient
+ 400094: ControlsSpine1
+ 400096: ControlsSpine2
+ 400098: ControlsSpine3
+ 400100: ControlsUpperBody
+ 400102: ControlsUpperEyelid
+ 400104: Head
+ 400106: HeadEND
+ 400108: HeelPeel
+ 400110: HeelPeel 1
+ 400112: Hips
+ 400114: //RootNode
+ 400116: ikHandleLeftArm
+ 400118: ikHandleLeftFoot
+ 400120: ikHandleLeftLeg
+ 400122: ikHandleLeftToe
+ 400124: ikHandleRightArm
+ 400126: ikHandleRightFoot
+ 400128: ikHandleRightLeg
+ 400130: ikHandleRightToe
+ 400132: LeftArm
+ 400134: LeftEye
+ 400136: LeftFoot
+ 400138: LeftHand
+ 400140: LeftIndex1
+ 400142: LeftIndex2
+ 400144: LeftIndex3
+ 400146: LeftIndexEND
+ 400148: LeftLeg
+ 400150: LeftMiddle1
+ 400152: LeftMiddle2
+ 400154: LeftMiddle3
+ 400156: LeftMiddleEND
+ 400158: LeftPinky1
+ 400160: LeftPinky2
+ 400162: LeftPinky3
+ 400164: LeftPinkyEND
+ 400166: LeftRing1
+ 400168: LeftRing2
+ 400170: LeftRing3
+ 400172: LeftRingEND
+ 400174: LeftShoulder
+ 400176: LeftThumb1
+ 400178: LeftThumb2
+ 400180: LeftThumb3
+ 400182: LeftThumbEND
+ 400184: LeftThumbEnd
+ 400186: LeftToe
+ 400188: LeftToeEND
+ 400190: LeftUpperArm
+ 400192: LeftUpperLeg
+ 400194: LowerEyelids
+ 400196: Mesh
+ 400198: Neck
+ 400200: RightArm
+ 400202: RightEye
+ 400204: RightFoot
+ 400206: RightHand
+ 400208: RightIndex1
+ 400210: RightIndex2
+ 400212: RightIndex3
+ 400214: RightIndexEND
+ 400216: RightLeg
+ 400218: RightMiddle1
+ 400220: RightMiddle2
+ 400222: RightMiddle3
+ 400224: RightMiddleEND
+ 400226: RightPinky1
+ 400228: RightPinky2
+ 400230: RightPinky3
+ 400232: RightPinkyEND
+ 400234: RightRing1
+ 400236: RightRing2
+ 400238: RightRing3
+ 400240: RightRingEND
+ 400242: RightShoulder
+ 400244: RightThumb1
+ 400246: RightThumb2
+ 400248: RightThumb3
+ 400250: RightThumbEND
+ 400252: RightThumbEnd
+ 400254: RightToe
+ 400256: RightToeEND
+ 400258: RightUpperArm
+ 400260: RightUpperLeg
+ 400262: Skeleton
+ 400264: Spine1
+ 400266: Spine2
+ 400268: Swivel
+ 400270: Swivel 1
+ 400272: ToeTap
+ 400274: ToeTap 1
+ 400276: ToeTip
+ 400278: ToeTip 1
+ 400280: UpperEyelids
+ 400282: LowerEyelidsEND
+ 400284: UpperEyelidsEND
+ 2300000: ControlsLeftIndex1
+ 2300002: ControlsLeftIndex2
+ 2300004: ControlsLeftIndex3
+ 2300006: ControlsLeftLegPoleVector
+ 2300008: ControlsLeftLegPoleVector1
+ 2300010: ControlsLeftMiddle1
+ 2300012: ControlsLeftMiddle2
+ 2300014: ControlsLeftMiddle3
+ 2300016: ControlsLeftPinky1
+ 2300018: ControlsLeftPinky2
+ 2300020: ControlsLeftPinky3
+ 2300022: ControlsLeftRing1
+ 2300024: ControlsLeftRing2
+ 2300026: ControlsLeftRing3
+ 2300028: ControlsLeftThumb1
+ 2300030: ControlsLeftThumb2
+ 2300032: ControlsLeftThumb3
+ 2300034: ControlsLowerEyelid
+ 2300036: ControlsRightIndex1
+ 2300038: ControlsRightIndex2
+ 2300040: ControlsRightIndex3
+ 2300042: ControlsRightLegPoleVector
+ 2300044: ControlsRightLegPoleVector2
+ 2300046: ControlsRightMiddle1
+ 2300048: ControlsRightMiddle2
+ 2300050: ControlsRightMiddle3
+ 2300052: ControlsRightPinky1
+ 2300054: ControlsRightPinky2
+ 2300056: ControlsRightPinky3
+ 2300058: ControlsRightRing1
+ 2300060: ControlsRightRing2
+ 2300062: ControlsRightRing3
+ 2300064: ControlsRightThumb1
+ 2300066: ControlsRightThumb2
+ 2300068: ControlsRightThumb3
+ 2300070: ControlsUpperEyelid
+ 3300000: ControlsLeftIndex1
+ 3300002: ControlsLeftIndex2
+ 3300004: ControlsLeftIndex3
+ 3300006: ControlsLeftLegPoleVector
+ 3300008: ControlsLeftLegPoleVector1
+ 3300010: ControlsLeftMiddle1
+ 3300012: ControlsLeftMiddle2
+ 3300014: ControlsLeftMiddle3
+ 3300016: ControlsLeftPinky1
+ 3300018: ControlsLeftPinky2
+ 3300020: ControlsLeftPinky3
+ 3300022: ControlsLeftRing1
+ 3300024: ControlsLeftRing2
+ 3300026: ControlsLeftRing3
+ 3300028: ControlsLeftThumb1
+ 3300030: ControlsLeftThumb2
+ 3300032: ControlsLeftThumb3
+ 3300034: ControlsLowerEyelid
+ 3300036: ControlsRightIndex1
+ 3300038: ControlsRightIndex2
+ 3300040: ControlsRightIndex3
+ 3300042: ControlsRightLegPoleVector
+ 3300044: ControlsRightLegPoleVector2
+ 3300046: ControlsRightMiddle1
+ 3300048: ControlsRightMiddle2
+ 3300050: ControlsRightMiddle3
+ 3300052: ControlsRightPinky1
+ 3300054: ControlsRightPinky2
+ 3300056: ControlsRightPinky3
+ 3300058: ControlsRightRing1
+ 3300060: ControlsRightRing2
+ 3300062: ControlsRightRing3
+ 3300064: ControlsRightThumb1
+ 3300066: ControlsRightThumb2
+ 3300068: ControlsRightThumb3
+ 3300070: ControlsUpperEyelid
+ 4300000: Mesh
+ 4300002: ControlsLeftLegPoleVector
+ 4300004: ControlsUpperEyelid
+ 4300006: ControlsLowerEyelid
+ 4300008: ControlsLeftLegPoleVector1
+ 4300010: ControlsLeftIndex1
+ 4300012: ControlsLeftIndex2
+ 4300014: ControlsLeftIndex3
+ 4300016: ControlsLeftMiddle1
+ 4300018: ControlsLeftMiddle2
+ 4300020: ControlsLeftMiddle3
+ 4300022: ControlsLeftRing1
+ 4300024: ControlsLeftRing2
+ 4300026: ControlsLeftRing3
+ 4300028: ControlsLeftPinky1
+ 4300030: ControlsLeftPinky2
+ 4300032: ControlsLeftPinky3
+ 4300034: ControlsLeftThumb1
+ 4300036: ControlsLeftThumb2
+ 4300038: ControlsLeftThumb3
+ 4300040: ControlsRightThumb1
+ 4300042: ControlsRightThumb2
+ 4300044: ControlsRightThumb3
+ 4300046: ControlsRightPinky1
+ 4300048: ControlsRightPinky2
+ 4300050: ControlsRightPinky3
+ 4300052: ControlsRightRing1
+ 4300054: ControlsRightRing2
+ 4300056: ControlsRightRing3
+ 4300058: ControlsRightMiddle1
+ 4300060: ControlsRightMiddle2
+ 4300062: ControlsRightMiddle3
+ 4300064: ControlsRightIndex1
+ 4300066: ControlsRightIndex2
+ 4300068: ControlsRightIndex3
+ 4300070: ControlsRightLegPoleVector
+ 4300072: ControlsRightLegPoleVector2
+ 7400000: PlayerIdle
+ 9500000: //RootNode
+ 13700000: Mesh
+ materials:
+ importMaterials: 0
+ materialName: 0
+ materialSearch: 1
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleCurves: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 3
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: PlayerIdle
+ takeName: Take 001
+ firstFrame: 1
+ lastFrame: 400
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 1
+ loopBlend: 1
+ loopBlendOrientation: 1
+ loopBlendPositionY: 1
+ loopBlendPositionXZ: 1
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 0
+ - path: Controls/ControlsUpperBody
+ weight: 0
+ - path: Controls/ControlsUpperBody/ControlsHips
+ weight: 0
+ - path: Mesh
+ weight: 0
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Hips
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot/LeftToe
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot/LeftToe/LeftToeEND
+ weight: 0
+ - path: Skeleton/Hips/RightUpperLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot/RightToe
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot/RightToe/RightToeEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3/LeftPinkyEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2/LeftRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2/LeftRing3/LeftRingEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd/LeftThumbEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/HeadEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LeftEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LowerEyelids
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LowerEyelids/LowerEyelidsEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/RightEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/UpperEyelids
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/UpperEyelids/UpperEyelidsEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2/RightIndex3/RightIndexEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2/RightPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2/RightPinky3/RightPinkyEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2/RightRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2/RightRing3/RightRingEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd/RightThumbEND
+ weight: 0
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 1
+ humanDescription:
+ human:
+ - boneName: Hips
+ humanName: Hips
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftUpperLeg
+ humanName: LeftUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightUpperLeg
+ humanName: RightUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftLeg
+ humanName: LeftLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightLeg
+ humanName: RightLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftFoot
+ humanName: LeftFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightFoot
+ humanName: RightFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Spine1
+ humanName: Spine
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Spine2
+ humanName: Chest
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Neck
+ humanName: Neck
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Head
+ humanName: Head
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftShoulder
+ humanName: LeftShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightShoulder
+ humanName: RightShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftUpperArm
+ humanName: LeftUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightUpperArm
+ humanName: RightUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftArm
+ humanName: LeftLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightArm
+ humanName: RightLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHand
+ humanName: LeftHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHand
+ humanName: RightHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftToe
+ humanName: LeftToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightToe
+ humanName: RightToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftEye
+ humanName: LeftEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightEye
+ humanName: RightEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb1
+ humanName: Left Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb2
+ humanName: Left Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb3
+ humanName: Left Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex1
+ humanName: Left Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex2
+ humanName: Left Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex3
+ humanName: Left Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle1
+ humanName: Left Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle2
+ humanName: Left Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle3
+ humanName: Left Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing1
+ humanName: Left Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing2
+ humanName: Left Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing3
+ humanName: Left Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky1
+ humanName: Left Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky2
+ humanName: Left Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky3
+ humanName: Left Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb1
+ humanName: Right Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb2
+ humanName: Right Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb3
+ humanName: Right Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex1
+ humanName: Right Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex2
+ humanName: Right Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex3
+ humanName: Right Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle1
+ humanName: Right Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle2
+ humanName: Right Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle3
+ humanName: Right Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing1
+ humanName: Right Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing2
+ humanName: Right Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing3
+ humanName: Right Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky1
+ humanName: Right Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky2
+ humanName: Right Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky3
+ humanName: Right Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ skeleton:
+ - name: Player(Clone)
+ position: {x: 0, y: 0, z: 0}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Controls
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: ControlsUpperBody
+ position: {x: -0, y: 0.9856257, z: -0.028446734}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: ControlsHips
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Mesh
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Skeleton
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Hips
+ position: {x: 0, y: 0.9088629, z: -0.028446734}
+ rotation: {x: 0.7071068, y: -0.7071068, z: -4.3297806e-17, w: 4.3297806e-17}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftUpperLeg
+ position: {x: 0.037347827, y: 0.092801034, z: 0.0064211558}
+ rotation: {x: -0.0033267832, y: 0.99839103, z: 0.056605782, w: -0.0004065326}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLeg
+ position: {x: -0.37195736, y: -1.236171e-16, z: 5.1000362e-18}
+ rotation: {x: -0.0004567116, y: -0.052333966, z: -0.008714577, w: 0.99859154}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftFoot
+ position: {x: -0.41152263, y: -0.0015294757, z: -0.002893631}
+ rotation: {x: 0.050357435, y: 0.49969903, z: 0.026062192, w: 0.86434126}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftToe
+ position: {x: -0.1110157, y: -2.5535128e-17, z: 8.2057634e-17}
+ rotation: {x: 4.2141773e-14, y: 0.3007058, z: -1.328725e-14, w: 0.95371693}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftToeEND
+ position: {x: -0.11182804, y: -2.918769e-18, z: 9.290528e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightUpperLeg
+ position: {x: 0.037347663, y: -0.092801, z: 0.0064211655}
+ rotation: {x: -0.05660591, y: 0.00040653365, z: -0.003326788, w: 0.99839103}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLeg
+ position: {x: 0.37195793, y: 5.9421585e-17, z: -4.0592486e-18}
+ rotation: {x: -0.0004567116, y: -0.052333966, z: -0.008714577, w: 0.99859154}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightFoot
+ position: {x: 0.41152248, y: 0.001529468, z: 0.0028936374}
+ rotation: {x: 0.05035755, y: 0.49969906, z: 0.026062248, w: 0.86434126}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightToe
+ position: {x: 0.11101543, y: -0.000000079186826, z: -0.0000003664904}
+ rotation: {x: 0, y: 0.3007058, z: -0, w: 0.95371693}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightToeEND
+ position: {x: 0.111827955, y: 0.000000072275725, z: 0.00000062929314}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Spine1
+ position: {x: -0.10568693, y: 0, z: 0}
+ rotation: {x: -6.123234e-17, y: -6.123234e-17, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Spine2
+ position: {x: -0.1833106, y: 8.548717e-16, z: -4.440892e-18}
+ rotation: {x: -6.5194134e-17, y: 0.087155744, z: 3.8665733e-34, w: 0.9961947}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftShoulder
+ position: {x: -0.1435461, y: 0.03922616, z: 0.022630278}
+ rotation: {x: -0.68924034, y: 0.71203506, z: 0.0130629325, w: 0.13335347}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftUpperArm
+ position: {x: -0.11169202, y: -1.3877788e-17, z: -5.851063e-17}
+ rotation: {x: 0.0016100118, y: 0.104498126, z: -0.025915265, w: 0.9941861}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftArm
+ position: {x: -0.2715663, y: 0, z: 0}
+ rotation: {x: 8.2024617e-16, y: 0.000052097534, z: -8.848866e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHand
+ position: {x: -0.2331744, y: -2.842171e-16, z: 0}
+ rotation: {x: -0.0000024176625, y: -0.0028313876, z: 0.000843909, w: 0.99999565}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex1
+ position: {x: -0.09506476, y: 0.00005518901, z: 0.03229297}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex2
+ position: {x: -0.031456187, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex3
+ position: {x: -0.026145402, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndexEND
+ position: {x: -0.030434882, y: 0, z: 8.881784e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle1
+ position: {x: -0.09450546, y: -0.000005017072, z: 0.0054007857}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle2
+ position: {x: -0.03860532, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle3
+ position: {x: -0.029822098, y: 0, z: 0}
+ rotation: {x: 1.6940659e-21, y: -3.0374601e-18, z: 1.5144949e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddleEND
+ position: {x: -0.030639142, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky1
+ position: {x: -0.09338952, y: -0.00012434727, z: -0.047905773}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky2
+ position: {x: -0.02757523, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky3
+ position: {x: -0.023694271, y: 0, z: -1.7763568e-17}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinkyEND
+ position: {x: -0.023898533, y: 0, z: 1.7763568e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing1
+ position: {x: -0.09456046, y: -0.00006564576, z: -0.02122128}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing2
+ position: {x: -0.033294536, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing3
+ position: {x: -0.02573688, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRingEND
+ position: {x: -0.032273233, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb1
+ position: {x: -0.014531664, y: -0.010635542, z: 0.02609546}
+ rotation: {x: -0.001391087, y: 0.43585023, z: 0.00026398723, w: 0.90001816}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb2
+ position: {x: -0.044124622, y: 0, z: 4.440892e-18}
+ rotation: {x: 0.0000001058215, y: -0.03346803, z: -0.000001782842, w: 0.99943984}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb3
+ position: {x: -0.03446204, y: 0, z: -1.5543122e-17}
+ rotation: {x: 1.1354973e-16, y: 0.017452406, z: 2.3701255e-16, w: 0.9998477}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumbEnd
+ position: {x: -0.027849242, y: 0, z: -2.220446e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumbEND
+ position: {x: 1.1400142e-18, y: 0, z: -1.9054521e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Neck
+ position: {x: -0.2294332, y: -1.821977e-17, z: 0.0049986364}
+ rotation: {x: -2.775558e-17, y: -0.29237172, z: 4.0278586e-33, w: 0.9563048}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Head
+ position: {x: -0.10867395, y: -1.1779883e-16, z: 1.4210854e-16}
+ rotation: {x: -1.3877788e-17, y: 0.19936794, z: -3.9307714e-34, w: 0.9799247}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: HeadEND
+ position: {x: -0.24878563, y: -1.5987211e-16, z: 7.902685e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEye
+ position: {x: -0.06898784, y: 0.042644892, z: -0.067543894}
+ rotation: {x: 0.49111634, y: -0.4841803, z: 0.50882685, w: 0.5152373}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LowerEyelids
+ position: {x: -0.05675008, y: -8.5596115e-16, z: -0.09207437}
+ rotation: {x: 5.89806e-17, y: -8.6736174e-19, z: 1.110223e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEye
+ position: {x: -0.06898793, y: -0.0426449, z: -0.06754389}
+ rotation: {x: -1.1714554e-15, y: 1, z: 2.8327693e-16, w: 7.7545535e-17}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: UpperEyelids
+ position: {x: -0.07905001, y: -8.603375e-16, z: -0.096244544}
+ rotation: {x: 5.89806e-17, y: -8.6736174e-19, z: 1.110223e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightShoulder
+ position: {x: -0.14354727, y: -0.0392262, z: 0.022630045}
+ rotation: {x: -0.0130629325, y: -0.13335347, z: -0.68924034, w: 0.71203506}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightUpperArm
+ position: {x: 0.11169233, y: 0.0000013741218, z: -0.000000017416571}
+ rotation: {x: 0.99418354, y: -0.02591735, z: -0.10452178, w: -0.0016203261}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightArm
+ position: {x: 0.27156565, y: -0.0000016521891, z: -0.000000010419892}
+ rotation: {x: -0.000011964993, y: 0.0000000651813, z: -0.000010528297, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHand
+ position: {x: 0.23317498, y: 0.000003552258, z: 0.00000003303112}
+ rotation: {x: 0.9999994, y: 0.000013414664, z: -0.00003311748, w: -0.0011172838}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex1
+ position: {x: 0.09506465, y: -0.000052980962, z: -0.03229297}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex2
+ position: {x: 0.031456, y: 5.684342e-16, z: 3.7303492e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex3
+ position: {x: 0.026145, y: 0, z: 2.842171e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndexEND
+ position: {x: 0.030435, y: 2.842171e-16, z: 3.2862602e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle1
+ position: {x: 0.09450487, y: 0.000007224165, z: -0.0054008546}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle2
+ position: {x: 0.038606, y: 2.842171e-16, z: 4.440892e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle3
+ position: {x: 0.029821998, y: 2.842171e-16, z: 3.375078e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddleEND
+ position: {x: 0.030638998, y: -2.842171e-16, z: 3.375078e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky1
+ position: {x: 0.093388975, y: 0.0001265551, z: 0.047905993}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky2
+ position: {x: 0.027576, y: 0, z: 3.375078e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky3
+ position: {x: 0.023694, y: 0, z: 2.664535e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinkyEND
+ position: {x: 0.023898, y: 2.842171e-16, z: 2.664535e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing1
+ position: {x: 0.0945606, y: 0.0000678541, z: 0.021221206}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing2
+ position: {x: 0.033294, y: 2.842171e-16, z: 3.5527135e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing3
+ position: {x: 0.025736999, y: 0, z: 2.842171e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRingEND
+ position: {x: 0.032273, y: 2.842171e-16, z: 3.7303492e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb1
+ position: {x: 0.014531372, y: 0.010635231, z: -0.026095485}
+ rotation: {x: -0.001391087, y: 0.43585023, z: 0.00026398723, w: 0.90001816}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb2
+ position: {x: 0.044124745, y: 2.842171e-16, z: 0.00000011967238}
+ rotation: {x: -0.0000001293374, y: -0.033468656, z: 0.0000011772497, w: 0.9994398}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb3
+ position: {x: 0.03446187, y: 1.7053025e-15, z: -0.000000061993184}
+ rotation: {x: -1.289088e-16, y: 0.017452406, z: -7.523221e-16, w: 0.9998477}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumbEnd
+ position: {x: 0.02784971, y: 1.7053025e-15, z: 0.00000026974834}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumbEND
+ position: {x: -1.4210854e-16, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 9d9569a11a06f464bb9a5618bdd51bba,
+ type: 3}
+ animationType: 3
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/IdleBlender.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/IdleBlender.fbx
new file mode 100644
index 00000000..4ae25cb2
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/IdleBlender.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/IdleBlender.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/IdleBlender.fbx.meta
new file mode 100644
index 00000000..60c1d381
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/IdleBlender.fbx.meta
@@ -0,0 +1,1540 @@
+fileFormatVersion: 2
+guid: dffa50cfe77e0434bbfa71245b3dd529
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Chest
+ 100002: chestProxy_geo
+ 100004: //RootNode
+ 100006: Head
+ 100008: headProxy_geo
+ 100010: HeadTop_End
+ 100012: Hips
+ 100014: Jaw
+ 100016: JawEND
+ 100018: jawProxy_geo
+ 100020: l_ankleProxy_geo
+ 100022: l_ballProxy_geo
+ 100024: l_clavicleProxy_geo
+ 100026: l_erbowProxy_geo
+ 100028: l_hipProxy_geo
+ 100030: l_indexProxy_01_geo
+ 100032: l_indexProxy_02_geo
+ 100034: l_indexProxy_03_geo
+ 100036: l_kneeProxy_geo
+ 100038: l_middleProxy_01_geo
+ 100040: l_middleProxy_02_geo
+ 100042: l_middleProxy_03_geo
+ 100044: l_pinkyProxy_01_geo
+ 100046: l_pinkyProxy_02_geo
+ 100048: l_pinkyProxy_03_geo
+ 100050: l_ringProxy_01_geo
+ 100052: l_ringProxy_02_geo
+ 100054: l_ringProxy_03_geo
+ 100056: l_shourderProxy_geo
+ 100058: l_thumbProxy_01_geo
+ 100060: l_thumbProxy_02_geo
+ 100062: l_thumbProxy_03_geo
+ 100064: l_UNI_eye
+ 100066: l_wristProxy_geo
+ 100068: LeftArm
+ 100070: LeftCheek
+ 100072: LeftEye
+ 100074: LeftEyelidLower
+ 100076: LeftEyelidUpper
+ 100078: LeftFoot
+ 100080: LeftForeArm
+ 100082: LeftHand
+ 100084: LeftHandIndex1
+ 100086: LeftHandIndex13
+ 100088: LeftHandIndex17
+ 100090: LeftHandIndex2
+ 100092: LeftHandIndex3
+ 100094: LeftHandMiddle1
+ 100096: LeftHandMiddle13
+ 100098: LeftHandMiddle17
+ 100100: LeftHandMiddle2
+ 100102: LeftHandMiddle3
+ 100104: LeftHandPinky1
+ 100106: LeftHandPinky13
+ 100108: LeftHandPinky17
+ 100110: LeftHandPinky2
+ 100112: LeftHandPinky3
+ 100114: LeftHandRing1
+ 100116: LeftHandRing13
+ 100118: LeftHandRing17
+ 100120: LeftHandRing2
+ 100122: LeftHandRing3
+ 100124: LeftHandThumb1
+ 100126: LeftHandThumb13
+ 100128: LeftHandThumb17
+ 100130: LeftHandThumb2
+ 100132: LeftHandThumb3
+ 100134: LeftInnerBrow
+ 100136: LeftIOuterBrow
+ 100138: LeftLeg
+ 100140: LeftLipCorner
+ 100142: LeftLipLower
+ 100144: LeftLipUpper
+ 100146: LeftNostril
+ 100148: LeftShoulder
+ 100150: LeftToes
+ 100152: LeftUpLeg
+ 100154: LToeBase_End2
+ 100156: LToeBase_End3
+ 100158: Neck
+ 100160: neckProxy_geo
+ 100162: pelvisProxy_geo
+ 100164: Pivot
+ 100166: r_ankleProxy_geo
+ 100168: r_ballProxy_geo
+ 100170: r_clavicleProxy_geo
+ 100172: r_erbowProxy_geo
+ 100174: r_hipProxy_geo
+ 100176: r_indexProxy_01_geo
+ 100178: r_indexProxy_02_geo
+ 100180: r_indexProxy_03_geo
+ 100182: r_kneeProxy_geo
+ 100184: r_middleProxy_01_geo
+ 100186: r_middleProxy_02_geo
+ 100188: r_middleProxy_03_geo
+ 100190: r_pinkyProxy_01_geo
+ 100192: r_pinkyProxy_02_geo
+ 100194: r_pinkyProxy_03_geo
+ 100196: r_ringProxy_01_geo
+ 100198: r_ringProxy_02_geo
+ 100200: r_ringProxy_03_geo
+ 100202: r_shourderProxy_geo
+ 100204: r_thumbProxy_01_geo
+ 100206: r_thumbProxy_02_geo
+ 100208: r_thumbProxy_03_geo
+ 100210: r_UNI_eye
+ 100212: r_wristProxy_geo
+ 100214: Reference
+ 100216: RightArm
+ 100218: RightCheek
+ 100220: RightEye
+ 100222: RightEyelidLower
+ 100224: RightEyelidUpper
+ 100226: RightFoot
+ 100228: RightForeArm
+ 100230: RightHand
+ 100232: RightHandIndex1
+ 100234: RightHandIndex2
+ 100236: RightHandIndex3
+ 100238: RightHandMiddle1
+ 100240: RightHandMiddle2
+ 100242: RightHandMiddle3
+ 100244: RightHandPinky1
+ 100246: RightHandPinky2
+ 100248: RightHandPinky3
+ 100250: RightHandRing1
+ 100252: RightHandRing2
+ 100254: RightHandRing3
+ 100256: RightHandThumb1
+ 100258: RightHandThumb2
+ 100260: RightHandThumb3
+ 100262: RightInnerBrow
+ 100264: RightIOuterBrow
+ 100266: RightLeg
+ 100268: RightLipCorner
+ 100270: RightLipLower
+ 100272: RightLipUpper
+ 100274: RightNostril
+ 100276: RightShoulder
+ 100278: RightToes
+ 100280: RightUpLeg
+ 100282: Root
+ 100284: Spine
+ 100286: spineProxy_geo
+ 100288: TongueBack
+ 100290: TongueTip
+ 100292: UNI_01_Lower_teethProxy
+ 100294: UNI_01_TongueBaseProxy
+ 100296: UNI_01_TongueTipProxy
+ 100298: UNI_01_Upper_teethProxy
+ 400000: Chest
+ 400002: chestProxy_geo
+ 400004: //RootNode
+ 400006: Head
+ 400008: headProxy_geo
+ 400010: HeadTop_End
+ 400012: Hips
+ 400014: Jaw
+ 400016: JawEND
+ 400018: jawProxy_geo
+ 400020: l_ankleProxy_geo
+ 400022: l_ballProxy_geo
+ 400024: l_clavicleProxy_geo
+ 400026: l_erbowProxy_geo
+ 400028: l_hipProxy_geo
+ 400030: l_indexProxy_01_geo
+ 400032: l_indexProxy_02_geo
+ 400034: l_indexProxy_03_geo
+ 400036: l_kneeProxy_geo
+ 400038: l_middleProxy_01_geo
+ 400040: l_middleProxy_02_geo
+ 400042: l_middleProxy_03_geo
+ 400044: l_pinkyProxy_01_geo
+ 400046: l_pinkyProxy_02_geo
+ 400048: l_pinkyProxy_03_geo
+ 400050: l_ringProxy_01_geo
+ 400052: l_ringProxy_02_geo
+ 400054: l_ringProxy_03_geo
+ 400056: l_shourderProxy_geo
+ 400058: l_thumbProxy_01_geo
+ 400060: l_thumbProxy_02_geo
+ 400062: l_thumbProxy_03_geo
+ 400064: l_UNI_eye
+ 400066: l_wristProxy_geo
+ 400068: LeftArm
+ 400070: LeftCheek
+ 400072: LeftEye
+ 400074: LeftEyelidLower
+ 400076: LeftEyelidUpper
+ 400078: LeftFoot
+ 400080: LeftForeArm
+ 400082: LeftHand
+ 400084: LeftHandIndex1
+ 400086: LeftHandIndex13
+ 400088: LeftHandIndex17
+ 400090: LeftHandIndex2
+ 400092: LeftHandIndex3
+ 400094: LeftHandMiddle1
+ 400096: LeftHandMiddle13
+ 400098: LeftHandMiddle17
+ 400100: LeftHandMiddle2
+ 400102: LeftHandMiddle3
+ 400104: LeftHandPinky1
+ 400106: LeftHandPinky13
+ 400108: LeftHandPinky17
+ 400110: LeftHandPinky2
+ 400112: LeftHandPinky3
+ 400114: LeftHandRing1
+ 400116: LeftHandRing13
+ 400118: LeftHandRing17
+ 400120: LeftHandRing2
+ 400122: LeftHandRing3
+ 400124: LeftHandThumb1
+ 400126: LeftHandThumb13
+ 400128: LeftHandThumb17
+ 400130: LeftHandThumb2
+ 400132: LeftHandThumb3
+ 400134: LeftInnerBrow
+ 400136: LeftIOuterBrow
+ 400138: LeftLeg
+ 400140: LeftLipCorner
+ 400142: LeftLipLower
+ 400144: LeftLipUpper
+ 400146: LeftNostril
+ 400148: LeftShoulder
+ 400150: LeftToes
+ 400152: LeftUpLeg
+ 400154: LToeBase_End2
+ 400156: LToeBase_End3
+ 400158: Neck
+ 400160: neckProxy_geo
+ 400162: pelvisProxy_geo
+ 400164: Pivot
+ 400166: r_ankleProxy_geo
+ 400168: r_ballProxy_geo
+ 400170: r_clavicleProxy_geo
+ 400172: r_erbowProxy_geo
+ 400174: r_hipProxy_geo
+ 400176: r_indexProxy_01_geo
+ 400178: r_indexProxy_02_geo
+ 400180: r_indexProxy_03_geo
+ 400182: r_kneeProxy_geo
+ 400184: r_middleProxy_01_geo
+ 400186: r_middleProxy_02_geo
+ 400188: r_middleProxy_03_geo
+ 400190: r_pinkyProxy_01_geo
+ 400192: r_pinkyProxy_02_geo
+ 400194: r_pinkyProxy_03_geo
+ 400196: r_ringProxy_01_geo
+ 400198: r_ringProxy_02_geo
+ 400200: r_ringProxy_03_geo
+ 400202: r_shourderProxy_geo
+ 400204: r_thumbProxy_01_geo
+ 400206: r_thumbProxy_02_geo
+ 400208: r_thumbProxy_03_geo
+ 400210: r_UNI_eye
+ 400212: r_wristProxy_geo
+ 400214: Reference
+ 400216: RightArm
+ 400218: RightCheek
+ 400220: RightEye
+ 400222: RightEyelidLower
+ 400224: RightEyelidUpper
+ 400226: RightFoot
+ 400228: RightForeArm
+ 400230: RightHand
+ 400232: RightHandIndex1
+ 400234: RightHandIndex2
+ 400236: RightHandIndex3
+ 400238: RightHandMiddle1
+ 400240: RightHandMiddle2
+ 400242: RightHandMiddle3
+ 400244: RightHandPinky1
+ 400246: RightHandPinky2
+ 400248: RightHandPinky3
+ 400250: RightHandRing1
+ 400252: RightHandRing2
+ 400254: RightHandRing3
+ 400256: RightHandThumb1
+ 400258: RightHandThumb2
+ 400260: RightHandThumb3
+ 400262: RightInnerBrow
+ 400264: RightIOuterBrow
+ 400266: RightLeg
+ 400268: RightLipCorner
+ 400270: RightLipLower
+ 400272: RightLipUpper
+ 400274: RightNostril
+ 400276: RightShoulder
+ 400278: RightToes
+ 400280: RightUpLeg
+ 400282: Root
+ 400284: Spine
+ 400286: spineProxy_geo
+ 400288: TongueBack
+ 400290: TongueTip
+ 400292: UNI_01_Lower_teethProxy
+ 400294: UNI_01_TongueBaseProxy
+ 400296: UNI_01_TongueTipProxy
+ 400298: UNI_01_Upper_teethProxy
+ 2300000: chestProxy_geo
+ 2300002: headProxy_geo
+ 2300004: jawProxy_geo
+ 2300006: l_ankleProxy_geo
+ 2300008: l_ballProxy_geo
+ 2300010: l_clavicleProxy_geo
+ 2300012: l_erbowProxy_geo
+ 2300014: l_hipProxy_geo
+ 2300016: l_indexProxy_01_geo
+ 2300018: l_indexProxy_02_geo
+ 2300020: l_indexProxy_03_geo
+ 2300022: l_kneeProxy_geo
+ 2300024: l_middleProxy_01_geo
+ 2300026: l_middleProxy_02_geo
+ 2300028: l_middleProxy_03_geo
+ 2300030: l_pinkyProxy_01_geo
+ 2300032: l_pinkyProxy_02_geo
+ 2300034: l_pinkyProxy_03_geo
+ 2300036: l_ringProxy_01_geo
+ 2300038: l_ringProxy_02_geo
+ 2300040: l_ringProxy_03_geo
+ 2300042: l_shourderProxy_geo
+ 2300044: l_thumbProxy_01_geo
+ 2300046: l_thumbProxy_02_geo
+ 2300048: l_thumbProxy_03_geo
+ 2300050: l_UNI_eye
+ 2300052: l_wristProxy_geo
+ 2300054: neckProxy_geo
+ 2300056: pelvisProxy_geo
+ 2300058: r_ankleProxy_geo
+ 2300060: r_ballProxy_geo
+ 2300062: r_clavicleProxy_geo
+ 2300064: r_erbowProxy_geo
+ 2300066: r_hipProxy_geo
+ 2300068: r_indexProxy_01_geo
+ 2300070: r_indexProxy_02_geo
+ 2300072: r_indexProxy_03_geo
+ 2300074: r_kneeProxy_geo
+ 2300076: r_middleProxy_01_geo
+ 2300078: r_middleProxy_02_geo
+ 2300080: r_middleProxy_03_geo
+ 2300082: r_pinkyProxy_01_geo
+ 2300084: r_pinkyProxy_02_geo
+ 2300086: r_pinkyProxy_03_geo
+ 2300088: r_ringProxy_01_geo
+ 2300090: r_ringProxy_02_geo
+ 2300092: r_ringProxy_03_geo
+ 2300094: r_shourderProxy_geo
+ 2300096: r_thumbProxy_01_geo
+ 2300098: r_thumbProxy_02_geo
+ 2300100: r_thumbProxy_03_geo
+ 2300102: r_UNI_eye
+ 2300104: r_wristProxy_geo
+ 2300106: spineProxy_geo
+ 2300108: UNI_01_Lower_teethProxy
+ 2300110: UNI_01_TongueBaseProxy
+ 2300112: UNI_01_TongueTipProxy
+ 2300114: UNI_01_Upper_teethProxy
+ 3300000: chestProxy_geo
+ 3300002: headProxy_geo
+ 3300004: jawProxy_geo
+ 3300006: l_ankleProxy_geo
+ 3300008: l_ballProxy_geo
+ 3300010: l_clavicleProxy_geo
+ 3300012: l_erbowProxy_geo
+ 3300014: l_hipProxy_geo
+ 3300016: l_indexProxy_01_geo
+ 3300018: l_indexProxy_02_geo
+ 3300020: l_indexProxy_03_geo
+ 3300022: l_kneeProxy_geo
+ 3300024: l_middleProxy_01_geo
+ 3300026: l_middleProxy_02_geo
+ 3300028: l_middleProxy_03_geo
+ 3300030: l_pinkyProxy_01_geo
+ 3300032: l_pinkyProxy_02_geo
+ 3300034: l_pinkyProxy_03_geo
+ 3300036: l_ringProxy_01_geo
+ 3300038: l_ringProxy_02_geo
+ 3300040: l_ringProxy_03_geo
+ 3300042: l_shourderProxy_geo
+ 3300044: l_thumbProxy_01_geo
+ 3300046: l_thumbProxy_02_geo
+ 3300048: l_thumbProxy_03_geo
+ 3300050: l_UNI_eye
+ 3300052: l_wristProxy_geo
+ 3300054: neckProxy_geo
+ 3300056: pelvisProxy_geo
+ 3300058: r_ankleProxy_geo
+ 3300060: r_ballProxy_geo
+ 3300062: r_clavicleProxy_geo
+ 3300064: r_erbowProxy_geo
+ 3300066: r_hipProxy_geo
+ 3300068: r_indexProxy_01_geo
+ 3300070: r_indexProxy_02_geo
+ 3300072: r_indexProxy_03_geo
+ 3300074: r_kneeProxy_geo
+ 3300076: r_middleProxy_01_geo
+ 3300078: r_middleProxy_02_geo
+ 3300080: r_middleProxy_03_geo
+ 3300082: r_pinkyProxy_01_geo
+ 3300084: r_pinkyProxy_02_geo
+ 3300086: r_pinkyProxy_03_geo
+ 3300088: r_ringProxy_01_geo
+ 3300090: r_ringProxy_02_geo
+ 3300092: r_ringProxy_03_geo
+ 3300094: r_shourderProxy_geo
+ 3300096: r_thumbProxy_01_geo
+ 3300098: r_thumbProxy_02_geo
+ 3300100: r_thumbProxy_03_geo
+ 3300102: r_UNI_eye
+ 3300104: r_wristProxy_geo
+ 3300106: spineProxy_geo
+ 3300108: UNI_01_Lower_teethProxy
+ 3300110: UNI_01_TongueBaseProxy
+ 3300112: UNI_01_TongueTipProxy
+ 3300114: UNI_01_Upper_teethProxy
+ 4300000: l_UNI_eye
+ 4300002: r_UNI_eye
+ 4300004: UNI_01_TongueBaseProxy
+ 4300006: UNI_01_TongueTipProxy
+ 4300008: UNI_01_Lower_teethProxy
+ 4300010: jawProxy_geo
+ 4300012: headProxy_geo
+ 4300014: UNI_01_Upper_teethProxy
+ 4300016: neckProxy_geo
+ 4300018: r_pinkyProxy_03_geo
+ 4300020: r_pinkyProxy_02_geo
+ 4300022: r_pinkyProxy_01_geo
+ 4300024: r_ringProxy_03_geo
+ 4300026: r_ringProxy_02_geo
+ 4300028: r_ringProxy_01_geo
+ 4300030: r_middleProxy_03_geo
+ 4300032: r_middleProxy_02_geo
+ 4300034: r_middleProxy_01_geo
+ 4300036: r_indexProxy_03_geo
+ 4300038: r_indexProxy_02_geo
+ 4300040: r_indexProxy_01_geo
+ 4300042: r_thumbProxy_03_geo
+ 4300044: r_thumbProxy_02_geo
+ 4300046: r_thumbProxy_01_geo
+ 4300048: r_wristProxy_geo
+ 4300050: r_erbowProxy_geo
+ 4300052: r_shourderProxy_geo
+ 4300054: r_clavicleProxy_geo
+ 4300056: chestProxy_geo
+ 4300058: l_pinkyProxy_03_geo
+ 4300060: l_pinkyProxy_02_geo
+ 4300062: l_pinkyProxy_01_geo
+ 4300064: l_ringProxy_03_geo
+ 4300066: l_ringProxy_02_geo
+ 4300068: l_ringProxy_01_geo
+ 4300070: l_middleProxy_03_geo
+ 4300072: l_middleProxy_02_geo
+ 4300074: l_middleProxy_01_geo
+ 4300076: l_indexProxy_03_geo
+ 4300078: l_indexProxy_02_geo
+ 4300080: l_indexProxy_01_geo
+ 4300082: l_thumbProxy_03_geo
+ 4300084: l_thumbProxy_02_geo
+ 4300086: l_thumbProxy_01_geo
+ 4300088: l_wristProxy_geo
+ 4300090: l_erbowProxy_geo
+ 4300092: l_shourderProxy_geo
+ 4300094: l_clavicleProxy_geo
+ 4300096: spineProxy_geo
+ 4300098: r_ballProxy_geo
+ 4300100: r_ankleProxy_geo
+ 4300102: r_kneeProxy_geo
+ 4300104: r_hipProxy_geo
+ 4300106: pelvisProxy_geo
+ 4300108: l_ballProxy_geo
+ 4300110: l_ankleProxy_geo
+ 4300112: l_kneeProxy_geo
+ 4300114: l_hipProxy_geo
+ 7400000: PlayerIdleBlender
+ 7400002: Idle_Glance
+ 9500000: //RootNode
+ 11100000: //RootNode
+ materials:
+ importMaterials: 0
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleCurves: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: PlayerIdleBlender
+ takeName: _87_a_U1_M_P_idle_Neutral__Fb_p0_No_1
+ firstFrame: 445
+ lastFrame: 517
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: -0.06
+ cycleOffset: 0.24
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 1
+ loopBlend: 1
+ loopBlendOrientation: 1
+ loopBlendPositionY: 1
+ loopBlendPositionXZ: 1
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Hips
+ weight: 1
+ - path: Hips/LeftUpLeg
+ weight: 1
+ - path: Hips/LeftUpLeg/LeftLeg
+ weight: 1
+ - path: Hips/LeftUpLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
+ weight: 1
+ - path: Hips/RightUpLeg
+ weight: 1
+ - path: Hips/RightUpLeg/RightLeg
+ weight: 1
+ - path: Hips/RightUpLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Hips/RightUpLeg/RightLeg/RightFoot/RightToes
+ weight: 1
+ - path: Hips/Spine
+ weight: 1
+ - path: Hips/Spine/Chest
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
+ weight: 1
+ - path: Hips/Spine/Chest/Neck
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head/Jaw
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/JawEND
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftCheek
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftEye
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head/LeftEyelidLower
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftInnerBrow
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftLipUpper
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftNostril
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightCheek
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightEye
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head/RightEyelidLower
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightEyelidUpper
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightInnerBrow
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightIOuterBrow
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightLipUpper
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightNostril
+ weight: 0
+ - path: Hips/Spine/Chest/RightShoulder
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 120
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 0.01
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 0
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 0
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 4
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human:
+ - boneName: Hips
+ humanName: Hips
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftUpLeg
+ humanName: LeftUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightUpLeg
+ humanName: RightUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftLeg
+ humanName: LeftLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightLeg
+ humanName: RightLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftFoot
+ humanName: LeftFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightFoot
+ humanName: RightFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Spine
+ humanName: Spine
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Chest
+ humanName: Chest
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Neck
+ humanName: Neck
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Head
+ humanName: Head
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftShoulder
+ humanName: LeftShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightShoulder
+ humanName: RightShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftArm
+ humanName: LeftUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightArm
+ humanName: RightUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftForeArm
+ humanName: LeftLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightForeArm
+ humanName: RightLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHand
+ humanName: LeftHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHand
+ humanName: RightHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftToes
+ humanName: LeftToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightToes
+ humanName: RightToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftEye
+ humanName: LeftEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightEye
+ humanName: RightEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Jaw
+ humanName: Jaw
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandThumb1
+ humanName: Left Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandThumb2
+ humanName: Left Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandThumb3
+ humanName: Left Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandIndex1
+ humanName: Left Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandIndex2
+ humanName: Left Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandIndex3
+ humanName: Left Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandMiddle1
+ humanName: Left Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandMiddle2
+ humanName: Left Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandMiddle3
+ humanName: Left Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandRing1
+ humanName: Left Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandRing2
+ humanName: Left Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandRing3
+ humanName: Left Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandPinky1
+ humanName: Left Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandPinky2
+ humanName: Left Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandPinky3
+ humanName: Left Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandThumb1
+ humanName: Right Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandThumb2
+ humanName: Right Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandThumb3
+ humanName: Right Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandIndex1
+ humanName: Right Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandIndex2
+ humanName: Right Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandIndex3
+ humanName: Right Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandMiddle1
+ humanName: Right Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandMiddle2
+ humanName: Right Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandMiddle3
+ humanName: Right Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandRing1
+ humanName: Right Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandRing2
+ humanName: Right Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandRing3
+ humanName: Right Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandPinky1
+ humanName: Right Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandPinky2
+ humanName: Right Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandPinky3
+ humanName: Right Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ skeleton:
+ - name: Idle(Clone)
+ position: {x: 0, y: 0, z: 0}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Hips
+ position: {x: 0, y: 0.96055585, z: 0}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftUpLeg
+ position: {x: -0.0754495, y: -0.04566402, z: 0}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLeg
+ position: {x: -0.020550499, y: -0.40912998, z: -0.00071864796}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftFoot
+ position: {x: -0.0051529994, y: -0.4231559, z: -0.027648851}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftToes
+ position: {x: -0.007487, y: -0.0731673, z: 0.14542712}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightUpLeg
+ position: {x: 0.075449534, y: -0.04566399, z: 0}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLeg
+ position: {x: 0.020550467, y: -0.40913, z: -0.00071864796}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightFoot
+ position: {x: 0.0051529994, y: -0.4231559, z: -0.027648851}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightToes
+ position: {x: 0.007487, y: -0.0731673, z: 0.1454275}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Spine
+ position: {x: 2.646978e-25, y: 0.092263184, z: 0.015771331}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Chest
+ position: {x: -0, y: 0.16254029, z: -0.0016560555}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftShoulder
+ position: {x: -0.038285997, y: 0.2216225, z: -0.017063085}
+ rotation: {x: -0.023181627, y: -0.041239724, z: 0.15546249, w: 0.98670834}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftArm
+ position: {x: -0.10050205, y: 5.684342e-16, z: -3.330669e-18}
+ rotation: {x: 0.08861803, y: 0.027650451, z: -0.1429306, w: 0.9853696}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftForeArm
+ position: {x: -0.2540493, y: 5.684342e-16, z: 1.11022296e-17}
+ rotation: {x: 0.12483406, y: 0.031358555, z: 0.0028125686, w: 0.99167794}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHand
+ position: {x: -0.24638927, y: 0, z: -1.9984014e-16}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandIndex1
+ position: {x: -0.0751258, y: -0.0078414045, z: 0.032652643}
+ rotation: {x: 0.006085051, y: -0.016760712, z: 0.056863174, w: 0.99822277}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandIndex2
+ position: {x: -0.03979728, y: 0.000049808405, z: 0.0011857504}
+ rotation: {x: -0.06748806, y: 0.015227233, z: 0.032719355, w: 0.99706715}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandIndex3
+ position: {x: -0.027968477, y: -0.000000006281225, z: -0.00000005171866}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandMiddle1
+ position: {x: -0.076023825, y: -0.0018851344, z: 0.010141229}
+ rotation: {x: -0.0038087575, y: 0.044787224, z: 0.088190004, w: 0.995089}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandMiddle2
+ position: {x: -0.044280436, y: 0.000004798874, z: -0.00042540013}
+ rotation: {x: -0.012546086, y: -0.007552809, z: 0.031476427, w: 0.9993972}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandMiddle3
+ position: {x: -0.033964828, y: -0.000000012197929, z: 0.0000000037564827}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandPinky1
+ position: {x: -0.06565995, y: -0.007825106, z: -0.032251246}
+ rotation: {x: -0.066156454, y: 0.08168898, z: 0.093131244, w: 0.99008936}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandPinky2
+ position: {x: -0.030805448, y: -0.000030874573, z: -0.0014480775}
+ rotation: {x: 0.047022004, y: -0.021162415, z: 0.037688732, w: 0.9979583}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandPinky3
+ position: {x: -0.023064027, y: -0.0000064025808, z: 0.000000018332095}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandRing1
+ position: {x: -0.07030211, y: -0.0037453093, z: -0.011411792}
+ rotation: {x: -0.020259487, y: 0.07229447, z: 0.09005987, w: 0.99310243}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandRing2
+ position: {x: -0.043135457, y: -0.000020882308, z: -0.0022351784}
+ rotation: {x: 0.018373603, y: -0.025618568, z: 0.03397124, w: 0.9989255}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandRing3
+ position: {x: -0.030835565, y: 7.710326e-11, z: -0.00000001649327}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandThumb1
+ position: {x: -0.014231241, y: -0.012377825, z: 0.025531668}
+ rotation: {x: -0.10206083, y: -0.050946534, z: -0.10271986, w: 0.98814815}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandThumb2
+ position: {x: -0.016374, y: -0.00529, z: 0.023491409}
+ rotation: {x: -0.026062544, y: 0.096688956, z: 0.0036070156, w: 0.9949668}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandThumb3
+ position: {x: -0.02546, y: -0.00764, z: 0.020833}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Neck
+ position: {x: -0, y: 0.2590093, z: -0.032413255}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Head
+ position: {x: -2.646978e-25, y: 0.08307038, z: 0.0113267815}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Jaw
+ position: {x: 1.7347234e-20, y: 0.0111267585, z: 0.010327543}
+ rotation: {x: 0.21924005, y: -0, z: -0, w: 0.975671}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: JawEND
+ position: {x: -1.7347234e-20, y: -0.04828876, z: 0.07185171}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLipCorner
+ position: {x: -0.032843262, y: -0.01657876, z: 0.066121764}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLipLower
+ position: {x: -0.014250817, y: -0.02168876, z: 0.08224063}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLipCorner
+ position: {x: 0.03284, y: -0.01657876, z: 0.066118784}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLipLower
+ position: {x: 0.014250817, y: -0.02168876, z: 0.082238786}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: TongueBack
+ position: {x: -1.7347234e-20, y: -0.022869369, z: 0.010095409}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: TongueTip
+ position: {x: -1.7347234e-20, y: -0.023278812, z: 0.03832271}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftCheek
+ position: {x: -0.054244027, y: 0.03370195, z: 0.0594304}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEye
+ position: {x: -0.020848233, y: 0.0825027, z: 0.055427432}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEyelidLower
+ position: {x: -0.035618957, y: 0.06507366, z: 0.07623474}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEyelidUpper
+ position: {x: -0.034406897, y: 0.10060814, z: 0.08020531}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftInnerBrow
+ position: {x: -0.012062691, y: 0.118765265, z: 0.093466826}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIOuterBrow
+ position: {x: -0.05503987, y: 0.11482529, z: 0.061777398}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLipUpper
+ position: {x: -0.014501322, y: -0.005111811, z: 0.09461884}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftNostril
+ position: {x: -0.0179, y: 0.026312828, z: 0.0908674}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightCheek
+ position: {x: 0.054239996, y: 0.033702828, z: 0.0594274}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEye
+ position: {x: 0.020849999, y: 0.08250283, z: 0.0554274}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEyelidLower
+ position: {x: 0.03562, y: 0.06507283, z: 0.0762374}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEyelidUpper
+ position: {x: 0.03441, y: 0.10061283, z: 0.08020739}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightInnerBrow
+ position: {x: 0.012062687, y: 0.118765265, z: 0.093466826}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIOuterBrow
+ position: {x: 0.055040002, y: 0.11482283, z: 0.061777398}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLipUpper
+ position: {x: 0.014501322, y: -0.0051071714, z: 0.094617404}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightNostril
+ position: {x: 0.0179, y: 0.026308905, z: 0.09087062}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightShoulder
+ position: {x: 0.038286015, y: 0.22162114, z: -0.017063085}
+ rotation: {x: 0.15661521, y: 0.9872962, z: -0.014143146, w: -0.022756452}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightArm
+ position: {x: -0.100501455, y: -0.0000024995522, z: -0.000000051557407}
+ rotation: {x: 0.12895873, y: 0.98859113, z: -0.059131637, w: 0.050602593}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightForeArm
+ position: {x: 0.25342825, y: 0.006011353, z: -0.016704524}
+ rotation: {x: 0.17300203, y: 0.018497527, z: -0.026411133, w: 0.98439354}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHand
+ position: {x: 0.2453737, y: 0.021641772, z: 0.005550465}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandIndex1
+ position: {x: 0.0747695, y: -0.0012430536, z: 0.034344498}
+ rotation: {x: -0.0042503644, y: 0.16212161, z: -0.04068394, w: 0.9859226}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandIndex2
+ position: {x: 0.0370584, y: 0.00072612107, z: 0.014538894}
+ rotation: {x: -0.07759981, y: 0.022348529, z: 0.040914893, w: 0.99589396}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandIndex3
+ position: {x: 0.025225038, y: -0.0049664653, z: 0.011012146}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandMiddle1
+ position: {x: 0.075647645, y: 0.0047914027, z: 0.011853182}
+ rotation: {x: -0.0018308128, y: 0.014353133, z: -0.04781439, w: 0.99875146}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandMiddle2
+ position: {x: 0.043809064, y: 0.00019418815, z: 0.006454936}
+ rotation: {x: -0.01889815, y: -0.04411176, z: 0.082945906, w: 0.995398}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandMiddle3
+ position: {x: 0.03307247, y: -0.007547537, z: 0.0016898462}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandPinky1
+ position: {x: 0.06680334, y: -0.0019941088, z: -0.030756146}
+ rotation: {x: -0.061964788, y: -0.25861457, z: -0.016712682, w: 0.96384627}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandPinky2
+ position: {x: 0.028530842, y: -0.001397143, z: -0.011623796}
+ rotation: {x: 0.029886473, y: 0.0008011088, z: -0.061678488, w: 0.99764824}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandPinky3
+ position: {x: 0.02142686, y: -0.00055350893, z: -0.008516608}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandRing1
+ position: {x: 0.070598476, y: 0.0024570965, z: -0.009821458}
+ rotation: {x: -0.014813002, y: -0.11599262, z: -0.029717524, w: 0.9926949}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandRing2
+ position: {x: 0.042887185, y: -0.0013753821, z: -0.004945858}
+ rotation: {x: 0.020819342, y: -0.021557119, z: 0.07558001, w: 0.99668926}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandRing3
+ position: {x: 0.029500604, y: -0.0076929354, z: -0.004622256}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandThumb1
+ position: {x: 0.014684916, y: -0.011104942, z: 0.025858095}
+ rotation: {x: -0.12000564, y: 0.03367835, z: 0.1488049, w: 0.9809799}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandThumb2
+ position: {x: 0.016374, y: -0.00529, z: 0.02349136}
+ rotation: {x: -0.02606257, y: -0.096691996, z: -0.003608328, w: 0.99496657}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandThumb3
+ position: {x: 0.02546, y: -0.00764, z: 0.020833}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: e8914d097ece7cc48a83d5fccd4098c0,
+ type: 3}
+ animationType: 3
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/PutGlassesOn.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/PutGlassesOn.fbx
new file mode 100644
index 00000000..5ac0a225
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/PutGlassesOn.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/PutGlassesOn.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/PutGlassesOn.fbx.meta
new file mode 100644
index 00000000..5d21a996
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/PutGlassesOn.fbx.meta
@@ -0,0 +1,1681 @@
+fileFormatVersion: 2
+guid: 335e9552995619942b842651295ac977
+timeCreated: 1473671507
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: ControlsEyeDirection
+ 100004: ControlsHips
+ 100006: ControlsLeftFoot
+ 100008: ControlsLeftHand
+ 100010: ControlsLeftIndex1
+ 100012: ControlsLeftIndex2
+ 100014: ControlsLeftIndex3
+ 100016: ControlsLeftLegPoleVector
+ 100018: ControlsLeftLegPoleVector1
+ 100020: ControlsLeftMiddle1
+ 100022: ControlsLeftMiddle2
+ 100024: ControlsLeftMiddle3
+ 100026: ControlsLeftPinky1
+ 100028: ControlsLeftPinky2
+ 100030: ControlsLeftPinky3
+ 100032: ControlsLeftRing1
+ 100034: ControlsLeftRing2
+ 100036: ControlsLeftRing3
+ 100038: ControlsLeftShoulder
+ 100040: ControlsLeftThumb1
+ 100042: ControlsLeftThumb2
+ 100044: ControlsLeftThumb3
+ 100046: ControlsLeftThumbOrient
+ 100048: ControlsLowerEyelid
+ 100050: ControlsNeck
+ 100052: ControlsRightFoot
+ 100054: ControlsRightHand
+ 100056: ControlsRightIndex1
+ 100058: ControlsRightIndex2
+ 100060: ControlsRightIndex3
+ 100062: ControlsRightLegPoleVector
+ 100064: ControlsRightLegPoleVector2
+ 100066: ControlsRightMiddle1
+ 100068: ControlsRightMiddle2
+ 100070: ControlsRightMiddle3
+ 100072: ControlsRightPinky1
+ 100074: ControlsRightPinky2
+ 100076: ControlsRightPinky3
+ 100078: ControlsRightRing1
+ 100080: ControlsRightRing2
+ 100082: ControlsRightRing3
+ 100084: ControlsRightShoulder
+ 100086: ControlsRightThumb1
+ 100088: ControlsRightThumb2
+ 100090: ControlsRightThumb3
+ 100092: ControlsRightThumbOrient
+ 100094: ControlsSpine1
+ 100096: ControlsSpine2
+ 100098: ControlsSpine3
+ 100100: ControlsUpperBody
+ 100102: ControlsUpperEyelid
+ 100104: Disguise1
+ 100106: DisguiseHeadParent
+ 100108: DogRun_Final2:ControlRightHip
+ 100110: DogRun_Final2:Controls
+ 100112: DogRun_Final2:ControlsChest
+ 100114: DogRun_Final2:ControlsEyes
+ 100116: DogRun_Final2:ControlsHead
+ 100118: DogRun_Final2:ControlsHips
+ 100120: DogRun_Final2:ControlsLeftEar
+ 100122: DogRun_Final2:ControlsLeftHip
+ 100124: DogRun_Final2:ControlsLeftShoulder
+ 100126: DogRun_Final2:ControlsMouth
+ 100128: DogRun_Final2:ControlsNeck
+ 100130: DogRun_Final2:ControlsRightEar
+ 100132: DogRun_Final2:ControlsRightShoulder
+ 100134: DogRun_Final2:ControlsSpine
+ 100136: DogRun_Final2:ControlsTail1
+ 100138: DogRun_Final2:ControlsTail2
+ 100140: DogRun_Final2:ControlsTail3
+ 100142: DogRun_Final2:EyeOrient
+ 100144: DogRun_Final2:Eyes
+ 100146: DogRun_Final2:Head
+ 100148: DogRun_Final2:HeadEnd
+ 100150: DogRun_Final2:ikHandleLeftArm
+ 100152: DogRun_Final2:ikHandleLeftFoot
+ 100154: DogRun_Final2:ikHandleLeftHand
+ 100156: DogRun_Final2:ikHandleLeftLeg
+ 100158: DogRun_Final2:ikHandleRightArm
+ 100160: DogRun_Final2:ikHandleRightFoot
+ 100162: DogRun_Final2:ikHandleRightHand
+ 100164: DogRun_Final2:ikHandleRightLeg
+ 100166: DogRun_Final2:LeftArm
+ 100168: DogRun_Final2:LeftArmPoleVector
+ 100170: DogRun_Final2:LeftEar
+ 100172: DogRun_Final2:LeftEarEnd
+ 100174: DogRun_Final2:LeftFoot
+ 100176: DogRun_Final2:LeftFootControls
+ 100178: DogRun_Final2:LeftFootEnd
+ 100180: DogRun_Final2:LeftFootHeelPeel
+ 100182: DogRun_Final2:LeftHand
+ 100184: DogRun_Final2:LeftHandControls
+ 100186: DogRun_Final2:LeftHandEnd
+ 100188: DogRun_Final2:LeftHandHeelPeel
+ 100190: DogRun_Final2:LeftHip
+ 100192: DogRun_Final2:LeftLeg1
+ 100194: DogRun_Final2:LeftLeg2
+ 100196: DogRun_Final2:LeftLeg3
+ 100198: DogRun_Final2:LeftLegPoleVector
+ 100200: DogRun_Final2:LeftShoulder
+ 100202: DogRun_Final2:LeftUpperArm
+ 100204: DogRun_Final2:Mouth
+ 100206: DogRun_Final2:MouthEnd
+ 100208: DogRun_Final2:Neck
+ 100210: DogRun_Final2:Pelvis
+ 100212: DogRun_Final2:RightArm
+ 100214: DogRun_Final2:RightArmPoleVector
+ 100216: DogRun_Final2:RightEar
+ 100218: DogRun_Final2:RightEarEnd
+ 100220: DogRun_Final2:RightFoot
+ 100222: DogRun_Final2:RightFootControls
+ 100224: DogRun_Final2:RightFootEnd
+ 100226: DogRun_Final2:RightFootHeelPeel
+ 100228: DogRun_Final2:RightHand
+ 100230: DogRun_Final2:RightHandControls
+ 100232: DogRun_Final2:RightHandEnd
+ 100234: DogRun_Final2:RightHandHeelPeel
+ 100236: DogRun_Final2:RightHip
+ 100238: DogRun_Final2:RightLeg1
+ 100240: DogRun_Final2:RightLeg2
+ 100242: DogRun_Final2:RightLeg3
+ 100244: DogRun_Final2:RightLegPoleVector
+ 100246: DogRun_Final2:RightShoulder
+ 100248: DogRun_Final2:RightUpperArm
+ 100250: DogRun_Final2:Skeleton
+ 100252: DogRun_Final2:Spine
+ 100254: DogRun_Final2:Tail1
+ 100256: DogRun_Final2:Tail2
+ 100258: DogRun_Final2:Tail3
+ 100260: DogRun_Final2:Tail3 1
+ 100262: group
+ 100264: Head
+ 100266: HeadEND
+ 100268: HeelPeel
+ 100270: HeelPeel 1
+ 100272: Hips
+ 100274: ikHandleLeftArm
+ 100276: ikHandleLeftFoot
+ 100278: ikHandleLeftLeg
+ 100280: ikHandleLeftToe
+ 100282: ikHandleRightArm
+ 100284: ikHandleRightFoot
+ 100286: ikHandleRightLeg
+ 100288: ikHandleRightToe
+ 100290: LeftArm
+ 100292: LeftEye
+ 100294: LeftFoot
+ 100296: LeftHand
+ 100298: LeftIndex1
+ 100300: LeftIndex2
+ 100302: LeftIndex3
+ 100304: LeftIndexEND
+ 100306: LeftLeg
+ 100308: LeftMiddle1
+ 100310: LeftMiddle2
+ 100312: LeftMiddle3
+ 100314: LeftMiddleEND
+ 100316: LeftPinky1
+ 100318: LeftPinky2
+ 100320: LeftPinky3
+ 100322: LeftPinkyEND
+ 100324: LeftRing1
+ 100326: LeftRing2
+ 100328: LeftRing3
+ 100330: LeftRingEND
+ 100332: LeftShoulder
+ 100334: LeftThumb1
+ 100336: LeftThumb2
+ 100338: LeftThumb3
+ 100340: LeftThumbEND
+ 100342: LeftThumbEnd
+ 100344: LeftToe
+ 100346: LeftToeEND
+ 100348: LeftUpperArm
+ 100350: LeftUpperLeg
+ 100352: LowerEyelids
+ 100354: Mesh
+ 100356: Neck
+ 100358: //RootNode
+ 100360: RightArm
+ 100362: RightEye
+ 100364: RightFoot
+ 100366: RightHand
+ 100368: RightIndex1
+ 100370: RightIndex2
+ 100372: RightIndex3
+ 100374: RightIndexEND
+ 100376: RightLeg
+ 100378: RightMiddle1
+ 100380: RightMiddle2
+ 100382: RightMiddle3
+ 100384: RightMiddleEND
+ 100386: RightPinky1
+ 100388: RightPinky2
+ 100390: RightPinky3
+ 100392: RightPinkyEND
+ 100394: RightRing1
+ 100396: RightRing2
+ 100398: RightRing3
+ 100400: RightRingEND
+ 100402: RightShoulder
+ 100404: RightThumb1
+ 100406: RightThumb2
+ 100408: RightThumb3
+ 100410: RightThumbEND
+ 100412: RightThumbEnd
+ 100414: RightToe
+ 100416: RightToeEND
+ 100418: RightUpperArm
+ 100420: RightUpperLeg
+ 100422: Skeleton
+ 100424: Spine1
+ 100426: Spine2
+ 100428: Swivel
+ 100430: Swivel 1
+ 100432: ToeTap
+ 100434: ToeTap 1
+ 100436: ToeTip
+ 100438: ToeTip 1
+ 100440: UpperEyelids
+ 100442: LowerEyelidsEND
+ 100444: UpperEyelidsEND
+ 400000: Controls
+ 400002: ControlsEyeDirection
+ 400004: ControlsHips
+ 400006: ControlsLeftFoot
+ 400008: ControlsLeftHand
+ 400010: ControlsLeftIndex1
+ 400012: ControlsLeftIndex2
+ 400014: ControlsLeftIndex3
+ 400016: ControlsLeftLegPoleVector
+ 400018: ControlsLeftLegPoleVector1
+ 400020: ControlsLeftMiddle1
+ 400022: ControlsLeftMiddle2
+ 400024: ControlsLeftMiddle3
+ 400026: ControlsLeftPinky1
+ 400028: ControlsLeftPinky2
+ 400030: ControlsLeftPinky3
+ 400032: ControlsLeftRing1
+ 400034: ControlsLeftRing2
+ 400036: ControlsLeftRing3
+ 400038: ControlsLeftShoulder
+ 400040: ControlsLeftThumb1
+ 400042: ControlsLeftThumb2
+ 400044: ControlsLeftThumb3
+ 400046: ControlsLeftThumbOrient
+ 400048: ControlsLowerEyelid
+ 400050: ControlsNeck
+ 400052: ControlsRightFoot
+ 400054: ControlsRightHand
+ 400056: ControlsRightIndex1
+ 400058: ControlsRightIndex2
+ 400060: ControlsRightIndex3
+ 400062: ControlsRightLegPoleVector
+ 400064: ControlsRightLegPoleVector2
+ 400066: ControlsRightMiddle1
+ 400068: ControlsRightMiddle2
+ 400070: ControlsRightMiddle3
+ 400072: ControlsRightPinky1
+ 400074: ControlsRightPinky2
+ 400076: ControlsRightPinky3
+ 400078: ControlsRightRing1
+ 400080: ControlsRightRing2
+ 400082: ControlsRightRing3
+ 400084: ControlsRightShoulder
+ 400086: ControlsRightThumb1
+ 400088: ControlsRightThumb2
+ 400090: ControlsRightThumb3
+ 400092: ControlsRightThumbOrient
+ 400094: ControlsSpine1
+ 400096: ControlsSpine2
+ 400098: ControlsSpine3
+ 400100: ControlsUpperBody
+ 400102: ControlsUpperEyelid
+ 400104: Disguise1
+ 400106: DisguiseHeadParent
+ 400108: DogRun_Final2:ControlRightHip
+ 400110: DogRun_Final2:Controls
+ 400112: DogRun_Final2:ControlsChest
+ 400114: DogRun_Final2:ControlsEyes
+ 400116: DogRun_Final2:ControlsHead
+ 400118: DogRun_Final2:ControlsHips
+ 400120: DogRun_Final2:ControlsLeftEar
+ 400122: DogRun_Final2:ControlsLeftHip
+ 400124: DogRun_Final2:ControlsLeftShoulder
+ 400126: DogRun_Final2:ControlsMouth
+ 400128: DogRun_Final2:ControlsNeck
+ 400130: DogRun_Final2:ControlsRightEar
+ 400132: DogRun_Final2:ControlsRightShoulder
+ 400134: DogRun_Final2:ControlsSpine
+ 400136: DogRun_Final2:ControlsTail1
+ 400138: DogRun_Final2:ControlsTail2
+ 400140: DogRun_Final2:ControlsTail3
+ 400142: DogRun_Final2:EyeOrient
+ 400144: DogRun_Final2:Eyes
+ 400146: DogRun_Final2:Head
+ 400148: DogRun_Final2:HeadEnd
+ 400150: DogRun_Final2:ikHandleLeftArm
+ 400152: DogRun_Final2:ikHandleLeftFoot
+ 400154: DogRun_Final2:ikHandleLeftHand
+ 400156: DogRun_Final2:ikHandleLeftLeg
+ 400158: DogRun_Final2:ikHandleRightArm
+ 400160: DogRun_Final2:ikHandleRightFoot
+ 400162: DogRun_Final2:ikHandleRightHand
+ 400164: DogRun_Final2:ikHandleRightLeg
+ 400166: DogRun_Final2:LeftArm
+ 400168: DogRun_Final2:LeftArmPoleVector
+ 400170: DogRun_Final2:LeftEar
+ 400172: DogRun_Final2:LeftEarEnd
+ 400174: DogRun_Final2:LeftFoot
+ 400176: DogRun_Final2:LeftFootControls
+ 400178: DogRun_Final2:LeftFootEnd
+ 400180: DogRun_Final2:LeftFootHeelPeel
+ 400182: DogRun_Final2:LeftHand
+ 400184: DogRun_Final2:LeftHandControls
+ 400186: DogRun_Final2:LeftHandEnd
+ 400188: DogRun_Final2:LeftHandHeelPeel
+ 400190: DogRun_Final2:LeftHip
+ 400192: DogRun_Final2:LeftLeg1
+ 400194: DogRun_Final2:LeftLeg2
+ 400196: DogRun_Final2:LeftLeg3
+ 400198: DogRun_Final2:LeftLegPoleVector
+ 400200: DogRun_Final2:LeftShoulder
+ 400202: DogRun_Final2:LeftUpperArm
+ 400204: DogRun_Final2:Mouth
+ 400206: DogRun_Final2:MouthEnd
+ 400208: DogRun_Final2:Neck
+ 400210: DogRun_Final2:Pelvis
+ 400212: DogRun_Final2:RightArm
+ 400214: DogRun_Final2:RightArmPoleVector
+ 400216: DogRun_Final2:RightEar
+ 400218: DogRun_Final2:RightEarEnd
+ 400220: DogRun_Final2:RightFoot
+ 400222: DogRun_Final2:RightFootControls
+ 400224: DogRun_Final2:RightFootEnd
+ 400226: DogRun_Final2:RightFootHeelPeel
+ 400228: DogRun_Final2:RightHand
+ 400230: DogRun_Final2:RightHandControls
+ 400232: DogRun_Final2:RightHandEnd
+ 400234: DogRun_Final2:RightHandHeelPeel
+ 400236: DogRun_Final2:RightHip
+ 400238: DogRun_Final2:RightLeg1
+ 400240: DogRun_Final2:RightLeg2
+ 400242: DogRun_Final2:RightLeg3
+ 400244: DogRun_Final2:RightLegPoleVector
+ 400246: DogRun_Final2:RightShoulder
+ 400248: DogRun_Final2:RightUpperArm
+ 400250: DogRun_Final2:Skeleton
+ 400252: DogRun_Final2:Spine
+ 400254: DogRun_Final2:Tail1
+ 400256: DogRun_Final2:Tail2
+ 400258: DogRun_Final2:Tail3
+ 400260: DogRun_Final2:Tail3 1
+ 400262: group
+ 400264: Head
+ 400266: HeadEND
+ 400268: HeelPeel
+ 400270: HeelPeel 1
+ 400272: Hips
+ 400274: ikHandleLeftArm
+ 400276: ikHandleLeftFoot
+ 400278: ikHandleLeftLeg
+ 400280: ikHandleLeftToe
+ 400282: ikHandleRightArm
+ 400284: ikHandleRightFoot
+ 400286: ikHandleRightLeg
+ 400288: ikHandleRightToe
+ 400290: LeftArm
+ 400292: LeftEye
+ 400294: LeftFoot
+ 400296: LeftHand
+ 400298: LeftIndex1
+ 400300: LeftIndex2
+ 400302: LeftIndex3
+ 400304: LeftIndexEND
+ 400306: LeftLeg
+ 400308: LeftMiddle1
+ 400310: LeftMiddle2
+ 400312: LeftMiddle3
+ 400314: LeftMiddleEND
+ 400316: LeftPinky1
+ 400318: LeftPinky2
+ 400320: LeftPinky3
+ 400322: LeftPinkyEND
+ 400324: LeftRing1
+ 400326: LeftRing2
+ 400328: LeftRing3
+ 400330: LeftRingEND
+ 400332: LeftShoulder
+ 400334: LeftThumb1
+ 400336: LeftThumb2
+ 400338: LeftThumb3
+ 400340: LeftThumbEND
+ 400342: LeftThumbEnd
+ 400344: LeftToe
+ 400346: LeftToeEND
+ 400348: LeftUpperArm
+ 400350: LeftUpperLeg
+ 400352: LowerEyelids
+ 400354: Mesh
+ 400356: Neck
+ 400358: //RootNode
+ 400360: RightArm
+ 400362: RightEye
+ 400364: RightFoot
+ 400366: RightHand
+ 400368: RightIndex1
+ 400370: RightIndex2
+ 400372: RightIndex3
+ 400374: RightIndexEND
+ 400376: RightLeg
+ 400378: RightMiddle1
+ 400380: RightMiddle2
+ 400382: RightMiddle3
+ 400384: RightMiddleEND
+ 400386: RightPinky1
+ 400388: RightPinky2
+ 400390: RightPinky3
+ 400392: RightPinkyEND
+ 400394: RightRing1
+ 400396: RightRing2
+ 400398: RightRing3
+ 400400: RightRingEND
+ 400402: RightShoulder
+ 400404: RightThumb1
+ 400406: RightThumb2
+ 400408: RightThumb3
+ 400410: RightThumbEND
+ 400412: RightThumbEnd
+ 400414: RightToe
+ 400416: RightToeEND
+ 400418: RightUpperArm
+ 400420: RightUpperLeg
+ 400422: Skeleton
+ 400424: Spine1
+ 400426: Spine2
+ 400428: Swivel
+ 400430: Swivel 1
+ 400432: ToeTap
+ 400434: ToeTap 1
+ 400436: ToeTip
+ 400438: ToeTip 1
+ 400440: UpperEyelids
+ 400442: LowerEyelidsEND
+ 400444: UpperEyelidsEND
+ 2300000: ControlsLeftIndex1
+ 2300002: ControlsLeftIndex2
+ 2300004: ControlsLeftIndex3
+ 2300006: ControlsLeftLegPoleVector
+ 2300008: ControlsLeftLegPoleVector1
+ 2300010: ControlsLeftMiddle1
+ 2300012: ControlsLeftMiddle2
+ 2300014: ControlsLeftMiddle3
+ 2300016: ControlsLeftPinky1
+ 2300018: ControlsLeftPinky2
+ 2300020: ControlsLeftPinky3
+ 2300022: ControlsLeftRing1
+ 2300024: ControlsLeftRing2
+ 2300026: ControlsLeftRing3
+ 2300028: ControlsLeftThumb1
+ 2300030: ControlsLeftThumb2
+ 2300032: ControlsLeftThumb3
+ 2300034: ControlsLowerEyelid
+ 2300036: ControlsRightIndex1
+ 2300038: ControlsRightIndex2
+ 2300040: ControlsRightIndex3
+ 2300042: ControlsRightLegPoleVector
+ 2300044: ControlsRightLegPoleVector2
+ 2300046: ControlsRightMiddle1
+ 2300048: ControlsRightMiddle2
+ 2300050: ControlsRightMiddle3
+ 2300052: ControlsRightPinky1
+ 2300054: ControlsRightPinky2
+ 2300056: ControlsRightPinky3
+ 2300058: ControlsRightRing1
+ 2300060: ControlsRightRing2
+ 2300062: ControlsRightRing3
+ 2300064: ControlsRightThumb1
+ 2300066: ControlsRightThumb2
+ 2300068: ControlsRightThumb3
+ 2300070: ControlsUpperEyelid
+ 2300072: Disguise1
+ 2300074: DogRun_Final2:ControlRightHip
+ 2300076: DogRun_Final2:ControlsChest
+ 2300078: DogRun_Final2:ControlsEyes
+ 2300080: DogRun_Final2:ControlsHead
+ 2300082: DogRun_Final2:ControlsHips
+ 2300084: DogRun_Final2:ControlsLeftEar
+ 2300086: DogRun_Final2:ControlsLeftHip
+ 2300088: DogRun_Final2:ControlsLeftShoulder
+ 2300090: DogRun_Final2:ControlsMouth
+ 2300092: DogRun_Final2:ControlsNeck
+ 2300094: DogRun_Final2:ControlsRightEar
+ 2300096: DogRun_Final2:ControlsRightShoulder
+ 2300098: DogRun_Final2:ControlsSpine
+ 2300100: DogRun_Final2:ControlsTail1
+ 2300102: DogRun_Final2:ControlsTail2
+ 2300104: DogRun_Final2:ControlsTail3
+ 2300106: DogRun_Final2:LeftArmPoleVector
+ 2300108: DogRun_Final2:LeftLegPoleVector
+ 2300110: DogRun_Final2:RightArmPoleVector
+ 2300112: DogRun_Final2:RightLegPoleVector
+ 3300000: ControlsLeftIndex1
+ 3300002: ControlsLeftIndex2
+ 3300004: ControlsLeftIndex3
+ 3300006: ControlsLeftLegPoleVector
+ 3300008: ControlsLeftLegPoleVector1
+ 3300010: ControlsLeftMiddle1
+ 3300012: ControlsLeftMiddle2
+ 3300014: ControlsLeftMiddle3
+ 3300016: ControlsLeftPinky1
+ 3300018: ControlsLeftPinky2
+ 3300020: ControlsLeftPinky3
+ 3300022: ControlsLeftRing1
+ 3300024: ControlsLeftRing2
+ 3300026: ControlsLeftRing3
+ 3300028: ControlsLeftThumb1
+ 3300030: ControlsLeftThumb2
+ 3300032: ControlsLeftThumb3
+ 3300034: ControlsLowerEyelid
+ 3300036: ControlsRightIndex1
+ 3300038: ControlsRightIndex2
+ 3300040: ControlsRightIndex3
+ 3300042: ControlsRightLegPoleVector
+ 3300044: ControlsRightLegPoleVector2
+ 3300046: ControlsRightMiddle1
+ 3300048: ControlsRightMiddle2
+ 3300050: ControlsRightMiddle3
+ 3300052: ControlsRightPinky1
+ 3300054: ControlsRightPinky2
+ 3300056: ControlsRightPinky3
+ 3300058: ControlsRightRing1
+ 3300060: ControlsRightRing2
+ 3300062: ControlsRightRing3
+ 3300064: ControlsRightThumb1
+ 3300066: ControlsRightThumb2
+ 3300068: ControlsRightThumb3
+ 3300070: ControlsUpperEyelid
+ 3300072: Disguise1
+ 3300074: DogRun_Final2:ControlRightHip
+ 3300076: DogRun_Final2:ControlsChest
+ 3300078: DogRun_Final2:ControlsEyes
+ 3300080: DogRun_Final2:ControlsHead
+ 3300082: DogRun_Final2:ControlsHips
+ 3300084: DogRun_Final2:ControlsLeftEar
+ 3300086: DogRun_Final2:ControlsLeftHip
+ 3300088: DogRun_Final2:ControlsLeftShoulder
+ 3300090: DogRun_Final2:ControlsMouth
+ 3300092: DogRun_Final2:ControlsNeck
+ 3300094: DogRun_Final2:ControlsRightEar
+ 3300096: DogRun_Final2:ControlsRightShoulder
+ 3300098: DogRun_Final2:ControlsSpine
+ 3300100: DogRun_Final2:ControlsTail1
+ 3300102: DogRun_Final2:ControlsTail2
+ 3300104: DogRun_Final2:ControlsTail3
+ 3300106: DogRun_Final2:LeftArmPoleVector
+ 3300108: DogRun_Final2:LeftLegPoleVector
+ 3300110: DogRun_Final2:RightArmPoleVector
+ 3300112: DogRun_Final2:RightLegPoleVector
+ 4300000: Mesh
+ 4300002: ControlsLeftLegPoleVector
+ 4300004: ControlsUpperEyelid
+ 4300006: ControlsLowerEyelid
+ 4300008: ControlsLeftLegPoleVector1
+ 4300010: ControlsLeftIndex1
+ 4300012: ControlsLeftIndex2
+ 4300014: ControlsLeftIndex3
+ 4300016: ControlsLeftMiddle1
+ 4300018: ControlsLeftMiddle2
+ 4300020: ControlsLeftMiddle3
+ 4300022: ControlsLeftRing1
+ 4300024: ControlsLeftRing2
+ 4300026: ControlsLeftRing3
+ 4300028: ControlsLeftPinky1
+ 4300030: ControlsLeftPinky2
+ 4300032: ControlsLeftPinky3
+ 4300034: ControlsLeftThumb1
+ 4300036: ControlsLeftThumb2
+ 4300038: ControlsLeftThumb3
+ 4300040: ControlsRightThumb1
+ 4300042: ControlsRightThumb2
+ 4300044: ControlsRightThumb3
+ 4300046: ControlsRightPinky1
+ 4300048: ControlsRightPinky2
+ 4300050: ControlsRightPinky3
+ 4300052: ControlsRightRing1
+ 4300054: ControlsRightRing2
+ 4300056: ControlsRightRing3
+ 4300058: ControlsRightMiddle1
+ 4300060: ControlsRightMiddle2
+ 4300062: ControlsRightMiddle3
+ 4300064: ControlsRightIndex1
+ 4300066: ControlsRightIndex2
+ 4300068: ControlsRightIndex3
+ 4300070: ControlsRightLegPoleVector
+ 4300072: ControlsRightLegPoleVector2
+ 4300074: Disguise1
+ 4300076: DogRun_Final2:ControlsChest
+ 4300078: DogRun_Final2:LeftArmPoleVector
+ 4300080: DogRun_Final2:LeftLegPoleVector
+ 4300082: DogRun_Final2:RightArmPoleVector
+ 4300084: DogRun_Final2:RightLegPoleVector
+ 4300086: DogRun_Final2:ControlsHips
+ 4300088: DogRun_Final2:ControlsLeftHip
+ 4300090: DogRun_Final2:ControlRightHip
+ 4300092: DogRun_Final2:ControlsTail1
+ 4300094: DogRun_Final2:ControlsTail2
+ 4300096: DogRun_Final2:ControlsTail3
+ 4300098: DogRun_Final2:ControlsSpine
+ 4300100: DogRun_Final2:ControlsRightShoulder
+ 4300102: DogRun_Final2:ControlsLeftShoulder
+ 4300104: DogRun_Final2:ControlsNeck
+ 4300106: DogRun_Final2:ControlsHead
+ 4300108: DogRun_Final2:ControlsMouth
+ 4300110: DogRun_Final2:ControlsLeftEar
+ 4300112: DogRun_Final2:ControlsRightEar
+ 4300114: DogRun_Final2:ControlsEyes
+ 7400000: PlayerPutGlassesOn
+ 9500000: //RootNode
+ 13700000: Mesh
+ materials:
+ importMaterials: 0
+ materialName: 0
+ materialSearch: 1
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleCurves: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 3
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: PlayerPutGlassesOn
+ takeName: Take 001
+ firstFrame: 1
+ lastFrame: 120
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 0
+ loopBlend: 0
+ loopBlendOrientation: 1
+ loopBlendPositionY: 1
+ loopBlendPositionXZ: 1
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 0
+ - path: Controls/ControlsUpperBody
+ weight: 0
+ - path: Controls/ControlsUpperBody/ControlsHips
+ weight: 0
+ - path: Mesh
+ weight: 0
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Hips
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot/LeftToe
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot/LeftToe/LeftToeEND
+ weight: 0
+ - path: Skeleton/Hips/RightUpperLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot/RightToe
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot/RightToe/RightToeEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3/LeftPinkyEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2/LeftRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2/LeftRing3/LeftRingEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd/LeftThumbEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/HeadEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LeftEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LowerEyelids
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LowerEyelids/LowerEyelidsEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/RightEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/UpperEyelids
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/UpperEyelids/UpperEyelidsEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2/RightIndex3/RightIndexEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2/RightPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2/RightPinky3/RightPinkyEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2/RightRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2/RightRing3/RightRingEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd/RightThumbEND
+ weight: 0
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 1
+ humanDescription:
+ human:
+ - boneName: Hips
+ humanName: Hips
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftUpperLeg
+ humanName: LeftUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightUpperLeg
+ humanName: RightUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftLeg
+ humanName: LeftLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightLeg
+ humanName: RightLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftFoot
+ humanName: LeftFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightFoot
+ humanName: RightFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Spine1
+ humanName: Spine
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Spine2
+ humanName: Chest
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Neck
+ humanName: Neck
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Head
+ humanName: Head
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftShoulder
+ humanName: LeftShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightShoulder
+ humanName: RightShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftUpperArm
+ humanName: LeftUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightUpperArm
+ humanName: RightUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftArm
+ humanName: LeftLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightArm
+ humanName: RightLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHand
+ humanName: LeftHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHand
+ humanName: RightHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftToe
+ humanName: LeftToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightToe
+ humanName: RightToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftEye
+ humanName: LeftEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightEye
+ humanName: RightEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb1
+ humanName: Left Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb2
+ humanName: Left Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb3
+ humanName: Left Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex1
+ humanName: Left Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex2
+ humanName: Left Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex3
+ humanName: Left Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle1
+ humanName: Left Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle2
+ humanName: Left Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle3
+ humanName: Left Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing1
+ humanName: Left Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing2
+ humanName: Left Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing3
+ humanName: Left Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky1
+ humanName: Left Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky2
+ humanName: Left Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky3
+ humanName: Left Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb1
+ humanName: Right Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb2
+ humanName: Right Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb3
+ humanName: Right Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex1
+ humanName: Right Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex2
+ humanName: Right Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex3
+ humanName: Right Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle1
+ humanName: Right Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle2
+ humanName: Right Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle3
+ humanName: Right Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing1
+ humanName: Right Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing2
+ humanName: Right Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing3
+ humanName: Right Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky1
+ humanName: Right Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky2
+ humanName: Right Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky3
+ humanName: Right Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ skeleton:
+ - name: Player(Clone)
+ position: {x: 0, y: 0, z: 0}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Controls
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: ControlsUpperBody
+ position: {x: -0, y: 0.9856257, z: -0.028446734}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: ControlsHips
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Mesh
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Skeleton
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Hips
+ position: {x: 0, y: 0.9088629, z: -0.028446734}
+ rotation: {x: 0.7071068, y: -0.7071068, z: -4.3297806e-17, w: 4.3297806e-17}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftUpperLeg
+ position: {x: 0.037347827, y: 0.092801034, z: 0.0064211558}
+ rotation: {x: -0.0033267832, y: 0.99839103, z: 0.056605782, w: -0.0004065326}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLeg
+ position: {x: -0.37195736, y: -1.236171e-16, z: 5.1000362e-18}
+ rotation: {x: -0.0004567116, y: -0.052333966, z: -0.008714577, w: 0.99859154}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftFoot
+ position: {x: -0.41152263, y: -0.0015294757, z: -0.002893631}
+ rotation: {x: 0.050357435, y: 0.49969903, z: 0.026062192, w: 0.86434126}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftToe
+ position: {x: -0.1110157, y: -2.5535128e-17, z: 8.2057634e-17}
+ rotation: {x: 4.2141773e-14, y: 0.3007058, z: -1.328725e-14, w: 0.95371693}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftToeEND
+ position: {x: -0.11182804, y: -2.918769e-18, z: 9.290528e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightUpperLeg
+ position: {x: 0.037347663, y: -0.092801, z: 0.0064211655}
+ rotation: {x: -0.05660591, y: 0.00040653365, z: -0.003326788, w: 0.99839103}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLeg
+ position: {x: 0.37195793, y: 5.9421585e-17, z: -4.0592486e-18}
+ rotation: {x: -0.0004567116, y: -0.052333966, z: -0.008714577, w: 0.99859154}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightFoot
+ position: {x: 0.41152248, y: 0.001529468, z: 0.0028936374}
+ rotation: {x: 0.05035755, y: 0.49969906, z: 0.026062248, w: 0.86434126}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightToe
+ position: {x: 0.11101543, y: -0.000000079186826, z: -0.0000003664904}
+ rotation: {x: 0, y: 0.3007058, z: -0, w: 0.95371693}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightToeEND
+ position: {x: 0.111827955, y: 0.000000072275725, z: 0.00000062929314}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Spine1
+ position: {x: -0.10568693, y: 0, z: 0}
+ rotation: {x: -6.123234e-17, y: -6.123234e-17, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Spine2
+ position: {x: -0.1833106, y: 8.548717e-16, z: -4.440892e-18}
+ rotation: {x: -6.5194134e-17, y: 0.087155744, z: 3.8665733e-34, w: 0.9961947}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftShoulder
+ position: {x: -0.1435461, y: 0.03922616, z: 0.022630278}
+ rotation: {x: -0.68924034, y: 0.71203506, z: 0.0130629325, w: 0.13335347}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftUpperArm
+ position: {x: -0.11169202, y: -1.3877788e-17, z: -5.851063e-17}
+ rotation: {x: 0.0016100118, y: 0.104498126, z: -0.025915265, w: 0.9941861}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftArm
+ position: {x: -0.2715663, y: 0, z: 0}
+ rotation: {x: 8.2024617e-16, y: 0.000052097534, z: -8.848866e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHand
+ position: {x: -0.2331744, y: -2.842171e-16, z: 0}
+ rotation: {x: -0.0000024176625, y: -0.0028313876, z: 0.000843909, w: 0.99999565}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex1
+ position: {x: -0.09506476, y: 0.00005518901, z: 0.03229297}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex2
+ position: {x: -0.031456187, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex3
+ position: {x: -0.026145402, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndexEND
+ position: {x: -0.030434882, y: 0, z: 8.881784e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle1
+ position: {x: -0.09450546, y: -0.000005017072, z: 0.0054007857}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle2
+ position: {x: -0.03860532, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle3
+ position: {x: -0.029822098, y: 0, z: 0}
+ rotation: {x: 1.6940659e-21, y: -3.0374601e-18, z: 1.5144949e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddleEND
+ position: {x: -0.030639142, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky1
+ position: {x: -0.09338952, y: -0.00012434727, z: -0.047905773}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky2
+ position: {x: -0.02757523, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky3
+ position: {x: -0.023694271, y: 0, z: -1.7763568e-17}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinkyEND
+ position: {x: -0.023898533, y: 0, z: 1.7763568e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing1
+ position: {x: -0.09456046, y: -0.00006564576, z: -0.02122128}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing2
+ position: {x: -0.033294536, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing3
+ position: {x: -0.02573688, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRingEND
+ position: {x: -0.032273233, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb1
+ position: {x: -0.014531664, y: -0.010635542, z: 0.02609546}
+ rotation: {x: -0.001391087, y: 0.43585023, z: 0.00026398723, w: 0.90001816}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb2
+ position: {x: -0.044124622, y: 0, z: 4.440892e-18}
+ rotation: {x: 0.0000001058215, y: -0.03346803, z: -0.000001782842, w: 0.99943984}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb3
+ position: {x: -0.03446204, y: 0, z: -1.5543122e-17}
+ rotation: {x: 1.1354973e-16, y: 0.017452406, z: 2.3701255e-16, w: 0.9998477}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumbEnd
+ position: {x: -0.027849242, y: 0, z: -2.220446e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumbEND
+ position: {x: 1.1400142e-18, y: 0, z: -1.9054521e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Neck
+ position: {x: -0.2294332, y: -1.821977e-17, z: 0.0049986364}
+ rotation: {x: -2.775558e-17, y: -0.29237172, z: 4.0278586e-33, w: 0.9563048}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Head
+ position: {x: -0.10867395, y: -1.1779883e-16, z: 1.4210854e-16}
+ rotation: {x: -1.3877788e-17, y: 0.19936794, z: -3.9307714e-34, w: 0.9799247}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: HeadEND
+ position: {x: -0.24878563, y: -1.5987211e-16, z: 7.902685e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEye
+ position: {x: -0.06898784, y: 0.042644892, z: -0.067543894}
+ rotation: {x: 0.49111634, y: -0.4841803, z: 0.50882685, w: 0.5152373}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LowerEyelids
+ position: {x: -0.05675008, y: -8.5596115e-16, z: -0.09207437}
+ rotation: {x: 5.89806e-17, y: -8.6736174e-19, z: 1.110223e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEye
+ position: {x: -0.06898793, y: -0.0426449, z: -0.06754389}
+ rotation: {x: -1.1714554e-15, y: 1, z: 2.8327693e-16, w: 7.7545535e-17}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: UpperEyelids
+ position: {x: -0.07905001, y: -8.603375e-16, z: -0.096244544}
+ rotation: {x: 5.89806e-17, y: -8.6736174e-19, z: 1.110223e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightShoulder
+ position: {x: -0.14354727, y: -0.0392262, z: 0.022630045}
+ rotation: {x: -0.0130629325, y: -0.13335347, z: -0.68924034, w: 0.71203506}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightUpperArm
+ position: {x: 0.11169233, y: 0.0000013741218, z: -0.000000017416571}
+ rotation: {x: 0.99418354, y: -0.02591735, z: -0.10452178, w: -0.0016203261}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightArm
+ position: {x: 0.27156565, y: -0.0000016521891, z: -0.000000010419892}
+ rotation: {x: -0.000011964993, y: 0.0000000651813, z: -0.000010528297, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHand
+ position: {x: 0.23317498, y: 0.000003552258, z: 0.00000003303112}
+ rotation: {x: 0.9999994, y: 0.000013414664, z: -0.00003311748, w: -0.0011172838}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex1
+ position: {x: 0.09506465, y: -0.000052980962, z: -0.03229297}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex2
+ position: {x: 0.031456, y: 5.684342e-16, z: 3.7303492e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex3
+ position: {x: 0.026145, y: 0, z: 2.842171e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndexEND
+ position: {x: 0.030435, y: 2.842171e-16, z: 3.2862602e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle1
+ position: {x: 0.09450487, y: 0.000007224165, z: -0.0054008546}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle2
+ position: {x: 0.038606, y: 2.842171e-16, z: 4.440892e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle3
+ position: {x: 0.029821998, y: 2.842171e-16, z: 3.375078e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddleEND
+ position: {x: 0.030638998, y: -2.842171e-16, z: 3.375078e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky1
+ position: {x: 0.093388975, y: 0.0001265551, z: 0.047905993}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky2
+ position: {x: 0.027576, y: 0, z: 3.375078e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky3
+ position: {x: 0.023694, y: 0, z: 2.664535e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinkyEND
+ position: {x: 0.023898, y: 2.842171e-16, z: 2.664535e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing1
+ position: {x: 0.0945606, y: 0.0000678541, z: 0.021221206}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing2
+ position: {x: 0.033294, y: 2.842171e-16, z: 3.5527135e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing3
+ position: {x: 0.025736999, y: 0, z: 2.842171e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRingEND
+ position: {x: 0.032273, y: 2.842171e-16, z: 3.7303492e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb1
+ position: {x: 0.014531372, y: 0.010635231, z: -0.026095485}
+ rotation: {x: -0.001391087, y: 0.43585023, z: 0.00026398723, w: 0.90001816}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb2
+ position: {x: 0.044124745, y: 2.842171e-16, z: 0.00000011967238}
+ rotation: {x: -0.0000001293374, y: -0.033468656, z: 0.0000011772497, w: 0.9994398}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb3
+ position: {x: 0.03446187, y: 1.7053025e-15, z: -0.000000061993184}
+ rotation: {x: -1.289088e-16, y: 0.017452406, z: -7.523221e-16, w: 0.9998477}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumbEnd
+ position: {x: 0.02784971, y: 1.7053025e-15, z: 0.00000026974834}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumbEND
+ position: {x: -1.4210854e-16, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 9d9569a11a06f464bb9a5618bdd51bba,
+ type: 3}
+ animationType: 3
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Run.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Run.fbx
new file mode 100644
index 00000000..72673a5b
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Run.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Run.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Run.fbx.meta
new file mode 100644
index 00000000..273d1562
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Run.fbx.meta
@@ -0,0 +1,1686 @@
+fileFormatVersion: 2
+guid: 1cb8ed3cbba15f0479fbae54e0a963df
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Character_Ctrl:Reference
+ 100002: Chest
+ 100004: ChestEndEffector
+ 100006: ChestOriginEffector
+ 100008: chestProxy_geo
+ 100010: //RootNode
+ 100012: Head
+ 100014: Head 1
+ 100016: HeadEffector
+ 100018: headProxy_geo
+ 100020: HeadTop_End
+ 100022: Hips
+ 100024: Hips 1
+ 100026: HipsEffector
+ 100028: Jaw
+ 100030: JawEND
+ 100032: jawProxy_geo
+ 100034: l_ankleProxy_geo
+ 100036: l_ballProxy_geo
+ 100038: l_clavicleProxy_geo
+ 100040: l_erbowProxy_geo
+ 100042: l_hipProxy_geo
+ 100044: l_indexProxy_01_geo
+ 100046: l_indexProxy_02_geo
+ 100048: l_indexProxy_03_geo
+ 100050: l_kneeProxy_geo
+ 100052: l_middleProxy_01_geo
+ 100054: l_middleProxy_02_geo
+ 100056: l_middleProxy_03_geo
+ 100058: l_pinkyProxy_01_geo
+ 100060: l_pinkyProxy_02_geo
+ 100062: l_pinkyProxy_03_geo
+ 100064: l_ringProxy_01_geo
+ 100066: l_ringProxy_02_geo
+ 100068: l_ringProxy_03_geo
+ 100070: l_shourderProxy_geo
+ 100072: l_thumbProxy_01_geo
+ 100074: l_thumbProxy_02_geo
+ 100076: l_thumbProxy_03_geo
+ 100078: l_UNI_eye
+ 100080: l_wristProxy_geo
+ 100082: LeftAnkleEffector
+ 100084: LeftArm
+ 100086: LeftArm 1
+ 100088: LeftCheek
+ 100090: LeftElbowEffector
+ 100092: LeftEye
+ 100094: LeftEyelidLower
+ 100096: LeftEyelidUpper
+ 100098: LeftFoot
+ 100100: LeftFoot 1
+ 100102: LeftForeArm
+ 100104: LeftForeArm 1
+ 100106: LeftHand
+ 100108: LeftHand 1
+ 100110: LeftHandIndex1
+ 100112: LeftHandIndex13
+ 100114: LeftHandIndex17
+ 100116: LeftHandIndex2
+ 100118: LeftHandIndex3
+ 100120: LeftHandIndex4
+ 100122: LeftHandIndex5
+ 100124: LeftHandIndex6
+ 100126: LeftHandIndexEffector
+ 100128: LeftHandMiddle1
+ 100130: LeftHandMiddle13
+ 100132: LeftHandMiddle17
+ 100134: LeftHandMiddle2
+ 100136: LeftHandMiddle3
+ 100138: LeftHandMiddle4
+ 100140: LeftHandMiddle5
+ 100142: LeftHandMiddle6
+ 100144: LeftHandMiddleEffector
+ 100146: LeftHandPinky1
+ 100148: LeftHandPinky13
+ 100150: LeftHandPinky17
+ 100152: LeftHandPinky2
+ 100154: LeftHandPinky3
+ 100156: LeftHandPinky4
+ 100158: LeftHandPinky5
+ 100160: LeftHandPinky6
+ 100162: LeftHandPinkyEffector
+ 100164: LeftHandRing1
+ 100166: LeftHandRing13
+ 100168: LeftHandRing17
+ 100170: LeftHandRing2
+ 100172: LeftHandRing3
+ 100174: LeftHandRing4
+ 100176: LeftHandRing5
+ 100178: LeftHandRing6
+ 100180: LeftHandRingEffector
+ 100182: LeftHandThumb1
+ 100184: LeftHandThumb13
+ 100186: LeftHandThumb17
+ 100188: LeftHandThumb2
+ 100190: LeftHandThumb3
+ 100192: LeftHandThumb4
+ 100194: LeftHandThumb5
+ 100196: LeftHandThumb6
+ 100198: LeftHandThumbEffector
+ 100200: LeftHipEffector
+ 100202: LeftInnerBrow
+ 100204: LeftIOuterBrow
+ 100206: LeftKneeEffector
+ 100208: LeftLeg
+ 100210: LeftLeg 1
+ 100212: LeftLipCorner
+ 100214: LeftLipLower
+ 100216: LeftLipUpper
+ 100218: LeftNostril
+ 100220: LeftShoulder
+ 100222: LeftShoulder 1
+ 100224: LeftShoulderEffector
+ 100226: LeftToes
+ 100228: LeftUpLeg
+ 100230: LeftUpLeg 1
+ 100232: LeftWristEffector
+ 100234: LToeBase_End2
+ 100236: LToeBase_End3
+ 100238: Neck
+ 100240: Neck 1
+ 100242: neckProxy_geo
+ 100244: pelvisProxy_geo
+ 100246: r_ankleProxy_geo
+ 100248: r_ballProxy_geo
+ 100250: r_clavicleProxy_geo
+ 100252: r_erbowProxy_geo
+ 100254: r_hipProxy_geo
+ 100256: r_indexProxy_01_geo
+ 100258: r_indexProxy_02_geo
+ 100260: r_indexProxy_03_geo
+ 100262: r_kneeProxy_geo
+ 100264: r_middleProxy_01_geo
+ 100266: r_middleProxy_02_geo
+ 100268: r_middleProxy_03_geo
+ 100270: r_pinkyProxy_01_geo
+ 100272: r_pinkyProxy_02_geo
+ 100274: r_pinkyProxy_03_geo
+ 100276: r_ringProxy_01_geo
+ 100278: r_ringProxy_02_geo
+ 100280: r_ringProxy_03_geo
+ 100282: r_shourderProxy_geo
+ 100284: r_thumbProxy_01_geo
+ 100286: r_thumbProxy_02_geo
+ 100288: r_thumbProxy_03_geo
+ 100290: r_UNI_eye
+ 100292: r_wristProxy_geo
+ 100294: Reference
+ 100296: RightAnkleEffector
+ 100298: RightArm
+ 100300: RightArm 1
+ 100302: RightCheek
+ 100304: RightElbowEffector
+ 100306: RightEye
+ 100308: RightEyelidLower
+ 100310: RightEyelidUpper
+ 100312: RightFoot
+ 100314: RightFoot 1
+ 100316: RightForeArm
+ 100318: RightForeArm 1
+ 100320: RightHand
+ 100322: RightHand 1
+ 100324: RightHandIndex1
+ 100326: RightHandIndex2
+ 100328: RightHandIndex3
+ 100330: RightHandIndex4
+ 100332: RightHandIndex5
+ 100334: RightHandIndex6
+ 100336: RightHandIndexEffector
+ 100338: RightHandMiddle1
+ 100340: RightHandMiddle2
+ 100342: RightHandMiddle3
+ 100344: RightHandMiddle4
+ 100346: RightHandMiddle5
+ 100348: RightHandMiddle6
+ 100350: RightHandMiddleEffector
+ 100352: RightHandPinky1
+ 100354: RightHandPinky2
+ 100356: RightHandPinky3
+ 100358: RightHandPinky4
+ 100360: RightHandPinky5
+ 100362: RightHandPinky6
+ 100364: RightHandPinkyEffector
+ 100366: RightHandRing1
+ 100368: RightHandRing2
+ 100370: RightHandRing3
+ 100372: RightHandRing4
+ 100374: RightHandRing5
+ 100376: RightHandRing6
+ 100378: RightHandRingEffector
+ 100380: RightHandThumb1
+ 100382: RightHandThumb2
+ 100384: RightHandThumb3
+ 100386: RightHandThumb4
+ 100388: RightHandThumb5
+ 100390: RightHandThumb6
+ 100392: RightHandThumbEffector
+ 100394: RightHipEffector
+ 100396: RightInnerBrow
+ 100398: RightIOuterBrow
+ 100400: RightKneeEffector
+ 100402: RightLeg
+ 100404: RightLeg 1
+ 100406: RightLipCorner
+ 100408: RightLipLower
+ 100410: RightLipUpper
+ 100412: RightNostril
+ 100414: RightShoulder
+ 100416: RightShoulder 1
+ 100418: RightShoulderEffector
+ 100420: RightToes
+ 100422: RightUpLeg
+ 100424: RightUpLeg 1
+ 100426: RightWristEffector
+ 100428: Spine
+ 100430: Spine 1
+ 100432: Spine1
+ 100434: spineProxy_geo
+ 100436: TongueBack
+ 100438: TongueTip
+ 100440: UNI_01_Lower_teethProxy
+ 100442: UNI_01_TongueBaseProxy
+ 100444: UNI_01_TongueTipProxy
+ 100446: UNI_01_Upper_teethProxy
+ 400000: Character_Ctrl:Reference
+ 400002: Chest
+ 400004: ChestEndEffector
+ 400006: ChestOriginEffector
+ 400008: chestProxy_geo
+ 400010: //RootNode
+ 400012: Head
+ 400014: Head 1
+ 400016: HeadEffector
+ 400018: headProxy_geo
+ 400020: HeadTop_End
+ 400022: Hips
+ 400024: Hips 1
+ 400026: HipsEffector
+ 400028: Jaw
+ 400030: JawEND
+ 400032: jawProxy_geo
+ 400034: l_ankleProxy_geo
+ 400036: l_ballProxy_geo
+ 400038: l_clavicleProxy_geo
+ 400040: l_erbowProxy_geo
+ 400042: l_hipProxy_geo
+ 400044: l_indexProxy_01_geo
+ 400046: l_indexProxy_02_geo
+ 400048: l_indexProxy_03_geo
+ 400050: l_kneeProxy_geo
+ 400052: l_middleProxy_01_geo
+ 400054: l_middleProxy_02_geo
+ 400056: l_middleProxy_03_geo
+ 400058: l_pinkyProxy_01_geo
+ 400060: l_pinkyProxy_02_geo
+ 400062: l_pinkyProxy_03_geo
+ 400064: l_ringProxy_01_geo
+ 400066: l_ringProxy_02_geo
+ 400068: l_ringProxy_03_geo
+ 400070: l_shourderProxy_geo
+ 400072: l_thumbProxy_01_geo
+ 400074: l_thumbProxy_02_geo
+ 400076: l_thumbProxy_03_geo
+ 400078: l_UNI_eye
+ 400080: l_wristProxy_geo
+ 400082: LeftAnkleEffector
+ 400084: LeftArm
+ 400086: LeftArm 1
+ 400088: LeftCheek
+ 400090: LeftElbowEffector
+ 400092: LeftEye
+ 400094: LeftEyelidLower
+ 400096: LeftEyelidUpper
+ 400098: LeftFoot
+ 400100: LeftFoot 1
+ 400102: LeftForeArm
+ 400104: LeftForeArm 1
+ 400106: LeftHand
+ 400108: LeftHand 1
+ 400110: LeftHandIndex1
+ 400112: LeftHandIndex13
+ 400114: LeftHandIndex17
+ 400116: LeftHandIndex2
+ 400118: LeftHandIndex3
+ 400120: LeftHandIndex4
+ 400122: LeftHandIndex5
+ 400124: LeftHandIndex6
+ 400126: LeftHandIndexEffector
+ 400128: LeftHandMiddle1
+ 400130: LeftHandMiddle13
+ 400132: LeftHandMiddle17
+ 400134: LeftHandMiddle2
+ 400136: LeftHandMiddle3
+ 400138: LeftHandMiddle4
+ 400140: LeftHandMiddle5
+ 400142: LeftHandMiddle6
+ 400144: LeftHandMiddleEffector
+ 400146: LeftHandPinky1
+ 400148: LeftHandPinky13
+ 400150: LeftHandPinky17
+ 400152: LeftHandPinky2
+ 400154: LeftHandPinky3
+ 400156: LeftHandPinky4
+ 400158: LeftHandPinky5
+ 400160: LeftHandPinky6
+ 400162: LeftHandPinkyEffector
+ 400164: LeftHandRing1
+ 400166: LeftHandRing13
+ 400168: LeftHandRing17
+ 400170: LeftHandRing2
+ 400172: LeftHandRing3
+ 400174: LeftHandRing4
+ 400176: LeftHandRing5
+ 400178: LeftHandRing6
+ 400180: LeftHandRingEffector
+ 400182: LeftHandThumb1
+ 400184: LeftHandThumb13
+ 400186: LeftHandThumb17
+ 400188: LeftHandThumb2
+ 400190: LeftHandThumb3
+ 400192: LeftHandThumb4
+ 400194: LeftHandThumb5
+ 400196: LeftHandThumb6
+ 400198: LeftHandThumbEffector
+ 400200: LeftHipEffector
+ 400202: LeftInnerBrow
+ 400204: LeftIOuterBrow
+ 400206: LeftKneeEffector
+ 400208: LeftLeg
+ 400210: LeftLeg 1
+ 400212: LeftLipCorner
+ 400214: LeftLipLower
+ 400216: LeftLipUpper
+ 400218: LeftNostril
+ 400220: LeftShoulder
+ 400222: LeftShoulder 1
+ 400224: LeftShoulderEffector
+ 400226: LeftToes
+ 400228: LeftUpLeg
+ 400230: LeftUpLeg 1
+ 400232: LeftWristEffector
+ 400234: LToeBase_End2
+ 400236: LToeBase_End3
+ 400238: Neck
+ 400240: Neck 1
+ 400242: neckProxy_geo
+ 400244: pelvisProxy_geo
+ 400246: r_ankleProxy_geo
+ 400248: r_ballProxy_geo
+ 400250: r_clavicleProxy_geo
+ 400252: r_erbowProxy_geo
+ 400254: r_hipProxy_geo
+ 400256: r_indexProxy_01_geo
+ 400258: r_indexProxy_02_geo
+ 400260: r_indexProxy_03_geo
+ 400262: r_kneeProxy_geo
+ 400264: r_middleProxy_01_geo
+ 400266: r_middleProxy_02_geo
+ 400268: r_middleProxy_03_geo
+ 400270: r_pinkyProxy_01_geo
+ 400272: r_pinkyProxy_02_geo
+ 400274: r_pinkyProxy_03_geo
+ 400276: r_ringProxy_01_geo
+ 400278: r_ringProxy_02_geo
+ 400280: r_ringProxy_03_geo
+ 400282: r_shourderProxy_geo
+ 400284: r_thumbProxy_01_geo
+ 400286: r_thumbProxy_02_geo
+ 400288: r_thumbProxy_03_geo
+ 400290: r_UNI_eye
+ 400292: r_wristProxy_geo
+ 400294: Reference
+ 400296: RightAnkleEffector
+ 400298: RightArm
+ 400300: RightArm 1
+ 400302: RightCheek
+ 400304: RightElbowEffector
+ 400306: RightEye
+ 400308: RightEyelidLower
+ 400310: RightEyelidUpper
+ 400312: RightFoot
+ 400314: RightFoot 1
+ 400316: RightForeArm
+ 400318: RightForeArm 1
+ 400320: RightHand
+ 400322: RightHand 1
+ 400324: RightHandIndex1
+ 400326: RightHandIndex2
+ 400328: RightHandIndex3
+ 400330: RightHandIndex4
+ 400332: RightHandIndex5
+ 400334: RightHandIndex6
+ 400336: RightHandIndexEffector
+ 400338: RightHandMiddle1
+ 400340: RightHandMiddle2
+ 400342: RightHandMiddle3
+ 400344: RightHandMiddle4
+ 400346: RightHandMiddle5
+ 400348: RightHandMiddle6
+ 400350: RightHandMiddleEffector
+ 400352: RightHandPinky1
+ 400354: RightHandPinky2
+ 400356: RightHandPinky3
+ 400358: RightHandPinky4
+ 400360: RightHandPinky5
+ 400362: RightHandPinky6
+ 400364: RightHandPinkyEffector
+ 400366: RightHandRing1
+ 400368: RightHandRing2
+ 400370: RightHandRing3
+ 400372: RightHandRing4
+ 400374: RightHandRing5
+ 400376: RightHandRing6
+ 400378: RightHandRingEffector
+ 400380: RightHandThumb1
+ 400382: RightHandThumb2
+ 400384: RightHandThumb3
+ 400386: RightHandThumb4
+ 400388: RightHandThumb5
+ 400390: RightHandThumb6
+ 400392: RightHandThumbEffector
+ 400394: RightHipEffector
+ 400396: RightInnerBrow
+ 400398: RightIOuterBrow
+ 400400: RightKneeEffector
+ 400402: RightLeg
+ 400404: RightLeg 1
+ 400406: RightLipCorner
+ 400408: RightLipLower
+ 400410: RightLipUpper
+ 400412: RightNostril
+ 400414: RightShoulder
+ 400416: RightShoulder 1
+ 400418: RightShoulderEffector
+ 400420: RightToes
+ 400422: RightUpLeg
+ 400424: RightUpLeg 1
+ 400426: RightWristEffector
+ 400428: Spine
+ 400430: Spine 1
+ 400432: Spine1
+ 400434: spineProxy_geo
+ 400436: TongueBack
+ 400438: TongueTip
+ 400440: UNI_01_Lower_teethProxy
+ 400442: UNI_01_TongueBaseProxy
+ 400444: UNI_01_TongueTipProxy
+ 400446: UNI_01_Upper_teethProxy
+ 2300000: chestProxy_geo
+ 2300002: headProxy_geo
+ 2300004: jawProxy_geo
+ 2300006: l_ankleProxy_geo
+ 2300008: l_ballProxy_geo
+ 2300010: l_clavicleProxy_geo
+ 2300012: l_erbowProxy_geo
+ 2300014: l_hipProxy_geo
+ 2300016: l_indexProxy_01_geo
+ 2300018: l_indexProxy_02_geo
+ 2300020: l_indexProxy_03_geo
+ 2300022: l_kneeProxy_geo
+ 2300024: l_middleProxy_01_geo
+ 2300026: l_middleProxy_02_geo
+ 2300028: l_middleProxy_03_geo
+ 2300030: l_pinkyProxy_01_geo
+ 2300032: l_pinkyProxy_02_geo
+ 2300034: l_pinkyProxy_03_geo
+ 2300036: l_ringProxy_01_geo
+ 2300038: l_ringProxy_02_geo
+ 2300040: l_ringProxy_03_geo
+ 2300042: l_shourderProxy_geo
+ 2300044: l_thumbProxy_01_geo
+ 2300046: l_thumbProxy_02_geo
+ 2300048: l_thumbProxy_03_geo
+ 2300050: l_UNI_eye
+ 2300052: l_wristProxy_geo
+ 2300054: neckProxy_geo
+ 2300056: pelvisProxy_geo
+ 2300058: r_ankleProxy_geo
+ 2300060: r_ballProxy_geo
+ 2300062: r_clavicleProxy_geo
+ 2300064: r_erbowProxy_geo
+ 2300066: r_hipProxy_geo
+ 2300068: r_indexProxy_01_geo
+ 2300070: r_indexProxy_02_geo
+ 2300072: r_indexProxy_03_geo
+ 2300074: r_kneeProxy_geo
+ 2300076: r_middleProxy_01_geo
+ 2300078: r_middleProxy_02_geo
+ 2300080: r_middleProxy_03_geo
+ 2300082: r_pinkyProxy_01_geo
+ 2300084: r_pinkyProxy_02_geo
+ 2300086: r_pinkyProxy_03_geo
+ 2300088: r_ringProxy_01_geo
+ 2300090: r_ringProxy_02_geo
+ 2300092: r_ringProxy_03_geo
+ 2300094: r_shourderProxy_geo
+ 2300096: r_thumbProxy_01_geo
+ 2300098: r_thumbProxy_02_geo
+ 2300100: r_thumbProxy_03_geo
+ 2300102: r_UNI_eye
+ 2300104: r_wristProxy_geo
+ 2300106: spineProxy_geo
+ 2300108: UNI_01_Lower_teethProxy
+ 2300110: UNI_01_TongueBaseProxy
+ 2300112: UNI_01_TongueTipProxy
+ 2300114: UNI_01_Upper_teethProxy
+ 3300000: chestProxy_geo
+ 3300002: headProxy_geo
+ 3300004: jawProxy_geo
+ 3300006: l_ankleProxy_geo
+ 3300008: l_ballProxy_geo
+ 3300010: l_clavicleProxy_geo
+ 3300012: l_erbowProxy_geo
+ 3300014: l_hipProxy_geo
+ 3300016: l_indexProxy_01_geo
+ 3300018: l_indexProxy_02_geo
+ 3300020: l_indexProxy_03_geo
+ 3300022: l_kneeProxy_geo
+ 3300024: l_middleProxy_01_geo
+ 3300026: l_middleProxy_02_geo
+ 3300028: l_middleProxy_03_geo
+ 3300030: l_pinkyProxy_01_geo
+ 3300032: l_pinkyProxy_02_geo
+ 3300034: l_pinkyProxy_03_geo
+ 3300036: l_ringProxy_01_geo
+ 3300038: l_ringProxy_02_geo
+ 3300040: l_ringProxy_03_geo
+ 3300042: l_shourderProxy_geo
+ 3300044: l_thumbProxy_01_geo
+ 3300046: l_thumbProxy_02_geo
+ 3300048: l_thumbProxy_03_geo
+ 3300050: l_UNI_eye
+ 3300052: l_wristProxy_geo
+ 3300054: neckProxy_geo
+ 3300056: pelvisProxy_geo
+ 3300058: r_ankleProxy_geo
+ 3300060: r_ballProxy_geo
+ 3300062: r_clavicleProxy_geo
+ 3300064: r_erbowProxy_geo
+ 3300066: r_hipProxy_geo
+ 3300068: r_indexProxy_01_geo
+ 3300070: r_indexProxy_02_geo
+ 3300072: r_indexProxy_03_geo
+ 3300074: r_kneeProxy_geo
+ 3300076: r_middleProxy_01_geo
+ 3300078: r_middleProxy_02_geo
+ 3300080: r_middleProxy_03_geo
+ 3300082: r_pinkyProxy_01_geo
+ 3300084: r_pinkyProxy_02_geo
+ 3300086: r_pinkyProxy_03_geo
+ 3300088: r_ringProxy_01_geo
+ 3300090: r_ringProxy_02_geo
+ 3300092: r_ringProxy_03_geo
+ 3300094: r_shourderProxy_geo
+ 3300096: r_thumbProxy_01_geo
+ 3300098: r_thumbProxy_02_geo
+ 3300100: r_thumbProxy_03_geo
+ 3300102: r_UNI_eye
+ 3300104: r_wristProxy_geo
+ 3300106: spineProxy_geo
+ 3300108: UNI_01_Lower_teethProxy
+ 3300110: UNI_01_TongueBaseProxy
+ 3300112: UNI_01_TongueTipProxy
+ 3300114: UNI_01_Upper_teethProxy
+ 4300000: l_UNI_eye
+ 4300002: r_UNI_eye
+ 4300004: UNI_01_TongueBaseProxy
+ 4300006: UNI_01_TongueTipProxy
+ 4300008: UNI_01_Lower_teethProxy
+ 4300010: jawProxy_geo
+ 4300012: headProxy_geo
+ 4300014: UNI_01_Upper_teethProxy
+ 4300016: neckProxy_geo
+ 4300018: r_pinkyProxy_03_geo
+ 4300020: r_pinkyProxy_02_geo
+ 4300022: r_pinkyProxy_01_geo
+ 4300024: r_ringProxy_03_geo
+ 4300026: r_ringProxy_02_geo
+ 4300028: r_ringProxy_01_geo
+ 4300030: r_middleProxy_03_geo
+ 4300032: r_middleProxy_02_geo
+ 4300034: r_middleProxy_01_geo
+ 4300036: r_indexProxy_03_geo
+ 4300038: r_indexProxy_02_geo
+ 4300040: r_indexProxy_01_geo
+ 4300042: r_thumbProxy_03_geo
+ 4300044: r_thumbProxy_02_geo
+ 4300046: r_thumbProxy_01_geo
+ 4300048: r_wristProxy_geo
+ 4300050: r_erbowProxy_geo
+ 4300052: r_shourderProxy_geo
+ 4300054: r_clavicleProxy_geo
+ 4300056: chestProxy_geo
+ 4300058: l_pinkyProxy_03_geo
+ 4300060: l_pinkyProxy_02_geo
+ 4300062: l_pinkyProxy_01_geo
+ 4300064: l_ringProxy_03_geo
+ 4300066: l_ringProxy_02_geo
+ 4300068: l_ringProxy_01_geo
+ 4300070: l_middleProxy_03_geo
+ 4300072: l_middleProxy_02_geo
+ 4300074: l_middleProxy_01_geo
+ 4300076: l_indexProxy_03_geo
+ 4300078: l_indexProxy_02_geo
+ 4300080: l_indexProxy_01_geo
+ 4300082: l_thumbProxy_03_geo
+ 4300084: l_thumbProxy_02_geo
+ 4300086: l_thumbProxy_01_geo
+ 4300088: l_wristProxy_geo
+ 4300090: l_erbowProxy_geo
+ 4300092: l_shourderProxy_geo
+ 4300094: l_clavicleProxy_geo
+ 4300096: spineProxy_geo
+ 4300098: r_ballProxy_geo
+ 4300100: r_ankleProxy_geo
+ 4300102: r_kneeProxy_geo
+ 4300104: r_hipProxy_geo
+ 4300106: pelvisProxy_geo
+ 4300108: l_ballProxy_geo
+ 4300110: l_ankleProxy_geo
+ 4300112: l_kneeProxy_geo
+ 4300114: l_hipProxy_geo
+ 7400000: PlayerRun
+ 9500000: //RootNode
+ materials:
+ importMaterials: 0
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleCurves: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 0
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: PlayerRun
+ takeName: _24_a_U1_M_P_RunForward_NtrlFaceFwd__Fb_p0_No_0_PJ_10
+ firstFrame: 335.9
+ lastFrame: 353.7
+ wrapMode: 0
+ orientationOffsetY: -1.2
+ level: -0.06
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 1
+ loopBlend: 1
+ loopBlendOrientation: 1
+ loopBlendPositionY: 1
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Hips
+ weight: 1
+ - path: Hips/LeftUpLeg
+ weight: 1
+ - path: Hips/LeftUpLeg/LeftLeg
+ weight: 1
+ - path: Hips/LeftUpLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
+ weight: 1
+ - path: Hips/RightUpLeg
+ weight: 1
+ - path: Hips/RightUpLeg/RightLeg
+ weight: 1
+ - path: Hips/RightUpLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Hips/RightUpLeg/RightLeg/RightFoot/RightToes
+ weight: 1
+ - path: Hips/Spine
+ weight: 1
+ - path: Hips/Spine/Chest
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
+ weight: 1
+ - path: Hips/Spine/Chest/Neck
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head/Jaw
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/JawEND
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftCheek
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftEye
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head/LeftEyelidLower
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftInnerBrow
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftLipUpper
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftNostril
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightCheek
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightEye
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head/RightEyelidLower
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightEyelidUpper
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightInnerBrow
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightIOuterBrow
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightLipUpper
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightNostril
+ weight: 0
+ - path: Hips/Spine/Chest/RightShoulder
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 88
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 0.01
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 0
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 0
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 4
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human:
+ - boneName: Hips
+ humanName: Hips
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftUpLeg
+ humanName: LeftUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightUpLeg
+ humanName: RightUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftLeg
+ humanName: LeftLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightLeg
+ humanName: RightLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftFoot
+ humanName: LeftFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightFoot
+ humanName: RightFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Spine
+ humanName: Spine
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Chest
+ humanName: Chest
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Neck
+ humanName: Neck
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Head
+ humanName: Head
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftShoulder
+ humanName: LeftShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightShoulder
+ humanName: RightShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftArm
+ humanName: LeftUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightArm
+ humanName: RightUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftForeArm
+ humanName: LeftLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightForeArm
+ humanName: RightLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHand
+ humanName: LeftHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHand
+ humanName: RightHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftToes
+ humanName: LeftToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightToes
+ humanName: RightToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftEye
+ humanName: LeftEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightEye
+ humanName: RightEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Jaw
+ humanName: Jaw
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandThumb1
+ humanName: Left Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandThumb2
+ humanName: Left Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandThumb3
+ humanName: Left Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandIndex1
+ humanName: Left Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandIndex2
+ humanName: Left Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandIndex3
+ humanName: Left Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandMiddle1
+ humanName: Left Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandMiddle2
+ humanName: Left Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandMiddle3
+ humanName: Left Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandRing1
+ humanName: Left Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandRing2
+ humanName: Left Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandRing3
+ humanName: Left Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandPinky1
+ humanName: Left Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandPinky2
+ humanName: Left Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandPinky3
+ humanName: Left Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandThumb1
+ humanName: Right Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandThumb2
+ humanName: Right Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandThumb3
+ humanName: Right Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandIndex1
+ humanName: Right Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandIndex2
+ humanName: Right Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandIndex3
+ humanName: Right Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandMiddle1
+ humanName: Right Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandMiddle2
+ humanName: Right Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandMiddle3
+ humanName: Right Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandRing1
+ humanName: Right Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandRing2
+ humanName: Right Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandRing3
+ humanName: Right Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandPinky1
+ humanName: Right Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandPinky2
+ humanName: Right Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandPinky3
+ humanName: Right Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ skeleton:
+ - name: Run(Clone)
+ position: {x: 0, y: 0, z: 0}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Hips
+ position: {x: -0.000000020489097, y: 0.958501, z: 0.059998296}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftUpLeg
+ position: {x: -0.0754495, y: -0.04566402, z: -6.217249e-17}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLeg
+ position: {x: -0.020550499, y: -0.40912998, z: -0.00071864796}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftFoot
+ position: {x: -0.0051529994, y: -0.4231559, z: -0.027648851}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftToes
+ position: {x: -0.007487, y: -0.0731673, z: 0.14542712}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightUpLeg
+ position: {x: 0.075449534, y: -0.04566399, z: -6.217249e-17}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLeg
+ position: {x: 0.020550467, y: -0.40913, z: -0.00071864796}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightFoot
+ position: {x: 0.0051529994, y: -0.4231559, z: -0.027648851}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightToes
+ position: {x: 0.007487, y: -0.0731673, z: 0.1454275}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Spine
+ position: {x: -4.7739588e-17, y: 0.092263184, z: 0.015771331}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Chest
+ position: {x: 3.5527136e-17, y: 0.16254029, z: -0.0016560555}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftShoulder
+ position: {x: -0.038285997, y: 0.2216225, z: -0.017063085}
+ rotation: {x: -0.02901484, y: -0.07803791, z: 0.1478155, w: 0.9855044}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftArm
+ position: {x: -0.10050205, y: 0.000000001125083, z: -1.9039074e-10}
+ rotation: {x: 0.0065737762, y: 0.07236942, z: -0.1361931, w: 0.9880137}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftForeArm
+ position: {x: -0.2540493, y: -1.0551325e-10, z: 1.09112684e-10}
+ rotation: {x: 0.37014812, y: 0.03247756, z: -0.006699631, w: 0.9283807}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHand
+ position: {x: -0.24638927, y: -1.1574698e-10, z: 1.1358061e-11}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandIndex1
+ position: {x: -0.0751258, y: -0.0078414045, z: 0.032652643}
+ rotation: {x: 0.042805295, y: 0.05632816, z: 0.06901114, w: 0.99510425}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandIndex2
+ position: {x: -0.03979728, y: 0.000049808412, z: 0.0011857506}
+ rotation: {x: -0.11841995, y: 0.01500381, z: 0.016670156, w: 0.99271035}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandIndex3
+ position: {x: -0.027968477, y: -0.000000006416276, z: -0.000000051434675}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandMiddle1
+ position: {x: -0.076023825, y: -0.0018851344, z: 0.010141229}
+ rotation: {x: -0.033341967, y: 0.07042229, z: 0.07230802, w: 0.9943342}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandMiddle2
+ position: {x: -0.044280436, y: 0.00000479887, z: -0.00042540036}
+ rotation: {x: -0.033172157, y: -0.0051259603, z: 0.011490114, w: 0.9993705}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandMiddle3
+ position: {x: -0.033964828, y: -0.000000012184439, z: 0.000000003753109}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandPinky1
+ position: {x: -0.06565995, y: -0.007825106, z: -0.032251246}
+ rotation: {x: -0.110300295, y: 0.079448596, z: 0.0742732, w: 0.9879298}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandPinky2
+ position: {x: -0.030805448, y: -0.000030874577, z: -0.0014480774}
+ rotation: {x: -0.072170265, y: -0.026308026, z: 0.013470372, w: 0.9969544}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandPinky3
+ position: {x: -0.023064027, y: -0.0000064025903, z: 0.000000018201217}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandRing1
+ position: {x: -0.07030211, y: -0.0037453093, z: -0.011411792}
+ rotation: {x: 0.015795682, y: 0.09177202, z: 0.06791128, w: 0.9933361}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandRing2
+ position: {x: -0.043135457, y: -0.000020882291, z: -0.0022351781}
+ rotation: {x: -0.13446514, y: -0.026096364, z: 0.008734329, w: 0.9905361}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandRing3
+ position: {x: -0.030835565, y: 1.5784053e-10, z: -0.000000016455102}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandThumb1
+ position: {x: -0.014231241, y: -0.012377825, z: 0.025531668}
+ rotation: {x: -0.2238929, y: -0.0758366, z: -0.1291156, w: 0.9630421}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandThumb2
+ position: {x: -0.016374, y: -0.00529, z: 0.023491409}
+ rotation: {x: -0.0260623, y: 0.09668697, z: 0.0036068659, w: 0.9949671}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandThumb3
+ position: {x: -0.02546, y: -0.00764, z: 0.020833}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Neck
+ position: {x: -0, y: 0.2590093, z: -0.032413255}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Head
+ position: {x: 5.7731595e-17, y: 0.08307038, z: 0.0113267815}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Jaw
+ position: {x: 1.7347234e-20, y: 0.0111267585, z: 0.010327543}
+ rotation: {x: 0.21924005, y: -0, z: -0, w: 0.975671}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: JawEND
+ position: {x: -1.7347234e-20, y: -0.04828876, z: 0.07185171}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLipCorner
+ position: {x: -0.032843262, y: -0.01657876, z: 0.066121764}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLipLower
+ position: {x: -0.014250817, y: -0.02168876, z: 0.08224063}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLipCorner
+ position: {x: 0.03284, y: -0.01657876, z: 0.066118784}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLipLower
+ position: {x: 0.014250817, y: -0.02168876, z: 0.082238786}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: TongueBack
+ position: {x: -1.7347234e-20, y: -0.022869369, z: 0.010095409}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: TongueTip
+ position: {x: -1.7347234e-20, y: -0.023278812, z: 0.03832271}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftCheek
+ position: {x: -0.054244027, y: 0.03370195, z: 0.0594304}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEye
+ position: {x: -0.020848233, y: 0.0825027, z: 0.055427432}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEyelidLower
+ position: {x: -0.035618957, y: 0.06507366, z: 0.07623474}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEyelidUpper
+ position: {x: -0.034406897, y: 0.10060814, z: 0.08020531}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftInnerBrow
+ position: {x: -0.012062691, y: 0.118765265, z: 0.093466826}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIOuterBrow
+ position: {x: -0.05503987, y: 0.11482529, z: 0.061777398}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLipUpper
+ position: {x: -0.014501322, y: -0.005111811, z: 0.09461884}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftNostril
+ position: {x: -0.0179, y: 0.026312828, z: 0.0908674}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightCheek
+ position: {x: 0.054239996, y: 0.033702828, z: 0.0594274}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEye
+ position: {x: 0.020849999, y: 0.08250283, z: 0.0554274}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEyelidLower
+ position: {x: 0.03562, y: 0.06507283, z: 0.0762374}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEyelidUpper
+ position: {x: 0.03441, y: 0.10061283, z: 0.08020739}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightInnerBrow
+ position: {x: 0.012062687, y: 0.118765265, z: 0.093466826}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIOuterBrow
+ position: {x: 0.055040002, y: 0.11482283, z: 0.061777398}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLipUpper
+ position: {x: 0.014501322, y: -0.0051071714, z: 0.094617404}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightNostril
+ position: {x: 0.0179, y: 0.026308905, z: 0.09087062}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightShoulder
+ position: {x: 0.038286015, y: 0.22162114, z: -0.017063085}
+ rotation: {x: 0.1579978, y: 0.9867513, z: -0.013299583, w: -0.034375474}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightArm
+ position: {x: -0.100501455, y: -0.0000024966455, z: -0.00000005228366}
+ rotation: {x: 0.13541101, y: 0.98766977, z: -0.004818486, w: 0.07841701}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightForeArm
+ position: {x: 0.25342825, y: 0.006011353, z: -0.016704524}
+ rotation: {x: 0.25265744, y: 0.024327299, z: -0.026384478, w: 0.96689}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHand
+ position: {x: 0.2453737, y: 0.021641772, z: 0.005550465}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandIndex1
+ position: {x: 0.0747695, y: -0.0012430536, z: 0.034344498}
+ rotation: {x: 0.050132476, y: 0.10633009, z: -0.025096685, w: 0.99274915}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandIndex2
+ position: {x: 0.0370584, y: 0.00072612107, z: 0.014538894}
+ rotation: {x: -0.12210108, y: 0.026184548, z: 0.03848509, w: 0.99142563}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandIndex3
+ position: {x: 0.025225038, y: -0.0049664653, z: 0.011012146}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandMiddle1
+ position: {x: 0.075647645, y: 0.0047914027, z: 0.011853182}
+ rotation: {x: -0.026879195, y: -0.0053047896, z: -0.033220712, w: 0.99907243}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandMiddle2
+ position: {x: 0.043809064, y: 0.00019418815, z: 0.006454936}
+ rotation: {x: -0.039818257, y: -0.04374049, z: 0.09885875, w: 0.993342}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandMiddle3
+ position: {x: 0.03307247, y: -0.007547537, z: 0.0016898462}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandPinky1
+ position: {x: 0.06680334, y: -0.0019941085, z: -0.030756146}
+ rotation: {x: -0.11187588, y: -0.25872952, z: 0.0088018915, w: 0.9594088}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandPinky2
+ position: {x: 0.028530842, y: -0.001397143, z: -0.011623796}
+ rotation: {x: -0.07357618, y: 0.009609909, z: 0.0022198618, w: 0.9972409}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandPinky3
+ position: {x: 0.02142686, y: -0.00055350893, z: -0.008516608}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandRing1
+ position: {x: 0.070598476, y: 0.0024570965, z: -0.009821458}
+ rotation: {x: 0.01820465, y: -0.13375518, z: -0.008969554, w: 0.9908066}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandRing2
+ position: {x: 0.042887185, y: -0.0013753821, z: -0.0049458584}
+ rotation: {x: -0.12681748, y: 0.0007345817, z: 0.115031, w: 0.98523337}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandRing3
+ position: {x: 0.029500604, y: -0.0076929354, z: -0.004622256}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandThumb1
+ position: {x: 0.014684916, y: -0.011104942, z: 0.025858095}
+ rotation: {x: -0.16873905, y: 0.028051713, z: 0.11700559, w: 0.9782893}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandThumb2
+ position: {x: 0.016374, y: -0.00529, z: 0.02349136}
+ rotation: {x: -0.026062516, y: -0.09668957, z: -0.003607418, w: 0.99496675}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandThumb3
+ position: {x: 0.02546, y: -0.00764, z: 0.020833}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: e8914d097ece7cc48a83d5fccd4098c0,
+ type: 3}
+ animationType: 3
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/TakeObjectAttempt.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/TakeObjectAttempt.fbx
new file mode 100644
index 00000000..d4afb73a
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/TakeObjectAttempt.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/TakeObjectAttempt.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/TakeObjectAttempt.fbx.meta
new file mode 100644
index 00000000..dddbb14b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/TakeObjectAttempt.fbx.meta
@@ -0,0 +1,1458 @@
+fileFormatVersion: 2
+guid: e4bb4f13e18282f42af56940bd27885c
+timeCreated: 1473671834
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: ControlsEyeDirection
+ 100004: ControlsHips
+ 100006: ControlsLeftFoot
+ 100008: ControlsLeftHand
+ 100010: ControlsLeftIndex1
+ 100012: ControlsLeftIndex2
+ 100014: ControlsLeftIndex3
+ 100016: ControlsLeftLegPoleVector
+ 100018: ControlsLeftLegPoleVector1
+ 100020: ControlsLeftMiddle1
+ 100022: ControlsLeftMiddle2
+ 100024: ControlsLeftMiddle3
+ 100026: ControlsLeftPinky1
+ 100028: ControlsLeftPinky2
+ 100030: ControlsLeftPinky3
+ 100032: ControlsLeftRing1
+ 100034: ControlsLeftRing2
+ 100036: ControlsLeftRing3
+ 100038: ControlsLeftShoulder
+ 100040: ControlsLeftThumb1
+ 100042: ControlsLeftThumb2
+ 100044: ControlsLeftThumb3
+ 100046: ControlsLeftThumbOrient
+ 100048: ControlsLowerEyelid
+ 100050: ControlsNeck
+ 100052: ControlsRightFoot
+ 100054: ControlsRightHand
+ 100056: ControlsRightIndex1
+ 100058: ControlsRightIndex2
+ 100060: ControlsRightIndex3
+ 100062: ControlsRightLegPoleVector
+ 100064: ControlsRightLegPoleVector2
+ 100066: ControlsRightMiddle1
+ 100068: ControlsRightMiddle2
+ 100070: ControlsRightMiddle3
+ 100072: ControlsRightPinky1
+ 100074: ControlsRightPinky2
+ 100076: ControlsRightPinky3
+ 100078: ControlsRightRing1
+ 100080: ControlsRightRing2
+ 100082: ControlsRightRing3
+ 100084: ControlsRightShoulder
+ 100086: ControlsRightThumb1
+ 100088: ControlsRightThumb2
+ 100090: ControlsRightThumb3
+ 100092: ControlsRightThumbOrient
+ 100094: ControlsSpine1
+ 100096: ControlsSpine2
+ 100098: ControlsSpine3
+ 100100: ControlsUpperBody
+ 100102: ControlsUpperEyelid
+ 100104: Head
+ 100106: HeadEND
+ 100108: HeelPeel
+ 100110: HeelPeel 1
+ 100112: Hips
+ 100114: ikHandleLeftArm
+ 100116: ikHandleLeftFoot
+ 100118: ikHandleLeftLeg
+ 100120: ikHandleLeftToe
+ 100122: ikHandleRightArm
+ 100124: ikHandleRightFoot
+ 100126: ikHandleRightLeg
+ 100128: ikHandleRightToe
+ 100130: LeftArm
+ 100132: LeftEye
+ 100134: LeftFoot
+ 100136: LeftHand
+ 100138: LeftIndex1
+ 100140: LeftIndex2
+ 100142: LeftIndex3
+ 100144: LeftIndexEND
+ 100146: LeftLeg
+ 100148: LeftMiddle1
+ 100150: LeftMiddle2
+ 100152: LeftMiddle3
+ 100154: LeftMiddleEND
+ 100156: LeftPinky1
+ 100158: LeftPinky2
+ 100160: LeftPinky3
+ 100162: LeftPinkyEND
+ 100164: LeftRing1
+ 100166: LeftRing2
+ 100168: LeftRing3
+ 100170: LeftRingEND
+ 100172: LeftShoulder
+ 100174: LeftThumb1
+ 100176: LeftThumb2
+ 100178: LeftThumb3
+ 100180: LeftThumbEND
+ 100182: LeftThumbEnd
+ 100184: LeftToe
+ 100186: LeftToeEND
+ 100188: LeftUpperArm
+ 100190: LeftUpperLeg
+ 100192: LowerEyelids
+ 100194: Mesh
+ 100196: Neck
+ 100198: RightArm
+ 100200: RightEye
+ 100202: RightFoot
+ 100204: RightHand
+ 100206: RightIndex1
+ 100208: RightIndex2
+ 100210: RightIndex3
+ 100212: RightIndexEND
+ 100214: RightLeg
+ 100216: RightMiddle1
+ 100218: RightMiddle2
+ 100220: RightMiddle3
+ 100222: RightMiddleEND
+ 100224: RightPinky1
+ 100226: RightPinky2
+ 100228: RightPinky3
+ 100230: RightPinkyEND
+ 100232: RightRing1
+ 100234: RightRing2
+ 100236: RightRing3
+ 100238: RightRingEND
+ 100240: RightShoulder
+ 100242: RightThumb1
+ 100244: RightThumb2
+ 100246: RightThumb3
+ 100248: RightThumbEND
+ 100250: RightThumbEnd
+ 100252: RightToe
+ 100254: RightToeEND
+ 100256: RightUpperArm
+ 100258: RightUpperLeg
+ 100260: Skeleton
+ 100262: Spine1
+ 100264: Spine2
+ 100266: Swivel
+ 100268: Swivel 1
+ 100270: //RootNode
+ 100272: ToeTap
+ 100274: ToeTap 1
+ 100276: ToeTip
+ 100278: ToeTip 1
+ 100280: UpperEyelids
+ 100282: LowerEyelidsEND
+ 100284: UpperEyelidsEND
+ 400000: Controls
+ 400002: ControlsEyeDirection
+ 400004: ControlsHips
+ 400006: ControlsLeftFoot
+ 400008: ControlsLeftHand
+ 400010: ControlsLeftIndex1
+ 400012: ControlsLeftIndex2
+ 400014: ControlsLeftIndex3
+ 400016: ControlsLeftLegPoleVector
+ 400018: ControlsLeftLegPoleVector1
+ 400020: ControlsLeftMiddle1
+ 400022: ControlsLeftMiddle2
+ 400024: ControlsLeftMiddle3
+ 400026: ControlsLeftPinky1
+ 400028: ControlsLeftPinky2
+ 400030: ControlsLeftPinky3
+ 400032: ControlsLeftRing1
+ 400034: ControlsLeftRing2
+ 400036: ControlsLeftRing3
+ 400038: ControlsLeftShoulder
+ 400040: ControlsLeftThumb1
+ 400042: ControlsLeftThumb2
+ 400044: ControlsLeftThumb3
+ 400046: ControlsLeftThumbOrient
+ 400048: ControlsLowerEyelid
+ 400050: ControlsNeck
+ 400052: ControlsRightFoot
+ 400054: ControlsRightHand
+ 400056: ControlsRightIndex1
+ 400058: ControlsRightIndex2
+ 400060: ControlsRightIndex3
+ 400062: ControlsRightLegPoleVector
+ 400064: ControlsRightLegPoleVector2
+ 400066: ControlsRightMiddle1
+ 400068: ControlsRightMiddle2
+ 400070: ControlsRightMiddle3
+ 400072: ControlsRightPinky1
+ 400074: ControlsRightPinky2
+ 400076: ControlsRightPinky3
+ 400078: ControlsRightRing1
+ 400080: ControlsRightRing2
+ 400082: ControlsRightRing3
+ 400084: ControlsRightShoulder
+ 400086: ControlsRightThumb1
+ 400088: ControlsRightThumb2
+ 400090: ControlsRightThumb3
+ 400092: ControlsRightThumbOrient
+ 400094: ControlsSpine1
+ 400096: ControlsSpine2
+ 400098: ControlsSpine3
+ 400100: ControlsUpperBody
+ 400102: ControlsUpperEyelid
+ 400104: Head
+ 400106: HeadEND
+ 400108: HeelPeel
+ 400110: HeelPeel 1
+ 400112: Hips
+ 400114: ikHandleLeftArm
+ 400116: ikHandleLeftFoot
+ 400118: ikHandleLeftLeg
+ 400120: ikHandleLeftToe
+ 400122: ikHandleRightArm
+ 400124: ikHandleRightFoot
+ 400126: ikHandleRightLeg
+ 400128: ikHandleRightToe
+ 400130: LeftArm
+ 400132: LeftEye
+ 400134: LeftFoot
+ 400136: LeftHand
+ 400138: LeftIndex1
+ 400140: LeftIndex2
+ 400142: LeftIndex3
+ 400144: LeftIndexEND
+ 400146: LeftLeg
+ 400148: LeftMiddle1
+ 400150: LeftMiddle2
+ 400152: LeftMiddle3
+ 400154: LeftMiddleEND
+ 400156: LeftPinky1
+ 400158: LeftPinky2
+ 400160: LeftPinky3
+ 400162: LeftPinkyEND
+ 400164: LeftRing1
+ 400166: LeftRing2
+ 400168: LeftRing3
+ 400170: LeftRingEND
+ 400172: LeftShoulder
+ 400174: LeftThumb1
+ 400176: LeftThumb2
+ 400178: LeftThumb3
+ 400180: LeftThumbEND
+ 400182: LeftThumbEnd
+ 400184: LeftToe
+ 400186: LeftToeEND
+ 400188: LeftUpperArm
+ 400190: LeftUpperLeg
+ 400192: LowerEyelids
+ 400194: Mesh
+ 400196: Neck
+ 400198: RightArm
+ 400200: RightEye
+ 400202: RightFoot
+ 400204: RightHand
+ 400206: RightIndex1
+ 400208: RightIndex2
+ 400210: RightIndex3
+ 400212: RightIndexEND
+ 400214: RightLeg
+ 400216: RightMiddle1
+ 400218: RightMiddle2
+ 400220: RightMiddle3
+ 400222: RightMiddleEND
+ 400224: RightPinky1
+ 400226: RightPinky2
+ 400228: RightPinky3
+ 400230: RightPinkyEND
+ 400232: RightRing1
+ 400234: RightRing2
+ 400236: RightRing3
+ 400238: RightRingEND
+ 400240: RightShoulder
+ 400242: RightThumb1
+ 400244: RightThumb2
+ 400246: RightThumb3
+ 400248: RightThumbEND
+ 400250: RightThumbEnd
+ 400252: RightToe
+ 400254: RightToeEND
+ 400256: RightUpperArm
+ 400258: RightUpperLeg
+ 400260: Skeleton
+ 400262: Spine1
+ 400264: Spine2
+ 400266: Swivel
+ 400268: Swivel 1
+ 400270: //RootNode
+ 400272: ToeTap
+ 400274: ToeTap 1
+ 400276: ToeTip
+ 400278: ToeTip 1
+ 400280: UpperEyelids
+ 400282: LowerEyelidsEND
+ 400284: UpperEyelidsEND
+ 2300000: ControlsLeftIndex1
+ 2300002: ControlsLeftIndex2
+ 2300004: ControlsLeftIndex3
+ 2300006: ControlsLeftLegPoleVector
+ 2300008: ControlsLeftLegPoleVector1
+ 2300010: ControlsLeftMiddle1
+ 2300012: ControlsLeftMiddle2
+ 2300014: ControlsLeftMiddle3
+ 2300016: ControlsLeftPinky1
+ 2300018: ControlsLeftPinky2
+ 2300020: ControlsLeftPinky3
+ 2300022: ControlsLeftRing1
+ 2300024: ControlsLeftRing2
+ 2300026: ControlsLeftRing3
+ 2300028: ControlsLeftThumb1
+ 2300030: ControlsLeftThumb2
+ 2300032: ControlsLeftThumb3
+ 2300034: ControlsLowerEyelid
+ 2300036: ControlsRightIndex1
+ 2300038: ControlsRightIndex2
+ 2300040: ControlsRightIndex3
+ 2300042: ControlsRightLegPoleVector
+ 2300044: ControlsRightLegPoleVector2
+ 2300046: ControlsRightMiddle1
+ 2300048: ControlsRightMiddle2
+ 2300050: ControlsRightMiddle3
+ 2300052: ControlsRightPinky1
+ 2300054: ControlsRightPinky2
+ 2300056: ControlsRightPinky3
+ 2300058: ControlsRightRing1
+ 2300060: ControlsRightRing2
+ 2300062: ControlsRightRing3
+ 2300064: ControlsRightThumb1
+ 2300066: ControlsRightThumb2
+ 2300068: ControlsRightThumb3
+ 2300070: ControlsUpperEyelid
+ 3300000: ControlsLeftIndex1
+ 3300002: ControlsLeftIndex2
+ 3300004: ControlsLeftIndex3
+ 3300006: ControlsLeftLegPoleVector
+ 3300008: ControlsLeftLegPoleVector1
+ 3300010: ControlsLeftMiddle1
+ 3300012: ControlsLeftMiddle2
+ 3300014: ControlsLeftMiddle3
+ 3300016: ControlsLeftPinky1
+ 3300018: ControlsLeftPinky2
+ 3300020: ControlsLeftPinky3
+ 3300022: ControlsLeftRing1
+ 3300024: ControlsLeftRing2
+ 3300026: ControlsLeftRing3
+ 3300028: ControlsLeftThumb1
+ 3300030: ControlsLeftThumb2
+ 3300032: ControlsLeftThumb3
+ 3300034: ControlsLowerEyelid
+ 3300036: ControlsRightIndex1
+ 3300038: ControlsRightIndex2
+ 3300040: ControlsRightIndex3
+ 3300042: ControlsRightLegPoleVector
+ 3300044: ControlsRightLegPoleVector2
+ 3300046: ControlsRightMiddle1
+ 3300048: ControlsRightMiddle2
+ 3300050: ControlsRightMiddle3
+ 3300052: ControlsRightPinky1
+ 3300054: ControlsRightPinky2
+ 3300056: ControlsRightPinky3
+ 3300058: ControlsRightRing1
+ 3300060: ControlsRightRing2
+ 3300062: ControlsRightRing3
+ 3300064: ControlsRightThumb1
+ 3300066: ControlsRightThumb2
+ 3300068: ControlsRightThumb3
+ 3300070: ControlsUpperEyelid
+ 4300000: Mesh
+ 4300002: ControlsLeftLegPoleVector
+ 4300004: ControlsUpperEyelid
+ 4300006: ControlsLowerEyelid
+ 4300008: ControlsLeftLegPoleVector1
+ 4300010: ControlsLeftIndex1
+ 4300012: ControlsLeftIndex2
+ 4300014: ControlsLeftIndex3
+ 4300016: ControlsLeftMiddle1
+ 4300018: ControlsLeftMiddle2
+ 4300020: ControlsLeftMiddle3
+ 4300022: ControlsLeftRing1
+ 4300024: ControlsLeftRing2
+ 4300026: ControlsLeftRing3
+ 4300028: ControlsLeftPinky1
+ 4300030: ControlsLeftPinky2
+ 4300032: ControlsLeftPinky3
+ 4300034: ControlsLeftThumb1
+ 4300036: ControlsLeftThumb2
+ 4300038: ControlsLeftThumb3
+ 4300040: ControlsRightThumb1
+ 4300042: ControlsRightThumb2
+ 4300044: ControlsRightThumb3
+ 4300046: ControlsRightPinky1
+ 4300048: ControlsRightPinky2
+ 4300050: ControlsRightPinky3
+ 4300052: ControlsRightRing1
+ 4300054: ControlsRightRing2
+ 4300056: ControlsRightRing3
+ 4300058: ControlsRightMiddle1
+ 4300060: ControlsRightMiddle2
+ 4300062: ControlsRightMiddle3
+ 4300064: ControlsRightIndex1
+ 4300066: ControlsRightIndex2
+ 4300068: ControlsRightIndex3
+ 4300070: ControlsRightLegPoleVector
+ 4300072: ControlsRightLegPoleVector2
+ 7400000: PlayerTakeObjectAttempt
+ 9500000: //RootNode
+ 13700000: Mesh
+ materials:
+ importMaterials: 0
+ materialName: 0
+ materialSearch: 1
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleCurves: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 3
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: PlayerTakeObjectAttempt
+ takeName: Take 001
+ firstFrame: 1
+ lastFrame: 70
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 0
+ loopBlend: 0
+ loopBlendOrientation: 1
+ loopBlendPositionY: 1
+ loopBlendPositionXZ: 1
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 0
+ - path: Controls/ControlsUpperBody
+ weight: 0
+ - path: Controls/ControlsUpperBody/ControlsHips
+ weight: 0
+ - path: Mesh
+ weight: 0
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Hips
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot/LeftToe
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot/LeftToe/LeftToeEND
+ weight: 0
+ - path: Skeleton/Hips/RightUpperLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot/RightToe
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot/RightToe/RightToeEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3/LeftPinkyEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2/LeftRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2/LeftRing3/LeftRingEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd/LeftThumbEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/HeadEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LeftEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LowerEyelids
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LowerEyelids/LowerEyelidsEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/RightEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/UpperEyelids
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/UpperEyelids/UpperEyelidsEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2/RightIndex3/RightIndexEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2/RightPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2/RightPinky3/RightPinkyEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2/RightRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2/RightRing3/RightRingEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd/RightThumbEND
+ weight: 0
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 1
+ humanDescription:
+ human:
+ - boneName: Hips
+ humanName: Hips
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftUpperLeg
+ humanName: LeftUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightUpperLeg
+ humanName: RightUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftLeg
+ humanName: LeftLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightLeg
+ humanName: RightLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftFoot
+ humanName: LeftFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightFoot
+ humanName: RightFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Spine1
+ humanName: Spine
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Spine2
+ humanName: Chest
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Neck
+ humanName: Neck
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Head
+ humanName: Head
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftShoulder
+ humanName: LeftShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightShoulder
+ humanName: RightShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftUpperArm
+ humanName: LeftUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightUpperArm
+ humanName: RightUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftArm
+ humanName: LeftLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightArm
+ humanName: RightLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHand
+ humanName: LeftHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHand
+ humanName: RightHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftToe
+ humanName: LeftToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightToe
+ humanName: RightToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftEye
+ humanName: LeftEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightEye
+ humanName: RightEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb1
+ humanName: Left Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb2
+ humanName: Left Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb3
+ humanName: Left Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex1
+ humanName: Left Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex2
+ humanName: Left Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex3
+ humanName: Left Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle1
+ humanName: Left Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle2
+ humanName: Left Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle3
+ humanName: Left Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing1
+ humanName: Left Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing2
+ humanName: Left Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing3
+ humanName: Left Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky1
+ humanName: Left Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky2
+ humanName: Left Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky3
+ humanName: Left Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb1
+ humanName: Right Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb2
+ humanName: Right Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb3
+ humanName: Right Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex1
+ humanName: Right Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex2
+ humanName: Right Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex3
+ humanName: Right Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle1
+ humanName: Right Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle2
+ humanName: Right Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle3
+ humanName: Right Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing1
+ humanName: Right Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing2
+ humanName: Right Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing3
+ humanName: Right Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky1
+ humanName: Right Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky2
+ humanName: Right Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky3
+ humanName: Right Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ skeleton:
+ - name: Player(Clone)
+ position: {x: 0, y: 0, z: 0}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Controls
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: ControlsUpperBody
+ position: {x: -0, y: 0.9856257, z: -0.028446734}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: ControlsHips
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Mesh
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Skeleton
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Hips
+ position: {x: 0, y: 0.9088629, z: -0.028446734}
+ rotation: {x: 0.7071068, y: -0.7071068, z: -4.3297806e-17, w: 4.3297806e-17}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftUpperLeg
+ position: {x: 0.037347827, y: 0.092801034, z: 0.0064211558}
+ rotation: {x: -0.0033267832, y: 0.99839103, z: 0.056605782, w: -0.0004065326}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLeg
+ position: {x: -0.37195736, y: -1.236171e-16, z: 5.1000362e-18}
+ rotation: {x: -0.0004567116, y: -0.052333966, z: -0.008714577, w: 0.99859154}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftFoot
+ position: {x: -0.41152263, y: -0.0015294757, z: -0.002893631}
+ rotation: {x: 0.050357435, y: 0.49969903, z: 0.026062192, w: 0.86434126}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftToe
+ position: {x: -0.1110157, y: -2.5535128e-17, z: 8.2057634e-17}
+ rotation: {x: 4.2141773e-14, y: 0.3007058, z: -1.328725e-14, w: 0.95371693}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftToeEND
+ position: {x: -0.11182804, y: -2.918769e-18, z: 9.290528e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightUpperLeg
+ position: {x: 0.037347663, y: -0.092801, z: 0.0064211655}
+ rotation: {x: -0.05660591, y: 0.00040653365, z: -0.003326788, w: 0.99839103}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLeg
+ position: {x: 0.37195793, y: 5.9421585e-17, z: -4.0592486e-18}
+ rotation: {x: -0.0004567116, y: -0.052333966, z: -0.008714577, w: 0.99859154}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightFoot
+ position: {x: 0.41152248, y: 0.001529468, z: 0.0028936374}
+ rotation: {x: 0.05035755, y: 0.49969906, z: 0.026062248, w: 0.86434126}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightToe
+ position: {x: 0.11101543, y: -0.000000079186826, z: -0.0000003664904}
+ rotation: {x: 0, y: 0.3007058, z: -0, w: 0.95371693}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightToeEND
+ position: {x: 0.111827955, y: 0.000000072275725, z: 0.00000062929314}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Spine1
+ position: {x: -0.10568693, y: 0, z: 0}
+ rotation: {x: -6.123234e-17, y: -6.123234e-17, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Spine2
+ position: {x: -0.1833106, y: 8.548717e-16, z: -4.440892e-18}
+ rotation: {x: -6.5194134e-17, y: 0.087155744, z: 3.8665733e-34, w: 0.9961947}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftShoulder
+ position: {x: -0.1435461, y: 0.03922616, z: 0.022630278}
+ rotation: {x: -0.68924034, y: 0.71203506, z: 0.0130629325, w: 0.13335347}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftUpperArm
+ position: {x: -0.11169202, y: -1.3877788e-17, z: -5.851063e-17}
+ rotation: {x: 0.0016100118, y: 0.104498126, z: -0.025915265, w: 0.9941861}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftArm
+ position: {x: -0.2715663, y: 0, z: 0}
+ rotation: {x: 8.2024617e-16, y: 0.000052097534, z: -8.848866e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHand
+ position: {x: -0.2331744, y: -2.842171e-16, z: 0}
+ rotation: {x: -0.0000024176625, y: -0.0028313876, z: 0.000843909, w: 0.99999565}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex1
+ position: {x: -0.09506476, y: 0.00005518901, z: 0.03229297}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex2
+ position: {x: -0.031456187, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex3
+ position: {x: -0.026145402, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndexEND
+ position: {x: -0.030434882, y: 0, z: 8.881784e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle1
+ position: {x: -0.09450546, y: -0.000005017072, z: 0.0054007857}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle2
+ position: {x: -0.03860532, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle3
+ position: {x: -0.029822098, y: 0, z: 0}
+ rotation: {x: 1.6940659e-21, y: -3.0374601e-18, z: 1.5144949e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddleEND
+ position: {x: -0.030639142, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky1
+ position: {x: -0.09338952, y: -0.00012434727, z: -0.047905773}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky2
+ position: {x: -0.02757523, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky3
+ position: {x: -0.023694271, y: 0, z: -1.7763568e-17}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinkyEND
+ position: {x: -0.023898533, y: 0, z: 1.7763568e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing1
+ position: {x: -0.09456046, y: -0.00006564576, z: -0.02122128}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing2
+ position: {x: -0.033294536, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing3
+ position: {x: -0.02573688, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRingEND
+ position: {x: -0.032273233, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb1
+ position: {x: -0.014531664, y: -0.010635542, z: 0.02609546}
+ rotation: {x: -0.001391087, y: 0.43585023, z: 0.00026398723, w: 0.90001816}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb2
+ position: {x: -0.044124622, y: 0, z: 4.440892e-18}
+ rotation: {x: 0.0000001058215, y: -0.03346803, z: -0.000001782842, w: 0.99943984}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb3
+ position: {x: -0.03446204, y: 0, z: -1.5543122e-17}
+ rotation: {x: 1.1354973e-16, y: 0.017452406, z: 2.3701255e-16, w: 0.9998477}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumbEnd
+ position: {x: -0.027849242, y: 0, z: -2.220446e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumbEND
+ position: {x: 1.1400142e-18, y: 0, z: -1.9054521e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Neck
+ position: {x: -0.2294332, y: -1.821977e-17, z: 0.0049986364}
+ rotation: {x: -2.775558e-17, y: -0.29237172, z: 4.0278586e-33, w: 0.9563048}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Head
+ position: {x: -0.10867395, y: -1.1779883e-16, z: 1.4210854e-16}
+ rotation: {x: -1.3877788e-17, y: 0.19936794, z: -3.9307714e-34, w: 0.9799247}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: HeadEND
+ position: {x: -0.24878563, y: -1.5987211e-16, z: 7.902685e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEye
+ position: {x: -0.06898784, y: 0.042644892, z: -0.067543894}
+ rotation: {x: 0.49111634, y: -0.4841803, z: 0.50882685, w: 0.5152373}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LowerEyelids
+ position: {x: -0.05675008, y: -8.5596115e-16, z: -0.09207437}
+ rotation: {x: 5.89806e-17, y: -8.6736174e-19, z: 1.110223e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEye
+ position: {x: -0.06898793, y: -0.0426449, z: -0.06754389}
+ rotation: {x: -1.1714554e-15, y: 1, z: 2.8327693e-16, w: 7.7545535e-17}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: UpperEyelids
+ position: {x: -0.07905001, y: -8.603375e-16, z: -0.096244544}
+ rotation: {x: 5.89806e-17, y: -8.6736174e-19, z: 1.110223e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightShoulder
+ position: {x: -0.14354727, y: -0.0392262, z: 0.022630045}
+ rotation: {x: -0.0130629325, y: -0.13335347, z: -0.68924034, w: 0.71203506}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightUpperArm
+ position: {x: 0.11169233, y: 0.0000013741218, z: -0.000000017416571}
+ rotation: {x: 0.99418354, y: -0.02591735, z: -0.10452178, w: -0.0016203261}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightArm
+ position: {x: 0.27156565, y: -0.0000016521891, z: -0.000000010419892}
+ rotation: {x: -0.000011964993, y: 0.0000000651813, z: -0.000010528297, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHand
+ position: {x: 0.23317498, y: 0.000003552258, z: 0.00000003303112}
+ rotation: {x: 0.9999994, y: 0.000013414664, z: -0.00003311748, w: -0.0011172838}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex1
+ position: {x: 0.09506465, y: -0.000052980962, z: -0.03229297}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex2
+ position: {x: 0.031456, y: 5.684342e-16, z: 3.7303492e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex3
+ position: {x: 0.026145, y: 0, z: 2.842171e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndexEND
+ position: {x: 0.030435, y: 2.842171e-16, z: 3.2862602e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle1
+ position: {x: 0.09450487, y: 0.000007224165, z: -0.0054008546}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle2
+ position: {x: 0.038606, y: 2.842171e-16, z: 4.440892e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle3
+ position: {x: 0.029821998, y: 2.842171e-16, z: 3.375078e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddleEND
+ position: {x: 0.030638998, y: -2.842171e-16, z: 3.375078e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky1
+ position: {x: 0.093388975, y: 0.0001265551, z: 0.047905993}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky2
+ position: {x: 0.027576, y: 0, z: 3.375078e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky3
+ position: {x: 0.023694, y: 0, z: 2.664535e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinkyEND
+ position: {x: 0.023898, y: 2.842171e-16, z: 2.664535e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing1
+ position: {x: 0.0945606, y: 0.0000678541, z: 0.021221206}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing2
+ position: {x: 0.033294, y: 2.842171e-16, z: 3.5527135e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing3
+ position: {x: 0.025736999, y: 0, z: 2.842171e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRingEND
+ position: {x: 0.032273, y: 2.842171e-16, z: 3.7303492e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb1
+ position: {x: 0.014531372, y: 0.010635231, z: -0.026095485}
+ rotation: {x: -0.001391087, y: 0.43585023, z: 0.00026398723, w: 0.90001816}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb2
+ position: {x: 0.044124745, y: 2.842171e-16, z: 0.00000011967238}
+ rotation: {x: -0.0000001293374, y: -0.033468656, z: 0.0000011772497, w: 0.9994398}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb3
+ position: {x: 0.03446187, y: 1.7053025e-15, z: -0.000000061993184}
+ rotation: {x: -1.289088e-16, y: 0.017452406, z: -7.523221e-16, w: 0.9998477}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumbEnd
+ position: {x: 0.02784971, y: 1.7053025e-15, z: 0.00000026974834}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumbEND
+ position: {x: -1.4210854e-16, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 9d9569a11a06f464bb9a5618bdd51bba,
+ type: 3}
+ animationType: 3
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/TakeObjects.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/TakeObjects.fbx
new file mode 100644
index 00000000..7615a8ec
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/TakeObjects.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/TakeObjects.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/TakeObjects.fbx.meta
new file mode 100644
index 00000000..72eba163
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/TakeObjects.fbx.meta
@@ -0,0 +1,1828 @@
+fileFormatVersion: 2
+guid: 836db2ed51e808246958923579aa47e0
+timeCreated: 1473672060
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: ControlsEyeDirection
+ 100004: ControlsHips
+ 100006: ControlsLeftFoot
+ 100008: ControlsLeftHand
+ 100010: ControlsLeftIndex1
+ 100012: ControlsLeftIndex2
+ 100014: ControlsLeftIndex3
+ 100016: ControlsLeftLegPoleVector
+ 100018: ControlsLeftLegPoleVector1
+ 100020: ControlsLeftMiddle1
+ 100022: ControlsLeftMiddle2
+ 100024: ControlsLeftMiddle3
+ 100026: ControlsLeftPinky1
+ 100028: ControlsLeftPinky2
+ 100030: ControlsLeftPinky3
+ 100032: ControlsLeftRing1
+ 100034: ControlsLeftRing2
+ 100036: ControlsLeftRing3
+ 100038: ControlsLeftShoulder
+ 100040: ControlsLeftThumb1
+ 100042: ControlsLeftThumb2
+ 100044: ControlsLeftThumb3
+ 100046: ControlsLeftThumbOrient
+ 100048: ControlsLowerEyelid
+ 100050: ControlsNeck
+ 100052: ControlsRightFoot
+ 100054: ControlsRightHand
+ 100056: ControlsRightIndex1
+ 100058: ControlsRightIndex2
+ 100060: ControlsRightIndex3
+ 100062: ControlsRightLegPoleVector
+ 100064: ControlsRightLegPoleVector2
+ 100066: ControlsRightMiddle1
+ 100068: ControlsRightMiddle2
+ 100070: ControlsRightMiddle3
+ 100072: ControlsRightPinky1
+ 100074: ControlsRightPinky2
+ 100076: ControlsRightPinky3
+ 100078: ControlsRightRing1
+ 100080: ControlsRightRing2
+ 100082: ControlsRightRing3
+ 100084: ControlsRightShoulder
+ 100086: ControlsRightThumb1
+ 100088: ControlsRightThumb2
+ 100090: ControlsRightThumb3
+ 100092: ControlsRightThumbOrient
+ 100094: ControlsSpine1
+ 100096: ControlsSpine2
+ 100098: ControlsSpine3
+ 100100: ControlsUpperBody
+ 100102: ControlsUpperEyelid
+ 100104: Head
+ 100106: HeadEND
+ 100108: HeelPeel
+ 100110: HeelPeel 1
+ 100112: Hips
+ 100114: ikHandleLeftArm
+ 100116: ikHandleLeftFoot
+ 100118: ikHandleLeftLeg
+ 100120: ikHandleLeftToe
+ 100122: ikHandleRightArm
+ 100124: ikHandleRightFoot
+ 100126: ikHandleRightLeg
+ 100128: ikHandleRightToe
+ 100130: LeftArm
+ 100132: LeftEye
+ 100134: LeftFoot
+ 100136: LeftHand
+ 100138: LeftIndex1
+ 100140: LeftIndex2
+ 100142: LeftIndex3
+ 100144: LeftIndexEND
+ 100146: LeftLeg
+ 100148: LeftMiddle1
+ 100150: LeftMiddle2
+ 100152: LeftMiddle3
+ 100154: LeftMiddleEND
+ 100156: LeftPinky1
+ 100158: LeftPinky2
+ 100160: LeftPinky3
+ 100162: LeftPinkyEND
+ 100164: LeftRing1
+ 100166: LeftRing2
+ 100168: LeftRing3
+ 100170: LeftRingEND
+ 100172: LeftShoulder
+ 100174: LeftThumb1
+ 100176: LeftThumb2
+ 100178: LeftThumb3
+ 100180: LeftThumbEND
+ 100182: LeftThumbEnd
+ 100184: LeftToe
+ 100186: LeftToeEND
+ 100188: LeftUpperArm
+ 100190: LeftUpperLeg
+ 100192: LowerEyelids
+ 100194: Mesh
+ 100196: Neck
+ 100198: RightArm
+ 100200: RightEye
+ 100202: RightFoot
+ 100204: RightHand
+ 100206: RightIndex1
+ 100208: RightIndex2
+ 100210: RightIndex3
+ 100212: RightIndexEND
+ 100214: RightLeg
+ 100216: RightMiddle1
+ 100218: RightMiddle2
+ 100220: RightMiddle3
+ 100222: RightMiddleEND
+ 100224: RightPinky1
+ 100226: RightPinky2
+ 100228: RightPinky3
+ 100230: RightPinkyEND
+ 100232: RightRing1
+ 100234: RightRing2
+ 100236: RightRing3
+ 100238: RightRingEND
+ 100240: RightShoulder
+ 100242: RightThumb1
+ 100244: RightThumb2
+ 100246: RightThumb3
+ 100248: RightThumbEND
+ 100250: RightThumbEnd
+ 100252: RightToe
+ 100254: RightToeEND
+ 100256: RightUpperArm
+ 100258: RightUpperLeg
+ 100260: Skeleton
+ 100262: Spine1
+ 100264: Spine2
+ 100266: Swivel
+ 100268: Swivel 1
+ 100270: //RootNode
+ 100272: ToeTap
+ 100274: ToeTap 1
+ 100276: ToeTip
+ 100278: ToeTip 1
+ 100280: UpperEyelids
+ 100282: LowerEyelidsEND
+ 100284: UpperEyelidsEND
+ 400000: Controls
+ 400002: ControlsEyeDirection
+ 400004: ControlsHips
+ 400006: ControlsLeftFoot
+ 400008: ControlsLeftHand
+ 400010: ControlsLeftIndex1
+ 400012: ControlsLeftIndex2
+ 400014: ControlsLeftIndex3
+ 400016: ControlsLeftLegPoleVector
+ 400018: ControlsLeftLegPoleVector1
+ 400020: ControlsLeftMiddle1
+ 400022: ControlsLeftMiddle2
+ 400024: ControlsLeftMiddle3
+ 400026: ControlsLeftPinky1
+ 400028: ControlsLeftPinky2
+ 400030: ControlsLeftPinky3
+ 400032: ControlsLeftRing1
+ 400034: ControlsLeftRing2
+ 400036: ControlsLeftRing3
+ 400038: ControlsLeftShoulder
+ 400040: ControlsLeftThumb1
+ 400042: ControlsLeftThumb2
+ 400044: ControlsLeftThumb3
+ 400046: ControlsLeftThumbOrient
+ 400048: ControlsLowerEyelid
+ 400050: ControlsNeck
+ 400052: ControlsRightFoot
+ 400054: ControlsRightHand
+ 400056: ControlsRightIndex1
+ 400058: ControlsRightIndex2
+ 400060: ControlsRightIndex3
+ 400062: ControlsRightLegPoleVector
+ 400064: ControlsRightLegPoleVector2
+ 400066: ControlsRightMiddle1
+ 400068: ControlsRightMiddle2
+ 400070: ControlsRightMiddle3
+ 400072: ControlsRightPinky1
+ 400074: ControlsRightPinky2
+ 400076: ControlsRightPinky3
+ 400078: ControlsRightRing1
+ 400080: ControlsRightRing2
+ 400082: ControlsRightRing3
+ 400084: ControlsRightShoulder
+ 400086: ControlsRightThumb1
+ 400088: ControlsRightThumb2
+ 400090: ControlsRightThumb3
+ 400092: ControlsRightThumbOrient
+ 400094: ControlsSpine1
+ 400096: ControlsSpine2
+ 400098: ControlsSpine3
+ 400100: ControlsUpperBody
+ 400102: ControlsUpperEyelid
+ 400104: Head
+ 400106: HeadEND
+ 400108: HeelPeel
+ 400110: HeelPeel 1
+ 400112: Hips
+ 400114: ikHandleLeftArm
+ 400116: ikHandleLeftFoot
+ 400118: ikHandleLeftLeg
+ 400120: ikHandleLeftToe
+ 400122: ikHandleRightArm
+ 400124: ikHandleRightFoot
+ 400126: ikHandleRightLeg
+ 400128: ikHandleRightToe
+ 400130: LeftArm
+ 400132: LeftEye
+ 400134: LeftFoot
+ 400136: LeftHand
+ 400138: LeftIndex1
+ 400140: LeftIndex2
+ 400142: LeftIndex3
+ 400144: LeftIndexEND
+ 400146: LeftLeg
+ 400148: LeftMiddle1
+ 400150: LeftMiddle2
+ 400152: LeftMiddle3
+ 400154: LeftMiddleEND
+ 400156: LeftPinky1
+ 400158: LeftPinky2
+ 400160: LeftPinky3
+ 400162: LeftPinkyEND
+ 400164: LeftRing1
+ 400166: LeftRing2
+ 400168: LeftRing3
+ 400170: LeftRingEND
+ 400172: LeftShoulder
+ 400174: LeftThumb1
+ 400176: LeftThumb2
+ 400178: LeftThumb3
+ 400180: LeftThumbEND
+ 400182: LeftThumbEnd
+ 400184: LeftToe
+ 400186: LeftToeEND
+ 400188: LeftUpperArm
+ 400190: LeftUpperLeg
+ 400192: LowerEyelids
+ 400194: Mesh
+ 400196: Neck
+ 400198: RightArm
+ 400200: RightEye
+ 400202: RightFoot
+ 400204: RightHand
+ 400206: RightIndex1
+ 400208: RightIndex2
+ 400210: RightIndex3
+ 400212: RightIndexEND
+ 400214: RightLeg
+ 400216: RightMiddle1
+ 400218: RightMiddle2
+ 400220: RightMiddle3
+ 400222: RightMiddleEND
+ 400224: RightPinky1
+ 400226: RightPinky2
+ 400228: RightPinky3
+ 400230: RightPinkyEND
+ 400232: RightRing1
+ 400234: RightRing2
+ 400236: RightRing3
+ 400238: RightRingEND
+ 400240: RightShoulder
+ 400242: RightThumb1
+ 400244: RightThumb2
+ 400246: RightThumb3
+ 400248: RightThumbEND
+ 400250: RightThumbEnd
+ 400252: RightToe
+ 400254: RightToeEND
+ 400256: RightUpperArm
+ 400258: RightUpperLeg
+ 400260: Skeleton
+ 400262: Spine1
+ 400264: Spine2
+ 400266: Swivel
+ 400268: Swivel 1
+ 400270: //RootNode
+ 400272: ToeTap
+ 400274: ToeTap 1
+ 400276: ToeTip
+ 400278: ToeTip 1
+ 400280: UpperEyelids
+ 400282: LowerEyelidsEND
+ 400284: UpperEyelidsEND
+ 2300000: ControlsLeftIndex1
+ 2300002: ControlsLeftIndex2
+ 2300004: ControlsLeftIndex3
+ 2300006: ControlsLeftLegPoleVector
+ 2300008: ControlsLeftLegPoleVector1
+ 2300010: ControlsLeftMiddle1
+ 2300012: ControlsLeftMiddle2
+ 2300014: ControlsLeftMiddle3
+ 2300016: ControlsLeftPinky1
+ 2300018: ControlsLeftPinky2
+ 2300020: ControlsLeftPinky3
+ 2300022: ControlsLeftRing1
+ 2300024: ControlsLeftRing2
+ 2300026: ControlsLeftRing3
+ 2300028: ControlsLeftThumb1
+ 2300030: ControlsLeftThumb2
+ 2300032: ControlsLeftThumb3
+ 2300034: ControlsLowerEyelid
+ 2300036: ControlsRightIndex1
+ 2300038: ControlsRightIndex2
+ 2300040: ControlsRightIndex3
+ 2300042: ControlsRightLegPoleVector
+ 2300044: ControlsRightLegPoleVector2
+ 2300046: ControlsRightMiddle1
+ 2300048: ControlsRightMiddle2
+ 2300050: ControlsRightMiddle3
+ 2300052: ControlsRightPinky1
+ 2300054: ControlsRightPinky2
+ 2300056: ControlsRightPinky3
+ 2300058: ControlsRightRing1
+ 2300060: ControlsRightRing2
+ 2300062: ControlsRightRing3
+ 2300064: ControlsRightThumb1
+ 2300066: ControlsRightThumb2
+ 2300068: ControlsRightThumb3
+ 2300070: ControlsUpperEyelid
+ 3300000: ControlsLeftIndex1
+ 3300002: ControlsLeftIndex2
+ 3300004: ControlsLeftIndex3
+ 3300006: ControlsLeftLegPoleVector
+ 3300008: ControlsLeftLegPoleVector1
+ 3300010: ControlsLeftMiddle1
+ 3300012: ControlsLeftMiddle2
+ 3300014: ControlsLeftMiddle3
+ 3300016: ControlsLeftPinky1
+ 3300018: ControlsLeftPinky2
+ 3300020: ControlsLeftPinky3
+ 3300022: ControlsLeftRing1
+ 3300024: ControlsLeftRing2
+ 3300026: ControlsLeftRing3
+ 3300028: ControlsLeftThumb1
+ 3300030: ControlsLeftThumb2
+ 3300032: ControlsLeftThumb3
+ 3300034: ControlsLowerEyelid
+ 3300036: ControlsRightIndex1
+ 3300038: ControlsRightIndex2
+ 3300040: ControlsRightIndex3
+ 3300042: ControlsRightLegPoleVector
+ 3300044: ControlsRightLegPoleVector2
+ 3300046: ControlsRightMiddle1
+ 3300048: ControlsRightMiddle2
+ 3300050: ControlsRightMiddle3
+ 3300052: ControlsRightPinky1
+ 3300054: ControlsRightPinky2
+ 3300056: ControlsRightPinky3
+ 3300058: ControlsRightRing1
+ 3300060: ControlsRightRing2
+ 3300062: ControlsRightRing3
+ 3300064: ControlsRightThumb1
+ 3300066: ControlsRightThumb2
+ 3300068: ControlsRightThumb3
+ 3300070: ControlsUpperEyelid
+ 4300000: Mesh
+ 4300002: ControlsLeftLegPoleVector
+ 4300004: ControlsUpperEyelid
+ 4300006: ControlsLowerEyelid
+ 4300008: ControlsLeftLegPoleVector1
+ 4300010: ControlsLeftIndex1
+ 4300012: ControlsLeftIndex2
+ 4300014: ControlsLeftIndex3
+ 4300016: ControlsLeftMiddle1
+ 4300018: ControlsLeftMiddle2
+ 4300020: ControlsLeftMiddle3
+ 4300022: ControlsLeftRing1
+ 4300024: ControlsLeftRing2
+ 4300026: ControlsLeftRing3
+ 4300028: ControlsLeftPinky1
+ 4300030: ControlsLeftPinky2
+ 4300032: ControlsLeftPinky3
+ 4300034: ControlsLeftThumb1
+ 4300036: ControlsLeftThumb2
+ 4300038: ControlsLeftThumb3
+ 4300040: ControlsRightThumb1
+ 4300042: ControlsRightThumb2
+ 4300044: ControlsRightThumb3
+ 4300046: ControlsRightPinky1
+ 4300048: ControlsRightPinky2
+ 4300050: ControlsRightPinky3
+ 4300052: ControlsRightRing1
+ 4300054: ControlsRightRing2
+ 4300056: ControlsRightRing3
+ 4300058: ControlsRightMiddle1
+ 4300060: ControlsRightMiddle2
+ 4300062: ControlsRightMiddle3
+ 4300064: ControlsRightIndex1
+ 4300066: ControlsRightIndex2
+ 4300068: ControlsRightIndex3
+ 4300070: ControlsRightLegPoleVector
+ 4300072: ControlsRightLegPoleVector2
+ 7400000: PlayerTakeObjectLow
+ 7400002: PlayerTakeObjectMid
+ 7400004: PlayerTakeObjectHigh
+ 9500000: //RootNode
+ 13700000: Mesh
+ materials:
+ importMaterials: 0
+ materialName: 0
+ materialSearch: 1
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleCurves: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 3
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: PlayerTakeObjectLow
+ takeName: Take 001
+ firstFrame: 1
+ lastFrame: 110
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 0
+ loopBlend: 0
+ loopBlendOrientation: 1
+ loopBlendPositionY: 1
+ loopBlendPositionXZ: 1
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 0
+ - path: Controls/ControlsUpperBody
+ weight: 0
+ - path: Controls/ControlsUpperBody/ControlsHips
+ weight: 0
+ - path: Mesh
+ weight: 0
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Hips
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot/LeftToe
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot/LeftToe/LeftToeEND
+ weight: 0
+ - path: Skeleton/Hips/RightUpperLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot/RightToe
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot/RightToe/RightToeEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3/LeftPinkyEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2/LeftRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2/LeftRing3/LeftRingEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd/LeftThumbEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/HeadEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LeftEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LowerEyelids
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LowerEyelids/LowerEyelidsEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/RightEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/UpperEyelids
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/UpperEyelids/UpperEyelidsEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2/RightIndex3/RightIndexEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2/RightPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2/RightPinky3/RightPinkyEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2/RightRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2/RightRing3/RightRingEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd/RightThumbEND
+ weight: 0
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 1
+ - serializedVersion: 16
+ name: PlayerTakeObjectMid
+ takeName: Take 001
+ firstFrame: 111
+ lastFrame: 185
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 0
+ loopBlend: 0
+ loopBlendOrientation: 1
+ loopBlendPositionY: 1
+ loopBlendPositionXZ: 1
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 0
+ - path: Controls/ControlsUpperBody
+ weight: 0
+ - path: Controls/ControlsUpperBody/ControlsHips
+ weight: 0
+ - path: Mesh
+ weight: 0
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Hips
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot/LeftToe
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot/LeftToe/LeftToeEND
+ weight: 0
+ - path: Skeleton/Hips/RightUpperLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot/RightToe
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot/RightToe/RightToeEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3/LeftPinkyEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2/LeftRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2/LeftRing3/LeftRingEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd/LeftThumbEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/HeadEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LeftEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LowerEyelids
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LowerEyelids/LowerEyelidsEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/RightEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/UpperEyelids
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/UpperEyelids/UpperEyelidsEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2/RightIndex3/RightIndexEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2/RightPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2/RightPinky3/RightPinkyEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2/RightRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2/RightRing3/RightRingEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd/RightThumbEND
+ weight: 0
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 1
+ - serializedVersion: 16
+ name: PlayerTakeObjectHigh
+ takeName: Take 001
+ firstFrame: 186
+ lastFrame: 250
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 0
+ loopBlend: 0
+ loopBlendOrientation: 1
+ loopBlendPositionY: 1
+ loopBlendPositionXZ: 1
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Controls
+ weight: 0
+ - path: Controls/ControlsUpperBody
+ weight: 0
+ - path: Controls/ControlsUpperBody/ControlsHips
+ weight: 0
+ - path: Mesh
+ weight: 0
+ - path: Skeleton
+ weight: 1
+ - path: Skeleton/Hips
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot/LeftToe
+ weight: 1
+ - path: Skeleton/Hips/LeftUpperLeg/LeftLeg/LeftFoot/LeftToe/LeftToeEND
+ weight: 0
+ - path: Skeleton/Hips/RightUpperLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot/RightToe
+ weight: 1
+ - path: Skeleton/Hips/RightUpperLeg/RightLeg/RightFoot/RightToe/RightToeEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftIndex1/LeftIndex2/LeftIndex3/LeftIndexEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftMiddle1/LeftMiddle2/LeftMiddle3/LeftMiddleEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftPinky1/LeftPinky2/LeftPinky3/LeftPinkyEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2/LeftRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftRing1/LeftRing2/LeftRing3/LeftRingEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/LeftShoulder/LeftUpperArm/LeftArm/LeftHand/LeftThumb1/LeftThumb2/LeftThumb3/LeftThumbEnd/LeftThumbEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/HeadEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LeftEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LowerEyelids
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/LowerEyelids/LowerEyelidsEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/RightEye
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/UpperEyelids
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/Neck/Head/UpperEyelids/UpperEyelidsEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2/RightIndex3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightIndex1/RightIndex2/RightIndex3/RightIndexEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightMiddle1/RightMiddle2/RightMiddle3/RightMiddleEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2/RightPinky3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightPinky1/RightPinky2/RightPinky3/RightPinkyEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2/RightRing3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightRing1/RightRing2/RightRing3/RightRingEND
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3
+ weight: 1
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd
+ weight: 0
+ - path: Skeleton/Hips/Spine1/Spine2/RightShoulder/RightUpperArm/RightArm/RightHand/RightThumb1/RightThumb2/RightThumb3/RightThumbEnd/RightThumbEND
+ weight: 0
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 1
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 1
+ humanDescription:
+ human:
+ - boneName: Hips
+ humanName: Hips
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftUpperLeg
+ humanName: LeftUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightUpperLeg
+ humanName: RightUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftLeg
+ humanName: LeftLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightLeg
+ humanName: RightLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftFoot
+ humanName: LeftFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightFoot
+ humanName: RightFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Spine1
+ humanName: Spine
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Spine2
+ humanName: Chest
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Neck
+ humanName: Neck
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Head
+ humanName: Head
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftShoulder
+ humanName: LeftShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightShoulder
+ humanName: RightShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftUpperArm
+ humanName: LeftUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightUpperArm
+ humanName: RightUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftArm
+ humanName: LeftLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightArm
+ humanName: RightLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHand
+ humanName: LeftHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHand
+ humanName: RightHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftToe
+ humanName: LeftToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightToe
+ humanName: RightToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftEye
+ humanName: LeftEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightEye
+ humanName: RightEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb1
+ humanName: Left Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb2
+ humanName: Left Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb3
+ humanName: Left Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex1
+ humanName: Left Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex2
+ humanName: Left Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex3
+ humanName: Left Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle1
+ humanName: Left Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle2
+ humanName: Left Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle3
+ humanName: Left Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing1
+ humanName: Left Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing2
+ humanName: Left Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing3
+ humanName: Left Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky1
+ humanName: Left Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky2
+ humanName: Left Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky3
+ humanName: Left Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb1
+ humanName: Right Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb2
+ humanName: Right Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb3
+ humanName: Right Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex1
+ humanName: Right Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex2
+ humanName: Right Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex3
+ humanName: Right Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle1
+ humanName: Right Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle2
+ humanName: Right Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle3
+ humanName: Right Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing1
+ humanName: Right Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing2
+ humanName: Right Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing3
+ humanName: Right Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky1
+ humanName: Right Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky2
+ humanName: Right Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky3
+ humanName: Right Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ skeleton:
+ - name: Player(Clone)
+ position: {x: 0, y: 0, z: 0}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Controls
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: ControlsUpperBody
+ position: {x: -0, y: 0.9856257, z: -0.028446734}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: ControlsHips
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Mesh
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Skeleton
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Hips
+ position: {x: 0, y: 0.9088629, z: -0.028446734}
+ rotation: {x: 0.7071068, y: -0.7071068, z: -4.3297806e-17, w: 4.3297806e-17}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftUpperLeg
+ position: {x: 0.037347827, y: 0.092801034, z: 0.0064211558}
+ rotation: {x: -0.0033267832, y: 0.99839103, z: 0.056605782, w: -0.0004065326}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLeg
+ position: {x: -0.37195736, y: -1.236171e-16, z: 5.1000362e-18}
+ rotation: {x: -0.0004567116, y: -0.052333966, z: -0.008714577, w: 0.99859154}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftFoot
+ position: {x: -0.41152263, y: -0.0015294757, z: -0.002893631}
+ rotation: {x: 0.050357435, y: 0.49969903, z: 0.026062192, w: 0.86434126}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftToe
+ position: {x: -0.1110157, y: -2.5535128e-17, z: 8.2057634e-17}
+ rotation: {x: 4.2141773e-14, y: 0.3007058, z: -1.328725e-14, w: 0.95371693}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftToeEND
+ position: {x: -0.11182804, y: -2.918769e-18, z: 9.290528e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightUpperLeg
+ position: {x: 0.037347663, y: -0.092801, z: 0.0064211655}
+ rotation: {x: -0.05660591, y: 0.00040653365, z: -0.003326788, w: 0.99839103}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLeg
+ position: {x: 0.37195793, y: 5.9421585e-17, z: -4.0592486e-18}
+ rotation: {x: -0.0004567116, y: -0.052333966, z: -0.008714577, w: 0.99859154}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightFoot
+ position: {x: 0.41152248, y: 0.001529468, z: 0.0028936374}
+ rotation: {x: 0.05035755, y: 0.49969906, z: 0.026062248, w: 0.86434126}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightToe
+ position: {x: 0.11101543, y: -0.000000079186826, z: -0.0000003664904}
+ rotation: {x: 0, y: 0.3007058, z: -0, w: 0.95371693}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightToeEND
+ position: {x: 0.111827955, y: 0.000000072275725, z: 0.00000062929314}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Spine1
+ position: {x: -0.10568693, y: 0, z: 0}
+ rotation: {x: -6.123234e-17, y: -6.123234e-17, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Spine2
+ position: {x: -0.1833106, y: 8.548717e-16, z: -4.440892e-18}
+ rotation: {x: -6.5194134e-17, y: 0.087155744, z: 3.8665733e-34, w: 0.9961947}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftShoulder
+ position: {x: -0.1435461, y: 0.03922616, z: 0.022630278}
+ rotation: {x: -0.68924034, y: 0.71203506, z: 0.0130629325, w: 0.13335347}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftUpperArm
+ position: {x: -0.11169202, y: -1.3877788e-17, z: -5.851063e-17}
+ rotation: {x: 0.0016100118, y: 0.104498126, z: -0.025915265, w: 0.9941861}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftArm
+ position: {x: -0.2715663, y: 0, z: 0}
+ rotation: {x: 8.2024617e-16, y: 0.000052097534, z: -8.848866e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHand
+ position: {x: -0.2331744, y: -2.842171e-16, z: 0}
+ rotation: {x: -0.0000024176625, y: -0.0028313876, z: 0.000843909, w: 0.99999565}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex1
+ position: {x: -0.09506476, y: 0.00005518901, z: 0.03229297}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex2
+ position: {x: -0.031456187, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex3
+ position: {x: -0.026145402, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndexEND
+ position: {x: -0.030434882, y: 0, z: 8.881784e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle1
+ position: {x: -0.09450546, y: -0.000005017072, z: 0.0054007857}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle2
+ position: {x: -0.03860532, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle3
+ position: {x: -0.029822098, y: 0, z: 0}
+ rotation: {x: 1.6940659e-21, y: -3.0374601e-18, z: 1.5144949e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddleEND
+ position: {x: -0.030639142, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky1
+ position: {x: -0.09338952, y: -0.00012434727, z: -0.047905773}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky2
+ position: {x: -0.02757523, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky3
+ position: {x: -0.023694271, y: 0, z: -1.7763568e-17}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinkyEND
+ position: {x: -0.023898533, y: 0, z: 1.7763568e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing1
+ position: {x: -0.09456046, y: -0.00006564576, z: -0.02122128}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing2
+ position: {x: -0.033294536, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing3
+ position: {x: -0.02573688, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRingEND
+ position: {x: -0.032273233, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb1
+ position: {x: -0.014531664, y: -0.010635542, z: 0.02609546}
+ rotation: {x: -0.001391087, y: 0.43585023, z: 0.00026398723, w: 0.90001816}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb2
+ position: {x: -0.044124622, y: 0, z: 4.440892e-18}
+ rotation: {x: 0.0000001058215, y: -0.03346803, z: -0.000001782842, w: 0.99943984}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb3
+ position: {x: -0.03446204, y: 0, z: -1.5543122e-17}
+ rotation: {x: 1.1354973e-16, y: 0.017452406, z: 2.3701255e-16, w: 0.9998477}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumbEnd
+ position: {x: -0.027849242, y: 0, z: -2.220446e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumbEND
+ position: {x: 1.1400142e-18, y: 0, z: -1.9054521e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Neck
+ position: {x: -0.2294332, y: -1.821977e-17, z: 0.0049986364}
+ rotation: {x: -2.775558e-17, y: -0.29237172, z: 4.0278586e-33, w: 0.9563048}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Head
+ position: {x: -0.10867395, y: -1.1779883e-16, z: 1.4210854e-16}
+ rotation: {x: -1.3877788e-17, y: 0.19936794, z: -3.9307714e-34, w: 0.9799247}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: HeadEND
+ position: {x: -0.24878563, y: -1.5987211e-16, z: 7.902685e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEye
+ position: {x: -0.06898784, y: 0.042644892, z: -0.067543894}
+ rotation: {x: 0.49111634, y: -0.4841803, z: 0.50882685, w: 0.5152373}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LowerEyelids
+ position: {x: -0.05675008, y: -8.5596115e-16, z: -0.09207437}
+ rotation: {x: 5.89806e-17, y: -8.6736174e-19, z: 1.110223e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEye
+ position: {x: -0.06898793, y: -0.0426449, z: -0.06754389}
+ rotation: {x: -1.1714554e-15, y: 1, z: 2.8327693e-16, w: 7.7545535e-17}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: UpperEyelids
+ position: {x: -0.07905001, y: -8.603375e-16, z: -0.096244544}
+ rotation: {x: 5.89806e-17, y: -8.6736174e-19, z: 1.110223e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightShoulder
+ position: {x: -0.14354727, y: -0.0392262, z: 0.022630045}
+ rotation: {x: -0.0130629325, y: -0.13335347, z: -0.68924034, w: 0.71203506}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightUpperArm
+ position: {x: 0.11169233, y: 0.0000013741218, z: -0.000000017416571}
+ rotation: {x: 0.99418354, y: -0.02591735, z: -0.10452178, w: -0.0016203261}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightArm
+ position: {x: 0.27156565, y: -0.0000016521891, z: -0.000000010419892}
+ rotation: {x: -0.000011964993, y: 0.0000000651813, z: -0.000010528297, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHand
+ position: {x: 0.23317498, y: 0.000003552258, z: 0.00000003303112}
+ rotation: {x: 0.9999994, y: 0.000013414664, z: -0.00003311748, w: -0.0011172838}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex1
+ position: {x: 0.09506465, y: -0.000052980962, z: -0.03229297}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex2
+ position: {x: 0.031456, y: 5.684342e-16, z: 3.7303492e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex3
+ position: {x: 0.026145, y: 0, z: 2.842171e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndexEND
+ position: {x: 0.030435, y: 2.842171e-16, z: 3.2862602e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle1
+ position: {x: 0.09450487, y: 0.000007224165, z: -0.0054008546}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle2
+ position: {x: 0.038606, y: 2.842171e-16, z: 4.440892e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle3
+ position: {x: 0.029821998, y: 2.842171e-16, z: 3.375078e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddleEND
+ position: {x: 0.030638998, y: -2.842171e-16, z: 3.375078e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky1
+ position: {x: 0.093388975, y: 0.0001265551, z: 0.047905993}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky2
+ position: {x: 0.027576, y: 0, z: 3.375078e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky3
+ position: {x: 0.023694, y: 0, z: 2.664535e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinkyEND
+ position: {x: 0.023898, y: 2.842171e-16, z: 2.664535e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing1
+ position: {x: 0.0945606, y: 0.0000678541, z: 0.021221206}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing2
+ position: {x: 0.033294, y: 2.842171e-16, z: 3.5527135e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing3
+ position: {x: 0.025736999, y: 0, z: 2.842171e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRingEND
+ position: {x: 0.032273, y: 2.842171e-16, z: 3.7303492e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb1
+ position: {x: 0.014531372, y: 0.010635231, z: -0.026095485}
+ rotation: {x: -0.001391087, y: 0.43585023, z: 0.00026398723, w: 0.90001816}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb2
+ position: {x: 0.044124745, y: 2.842171e-16, z: 0.00000011967238}
+ rotation: {x: -0.0000001293374, y: -0.033468656, z: 0.0000011772497, w: 0.9994398}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb3
+ position: {x: 0.03446187, y: 1.7053025e-15, z: -0.000000061993184}
+ rotation: {x: -1.289088e-16, y: 0.017452406, z: -7.523221e-16, w: 0.9998477}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumbEnd
+ position: {x: 0.02784971, y: 1.7053025e-15, z: 0.00000026974834}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumbEND
+ position: {x: -1.4210854e-16, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 9d9569a11a06f464bb9a5618bdd51bba,
+ type: 3}
+ animationType: 3
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Walk.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Walk.fbx
new file mode 100644
index 00000000..7f7a2c5b
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Walk.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Walk.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Walk.fbx.meta
new file mode 100644
index 00000000..a44c763a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animations/Player/Walk.fbx.meta
@@ -0,0 +1,1534 @@
+fileFormatVersion: 2
+guid: b1a5e04ae51004842aba06704a6c2903
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Chest
+ 100002: chestProxy_geo
+ 100004: //RootNode
+ 100006: Head
+ 100008: headProxy_geo
+ 100010: HeadTop_End
+ 100012: Hips
+ 100014: Jaw
+ 100016: JawEND
+ 100018: jawProxy_geo
+ 100020: l_ankleProxy_geo
+ 100022: l_ballProxy_geo
+ 100024: l_clavicleProxy_geo
+ 100026: l_erbowProxy_geo
+ 100028: l_hipProxy_geo
+ 100030: l_indexProxy_01_geo
+ 100032: l_indexProxy_02_geo
+ 100034: l_indexProxy_03_geo
+ 100036: l_kneeProxy_geo
+ 100038: l_middleProxy_01_geo
+ 100040: l_middleProxy_02_geo
+ 100042: l_middleProxy_03_geo
+ 100044: l_pinkyProxy_01_geo
+ 100046: l_pinkyProxy_02_geo
+ 100048: l_pinkyProxy_03_geo
+ 100050: l_ringProxy_01_geo
+ 100052: l_ringProxy_02_geo
+ 100054: l_ringProxy_03_geo
+ 100056: l_shourderProxy_geo
+ 100058: l_thumbProxy_01_geo
+ 100060: l_thumbProxy_02_geo
+ 100062: l_thumbProxy_03_geo
+ 100064: l_UNI_eye
+ 100066: l_wristProxy_geo
+ 100068: LeftArm
+ 100070: LeftCheek
+ 100072: LeftEye
+ 100074: LeftEyelidLower
+ 100076: LeftEyelidUpper
+ 100078: LeftFoot
+ 100080: LeftForeArm
+ 100082: LeftHand
+ 100084: LeftHandIndex1
+ 100086: LeftHandIndex13
+ 100088: LeftHandIndex17
+ 100090: LeftHandIndex2
+ 100092: LeftHandIndex3
+ 100094: LeftHandMiddle1
+ 100096: LeftHandMiddle13
+ 100098: LeftHandMiddle17
+ 100100: LeftHandMiddle2
+ 100102: LeftHandMiddle3
+ 100104: LeftHandPinky1
+ 100106: LeftHandPinky13
+ 100108: LeftHandPinky17
+ 100110: LeftHandPinky2
+ 100112: LeftHandPinky3
+ 100114: LeftHandRing1
+ 100116: LeftHandRing13
+ 100118: LeftHandRing17
+ 100120: LeftHandRing2
+ 100122: LeftHandRing3
+ 100124: LeftHandThumb1
+ 100126: LeftHandThumb13
+ 100128: LeftHandThumb17
+ 100130: LeftHandThumb2
+ 100132: LeftHandThumb3
+ 100134: LeftInnerBrow
+ 100136: LeftIOuterBrow
+ 100138: LeftLeg
+ 100140: LeftLipCorner
+ 100142: LeftLipLower
+ 100144: LeftLipUpper
+ 100146: LeftNostril
+ 100148: LeftShoulder
+ 100150: LeftToes
+ 100152: LeftUpLeg
+ 100154: LToeBase_End2
+ 100156: LToeBase_End3
+ 100158: Neck
+ 100160: neckProxy_geo
+ 100162: pelvisProxy_geo
+ 100164: r_ankleProxy_geo
+ 100166: r_ballProxy_geo
+ 100168: r_clavicleProxy_geo
+ 100170: r_erbowProxy_geo
+ 100172: r_hipProxy_geo
+ 100174: r_indexProxy_01_geo
+ 100176: r_indexProxy_02_geo
+ 100178: r_indexProxy_03_geo
+ 100180: r_kneeProxy_geo
+ 100182: r_middleProxy_01_geo
+ 100184: r_middleProxy_02_geo
+ 100186: r_middleProxy_03_geo
+ 100188: r_pinkyProxy_01_geo
+ 100190: r_pinkyProxy_02_geo
+ 100192: r_pinkyProxy_03_geo
+ 100194: r_ringProxy_01_geo
+ 100196: r_ringProxy_02_geo
+ 100198: r_ringProxy_03_geo
+ 100200: r_shourderProxy_geo
+ 100202: r_thumbProxy_01_geo
+ 100204: r_thumbProxy_02_geo
+ 100206: r_thumbProxy_03_geo
+ 100208: r_UNI_eye
+ 100210: r_wristProxy_geo
+ 100212: Reference
+ 100214: RightArm
+ 100216: RightCheek
+ 100218: RightEye
+ 100220: RightEyelidLower
+ 100222: RightEyelidUpper
+ 100224: RightFoot
+ 100226: RightForeArm
+ 100228: RightHand
+ 100230: RightHandIndex1
+ 100232: RightHandIndex2
+ 100234: RightHandIndex3
+ 100236: RightHandMiddle1
+ 100238: RightHandMiddle2
+ 100240: RightHandMiddle3
+ 100242: RightHandPinky1
+ 100244: RightHandPinky2
+ 100246: RightHandPinky3
+ 100248: RightHandRing1
+ 100250: RightHandRing2
+ 100252: RightHandRing3
+ 100254: RightHandThumb1
+ 100256: RightHandThumb2
+ 100258: RightHandThumb3
+ 100260: RightInnerBrow
+ 100262: RightIOuterBrow
+ 100264: RightLeg
+ 100266: RightLipCorner
+ 100268: RightLipLower
+ 100270: RightLipUpper
+ 100272: RightNostril
+ 100274: RightShoulder
+ 100276: RightToes
+ 100278: RightUpLeg
+ 100280: Spine
+ 100282: spineProxy_geo
+ 100284: TongueBack
+ 100286: TongueTip
+ 100288: UNI_01_Lower_teethProxy
+ 100290: UNI_01_TongueBaseProxy
+ 100292: UNI_01_TongueTipProxy
+ 100294: UNI_01_Upper_teethProxy
+ 400000: Chest
+ 400002: chestProxy_geo
+ 400004: //RootNode
+ 400006: Head
+ 400008: headProxy_geo
+ 400010: HeadTop_End
+ 400012: Hips
+ 400014: Jaw
+ 400016: JawEND
+ 400018: jawProxy_geo
+ 400020: l_ankleProxy_geo
+ 400022: l_ballProxy_geo
+ 400024: l_clavicleProxy_geo
+ 400026: l_erbowProxy_geo
+ 400028: l_hipProxy_geo
+ 400030: l_indexProxy_01_geo
+ 400032: l_indexProxy_02_geo
+ 400034: l_indexProxy_03_geo
+ 400036: l_kneeProxy_geo
+ 400038: l_middleProxy_01_geo
+ 400040: l_middleProxy_02_geo
+ 400042: l_middleProxy_03_geo
+ 400044: l_pinkyProxy_01_geo
+ 400046: l_pinkyProxy_02_geo
+ 400048: l_pinkyProxy_03_geo
+ 400050: l_ringProxy_01_geo
+ 400052: l_ringProxy_02_geo
+ 400054: l_ringProxy_03_geo
+ 400056: l_shourderProxy_geo
+ 400058: l_thumbProxy_01_geo
+ 400060: l_thumbProxy_02_geo
+ 400062: l_thumbProxy_03_geo
+ 400064: l_UNI_eye
+ 400066: l_wristProxy_geo
+ 400068: LeftArm
+ 400070: LeftCheek
+ 400072: LeftEye
+ 400074: LeftEyelidLower
+ 400076: LeftEyelidUpper
+ 400078: LeftFoot
+ 400080: LeftForeArm
+ 400082: LeftHand
+ 400084: LeftHandIndex1
+ 400086: LeftHandIndex13
+ 400088: LeftHandIndex17
+ 400090: LeftHandIndex2
+ 400092: LeftHandIndex3
+ 400094: LeftHandMiddle1
+ 400096: LeftHandMiddle13
+ 400098: LeftHandMiddle17
+ 400100: LeftHandMiddle2
+ 400102: LeftHandMiddle3
+ 400104: LeftHandPinky1
+ 400106: LeftHandPinky13
+ 400108: LeftHandPinky17
+ 400110: LeftHandPinky2
+ 400112: LeftHandPinky3
+ 400114: LeftHandRing1
+ 400116: LeftHandRing13
+ 400118: LeftHandRing17
+ 400120: LeftHandRing2
+ 400122: LeftHandRing3
+ 400124: LeftHandThumb1
+ 400126: LeftHandThumb13
+ 400128: LeftHandThumb17
+ 400130: LeftHandThumb2
+ 400132: LeftHandThumb3
+ 400134: LeftInnerBrow
+ 400136: LeftIOuterBrow
+ 400138: LeftLeg
+ 400140: LeftLipCorner
+ 400142: LeftLipLower
+ 400144: LeftLipUpper
+ 400146: LeftNostril
+ 400148: LeftShoulder
+ 400150: LeftToes
+ 400152: LeftUpLeg
+ 400154: LToeBase_End2
+ 400156: LToeBase_End3
+ 400158: Neck
+ 400160: neckProxy_geo
+ 400162: pelvisProxy_geo
+ 400164: r_ankleProxy_geo
+ 400166: r_ballProxy_geo
+ 400168: r_clavicleProxy_geo
+ 400170: r_erbowProxy_geo
+ 400172: r_hipProxy_geo
+ 400174: r_indexProxy_01_geo
+ 400176: r_indexProxy_02_geo
+ 400178: r_indexProxy_03_geo
+ 400180: r_kneeProxy_geo
+ 400182: r_middleProxy_01_geo
+ 400184: r_middleProxy_02_geo
+ 400186: r_middleProxy_03_geo
+ 400188: r_pinkyProxy_01_geo
+ 400190: r_pinkyProxy_02_geo
+ 400192: r_pinkyProxy_03_geo
+ 400194: r_ringProxy_01_geo
+ 400196: r_ringProxy_02_geo
+ 400198: r_ringProxy_03_geo
+ 400200: r_shourderProxy_geo
+ 400202: r_thumbProxy_01_geo
+ 400204: r_thumbProxy_02_geo
+ 400206: r_thumbProxy_03_geo
+ 400208: r_UNI_eye
+ 400210: r_wristProxy_geo
+ 400212: Reference
+ 400214: RightArm
+ 400216: RightCheek
+ 400218: RightEye
+ 400220: RightEyelidLower
+ 400222: RightEyelidUpper
+ 400224: RightFoot
+ 400226: RightForeArm
+ 400228: RightHand
+ 400230: RightHandIndex1
+ 400232: RightHandIndex2
+ 400234: RightHandIndex3
+ 400236: RightHandMiddle1
+ 400238: RightHandMiddle2
+ 400240: RightHandMiddle3
+ 400242: RightHandPinky1
+ 400244: RightHandPinky2
+ 400246: RightHandPinky3
+ 400248: RightHandRing1
+ 400250: RightHandRing2
+ 400252: RightHandRing3
+ 400254: RightHandThumb1
+ 400256: RightHandThumb2
+ 400258: RightHandThumb3
+ 400260: RightInnerBrow
+ 400262: RightIOuterBrow
+ 400264: RightLeg
+ 400266: RightLipCorner
+ 400268: RightLipLower
+ 400270: RightLipUpper
+ 400272: RightNostril
+ 400274: RightShoulder
+ 400276: RightToes
+ 400278: RightUpLeg
+ 400280: Spine
+ 400282: spineProxy_geo
+ 400284: TongueBack
+ 400286: TongueTip
+ 400288: UNI_01_Lower_teethProxy
+ 400290: UNI_01_TongueBaseProxy
+ 400292: UNI_01_TongueTipProxy
+ 400294: UNI_01_Upper_teethProxy
+ 2300000: chestProxy_geo
+ 2300002: headProxy_geo
+ 2300004: jawProxy_geo
+ 2300006: l_ankleProxy_geo
+ 2300008: l_ballProxy_geo
+ 2300010: l_clavicleProxy_geo
+ 2300012: l_erbowProxy_geo
+ 2300014: l_hipProxy_geo
+ 2300016: l_indexProxy_01_geo
+ 2300018: l_indexProxy_02_geo
+ 2300020: l_indexProxy_03_geo
+ 2300022: l_kneeProxy_geo
+ 2300024: l_middleProxy_01_geo
+ 2300026: l_middleProxy_02_geo
+ 2300028: l_middleProxy_03_geo
+ 2300030: l_pinkyProxy_01_geo
+ 2300032: l_pinkyProxy_02_geo
+ 2300034: l_pinkyProxy_03_geo
+ 2300036: l_ringProxy_01_geo
+ 2300038: l_ringProxy_02_geo
+ 2300040: l_ringProxy_03_geo
+ 2300042: l_shourderProxy_geo
+ 2300044: l_thumbProxy_01_geo
+ 2300046: l_thumbProxy_02_geo
+ 2300048: l_thumbProxy_03_geo
+ 2300050: l_UNI_eye
+ 2300052: l_wristProxy_geo
+ 2300054: neckProxy_geo
+ 2300056: pelvisProxy_geo
+ 2300058: r_ankleProxy_geo
+ 2300060: r_ballProxy_geo
+ 2300062: r_clavicleProxy_geo
+ 2300064: r_erbowProxy_geo
+ 2300066: r_hipProxy_geo
+ 2300068: r_indexProxy_01_geo
+ 2300070: r_indexProxy_02_geo
+ 2300072: r_indexProxy_03_geo
+ 2300074: r_kneeProxy_geo
+ 2300076: r_middleProxy_01_geo
+ 2300078: r_middleProxy_02_geo
+ 2300080: r_middleProxy_03_geo
+ 2300082: r_pinkyProxy_01_geo
+ 2300084: r_pinkyProxy_02_geo
+ 2300086: r_pinkyProxy_03_geo
+ 2300088: r_ringProxy_01_geo
+ 2300090: r_ringProxy_02_geo
+ 2300092: r_ringProxy_03_geo
+ 2300094: r_shourderProxy_geo
+ 2300096: r_thumbProxy_01_geo
+ 2300098: r_thumbProxy_02_geo
+ 2300100: r_thumbProxy_03_geo
+ 2300102: r_UNI_eye
+ 2300104: r_wristProxy_geo
+ 2300106: spineProxy_geo
+ 2300108: UNI_01_Lower_teethProxy
+ 2300110: UNI_01_TongueBaseProxy
+ 2300112: UNI_01_TongueTipProxy
+ 2300114: UNI_01_Upper_teethProxy
+ 3300000: chestProxy_geo
+ 3300002: headProxy_geo
+ 3300004: jawProxy_geo
+ 3300006: l_ankleProxy_geo
+ 3300008: l_ballProxy_geo
+ 3300010: l_clavicleProxy_geo
+ 3300012: l_erbowProxy_geo
+ 3300014: l_hipProxy_geo
+ 3300016: l_indexProxy_01_geo
+ 3300018: l_indexProxy_02_geo
+ 3300020: l_indexProxy_03_geo
+ 3300022: l_kneeProxy_geo
+ 3300024: l_middleProxy_01_geo
+ 3300026: l_middleProxy_02_geo
+ 3300028: l_middleProxy_03_geo
+ 3300030: l_pinkyProxy_01_geo
+ 3300032: l_pinkyProxy_02_geo
+ 3300034: l_pinkyProxy_03_geo
+ 3300036: l_ringProxy_01_geo
+ 3300038: l_ringProxy_02_geo
+ 3300040: l_ringProxy_03_geo
+ 3300042: l_shourderProxy_geo
+ 3300044: l_thumbProxy_01_geo
+ 3300046: l_thumbProxy_02_geo
+ 3300048: l_thumbProxy_03_geo
+ 3300050: l_UNI_eye
+ 3300052: l_wristProxy_geo
+ 3300054: neckProxy_geo
+ 3300056: pelvisProxy_geo
+ 3300058: r_ankleProxy_geo
+ 3300060: r_ballProxy_geo
+ 3300062: r_clavicleProxy_geo
+ 3300064: r_erbowProxy_geo
+ 3300066: r_hipProxy_geo
+ 3300068: r_indexProxy_01_geo
+ 3300070: r_indexProxy_02_geo
+ 3300072: r_indexProxy_03_geo
+ 3300074: r_kneeProxy_geo
+ 3300076: r_middleProxy_01_geo
+ 3300078: r_middleProxy_02_geo
+ 3300080: r_middleProxy_03_geo
+ 3300082: r_pinkyProxy_01_geo
+ 3300084: r_pinkyProxy_02_geo
+ 3300086: r_pinkyProxy_03_geo
+ 3300088: r_ringProxy_01_geo
+ 3300090: r_ringProxy_02_geo
+ 3300092: r_ringProxy_03_geo
+ 3300094: r_shourderProxy_geo
+ 3300096: r_thumbProxy_01_geo
+ 3300098: r_thumbProxy_02_geo
+ 3300100: r_thumbProxy_03_geo
+ 3300102: r_UNI_eye
+ 3300104: r_wristProxy_geo
+ 3300106: spineProxy_geo
+ 3300108: UNI_01_Lower_teethProxy
+ 3300110: UNI_01_TongueBaseProxy
+ 3300112: UNI_01_TongueTipProxy
+ 3300114: UNI_01_Upper_teethProxy
+ 4300000: l_UNI_eye
+ 4300002: r_UNI_eye
+ 4300004: UNI_01_TongueBaseProxy
+ 4300006: UNI_01_TongueTipProxy
+ 4300008: UNI_01_Lower_teethProxy
+ 4300010: jawProxy_geo
+ 4300012: headProxy_geo
+ 4300014: UNI_01_Upper_teethProxy
+ 4300016: neckProxy_geo
+ 4300018: r_pinkyProxy_03_geo
+ 4300020: r_pinkyProxy_02_geo
+ 4300022: r_pinkyProxy_01_geo
+ 4300024: r_ringProxy_03_geo
+ 4300026: r_ringProxy_02_geo
+ 4300028: r_ringProxy_01_geo
+ 4300030: r_middleProxy_03_geo
+ 4300032: r_middleProxy_02_geo
+ 4300034: r_middleProxy_01_geo
+ 4300036: r_indexProxy_03_geo
+ 4300038: r_indexProxy_02_geo
+ 4300040: r_indexProxy_01_geo
+ 4300042: r_thumbProxy_03_geo
+ 4300044: r_thumbProxy_02_geo
+ 4300046: r_thumbProxy_01_geo
+ 4300048: r_wristProxy_geo
+ 4300050: r_erbowProxy_geo
+ 4300052: r_shourderProxy_geo
+ 4300054: r_clavicleProxy_geo
+ 4300056: chestProxy_geo
+ 4300058: l_pinkyProxy_03_geo
+ 4300060: l_pinkyProxy_02_geo
+ 4300062: l_pinkyProxy_01_geo
+ 4300064: l_ringProxy_03_geo
+ 4300066: l_ringProxy_02_geo
+ 4300068: l_ringProxy_01_geo
+ 4300070: l_middleProxy_03_geo
+ 4300072: l_middleProxy_02_geo
+ 4300074: l_middleProxy_01_geo
+ 4300076: l_indexProxy_03_geo
+ 4300078: l_indexProxy_02_geo
+ 4300080: l_indexProxy_01_geo
+ 4300082: l_thumbProxy_03_geo
+ 4300084: l_thumbProxy_02_geo
+ 4300086: l_thumbProxy_01_geo
+ 4300088: l_wristProxy_geo
+ 4300090: l_erbowProxy_geo
+ 4300092: l_shourderProxy_geo
+ 4300094: l_clavicleProxy_geo
+ 4300096: spineProxy_geo
+ 4300098: r_ballProxy_geo
+ 4300100: r_ankleProxy_geo
+ 4300102: r_kneeProxy_geo
+ 4300104: r_hipProxy_geo
+ 4300106: pelvisProxy_geo
+ 4300108: l_ballProxy_geo
+ 4300110: l_ankleProxy_geo
+ 4300112: l_kneeProxy_geo
+ 4300114: l_hipProxy_geo
+ 7400000: PlayerWalk
+ 9500000: //RootNode
+ materials:
+ importMaterials: 0
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleCurves: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 0
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: PlayerWalk
+ takeName: _1_a_U1_M_P_WalkForward_NtrlFaceFwd__Fb_p0_No_0_PJ_3
+ firstFrame: 215.2
+ lastFrame: 244.9
+ wrapMode: 0
+ orientationOffsetY: 2.88
+ level: -0.06
+ cycleOffset: -0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 1
+ loopBlend: 1
+ loopBlendOrientation: 1
+ loopBlendPositionY: 1
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Hips
+ weight: 1
+ - path: Hips/LeftUpLeg
+ weight: 1
+ - path: Hips/LeftUpLeg/LeftLeg
+ weight: 1
+ - path: Hips/LeftUpLeg/LeftLeg/LeftFoot
+ weight: 1
+ - path: Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes
+ weight: 1
+ - path: Hips/RightUpLeg
+ weight: 1
+ - path: Hips/RightUpLeg/RightLeg
+ weight: 1
+ - path: Hips/RightUpLeg/RightLeg/RightFoot
+ weight: 1
+ - path: Hips/RightUpLeg/RightLeg/RightFoot/RightToes
+ weight: 1
+ - path: Hips/Spine
+ weight: 1
+ - path: Hips/Spine/Chest
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2
+ weight: 1
+ - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3
+ weight: 1
+ - path: Hips/Spine/Chest/Neck
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head/Jaw
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/JawEND
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/TongueBack
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/Jaw/TongueTip
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftCheek
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftEye
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head/LeftEyelidLower
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftEyelidUpper
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftInnerBrow
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftIOuterBrow
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftLipUpper
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/LeftNostril
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightCheek
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightEye
+ weight: 1
+ - path: Hips/Spine/Chest/Neck/Head/RightEyelidLower
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightEyelidUpper
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightInnerBrow
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightIOuterBrow
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightLipUpper
+ weight: 0
+ - path: Hips/Spine/Chest/Neck/Head/RightNostril
+ weight: 0
+ - path: Hips/Spine/Chest/RightShoulder
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2
+ weight: 1
+ - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 0.01
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 0
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 0
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 4
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human:
+ - boneName: Hips
+ humanName: Hips
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftUpLeg
+ humanName: LeftUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightUpLeg
+ humanName: RightUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftLeg
+ humanName: LeftLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightLeg
+ humanName: RightLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftFoot
+ humanName: LeftFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightFoot
+ humanName: RightFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Spine
+ humanName: Spine
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Chest
+ humanName: Chest
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Neck
+ humanName: Neck
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Head
+ humanName: Head
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftShoulder
+ humanName: LeftShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightShoulder
+ humanName: RightShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftArm
+ humanName: LeftUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightArm
+ humanName: RightUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftForeArm
+ humanName: LeftLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightForeArm
+ humanName: RightLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHand
+ humanName: LeftHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHand
+ humanName: RightHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftToes
+ humanName: LeftToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightToes
+ humanName: RightToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftEye
+ humanName: LeftEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightEye
+ humanName: RightEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Jaw
+ humanName: Jaw
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandThumb1
+ humanName: Left Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandThumb2
+ humanName: Left Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandThumb3
+ humanName: Left Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandIndex1
+ humanName: Left Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandIndex2
+ humanName: Left Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandIndex3
+ humanName: Left Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandMiddle1
+ humanName: Left Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandMiddle2
+ humanName: Left Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandMiddle3
+ humanName: Left Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandRing1
+ humanName: Left Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandRing2
+ humanName: Left Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandRing3
+ humanName: Left Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandPinky1
+ humanName: Left Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandPinky2
+ humanName: Left Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHandPinky3
+ humanName: Left Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandThumb1
+ humanName: Right Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandThumb2
+ humanName: Right Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandThumb3
+ humanName: Right Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandIndex1
+ humanName: Right Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandIndex2
+ humanName: Right Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandIndex3
+ humanName: Right Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandMiddle1
+ humanName: Right Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandMiddle2
+ humanName: Right Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandMiddle3
+ humanName: Right Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandRing1
+ humanName: Right Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandRing2
+ humanName: Right Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandRing3
+ humanName: Right Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandPinky1
+ humanName: Right Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandPinky2
+ humanName: Right Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHandPinky3
+ humanName: Right Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ skeleton:
+ - name: HumanoidWalk(Clone)
+ position: {x: 0, y: 0, z: 0}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Hips
+ position: {x: -0.000000016763806, y: 0.9555335, z: 0.07758622}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftUpLeg
+ position: {x: -0.0754495, y: -0.04566402, z: 0}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLeg
+ position: {x: -0.020550499, y: -0.40912998, z: -0.00071864796}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftFoot
+ position: {x: -0.0051529994, y: -0.4231559, z: -0.027648851}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftToes
+ position: {x: -0.007487, y: -0.0731673, z: 0.14542712}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightUpLeg
+ position: {x: 0.075449534, y: -0.04566399, z: 0}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLeg
+ position: {x: 0.020550467, y: -0.40913, z: -0.00071864796}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightFoot
+ position: {x: 0.0051529994, y: -0.4231559, z: -0.027648851}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightToes
+ position: {x: 0.007487, y: -0.0731673, z: 0.1454275}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Spine
+ position: {x: 2.646978e-25, y: 0.092263184, z: 0.015771331}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Chest
+ position: {x: -0, y: 0.16254029, z: -0.0016560555}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftShoulder
+ position: {x: -0.038285997, y: 0.2216225, z: -0.017063085}
+ rotation: {x: -0.030223321, y: -0.07990193, z: 0.14446756, w: 0.9858151}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftArm
+ position: {x: -0.10050205, y: 5.684342e-16, z: -3.330669e-18}
+ rotation: {x: 0.008133877, y: 0.0757869, z: -0.1321358, w: 0.98829675}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftForeArm
+ position: {x: -0.2540493, y: 5.684342e-16, z: 1.11022296e-17}
+ rotation: {x: 0.2781269, y: 0.03635174, z: -0.015607543, w: 0.9597293}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHand
+ position: {x: -0.24638927, y: 0, z: -1.9984014e-16}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandIndex1
+ position: {x: -0.0751258, y: -0.0078414045, z: 0.032652643}
+ rotation: {x: 0.06495643, y: 0.05091051, z: 0.058088716, w: 0.9948942}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandIndex2
+ position: {x: -0.03979728, y: 0.000049808405, z: 0.0011857504}
+ rotation: {x: -0.06737132, y: 0.015346782, z: 0.033307686, w: 0.9970538}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandIndex3
+ position: {x: -0.027968477, y: -0.000000006281225, z: -0.00000005171866}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandMiddle1
+ position: {x: -0.076023825, y: -0.0018851344, z: 0.010141229}
+ rotation: {x: -0.09939486, y: 0.04107085, z: 0.09351314, w: 0.9897925}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandMiddle2
+ position: {x: -0.044280436, y: 0.000004798874, z: -0.00042540013}
+ rotation: {x: -0.012435689, y: -0.0076595433, z: 0.031807605, w: 0.9993873}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandMiddle3
+ position: {x: -0.033964828, y: -0.000000012197929, z: 0.0000000037564827}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandPinky1
+ position: {x: -0.06565995, y: -0.007825106, z: -0.032251246}
+ rotation: {x: -0.28387696, y: 0.036568172, z: 0.087664604, w: 0.95414436}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandPinky2
+ position: {x: -0.030805448, y: -0.000030874573, z: -0.0014480775}
+ rotation: {x: 0.047048137, y: -0.021200087, z: 0.037495792, w: 0.9979635}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandPinky3
+ position: {x: -0.023064027, y: -0.0000064025808, z: 0.000000018332095}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandRing1
+ position: {x: -0.07030211, y: -0.0037453093, z: -0.011411792}
+ rotation: {x: -0.10562233, y: 0.056129266, z: 0.08703209, w: 0.988999}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandRing2
+ position: {x: -0.043135457, y: -0.000020882308, z: -0.0022351784}
+ rotation: {x: 0.018426064, y: -0.02561071, z: 0.033295766, w: 0.99894744}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandRing3
+ position: {x: -0.030835565, y: 7.7103546e-11, z: -0.00000001649327}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandThumb1
+ position: {x: -0.014231241, y: -0.012377825, z: 0.025531668}
+ rotation: {x: -0.14225604, y: -0.055378057, z: -0.12830889, w: 0.979915}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandThumb2
+ position: {x: -0.016374, y: -0.00529, z: 0.023491409}
+ rotation: {x: -0.02606398, y: 0.096689634, z: 0.003605904, w: 0.9949668}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHandThumb3
+ position: {x: -0.02546, y: -0.00764, z: 0.020833}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Neck
+ position: {x: -0, y: 0.2590093, z: -0.032413255}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Head
+ position: {x: -2.646978e-25, y: 0.08307038, z: 0.0113267815}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Jaw
+ position: {x: 1.7347234e-20, y: 0.0111267585, z: 0.010327543}
+ rotation: {x: 0.21924005, y: -0, z: -0, w: 0.975671}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: JawEND
+ position: {x: -1.7347234e-20, y: -0.04828876, z: 0.07185171}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLipCorner
+ position: {x: -0.032843262, y: -0.01657876, z: 0.066121764}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLipLower
+ position: {x: -0.014250817, y: -0.02168876, z: 0.08224063}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLipCorner
+ position: {x: 0.03284, y: -0.01657876, z: 0.066118784}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLipLower
+ position: {x: 0.014250817, y: -0.02168876, z: 0.082238786}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: TongueBack
+ position: {x: -1.7347234e-20, y: -0.022869369, z: 0.010095409}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: TongueTip
+ position: {x: -1.7347234e-20, y: -0.023278812, z: 0.03832271}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftCheek
+ position: {x: -0.054244027, y: 0.03370195, z: 0.0594304}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEye
+ position: {x: -0.020848233, y: 0.0825027, z: 0.055427432}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEyelidLower
+ position: {x: -0.035618957, y: 0.06507366, z: 0.07623474}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEyelidUpper
+ position: {x: -0.034406897, y: 0.10060814, z: 0.08020531}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftInnerBrow
+ position: {x: -0.012062691, y: 0.118765265, z: 0.093466826}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIOuterBrow
+ position: {x: -0.05503987, y: 0.11482529, z: 0.061777398}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLipUpper
+ position: {x: -0.014501322, y: -0.005111811, z: 0.09461884}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftNostril
+ position: {x: -0.0179, y: 0.026312828, z: 0.0908674}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightCheek
+ position: {x: 0.054239996, y: 0.033702828, z: 0.0594274}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEye
+ position: {x: 0.020849999, y: 0.08250283, z: 0.0554274}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEyelidLower
+ position: {x: 0.03562, y: 0.06507283, z: 0.0762374}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEyelidUpper
+ position: {x: 0.03441, y: 0.10061283, z: 0.08020739}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightInnerBrow
+ position: {x: 0.012062687, y: 0.118765265, z: 0.093466826}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIOuterBrow
+ position: {x: 0.055040002, y: 0.11482283, z: 0.061777398}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLipUpper
+ position: {x: 0.014501322, y: -0.0051071714, z: 0.094617404}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightNostril
+ position: {x: 0.0179, y: 0.026308905, z: 0.09087062}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightShoulder
+ position: {x: 0.038286015, y: 0.22162114, z: -0.017063085}
+ rotation: {x: 0.15105928, y: 0.98671633, z: -0.021163033, w: -0.055894263}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightArm
+ position: {x: -0.100501455, y: -0.0000024995522, z: -0.000000051557407}
+ rotation: {x: 0.12567478, y: 0.98442847, z: 0.062543266, w: 0.105805375}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightForeArm
+ position: {x: 0.25342825, y: 0.006011353, z: -0.016704524}
+ rotation: {x: 0.26110226, y: 0.01888748, z: -0.030674139, w: 0.96463877}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHand
+ position: {x: 0.2453737, y: 0.021641772, z: 0.005550465}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandIndex1
+ position: {x: 0.0747695, y: -0.0012430536, z: 0.034344498}
+ rotation: {x: 0.06961239, y: 0.11270627, z: -0.010377135, w: 0.99113256}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandIndex2
+ position: {x: 0.0370584, y: 0.00072612107, z: 0.014538894}
+ rotation: {x: -0.068798974, y: 0.021605203, z: 0.042188462, w: 0.99650395}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandIndex3
+ position: {x: 0.025225038, y: -0.0049664653, z: 0.011012146}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandMiddle1
+ position: {x: 0.075647645, y: 0.0047914027, z: 0.011853182}
+ rotation: {x: -0.092045546, y: 0.020684198, z: -0.060492296, w: 0.9937004}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandMiddle2
+ position: {x: 0.043809064, y: 0.00019418815, z: 0.006454936}
+ rotation: {x: -0.016959926, y: -0.04367115, z: 0.0809238, w: 0.99561864}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandMiddle3
+ position: {x: 0.03307247, y: -0.007547537, z: 0.0016898462}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandPinky1
+ position: {x: 0.06680334, y: -0.0019941088, z: -0.030756146}
+ rotation: {x: -0.28647894, y: -0.21416986, z: 0.021083327, w: 0.9336042}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandPinky2
+ position: {x: 0.028530842, y: -0.001397143, z: -0.011623796}
+ rotation: {x: 0.029356524, y: 0.0005622971, z: -0.062125385, w: 0.99763644}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandPinky3
+ position: {x: 0.02142686, y: -0.00055350893, z: -0.008516608}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandRing1
+ position: {x: 0.070598476, y: 0.0024570965, z: -0.009821458}
+ rotation: {x: -0.10453735, y: -0.1014307, z: -0.025803583, w: 0.9889985}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandRing2
+ position: {x: 0.042887185, y: -0.0013753821, z: -0.004945858}
+ rotation: {x: 0.020977763, y: -0.021642664, z: 0.07535203, w: 0.9967014}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandRing3
+ position: {x: 0.029500604, y: -0.0076929354, z: -0.004622256}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandThumb1
+ position: {x: 0.014684916, y: -0.011104942, z: 0.025858095}
+ rotation: {x: -0.09941147, y: 0.023245553, z: 0.13084193, w: 0.98613256}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandThumb2
+ position: {x: 0.016374, y: -0.00529, z: 0.02349136}
+ rotation: {x: -0.02606267, y: -0.09668537, z: -0.0036059343, w: 0.9949672}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHandThumb3
+ position: {x: 0.02546, y: -0.00764, z: 0.020833}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: e8914d097ece7cc48a83d5fccd4098c0,
+ type: 3}
+ animationType: 3
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators.meta
new file mode 100644
index 00000000..c0705156
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 828adc94ca797e0478d55adc06a37b90
+folderAsset: yes
+timeCreated: 1456400888
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment.meta
new file mode 100644
index 00000000..20ab56e2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 0de22a487441c7e4182958434af0107c
+folderAsset: yes
+timeCreated: 1463486067
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/BirdGlassesCutscene.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/BirdGlassesCutscene.controller
new file mode 100644
index 00000000..cde0abfe
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/BirdGlassesCutscene.controller
@@ -0,0 +1,124 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: BirdGlassesCutscene
+ serializedVersion: 5
+ m_AnimatorParameters:
+ - m_Name: FlyAway
+ m_Type: 9
+ m_DefaultFloat: 0
+ m_DefaultInt: 0
+ m_DefaultBool: 0
+ m_Controller: {fileID: 9100000}
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 110752920}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1101 &110174480
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions:
+ - m_ConditionMode: 1
+ m_ConditionEvent: FlyAway
+ m_EventTreshold: 0
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110209530}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.25
+ m_TransitionOffset: 0
+ m_ExitTime: 0.9375
+ m_HasExitTime: 0
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1102 &110209530
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: FlyAway
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400002, guid: 27dc1f41f9a3fad46a08a615f1730ad1, type: 3}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1102 &110299242
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Idle
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions:
+ - {fileID: 110174480}
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 27dc1f41f9a3fad46a08a615f1730ad1, type: 3}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &110752920
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 110299242}
+ m_Position: {x: 396, y: 0, z: 0}
+ - serializedVersion: 1
+ m_State: {fileID: 110209530}
+ m_Position: {x: 396, y: 120, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 50, y: 120, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 110299242}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/BirdGlassesCutscene.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/BirdGlassesCutscene.controller.meta
new file mode 100644
index 00000000..71ddbac3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/BirdGlassesCutscene.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3241a35829c375043aa03ab9f22801af
+timeCreated: 1460550041
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/DNA.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/DNA.controller
new file mode 100644
index 00000000..0d4e8011
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/DNA.controller
@@ -0,0 +1,67 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: DNA
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 1107000010838457762}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &1102000010644142232
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomDNA
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: dfffd446e9b3ccf409dab89543c45918, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &1107000010838457762
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 1102000010644142232}
+ m_Position: {x: 200, y: 0, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 50, y: 120, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 1102000010644142232}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/DNA.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/DNA.controller.meta
new file mode 100644
index 00000000..f435f6c4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/DNA.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6ca591a0a69af17479851be4d3528e1d
+timeCreated: 1473430589
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/FishSignNeon.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/FishSignNeon.controller
new file mode 100644
index 00000000..dcfe9429
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/FishSignNeon.controller
@@ -0,0 +1,67 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: FishSignNeon
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 110757680}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &110223802
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Market_FishSignNeon
+ m_Speed: 0.2
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 27918b0cb742a114eac6eb4197f13a08, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &110757680
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 110223802}
+ m_Position: {x: 200, y: 0, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 50, y: 120, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 110223802}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/FishSignNeon.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/FishSignNeon.controller.meta
new file mode 100644
index 00000000..869c78cb
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/FishSignNeon.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 937a26c581812c44988068bba4f17c7a
+timeCreated: 1461772443
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/Holograms.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/Holograms.controller
new file mode 100644
index 00000000..19513e90
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/Holograms.controller
@@ -0,0 +1,67 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Holograms
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 1107000010657721946}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &1102000012279515240
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomInfoBoard
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 1200044f35df5ec43a9f8b62a56e91fa, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &1107000010657721946
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 1102000012279515240}
+ m_Position: {x: 200, y: 0, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 50, y: 120, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 1102000012279515240}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/Holograms.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/Holograms.controller.meta
new file mode 100644
index 00000000..d9c7666d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/Holograms.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 79d8f088d66c09c4e83a2e94de525501
+timeCreated: 1473261634
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/InfoBoard 1.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/InfoBoard 1.controller
new file mode 100644
index 00000000..385a2ad4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/InfoBoard 1.controller
@@ -0,0 +1,67 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: InfoBoard 1
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 1107000010508845906}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &1102000011423613070
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomInfoBoard
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 1200044f35df5ec43a9f8b62a56e91fa, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &1107000010508845906
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 1102000011423613070}
+ m_Position: {x: 200, y: 0, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 50, y: 120, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 1102000011423613070}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/InfoBoard 1.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/InfoBoard 1.controller.meta
new file mode 100644
index 00000000..7c07843f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/InfoBoard 1.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 20628f9b3e1cbd64a9816e3a913f10ac
+timeCreated: 1473339802
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/Logo.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/Logo.controller
new file mode 100644
index 00000000..71aa4ceb
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/Logo.controller
@@ -0,0 +1,67 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Logo
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 1107000010145701638}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &1102000012677523290
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomCompanyLogo
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 34e46584c3c7af24f9a03d0449abfddb, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &1107000010145701638
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 1102000012677523290}
+ m_Position: {x: 200, y: 0, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 50, y: 120, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 1102000012677523290}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/Logo.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/Logo.controller.meta
new file mode 100644
index 00000000..82e3f178
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/Logo.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b09b731655eaf0b4f8ef1cbc550f118b
+timeCreated: 1473417723
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/MarketCoffeeSign.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/MarketCoffeeSign.controller
new file mode 100644
index 00000000..7647bd88
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/MarketCoffeeSign.controller
@@ -0,0 +1,67 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketCoffeeSign
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 110753542}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &110297976
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Market_CoffeeSign
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: e501ab80b4f0d414c9543265a2f2c655, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &110753542
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 110297976}
+ m_Position: {x: 72, y: 216, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 72, y: 108, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 110297976}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/MarketCoffeeSign.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/MarketCoffeeSign.controller.meta
new file mode 100644
index 00000000..554a868b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/MarketCoffeeSign.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 95cb2527fc9701e45a7576eb6da8c962
+timeCreated: 1461842021
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityCamera.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityCamera.controller
new file mode 100644
index 00000000..ae5ddcc1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityCamera.controller
@@ -0,0 +1,144 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityCamera
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 110716864}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &110206684
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecuirtyCameraIdle
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 3531f9e198549554e92afa77a6a17533, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1102 &110254888
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecuirtyCameraIdle
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 3531f9e198549554e92afa77a6a17533, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &110716864
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 110206684}
+ m_Position: {x: -12, y: 204, z: 0}
+ - serializedVersion: 1
+ m_State: {fileID: 1102000012630131306}
+ m_Position: {x: 240, y: 192, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions:
+ - {fileID: 110973768}
+ - {fileID: 1109000011094188438}
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 72, y: 96, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 1102000012630131306}
+--- !u!1109 &110973768
+AnimatorTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions: []
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110206684}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 1
+--- !u!1102 &1102000012630131306
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecuirtyCameraIdle02
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: ba6fedde29286cc48a43dfdbf5ce6bc5, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1109 &1109000011094188438
+AnimatorTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions: []
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 1102000012630131306}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 1
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityCamera.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityCamera.controller.meta
new file mode 100644
index 00000000..e4c16945
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityCamera.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 88ff506200557174fa0cec5f6f63094d
+timeCreated: 1461684042
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityCameraMarket.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityCameraMarket.controller
new file mode 100644
index 00000000..3e2f6cbc
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityCameraMarket.controller
@@ -0,0 +1,144 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityCameraMarket
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 110716864}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &110206684
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecuirtyCameraIdle
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 3531f9e198549554e92afa77a6a17533, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1102 &110254888
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecuirtyCameraIdle
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 3531f9e198549554e92afa77a6a17533, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &110716864
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 110206684}
+ m_Position: {x: -12, y: 204, z: 0}
+ - serializedVersion: 1
+ m_State: {fileID: 1102000012630131306}
+ m_Position: {x: 240, y: 192, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions:
+ - {fileID: 110973768}
+ - {fileID: 1109000011094188438}
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 72, y: 96, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 110206684}
+--- !u!1109 &110973768
+AnimatorTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions: []
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110206684}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 1
+--- !u!1102 &1102000012630131306
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecuirtyCameraIdle02
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: ba6fedde29286cc48a43dfdbf5ce6bc5, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1109 &1109000011094188438
+AnimatorTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions: []
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 1102000012630131306}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 1
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityCameraMarket.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityCameraMarket.controller.meta
new file mode 100644
index 00000000..cd246ff2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityCameraMarket.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3f033d1d677ec21438f98252d9f13d73
+timeCreated: 1461684042
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityRoomScreen.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityRoomScreen.controller
new file mode 100644
index 00000000..823ab3fa
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityRoomScreen.controller
@@ -0,0 +1,67 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomScreen
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 110783562}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &110214620
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Screen
+ m_Speed: 0.75
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: c74cd37dcaaf102469a7cedb7dc19a38, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &110783562
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 110214620}
+ m_Position: {x: 204, y: 0, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 50, y: 120, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 110214620}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityRoomScreen.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityRoomScreen.controller.meta
new file mode 100644
index 00000000..759cacbd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Environment/SecurityRoomScreen.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b87f7f780fdf6e942a14e697e11ac26d
+timeCreated: 1462790459
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC.meta
new file mode 100644
index 00000000..f44b88de
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 1c73e77b1eae425449203185d3751edf
+folderAsset: yes
+timeCreated: 1463486077
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/CoffeeBot.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/CoffeeBot.controller
new file mode 100644
index 00000000..8286c8f9
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/CoffeeBot.controller
@@ -0,0 +1,146 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: CoffeeBot
+ serializedVersion: 5
+ m_AnimatorParameters:
+ - m_Name: MakeCoffee
+ m_Type: 9
+ m_DefaultFloat: 0
+ m_DefaultInt: 0
+ m_DefaultBool: 0
+ m_Controller: {fileID: 9100000}
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 110787146}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1101 &110131190
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions: []
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110259516}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.25
+ m_TransitionOffset: 0
+ m_ExitTime: 0.9558824
+ m_HasExitTime: 1
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1101 &110195250
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions:
+ - m_ConditionMode: 1
+ m_ConditionEvent: MakeCoffee
+ m_EventTreshold: 0
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110259512}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.25
+ m_TransitionOffset: 0
+ m_ExitTime: 0.875
+ m_HasExitTime: 0
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1102 &110259512
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MakeCoffee
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions:
+ - {fileID: 110131190}
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: bb7fa01900e018b4cba3b01cc242f400, type: 2}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1102 &110259516
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Idle
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions:
+ - {fileID: 110195250}
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400002, guid: 9b598a6cc027c434b8d1d759d3612738, type: 3}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &110787146
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 110259516}
+ m_Position: {x: 372, y: 0, z: 0}
+ - serializedVersion: 1
+ m_State: {fileID: 110259512}
+ m_Position: {x: 372, y: 156, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 50, y: 120, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 110259516}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/CoffeeBot.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/CoffeeBot.controller.meta
new file mode 100644
index 00000000..91b85cc9
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/CoffeeBot.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: a6db9721009fa404aba25b86c0bc6072
+timeCreated: 1460461364
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Customer.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Customer.controller
new file mode 100644
index 00000000..bcc0511e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Customer.controller
@@ -0,0 +1,67 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Customer
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 110750992}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &110282158
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Take 001
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 33113e3691f1fc842a04491169555506, type: 3}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &110750992
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 110282158}
+ m_Position: {x: 200, y: 0, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 50, y: 120, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 110282158}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Customer.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Customer.controller.meta
new file mode 100644
index 00000000..dbd641fc
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Customer.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 2238c85918cd97c45a8b66670de76d63
+timeCreated: 1461760949
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/FruitVendor.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/FruitVendor.controller
new file mode 100644
index 00000000..832ba155
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/FruitVendor.controller
@@ -0,0 +1,67 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: FruitVendor
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 110700926}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &110293844
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Take 001
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: d4e3dafe974b62f42ae5f71dbcee2d39, type: 3}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &110700926
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 110293844}
+ m_Position: {x: 200, y: 0, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 50, y: 120, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 110293844}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/FruitVendor.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/FruitVendor.controller.meta
new file mode 100644
index 00000000..15a22150
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/FruitVendor.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 0bdfa04ac50fe4f44bfec8a0e096e7e8
+timeCreated: 1461760878
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Guard.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Guard.controller
new file mode 100644
index 00000000..11958578
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Guard.controller
@@ -0,0 +1,67 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Guard
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 110717454}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &110228108
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Take 001
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 9188a43929f6dde4e84a96c5b7224c3b, type: 3}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &110717454
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 110228108}
+ m_Position: {x: 200, y: 0, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 50, y: 120, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 110228108}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Guard.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Guard.controller.meta
new file mode 100644
index 00000000..7cb57a79
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Guard.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ae4877564f01ced49aafdab53e4e0c9d
+timeCreated: 1461577106
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/SecondHandSalesman.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/SecondHandSalesman.controller
new file mode 100644
index 00000000..5d2f342d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/SecondHandSalesman.controller
@@ -0,0 +1,67 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecondHandSalesman
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 110716212}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &110204972
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Take 001
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 60100f1c1f843e446a3ffe008e517e8c, type: 3}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &110716212
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 110204972}
+ m_Position: {x: 200, y: 0, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 50, y: 120, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 110204972}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/SecondHandSalesman.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/SecondHandSalesman.controller.meta
new file mode 100644
index 00000000..4c99c12e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/SecondHandSalesman.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7a1d5c6243235744c85ee25e5ea03aa4
+timeCreated: 1461577638
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Sharkman.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Sharkman.controller
new file mode 100644
index 00000000..93bd1b42
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Sharkman.controller
@@ -0,0 +1,67 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Sharkman
+ serializedVersion: 5
+ m_AnimatorParameters: []
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 110765906}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!1102 &110277418
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Idle
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions: []
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 2351c32753509ec4f8e7908b04f78edf, type: 3}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &110765906
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 110277418}
+ m_Position: {x: 200, y: 0, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions: []
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 50, y: 20, z: 0}
+ m_EntryPosition: {x: 50, y: 120, z: 0}
+ m_ExitPosition: {x: 800, y: 120, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 110277418}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Sharkman.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Sharkman.controller.meta
new file mode 100644
index 00000000..55d94d92
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/NPC/Sharkman.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1f65f9802e086de4588d52f0ddbbc1ed
+timeCreated: 1461577295
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Player.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Player.meta
new file mode 100644
index 00000000..fa221679
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Player.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: afbcb03d7d401644392745d8ac315367
+folderAsset: yes
+timeCreated: 1463486106
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Player/ClickToMove.controller b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Player/ClickToMove.controller
new file mode 100644
index 00000000..e82e1c91
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Player/ClickToMove.controller
@@ -0,0 +1,603 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: ClickToMove
+ serializedVersion: 5
+ m_AnimatorParameters:
+ - m_Name: Speed
+ m_Type: 1
+ m_DefaultFloat: 0
+ m_DefaultInt: 0
+ m_DefaultBool: 0
+ m_Controller: {fileID: 9100000}
+ - m_Name: HighTake
+ m_Type: 9
+ m_DefaultFloat: 0
+ m_DefaultInt: 0
+ m_DefaultBool: 0
+ m_Controller: {fileID: 9100000}
+ - m_Name: MedTake
+ m_Type: 9
+ m_DefaultFloat: 0
+ m_DefaultInt: 0
+ m_DefaultBool: 0
+ m_Controller: {fileID: 9100000}
+ - m_Name: LowTake
+ m_Type: 9
+ m_DefaultFloat: 0
+ m_DefaultInt: 0
+ m_DefaultBool: 0
+ m_Controller: {fileID: 9100000}
+ - m_Name: AttemptTake
+ m_Type: 9
+ m_DefaultFloat: 0
+ m_DefaultInt: 0
+ m_DefaultBool: 0
+ m_Controller: {fileID: 9100000}
+ - m_Name: EquipGlasses
+ m_Type: 9
+ m_DefaultFloat: 0
+ m_DefaultInt: 0
+ m_DefaultBool: 0
+ m_Controller: {fileID: 9100000}
+ m_AnimatorLayers:
+ - serializedVersion: 5
+ m_Name: Base Layer
+ m_StateMachine: {fileID: 110753918}
+ m_Mask: {fileID: 0}
+ m_Motions: []
+ m_Behaviours: []
+ m_BlendingMode: 0
+ m_SyncedLayerIndex: -1
+ m_DefaultWeight: 0
+ m_IKPass: 0
+ m_SyncedLayerAffectsTiming: 0
+ m_Controller: {fileID: 9100000}
+--- !u!206 &20618794
+BlendTree:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: WalkingBlendTree
+ m_Childs:
+ - serializedVersion: 2
+ m_Motion: {fileID: 7400000, guid: dffa50cfe77e0434bbfa71245b3dd529, type: 3}
+ m_Threshold: 0
+ m_Position: {x: 0, y: 0}
+ m_TimeScale: 1
+ m_CycleOffset: 0
+ m_DirectBlendParameter: Speed
+ m_Mirror: 0
+ - serializedVersion: 2
+ m_Motion: {fileID: 7400000, guid: b1a5e04ae51004842aba06704a6c2903, type: 3}
+ m_Threshold: 1.5584016
+ m_Position: {x: 0, y: 0}
+ m_TimeScale: 1
+ m_CycleOffset: 0
+ m_DirectBlendParameter: Speed
+ m_Mirror: 0
+ - serializedVersion: 2
+ m_Motion: {fileID: 7400000, guid: 1cb8ed3cbba15f0479fbae54e0a963df, type: 3}
+ m_Threshold: 5.6623173
+ m_Position: {x: 0, y: 0}
+ m_TimeScale: 1
+ m_CycleOffset: 0
+ m_DirectBlendParameter: Speed
+ m_Mirror: 0
+ m_BlendParameter: Speed
+ m_BlendParameterY: Blend
+ m_MinThreshold: 0
+ m_MaxThreshold: 5.6623173
+ m_UseAutomaticThresholds: 0
+ m_NormalizedBlendValues: 0
+ m_BlendType: 0
+--- !u!1101 &110100890
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions: []
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110255554}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.1
+ m_TransitionOffset: 0
+ m_ExitTime: 0.9
+ m_HasExitTime: 1
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1101 &110137618
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions:
+ - m_ConditionMode: 4
+ m_ConditionEvent: Speed
+ m_EventTreshold: 0.1
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110252330}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.25
+ m_TransitionOffset: 0
+ m_ExitTime: 0.79310346
+ m_HasExitTime: 0
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1101 &110138376
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions: []
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110255554}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.25
+ m_TransitionOffset: 0
+ m_ExitTime: 0.88281256
+ m_HasExitTime: 1
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1101 &110138386
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions:
+ - m_ConditionMode: 1
+ m_ConditionEvent: AttemptTake
+ m_EventTreshold: 0
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110212934}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.1
+ m_TransitionOffset: 0
+ m_ExitTime: 0.9
+ m_HasExitTime: 0
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1101 &110146462
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions:
+ - m_ConditionMode: 3
+ m_ConditionEvent: Speed
+ m_EventTreshold: 0.1
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110255554}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.25
+ m_TransitionOffset: 0
+ m_ExitTime: 0.9556213
+ m_HasExitTime: 0
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1101 &110148296
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions: []
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110255554}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.1
+ m_TransitionOffset: 0
+ m_ExitTime: 0.9
+ m_HasExitTime: 1
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1101 &110156206
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions:
+ - m_ConditionMode: 1
+ m_ConditionEvent: MedTake
+ m_EventTreshold: 0
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110285472}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.1
+ m_TransitionOffset: 0
+ m_ExitTime: 0.9
+ m_HasExitTime: 0
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1101 &110162064
+AnimatorStateTransition:
+ m_ObjectHideFlags: 3
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions: []
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110255554}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.1
+ m_TransitionOffset: 0
+ m_ExitTime: 0.9
+ m_HasExitTime: 1
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1101 &110167272
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions: []
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110255554}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.1
+ m_TransitionOffset: 0
+ m_ExitTime: 0.9
+ m_HasExitTime: 1
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1101 &110176140
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions:
+ - m_ConditionMode: 1
+ m_ConditionEvent: HighTake
+ m_EventTreshold: 0
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110254898}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.1
+ m_TransitionOffset: 0
+ m_ExitTime: 0.9
+ m_HasExitTime: 0
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1101 &110185966
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions:
+ - m_ConditionMode: 1
+ m_ConditionEvent: LowTake
+ m_EventTreshold: 0
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110272464}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.1
+ m_TransitionOffset: 0
+ m_ExitTime: 0.9
+ m_HasExitTime: 0
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1102 &110212934
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 3
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: PlayerTakeItemAttempt
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions:
+ - {fileID: 110138376}
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: e4bb4f13e18282f42af56940bd27885c, type: 3}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1102 &110252330
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: PlayerIdle
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions:
+ - {fileID: 110146462}
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: c61460273d36d0b4e936b68977241e58, type: 3}
+ m_Tag: Locomotion
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1102 &110254898
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: PlayerTakeItemHigh
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions:
+ - {fileID: 110167272}
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400004, guid: 836db2ed51e808246958923579aa47e0, type: 3}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1102 &110255554
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Walking
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions:
+ - {fileID: 110137618}
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 20618794}
+ m_Tag: Locomotion
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1102 &110272464
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: PlayerTakeItemLow
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions:
+ - {fileID: 1101000012303306408}
+ - {fileID: 110148296}
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 836db2ed51e808246958923579aa47e0, type: 3}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1102 &110285472
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: PlayerTakeItemMedium
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions:
+ - {fileID: 110100890}
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400002, guid: 836db2ed51e808246958923579aa47e0, type: 3}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
+--- !u!1107 &110753918
+AnimatorStateMachine:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Base Layer
+ m_ChildStates:
+ - serializedVersion: 1
+ m_State: {fileID: 110255554}
+ m_Position: {x: 240, y: 60, z: 0}
+ - serializedVersion: 1
+ m_State: {fileID: 110254898}
+ m_Position: {x: 516, y: -12, z: 0}
+ - serializedVersion: 1
+ m_State: {fileID: 110285472}
+ m_Position: {x: 516, y: 60, z: 0}
+ - serializedVersion: 1
+ m_State: {fileID: 110272464}
+ m_Position: {x: 516, y: 132, z: 0}
+ - serializedVersion: 1
+ m_State: {fileID: 110252330}
+ m_Position: {x: 240, y: -84, z: 0}
+ - serializedVersion: 1
+ m_State: {fileID: 110212934}
+ m_Position: {x: 516, y: -84, z: 0}
+ - serializedVersion: 1
+ m_State: {fileID: 1102000011072620152}
+ m_Position: {x: 240, y: 132, z: 0}
+ m_ChildStateMachines: []
+ m_AnyStateTransitions:
+ - {fileID: 110176140}
+ - {fileID: 110156206}
+ - {fileID: 110185966}
+ - {fileID: 110138386}
+ m_EntryTransitions: []
+ m_StateMachineTransitions: {}
+ m_StateMachineBehaviours: []
+ m_AnyStatePosition: {x: 792, y: 60, z: 0}
+ m_EntryPosition: {x: 36, y: 60, z: 0}
+ m_ExitPosition: {x: 36, y: -12, z: 0}
+ m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+ m_DefaultState: {fileID: 110255554}
+--- !u!1101 &1101000011737577272
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions: []
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 110255554}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.25
+ m_TransitionOffset: 0
+ m_ExitTime: 0.93697476
+ m_HasExitTime: 1
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1101 &1101000012303306408
+AnimatorStateTransition:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name:
+ m_Conditions:
+ - m_ConditionMode: 1
+ m_ConditionEvent: EquipGlasses
+ m_EventTreshold: 0
+ m_DstStateMachine: {fileID: 0}
+ m_DstState: {fileID: 1102000011072620152}
+ m_Solo: 0
+ m_Mute: 0
+ m_IsExit: 0
+ serializedVersion: 3
+ m_TransitionDuration: 0.24999976
+ m_TransitionOffset: 0.27275577
+ m_ExitTime: 0.6253076
+ m_HasExitTime: 1
+ m_HasFixedDuration: 1
+ m_InterruptionSource: 0
+ m_OrderedInterruption: 1
+ m_CanTransitionToSelf: 1
+--- !u!1102 &1102000011072620152
+AnimatorState:
+ serializedVersion: 5
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: PlayerPutGlassesOn
+ m_Speed: 1
+ m_CycleOffset: 0
+ m_Transitions:
+ - {fileID: 1101000011737577272}
+ m_StateMachineBehaviours: []
+ m_Position: {x: 50, y: 50, z: 0}
+ m_IKOnFeet: 0
+ m_WriteDefaultValues: 1
+ m_Mirror: 0
+ m_SpeedParameterActive: 0
+ m_MirrorParameterActive: 0
+ m_CycleOffsetParameterActive: 0
+ m_Motion: {fileID: 7400000, guid: 335e9552995619942b842651295ac977, type: 3}
+ m_Tag:
+ m_SpeedParameter:
+ m_MirrorParameter:
+ m_CycleOffsetParameter:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Player/ClickToMove.controller.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Player/ClickToMove.controller.meta
new file mode 100644
index 00000000..e46ea7c6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Animators/Player/ClickToMove.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f8a8e58634e93d1458658bdb4b6ba079
+timeCreated: 1456400982
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips.meta
new file mode 100644
index 00000000..00330e59
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 6c043ba44989bb3458097bd68882eff4
+folderAsset: yes
+timeCreated: 1460982561
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient.meta
new file mode 100644
index 00000000..d518f55d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 1474218b74478c44c810b094eab0dc93
+folderAsset: yes
+timeCreated: 1460982574
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient/MarketAmbient.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient/MarketAmbient.ogg
new file mode 100644
index 00000000..2cb78685
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient/MarketAmbient.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient/MarketAmbient.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient/MarketAmbient.ogg.meta
new file mode 100644
index 00000000..6fc6d5ec
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient/MarketAmbient.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 2133d76a50380f84b8c2275c2f348c29
+timeCreated: 1461159861
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient/SecurityRoomAmbient.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient/SecurityRoomAmbient.ogg
new file mode 100644
index 00000000..a9335f9a
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient/SecurityRoomAmbient.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient/SecurityRoomAmbient.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient/SecurityRoomAmbient.ogg.meta
new file mode 100644
index 00000000..f8ab53e3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Ambient/SecurityRoomAmbient.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 19e9160e69a211246b8d3e4de36e96ec
+timeCreated: 1461238447
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX.meta
new file mode 100644
index 00000000..088bffc7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 570180ff52472ab428fc0c188bdb2068
+folderAsset: yes
+timeCreated: 1460982586
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/AccessDenied.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/AccessDenied.ogg
new file mode 100644
index 00000000..ddc2f904
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/AccessDenied.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/AccessDenied.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/AccessDenied.ogg.meta
new file mode 100644
index 00000000..a4f47d27
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/AccessDenied.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 20b36408ef0bfce45b7d4010cc76e7de
+timeCreated: 1462454522
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/BirdGlassesCutscene.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/BirdGlassesCutscene.ogg
new file mode 100644
index 00000000..494f877f
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/BirdGlassesCutscene.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/BirdGlassesCutscene.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/BirdGlassesCutscene.ogg.meta
new file mode 100644
index 00000000..e255c427
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/BirdGlassesCutscene.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: e52b46c6d5c1a1f4c925e2a0dc209330
+timeCreated: 1461823372
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/DoorSlide.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/DoorSlide.ogg
new file mode 100644
index 00000000..f49cc789
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/DoorSlide.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/DoorSlide.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/DoorSlide.ogg.meta
new file mode 100644
index 00000000..90d6943a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/DoorSlide.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: ebdaadc1993914f48991efbeda5ed08e
+timeCreated: 1462529251
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/Pickup.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/Pickup.ogg
new file mode 100644
index 00000000..ec8341ab
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/Pickup.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/Pickup.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/Pickup.ogg.meta
new file mode 100644
index 00000000..429d1c1d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/Pickup.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 154cdb10bf6550c4e9ff4038ff2a660d
+timeCreated: 1461835133
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/PowerDownLaserGrid.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/PowerDownLaserGrid.ogg
new file mode 100644
index 00000000..f5de0286
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/PowerDownLaserGrid.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/PowerDownLaserGrid.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/PowerDownLaserGrid.ogg.meta
new file mode 100644
index 00000000..5604f50b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/PowerDownLaserGrid.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 28b6ecbb67d75a743be188695bc54261
+timeCreated: 1462452094
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/YouWin.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/YouWin.ogg
new file mode 100644
index 00000000..ac1f6a31
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/YouWin.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/YouWin.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/YouWin.ogg.meta
new file mode 100644
index 00000000..36fa0ce5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/FX/YouWin.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 96b6650a22f2cb341a4bbb635f9af634
+timeCreated: 1462454522
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Music.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Music.meta
new file mode 100644
index 00000000..21ef5696
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Music.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 9949db208735f9c48bbefb34c8aa38ca
+folderAsset: yes
+timeCreated: 1461159874
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Music/BackgroundMusic.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Music/BackgroundMusic.ogg
new file mode 100644
index 00000000..da91d2e1
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Music/BackgroundMusic.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Music/BackgroundMusic.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Music/BackgroundMusic.ogg.meta
new file mode 100644
index 00000000..296f98ad
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/Music/BackgroundMusic.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 460cbf252686b5f40b1ec18039f70b59
+timeCreated: 1461156259
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver.meta
new file mode 100644
index 00000000..25365a11
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: e35fbf95ea606df418606e84909a74e8
+folderAsset: yes
+timeCreated: 1462788652
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot.meta
new file mode 100644
index 00000000..16e11f65
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 8bbad8814fd10564f99b09a2f05f6c0d
+folderAsset: yes
+timeCreated: 1462788798
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot/CoffeeBotCoffeeOnlyACoin.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot/CoffeeBotCoffeeOnlyACoin.ogg
new file mode 100644
index 00000000..a9f5c98f
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot/CoffeeBotCoffeeOnlyACoin.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot/CoffeeBotCoffeeOnlyACoin.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot/CoffeeBotCoffeeOnlyACoin.ogg.meta
new file mode 100644
index 00000000..0724396c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot/CoffeeBotCoffeeOnlyACoin.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 9fecb71afa4ed49c89d01dffd5c600a7
+timeCreated: 1462544423
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot/CoffeeBotHeresYourCoffee.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot/CoffeeBotHeresYourCoffee.ogg
new file mode 100644
index 00000000..9482de58
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot/CoffeeBotHeresYourCoffee.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot/CoffeeBotHeresYourCoffee.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot/CoffeeBotHeresYourCoffee.ogg.meta
new file mode 100644
index 00000000..866b5ba3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/CoffeeBot/CoffeeBotHeresYourCoffee.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: ba1f7288a86b84b2d8629e05dfd3c48c
+timeCreated: 1462544424
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard.meta
new file mode 100644
index 00000000..5ff284a3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 085de8c632a41fb49af79f18517bdc6b
+folderAsset: yes
+timeCreated: 1462788778
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGetLost.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGetLost.ogg
new file mode 100644
index 00000000..c8083ca8
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGetLost.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGetLost.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGetLost.ogg.meta
new file mode 100644
index 00000000..4db992f3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGetLost.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: d18f058921ed94b17847871c11f8c9da
+timeCreated: 1462547287
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGoGetCoffee.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGoGetCoffee.ogg
new file mode 100644
index 00000000..8bb338a2
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGoGetCoffee.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGoGetCoffee.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGoGetCoffee.ogg.meta
new file mode 100644
index 00000000..bc209b6c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGoGetCoffee.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 707d533b18a364142897701cc3b4027e
+timeCreated: 1462547287
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGoThrough.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGoThrough.ogg
new file mode 100644
index 00000000..0a8090a3
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGoThrough.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGoThrough.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGoThrough.ogg.meta
new file mode 100644
index 00000000..292b5331
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Guard/GuardGoThrough.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: d786774c25f284b79bcda64a1571c979
+timeCreated: 1462547287
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player.meta
new file mode 100644
index 00000000..5246e407
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 0e78d6dd3d606ae4d88e3477ea256d5b
+folderAsset: yes
+timeCreated: 1462788750
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerBirdIsGone.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerBirdIsGone.ogg
new file mode 100644
index 00000000..bb0318be
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerBirdIsGone.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerBirdIsGone.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerBirdIsGone.ogg.meta
new file mode 100644
index 00000000..7bd8e12a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerBirdIsGone.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 0bcb52a0dc8524b40a4a97ccc1e4cef6
+timeCreated: 1462544422
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerBirdKnockedSign.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerBirdKnockedSign.ogg
new file mode 100644
index 00000000..073e758c
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerBirdKnockedSign.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerBirdKnockedSign.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerBirdKnockedSign.ogg.meta
new file mode 100644
index 00000000..4b7cbc9e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerBirdKnockedSign.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 4f2c0eb89fe584a2f81b5b903cfb81f4
+timeCreated: 1462544423
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerDoNotWantMoreFish.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerDoNotWantMoreFish.ogg
new file mode 100644
index 00000000..f257223f
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerDoNotWantMoreFish.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerDoNotWantMoreFish.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerDoNotWantMoreFish.ogg.meta
new file mode 100644
index 00000000..57680741
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerDoNotWantMoreFish.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: d27de579b328a44a2a102d519fcdd38b
+timeCreated: 1462544424
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerNoMoreCoins.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerNoMoreCoins.ogg
new file mode 100644
index 00000000..4df0320b
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerNoMoreCoins.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerNoMoreCoins.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerNoMoreCoins.ogg.meta
new file mode 100644
index 00000000..199d6561
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerNoMoreCoins.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: ae424b24e594048429a4a2bed2eeb897
+timeCreated: 1462544423
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpCoin.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpCoin.ogg
new file mode 100644
index 00000000..de5d5b6c
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpCoin.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpCoin.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpCoin.ogg.meta
new file mode 100644
index 00000000..51a6c6d6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpCoin.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: e1947d026bceb4d6fbfd792153287c04
+timeCreated: 1462544424
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpFish.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpFish.ogg
new file mode 100644
index 00000000..a17d606e
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpFish.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpFish.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpFish.ogg.meta
new file mode 100644
index 00000000..dc8cd9ac
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpFish.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 754e60097902b4234b185dc059451525
+timeCreated: 1462544423
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpGlasses.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpGlasses.ogg
new file mode 100644
index 00000000..89b639f9
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpGlasses.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpGlasses.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpGlasses.ogg.meta
new file mode 100644
index 00000000..6af82f1b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerPickUpGlasses.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 7578097ef1d3e4ad3825f32b32564cde
+timeCreated: 1462544423
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerThisGuyLooksTrustworthy.ogg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerThisGuyLooksTrustworthy.ogg
new file mode 100644
index 00000000..0785ff0c
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerThisGuyLooksTrustworthy.ogg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerThisGuyLooksTrustworthy.ogg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerThisGuyLooksTrustworthy.ogg.meta
new file mode 100644
index 00000000..7a250160
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/AudioClips/VoiceOver/Player/PlayerThisGuyLooksTrustworthy.ogg.meta
@@ -0,0 +1,22 @@
+fileFormatVersion: 2
+guid: 0d494c2c0a97b4fdc8de4ad7f2e44f43
+timeCreated: 1462547286
+licenseType: Store
+AudioImporter:
+ serializedVersion: 6
+ defaultSettings:
+ loadType: 0
+ sampleRateSetting: 0
+ sampleRateOverride: 44100
+ compressionFormat: 1
+ quality: 1
+ conversionMode: 0
+ platformSettingOverrides: {}
+ forceToMono: 0
+ normalize: 1
+ preloadAudioData: 1
+ loadInBackground: 0
+ 3D: 1
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts.meta
new file mode 100644
index 00000000..8f8b4457
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 2d253a529c13e0e4d9228bb8f56a82e2
+folderAsset: yes
+timeCreated: 1459267211
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts/Geo-Regular.ttf b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts/Geo-Regular.ttf
new file mode 100644
index 00000000..8b8f4d56
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts/Geo-Regular.ttf differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts/Geo-Regular.ttf.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts/Geo-Regular.ttf.meta
new file mode 100644
index 00000000..f3389831
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts/Geo-Regular.ttf.meta
@@ -0,0 +1,19 @@
+fileFormatVersion: 2
+guid: 2383f538bfcf9cc45ad0b55bcba52410
+timeCreated: 1459267227
+licenseType: Store
+TrueTypeFontImporter:
+ serializedVersion: 2
+ fontSize: 16
+ forceTextureCase: -2
+ characterSpacing: 1
+ characterPadding: 0
+ includeFontData: 1
+ use2xBehaviour: 0
+ fontNames: []
+ fallbackFontReferences: []
+ customCharacters:
+ fontRenderingMode: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts/OFL.txt b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts/OFL.txt
new file mode 100644
index 00000000..d7803eed
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts/OFL.txt
@@ -0,0 +1,93 @@
+Copyright (c) 2000-2010, Ben Weiner (ben@readingtype.org.uk),
+with Reserved Font Name Geo.
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts/OFL.txt.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts/OFL.txt.meta
new file mode 100644
index 00000000..555468b3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Fonts/OFL.txt.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 01925231685fa424d9449a5c20ab6d7c
+timeCreated: 1459267227
+licenseType: Store
+TextScriptImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items.meta
new file mode 100644
index 00000000..6b07605e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 44b3bc7915514b241b21343b9b34b6db
+folderAsset: yes
+timeCreated: 1462362118
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Coffee.asset b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Coffee.asset
new file mode 100644
index 00000000..4e58f078
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Coffee.asset
@@ -0,0 +1,14 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2f67bd8ec6e33af4987562f6141a3bf2, type: 3}
+ m_Name: Coffee
+ m_EditorClassIdentifier:
+ sprite: {fileID: 21300000, guid: 0d6887c5e31a67d4c9c3988379769ec4, type: 3}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Coffee.asset.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Coffee.asset.meta
new file mode 100644
index 00000000..540b6dee
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Coffee.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: d016867521888e04cb37abe439c100f7
+timeCreated: 1466771799
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Coin.asset b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Coin.asset
new file mode 100644
index 00000000..230686f8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Coin.asset
@@ -0,0 +1,14 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2f67bd8ec6e33af4987562f6141a3bf2, type: 3}
+ m_Name: Coin
+ m_EditorClassIdentifier:
+ sprite: {fileID: 21300000, guid: be11ca0eaba3a8d4eb2b4478733ba9d9, type: 3}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Coin.asset.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Coin.asset.meta
new file mode 100644
index 00000000..ffe743bc
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Coin.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: d24caee896ca7114aafaf607d9760c9d
+timeCreated: 1469451826
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Fish.asset b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Fish.asset
new file mode 100644
index 00000000..b2966aee
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Fish.asset
@@ -0,0 +1,14 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2f67bd8ec6e33af4987562f6141a3bf2, type: 3}
+ m_Name: Fish
+ m_EditorClassIdentifier:
+ sprite: {fileID: 21300000, guid: 741b6eb3ed1c5d24482e517a0841dce3, type: 3}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Fish.asset.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Fish.asset.meta
new file mode 100644
index 00000000..95700881
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Fish.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f75f3ff4d2e91964bb8f1b9d1ba6c1f2
+timeCreated: 1469451833
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Glasses.asset b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Glasses.asset
new file mode 100644
index 00000000..b1c3bfad
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Glasses.asset
@@ -0,0 +1,14 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2f67bd8ec6e33af4987562f6141a3bf2, type: 3}
+ m_Name: Glasses
+ m_EditorClassIdentifier:
+ sprite: {fileID: 21300000, guid: e2846dbbb26170a438d7da1d69f7d05e, type: 3}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Glasses.asset.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Glasses.asset.meta
new file mode 100644
index 00000000..738a88df
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Items/Glasses.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f0776cdb931cbdb4b83c5035ebf49463
+timeCreated: 1466771878
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials.meta
new file mode 100644
index 00000000..ed5cbc99
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: d0ce9620d6d4d5f499a6268d1f65e604
+folderAsset: yes
+timeCreated: 1456326943
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters.meta
new file mode 100644
index 00000000..8b08bfd6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: b5d6dae42329e0b4ab815cea509af366
+folderAsset: yes
+timeCreated: 1460459387
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/Bird.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/Bird.mat
new file mode 100644
index 00000000..ad40531d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/Bird.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Bird
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: OUTLINE_FRONT
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2001
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: d4c5bab927c0d88449ff03ca4dc38a2e, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.0025
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 1, g: 1, b: 1, a: 0.784}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.49803922, g: 0.39607844, b: 0.62352943, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/Bird.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/Bird.mat.meta
new file mode 100644
index 00000000..cc647bc9
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/Bird.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 545ad8e6ec1048843bee89afb408a32b
+timeCreated: 1460547941
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeBotCover.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeBotCover.mat
new file mode 100644
index 00000000..44fed0c5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeBotCover.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: CoffeBotCover
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: bd8bf31a938eaa24e87e1f2dd27f0ebd, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.6911765, g: 0.6911765, b: 0.6911765, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.49803922, g: 0.39607844, b: 0.62352943, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeBotCover.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeBotCover.mat.meta
new file mode 100644
index 00000000..126645bf
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeBotCover.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 255f1dad6693d9f4188b911d81ea50ed
+timeCreated: 1460458593
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeeBotGlass.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeeBotGlass.mat
new file mode 100644
index 00000000..464dc78e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeeBotGlass.mat
@@ -0,0 +1,175 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: CoffeeBotGlass
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: OUTLINE_FRONT SPECULAR_ENABLE TCP2_SPEC _ALPHAPREMULTIPLY_ON _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: 4000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.0028
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 10
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.79
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 3
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _Shininess
+ second: 0.336
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecSmooth
+ second: 0.05
+ - first:
+ name: _SpecularEnable
+ second: 1
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0.509
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 0
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 1, g: 1, b: 1, a: 0.566}
+ - first:
+ name: _Color
+ second: {r: 0.2627595, g: 0.359966, b: 0.44117647, a: 0.375}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.49803922, g: 0.39607844, b: 0.62352943, a: 1}
+ - first:
+ name: _SpecColor
+ second: {r: 0.5, g: 0.5, b: 0.5, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeeBotGlass.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeeBotGlass.mat.meta
new file mode 100644
index 00000000..70e01e09
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeeBotGlass.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 65eb6d8bd532ff24790e8810799fd82f
+timeCreated: 1460458593
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeeBotMain.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeeBotMain.mat
new file mode 100644
index 00000000..2c91f414
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeeBotMain.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: CoffeeBotMain
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: OUTLINE_FRONT
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2001
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: dd7ba3f30ee1ce34e8c5fa2e72d068ad, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.0028
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 1, g: 1, b: 1, a: 0.566}
+ - first:
+ name: _Color
+ second: {r: 0.6911765, g: 0.6911765, b: 0.6911765, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.49803922, g: 0.39607844, b: 0.62352943, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeeBotMain.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeeBotMain.mat.meta
new file mode 100644
index 00000000..10bebe73
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CoffeeBotMain.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 55ac6b62b46001749b9938e358b3c0ad
+timeCreated: 1460458593
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CustomerMaterial.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CustomerMaterial.mat
new file mode 100644
index 00000000..25fb675e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CustomerMaterial.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: CustomerMaterial
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2001
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: ed3ecf4e3f4511149b63bd68105d0bba, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.8235294, g: 0.8235294, b: 0.8235294, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CustomerMaterial.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CustomerMaterial.mat.meta
new file mode 100644
index 00000000..2c8f7874
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/CustomerMaterial.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1a6730224b4502343a9966008f0b1668
+timeCreated: 1461760846
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/FruitVendor.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/FruitVendor.mat
new file mode 100644
index 00000000..da4e0d06
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/FruitVendor.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: FruitVendor
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2001
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: bcd04a113a550f346b7e408c712babcb, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.7205882, g: 0.7205882, b: 0.7205882, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/FruitVendor.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/FruitVendor.mat.meta
new file mode 100644
index 00000000..90aca347
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/FruitVendor.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: bf2b4aaaf633ea1449a183726b6fa2f3
+timeCreated: 1461760854
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/GuardMaterial.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/GuardMaterial.mat
new file mode 100644
index 00000000..4965037e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/GuardMaterial.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: GuardMaterial
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: OUTLINE_FRONT
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: d636c4f5a57f26746a6b131f4ae5c090, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.002
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 1, g: 1, b: 1, a: 0.72156864}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.49803922, g: 0.39607844, b: 0.62352943, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/GuardMaterial.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/GuardMaterial.mat.meta
new file mode 100644
index 00000000..a39cdda2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/GuardMaterial.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f95cb83adbc6a1a49ae70f30c6496e73
+timeCreated: 1461577048
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/Player.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/Player.mat
new file mode 100644
index 00000000..5042172d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/Player.mat
@@ -0,0 +1,175 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Player
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: OUTLINE_FRONT _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 012b97771b3cba84a8be8c328727cc94, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.8602941, g: 0.8602941, b: 0.8602941, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.49803922, g: 0.39607844, b: 0.62352943, a: 1}
+ - first:
+ name: _SpecColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/Player.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/Player.mat.meta
new file mode 100644
index 00000000..f439c3f3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/Player.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 38bcda417e203744d89feb1e91554572
+timeCreated: 1459506078
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/SecondHandSalesmanMaterial.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/SecondHandSalesmanMaterial.mat
new file mode 100644
index 00000000..49b96b56
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/SecondHandSalesmanMaterial.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecondHandSalesmanMaterial
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: b7151f1a0a5d38342944f011ee0e636b, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.8602941, g: 0.8602941, b: 0.8602941, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.49803922, g: 0.39607844, b: 0.62352943, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/SecondHandSalesmanMaterial.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/SecondHandSalesmanMaterial.mat.meta
new file mode 100644
index 00000000..0734d8d6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/SecondHandSalesmanMaterial.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 5aae30acb47cb134cb98d589f6e6160e
+timeCreated: 1461157433
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/SharkmanMaterial.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/SharkmanMaterial.mat
new file mode 100644
index 00000000..7bec951a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/SharkmanMaterial.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SharkmanMaterial
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 7edd70f880d8087498ef3d1406a77744, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.7941176, g: 0.7941176, b: 0.7941176, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.49803922, g: 0.39607844, b: 0.62352943, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/SharkmanMaterial.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/SharkmanMaterial.mat.meta
new file mode 100644
index 00000000..1af45e97
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Characters/SharkmanMaterial.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: d788c05ebea28de4db00723fccb2e638
+timeCreated: 1461157433
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/CoffeeCup.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/CoffeeCup.mat
new file mode 100644
index 00000000..2804aa02
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/CoffeeCup.mat
@@ -0,0 +1,139 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: CoffeeCup
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: d5f9621718188bf47af2055248c22f1c, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 0f66c07279c7f154598d4aec04bf1496, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/CoffeeCup.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/CoffeeCup.mat.meta
new file mode 100644
index 00000000..74925aa7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/CoffeeCup.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 9d897843149660d4a8439ee2bf24eb1e
+timeCreated: 1460126829
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Coin.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Coin.mat
new file mode 100644
index 00000000..b1c7302c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Coin.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Coin
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: OUTLINE_FRONT SPECULAR_ENABLE
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: dff03d3ff601eed4fb412945333a30b0, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 0f66c07279c7f154598d4aec04bf1496, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.0025
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0.05
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 1, g: 1, b: 1, a: 0.865}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Coin.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Coin.mat.meta
new file mode 100644
index 00000000..16ae4cc6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Coin.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f6e0cf92e2e51f3439465b23ae50a9b5
+timeCreated: 1460126878
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/GlassesMaterial.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/GlassesMaterial.mat
new file mode 100644
index 00000000..76d25589
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/GlassesMaterial.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: GlassesMaterial
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: OUTLINE_FRONT
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: e2854c6a2eccc6945803441e7f7ab239, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 0f66c07279c7f154598d4aec04bf1496, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.0025
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.827
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 1, g: 1, b: 1, a: 0.72156864}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/GlassesMaterial.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/GlassesMaterial.mat.meta
new file mode 100644
index 00000000..bdaa14a9
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/GlassesMaterial.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 5a68483ba9764354ead16db19e43947b
+timeCreated: 1460125454
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/GlassesMaterialNoHighlight.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/GlassesMaterialNoHighlight.mat
new file mode 100644
index 00000000..c5b4970d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/GlassesMaterialNoHighlight.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: GlassesMaterialNoHighlight
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: e2854c6a2eccc6945803441e7f7ab239, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 0f66c07279c7f154598d4aec04bf1496, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.0025
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.827
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 1, g: 1, b: 1, a: 0.72156864}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/GlassesMaterialNoHighlight.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/GlassesMaterialNoHighlight.mat.meta
new file mode 100644
index 00000000..2ed7a0d3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/GlassesMaterialNoHighlight.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 033a89b479ed0e242a87bbdd65d50c7a
+timeCreated: 1460125454
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market.meta
new file mode 100644
index 00000000..d6f5299b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 16b8d8d8c2b6d52448bbcb35f683535a
+folderAsset: yes
+timeCreated: 1460127654
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/BlackUnlit.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/BlackUnlit.mat
new file mode 100644
index 00000000..23a7a3b6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/BlackUnlit.mat
@@ -0,0 +1,163 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: BlackUnlit
+ m_Shader: {fileID: 10755, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BackTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DecalTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DownTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _FrontTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _LeftTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _RightTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _UpTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: PixelSnap
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _InvFade
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _Color
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/BlackUnlit.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/BlackUnlit.mat.meta
new file mode 100644
index 00000000..3acb1ad5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/BlackUnlit.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 18b73e95c08e7624d88d2200187d9cb3
+timeCreated: 1459869127
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/Glass.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/Glass.mat
new file mode 100644
index 00000000..91476781
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/Glass.mat
@@ -0,0 +1,122 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Glass
+ m_Shader: {fileID: 10750, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: _ALPHAPREMULTIPLY_ON
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 3000
+ stringTagMap:
+ RenderType: Transparent
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 6da39cb2fe8f79b40ac48cb35d42deff, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 10
+ - first:
+ name: _Glossiness
+ second: 0.634
+ - first:
+ name: _InvFade
+ second: 0.01
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 3
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 0
+ m_Colors:
+ - first:
+ name: _Color
+ second: {r: 0.517301, g: 0.6369526, b: 0.6764706, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _TintColor
+ second: {r: 0.5661765, g: 0.5661765, b: 0.5661765, a: 0.5}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/Glass.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/Glass.mat.meta
new file mode 100644
index 00000000..dec77c0e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/Glass.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: cb7d12c46517df84eb12587362b496a8
+timeCreated: 1460127640
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketAircon.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketAircon.mat
new file mode 100644
index 00000000..53eeddcb
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketAircon.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketAircon
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 4f6289a78d017ac4b932e0d8ce9e30d5, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketAircon.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketAircon.mat.meta
new file mode 100644
index 00000000..d8f364e6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketAircon.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 895e35e06e2d8fc448bb48e11a72ffb8
+timeCreated: 1460125726
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketBollard.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketBollard.mat
new file mode 100644
index 00000000..9ba5a52a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketBollard.mat
@@ -0,0 +1,166 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketBollard
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 6cd25c186583cb645b60527f7d53e7c9, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketBollard.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketBollard.mat.meta
new file mode 100644
index 00000000..e0353af0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketBollard.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ca130c123aa674f48bd5de8d3f8784b7
+timeCreated: 1459869128
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketChairs.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketChairs.mat
new file mode 100644
index 00000000..2afe9e9f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketChairs.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketChairs
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 0eda8cae9332c4a4481756329bf839cf, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketChairs.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketChairs.mat.meta
new file mode 100644
index 00000000..8a1a4636
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketChairs.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3f196f5aa004d894c81b14bfba41ac27
+timeCreated: 1460125726
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketCrates.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketCrates.mat
new file mode 100644
index 00000000..b0fe5891
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketCrates.mat
@@ -0,0 +1,188 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketCrates
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ data:
+ first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: df0b7963013e23a418521a920a1f3fd7, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ data:
+ first:
+ name: _SrcBlend
+ second: 1
+ data:
+ first:
+ name: _DstBlend
+ second: 0
+ data:
+ first:
+ name: _Cutoff
+ second: 0.5
+ data:
+ first:
+ name: _SpecularPower
+ second: 0
+ data:
+ first:
+ name: _Border
+ second: 0.01
+ data:
+ first:
+ name: _SpecularEnable
+ second: 0
+ data:
+ first:
+ name: _Parallax
+ second: 0.02
+ data:
+ first:
+ name: _ZWrite
+ second: 1
+ data:
+ first:
+ name: _Glossiness
+ second: 0.5
+ data:
+ first:
+ name: _BumpScale
+ second: 1
+ data:
+ first:
+ name: _OcclusionStrength
+ second: 1
+ data:
+ first:
+ name: _DetailNormalMapScale
+ second: 1
+ data:
+ first:
+ name: _UVSec
+ second: 0
+ data:
+ first:
+ name: _Mode
+ second: 0
+ data:
+ first:
+ name: _Metallic
+ second: 0
+ data:
+ first:
+ name: _RampThreshold
+ second: 0.5
+ data:
+ first:
+ name: _RampSmooth
+ second: 0.2
+ data:
+ first:
+ name: _OutlineFront
+ second: 1
+ m_Colors:
+ data:
+ first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ data:
+ first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ data:
+ first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ data:
+ first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ data:
+ first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketCrates.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketCrates.mat.meta
new file mode 100644
index 00000000..9ec7da7f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketCrates.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6811dc329162c624690784272c6a74fb
+timeCreated: 1460125726
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketDoorway.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketDoorway.mat
new file mode 100644
index 00000000..3816baed
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketDoorway.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketDoorway
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: b5d38c66b85346749ab4b022b7ce9598, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketDoorway.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketDoorway.mat.meta
new file mode 100644
index 00000000..9c8d6791
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketDoorway.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1fa0545d742cf194684d26312066441d
+timeCreated: 1460125725
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketDustBin.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketDustBin.mat
new file mode 100644
index 00000000..30e445c8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketDustBin.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketDustBin
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 0653821625ae27441ad6b9ab8e80ee9c, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketDustBin.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketDustBin.mat.meta
new file mode 100644
index 00000000..da263e5e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketDustBin.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7cf13ff2ec6ecf6458f22b58c36f2e32
+timeCreated: 1460125726
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFish.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFish.mat
new file mode 100644
index 00000000..06e11e5c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFish.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketFish
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: ac1f9c4e38e1d0140916af56683a8310, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.0028
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 1, g: 0.6784314, b: 0, a: 0.3882353}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFish.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFish.mat.meta
new file mode 100644
index 00000000..8386bdc9
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFish.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 329c7db3030cc1d418a9f416eaed765f
+timeCreated: 1460125726
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFishSelectable.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFishSelectable.mat
new file mode 100644
index 00000000..8dcc3063
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFishSelectable.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketFishSelectable
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: OUTLINE_FRONT
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2001
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: ac1f9c4e38e1d0140916af56683a8310, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.003
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 1, g: 1, b: 1, a: 0.722}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFishSelectable.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFishSelectable.mat.meta
new file mode 100644
index 00000000..230f2425
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFishSelectable.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 08f4e3363e393374ca0cd78cf5c5a14a
+timeCreated: 1462369840
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFloorMetal.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFloorMetal.mat
new file mode 100644
index 00000000..57717c7a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFloorMetal.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketFloorMetal
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: a600502155988e64f9d45b079ad18278, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.6911765, g: 0.6911765, b: 0.6911765, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFloorMetal.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFloorMetal.mat.meta
new file mode 100644
index 00000000..9832073a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFloorMetal.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: d5c39045660bc764a8ef604888042b5b
+timeCreated: 1460125725
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFloorTileSand.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFloorTileSand.mat
new file mode 100644
index 00000000..cd5696ed
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFloorTileSand.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketFloorTileSand
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 90d75d244446a9644888b0a0305f81f8, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.6611607, g: 0.66176474, b: 0.6179715, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.3833672, g: 0.2647059, b: 0.5294118, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFloorTileSand.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFloorTileSand.mat.meta
new file mode 100644
index 00000000..78a62f16
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFloorTileSand.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3a48947a76978074795eb630980e7e56
+timeCreated: 1460125725
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFoodTrays.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFoodTrays.mat
new file mode 100644
index 00000000..fc235485
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFoodTrays.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketFoodTrays
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 869476bbc9b93a7479c092965001b301, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFoodTrays.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFoodTrays.mat.meta
new file mode 100644
index 00000000..3a8bb440
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFoodTrays.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 61678ebbb8fa54046afc6d3f0232531c
+timeCreated: 1460125726
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFruit.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFruit.mat
new file mode 100644
index 00000000..13fb4154
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFruit.mat
@@ -0,0 +1,163 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketFruit
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 18f57289380b2874cb4e97463670fd40, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.317
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
+ - first:
+ name: _SpecColor
+ second: {r: 0.2, g: 0.2, b: 0.2, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFruit.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFruit.mat.meta
new file mode 100644
index 00000000..b3989e57
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketFruit.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 18c2bd17f423d0749b72b7b321239244
+timeCreated: 1460125726
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketMosaicTiles.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketMosaicTiles.mat
new file mode 100644
index 00000000..1b7d66da
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketMosaicTiles.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketMosaicTiles
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 0cdf82aca9d03a94a9bf95f6aa6848eb, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.6544118, g: 0.6544118, b: 0.6544118, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketMosaicTiles.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketMosaicTiles.mat.meta
new file mode 100644
index 00000000..8a51efcd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketMosaicTiles.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 99bd920f43dd23e478029c6318bf5bbd
+timeCreated: 1460125725
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketOldTech.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketOldTech.mat
new file mode 100644
index 00000000..b9a02348
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketOldTech.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketOldTech
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 7bfe29dd2e7b2994cbb29d1435e09dd8, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.567
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketOldTech.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketOldTech.mat.meta
new file mode 100644
index 00000000..22176db9
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketOldTech.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 0388f2d5fd84c014dbb18d851a95c1bf
+timeCreated: 1462441599
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPipes.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPipes.mat
new file mode 100644
index 00000000..423457a0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPipes.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketPipes
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: SPECULAR_ENABLE
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 834fbfcfbfe02784a80c226f7becf3d9, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0.193
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPipes.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPipes.mat.meta
new file mode 100644
index 00000000..4dd1ffd3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPipes.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: cf64d91bf9d60fa46803c50a585aff08
+timeCreated: 1460125725
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPots.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPots.mat
new file mode 100644
index 00000000..08245506
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPots.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketPots
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: e23a337c1363258479422f2d385dbff2, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPots.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPots.mat.meta
new file mode 100644
index 00000000..23f5fa47
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPots.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: baa9de290ac47c74b8ce1db516ff702e
+timeCreated: 1460125726
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPriceTags.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPriceTags.mat
new file mode 100644
index 00000000..085cd386
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPriceTags.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketPriceTags
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: ec108ead4d2d71642a7f3bc5981f9726, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _Color
+ second: {r: 0.83823526, g: 0.83823526, b: 0.83823526, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPriceTags.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPriceTags.mat.meta
new file mode 100644
index 00000000..cf9940ea
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketPriceTags.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 8c9652377256a5d41bde897da527a3a2
+timeCreated: 1462451833
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketProsthetics.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketProsthetics.mat
new file mode 100644
index 00000000..fb76b570
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketProsthetics.mat
@@ -0,0 +1,163 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketProsthetics
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 65b573131294c994e863d895774631b7, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.768
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.8014706, g: 0.8014706, b: 0.8014706, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
+ - first:
+ name: _SpecColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketProsthetics.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketProsthetics.mat.meta
new file mode 100644
index 00000000..3c96199d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketProsthetics.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 542062432d660d64f87455adddbf8343
+timeCreated: 1461166987
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSecurityDoor.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSecurityDoor.mat
new file mode 100644
index 00000000..624fcf19
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSecurityDoor.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketSecurityDoor
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 716f870002e41434e9d0c706f84bfb42, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSecurityDoor.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSecurityDoor.mat.meta
new file mode 100644
index 00000000..6a533e59
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSecurityDoor.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 21f4fccb919166745b81be58b6c766a0
+timeCreated: 1460125726
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketShadeCloth.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketShadeCloth.mat
new file mode 100644
index 00000000..4929424a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketShadeCloth.mat
@@ -0,0 +1,155 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketShadeCloth
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: _ALPHATEST_ON _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: 2450
+ stringTagMap:
+ RenderType: TransparentCutout
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 0d5bb08b295260746ad46af1d41ca9b5, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.828
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 1
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.625, g: 0.625, b: 0.625, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketShadeCloth.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketShadeCloth.mat.meta
new file mode 100644
index 00000000..9c4ac011
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketShadeCloth.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3ea3a2c6801aae54396d0e9359371fc8
+timeCreated: 1460125725
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSigns.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSigns.mat
new file mode 100644
index 00000000..de675c6d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSigns.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketSigns
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 6446c889f3ca93e49808b98b30f164ec, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.5441177, g: 0.54011685, b: 0.54011685, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSigns.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSigns.mat.meta
new file mode 100644
index 00000000..a3b26c21
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSigns.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 71e4cc976fb954d489e47c27ba9c6950
+timeCreated: 1460125726
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSlerp.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSlerp.mat
new file mode 100644
index 00000000..4793cd1a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSlerp.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketSlerp
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 5f57ab1f61420474a94be04b29ad91cf, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSlerp.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSlerp.mat.meta
new file mode 100644
index 00000000..5c9cb268
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSlerp.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 364a48ba02c665f4688dacc733734f05
+timeCreated: 1462549866
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSmallTable.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSmallTable.mat
new file mode 100644
index 00000000..cffaeaa1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSmallTable.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketSmallTable
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: a6511214d0d3cb54f801712341a6289c, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSmallTable.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSmallTable.mat.meta
new file mode 100644
index 00000000..7cfd60aa
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSmallTable.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7d219517a6224674483d884585bad268
+timeCreated: 1460125726
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSpiceBags.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSpiceBags.mat
new file mode 100644
index 00000000..8e1e5033
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSpiceBags.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketSpiceBags
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: aea7c7080ade8424abc85cea833868a9, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSpiceBags.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSpiceBags.mat.meta
new file mode 100644
index 00000000..4137d37f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketSpiceBags.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4ec2d68a2ff08f94e982603197685a68
+timeCreated: 1460125726
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketStalls.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketStalls.mat
new file mode 100644
index 00000000..941c32a2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketStalls.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketStalls
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 2b20a8f7be0b0d64f9f4fa63b1365207, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketStalls.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketStalls.mat.meta
new file mode 100644
index 00000000..9b3ff7da
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketStalls.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 60d569cced1f71b44b6922c49e5bb4ae
+timeCreated: 1460125726
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketVendingMachine.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketVendingMachine.mat
new file mode 100644
index 00000000..1a73a397
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketVendingMachine.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketVendingMachine
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: c8bfb299e0026f044bcdc2d7677e8d6f, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.603
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketVendingMachine.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketVendingMachine.mat.meta
new file mode 100644
index 00000000..96d9b8f6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketVendingMachine.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e601b63d46663824d853a55aa1d71001
+timeCreated: 1460127435
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketWallMetal.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketWallMetal.mat
new file mode 100644
index 00000000..4cf5fb5e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketWallMetal.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketWallMetal
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: a3a0708edf5124f43b8760cd541c0b89, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketWallMetal.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketWallMetal.mat.meta
new file mode 100644
index 00000000..0bad22ab
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketWallMetal.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e59530a749010fc4fb744508277ac143
+timeCreated: 1460125725
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketWallStone.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketWallStone.mat
new file mode 100644
index 00000000..328fc4ba
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketWallStone.mat
@@ -0,0 +1,163 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketWallStone
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 9297a9fd8cd107445bb53365671f2576, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RampSmooth
+ second: 0.2
+ - first:
+ name: _RampThreshold
+ second: 0.5
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _HColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _SColor
+ second: {r: 0.5007607, g: 0.3998162, b: 0.625, a: 1}
+ - first:
+ name: _SpecColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketWallStone.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketWallStone.mat.meta
new file mode 100644
index 00000000..32328d4b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/MarketWallStone.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 841101597fac029489d23f6adc912343
+timeCreated: 1460125725
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/ParticleFly.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/ParticleFly.mat
new file mode 100644
index 00000000..5f0efa0e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/ParticleFly.mat
@@ -0,0 +1,121 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: ParticleFly
+ m_Shader: {fileID: 203, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 3000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 4944c65a03c70b54a9c2b020aaaae283, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _InvFade
+ second: 3
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _TintColor
+ second: {r: 0.29411763, g: 0.29411763, b: 0.29411763, a: 0.5}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/ParticleFly.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/ParticleFly.mat.meta
new file mode 100644
index 00000000..e0a2132e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/Market/ParticleFly.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: a7afd1b848210eb47af0d2b72c2844c0
+timeCreated: 1461850522
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityCamera.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityCamera.mat
new file mode 100644
index 00000000..d066679a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityCamera.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityCamera
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 8bb99954e5abb1b41846a2b1eeef7504, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 0f66c07279c7f154598d4aec04bf1496, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityCamera.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityCamera.mat.meta
new file mode 100644
index 00000000..5920ce98
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityCamera.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3f386ec83100d844b94a7a5b79ffb81d
+timeCreated: 1461671516
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom.meta
new file mode 100644
index 00000000..0a229b81
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 9a5daac7229b1b84298e6f16b4c717b9
+folderAsset: yes
+timeCreated: 1460715200
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/BlackUnlit1.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/BlackUnlit1.mat
new file mode 100644
index 00000000..7b7c8c85
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/BlackUnlit1.mat
@@ -0,0 +1,138 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: BlackUnlit1
+ m_Shader: {fileID: 10755, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ data:
+ first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ data:
+ first:
+ name: _SrcBlend
+ second: 1
+ data:
+ first:
+ name: _DstBlend
+ second: 0
+ data:
+ first:
+ name: _Cutoff
+ second: 0.5
+ data:
+ first:
+ name: _Parallax
+ second: 0.02
+ data:
+ first:
+ name: _ZWrite
+ second: 1
+ data:
+ first:
+ name: _Glossiness
+ second: 0.5
+ data:
+ first:
+ name: _BumpScale
+ second: 1
+ data:
+ first:
+ name: _OcclusionStrength
+ second: 1
+ data:
+ first:
+ name: _DetailNormalMapScale
+ second: 1
+ data:
+ first:
+ name: _UVSec
+ second: 0
+ data:
+ first:
+ name: _Mode
+ second: 0
+ data:
+ first:
+ name: _Metallic
+ second: 0
+ m_Colors:
+ data:
+ first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ data:
+ first:
+ name: _Color
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/BlackUnlit1.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/BlackUnlit1.mat.meta
new file mode 100644
index 00000000..b18dc4dd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/BlackUnlit1.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 01f421d8bc530244086ff91432577f30
+timeCreated: 1460976460
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/Glow.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/Glow.mat
new file mode 100644
index 00000000..5b557ecb
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/Glow.mat
@@ -0,0 +1,121 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Glow
+ m_Shader: {fileID: 200, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 3000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 836ae3c2ccd31da49a1095ab1e5e2ccc, type: 3}
+ m_Scale: {x: 0.99, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _InvFade
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _TintColor
+ second: {r: 0.120816424, g: 0.125, b: 0.09466912, a: 0.5}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/Glow.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/Glow.mat.meta
new file mode 100644
index 00000000..16c9c08d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/Glow.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1951f82f59d03f840ab348ba47fe4123
+timeCreated: 1460733362
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/LazerWall.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/LazerWall.mat
new file mode 100644
index 00000000..a0e15ab1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/LazerWall.mat
@@ -0,0 +1,161 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: LazerWall
+ m_Shader: {fileID: 200, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: OUTLINE_FRONT _ALPHAPREMULTIPLY_ON _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: 4000
+ stringTagMap:
+ RenderType: Transparent
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 2c725f9780a0e7a46bffd946de0ed428, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 10
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _InvFade
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 3
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 0
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _TintColor
+ second: {r: 0.875, g: 0.09650734, b: 0.09650734, a: 0.5}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/LazerWall.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/LazerWall.mat.meta
new file mode 100644
index 00000000..2f3467c8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/LazerWall.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f557a0a59fc40df4fae274e5c219b457
+timeCreated: 1460976457
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityFloorGlow.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityFloorGlow.mat
new file mode 100644
index 00000000..61fc5189
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityFloorGlow.mat
@@ -0,0 +1,121 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityFloorGlow
+ m_Shader: {fileID: 200, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 2c725f9780a0e7a46bffd946de0ed428, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0.01}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _InvFade
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _TintColor
+ second: {r: 0.38235295, g: 0.362673, b: 0.362673, a: 0.5}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityFloorGlow.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityFloorGlow.mat.meta
new file mode 100644
index 00000000..8174cc53
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityFloorGlow.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 195f2b6dedee1a2488f5f56a87e95909
+timeCreated: 1461685178
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityGateGlow.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityGateGlow.mat
new file mode 100644
index 00000000..f3a22417
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityGateGlow.mat
@@ -0,0 +1,121 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityGateGlow
+ m_Shader: {fileID: 200, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 4001
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 10300, guid: 0000000000000000f000000000000000, type: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _InvFade
+ second: 1.08
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _TintColor
+ second: {r: 0.33823532, g: 0.0049740537, b: 0.0049740537, a: 0.5}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityGateGlow.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityGateGlow.mat.meta
new file mode 100644
index 00000000..86e90039
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityGateGlow.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 122e9cd5ec976eb42bc7f99a4512d40f
+timeCreated: 1460732996
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCables.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCables.mat
new file mode 100644
index 00000000..2f32e021
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCables.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomCables
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.1544118, g: 0.1544118, b: 0.1544118, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCables.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCables.mat.meta
new file mode 100644
index 00000000..e609530e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCables.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6d9a09e9195ed6c49a0b579e44a3d11b
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCarpet.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCarpet.mat
new file mode 100644
index 00000000..f1702f5c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCarpet.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomCarpet
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 8e6beecbd339c3e479bd3b2964cdc9df, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 1
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.8455882, g: 0.39363587, b: 0.31709558, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCarpet.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCarpet.mat.meta
new file mode 100644
index 00000000..8080d1cc
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCarpet.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 5a415daf63f1338469954975350b0c9c
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCautionSign.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCautionSign.mat
new file mode 100644
index 00000000..29914e6f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCautionSign.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomCautionSign
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 9cfe860617d31b14aae53c5ab61a483c, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCautionSign.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCautionSign.mat.meta
new file mode 100644
index 00000000..f0f2b617
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCautionSign.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 09ac45fa148050f418a9e72e8ee5b486
+timeCreated: 1460976458
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomChair.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomChair.mat
new file mode 100644
index 00000000..0ba62eb0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomChair.mat
@@ -0,0 +1,151 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomChair
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 7c8935e6cf094d8478e9bd8a491a3aa1, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.686
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _SpecColor
+ second: {r: 0.2, g: 0.2, b: 0.2, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomChair.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomChair.mat.meta
new file mode 100644
index 00000000..41bb5829
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomChair.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b4c492d80ced0be4ca2633f2554f1297
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCoffeeTable.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCoffeeTable.mat
new file mode 100644
index 00000000..aba2d25a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCoffeeTable.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomCoffeeTable
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: e21b277404a88484fb71fc7cec998681, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCoffeeTable.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCoffeeTable.mat.meta
new file mode 100644
index 00000000..7a8f9b2c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomCoffeeTable.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b7f824ae9841e4e4db6cd79704c517b2
+timeCreated: 1469798019
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomDesk.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomDesk.mat
new file mode 100644
index 00000000..e8b01eb4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomDesk.mat
@@ -0,0 +1,151 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomDesk
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: fccad9fb63352884792dc307d75449e8, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.773
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.17
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.78676474, g: 0.78676474, b: 0.78676474, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _SpecColor
+ second: {r: 0.2647059, g: 0.2647059, b: 0.2647059, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomDesk.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomDesk.mat.meta
new file mode 100644
index 00000000..9cc8ef53
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomDesk.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e3642bc2b1be7f34fbe8086b1060ba8c
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomElevator.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomElevator.mat
new file mode 100644
index 00000000..8b9f1bec
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomElevator.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomElevator
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 716f870002e41434e9d0c706f84bfb42, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _Color
+ second: {r: 0.6102941, g: 0.6102941, b: 0.6102941, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomElevator.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomElevator.mat.meta
new file mode 100644
index 00000000..0ad2d23c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomElevator.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 46e414f0c99a5a84ba321fc49d6fb413
+timeCreated: 1469798020
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloor.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloor.mat
new file mode 100644
index 00000000..16edf365
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloor.mat
@@ -0,0 +1,163 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomFloor
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: OUTLINE_FRONT _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 1bcc788d0e1020646bd703ed8ecdd29d, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.786
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.4694458, g: 0.46031573, b: 0.4852941, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _SpecColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloor.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloor.mat.meta
new file mode 100644
index 00000000..2e38beff
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloor.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6f66348a4070a4c4fb04de32986786c1
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloorLight.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloorLight.mat
new file mode 100644
index 00000000..ddabdfaf
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloorLight.mat
@@ -0,0 +1,127 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomFloorLight
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: _EMISSION
+ m_LightmapFlags: 2
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _Color
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 1, g: 1, b: 1, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloorLight.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloorLight.mat.meta
new file mode 100644
index 00000000..d073513e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloorLight.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 05230aa6fed8282418e8584cd0ab0906
+timeCreated: 1469798019
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloorLightGlow.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloorLightGlow.mat
new file mode 100644
index 00000000..50e60de6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloorLightGlow.mat
@@ -0,0 +1,134 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomFloorLightGlow
+ m_Shader: {fileID: 200, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: _ALPHAPREMULTIPLY_ON _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: -1
+ stringTagMap:
+ RenderType: Transparent
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: d0063a7e961263b4d8c43f7dc163ef52, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 10
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _InvFade
+ second: 0.01
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 3
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 0
+ m_Colors:
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _TintColor
+ second: {r: 0.25, g: 0.25, b: 0.25, a: 0.5}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloorLightGlow.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloorLightGlow.mat.meta
new file mode 100644
index 00000000..e60d17b2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomFloorLightGlow.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3bfa74688e01fc041924a6c5670775d2
+timeCreated: 1469798019
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomForeGroundDetail.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomForeGroundDetail.mat
new file mode 100644
index 00000000..48532888
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomForeGroundDetail.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomForeGroundDetail
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _Color
+ second: {r: 0.14705884, g: 0.109212816, b: 0.109212816, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomForeGroundDetail.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomForeGroundDetail.mat.meta
new file mode 100644
index 00000000..b79d4391
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomForeGroundDetail.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 45b8eaf0be0364a40b0b46fe8679696f
+timeCreated: 1470048568
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramLight.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramLight.mat
new file mode 100644
index 00000000..4b706bee
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramLight.mat
@@ -0,0 +1,134 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomHologramLight
+ m_Shader: {fileID: 200, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: _ALPHAPREMULTIPLY_ON
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2
+ stringTagMap:
+ RenderType: Transparent
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 5177705080969544fae59c61774ac145, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 10
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _InvFade
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 3
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 0
+ m_Colors:
+ - first:
+ name: _Color
+ second: {r: 0.1764706, g: 0.6509804, b: 0.82745105, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _TintColor
+ second: {r: 0.084342554, g: 0.18112394, b: 0.2205882, a: 0.5}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramLight.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramLight.mat.meta
new file mode 100644
index 00000000..ca3264db
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramLight.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: bdb6658887a0cff41bb401d598c25c5c
+timeCreated: 1469798020
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramLight02.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramLight02.mat
new file mode 100644
index 00000000..44c57fdc
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramLight02.mat
@@ -0,0 +1,134 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomHologramLight02
+ m_Shader: {fileID: 200, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: _ALPHAPREMULTIPLY_ON _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: 3
+ stringTagMap:
+ RenderType: Transparent
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 3ff46e219d5799141b9219e49e43e79f, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 10
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _InvFade
+ second: 0.01
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 3
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 0
+ m_Colors:
+ - first:
+ name: _Color
+ second: {r: 0.9294118, g: 0.9686275, b: 0.9843138, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _TintColor
+ second: {r: 0.25, g: 0.25, b: 0.25, a: 0.5}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramLight02.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramLight02.mat.meta
new file mode 100644
index 00000000..3a328725
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramLight02.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 237e59587b8f1c641a0b736a82a2f342
+timeCreated: 1470131292
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHolograms.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHolograms.mat
new file mode 100644
index 00000000..01222fcd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHolograms.mat
@@ -0,0 +1,78 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomHolograms
+ m_Shader: {fileID: 202, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: ETC1_EXTERNAL_ALPHA _EMISSION
+ m_LightmapFlags: 1
+ m_EnableInstancingVariants: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - PixelSnap: 0
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _InvFade: 3
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
+ - _TintColor: {r: 1, g: 1, b: 1, a: 0.5}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHolograms.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHolograms.mat.meta
new file mode 100644
index 00000000..09f47877
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHolograms.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 76f6aaeeec6d36b4f884b244370f05cb
+timeCreated: 1473261834
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramsDNA.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramsDNA.mat
new file mode 100644
index 00000000..9e8f9fbe
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramsDNA.mat
@@ -0,0 +1,136 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomHologramsDNA
+ m_Shader: {fileID: 200, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: f3dc633e1017a28448b3a31383189740, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: PixelSnap
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _InvFade
+ second: 3
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _Color
+ second: {r: 0.9411765, g: 0.9411765, b: 0.9411765, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _TintColor
+ second: {r: 0.23161764, g: 0.2577079, b: 0.30882353, a: 0.5}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramsDNA.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramsDNA.mat.meta
new file mode 100644
index 00000000..c6e90936
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomHologramsDNA.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1bc37cd6e59f7d043b4f6da0dbd4ab28
+timeCreated: 1473261834
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomLogo.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomLogo.mat
new file mode 100644
index 00000000..b1a7a440
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomLogo.mat
@@ -0,0 +1,161 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomLogo
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: SPECULAR_ENABLE _ALPHABLEND_ON _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: 1
+ stringTagMap:
+ RenderType: Transparent
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _HoloNoise
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 84ebeb3e2147ad8428f2e0aa3444a8b6, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 10
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _MinAlpha
+ second: 0.034
+ - first:
+ name: _Mode
+ second: 2
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _RimPower
+ second: 1.85
+ - first:
+ name: _SpecularEnable
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0.026
+ - first:
+ name: _SrcBlend
+ second: 5
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 0
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.08088237, g: 0.08088237, b: 0.08088237, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0.122, g: 0.122, b: 0.122, a: 1}
+ - first:
+ name: _HoloColor
+ second: {r: 0.7352941, g: 0.55497557, b: 0.5244377, a: 1}
+ - first:
+ name: _ScanlineData
+ second: {r: 2, g: 0.1, b: 10, a: 10}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomLogo.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomLogo.mat.meta
new file mode 100644
index 00000000..a6f37735
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomLogo.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1d680551764da7343a0dcc6d8221791e
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomMagazines.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomMagazines.mat
new file mode 100644
index 00000000..80f4065d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomMagazines.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomMagazines
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: a126be43b2bd96142b7807d850762677, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.71323526, g: 0.71323526, b: 0.71323526, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomMagazines.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomMagazines.mat.meta
new file mode 100644
index 00000000..6ca218ba
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomMagazines.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 5b59a3babc1a0264f9a031cd36d8eec4
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomPotPlant.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomPotPlant.mat
new file mode 100644
index 00000000..26075ba0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomPotPlant.mat
@@ -0,0 +1,183 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomPotPlant
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ data:
+ first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: f3973d4f9270bb540926dfdcd84abc61, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ data:
+ first:
+ name: _SrcBlend
+ second: 1
+ data:
+ first:
+ name: _DstBlend
+ second: 0
+ data:
+ first:
+ name: _Cutoff
+ second: 0.5
+ data:
+ first:
+ name: _SpecularPower
+ second: 0.569
+ data:
+ first:
+ name: _Border
+ second: 0
+ data:
+ first:
+ name: _SpecularEnable
+ second: 0
+ data:
+ first:
+ name: _Parallax
+ second: 0.02
+ data:
+ first:
+ name: _ZWrite
+ second: 1
+ data:
+ first:
+ name: _Glossiness
+ second: 0.431
+ data:
+ first:
+ name: _BumpScale
+ second: 1
+ data:
+ first:
+ name: _OcclusionStrength
+ second: 1
+ data:
+ first:
+ name: _DetailNormalMapScale
+ second: 1
+ data:
+ first:
+ name: _UVSec
+ second: 0
+ data:
+ first:
+ name: _Mode
+ second: 0
+ data:
+ first:
+ name: _Metallic
+ second: 0
+ data:
+ first:
+ name: _OutlineFront
+ second: 1
+ m_Colors:
+ data:
+ first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ data:
+ first:
+ name: _Color
+ second: {r: 0.76868063, g: 0.8602941, b: 0.7654087, a: 1}
+ data:
+ first:
+ name: _SpecColor
+ second: {r: 0.1544118, g: 0.1544118, b: 0.1544118, a: 1}
+ data:
+ first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomPotPlant.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomPotPlant.mat.meta
new file mode 100644
index 00000000..0881d2d1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomPotPlant.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: a914eadc484be8c46959df648c426130
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomPotPlantLeaf.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomPotPlantLeaf.mat
new file mode 100644
index 00000000..bad3aab3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomPotPlantLeaf.mat
@@ -0,0 +1,184 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomPotPlantLeaf
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: _ALPHATEST_ON
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 2450
+ stringTagMap:
+ RenderType: TransparentCutout
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ data:
+ first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 8c0c59bb72ed75f4b8367be71a3d415d, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 79be2c25a12e980469d7d935c889c16a, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ data:
+ first:
+ name: _SrcBlend
+ second: 1
+ data:
+ first:
+ name: _DstBlend
+ second: 0
+ data:
+ first:
+ name: _Cutoff
+ second: 0.816
+ data:
+ first:
+ name: _SpecularPower
+ second: 0.01
+ data:
+ first:
+ name: _Border
+ second: 0
+ data:
+ first:
+ name: _SpecularEnable
+ second: 0
+ data:
+ first:
+ name: _Parallax
+ second: 0.02
+ data:
+ first:
+ name: _ZWrite
+ second: 1
+ data:
+ first:
+ name: _Glossiness
+ second: 0
+ data:
+ first:
+ name: _BumpScale
+ second: 1
+ data:
+ first:
+ name: _OcclusionStrength
+ second: 1
+ data:
+ first:
+ name: _DetailNormalMapScale
+ second: 1
+ data:
+ first:
+ name: _UVSec
+ second: 0
+ data:
+ first:
+ name: _Mode
+ second: 1
+ data:
+ first:
+ name: _Metallic
+ second: 0
+ data:
+ first:
+ name: _OutlineFront
+ second: 1
+ m_Colors:
+ data:
+ first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ data:
+ first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ data:
+ first:
+ name: _SpecColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ data:
+ first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomPotPlantLeaf.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomPotPlantLeaf.mat.meta
new file mode 100644
index 00000000..c78d83cd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomPotPlantLeaf.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 15b1c16e173ddda45b74fc79dcb02bff
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomScreen.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomScreen.mat
new file mode 100644
index 00000000..b547633c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomScreen.mat
@@ -0,0 +1,195 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomScreen
+ m_Shader: {fileID: 4800000, guid: 7635c0ad095ddcb4389731c35e45c833, type: 3}
+ m_ShaderKeywords: OUTLINE_FRONT
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 3000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ data:
+ first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ data:
+ first:
+ name: _HoloNoise
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 0.1, y: 0.1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ data:
+ first:
+ name: _SrcBlend
+ second: 1
+ data:
+ first:
+ name: _DstBlend
+ second: 0
+ data:
+ first:
+ name: _Cutoff
+ second: 0.5
+ data:
+ first:
+ name: _SpecularPower
+ second: 0.01
+ data:
+ first:
+ name: _Border
+ second: 0.01
+ data:
+ first:
+ name: _SpecularEnable
+ second: 0
+ data:
+ first:
+ name: _Parallax
+ second: 0.02
+ data:
+ first:
+ name: _ZWrite
+ second: 1
+ data:
+ first:
+ name: _Glossiness
+ second: 0.5
+ data:
+ first:
+ name: _BumpScale
+ second: 1
+ data:
+ first:
+ name: _OcclusionStrength
+ second: 1
+ data:
+ first:
+ name: _DetailNormalMapScale
+ second: 1
+ data:
+ first:
+ name: _UVSec
+ second: 0
+ data:
+ first:
+ name: _Mode
+ second: 0
+ data:
+ first:
+ name: _Metallic
+ second: 0
+ data:
+ first:
+ name: _OutlineFront
+ second: 1
+ data:
+ first:
+ name: _RimPower
+ second: 5
+ data:
+ first:
+ name: _MinAlpha
+ second: 1
+ m_Colors:
+ data:
+ first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ data:
+ first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ data:
+ first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ data:
+ first:
+ name: _HoloColor
+ second: {r: 1, g: 1, b: 1, a: 1}
+ data:
+ first:
+ name: _ScanlineData
+ second: {r: 0.5, g: 10, b: 10, a: 10}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomScreen.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomScreen.mat.meta
new file mode 100644
index 00000000..292fef37
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomScreen.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: cd56fd16d2fb5bf4aaf73ff3cb098968
+timeCreated: 1462790561
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomScreenBorder.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomScreenBorder.mat
new file mode 100644
index 00000000..6e421035
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomScreenBorder.mat
@@ -0,0 +1,151 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomScreenBorder
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 6242e1bd02709584b8bdd22e2f1e512c, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.0014
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.692
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 1, b: 0.8352941, a: 0.72156864}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _SpecColor
+ second: {r: 0.36764705, g: 0.36764705, b: 0.36764705, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomScreenBorder.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomScreenBorder.mat.meta
new file mode 100644
index 00000000..092e61c9
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomScreenBorder.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 50b075c92c0718d43ba136105f9dd1a6
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomSecurityGate.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomSecurityGate.mat
new file mode 100644
index 00000000..3dc1dd3f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomSecurityGate.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomSecurityGate
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 2800000, guid: a3b3a850ae7962b44a82ac0a87dc5e31, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 49d25d1acab51f14d9027f34709789b7, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.0039
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 1, g: 1, b: 1, a: 0.628}
+ - first:
+ name: _Color
+ second: {r: 0.99264705, g: 0.99264705, b: 0.99264705, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0.72794116, g: 0.010705027, b: 0.010705027, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomSecurityGate.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomSecurityGate.mat.meta
new file mode 100644
index 00000000..bc829219
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomSecurityGate.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 268ea185a9855d647be0c7af6b9c4bef
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomTrim.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomTrim.mat
new file mode 100644
index 00000000..e076dc9e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomTrim.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomTrim
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.5882353, g: 0.5882353, b: 0.5882353, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomTrim.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomTrim.mat.meta
new file mode 100644
index 00000000..428c9a3c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomTrim.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 02f83460bcf46fc40a07b7eec5d9af6a
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomVent.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomVent.mat
new file mode 100644
index 00000000..c9e1ba93
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomVent.mat
@@ -0,0 +1,142 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomVent
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 4f6289a78d017ac4b932e0d8ce9e30d5, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomVent.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomVent.mat.meta
new file mode 100644
index 00000000..9f7468b8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomVent.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 672c629381309834cb348cf9b63f30ee
+timeCreated: 1461688312
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallVents.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallVents.mat
new file mode 100644
index 00000000..49b64446
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallVents.mat
@@ -0,0 +1,154 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomWallVents
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 4f6289a78d017ac4b932e0d8ce9e30d5, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0.01
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _Color
+ second: {r: 0.5808823, g: 0.44420412, b: 0.44420412, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallVents.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallVents.mat.meta
new file mode 100644
index 00000000..589af82c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallVents.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: bb6df24b93c940a4da548a5cd5049cfd
+timeCreated: 1469798018
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsGrey.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsGrey.mat
new file mode 100644
index 00000000..59d45694
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsGrey.mat
@@ -0,0 +1,151 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomWallsGrey
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: f3829b5e0e5f3a94aa45ce530d05c1f4, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.738
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 0
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularPower
+ second: 0.01
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _SpecColor
+ second: {r: 0.21323532, g: 0.21323532, b: 0.21323532, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsGrey.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsGrey.mat.meta
new file mode 100644
index 00000000..54af4252
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsGrey.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c663c1ef3240d9b419354431013f17fe
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsRed.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsRed.mat
new file mode 100644
index 00000000..0789e16f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsRed.mat
@@ -0,0 +1,163 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomWallsRed
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: OUTLINE_FRONT _EMISSION
+ m_LightmapFlags: 1
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 00f97b060845d8e4f9563d2a4827a583, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _GlossMapScale
+ second: 1
+ - first:
+ name: _Glossiness
+ second: 0
+ - first:
+ name: _GlossyReflections
+ second: 1
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SmoothnessTextureChannel
+ second: 0
+ - first:
+ name: _SpecularEnable
+ second: 0
+ - first:
+ name: _SpecularHighlights
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 0
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.8088235, g: 0.32709777, b: 0.32709777, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _SpecColor
+ second: {r: 0.25, g: 0.25, b: 0.25, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsRed.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsRed.mat.meta
new file mode 100644
index 00000000..810dd6b1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsRed.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e510d81a6cef85c46bf8fcf18f5a2beb
+timeCreated: 1460715187
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsTrim.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsTrim.mat
new file mode 100644
index 00000000..337f1b84
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsTrim.mat
@@ -0,0 +1,151 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomWallsTrim
+ m_Shader: {fileID: 4800000, guid: 63c2c69d4aa01af4085f3b148a5b5c84, type: 3}
+ m_ShaderKeywords: SPECULAR_ENABLE
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 914fbb3b0d1b86a4d93861993facf9b4, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.611
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 1
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 0.3455882, g: 0.3455882, b: 0.3455882, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _SpecColor
+ second: {r: 0.25, g: 0.25, b: 0.25, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsTrim.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsTrim.mat.meta
new file mode 100644
index 00000000..691e147d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsTrim.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ff3385cc426b6ee47adfa876571fcafa
+timeCreated: 1461771057
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsTrimLight.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsTrimLight.mat
new file mode 100644
index 00000000..a6da6318
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsTrimLight.mat
@@ -0,0 +1,151 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoomWallsTrimLight
+ m_Shader: {fileID: 10755, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: SPECULAR_ENABLE
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 1
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: 914fbb3b0d1b86a4d93861993facf9b4, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _Ramp
+ second:
+ m_Texture: {fileID: 2800000, guid: 3e2ff6720234f5447894e77691ec2026, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _SpecTex
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _Border
+ second: 0
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.611
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _OutlineFront
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SpecularEnable
+ second: 1
+ - first:
+ name: _SpecularPower
+ second: 1
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _BorderColor
+ second: {r: 0, g: 0, b: 0, a: 0}
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _SpecColor
+ second: {r: 0.25, g: 0.25, b: 0.25, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsTrimLight.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsTrimLight.mat.meta
new file mode 100644
index 00000000..ca21afdb
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SecurityRoom/SecurityRoomWallsTrimLight.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 824b1fb490125bf478e2e6d8006f6a66
+timeCreated: 1462285347
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SleepyZ.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SleepyZ.mat
new file mode 100644
index 00000000..f6580584
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SleepyZ.mat
@@ -0,0 +1,121 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SleepyZ
+ m_Shader: {fileID: 203, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 5
+ m_CustomRenderQueue: 3000
+ stringTagMap: {}
+ m_SavedProperties:
+ serializedVersion: 2
+ m_TexEnvs:
+ - first:
+ name: _BumpMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailAlbedoMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailMask
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _DetailNormalMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _EmissionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MainTex
+ second:
+ m_Texture: {fileID: 2800000, guid: bfb6b02ca2aca0d49bb917257920334b, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _MetallicGlossMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _OcclusionMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - first:
+ name: _ParallaxMap
+ second:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - first:
+ name: _BumpScale
+ second: 1
+ - first:
+ name: _Cutoff
+ second: 0.5
+ - first:
+ name: _DetailNormalMapScale
+ second: 1
+ - first:
+ name: _DstBlend
+ second: 0
+ - first:
+ name: _Glossiness
+ second: 0.5
+ - first:
+ name: _InvFade
+ second: 3
+ - first:
+ name: _Metallic
+ second: 0
+ - first:
+ name: _Mode
+ second: 0
+ - first:
+ name: _OcclusionStrength
+ second: 1
+ - first:
+ name: _Parallax
+ second: 0.02
+ - first:
+ name: _SrcBlend
+ second: 1
+ - first:
+ name: _UVSec
+ second: 0
+ - first:
+ name: _ZWrite
+ second: 1
+ m_Colors:
+ - first:
+ name: _Color
+ second: {r: 1, g: 1, b: 1, a: 1}
+ - first:
+ name: _EmissionColor
+ second: {r: 0, g: 0, b: 0, a: 1}
+ - first:
+ name: _TintColor
+ second: {r: 0.1538928, g: 0.059580464, b: 0.21323532, a: 0.284}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SleepyZ.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SleepyZ.mat.meta
new file mode 100644
index 00000000..94b52f54
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Materials/SleepyZ.mat.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1a154997a08254f4ab6fb216e582bc17
+timeCreated: 1462359115
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models.meta
new file mode 100644
index 00000000..cea406f6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 1225dc0c60002374890d39ca2aea0fa9
+folderAsset: yes
+timeCreated: 1456326910
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBot.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBot.fbx
new file mode 100644
index 00000000..5e4b00e4
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBot.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBot.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBot.fbx.meta
new file mode 100644
index 00000000..8a8980fa
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBot.fbx.meta
@@ -0,0 +1,245 @@
+fileFormatVersion: 2
+guid: e7fef9092fa565e41bf56c266766658d
+timeCreated: 1460458759
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: //RootNode
+ 100002: CoffeeBot
+ 100004: CoffeeBotHousing
+ 100006: CoffeeBotHousingDoorMainL
+ 100008: CoffeeBotHousingDoorMainL 1
+ 100010: CoffeeBotHousingDoorMainR
+ 100012: CoffeeBotHousingDoorSmallL
+ 100014: CoffeeBotHousingLid
+ 100016: Controls
+ 100018: Head
+ 100020: HeadEnd
+ 100022: joint2
+ 100024: joint2 1
+ 100026: LeftArm1
+ 100028: LeftArm2
+ 100030: LeftArm3
+ 100032: LeftArm4
+ 100034: LeftArm5
+ 100036: LeftArm6
+ 100038: LeftEye
+ 100040: LeftIndex1
+ 100042: LeftIndex2
+ 100044: LeftIndex3
+ 100046: LeftIndexEnd
+ 100048: LeftMiddle1
+ 100050: LeftMiddle2
+ 100052: LeftMiddle3
+ 100054: LeftMiddleEnd
+ 100056: LeftThumb1
+ 100058: LeftThumb2
+ 100060: LeftThumb3
+ 100062: LeftThumbEnd
+ 100064: Mesh
+ 100066: RightArm1
+ 100068: RightArm2
+ 100070: RightArm3
+ 100072: RightArm4
+ 100074: RightArm5
+ 100076: RightArm6
+ 100078: RightEye
+ 100080: RightIndex1
+ 100082: RightIndex2
+ 100084: RightIndex3
+ 100086: RightIndexEnd
+ 100088: RightMiddle1
+ 100090: RightMiddle2
+ 100092: RightMiddle3
+ 100094: RightMiddleEnd
+ 100096: RightThumb1
+ 100098: RightThumb2
+ 100100: RightThumb3
+ 100102: RightThumbEnd
+ 100104: Skeleton
+ 100106: Spine1
+ 100108: spine2
+ 100110: Tongue
+ 100112: Tooth
+ 100114: ToothEnd
+ 100116: Body
+ 100118: Housing
+ 100120: HousingLeftDoor1
+ 100122: HousingLeftDoor2
+ 100124: HousingLeftDoorEnd
+ 100126: HousingRightDoor1
+ 100128: HousingRightDoor2
+ 100130: HousingRightDoorEnd
+ 100132: LeftArmEnd
+ 100134: Lid
+ 100136: LidEnd
+ 100138: RightArmEnd
+ 100140: Coffee
+ 100142: CoffeeCupMesh
+ 400000: //RootNode
+ 400002: CoffeeBot
+ 400004: CoffeeBotHousing
+ 400006: CoffeeBotHousingDoorMainL
+ 400008: CoffeeBotHousingDoorMainL 1
+ 400010: CoffeeBotHousingDoorMainR
+ 400012: CoffeeBotHousingDoorSmallL
+ 400014: CoffeeBotHousingLid
+ 400016: Controls
+ 400018: Head
+ 400020: HeadEnd
+ 400022: joint2
+ 400024: joint2 1
+ 400026: LeftArm1
+ 400028: LeftArm2
+ 400030: LeftArm3
+ 400032: LeftArm4
+ 400034: LeftArm5
+ 400036: LeftArm6
+ 400038: LeftEye
+ 400040: LeftIndex1
+ 400042: LeftIndex2
+ 400044: LeftIndex3
+ 400046: LeftIndexEnd
+ 400048: LeftMiddle1
+ 400050: LeftMiddle2
+ 400052: LeftMiddle3
+ 400054: LeftMiddleEnd
+ 400056: LeftThumb1
+ 400058: LeftThumb2
+ 400060: LeftThumb3
+ 400062: LeftThumbEnd
+ 400064: Mesh
+ 400066: RightArm1
+ 400068: RightArm2
+ 400070: RightArm3
+ 400072: RightArm4
+ 400074: RightArm5
+ 400076: RightArm6
+ 400078: RightEye
+ 400080: RightIndex1
+ 400082: RightIndex2
+ 400084: RightIndex3
+ 400086: RightIndexEnd
+ 400088: RightMiddle1
+ 400090: RightMiddle2
+ 400092: RightMiddle3
+ 400094: RightMiddleEnd
+ 400096: RightThumb1
+ 400098: RightThumb2
+ 400100: RightThumb3
+ 400102: RightThumbEnd
+ 400104: Skeleton
+ 400106: Spine1
+ 400108: spine2
+ 400110: Tongue
+ 400112: Tooth
+ 400114: ToothEnd
+ 400116: Body
+ 400118: Housing
+ 400120: HousingLeftDoor1
+ 400122: HousingLeftDoor2
+ 400124: HousingLeftDoorEnd
+ 400126: HousingRightDoor1
+ 400128: HousingRightDoor2
+ 400130: HousingRightDoorEnd
+ 400132: LeftArmEnd
+ 400134: Lid
+ 400136: LidEnd
+ 400138: RightArmEnd
+ 400140: Coffee
+ 400142: CoffeeCupMesh
+ 2300000: CoffeeBotHousing
+ 2300002: CoffeeBotHousingDoorMainL
+ 2300004: CoffeeBotHousingDoorMainL 1
+ 2300006: CoffeeBotHousingDoorMainR
+ 2300008: CoffeeBotHousingDoorSmallL
+ 2300010: CoffeeBotHousingLid
+ 2300012: Coffee
+ 2300014: CoffeeCupMesh
+ 3300000: CoffeeBotHousing
+ 3300002: CoffeeBotHousingDoorMainL
+ 3300004: CoffeeBotHousingDoorMainL 1
+ 3300006: CoffeeBotHousingDoorMainR
+ 3300008: CoffeeBotHousingDoorSmallL
+ 3300010: CoffeeBotHousingLid
+ 3300012: Coffee
+ 3300014: CoffeeCupMesh
+ 4300000: CoffeeBot
+ 4300002: CoffeeBotHousing
+ 4300004: CoffeeBotHousingDoorMainL
+ 4300006: CoffeeBotHousingDoorSmallL
+ 4300008: CoffeeBotHousingDoorMainR
+ 4300010: CoffeeBotHousingDoorMainL
+ 4300012: CoffeeBotHousingLid
+ 4300014: Body
+ 4300016: Coffee
+ 4300018: CoffeeCupMesh
+ 7400000: Take 001
+ 9500000: //RootNode
+ 13700000: CoffeeBot
+ 13700002: Body
+ materials:
+ importMaterials: 1
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBotCover.FBX b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBotCover.FBX
new file mode 100644
index 00000000..48ba5dd7
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBotCover.FBX differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBotCover.FBX.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBotCover.FBX.meta
new file mode 100644
index 00000000..7f8266f0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBotCover.FBX.meta
@@ -0,0 +1,76 @@
+fileFormatVersion: 2
+guid: a6c69704f7dc81b4b943597cabdaece9
+timeCreated: 1470401964
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: //RootNode
+ 400000: //RootNode
+ 2300000: //RootNode
+ 3300000: //RootNode
+ 4300000: CoffeBotCover
+ materials:
+ importMaterials: 0
+ materialName: 0
+ materialSearch: 1
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleCurves: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 0
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBotSigns.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBotSigns.fbx
new file mode 100644
index 00000000..25ebe499
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBotSigns.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBotSigns.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBotSigns.fbx.meta
new file mode 100644
index 00000000..49194746
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeBotSigns.fbx.meta
@@ -0,0 +1,77 @@
+fileFormatVersion: 2
+guid: 8afaf1aee63329944a36d7e8b7a6bae2
+timeCreated: 1462963622
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: //RootNode
+ 400000: //RootNode
+ 2300000: //RootNode
+ 3300000: //RootNode
+ 4300000: CoffeeBotDoorSigns
+ 9500000: //RootNode
+ materials:
+ importMaterials: 1
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeCup.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeCup.fbx
new file mode 100644
index 00000000..0594e737
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeCup.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeCup.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeCup.fbx.meta
new file mode 100644
index 00000000..35f8d8aa
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/CoffeeCup.fbx.meta
@@ -0,0 +1,77 @@
+fileFormatVersion: 2
+guid: 287f138f9d2f6d642a97ec0483afde5d
+timeCreated: 1460126814
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: //RootNode
+ 400000: //RootNode
+ 2300000: //RootNode
+ 3300000: //RootNode
+ 4300000: Cylinder095
+ 4300002: Coffee
+ materials:
+ importMaterials: 1
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 0
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Coin.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Coin.fbx
new file mode 100644
index 00000000..fec4deba
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Coin.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Coin.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Coin.fbx.meta
new file mode 100644
index 00000000..6146b398
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Coin.fbx.meta
@@ -0,0 +1,78 @@
+fileFormatVersion: 2
+guid: c74383c438ad9d14298fec8b36ce7ee5
+timeCreated: 1460126814
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: //RootNode
+ 400000: //RootNode
+ 2300000: //RootNode
+ 3300000: //RootNode
+ 4300000: Cylinder096
+ 4300002: Coin
+ 4300004: Coin01
+ materials:
+ importMaterials: 1
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 0
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Customer.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Customer.fbx
new file mode 100644
index 00000000..1ed21e3c
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Customer.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Customer.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Customer.fbx.meta
new file mode 100644
index 00000000..24c1191d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Customer.fbx.meta
@@ -0,0 +1,214 @@
+fileFormatVersion: 2
+guid: 9e42500670bb47f4d99af2fa8a64f882
+timeCreated: 1461757335
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: Customer
+ 100004: //RootNode
+ 100006: Head
+ 100008: HeadEnd
+ 100010: Hips
+ 100012: LeftArm
+ 100014: LeftFoot
+ 100016: LeftHand
+ 100018: LeftIndex1
+ 100020: LeftIndex2
+ 100022: LeftIndex3
+ 100024: LeftIndexEnd
+ 100026: LeftLeg
+ 100028: LeftMiddle1
+ 100030: LeftMiddle2
+ 100032: LeftMiddle3
+ 100034: LeftMiddleEnd
+ 100036: LeftPinky1
+ 100038: LeftPinky2
+ 100040: LeftPinky3
+ 100042: LeftPinkyEnd
+ 100044: LeftRing1
+ 100046: LeftRing2
+ 100048: LeftRing3
+ 100050: LeftRingEnd
+ 100052: LeftShoulder
+ 100054: LeftThumb1
+ 100056: LeftThumb2
+ 100058: LeftThumb3
+ 100060: LeftThumbEnd
+ 100062: LeftToe
+ 100064: LeftToeEnd
+ 100066: LeftUpLeg
+ 100068: LeftUpperArm
+ 100070: Mesh
+ 100072: Mouth
+ 100074: Neck
+ 100076: RightArm
+ 100078: RightFoot
+ 100080: RightHand
+ 100082: RightIndex1
+ 100084: RightIndex2
+ 100086: RightIndex3
+ 100088: RightIndexEnd
+ 100090: RightLeg
+ 100092: RightMiddle1
+ 100094: RightMiddle2
+ 100096: RightMiddle3
+ 100098: RightMiddleEnd
+ 100100: RightPinky1
+ 100102: RightPinky2
+ 100104: RightPinky3
+ 100106: RightPinkyEnd
+ 100108: RightRing1
+ 100110: RightRing2
+ 100112: RightRing3
+ 100114: RightRingEnd
+ 100116: RightShoulder
+ 100118: RightThumb1
+ 100120: RightThumb2
+ 100122: RightThumb3
+ 100124: RightThumbEnd
+ 100126: RightToe
+ 100128: RightToeEnd
+ 100130: RightUpLeg
+ 100132: RightUpperArm
+ 100134: Skeleton
+ 100136: Spine1
+ 100138: Spine2
+ 400000: Controls
+ 400002: //RootNode
+ 400004: Customer
+ 400006: Head
+ 400008: HeadEnd
+ 400010: Hips
+ 400012: LeftArm
+ 400014: LeftFoot
+ 400016: LeftHand
+ 400018: LeftIndex1
+ 400020: LeftIndex2
+ 400022: LeftIndex3
+ 400024: LeftIndexEnd
+ 400026: LeftLeg
+ 400028: LeftMiddle1
+ 400030: LeftMiddle2
+ 400032: LeftMiddle3
+ 400034: LeftMiddleEnd
+ 400036: LeftPinky1
+ 400038: LeftPinky2
+ 400040: LeftPinky3
+ 400042: LeftPinkyEnd
+ 400044: LeftRing1
+ 400046: LeftRing2
+ 400048: LeftRing3
+ 400050: LeftRingEnd
+ 400052: LeftShoulder
+ 400054: LeftThumb1
+ 400056: LeftThumb2
+ 400058: LeftThumb3
+ 400060: LeftThumbEnd
+ 400062: LeftToe
+ 400064: LeftToeEnd
+ 400066: LeftUpLeg
+ 400068: LeftUpperArm
+ 400070: Mesh
+ 400072: Mouth
+ 400074: Neck
+ 400076: RightArm
+ 400078: RightFoot
+ 400080: RightHand
+ 400082: RightIndex1
+ 400084: RightIndex2
+ 400086: RightIndex3
+ 400088: RightIndexEnd
+ 400090: RightLeg
+ 400092: RightMiddle1
+ 400094: RightMiddle2
+ 400096: RightMiddle3
+ 400098: RightMiddleEnd
+ 400100: RightPinky1
+ 400102: RightPinky2
+ 400104: RightPinky3
+ 400106: RightPinkyEnd
+ 400108: RightRing1
+ 400110: RightRing2
+ 400112: RightRing3
+ 400114: RightRingEnd
+ 400116: RightShoulder
+ 400118: RightThumb1
+ 400120: RightThumb2
+ 400122: RightThumb3
+ 400124: RightThumbEnd
+ 400126: RightToe
+ 400128: RightToeEnd
+ 400130: RightUpLeg
+ 400132: RightUpperArm
+ 400134: Skeleton
+ 400136: Spine1
+ 400138: Spine2
+ 4300000: Customer
+ 9500000: //RootNode
+ 13700000: Customer
+ materials:
+ importMaterials: 1
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Disguise.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Disguise.fbx
new file mode 100644
index 00000000..c614bb19
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Disguise.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Disguise.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Disguise.fbx.meta
new file mode 100644
index 00000000..df353da1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Disguise.fbx.meta
@@ -0,0 +1,78 @@
+fileFormatVersion: 2
+guid: 54a2e3e0f3738864f9472522c0bd66f8
+timeCreated: 1478789401
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: //RootNode
+ 400000: //RootNode
+ 2300000: //RootNode
+ 3300000: //RootNode
+ 4300000: Disguise
+ 4300002: Glasses
+ 9500000: //RootNode
+ materials:
+ importMaterials: 1
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleCurves: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 0
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/FruitVendor.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/FruitVendor.fbx
new file mode 100644
index 00000000..be8ad202
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/FruitVendor.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/FruitVendor.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/FruitVendor.fbx.meta
new file mode 100644
index 00000000..61e9c4d7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/FruitVendor.fbx.meta
@@ -0,0 +1,223 @@
+fileFormatVersion: 2
+guid: d8b5188c259ea8544ae17ee5ae98d2a0
+timeCreated: 1461664359
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: //RootNode
+ 100004: FruitVendor
+ 100006: Hair
+ 100008: HairEnd
+ 100010: Head
+ 100012: Hips
+ 100014: LeftArm
+ 100016: LeftEye
+ 100018: LeftFoot
+ 100020: LeftForeArm
+ 100022: LeftHand
+ 100024: LeftIndex1
+ 100026: LeftIndex2
+ 100028: LeftIndex3
+ 100030: LeftIndexEnd
+ 100032: LeftLeg
+ 100034: LeftMiddle1
+ 100036: LeftMiddle2
+ 100038: LeftMiddle3
+ 100040: LeftMiddleEnd
+ 100042: LeftPinky1
+ 100044: LeftPinky2
+ 100046: LeftPinky3
+ 100048: LeftPinkyEnd
+ 100050: LeftRing1
+ 100052: LeftRing2
+ 100054: LeftRing3
+ 100056: LeftRingEnd
+ 100058: LeftShoulder
+ 100060: LeftThumb1
+ 100062: LeftThumb2
+ 100064: LeftThumb3
+ 100066: LeftThumbEnd
+ 100068: LeftToe
+ 100070: LeftToeEnd
+ 100072: LeftUpLeg
+ 100074: LowerEyeLids
+ 100076: Mesh
+ 100078: Mouth
+ 100080: RightArm
+ 100082: RightEye
+ 100084: RightFoot
+ 100086: RightForeArm
+ 100088: RightHand
+ 100090: RightIndex1
+ 100092: RightIndex2
+ 100094: RightIndex3
+ 100096: RightIndexEnd
+ 100098: RightLeg
+ 100100: RightMiddle1
+ 100102: RightMiddle2
+ 100104: RightMiddle3
+ 100106: RightMiddleEnd
+ 100108: RightPinky1
+ 100110: RightPinky2
+ 100112: RightPinky3
+ 100114: RightPinkyEnd
+ 100116: RightRing1
+ 100118: RightRing2
+ 100120: RightRing3
+ 100122: RightRingEnd
+ 100124: RightShoulder
+ 100126: RightThumb1
+ 100128: RightThumb2
+ 100130: RightThumb3
+ 100132: RightThumbEnd
+ 100134: RightToe
+ 100136: RightToeEnd
+ 100138: RightUpLeg
+ 100140: Skeleton
+ 100142: Spine1
+ 100144: Spine2
+ 100146: UpperEyeLids
+ 400000: Controls
+ 400002: //RootNode
+ 400004: FruitVendor
+ 400006: Hair
+ 400008: HairEnd
+ 400010: Head
+ 400012: Hips
+ 400014: LeftArm
+ 400016: LeftEye
+ 400018: LeftFoot
+ 400020: LeftForeArm
+ 400022: LeftHand
+ 400024: LeftIndex1
+ 400026: LeftIndex2
+ 400028: LeftIndex3
+ 400030: LeftIndexEnd
+ 400032: LeftLeg
+ 400034: LeftMiddle1
+ 400036: LeftMiddle2
+ 400038: LeftMiddle3
+ 400040: LeftMiddleEnd
+ 400042: LeftPinky1
+ 400044: LeftPinky2
+ 400046: LeftPinky3
+ 400048: LeftPinkyEnd
+ 400050: LeftRing1
+ 400052: LeftRing2
+ 400054: LeftRing3
+ 400056: LeftRingEnd
+ 400058: LeftShoulder
+ 400060: LeftThumb1
+ 400062: LeftThumb2
+ 400064: LeftThumb3
+ 400066: LeftThumbEnd
+ 400068: LeftToe
+ 400070: LeftToeEnd
+ 400072: LeftUpLeg
+ 400074: LowerEyeLids
+ 400076: Mesh
+ 400078: Mouth
+ 400080: RightArm
+ 400082: RightEye
+ 400084: RightFoot
+ 400086: RightForeArm
+ 400088: RightHand
+ 400090: RightIndex1
+ 400092: RightIndex2
+ 400094: RightIndex3
+ 400096: RightIndexEnd
+ 400098: RightLeg
+ 400100: RightMiddle1
+ 400102: RightMiddle2
+ 400104: RightMiddle3
+ 400106: RightMiddleEnd
+ 400108: RightPinky1
+ 400110: RightPinky2
+ 400112: RightPinky3
+ 400114: RightPinkyEnd
+ 400116: RightRing1
+ 400118: RightRing2
+ 400120: RightRing3
+ 400122: RightRingEnd
+ 400124: RightShoulder
+ 400126: RightThumb1
+ 400128: RightThumb2
+ 400130: RightThumb3
+ 400132: RightThumbEnd
+ 400134: RightToe
+ 400136: RightToeEnd
+ 400138: RightUpLeg
+ 400140: Skeleton
+ 400142: Spine1
+ 400144: Spine2
+ 400146: UpperEyeLids
+ 4300000: FruitVendor
+ 7400000: Take 001
+ 9500000: //RootNode
+ 13700000: FruitVendor
+ materials:
+ importMaterials: 1
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Guard.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Guard.fbx
new file mode 100644
index 00000000..dc4366d8
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Guard.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Guard.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Guard.fbx.meta
new file mode 100644
index 00000000..0790dc75
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Guard.fbx.meta
@@ -0,0 +1,220 @@
+fileFormatVersion: 2
+guid: c7b68b4319c8eb841972625ac9d251a6
+timeCreated: 1460644832
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: DownEyeLid
+ 100004: //RootNode
+ 100006: Guard
+ 100008: Head
+ 100010: HeadEnd
+ 100012: Hips
+ 100014: LeftArm
+ 100016: LeftEye
+ 100018: LeftFoot
+ 100020: LeftForeArm
+ 100022: LeftHand
+ 100024: LeftIndex1
+ 100026: LeftIndex2
+ 100028: LeftIndex3
+ 100030: LeftIndexEnd
+ 100032: LeftLeg
+ 100034: LeftMiddle1
+ 100036: LeftMiddle2
+ 100038: LeftMiddle3
+ 100040: LeftMiddleEnd
+ 100042: LeftPinky1
+ 100044: LeftPinky2
+ 100046: LeftPinky3
+ 100048: LeftPinkyEnd
+ 100050: LeftRing1
+ 100052: LeftRing2
+ 100054: LeftRing3
+ 100056: LeftRingEnd
+ 100058: LeftShoulder
+ 100060: LeftThumb1
+ 100062: LeftThumb2
+ 100064: LeftThumb3
+ 100066: LeftThumbEnd
+ 100068: LeftToe
+ 100070: LeftToeEnd
+ 100072: LeftUpLeg
+ 100074: Mesh
+ 100076: Mouth
+ 100078: RightArm
+ 100080: RightEye
+ 100082: RightFoot
+ 100084: RightForeArm
+ 100086: RightHand
+ 100088: RightIndex1
+ 100090: RightIndex2
+ 100092: RightIndex3
+ 100094: RightIndexEnd
+ 100096: RightLeg
+ 100098: RightMiddle1
+ 100100: RightMiddle2
+ 100102: RightMiddle3
+ 100104: RightMiddleEnd
+ 100106: RightPinky1
+ 100108: RightPinky2
+ 100110: RightPinky3
+ 100112: RightPinkyEnd
+ 100114: RightRing1
+ 100116: RightRing2
+ 100118: RightRing3
+ 100120: RightRingEnd
+ 100122: RightShoulder
+ 100124: RightThumb1
+ 100126: RightThumb2
+ 100128: RightThumb3
+ 100130: RightThumbEnd
+ 100132: RightToe
+ 100134: RightToeEnd
+ 100136: RightUpLeg
+ 100138: Skeleton
+ 100140: Spine1
+ 100142: Spine2
+ 100144: UpEyeLid
+ 400000: Controls
+ 400002: DownEyeLid
+ 400004: //RootNode
+ 400006: Guard
+ 400008: Head
+ 400010: HeadEnd
+ 400012: Hips
+ 400014: LeftArm
+ 400016: LeftEye
+ 400018: LeftFoot
+ 400020: LeftForeArm
+ 400022: LeftHand
+ 400024: LeftIndex1
+ 400026: LeftIndex2
+ 400028: LeftIndex3
+ 400030: LeftIndexEnd
+ 400032: LeftLeg
+ 400034: LeftMiddle1
+ 400036: LeftMiddle2
+ 400038: LeftMiddle3
+ 400040: LeftMiddleEnd
+ 400042: LeftPinky1
+ 400044: LeftPinky2
+ 400046: LeftPinky3
+ 400048: LeftPinkyEnd
+ 400050: LeftRing1
+ 400052: LeftRing2
+ 400054: LeftRing3
+ 400056: LeftRingEnd
+ 400058: LeftShoulder
+ 400060: LeftThumb1
+ 400062: LeftThumb2
+ 400064: LeftThumb3
+ 400066: LeftThumbEnd
+ 400068: LeftToe
+ 400070: LeftToeEnd
+ 400072: LeftUpLeg
+ 400074: Mesh
+ 400076: Mouth
+ 400078: RightArm
+ 400080: RightEye
+ 400082: RightFoot
+ 400084: RightForeArm
+ 400086: RightHand
+ 400088: RightIndex1
+ 400090: RightIndex2
+ 400092: RightIndex3
+ 400094: RightIndexEnd
+ 400096: RightLeg
+ 400098: RightMiddle1
+ 400100: RightMiddle2
+ 400102: RightMiddle3
+ 400104: RightMiddleEnd
+ 400106: RightPinky1
+ 400108: RightPinky2
+ 400110: RightPinky3
+ 400112: RightPinkyEnd
+ 400114: RightRing1
+ 400116: RightRing2
+ 400118: RightRing3
+ 400120: RightRingEnd
+ 400122: RightShoulder
+ 400124: RightThumb1
+ 400126: RightThumb2
+ 400128: RightThumb3
+ 400130: RightThumbEnd
+ 400132: RightToe
+ 400134: RightToeEnd
+ 400136: RightUpLeg
+ 400138: Skeleton
+ 400140: Spine1
+ 400142: Spine2
+ 400144: UpEyeLid
+ 4300000: Guard
+ 9500000: //RootNode
+ 13700000: Guard
+ materials:
+ importMaterials: 1
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/MarketCollision.FBX b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/MarketCollision.FBX
new file mode 100644
index 00000000..24dc0a09
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/MarketCollision.FBX differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/MarketCollision.FBX.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/MarketCollision.FBX.meta
new file mode 100644
index 00000000..2d66178c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/MarketCollision.FBX.meta
@@ -0,0 +1,80 @@
+fileFormatVersion: 2
+guid: e582ad25494856c48a62bb7a4e4b4143
+timeCreated: 1457541729
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: //RootNode
+ 400000: //RootNode
+ 2300000: //RootNode
+ 3300000: //RootNode
+ 4300000: Market001
+ 4300002: meshCollider
+ 4300004: marketMeshCollider
+ 4300006: MarketCollision
+ 4300008: MarketMeshCollider
+ materials:
+ importMaterials: 0
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 0
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/MarketEnvironment.FBX b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/MarketEnvironment.FBX
new file mode 100644
index 00000000..8b8c0d99
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/MarketEnvironment.FBX differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/MarketEnvironment.FBX.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/MarketEnvironment.FBX.meta
new file mode 100644
index 00000000..db6e4c2b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/MarketEnvironment.FBX.meta
@@ -0,0 +1,328 @@
+fileFormatVersion: 2
+guid: ae23c9eafd0c4d84690e5f3bddaf54e8
+timeCreated: 1470220377
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Aircon01
+ 100002: Aircon02
+ 100004: BlackUnlit
+ 100006: Bollards
+ 100008: Chairs01
+ 100010: Chairs02
+ 100012: Crates
+ 100014: Door01
+ 100016: Door02
+ 100018: Door03
+ 100020: Doorway
+ 100022: Dustbin01
+ 100024: Dustbin02
+ 100026: Dustbin03
+ 100028: Fish
+ 100030: FoodTrays004
+ 100032: FoodTrays01
+ 100034: FoodTrays03
+ 100036: FrontWallShadowCaster
+ 100038: Fruit01
+ 100040: Fruit02
+ 100042: //RootNode
+ 100044: MarketFloorPanels
+ 100046: MarketGround
+ 100048: MarketShadeCloth01
+ 100050: MarketShadeCloth02
+ 100052: MarketShadeCloth03
+ 100054: MarketStalls01
+ 100056: MarketStalls02
+ 100058: OldTech
+ 100060: Pipes
+ 100062: Pots01
+ 100064: Pots02
+ 100066: priceTags
+ 100068: Prosthetics
+ 100070: Signs
+ 100072: SmallTables
+ 100074: SpiceBags01
+ 100076: SpiceBags02
+ 100078: VendingMachine01
+ 100080: VendingMachine02
+ 100082: Walls
+ 100084: WallStone
+ 100086: FloorPanels
+ 100088: Ground
+ 100090: ShadeCloth01
+ 100092: ShadeCloth02
+ 100094: ShadeCloth03
+ 100096: Stalls01
+ 100098: Stalls02
+ 100100: WallMetal
+ 100102: GroundTiles
+ 400000: Aircon01
+ 400002: Aircon02
+ 400004: BlackUnlit
+ 400006: Bollards
+ 400008: Chairs01
+ 400010: Chairs02
+ 400012: Crates
+ 400014: Door01
+ 400016: Door02
+ 400018: Door03
+ 400020: Doorway
+ 400022: Dustbin01
+ 400024: Dustbin02
+ 400026: Dustbin03
+ 400028: Fish
+ 400030: FoodTrays004
+ 400032: FoodTrays01
+ 400034: FoodTrays03
+ 400036: FrontWallShadowCaster
+ 400038: Fruit01
+ 400040: Fruit02
+ 400042: //RootNode
+ 400044: MarketFloorPanels
+ 400046: MarketGround
+ 400048: MarketShadeCloth01
+ 400050: MarketShadeCloth02
+ 400052: MarketShadeCloth03
+ 400054: MarketStalls01
+ 400056: MarketStalls02
+ 400058: OldTech
+ 400060: Pipes
+ 400062: Pots01
+ 400064: Pots02
+ 400066: priceTags
+ 400068: Prosthetics
+ 400070: Signs
+ 400072: SmallTables
+ 400074: SpiceBags01
+ 400076: SpiceBags02
+ 400078: VendingMachine01
+ 400080: VendingMachine02
+ 400082: Walls
+ 400084: WallStone
+ 400086: FloorPanels
+ 400088: Ground
+ 400090: ShadeCloth01
+ 400092: ShadeCloth02
+ 400094: ShadeCloth03
+ 400096: Stalls01
+ 400098: Stalls02
+ 400100: WallMetal
+ 400102: GroundTiles
+ 2300000: Aircon01
+ 2300002: Aircon02
+ 2300004: BlackUnlit
+ 2300006: Bollards
+ 2300008: Chairs01
+ 2300010: Chairs02
+ 2300012: Crates
+ 2300014: Door01
+ 2300016: Door02
+ 2300018: Door03
+ 2300020: Doorway
+ 2300022: Dustbin01
+ 2300024: Dustbin02
+ 2300026: Dustbin03
+ 2300028: Fish
+ 2300030: FoodTrays004
+ 2300032: FoodTrays01
+ 2300034: FoodTrays03
+ 2300036: FrontWallShadowCaster
+ 2300038: Fruit01
+ 2300040: Fruit02
+ 2300042: MarketFloorPanels
+ 2300044: MarketGround
+ 2300046: MarketShadeCloth01
+ 2300048: MarketShadeCloth02
+ 2300050: MarketShadeCloth03
+ 2300052: MarketStalls01
+ 2300054: MarketStalls02
+ 2300056: OldTech
+ 2300058: Pipes
+ 2300060: Pots01
+ 2300062: Pots02
+ 2300064: priceTags
+ 2300066: Prosthetics
+ 2300068: Signs
+ 2300070: SmallTables
+ 2300072: SpiceBags01
+ 2300074: SpiceBags02
+ 2300076: VendingMachine01
+ 2300078: VendingMachine02
+ 2300080: Walls
+ 2300082: WallStone
+ 2300084: FloorPanels
+ 2300086: Ground
+ 2300088: ShadeCloth01
+ 2300090: ShadeCloth02
+ 2300092: ShadeCloth03
+ 2300094: Stalls01
+ 2300096: Stalls02
+ 2300098: WallMetal
+ 2300100: GroundTiles
+ 3300000: Aircon01
+ 3300002: Aircon02
+ 3300004: BlackUnlit
+ 3300006: Bollards
+ 3300008: Chairs01
+ 3300010: Chairs02
+ 3300012: Crates
+ 3300014: Door01
+ 3300016: Door02
+ 3300018: Door03
+ 3300020: Doorway
+ 3300022: Dustbin01
+ 3300024: Dustbin02
+ 3300026: Dustbin03
+ 3300028: Fish
+ 3300030: FoodTrays004
+ 3300032: FoodTrays01
+ 3300034: FoodTrays03
+ 3300036: FrontWallShadowCaster
+ 3300038: Fruit01
+ 3300040: Fruit02
+ 3300042: MarketFloorPanels
+ 3300044: MarketGround
+ 3300046: MarketShadeCloth01
+ 3300048: MarketShadeCloth02
+ 3300050: MarketShadeCloth03
+ 3300052: MarketStalls01
+ 3300054: MarketStalls02
+ 3300056: OldTech
+ 3300058: Pipes
+ 3300060: Pots01
+ 3300062: Pots02
+ 3300064: priceTags
+ 3300066: Prosthetics
+ 3300068: Signs
+ 3300070: SmallTables
+ 3300072: SpiceBags01
+ 3300074: SpiceBags02
+ 3300076: VendingMachine01
+ 3300078: VendingMachine02
+ 3300080: Walls
+ 3300082: WallStone
+ 3300084: FloorPanels
+ 3300086: Ground
+ 3300088: ShadeCloth01
+ 3300090: ShadeCloth02
+ 3300092: ShadeCloth03
+ 3300094: Stalls01
+ 3300096: Stalls02
+ 3300098: WallMetal
+ 3300100: GroundTiles
+ 4300000: MarketShadeCloth01
+ 4300002: MarketStalls01
+ 4300004: Bollards
+ 4300006: Pots01
+ 4300008: SpiceBags02
+ 4300010: Dustbin03
+ 4300012: SmallTables
+ 4300014: Aircon02
+ 4300016: FoodTrays03
+ 4300018: Crates
+ 4300020: Chairs01
+ 4300022: SpiceBags01
+ 4300024: Pots02
+ 4300026: Aircon01
+ 4300028: Dustbin01
+ 4300030: MarketStalls02
+ 4300032: MarketShadeCloth02
+ 4300034: FoodTrays01
+ 4300036: Dustbin02
+ 4300038: MarketShadeCloth03
+ 4300040: FrontWallShadowCaster
+ 4300042: Chairs02
+ 4300044: FoodTrays004
+ 4300046: Door02
+ 4300048: Door01
+ 4300050: Fish
+ 4300052: Door03
+ 4300054: Fruit01
+ 4300056: Signs
+ 4300058: VendingMachine01
+ 4300060: Prosthetics
+ 4300062: Fruit02
+ 4300064: VendingMachine02
+ 4300066: OldTech
+ 4300068: priceTags
+ 4300070: MarketGround
+ 4300072: MarketFloorPanels
+ 4300074: Pipes
+ 4300076: Walls
+ 4300078: WallStone
+ 4300080: BlackUnlit
+ 4300082: Doorway
+ 4300084: ShadeCloth01
+ 4300086: Stalls01
+ 4300088: Stalls02
+ 4300090: ShadeCloth02
+ 4300092: ShadeCloth03
+ 4300094: Ground
+ 4300096: FloorPanels
+ 4300098: WallMetal
+ 4300100: GroundTiles
+ materials:
+ importMaterials: 1
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleCurves: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 0
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials.meta
new file mode 100644
index 00000000..aa451b89
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: c008b9323db9b9e419124a49d9c8684e
+folderAsset: yes
+timeCreated: 1499783428
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_Aircon.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_Aircon.mat
new file mode 100644
index 00000000..1811bcc6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_Aircon.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Market_Aircon
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_Aircon.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_Aircon.mat.meta
new file mode 100644
index 00000000..a0d4b0eb
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_Aircon.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 683667ff6f3a8784b8e9a7104b170b4e
+timeCreated: 1499783481
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_Crates.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_Crates.mat
new file mode 100644
index 00000000..fa26aaba
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_Crates.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Market_Crates
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 0.5882353, g: 0.5882353, b: 0.5882353, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_Crates.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_Crates.mat.meta
new file mode 100644
index 00000000..2aac503c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_Crates.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 4f73650538e7e9447aa0531dc0120177
+timeCreated: 1499783478
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_PriceTags.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_PriceTags.mat
new file mode 100644
index 00000000..e5ec9723
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_PriceTags.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Market_PriceTags
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 0.5882353, g: 0.5882353, b: 0.5882353, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_PriceTags.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_PriceTags.mat.meta
new file mode 100644
index 00000000..86e238e3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/Market_PriceTags.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 9f2b76bcc97ed4c458415a01884d5d29
+timeCreated: 1499783478
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Cables.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Cables.mat
new file mode 100644
index 00000000..43adc739
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Cables.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoom_Cables
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 0.09411766, g: 0.09411766, b: 0.09411766, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Cables.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Cables.mat.meta
new file mode 100644
index 00000000..b28d1a8a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Cables.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: ad247be46a2e5674796591ef14ccf910
+timeCreated: 1499783482
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Carpet.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Carpet.mat
new file mode 100644
index 00000000..aeecb7d7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Carpet.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoom_Carpet
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Carpet.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Carpet.mat.meta
new file mode 100644
index 00000000..16ea1f0a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Carpet.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 0acf4f5d5175da347bcbb4de547477e7
+timeCreated: 1499783481
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_CautionSign.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_CautionSign.mat
new file mode 100644
index 00000000..72829e79
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_CautionSign.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoom_CautionSign
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_CautionSign.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_CautionSign.mat.meta
new file mode 100644
index 00000000..ac7fc458
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_CautionSign.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: cdbb8b65558c5574aa8481f72f1db8ef
+timeCreated: 1499783481
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Chair.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Chair.mat
new file mode 100644
index 00000000..72d09575
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Chair.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoom_Chair
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Chair.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Chair.mat.meta
new file mode 100644
index 00000000..a2e67d21
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Chair.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: ae4b8a678d830514091034962d39dbf0
+timeCreated: 1499783482
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Desk.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Desk.mat
new file mode 100644
index 00000000..d17ae6a5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Desk.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoom_Desk
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Desk.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Desk.mat.meta
new file mode 100644
index 00000000..103c2f89
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Desk.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: e51e76f87256b8e4e95e0be76bfab120
+timeCreated: 1499783480
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Floor.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Floor.mat
new file mode 100644
index 00000000..763219a9
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Floor.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoom_Floor
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Floor.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Floor.mat.meta
new file mode 100644
index 00000000..bafa3ab1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Floor.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: d66f730824bd0e74ab7e23ef6feaf084
+timeCreated: 1499783482
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Magazines.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Magazines.mat
new file mode 100644
index 00000000..fd9778f7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Magazines.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoom_Magazines
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Magazines.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Magazines.mat.meta
new file mode 100644
index 00000000..9344b232
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_Magazines.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 6031c8507452faa4cac6aa4771d8d2f3
+timeCreated: 1499783482
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_PotPlant.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_PotPlant.mat
new file mode 100644
index 00000000..8d47bcf3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_PotPlant.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoom_PotPlant
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_PotPlant.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_PotPlant.mat.meta
new file mode 100644
index 00000000..38f0c4a3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_PotPlant.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 87eae11e89dcd564d9f4e4fc13da0566
+timeCreated: 1499783480
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_PotPlant_Leaf.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_PotPlant_Leaf.mat
new file mode 100644
index 00000000..8bd0bde9
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_PotPlant_Leaf.mat
@@ -0,0 +1,77 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoom_PotPlant_Leaf
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: _ALPHAPREMULTIPLY_ON
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: 3000
+ stringTagMap:
+ RenderType: Transparent
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 10
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 3
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 0
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_PotPlant_Leaf.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_PotPlant_Leaf.mat.meta
new file mode 100644
index 00000000..20a6034e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_PotPlant_Leaf.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 61fad9b4611074b4998e04a3b16084f8
+timeCreated: 1499783480
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_SecurityGate.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_SecurityGate.mat
new file mode 100644
index 00000000..82b1b01e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_SecurityGate.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoom_SecurityGate
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_SecurityGate.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_SecurityGate.mat.meta
new file mode 100644
index 00000000..edc0f573
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_SecurityGate.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: fc3123baaf4a0074babc6c9d70f4dfd1
+timeCreated: 1499783481
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsGrey.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsGrey.mat
new file mode 100644
index 00000000..b1ff06a7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsGrey.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoom_WallsGrey
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsGrey.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsGrey.mat.meta
new file mode 100644
index 00000000..3a0ced9c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsGrey.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: bf760a950f8af2540b367ff4604155a8
+timeCreated: 1499783482
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsRed.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsRed.mat
new file mode 100644
index 00000000..12e43185
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsRed.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoom_WallsRed
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsRed.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsRed.mat.meta
new file mode 100644
index 00000000..186fe389
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsRed.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: a89eda58c9fcce448bac7def85947eff
+timeCreated: 1499783482
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsTrim.mat b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsTrim.mat
new file mode 100644
index 00000000..4386dc13
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsTrim.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: SecurityRoom_WallsTrim
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsTrim.mat.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsTrim.mat.meta
new file mode 100644
index 00000000..591227b8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Materials/SecurityRoom_WallsTrim.mat.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: f934745b836d144459a2cbf03630b19d
+timeCreated: 1499783483
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 2100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Player.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Player.fbx
new file mode 100644
index 00000000..fad33a93
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Player.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Player.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Player.fbx.meta
new file mode 100644
index 00000000..34e41138
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Player.fbx.meta
@@ -0,0 +1,1085 @@
+fileFormatVersion: 2
+guid: 9d9569a11a06f464bb9a5618bdd51bba
+timeCreated: 1473759483
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Body
+ 100002: Controls
+ 100004: EyelidDown
+ 100006: EyeLidUp
+ 100008: Hair
+ 100010: HairEnd
+ 100012: Head
+ 100014: Hips
+ 100016: LeftArm
+ 100018: LeftEye
+ 100020: LeftFoot
+ 100022: LeftForeArm
+ 100024: LeftHand
+ 100026: LeftIndex1
+ 100028: LeftIndex2
+ 100030: LeftIndex3
+ 100032: LeftIndexEnd
+ 100034: LeftLeg
+ 100036: LeftMiddle1
+ 100038: LeftMiddle2
+ 100040: LeftMiddle3
+ 100042: LeftMiddleEnd
+ 100044: LeftPinky1
+ 100046: LeftPinky2
+ 100048: LeftPinky3
+ 100050: LeftPinkyEnd
+ 100052: LeftRing1
+ 100054: LeftRing2
+ 100056: LeftRing3
+ 100058: LeftRingEnd
+ 100060: LeftShoulder
+ 100062: LeftThumb1
+ 100064: LeftThumb2
+ 100066: LeftThumb3
+ 100068: LeftThumbEnd
+ 100070: LeftToe
+ 100072: LeftToeEnd
+ 100074: LeftUpLeg
+ 100076: Mesh
+ 100078: Neck
+ 100080: //RootNode
+ 100082: RightArm
+ 100084: RightEye
+ 100086: RightFoot
+ 100088: RightForeArm
+ 100090: RightHand
+ 100092: RightIndex1
+ 100094: RightIndex2
+ 100096: RightIndex3
+ 100098: RightIndexEnd
+ 100100: RightLeg
+ 100102: RightMiddle1
+ 100104: RightMiddle2
+ 100106: RightMiddle3
+ 100108: RightMiddleEnd
+ 100110: RightPinky1
+ 100112: RightPinky2
+ 100114: RightPinky3
+ 100116: RightPinkyEnd
+ 100118: RightRing1
+ 100120: RightRing2
+ 100122: RightRing3
+ 100124: RightRingEnd
+ 100126: RightShoulder
+ 100128: RightThumb1
+ 100130: RightThumb2
+ 100132: RightThumb3
+ 100134: RightThumbEnd
+ 100136: RightToe
+ 100138: RightToeEnd
+ 100140: RightUpLeg
+ 100142: Skeleton
+ 100144: Spine1
+ 100146: Spine2
+ 100148: Bird_Glasses_Reference:Glasses
+ 100150: Glasses
+ 100152: ControlsHips
+ 100154: ControlsUpperBody
+ 100156: HeadEND
+ 100158: LeftIndexEND
+ 100160: LeftMiddleEND
+ 100162: LeftPinkyEND
+ 100164: LeftRingEND
+ 100166: LeftThumbEND
+ 100168: LeftToeEND
+ 100170: LeftUpperArm
+ 100172: LeftUpperLeg
+ 100174: LowerEyelids
+ 100176: RightIndexEND
+ 100178: RightMiddleEND
+ 100180: RightPinkyEND
+ 100182: RightRingEND
+ 100184: RightThumbEND
+ 100186: RightToeEND
+ 100188: RightUpperArm
+ 100190: RightUpperLeg
+ 100192: UpperEyelids
+ 100194: LowerEyelidsEND
+ 100196: UpperEyelidsEND
+ 400000: Body
+ 400002: Controls
+ 400004: EyelidDown
+ 400006: EyeLidUp
+ 400008: Hair
+ 400010: HairEnd
+ 400012: Head
+ 400014: Hips
+ 400016: LeftArm
+ 400018: LeftEye
+ 400020: LeftFoot
+ 400022: LeftForeArm
+ 400024: LeftHand
+ 400026: LeftIndex1
+ 400028: LeftIndex2
+ 400030: LeftIndex3
+ 400032: LeftIndexEnd
+ 400034: LeftLeg
+ 400036: LeftMiddle1
+ 400038: LeftMiddle2
+ 400040: LeftMiddle3
+ 400042: LeftMiddleEnd
+ 400044: LeftPinky1
+ 400046: LeftPinky2
+ 400048: LeftPinky3
+ 400050: LeftPinkyEnd
+ 400052: LeftRing1
+ 400054: LeftRing2
+ 400056: LeftRing3
+ 400058: LeftRingEnd
+ 400060: LeftShoulder
+ 400062: LeftThumb1
+ 400064: LeftThumb2
+ 400066: LeftThumb3
+ 400068: LeftThumbEnd
+ 400070: LeftToe
+ 400072: LeftToeEnd
+ 400074: LeftUpLeg
+ 400076: Mesh
+ 400078: Neck
+ 400080: //RootNode
+ 400082: RightArm
+ 400084: RightEye
+ 400086: RightFoot
+ 400088: RightForeArm
+ 400090: RightHand
+ 400092: RightIndex1
+ 400094: RightIndex2
+ 400096: RightIndex3
+ 400098: RightIndexEnd
+ 400100: RightLeg
+ 400102: RightMiddle1
+ 400104: RightMiddle2
+ 400106: RightMiddle3
+ 400108: RightMiddleEnd
+ 400110: RightPinky1
+ 400112: RightPinky2
+ 400114: RightPinky3
+ 400116: RightPinkyEnd
+ 400118: RightRing1
+ 400120: RightRing2
+ 400122: RightRing3
+ 400124: RightRingEnd
+ 400126: RightShoulder
+ 400128: RightThumb1
+ 400130: RightThumb2
+ 400132: RightThumb3
+ 400134: RightThumbEnd
+ 400136: RightToe
+ 400138: RightToeEnd
+ 400140: RightUpLeg
+ 400142: Skeleton
+ 400144: Spine1
+ 400146: Spine2
+ 400148: Bird_Glasses_Reference:Glasses
+ 400150: Glasses
+ 400152: ControlsHips
+ 400154: ControlsUpperBody
+ 400156: HeadEND
+ 400158: LeftIndexEND
+ 400160: LeftMiddleEND
+ 400162: LeftPinkyEND
+ 400164: LeftRingEND
+ 400166: LeftThumbEND
+ 400168: LeftToeEND
+ 400170: LeftUpperArm
+ 400172: LeftUpperLeg
+ 400174: LowerEyelids
+ 400176: RightIndexEND
+ 400178: RightMiddleEND
+ 400180: RightPinkyEND
+ 400182: RightRingEND
+ 400184: RightThumbEND
+ 400186: RightToeEND
+ 400188: RightUpperArm
+ 400190: RightUpperLeg
+ 400192: UpperEyelids
+ 400194: LowerEyelidsEND
+ 400196: UpperEyelidsEND
+ 2300000: Bird_Glasses_Reference:Glasses
+ 2300002: Glasses
+ 3300000: Bird_Glasses_Reference:Glasses
+ 3300002: Glasses
+ 4300000: Body
+ 4300002: Bird_Glasses_Reference:Glasses
+ 4300004: Glasses
+ 4300006: Mesh
+ 7400000: Take 001
+ 9500000: //RootNode
+ 13700000: Body
+ 13700002: Mesh
+ materials:
+ importMaterials: 1
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleCurves: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 3
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 0
+ copyAvatar: 0
+ humanDescription:
+ human:
+ - boneName: Hips
+ humanName: Hips
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftUpperLeg
+ humanName: LeftUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightUpperLeg
+ humanName: RightUpperLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftLeg
+ humanName: LeftLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightLeg
+ humanName: RightLowerLeg
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftFoot
+ humanName: LeftFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightFoot
+ humanName: RightFoot
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Spine1
+ humanName: Spine
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Spine2
+ humanName: Chest
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Neck
+ humanName: Neck
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: Head
+ humanName: Head
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftShoulder
+ humanName: LeftShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightShoulder
+ humanName: RightShoulder
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftUpperArm
+ humanName: LeftUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightUpperArm
+ humanName: RightUpperArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftArm
+ humanName: LeftLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightArm
+ humanName: RightLowerArm
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftHand
+ humanName: LeftHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightHand
+ humanName: RightHand
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftToe
+ humanName: LeftToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightToe
+ humanName: RightToes
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftEye
+ humanName: LeftEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightEye
+ humanName: RightEye
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb1
+ humanName: Left Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb2
+ humanName: Left Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftThumb3
+ humanName: Left Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex1
+ humanName: Left Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex2
+ humanName: Left Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftIndex3
+ humanName: Left Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle1
+ humanName: Left Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle2
+ humanName: Left Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftMiddle3
+ humanName: Left Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing1
+ humanName: Left Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing2
+ humanName: Left Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftRing3
+ humanName: Left Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky1
+ humanName: Left Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky2
+ humanName: Left Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: LeftPinky3
+ humanName: Left Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb1
+ humanName: Right Thumb Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb2
+ humanName: Right Thumb Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightThumb3
+ humanName: Right Thumb Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex1
+ humanName: Right Index Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex2
+ humanName: Right Index Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightIndex3
+ humanName: Right Index Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle1
+ humanName: Right Middle Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle2
+ humanName: Right Middle Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightMiddle3
+ humanName: Right Middle Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing1
+ humanName: Right Ring Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing2
+ humanName: Right Ring Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightRing3
+ humanName: Right Ring Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky1
+ humanName: Right Little Proximal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky2
+ humanName: Right Little Intermediate
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ - boneName: RightPinky3
+ humanName: Right Little Distal
+ limit:
+ min: {x: 0, y: 0, z: 0}
+ max: {x: 0, y: 0, z: 0}
+ value: {x: 0, y: 0, z: 0}
+ length: 0
+ modified: 0
+ skeleton:
+ - name: Player(Clone)
+ position: {x: 0, y: 0, z: 0}
+ rotation: {x: 0, y: 0, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Controls
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: ControlsUpperBody
+ position: {x: -0, y: 0.9856257, z: -0.028446734}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: ControlsHips
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Mesh
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Skeleton
+ position: {x: -0, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Hips
+ position: {x: 0, y: 0.9088629, z: -0.028446734}
+ rotation: {x: 0.7071068, y: -0.7071068, z: -4.3297806e-17, w: 4.3297806e-17}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftUpperLeg
+ position: {x: 0.037347827, y: 0.092801034, z: 0.0064211558}
+ rotation: {x: -0.0033267832, y: 0.99839103, z: 0.056605782, w: -0.0004065326}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftLeg
+ position: {x: -0.37195736, y: -1.236171e-16, z: 5.1000362e-18}
+ rotation: {x: -0.0004567116, y: -0.052333966, z: -0.008714577, w: 0.99859154}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftFoot
+ position: {x: -0.41152263, y: -0.0015294757, z: -0.002893631}
+ rotation: {x: 0.050357435, y: 0.49969903, z: 0.026062192, w: 0.86434126}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftToe
+ position: {x: -0.1110157, y: -2.5535128e-17, z: 8.2057634e-17}
+ rotation: {x: 4.2141773e-14, y: 0.3007058, z: -1.328725e-14, w: 0.95371693}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftToeEND
+ position: {x: -0.11182804, y: -2.918769e-18, z: 9.290528e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightUpperLeg
+ position: {x: 0.037347663, y: -0.092801, z: 0.0064211655}
+ rotation: {x: -0.05660591, y: 0.00040653365, z: -0.003326788, w: 0.99839103}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightLeg
+ position: {x: 0.37195793, y: 5.9421585e-17, z: -4.0592486e-18}
+ rotation: {x: -0.0004567116, y: -0.052333966, z: -0.008714577, w: 0.99859154}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightFoot
+ position: {x: 0.41152248, y: 0.001529468, z: 0.0028936374}
+ rotation: {x: 0.05035755, y: 0.49969906, z: 0.026062248, w: 0.86434126}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightToe
+ position: {x: 0.11101543, y: -0.000000079186826, z: -0.0000003664904}
+ rotation: {x: 0, y: 0.3007058, z: -0, w: 0.95371693}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightToeEND
+ position: {x: 0.111827955, y: 0.000000072275725, z: 0.00000062929314}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Spine1
+ position: {x: -0.10568693, y: 0, z: 0}
+ rotation: {x: -6.123234e-17, y: -6.123234e-17, z: 0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Spine2
+ position: {x: -0.1833106, y: 8.548717e-16, z: -4.440892e-18}
+ rotation: {x: -6.5194134e-17, y: 0.087155744, z: 3.8665733e-34, w: 0.9961947}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftShoulder
+ position: {x: -0.1435461, y: 0.03922616, z: 0.022630278}
+ rotation: {x: -0.68924034, y: 0.71203506, z: 0.0130629325, w: 0.13335347}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftUpperArm
+ position: {x: -0.11169202, y: -1.3877788e-17, z: -5.851063e-17}
+ rotation: {x: 0.0016100118, y: 0.104498126, z: -0.025915265, w: 0.9941861}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftArm
+ position: {x: -0.2715663, y: 0, z: 0}
+ rotation: {x: 8.2024617e-16, y: 0.000052097534, z: -8.848866e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftHand
+ position: {x: -0.2331744, y: -2.842171e-16, z: 0}
+ rotation: {x: -0.0000024176625, y: -0.0028313876, z: 0.000843909, w: 0.99999565}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex1
+ position: {x: -0.09506476, y: 0.00005518901, z: 0.03229297}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex2
+ position: {x: -0.031456187, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndex3
+ position: {x: -0.026145402, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftIndexEND
+ position: {x: -0.030434882, y: 0, z: 8.881784e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle1
+ position: {x: -0.09450546, y: -0.000005017072, z: 0.0054007857}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle2
+ position: {x: -0.03860532, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddle3
+ position: {x: -0.029822098, y: 0, z: 0}
+ rotation: {x: 1.6940659e-21, y: -3.0374601e-18, z: 1.5144949e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftMiddleEND
+ position: {x: -0.030639142, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky1
+ position: {x: -0.09338952, y: -0.00012434727, z: -0.047905773}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky2
+ position: {x: -0.02757523, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinky3
+ position: {x: -0.023694271, y: 0, z: -1.7763568e-17}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftPinkyEND
+ position: {x: -0.023898533, y: 0, z: 1.7763568e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing1
+ position: {x: -0.09456046, y: -0.00006564576, z: -0.02122128}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing2
+ position: {x: -0.033294536, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRing3
+ position: {x: -0.02573688, y: 0, z: 0}
+ rotation: {x: -8.665147e-19, y: -4.7715484e-18, z: 1.6233386e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftRingEND
+ position: {x: -0.032273233, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb1
+ position: {x: -0.014531664, y: -0.010635542, z: 0.02609546}
+ rotation: {x: -0.001391087, y: 0.43585023, z: 0.00026398723, w: 0.90001816}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb2
+ position: {x: -0.044124622, y: 0, z: 4.440892e-18}
+ rotation: {x: 0.0000001058215, y: -0.03346803, z: -0.000001782842, w: 0.99943984}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumb3
+ position: {x: -0.03446204, y: 0, z: -1.5543122e-17}
+ rotation: {x: 1.1354973e-16, y: 0.017452406, z: 2.3701255e-16, w: 0.9998477}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumbEnd
+ position: {x: -0.027849242, y: 0, z: -2.220446e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftThumbEND
+ position: {x: 1.1400142e-18, y: 0, z: -1.9054521e-18}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Neck
+ position: {x: -0.2294332, y: -1.821977e-17, z: 0.0049986364}
+ rotation: {x: -2.775558e-17, y: -0.29237172, z: 4.0278586e-33, w: 0.9563048}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: Head
+ position: {x: -0.10867395, y: -1.1779883e-16, z: 1.4210854e-16}
+ rotation: {x: -1.3877788e-17, y: 0.19936794, z: -3.9307714e-34, w: 0.9799247}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: HeadEND
+ position: {x: -0.24878563, y: -1.5987211e-16, z: 7.902685e-17}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LeftEye
+ position: {x: -0.06898784, y: 0.042644892, z: -0.067543894}
+ rotation: {x: 0.49111634, y: -0.4841803, z: 0.50882685, w: 0.5152373}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: LowerEyelids
+ position: {x: -0.05675008, y: -8.5596115e-16, z: -0.09207437}
+ rotation: {x: 5.89806e-17, y: -8.6736174e-19, z: 1.110223e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightEye
+ position: {x: -0.06898793, y: -0.0426449, z: -0.06754389}
+ rotation: {x: -1.1714554e-15, y: 1, z: 2.8327693e-16, w: 7.7545535e-17}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: UpperEyelids
+ position: {x: -0.07905001, y: -8.603375e-16, z: -0.096244544}
+ rotation: {x: 5.89806e-17, y: -8.6736174e-19, z: 1.110223e-16, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightShoulder
+ position: {x: -0.14354727, y: -0.0392262, z: 0.022630045}
+ rotation: {x: -0.0130629325, y: -0.13335347, z: -0.68924034, w: 0.71203506}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightUpperArm
+ position: {x: 0.11169233, y: 0.0000013741218, z: -0.000000017416571}
+ rotation: {x: 0.99418354, y: -0.02591735, z: -0.10452178, w: -0.0016203261}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightArm
+ position: {x: 0.27156565, y: -0.0000016521891, z: -0.000000010419892}
+ rotation: {x: -0.000011964993, y: 0.0000000651813, z: -0.000010528297, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightHand
+ position: {x: 0.23317498, y: 0.000003552258, z: 0.00000003303112}
+ rotation: {x: 0.9999994, y: 0.000013414664, z: -0.00003311748, w: -0.0011172838}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex1
+ position: {x: 0.09506465, y: -0.000052980962, z: -0.03229297}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex2
+ position: {x: 0.031456, y: 5.684342e-16, z: 3.7303492e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndex3
+ position: {x: 0.026145, y: 0, z: 2.842171e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightIndexEND
+ position: {x: 0.030435, y: 2.842171e-16, z: 3.2862602e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle1
+ position: {x: 0.09450487, y: 0.000007224165, z: -0.0054008546}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle2
+ position: {x: 0.038606, y: 2.842171e-16, z: 4.440892e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddle3
+ position: {x: 0.029821998, y: 2.842171e-16, z: 3.375078e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightMiddleEND
+ position: {x: 0.030638998, y: -2.842171e-16, z: 3.375078e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky1
+ position: {x: 0.093388975, y: 0.0001265551, z: 0.047905993}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky2
+ position: {x: 0.027576, y: 0, z: 3.375078e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinky3
+ position: {x: 0.023694, y: 0, z: 2.664535e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightPinkyEND
+ position: {x: 0.023898, y: 2.842171e-16, z: 2.664535e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing1
+ position: {x: 0.0945606, y: 0.0000678541, z: 0.021221206}
+ rotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing2
+ position: {x: 0.033294, y: 2.842171e-16, z: 3.5527135e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRing3
+ position: {x: 0.025736999, y: 0, z: 2.842171e-16}
+ rotation: {x: 4.211791e-17, y: -1.7279472e-18, z: 1.0554031e-18, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightRingEND
+ position: {x: 0.032273, y: 2.842171e-16, z: 3.7303492e-16}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb1
+ position: {x: 0.014531372, y: 0.010635231, z: -0.026095485}
+ rotation: {x: -0.001391087, y: 0.43585023, z: 0.00026398723, w: 0.90001816}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb2
+ position: {x: 0.044124745, y: 2.842171e-16, z: 0.00000011967238}
+ rotation: {x: -0.0000001293374, y: -0.033468656, z: 0.0000011772497, w: 0.9994398}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumb3
+ position: {x: 0.03446187, y: 1.7053025e-15, z: -0.000000061993184}
+ rotation: {x: -1.289088e-16, y: 0.017452406, z: -7.523221e-16, w: 0.9998477}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumbEnd
+ position: {x: 0.02784971, y: 1.7053025e-15, z: 0.00000026974834}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ - name: RightThumbEND
+ position: {x: -1.4210854e-16, y: 0, z: 0}
+ rotation: {x: 0, y: -0, z: -0, w: 1}
+ scale: {x: 1, y: 1, z: 1}
+ transformModified: 1
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 3
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecondHandSalesman.FBX b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecondHandSalesman.FBX
new file mode 100644
index 00000000..cb3f0dc6
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecondHandSalesman.FBX differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecondHandSalesman.FBX.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecondHandSalesman.FBX.meta
new file mode 100644
index 00000000..01e6481a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecondHandSalesman.FBX.meta
@@ -0,0 +1,191 @@
+fileFormatVersion: 2
+guid: 4b14b4b275040064fb2dbb9768d883eb
+timeCreated: 1461059758
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: EyeLidDown
+ 100004: EyelidUp
+ 100006: Head
+ 100008: HeadEnd
+ 100010: Hips
+ 100012: LeftArm
+ 100014: LeftEye
+ 100016: LeftFoot
+ 100018: LeftForearm
+ 100020: LeftHand
+ 100022: LeftIndex1
+ 100024: LeftIndex2
+ 100026: LeftIndexEnd
+ 100028: LeftLeg
+ 100030: LeftMiddle1
+ 100032: LeftMiddle2
+ 100034: LeftMiddleEnd
+ 100036: LeftPinky1
+ 100038: LeftPinky2
+ 100040: LeftPinkyEnd
+ 100042: LeftShoulder
+ 100044: LeftThumb1
+ 100046: LeftThumb2
+ 100048: LeftThumbEnd
+ 100050: LeftToe
+ 100052: LeftToeEnd
+ 100054: LeftUpLeg
+ 100056: Mesh
+ 100058: Mouth
+ 100060: Neck
+ 100062: RightArm
+ 100064: RightEye
+ 100066: RightFoot
+ 100068: RightForearm
+ 100070: RightHand
+ 100072: RightIndex1
+ 100074: RightIndex2
+ 100076: RightIndexEnd
+ 100078: RightLeg
+ 100080: RightMiddle1
+ 100082: RightMiddle2
+ 100084: RightMiddleEnd
+ 100086: RightPinky1
+ 100088: RightPinky2
+ 100090: RightPinkyEnd
+ 100092: RightShoulder
+ 100094: RightThumb1
+ 100096: RightThumb2
+ 100098: RightThumbEnd
+ 100100: RightToe
+ 100102: RightToeEnd
+ 100104: RightUpLeg
+ 100106: //RootNode
+ 100108: SecondHandSalesman
+ 100110: Skeleton
+ 100112: Spine1
+ 100114: Spine2
+ 400000: Controls
+ 400002: EyeLidDown
+ 400004: EyelidUp
+ 400006: Head
+ 400008: HeadEnd
+ 400010: Hips
+ 400012: LeftArm
+ 400014: LeftEye
+ 400016: LeftFoot
+ 400018: LeftForearm
+ 400020: LeftHand
+ 400022: LeftIndex1
+ 400024: LeftIndex2
+ 400026: LeftIndexEnd
+ 400028: LeftLeg
+ 400030: LeftMiddle1
+ 400032: LeftMiddle2
+ 400034: LeftMiddleEnd
+ 400036: LeftPinky1
+ 400038: LeftPinky2
+ 400040: LeftPinkyEnd
+ 400042: LeftShoulder
+ 400044: LeftThumb1
+ 400046: LeftThumb2
+ 400048: LeftThumbEnd
+ 400050: LeftToe
+ 400052: LeftToeEnd
+ 400054: LeftUpLeg
+ 400056: Mesh
+ 400058: Mouth
+ 400060: Neck
+ 400062: RightArm
+ 400064: RightEye
+ 400066: RightFoot
+ 400068: RightForearm
+ 400070: RightHand
+ 400072: RightIndex1
+ 400074: RightIndex2
+ 400076: RightIndexEnd
+ 400078: RightLeg
+ 400080: RightMiddle1
+ 400082: RightMiddle2
+ 400084: RightMiddleEnd
+ 400086: RightPinky1
+ 400088: RightPinky2
+ 400090: RightPinkyEnd
+ 400092: RightShoulder
+ 400094: RightThumb1
+ 400096: RightThumb2
+ 400098: RightThumbEnd
+ 400100: RightToe
+ 400102: RightToeEnd
+ 400104: RightUpLeg
+ 400106: SecondHandSalesman
+ 400108: //RootNode
+ 400110: Skeleton
+ 400112: Spine1
+ 400114: Spine2
+ 4300000: SecondHandSalesman
+ 7400000: Take 001
+ 9500000: //RootNode
+ 13700000: SecondHandSalesman
+ materials:
+ importMaterials: 0
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityCamera.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityCamera.fbx
new file mode 100644
index 00000000..ac7f9a2a
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityCamera.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityCamera.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityCamera.fbx.meta
new file mode 100644
index 00000000..638e0ff4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityCamera.fbx.meta
@@ -0,0 +1,115 @@
+fileFormatVersion: 2
+guid: ef8cdb4b09398294dbbad74fcc5add20
+timeCreated: 1461671449
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Camera_Cam
+ 100002: //RootNode
+ 400000: Camera_Cam
+ 400002: //RootNode
+ 2300000: Camera_Cam
+ 2300002: //RootNode
+ 3300000: Camera_Cam
+ 3300002: //RootNode
+ 4300000: Camera_Base
+ 4300002: Camera_Cam
+ 7400000: SecurityCamera_Idle
+ 9500000: //RootNode
+ materials:
+ importMaterials: 0
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations:
+ - serializedVersion: 16
+ name: SecurityCamera_Idle
+ takeName: Take 001
+ firstFrame: 0
+ lastFrame: 200
+ wrapMode: 0
+ orientationOffsetY: 0
+ level: 0
+ cycleOffset: 0
+ loop: 0
+ hasAdditiveReferencePose: 0
+ loopTime: 1
+ loopBlend: 0
+ loopBlendOrientation: 0
+ loopBlendPositionY: 0
+ loopBlendPositionXZ: 0
+ keepOriginalOrientation: 0
+ keepOriginalPositionY: 1
+ keepOriginalPositionXZ: 0
+ heightFromFeet: 0
+ mirror: 0
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
+ curves: []
+ events: []
+ transformMask:
+ - path:
+ weight: 1
+ - path: Camera_Cam
+ weight: 1
+ maskType: 0
+ maskSource: {instanceID: 0}
+ additiveReferencePoseFrame: 0
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomCollision.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomCollision.fbx
new file mode 100644
index 00000000..30f52f03
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomCollision.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomCollision.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomCollision.fbx.meta
new file mode 100644
index 00000000..c320e190
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomCollision.fbx.meta
@@ -0,0 +1,77 @@
+fileFormatVersion: 2
+guid: e4162c0d4c205614fb77d61bdf32ae20
+timeCreated: 1460477697
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: //RootNode
+ 400000: //RootNode
+ 2300000: //RootNode
+ 3300000: //RootNode
+ 4300000: Box294
+ 4300002: SecurityRoomMeshCollider
+ materials:
+ importMaterials: 0
+ materialName: 0
+ materialSearch: 1
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 0
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomEnvironment.FBX b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomEnvironment.FBX
new file mode 100644
index 00000000..7ac50695
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomEnvironment.FBX differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomEnvironment.FBX.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomEnvironment.FBX.meta
new file mode 100644
index 00000000..4745c01e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomEnvironment.FBX.meta
@@ -0,0 +1,335 @@
+fileFormatVersion: 2
+guid: 6544875a22773ee408686dd0c78d9c17
+timeCreated: 1469701135
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: BlackUnlit
+ 100002: Box309
+ 100004: Box310
+ 100006: Desk
+ 100008: Floor
+ 100010: Magazine
+ 100012: SecurityGate01
+ 100014: SecurityGateBeams
+ 100016: SecurityRoom_WallVents
+ 100018: //RootNode
+ 100020: Walls02
+ 100022: Object094
+ 100024: Box311
+ 100026: Object095
+ 100028: SecurityRoom
+ 100030: Plane001
+ 100032: Box312
+ 100034: Box313
+ 100036: Box314
+ 100038: Cylinder010
+ 100040: Object096
+ 100042: Object097
+ 100044: Box315
+ 100046: Box316
+ 100048: Box317
+ 100050: Box318
+ 100052: Box319
+ 100054: Object098
+ 100056: Cylinder011
+ 100058: Cylinder012
+ 100060: Plane002
+ 100062: AdventureGameelevatorDoor
+ 100064: Cylinder013
+ 100066: Cylinder014
+ 100068: Object099
+ 100070: Plane003
+ 100072: Plane004
+ 100074: BackWall
+ 100076: Carpet
+ 100078: Chair
+ 100080: CoffeeTable
+ 100082: Elevator
+ 100084: FloorLight
+ 100086: FloorLightGlow
+ 100088: ForegroundDetail
+ 100090: HologramEmitters
+ 100092: HologramLight
+ 100094: SecurityGate
+ 100096: WallTrim
+ 100098: WallVents
+ 100100: FrontWall
+ 100102: DeskLight
+ 100104: WallPipe
+ 100106: HologramLight02
+ 400000: BlackUnlit
+ 400002: Box309
+ 400004: Box310
+ 400006: Desk
+ 400008: Floor
+ 400010: Magazine
+ 400012: SecurityGate01
+ 400014: SecurityGateBeams
+ 400016: SecurityRoom_WallVents
+ 400018: //RootNode
+ 400020: Walls02
+ 400022: Object094
+ 400024: Box311
+ 400026: Object095
+ 400028: SecurityRoom
+ 400030: Plane001
+ 400032: Box312
+ 400034: Box313
+ 400036: Box314
+ 400038: Cylinder010
+ 400040: Object096
+ 400042: Object097
+ 400044: Box315
+ 400046: Box316
+ 400048: Box317
+ 400050: Box318
+ 400052: Box319
+ 400054: Object098
+ 400056: Cylinder011
+ 400058: Cylinder012
+ 400060: Plane002
+ 400062: AdventureGameelevatorDoor
+ 400064: Cylinder013
+ 400066: Cylinder014
+ 400068: Object099
+ 400070: Plane003
+ 400072: Plane004
+ 400074: BackWall
+ 400076: Carpet
+ 400078: Chair
+ 400080: CoffeeTable
+ 400082: Elevator
+ 400084: FloorLight
+ 400086: FloorLightGlow
+ 400088: ForegroundDetail
+ 400090: HologramEmitters
+ 400092: HologramLight
+ 400094: SecurityGate
+ 400096: WallTrim
+ 400098: WallVents
+ 400100: FrontWall
+ 400102: DeskLight
+ 400104: WallPipe
+ 400106: HologramLight02
+ 2300000: BlackUnlit
+ 2300002: Box309
+ 2300004: Box310
+ 2300006: Desk
+ 2300008: Floor
+ 2300010: Magazine
+ 2300012: SecurityGate01
+ 2300014: SecurityGateBeams
+ 2300016: SecurityRoom_WallVents
+ 2300018: Walls02
+ 2300020: Object094
+ 2300022: Box311
+ 2300024: Object095
+ 2300026: Plane001
+ 2300028: Box312
+ 2300030: Box313
+ 2300032: Box314
+ 2300034: Cylinder010
+ 2300036: Object096
+ 2300038: Object097
+ 2300040: Box315
+ 2300042: Box316
+ 2300044: Box317
+ 2300046: Box318
+ 2300048: Box319
+ 2300050: Object098
+ 2300052: Cylinder011
+ 2300054: Cylinder012
+ 2300056: Plane002
+ 2300058: AdventureGameelevatorDoor
+ 2300060: Cylinder013
+ 2300062: Cylinder014
+ 2300064: Object099
+ 2300066: Plane003
+ 2300068: Plane004
+ 2300070: BackWall
+ 2300072: Carpet
+ 2300074: Chair
+ 2300076: CoffeeTable
+ 2300078: Elevator
+ 2300080: FloorLight
+ 2300082: FloorLightGlow
+ 2300084: ForegroundDetail
+ 2300086: HologramEmitters
+ 2300088: HologramLight
+ 2300090: SecurityGate
+ 2300092: WallTrim
+ 2300094: WallVents
+ 2300096: FrontWall
+ 2300098: DeskLight
+ 2300100: WallPipe
+ 2300102: HologramLight02
+ 3300000: BlackUnlit
+ 3300002: Box309
+ 3300004: Box310
+ 3300006: Desk
+ 3300008: Floor
+ 3300010: Magazine
+ 3300012: SecurityGate01
+ 3300014: SecurityGateBeams
+ 3300016: SecurityRoom_WallVents
+ 3300018: Walls02
+ 3300020: Object094
+ 3300022: Box311
+ 3300024: Object095
+ 3300026: Plane001
+ 3300028: Box312
+ 3300030: Box313
+ 3300032: Box314
+ 3300034: Cylinder010
+ 3300036: Object096
+ 3300038: Object097
+ 3300040: Box315
+ 3300042: Box316
+ 3300044: Box317
+ 3300046: Box318
+ 3300048: Box319
+ 3300050: Object098
+ 3300052: Cylinder011
+ 3300054: Cylinder012
+ 3300056: Plane002
+ 3300058: AdventureGameelevatorDoor
+ 3300060: Cylinder013
+ 3300062: Cylinder014
+ 3300064: Object099
+ 3300066: Plane003
+ 3300068: Plane004
+ 3300070: BackWall
+ 3300072: Carpet
+ 3300074: Chair
+ 3300076: CoffeeTable
+ 3300078: Elevator
+ 3300080: FloorLight
+ 3300082: FloorLightGlow
+ 3300084: ForegroundDetail
+ 3300086: HologramEmitters
+ 3300088: HologramLight
+ 3300090: SecurityGate
+ 3300092: WallTrim
+ 3300094: WallVents
+ 3300096: FrontWall
+ 3300098: DeskLight
+ 3300100: WallPipe
+ 3300102: HologramLight02
+ 4300000: Desk
+ 4300002: SecurityGateBeams
+ 4300004: SecurityRoom_WallVents
+ 4300006: SecurityGate01
+ 4300008: Magazine
+ 4300010: Walls02
+ 4300012: Floor
+ 4300014: BlackUnlit
+ 4300016: Box310
+ 4300018: Box309
+ 4300020: Object094
+ 4300022: Object095
+ 4300024: Box311
+ 4300026: Plane001
+ 4300028: Box312
+ 4300030: Cylinder010
+ 4300032: Box314
+ 4300034: Box313
+ 4300036: Object096
+ 4300038: Object097
+ 4300040: Box318
+ 4300042: Box315
+ 4300044: Box316
+ 4300046: Box317
+ 4300048: Box319
+ 4300050: Object098
+ 4300052: Plane002
+ 4300054: Cylinder012
+ 4300056: Cylinder011
+ 4300058: AdventureGameelevatorDoor
+ 4300060: Plane003
+ 4300062: Plane004
+ 4300064: Cylinder013
+ 4300066: Cylinder014
+ 4300068: Object099
+ 4300070: WallVents
+ 4300072: SecurityGate
+ 4300074: ForegroundDetail
+ 4300076: Carpet
+ 4300078: WallTrim
+ 4300080: FloorLight
+ 4300082: BackWall
+ 4300084: Chair
+ 4300086: CoffeeTable
+ 4300088: FloorLightGlow
+ 4300090: HologramLight
+ 4300092: Elevator
+ 4300094: HologramEmitters
+ 4300096: FrontWall
+ 4300098: WallPipe
+ 4300100: DeskLight
+ 4300102: HologramLight02
+ materials:
+ importMaterials: 1
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleCurves: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 0
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomHologramDNA.FBX b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomHologramDNA.FBX
new file mode 100644
index 00000000..186797dc
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomHologramDNA.FBX differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomHologramDNA.FBX.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomHologramDNA.FBX.meta
new file mode 100644
index 00000000..b20989a8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/SecurityRoomHologramDNA.FBX.meta
@@ -0,0 +1,76 @@
+fileFormatVersion: 2
+guid: 7f436a69c8da2e64383bee548359ab14
+timeCreated: 1473430324
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: //RootNode
+ 400000: //RootNode
+ 2300000: //RootNode
+ 3300000: //RootNode
+ 4300000: Object003
+ materials:
+ importMaterials: 1
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleCurves: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 0
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Sharkman.fbx b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Sharkman.fbx
new file mode 100644
index 00000000..ff21594d
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Sharkman.fbx differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Sharkman.fbx.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Sharkman.fbx.meta
new file mode 100644
index 00000000..9e4ebae3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Models/Sharkman.fbx.meta
@@ -0,0 +1,198 @@
+fileFormatVersion: 2
+guid: 208f4309afd2a5e41864618ed2613adf
+timeCreated: 1461152368
+licenseType: Store
+ModelImporter:
+ serializedVersion: 19
+ fileIDToRecycleName:
+ 100000: Controls
+ 100002: Eyes
+ 100004: Head
+ 100006: HeadEnd
+ 100008: Hips
+ 100010: LeftArm
+ 100012: LeftClavicle
+ 100014: LeftFoot
+ 100016: LeftHand
+ 100018: LeftIndex1
+ 100020: LeftIndex2
+ 100022: LeftIndex3
+ 100024: LeftIndexEnd
+ 100026: LeftLeg
+ 100028: LeftMiddle1
+ 100030: LeftMiddle2
+ 100032: LeftMiddle3
+ 100034: LeftMiddleEnd
+ 100036: LeftPinky1
+ 100038: LeftPinky2
+ 100040: LeftPinky3
+ 100042: LeftPinkyEnd
+ 100044: LeftThumb1
+ 100046: LeftThumb2
+ 100048: LeftThumb3
+ 100050: LeftThumbEnd
+ 100052: LeftToe
+ 100054: LeftToeEnd
+ 100056: LeftUpLeg
+ 100058: LeftUpperArm
+ 100060: Mesh
+ 100062: Mouth
+ 100064: RightArm
+ 100066: RightClavicle
+ 100068: RightFoot
+ 100070: RightHand
+ 100072: RightIndex1
+ 100074: RightIndex2
+ 100076: RightIndex3
+ 100078: RightIndexEnd
+ 100080: RightLeg
+ 100082: RightMiddle1
+ 100084: RightMiddle2
+ 100086: RightMiddle3
+ 100088: RightMiddleEnd
+ 100090: RightPinky1
+ 100092: RightPinky2
+ 100094: RightPinky3
+ 100096: RightPinkyEnd
+ 100098: RightThumb1
+ 100100: RightThumb2
+ 100102: RightThumb3
+ 100104: RightThumbEnd
+ 100106: RightToe
+ 100108: RightToeEnd
+ 100110: RightUpLeg
+ 100112: RightUpperArm
+ 100114: //RootNode
+ 100116: Sharkman
+ 100118: Skeleton
+ 100120: Spine1
+ 100122: Spine2
+ 400000: Controls
+ 400002: Eyes
+ 400004: Head
+ 400006: HeadEnd
+ 400008: Hips
+ 400010: LeftArm
+ 400012: LeftClavicle
+ 400014: LeftFoot
+ 400016: LeftHand
+ 400018: LeftIndex1
+ 400020: LeftIndex2
+ 400022: LeftIndex3
+ 400024: LeftIndexEnd
+ 400026: LeftLeg
+ 400028: LeftMiddle1
+ 400030: LeftMiddle2
+ 400032: LeftMiddle3
+ 400034: LeftMiddleEnd
+ 400036: LeftPinky1
+ 400038: LeftPinky2
+ 400040: LeftPinky3
+ 400042: LeftPinkyEnd
+ 400044: LeftThumb1
+ 400046: LeftThumb2
+ 400048: LeftThumb3
+ 400050: LeftThumbEnd
+ 400052: LeftToe
+ 400054: LeftToeEnd
+ 400056: LeftUpLeg
+ 400058: LeftUpperArm
+ 400060: Mesh
+ 400062: Mouth
+ 400064: RightArm
+ 400066: RightClavicle
+ 400068: RightFoot
+ 400070: RightHand
+ 400072: RightIndex1
+ 400074: RightIndex2
+ 400076: RightIndex3
+ 400078: RightIndexEnd
+ 400080: RightLeg
+ 400082: RightMiddle1
+ 400084: RightMiddle2
+ 400086: RightMiddle3
+ 400088: RightMiddleEnd
+ 400090: RightPinky1
+ 400092: RightPinky2
+ 400094: RightPinky3
+ 400096: RightPinkyEnd
+ 400098: RightThumb1
+ 400100: RightThumb2
+ 400102: RightThumb3
+ 400104: RightThumbEnd
+ 400106: RightToe
+ 400108: RightToeEnd
+ 400110: RightUpLeg
+ 400112: RightUpperArm
+ 400114: //RootNode
+ 400116: Sharkman
+ 400118: Skeleton
+ 400120: Spine1
+ 400122: Spine2
+ 4300000: Sharkman
+ 9500000: //RootNode
+ 13700000: Sharkman
+ materials:
+ importMaterials: 1
+ materialName: 1
+ materialSearch: 2
+ animations:
+ legacyGenerateAnimations: 4
+ bakeSimulation: 0
+ resampleRotations: 1
+ optimizeGameObjects: 0
+ motionNodeName:
+ animationImportErrors:
+ animationImportWarnings:
+ animationRetargetingWarnings:
+ animationDoRetargetingWarnings: 0
+ animationCompression: 1
+ animationRotationError: 0.5
+ animationPositionError: 0.5
+ animationScaleError: 0.5
+ animationWrapMode: 0
+ extraExposedTransformPaths: []
+ clipAnimations: []
+ isReadable: 1
+ meshes:
+ lODScreenPercentages: []
+ globalScale: 1
+ meshCompression: 0
+ addColliders: 0
+ importBlendShapes: 1
+ swapUVChannels: 0
+ generateSecondaryUV: 0
+ useFileUnits: 1
+ optimizeMeshForGPU: 1
+ keepQuads: 0
+ weldVertices: 1
+ secondaryUVAngleDistortion: 8
+ secondaryUVAreaDistortion: 15.000001
+ secondaryUVHardAngle: 88
+ secondaryUVPackMargin: 4
+ useFileScale: 1
+ tangentSpace:
+ normalSmoothAngle: 60
+ normalImportMode: 0
+ tangentImportMode: 3
+ importAnimation: 1
+ copyAvatar: 0
+ humanDescription:
+ human: []
+ skeleton: []
+ armTwist: 0.5
+ foreArmTwist: 0.5
+ upperLegTwist: 0.5
+ legTwist: 0.5
+ armStretch: 0.05
+ legStretch: 0.05
+ feetSpacing: 0
+ rootMotionBoneName:
+ hasTranslationDoF: 0
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
+ animationType: 2
+ humanoidOversampling: 1
+ additionalBone: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs.meta
new file mode 100644
index 00000000..0e1af20b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: e4f7b899dfea9ff4ca32a8589651c355
+folderAsset: yes
+timeCreated: 1456504366
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/AudioParent.prefab b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/AudioParent.prefab
new file mode 100644
index 00000000..a0677d9d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/AudioParent.prefab
@@ -0,0 +1,353 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1 &106300
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 429794}
+ - 82: {fileID: 8260042}
+ m_Layer: 0
+ m_Name: Ambient
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &114248
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 472252}
+ m_Layer: 0
+ m_Name: AudioParent
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &125858
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 409056}
+ - 82: {fileID: 8299186}
+ m_Layer: 0
+ m_Name: FX
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &147032
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 474294}
+ - 82: {fileID: 8277418}
+ m_Layer: 0
+ m_Name: VO
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &409056
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 125858}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 472252}
+ m_RootOrder: 0
+--- !u!4 &429794
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 106300}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 472252}
+ m_RootOrder: 2
+--- !u!4 &472252
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 114248}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 409056}
+ - {fileID: 474294}
+ - {fileID: 429794}
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+--- !u!4 &474294
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 147032}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 472252}
+ m_RootOrder: 1
+--- !u!82 &8260042
+AudioSource:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 106300}
+ m_Enabled: 1
+ serializedVersion: 4
+ OutputAudioMixerGroup: {fileID: 0}
+ m_audioClip: {fileID: 0}
+ m_PlayOnAwake: 1
+ m_Volume: 1
+ m_Pitch: 1
+ Loop: 1
+ Mute: 0
+ Spatialize: 0
+ Priority: 128
+ DopplerLevel: 1
+ MinDistance: 1
+ MaxDistance: 500
+ Pan2D: 0
+ rolloffMode: 0
+ BypassEffects: 0
+ BypassListenerEffects: 0
+ BypassReverbZones: 0
+ rolloffCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ panLevelCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ spreadCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ reverbZoneMixCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+--- !u!82 &8277418
+AudioSource:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 147032}
+ m_Enabled: 1
+ serializedVersion: 4
+ OutputAudioMixerGroup: {fileID: 0}
+ m_audioClip: {fileID: 0}
+ m_PlayOnAwake: 0
+ m_Volume: 1
+ m_Pitch: 1
+ Loop: 0
+ Mute: 0
+ Spatialize: 0
+ Priority: 128
+ DopplerLevel: 1
+ MinDistance: 1
+ MaxDistance: 500
+ Pan2D: 0
+ rolloffMode: 0
+ BypassEffects: 0
+ BypassListenerEffects: 0
+ BypassReverbZones: 0
+ rolloffCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ panLevelCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ spreadCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ reverbZoneMixCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+--- !u!82 &8299186
+AudioSource:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 125858}
+ m_Enabled: 1
+ serializedVersion: 4
+ OutputAudioMixerGroup: {fileID: 0}
+ m_audioClip: {fileID: 0}
+ m_PlayOnAwake: 0
+ m_Volume: 1
+ m_Pitch: 1
+ Loop: 0
+ Mute: 0
+ Spatialize: 0
+ Priority: 128
+ DopplerLevel: 1
+ MinDistance: 1
+ MaxDistance: 500
+ Pan2D: 0
+ rolloffMode: 0
+ BypassEffects: 0
+ BypassListenerEffects: 0
+ BypassReverbZones: 0
+ rolloffCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ panLevelCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ spreadCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ reverbZoneMixCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+--- !u!1001 &100100000
+Prefab:
+ m_ObjectHideFlags: 1
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications: []
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 0}
+ m_RootGameObject: {fileID: 114248}
+ m_IsPrefabParent: 1
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/AudioParent.prefab.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/AudioParent.prefab.meta
new file mode 100644
index 00000000..4b700a93
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/AudioParent.prefab.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 0036c73aed31ec14fbbf45853c79fc14
+timeCreated: 1462786955
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Interactable.prefab b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Interactable.prefab
new file mode 100644
index 00000000..e0f8504f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Interactable.prefab
@@ -0,0 +1,171 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1 &105628
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 424910}
+ - 114: {fileID: 11441280}
+ m_Layer: 0
+ m_Name: DefaultReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &169354
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 491826}
+ m_Layer: 0
+ m_Name: InteractionLocation
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &194222
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 474418}
+ - 65: {fileID: 6512962}
+ - 114: {fileID: 11485606}
+ - 114: {fileID: 11484708}
+ m_Layer: 0
+ m_Name: Interactable
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &424910
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 105628}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 474418}
+ m_RootOrder: 1
+--- !u!4 &474418
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 194222}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 491826}
+ - {fileID: 424910}
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+--- !u!4 &491826
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 169354}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 474418}
+ m_RootOrder: 0
+--- !u!65 &6512962
+BoxCollider:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 194222}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Size: {x: 1, y: 1, z: 1}
+ m_Center: {x: 0, y: 0, z: 0}
+--- !u!114 &11441280
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 105628}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions: []
+--- !u!114 &11484708
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 194222}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ interactionLocation: {fileID: 491826}
+ conditionCollections: []
+ defaultReactionCollection: {fileID: 11441280}
+--- !u!114 &11485606
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 194222}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -1862395651, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Delegates:
+ - eventID: 4
+ callback:
+ m_PersistentCalls:
+ m_Calls:
+ - m_Target: {fileID: 0}
+ m_MethodName:
+ m_Mode: 1
+ m_Arguments:
+ m_ObjectArgument: {fileID: 0}
+ m_ObjectArgumentAssemblyTypeName:
+ m_IntArgument: 0
+ m_FloatArgument: 0
+ m_StringArgument:
+ m_BoolArgument: 0
+ m_CallState: 2
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ delegates: []
+--- !u!1001 &100100000
+Prefab:
+ m_ObjectHideFlags: 1
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications: []
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 0}
+ m_RootGameObject: {fileID: 194222}
+ m_IsPrefabParent: 1
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Interactable.prefab.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Interactable.prefab.meta
new file mode 100644
index 00000000..08443a9e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Interactable.prefab.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: d48734bd22479a14cb1a52b40aa09db4
+timeCreated: 1466765579
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/ItemSlot.prefab b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/ItemSlot.prefab
new file mode 100644
index 00000000..380111f0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/ItemSlot.prefab
@@ -0,0 +1,184 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1 &154146
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 224: {fileID: 22420724}
+ - 222: {fileID: 22230358}
+ - 114: {fileID: 11461466}
+ m_Layer: 5
+ m_Name: ItemImage
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &157506
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 224: {fileID: 22466050}
+ - 222: {fileID: 22220842}
+ - 114: {fileID: 11415000}
+ m_Layer: 5
+ m_Name: BackgroundImage
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &193246
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 224: {fileID: 22480890}
+ m_Layer: 5
+ m_Name: ItemSlot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &11415000
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 157506}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 21300000, guid: 12870f9075386c147ba1bbabcaaaf033, type: 3}
+ m_Type: 0
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!114 &11461466
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 154146}
+ m_Enabled: 0
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 0}
+ m_Type: 0
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!222 &22220842
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 157506}
+--- !u!222 &22230358
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 154146}
+--- !u!224 &22420724
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 154146}
+ 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: 22480890}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0.000061035156, y: 0}
+ m_SizeDelta: {x: 100, y: 100}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &22466050
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 157506}
+ 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: 22480890}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 100, y: 100}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &22480890
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 193246}
+ 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: 22466050}
+ - {fileID: 22420724}
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 0, y: 0}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 0, y: 0}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1001 &100100000
+Prefab:
+ m_ObjectHideFlags: 1
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications: []
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 0}
+ m_RootGameObject: {fileID: 193246}
+ m_IsPrefabParent: 1
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/ItemSlot.prefab.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/ItemSlot.prefab.meta
new file mode 100644
index 00000000..ecdd9640
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/ItemSlot.prefab.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6c7afed0b4d56a047a9a515074a2e83f
+timeCreated: 1466760175
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Market.prefab b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Market.prefab
new file mode 100644
index 00000000..c7c119b2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Market.prefab
@@ -0,0 +1,22642 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1 &100042
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 460548}
+ m_Layer: 8
+ m_Name: RightPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &100094
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 440746}
+ m_Layer: 8
+ m_Name: LeftIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &100144
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 491860}
+ m_Layer: 8
+ m_Name: HousingRightDoor2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &100216
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 442246}
+ m_Layer: 8
+ m_Name: LeftMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &100708
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 412720}
+ m_Layer: 8
+ m_Name: Spine2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &100994
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 471836}
+ m_Layer: 8
+ m_Name: LeftPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &101414
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 495126}
+ m_Layer: 8
+ m_Name: Mouth
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &101492
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 454474}
+ - 114: {fileID: 11457004}
+ m_Layer: 0
+ m_Name: CameraRig
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &101516
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 443418}
+ m_Layer: 8
+ m_Name: RightToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &101630
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 430172}
+ m_Layer: 8
+ m_Name: RightPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &101726
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 408212}
+ m_Layer: 8
+ m_Name: LeftIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &102298
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 423944}
+ - 95: {fileID: 9592990}
+ m_Layer: 8
+ m_Name: BirdGlassesCutscene
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &102740
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 464436}
+ m_Layer: 8
+ m_Name: HousingRightDoorEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &102794
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 445214}
+ m_Layer: 8
+ m_Name: RightDownWingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &103252
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 456134}
+ m_Layer: 8
+ m_Name: EyelidUp
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &103262
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 434402}
+ m_Layer: 8
+ m_Name: RightShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &103350
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 423334}
+ m_Layer: 8
+ m_Name: LeftMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &103492
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 467192}
+ m_Layer: 8
+ m_Name: LeftThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &103876
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 491496}
+ m_Layer: 8
+ m_Name: LeftThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &104370
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 497050}
+ m_Layer: 8
+ m_Name: LeftIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &104380
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 450624}
+ m_Layer: 8
+ m_Name: RightToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &105040
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 462424}
+ m_Layer: 8
+ m_Name: LeftBackToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &105236
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 497654}
+ m_Layer: 8
+ m_Name: Hair
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &105322
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 415528}
+ m_Layer: 8
+ m_Name: LeftIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &105556
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 415802}
+ m_Layer: 8
+ m_Name: LeftPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &105822
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 486820}
+ m_Layer: 8
+ m_Name: RightMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &105852
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 493742}
+ m_Layer: 8
+ m_Name: LeftToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &106114
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 422584}
+ m_Layer: 8
+ m_Name: RightIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &106264
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 458418}
+ m_Layer: 8
+ m_Name: RightThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &106324
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 420722}
+ m_Layer: 8
+ m_Name: RightMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &106552
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 413628}
+ - 137: {fileID: 13789452}
+ m_Layer: 8
+ m_Name: Sharkman
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &107144
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 430936}
+ m_Layer: 8
+ m_Name: LeftUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &107186
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 457102}
+ m_Layer: 8
+ m_Name: Mouth
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &107466
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 440404}
+ m_Layer: 8
+ m_Name: RightIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &107758
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 431074}
+ m_Layer: 8
+ m_Name: RightMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &107802
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 421410}
+ m_Layer: 8
+ m_Name: RightPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &108060
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 406528}
+ m_Layer: 8
+ m_Name: LeftBackToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &108064
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 415040}
+ m_Layer: 8
+ m_Name: LeftUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &108212
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 490678}
+ m_Layer: 8
+ m_Name: LeftPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &108986
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 442354}
+ m_Layer: 8
+ m_Name: LeftPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &109300
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 468914}
+ m_Layer: 8
+ m_Name: RightIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &109338
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 440468}
+ m_Layer: 8
+ m_Name: RightArm3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &109908
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 442280}
+ m_Layer: 8
+ m_Name: RightIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &109942
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 490410}
+ m_Layer: 8
+ m_Name: LeftArm5
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &110292
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 419938}
+ m_Layer: 8
+ m_Name: LeftToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &110576
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 439088}
+ m_Layer: 8
+ m_Name: RightIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &111144
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 480056}
+ m_Layer: 8
+ m_Name: RightUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &111178
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 403200}
+ m_Layer: 8
+ m_Name: LeftUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &111500
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 433270}
+ m_Layer: 8
+ m_Name: LeftToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &111738
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 493278}
+ m_Layer: 8
+ m_Name: RightThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &112548
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 499018}
+ m_Layer: 8
+ m_Name: RightToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &113372
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 433616}
+ m_Layer: 8
+ m_Name: RightPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &113514
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 415170}
+ m_Layer: 8
+ m_Name: LeftMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &114392
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 438988}
+ m_Layer: 8
+ m_Name: RightPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &114396
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 475038}
+ m_Layer: 8
+ m_Name: RightThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &114786
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 460096}
+ m_Layer: 8
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &115216
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 422602}
+ m_Layer: 8
+ m_Name: LeftThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &115628
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 421680}
+ m_Layer: 8
+ m_Name: RightMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &116216
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 484526}
+ - 108: {fileID: 10811876}
+ m_Layer: 0
+ m_Name: CharacterLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &116396
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 465452}
+ m_Layer: 8
+ m_Name: RightBackToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &116488
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 493252}
+ m_Layer: 8
+ m_Name: RightArm2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &117184
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 479434}
+ m_Layer: 8
+ m_Name: RightUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &117322
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 403356}
+ - 95: {fileID: 9519064}
+ m_Layer: 8
+ m_Name: FruitVendor
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &117348
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 470050}
+ m_Layer: 8
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &117522
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 434004}
+ m_Layer: 8
+ m_Name: LeftThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &117798
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 454338}
+ m_Layer: 8
+ m_Name: LeftRingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &117978
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 421558}
+ m_Layer: 8
+ m_Name: LeftFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &117994
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 408158}
+ m_Layer: 8
+ m_Name: Spine1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &118318
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 467622}
+ m_Layer: 8
+ m_Name: LeftLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &118450
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 453264}
+ m_Layer: 8
+ m_Name: HeadEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &118478
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 457070}
+ m_Layer: 8
+ m_Name: RightShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &118748
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 444308}
+ - 198: {fileID: 19815056}
+ - 199: {fileID: 19960112}
+ m_Layer: 0
+ m_Name: Flies
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &118788
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 455834}
+ m_Layer: 8
+ m_Name: LeftShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &118866
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 403822}
+ - 95: {fileID: 9544196}
+ m_Layer: 8
+ m_Name: SecondHandSalesman
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &119172
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 415392}
+ m_Layer: 8
+ m_Name: LeftIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &119980
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 405952}
+ m_Layer: 8
+ m_Name: RightThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &120588
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 443490}
+ m_Layer: 8
+ m_Name: Hips
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &120640
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 487960}
+ m_Layer: 8
+ m_Name: Housing
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &120664
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 469424}
+ m_Layer: 8
+ m_Name: Spine
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &121496
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 494522}
+ m_Layer: 8
+ m_Name: LeftThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &121694
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 401266}
+ m_Layer: 8
+ m_Name: LeftThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &122160
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 453162}
+ m_Layer: 8
+ m_Name: LeftThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &122292
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 422468}
+ m_Layer: 8
+ m_Name: RightIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &122392
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 482172}
+ m_Layer: 8
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &122810
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 484118}
+ m_Layer: 8
+ m_Name: Controls
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &122818
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 434100}
+ m_Layer: 8
+ m_Name: Spine1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &122822
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 483916}
+ m_Layer: 8
+ m_Name: RightMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &123204
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 442224}
+ m_Layer: 8
+ m_Name: RightArm6
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &123266
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 477666}
+ m_Layer: 8
+ m_Name: RightRingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &123680
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 471830}
+ m_Layer: 8
+ m_Name: LeftUpWing
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &123804
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 497224}
+ m_Layer: 8
+ m_Name: RightPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &123838
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 418242}
+ m_Layer: 8
+ m_Name: LeftPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &123866
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 493576}
+ m_Layer: 8
+ m_Name: LeftThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &123990
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 497250}
+ m_Layer: 8
+ m_Name: LeftPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &124044
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 403876}
+ m_Layer: 8
+ m_Name: RightIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &124054
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 474458}
+ m_Layer: 8
+ m_Name: LeftMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &124506
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 413852}
+ m_Layer: 8
+ m_Name: RightToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &124862
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 425294}
+ m_Layer: 8
+ m_Name: Tail
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &125658
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 445090}
+ m_Layer: 8
+ m_Name: LeftPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &125780
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 442680}
+ m_Layer: 8
+ m_Name: RightArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &125790
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 449694}
+ m_Layer: 8
+ m_Name: RightMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &126250
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 431906}
+ m_Layer: 8
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &126824
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 465474}
+ m_Layer: 8
+ m_Name: RightLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &126846
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 493568}
+ m_Layer: 8
+ m_Name: UpperEyeLids
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &128028
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 482982}
+ m_Layer: 8
+ m_Name: RightArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &128462
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 488402}
+ m_Layer: 8
+ m_Name: Spine2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &128714
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 405026}
+ m_Layer: 8
+ m_Name: LeftArm3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &128760
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 497420}
+ m_Layer: 8
+ m_Name: LeftArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &128810
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 481352}
+ m_Layer: 8
+ m_Name: LeftDownWing
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &128874
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 434838}
+ m_Layer: 8
+ m_Name: LeftEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &129046
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 469644}
+ - 137: {fileID: 13757690}
+ m_Layer: 8
+ m_Name: Bird
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &129640
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 476964}
+ m_Layer: 8
+ m_Name: HousingLeftDoor1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &130578
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 476886}
+ m_Layer: 8
+ m_Name: LeftMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &130586
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 454734}
+ m_Layer: 8
+ m_Name: LeftThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &130656
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 467682}
+ m_Layer: 8
+ m_Name: LeftHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &130776
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 490722}
+ m_Layer: 8
+ m_Name: RightHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &131008
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 432278}
+ m_Layer: 8
+ m_Name: RightEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &131124
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 477314}
+ m_Layer: 8
+ m_Name: LeftIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &131278
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 465008}
+ m_Layer: 8
+ m_Name: LeftShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &131808
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 474548}
+ m_Layer: 8
+ m_Name: RightThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &131962
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 460238}
+ m_Layer: 8
+ m_Name: LeftUpperArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &132466
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 427942}
+ m_Layer: 8
+ m_Name: RightUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &132934
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 476106}
+ m_Layer: 8
+ m_Name: LeftPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &132992
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 461222}
+ m_Layer: 8
+ m_Name: LeftArm4
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &133330
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 496152}
+ - 198: {fileID: 19830806}
+ - 199: {fileID: 19912398}
+ m_Layer: 0
+ m_Name: Flies
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &133584
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 447634}
+ m_Layer: 8
+ m_Name: RightThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &134590
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 482116}
+ - 137: {fileID: 13773728}
+ m_Layer: 8
+ m_Name: SecondHandSalesman
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &134682
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 462992}
+ m_Layer: 8
+ m_Name: RightIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &134686
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 425100}
+ m_Layer: 8
+ m_Name: RightPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &135988
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 489818}
+ m_Layer: 8
+ m_Name: LeftIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &136020
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 434708}
+ m_Layer: 8
+ m_Name: LeftFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &136498
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 430704}
+ m_Layer: 8
+ m_Name: Hair
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &136520
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 466634}
+ m_Layer: 8
+ m_Name: LeftMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &136526
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 425102}
+ m_Layer: 8
+ m_Name: HairEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &136590
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 402526}
+ m_Layer: 8
+ m_Name: RightUpperArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &136784
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 454062}
+ m_Layer: 8
+ m_Name: LeftArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &136796
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 439000}
+ m_Layer: 8
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &136848
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 412358}
+ m_Layer: 8
+ m_Name: RightForeArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &136882
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 436792}
+ m_Layer: 8
+ m_Name: RightFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &137588
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 413612}
+ m_Layer: 8
+ m_Name: LeftIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &137864
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 431956}
+ m_Layer: 8
+ m_Name: RightIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &138548
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 476550}
+ m_Layer: 8
+ m_Name: RightRing2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &138580
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 402048}
+ m_Layer: 8
+ m_Name: RightLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &138592
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 483460}
+ m_Layer: 8
+ m_Name: Bird
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &138762
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 429756}
+ m_Layer: 8
+ m_Name: RightIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &138910
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 442562}
+ m_Layer: 8
+ m_Name: RightArm4
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &138934
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 429514}
+ m_Layer: 8
+ m_Name: RightRingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &139526
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 479834}
+ m_Layer: 8
+ m_Name: Controls
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &139652
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 414452}
+ m_Layer: 8
+ m_Name: LeftMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &139920
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 455352}
+ m_Layer: 8
+ m_Name: RightToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &139944
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 422238}
+ m_Layer: 8
+ m_Name: LeftIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &140238
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 492792}
+ m_Layer: 8
+ m_Name: LeftThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &140840
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 420918}
+ m_Layer: 8
+ m_Name: RightThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &141100
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 441158}
+ m_Layer: 8
+ m_Name: RightShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &141272
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 488536}
+ m_Layer: 8
+ m_Name: LeftLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &142186
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 411596}
+ m_Layer: 8
+ m_Name: RightIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &142196
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 473920}
+ m_Layer: 8
+ m_Name: LeftIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &142900
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 455132}
+ m_Layer: 8
+ m_Name: RightForearm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &143146
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 438456}
+ m_Layer: 8
+ m_Name: RightArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &143712
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 422402}
+ m_Layer: 8
+ m_Name: LeftArm1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &144024
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 456012}
+ m_Layer: 8
+ m_Name: LeftLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &144138
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 438952}
+ - 95: {fileID: 9551194}
+ - 208: {fileID: 20808916}
+ m_Layer: 8
+ m_Name: CoffeeBot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &144584
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 409394}
+ m_Layer: 8
+ m_Name: EyeLidDown
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &144784
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 421166}
+ - 33: {fileID: 3345386}
+ - 23: {fileID: 2311254}
+ m_Layer: 8
+ m_Name: CoffeeCup
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &144940
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 449206}
+ m_Layer: 8
+ m_Name: Spine1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &145022
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 425682}
+ m_Layer: 8
+ m_Name: LeftUpWingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &145030
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 417226}
+ m_Layer: 8
+ m_Name: RightMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &145218
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 497378}
+ - 95: {fileID: 9509312}
+ m_Layer: 8
+ m_Name: Customer
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &145232
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 476862}
+ m_Layer: 8
+ m_Name: RightToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &145480
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 400286}
+ m_Layer: 8
+ m_Name: LeftArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &145706
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 428568}
+ m_Layer: 8
+ m_Name: Controls
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &145708
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 458990}
+ m_Layer: 8
+ m_Name: LeftRing3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &145884
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 415678}
+ m_Layer: 8
+ m_Name: LeftLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &146008
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 406648}
+ m_Layer: 8
+ m_Name: RightThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &146228
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 475246}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &146632
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 483206}
+ m_Layer: 8
+ m_Name: RightRing2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &146724
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 422562}
+ m_Layer: 8
+ m_Name: LeftRing1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &146950
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 494952}
+ - 212: {fileID: 21258622}
+ - 95: {fileID: 9524100}
+ m_Layer: 0
+ m_Name: MarketFishSignNeon
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &147610
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 497426}
+ m_Layer: 8
+ m_Name: LeftShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &147668
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 429278}
+ - 137: {fileID: 13793382}
+ m_Layer: 8
+ m_Name: Customer
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &148116
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 415278}
+ m_Layer: 8
+ m_Name: LeftMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &148136
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 434726}
+ m_Layer: 8
+ m_Name: RightArmEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &148212
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 499306}
+ m_Layer: 8
+ m_Name: RightHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &148562
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 499242}
+ m_Layer: 8
+ m_Name: LeftMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &148578
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 480472}
+ m_Layer: 8
+ m_Name: Controls
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &149360
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 411756}
+ m_Layer: 8
+ m_Name: RightRing3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &149548
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 444674}
+ m_Layer: 8
+ m_Name: LeftLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &149624
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 409572}
+ m_Layer: 8
+ m_Name: RightMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &149662
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 418728}
+ m_Layer: 8
+ m_Name: LeftHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &149748
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 450828}
+ m_Layer: 8
+ m_Name: Hips
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &149926
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 421394}
+ m_Layer: 8
+ m_Name: RightIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &149944
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 463026}
+ m_Layer: 8
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &150248
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 468086}
+ m_Layer: 8
+ m_Name: RightRing3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &150674
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 453280}
+ m_Layer: 8
+ m_Name: RightLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &150918
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 466670}
+ m_Layer: 8
+ m_Name: RightToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &150996
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 456910}
+ m_Layer: 8
+ m_Name: RightArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &151030
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 434372}
+ m_Layer: 8
+ m_Name: RightMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &151380
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 464348}
+ m_Layer: 8
+ m_Name: ToothEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &151486
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 460634}
+ m_Layer: 8
+ m_Name: LeftIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &151576
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 404062}
+ m_Layer: 8
+ m_Name: RightDownWing
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &151712
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 446844}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &151854
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 406682}
+ m_Layer: 8
+ m_Name: LeftPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &151874
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 475882}
+ m_Layer: 8
+ m_Name: LeftMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &152084
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 446572}
+ m_Layer: 8
+ m_Name: LeftIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &152360
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 493946}
+ m_Layer: 8
+ m_Name: RightIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &152400
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 446674}
+ m_Layer: 8
+ m_Name: Lid
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &152402
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 447806}
+ m_Layer: 8
+ m_Name: RightThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &153026
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 491784}
+ m_Layer: 8
+ m_Name: Controls
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &153360
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 444716}
+ m_Layer: 8
+ m_Name: RightPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &154458
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 436912}
+ - 95: {fileID: 9588206}
+ m_Layer: 8
+ m_Name: Sharkman
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &154632
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 439072}
+ - 33: {fileID: 3324370}
+ - 23: {fileID: 2309628}
+ - 95: {fileID: 9551032}
+ m_Layer: 8
+ m_Name: CoffeeBotSigns
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &154714
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 485754}
+ m_Layer: 8
+ m_Name: RightThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &154764
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 438378}
+ m_Layer: 8
+ m_Name: RightPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &155676
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 410594}
+ m_Layer: 8
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &155818
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 489608}
+ m_Layer: 8
+ m_Name: Hips
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &155952
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 498554}
+ m_Layer: 8
+ m_Name: LeftRing1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &156460
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 494876}
+ m_Layer: 8
+ m_Name: LeftThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &157048
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 475962}
+ m_Layer: 8
+ m_Name: RightThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &157248
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 490070}
+ m_Layer: 8
+ m_Name: LeftThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &158016
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 433740}
+ m_Layer: 8
+ m_Name: LeftThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &158294
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 462586}
+ m_Layer: 8
+ m_Name: LeftFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &158522
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 425242}
+ m_Layer: 8
+ m_Name: Spine2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &158658
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 410978}
+ m_Layer: 8
+ m_Name: RightMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &158684
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 445232}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &158842
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 420036}
+ m_Layer: 8
+ m_Name: RightUpWingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &159406
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 417256}
+ m_Layer: 8
+ m_Name: LeftMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &159614
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 479344}
+ m_Layer: 8
+ m_Name: LeftHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &160126
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 465426}
+ m_Layer: 8
+ m_Name: LeftThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &160182
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 474380}
+ m_Layer: 8
+ m_Name: RightThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &160810
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 484896}
+ m_Layer: 8
+ m_Name: RightFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &161136
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 493228}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &161140
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 423876}
+ m_Layer: 8
+ m_Name: LeftThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &161908
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 485058}
+ m_Layer: 8
+ m_Name: RightToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &162100
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 444298}
+ m_Layer: 8
+ m_Name: Mouth
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &162232
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 491310}
+ m_Layer: 8
+ m_Name: HousingRightDoor1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &162328
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 434336}
+ m_Layer: 8
+ m_Name: LeftRingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &162430
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 443742}
+ m_Layer: 8
+ m_Name: RightPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &162738
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 416220}
+ m_Layer: 8
+ m_Name: LeftIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &162886
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 415786}
+ m_Layer: 8
+ m_Name: RightPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &163040
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 409440}
+ m_Layer: 8
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &163144
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 499978}
+ m_Layer: 8
+ m_Name: joint26
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &163330
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 442992}
+ m_Layer: 8
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &163580
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 465596}
+ m_Layer: 8
+ m_Name: Mouth
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &163658
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 453292}
+ m_Layer: 8
+ m_Name: LeftUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &164304
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 450594}
+ m_Layer: 8
+ m_Name: HeadEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &164680
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 471258}
+ - 33: {fileID: 3373858}
+ - 23: {fileID: 2307474}
+ m_Layer: 8
+ m_Name: Coin
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &165198
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 425182}
+ m_Layer: 8
+ m_Name: LeftPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &165548
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 408966}
+ m_Layer: 8
+ m_Name: LeftIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &165588
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 426730}
+ m_Layer: 8
+ m_Name: LeftArmEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &165668
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 442056}
+ m_Layer: 8
+ m_Name: LeftIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &165796
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 434742}
+ m_Layer: 8
+ m_Name: LeftRing3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &166038
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 405900}
+ - 64: {fileID: 6426692}
+ - 114: {fileID: 11471296}
+ m_Layer: 0
+ m_Name: Market
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &166050
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 472986}
+ m_Layer: 8
+ m_Name: RightLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &166240
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 495366}
+ m_Layer: 8
+ m_Name: RightClavicle
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &166696
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 488334}
+ m_Layer: 8
+ m_Name: spine2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &167052
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 477826}
+ m_Layer: 8
+ m_Name: RightMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &167666
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 406386}
+ m_Layer: 8
+ m_Name: RightIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &167882
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 445972}
+ m_Layer: 8
+ m_Name: RightThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &168166
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 453648}
+ - 20: {fileID: 2065440}
+ - 124: {fileID: 12480208}
+ - 92: {fileID: 9211216}
+ - 114: {fileID: 11428460}
+ m_Layer: 0
+ m_Name: Camera
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &168774
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 492344}
+ m_Layer: 8
+ m_Name: LeftIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &168826
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 463976}
+ m_Layer: 8
+ m_Name: LeftToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &168926
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 479292}
+ m_Layer: 8
+ m_Name: LeftPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &168940
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 474344}
+ m_Layer: 8
+ m_Name: HeadEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &169128
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 490402}
+ m_Layer: 8
+ m_Name: LeftToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &169216
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 413270}
+ m_Layer: 8
+ m_Name: RightPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &169484
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 419994}
+ m_Layer: 8
+ m_Name: LeftHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &169684
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 446556}
+ m_Layer: 8
+ m_Name: HairEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &169970
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 427238}
+ m_Layer: 8
+ m_Name: LeftEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &170016
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 472234}
+ m_Layer: 8
+ m_Name: RightThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &170044
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 478972}
+ m_Layer: 8
+ m_Name: RightIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &170174
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 423920}
+ - 198: {fileID: 19826932}
+ - 199: {fileID: 19937256}
+ m_Layer: 0
+ m_Name: SleepyZ
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &170300
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 439676}
+ m_Layer: 8
+ m_Name: RightFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &170504
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 446384}
+ m_Layer: 8
+ m_Name: LeftToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &170610
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 496886}
+ m_Layer: 8
+ m_Name: LeftPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &170704
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 451176}
+ m_Layer: 8
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &170722
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 483490}
+ m_Layer: 8
+ m_Name: LeftPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &170836
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 452338}
+ m_Layer: 8
+ m_Name: RightMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &170912
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 470272}
+ m_Layer: 8
+ m_Name: LowerEyeLids
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &171008
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 424334}
+ m_Layer: 8
+ m_Name: Tongue
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &171102
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 410484}
+ m_Layer: 8
+ m_Name: LeftPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &171780
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 479050}
+ - 33: {fileID: 3397992}
+ - 23: {fileID: 2379702}
+ m_Layer: 8
+ m_Name: Glasses
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &171878
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 419658}
+ m_Layer: 8
+ m_Name: LeftArm6
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &172052
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 474426}
+ m_Layer: 8
+ m_Name: RightIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &172484
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 481696}
+ - 137: {fileID: 13748114}
+ m_Layer: 8
+ m_Name: Body
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &172768
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 420596}
+ m_Layer: 8
+ m_Name: LeftMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &173090
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 493918}
+ m_Layer: 8
+ m_Name: RightFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &173112
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 473128}
+ m_Layer: 8
+ m_Name: Spine1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &173416
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 416972}
+ m_Layer: 8
+ m_Name: RightThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &174562
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 444398}
+ m_Layer: 8
+ m_Name: LeftThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &174624
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 418764}
+ m_Layer: 8
+ m_Name: RightArm5
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &174864
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 479458}
+ m_Layer: 8
+ m_Name: RightMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &175178
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 486054}
+ - 212: {fileID: 21218946}
+ - 95: {fileID: 9557074}
+ m_Layer: 0
+ m_Name: MarketCoffeeSign
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &175606
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 440570}
+ m_Layer: 8
+ m_Name: HousingLeftDoorEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &175834
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 466554}
+ m_Layer: 8
+ m_Name: Hips
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &175874
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 484446}
+ m_Layer: 8
+ m_Name: RightPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &175996
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 452114}
+ m_Layer: 8
+ m_Name: LeftDownWingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &176208
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 421198}
+ m_Layer: 8
+ m_Name: RightMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &176300
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 495936}
+ m_Layer: 8
+ m_Name: LeftToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &177008
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 470752}
+ m_Layer: 8
+ m_Name: LeftIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &177248
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 407316}
+ m_Layer: 8
+ m_Name: RightIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &177596
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 435882}
+ m_Layer: 8
+ m_Name: LeftMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &177926
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 455662}
+ m_Layer: 8
+ m_Name: RightHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &178014
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 416924}
+ m_Layer: 8
+ m_Name: LidEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &178480
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 431500}
+ m_Layer: 8
+ m_Name: LeftEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &178668
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 457664}
+ m_Layer: 8
+ m_Name: LeftMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &180242
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 407314}
+ m_Layer: 8
+ m_Name: LeftRing2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &180254
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 478588}
+ m_Layer: 8
+ m_Name: LeftMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &180628
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 416918}
+ m_Layer: 8
+ m_Name: LeftToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &180728
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 436242}
+ m_Layer: 8
+ m_Name: RightToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &180924
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 442112}
+ m_Layer: 8
+ m_Name: RightIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &181252
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 439114}
+ m_Layer: 8
+ m_Name: RightLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &181448
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 489406}
+ m_Layer: 8
+ m_Name: LeftFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &181650
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 407724}
+ m_Layer: 8
+ m_Name: RightRing1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &181856
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 487366}
+ m_Layer: 8
+ m_Name: Neck
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &181888
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 470132}
+ m_Layer: 8
+ m_Name: HousingLeftDoor2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &181922
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 445538}
+ m_Layer: 8
+ m_Name: RightThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &181934
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 416788}
+ m_Layer: 8
+ m_Name: RightHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &183542
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 483380}
+ m_Layer: 8
+ m_Name: RightMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &183718
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 483214}
+ m_Layer: 8
+ m_Name: LeftIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &183830
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 430442}
+ m_Layer: 8
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &184046
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 415218}
+ m_Layer: 8
+ m_Name: LeftArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &184280
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 486806}
+ m_Layer: 8
+ m_Name: LeftMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &184698
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 487602}
+ m_Layer: 8
+ m_Name: RightThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &184762
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 490906}
+ m_Layer: 8
+ m_Name: LeftMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &184786
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 414532}
+ m_Layer: 8
+ m_Name: Spine2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &184868
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 492386}
+ m_Layer: 8
+ m_Name: RightIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &185264
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 468216}
+ m_Layer: 8
+ m_Name: LeftForeArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &185310
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 457674}
+ m_Layer: 8
+ m_Name: RightBackToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &185568
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 409258}
+ m_Layer: 8
+ m_Name: RightMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &185728
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 434466}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &185750
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 417572}
+ m_Layer: 8
+ m_Name: Neck
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &185984
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 420480}
+ m_Layer: 8
+ m_Name: RightThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &186814
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 459328}
+ m_Layer: 8
+ m_Name: LeftThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &187274
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 497658}
+ m_Layer: 8
+ m_Name: LeftPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &188130
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 477454}
+ - 137: {fileID: 13797046}
+ m_Layer: 8
+ m_Name: FruitVendor
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &188220
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 478056}
+ m_Layer: 8
+ m_Name: LeftToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &188598
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 464472}
+ m_Layer: 8
+ m_Name: LeftIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &189324
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 447466}
+ m_Layer: 8
+ m_Name: LeftUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &189442
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 490664}
+ m_Layer: 8
+ m_Name: LeftMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &189982
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 406302}
+ m_Layer: 8
+ m_Name: RightThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &190024
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 439702}
+ m_Layer: 8
+ m_Name: RightEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &190104
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 425338}
+ m_Layer: 8
+ m_Name: LeftMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &190216
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 482654}
+ m_Layer: 8
+ m_Name: Tooth
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &190722
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 441996}
+ m_Layer: 8
+ m_Name: LeftArm2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &192066
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 468872}
+ m_Layer: 8
+ m_Name: RightUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &192088
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 490468}
+ m_Layer: 8
+ m_Name: LeftThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &192678
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 409636}
+ m_Layer: 8
+ m_Name: RightToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &193628
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 415252}
+ m_Layer: 8
+ m_Name: RightMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &193666
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 486510}
+ m_Layer: 8
+ m_Name: LeftToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &193718
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 455116}
+ m_Layer: 8
+ m_Name: LeftUpperArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &193910
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 481622}
+ m_Layer: 8
+ m_Name: LeftForearm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &194270
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 418468}
+ m_Layer: 8
+ m_Name: Spine1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &194378
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 468382}
+ m_Layer: 8
+ m_Name: RightUpWing
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &194600
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 407188}
+ m_Layer: 8
+ m_Name: LeftClavicle
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &194666
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 488666}
+ m_Layer: 8
+ m_Name: RightArm1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &195024
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 440168}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &195274
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 432198}
+ m_Layer: 8
+ m_Name: LeftThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &195304
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 448554}
+ m_Layer: 8
+ m_Name: LeftRing2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &195596
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 484624}
+ m_Layer: 8
+ m_Name: RightEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &195788
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 409326}
+ - 33: {fileID: 3352296}
+ - 23: {fileID: 2332374}
+ m_Layer: 8
+ m_Name: CameraCam
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &195812
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 455524}
+ m_Layer: 8
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &195834
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 417754}
+ m_Layer: 8
+ m_Name: RightPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &196778
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 479104}
+ m_Layer: 8
+ m_Name: RightPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &197036
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 486938}
+ m_Layer: 8
+ m_Name: RightRing1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &197252
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 409576}
+ - 33: {fileID: 3379804}
+ - 23: {fileID: 2397162}
+ - 95: {fileID: 9554222}
+ m_Layer: 8
+ m_Name: SecurityCamera
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &197314
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 476896}
+ m_Layer: 8
+ m_Name: RightUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &197858
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 477426}
+ m_Layer: 8
+ m_Name: RightMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &198114
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 496016}
+ m_Layer: 8
+ m_Name: RightMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &199074
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 460152}
+ m_Layer: 8
+ m_Name: Eyes
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &199332
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 414570}
+ m_Layer: 8
+ m_Name: HeadEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &199732
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 416348}
+ - 33: {fileID: 3345276}
+ - 64: {fileID: 6401950}
+ - 23: {fileID: 2328846}
+ m_Layer: 8
+ m_Name: CameraLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &199834
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 484994}
+ m_Layer: 8
+ m_Name: RightUpperArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &400286
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 145480}
+ m_LocalRotation: {x: -1.0359293e-16, y: 0.12357392, z: 1.5913718e-16, w: 0.9923354}
+ m_LocalPosition: {x: -0.2338415, y: 1.4210854e-15, z: 3.719247e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 455116}
+ m_Father: {fileID: 407188}
+ m_RootOrder: 0
+--- !u!4 &401266
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 121694}
+ m_LocalRotation: {x: -0.00013792136, y: 0.00022409995, z: -0.8464759, w: 0.5324271}
+ m_LocalPosition: {x: -0.13930467, y: 3.1974422e-16, z: -9.812328e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 459328}
+ m_Father: {fileID: 426730}
+ m_RootOrder: 2
+--- !u!4 &402048
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 138580}
+ m_LocalRotation: {x: 0.000000010525249, y: -0.046633013, z: 4.913586e-10, w: 0.9989121}
+ m_LocalPosition: {x: 0.296688, y: 7.105427e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 436792}
+ m_Father: {fileID: 476896}
+ m_RootOrder: 0
+--- !u!4 &402526
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 136590}
+ m_LocalRotation: {x: 1.3449206e-15, y: 0.00000017097675, z: -0.000000007866102,
+ w: 1}
+ m_LocalPosition: {x: 0.45892897, y: 2.842171e-16, z: 1.2434498e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 416788}
+ m_Father: {fileID: 456910}
+ m_RootOrder: 0
+--- !u!4 &403200
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 111178}
+ m_LocalRotation: {x: -0.12109285, y: -0.21268155, z: 0.9599154, w: 0.1366221}
+ m_LocalPosition: {x: 0.060711343, y: -0.021130675, z: -0.059972294}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 415678}
+ m_Father: {fileID: 469424}
+ m_RootOrder: 2
+--- !u!4 &403356
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 117322}
+ m_LocalRotation: {x: 0, y: 0.62114745, z: 0, w: -0.78369373}
+ m_LocalPosition: {x: 9.06, y: 0, z: 11.734}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 283.19998, z: 0}
+ m_Children:
+ - {fileID: 479834}
+ - {fileID: 440168}
+ - {fileID: 410594}
+ m_Father: {fileID: 405900}
+ m_RootOrder: 12
+--- !u!4 &403822
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 118866}
+ m_LocalRotation: {x: 0, y: 0.74314463, z: 0, w: -0.66913086}
+ m_LocalPosition: {x: 10.741, y: 0, z: 5.9300003}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 428568}
+ - {fileID: 493228}
+ - {fileID: 439000}
+ m_Father: {fileID: 405900}
+ m_RootOrder: 9
+--- !u!4 &403876
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 124044}
+ m_LocalRotation: {x: -1.1183519e-16, y: -1.6642503e-16, z: 8.568114e-17, w: 1}
+ m_LocalPosition: {x: -0.07175, y: 0.00000008681784, z: 0.00000014042556}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 431956}
+ m_Father: {fileID: 411596}
+ m_RootOrder: 0
+--- !u!4 &404062
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 151576}
+ m_LocalRotation: {x: 0.60200995, y: -0.019064877, z: 0.17482093, w: 0.7788827}
+ m_LocalPosition: {x: -0.07728101, y: 0.0014633762, z: 0.0858162}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 445214}
+ m_Father: {fileID: 469424}
+ m_RootOrder: 4
+--- !u!4 &405026
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 128714}
+ m_LocalRotation: {x: -2.2088105e-29, y: -1.323489e-23, z: 1.1911401e-22, w: 1}
+ m_LocalPosition: {x: -0.32263, y: 7.105427e-17, z: -0.0000001322789}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 461222}
+ m_Father: {fileID: 441996}
+ m_RootOrder: 0
+--- !u!4 &405900
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 166038}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 454474}
+ - {fileID: 423944}
+ - {fileID: 438952}
+ - {fileID: 471258}
+ - {fileID: 497378}
+ - {fileID: 496152}
+ - {fileID: 444308}
+ - {fileID: 486054}
+ - {fileID: 494952}
+ - {fileID: 403822}
+ - {fileID: 409576}
+ - {fileID: 436912}
+ - {fileID: 403356}
+ - {fileID: 423920}
+ - {fileID: 4000011802908092}
+ - {fileID: 484526}
+ - {fileID: 4000010177798814}
+ - {fileID: 4000012224596626}
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+--- !u!4 &405952
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 119980}
+ m_LocalRotation: {x: -2.165677e-12, y: -0.30124214, z: 9.839221e-13, w: 0.9535477}
+ m_LocalPosition: {x: 0.09883017, y: 0.000003490511, z: -0.0000031930006}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 420480}
+ m_Father: {fileID: 445538}
+ m_RootOrder: 0
+--- !u!4 &406302
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 189982}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.03209195, y: -8.895597e-11, z: 0.00000004011068}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 474380}
+ m_RootOrder: 0
+--- !u!4 &406386
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 167666}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.082974, y: 0, z: 7.105427e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 422584}
+ m_Father: {fileID: 468914}
+ m_RootOrder: 0
+--- !u!4 &406528
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 108060}
+ m_LocalRotation: {x: 0.47678733, y: 0.87875503, z: -0.021356061, w: 0.0027174372}
+ m_LocalPosition: {x: -0.05161618, y: -0.013674524, z: 0.002278118}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 462424}
+ m_Father: {fileID: 415678}
+ m_RootOrder: 0
+--- !u!4 &406648
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 146008}
+ m_LocalRotation: {x: -0.00000042780886, y: -0.70710605, z: -0.00000042780798, w: 0.7071075}
+ m_LocalPosition: {x: -0.078439996, y: 0.00000009491277, z: 0.0000001535189}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 447634}
+ m_RootOrder: 0
+--- !u!4 &406682
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 151854}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.037466202, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 425182}
+ m_Father: {fileID: 415802}
+ m_RootOrder: 0
+--- !u!4 &407188
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 194600}
+ m_LocalRotation: {x: -0.3940069, y: 0.47130802, z: 0.50609577, w: 0.6053878}
+ m_LocalPosition: {x: -0.27040905, y: -0.00064542517, z: 0.11539446}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 400286}
+ m_Father: {fileID: 488402}
+ m_RootOrder: 1
+--- !u!4 &407314
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 180242}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.027950978, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 458990}
+ m_Father: {fileID: 422562}
+ m_RootOrder: 0
+--- !u!4 &407316
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 177248}
+ m_LocalRotation: {x: -2.2160072e-16, y: -0.06320087, z: -1.4033412e-17, w: 0.99800086}
+ m_LocalPosition: {x: 0.17087714, y: -0.021119999, z: -0.05163783}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 478972}
+ m_Father: {fileID: 490722}
+ m_RootOrder: 0
+--- !u!4 &407724
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 181650}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.115610994, y: -0.0090499995, z: 0.013526599}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 476550}
+ m_Father: {fileID: 499306}
+ m_RootOrder: 3
+--- !u!4 &408158
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 117994}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.08167122, y: 1.8134654e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 425242}
+ m_Father: {fileID: 489608}
+ m_RootOrder: 2
+--- !u!4 &408212
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 101726}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.07874983, y: -0.002669053, z: 0.055648144}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 442056}
+ m_Father: {fileID: 419994}
+ m_RootOrder: 0
+--- !u!4 &408966
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 165548}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.037466202, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 483214}
+ m_Father: {fileID: 416220}
+ m_RootOrder: 0
+--- !u!4 &409258
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 185568}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.084487, y: -0.0000032544237, z: -0.00010310722}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 483380}
+ m_Father: {fileID: 477826}
+ m_RootOrder: 0
+--- !u!4 &409326
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 195788}
+ m_LocalRotation: {x: 0, y: 0.25881907, z: -0, w: 0.9659259}
+ m_LocalPosition: {x: -0.45195812, y: -0.26269963, z: 0.00000029801032}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 416348}
+ m_Father: {fileID: 409576}
+ m_RootOrder: 0
+--- !u!4 &409394
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 144584}
+ m_LocalRotation: {x: 2.4286129e-17, y: 6.938894e-18, z: 5.4426952e-17, w: 1}
+ m_LocalPosition: {x: -0.14671557, y: -2.462729e-17, z: 0.12221512}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 442992}
+ m_RootOrder: 0
+--- !u!4 &409440
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 163040}
+ m_LocalRotation: {x: 0.0071269665, y: 0.010199278, z: -0.14634372, w: 0.9891556}
+ m_LocalPosition: {x: -0.16612151, y: 1.1368684e-15, z: -2.2737367e-15}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 430704}
+ m_Father: {fileID: 469424}
+ m_RootOrder: 0
+--- !u!4 &409572
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 149624}
+ m_LocalRotation: {x: -4.4408654e-16, y: -2.0917636e-11, z: -2.3907527e-14, w: 1}
+ m_LocalPosition: {x: 0.18090999, y: -0.01761, z: -0.006907998}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 479458}
+ m_Father: {fileID: 416788}
+ m_RootOrder: 1
+--- !u!4 &409576
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 197252}
+ m_LocalRotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071067}
+ m_LocalPosition: {x: -5.979001, y: 3.532, z: -1.938}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 409326}
+ m_Father: {fileID: 405900}
+ m_RootOrder: 10
+--- !u!4 &409636
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 192678}
+ m_LocalRotation: {x: -0.09715609, y: -0.0072860685, z: -0.16366091, w: 0.9816938}
+ m_LocalPosition: {x: 0.06380386, y: -0.003493869, z: -0.0022781}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 485058}
+ m_Father: {fileID: 465474}
+ m_RootOrder: 1
+--- !u!4 &410484
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 171102}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.046571843, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 496886}
+ m_RootOrder: 0
+--- !u!4 &410594
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 155676}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 466554}
+ m_Father: {fileID: 403356}
+ m_RootOrder: 2
+--- !u!4 &410978
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 158658}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.039548, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 483916}
+ m_Father: {fileID: 415252}
+ m_RootOrder: 0
+--- !u!4 &411596
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 142186}
+ m_LocalRotation: {x: -1.1183519e-16, y: -1.6642503e-16, z: 8.568114e-17, w: 1}
+ m_LocalPosition: {x: -0.07123, y: 0.00000008618887, z: 0.00000013940785}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 403876}
+ m_Father: {fileID: 442112}
+ m_RootOrder: 0
+--- !u!4 &411756
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 149360}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.037465997, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 477666}
+ m_Father: {fileID: 483206}
+ m_RootOrder: 0
+--- !u!4 &412358
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 136848}
+ m_LocalRotation: {x: 2.7090811e-30, y: 0.09734922, z: -1.4396253e-28, w: 0.9952503}
+ m_LocalPosition: {x: 0.24626994, y: -2.842171e-16, z: 0.0000004800999}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 490722}
+ m_Father: {fileID: 482982}
+ m_RootOrder: 0
+--- !u!4 &412720
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 100708}
+ m_LocalRotation: {x: 0, y: -0.12094192, z: -0, w: 0.9926596}
+ m_LocalPosition: {x: -0.15819345, y: 3.524958e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 465008}
+ - {fileID: 417572}
+ - {fileID: 457070}
+ m_Father: {fileID: 434100}
+ m_RootOrder: 0
+--- !u!4 &413270
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 169216}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.028803999, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 497224}
+ m_RootOrder: 0
+--- !u!4 &413612
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 137588}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.03880987, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 422238}
+ m_Father: {fileID: 492344}
+ m_RootOrder: 0
+--- !u!4 &413628
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 106552}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 445232}
+ m_RootOrder: 0
+--- !u!4 &413852
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 124506}
+ m_LocalRotation: {x: 7.935858e-15, y: 0.40024456, z: -3.4660135e-15, w: 0.91640836}
+ m_LocalPosition: {x: 0.19535121, y: 1.7763568e-17, z: 0.0000000017076126}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 443418}
+ m_Father: {fileID: 439676}
+ m_RootOrder: 0
+--- !u!4 &414452
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 139652}
+ m_LocalRotation: {x: 0, y: -0.06320087, z: -0, w: 0.99800086}
+ m_LocalPosition: {x: -0.16487063, y: 0.021124894, z: 0.0020443827}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 425338}
+ m_Father: {fileID: 418728}
+ m_RootOrder: 1
+--- !u!4 &414532
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 184786}
+ m_LocalRotation: {x: -6.938895e-18, y: 0.074909076, z: -3.439753e-26, w: 0.9971904}
+ m_LocalPosition: {x: -0.18512884, y: 4.110686e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 430442}
+ - {fileID: 455834}
+ - {fileID: 441158}
+ m_Father: {fileID: 449206}
+ m_RootOrder: 0
+--- !u!4 &414570
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 199332}
+ m_LocalRotation: {x: 0.5, y: -0.5, z: 0.49999976, w: 0.50000024}
+ m_LocalPosition: {x: -0.45209667, y: 0.00000020329225, z: -3.7499653e-10}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 463026}
+ m_RootOrder: 0
+--- !u!4 &415040
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 108064}
+ m_LocalRotation: {x: 0.024837472, y: -0.000000007448282, z: 0.9996915, w: 1.8505364e-10}
+ m_LocalPosition: {x: 0.015463621, y: -0.09103353, z: -0.004524521}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 444674}
+ m_Father: {fileID: 489608}
+ m_RootOrder: 0
+--- !u!4 &415170
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 113514}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.040192857, y: -5.684342e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 442246}
+ m_Father: {fileID: 490664}
+ m_RootOrder: 0
+--- !u!4 &415218
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 184046}
+ m_LocalRotation: {x: 0.13138156, y: -1.7294351e-17, z: 0.000000006669684, w: 0.9913319}
+ m_LocalPosition: {x: -0.115709655, y: 0.014006765, z: -0.051915463}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 481622}
+ m_Father: {fileID: 497426}
+ m_RootOrder: 0
+--- !u!4 &415252
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 193628}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.029141, y: -1.4210854e-16, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 410978}
+ m_Father: {fileID: 421680}
+ m_RootOrder: 0
+--- !u!4 &415278
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 148116}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.11300223, y: 0, z: 0.000023546281}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 499242}
+ m_RootOrder: 0
+--- !u!4 &415392
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 119172}
+ m_LocalRotation: {x: -1.6712978e-16, y: 3.4912011e-16, z: -8.636025e-13, w: 1}
+ m_LocalPosition: {x: -0.071237355, y: -0.000000093360065, z: -0.00000010380635}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 440746}
+ m_Father: {fileID: 460634}
+ m_RootOrder: 0
+--- !u!4 &415528
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 105322}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.18389206, y: 0.01761399, z: 0.094677836}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 492344}
+ m_Father: {fileID: 479344}
+ m_RootOrder: 0
+--- !u!4 &415678
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 145884}
+ m_LocalRotation: {x: -2.387396e-17, y: 2.4087497e-16, z: -0.31170118, w: 0.95018023}
+ m_LocalPosition: {x: -0.058577266, y: 1.110223e-18, z: 4.124981e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 406528}
+ - {fileID: 433270}
+ m_Father: {fileID: 403200}
+ m_RootOrder: 0
+--- !u!4 &415786
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 162886}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.068183996, y: -0.0000029823016, z: 0.0021224963}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 484446}
+ m_Father: {fileID: 417754}
+ m_RootOrder: 0
+--- !u!4 &415802
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 105556}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.024382766, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 406682}
+ m_Father: {fileID: 445090}
+ m_RootOrder: 0
+--- !u!4 &416220
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 162738}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.027950978, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 408966}
+ m_Father: {fileID: 446572}
+ m_RootOrder: 0
+--- !u!4 &416348
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 199732}
+ m_LocalRotation: {x: -0.16529356, y: 0.6875159, z: 0.16529363, w: 0.6875158}
+ m_LocalPosition: {x: -0.2003, y: -0.5448, z: -0.0022}
+ m_LocalScale: {x: 0.13405032, y: 0.1340503, z: 0.1340503}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 409326}
+ m_RootOrder: 0
+--- !u!4 &416788
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 181934}
+ m_LocalRotation: {x: 0.00000086897535, y: -2.0928391e-11, z: 1.82193e-13, w: 1}
+ m_LocalPosition: {x: 0.23637599, y: 0, z: 5.3290704e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 421394}
+ - {fileID: 409572}
+ - {fileID: 438378}
+ - {fileID: 445538}
+ m_Father: {fileID: 402526}
+ m_RootOrder: 0
+--- !u!4 &416918
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 180628}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.14453001, y: 8.881784e-18, z: -4.043501e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 486510}
+ m_RootOrder: 0
+--- !u!4 &416924
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 178014}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -1.6251296e-15, y: -0.9610883, z: -0.37884596}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 446674}
+ m_RootOrder: 0
+--- !u!4 &416972
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 173416}
+ m_LocalRotation: {x: 0.00013964916, y: 0.00022017473, z: 0.84646815, w: 0.5324393}
+ m_LocalPosition: {x: -0.1393021, y: 1.5099033e-16, z: -5.9847517e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 485754}
+ m_Father: {fileID: 434726}
+ m_RootOrder: 2
+--- !u!4 &417226
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 145030}
+ m_LocalRotation: {x: -1.1199782e-16, y: -1.6651927e-16, z: 8.568845e-17, w: 1}
+ m_LocalPosition: {x: -0.07179999, y: 0.000000086878345, z: 0.00000014052343}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 449694}
+ m_Father: {fileID: 434372}
+ m_RootOrder: 0
+--- !u!4 &417256
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 159406}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.1809067, y: 0.01761399, z: 0.0069078174}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 420596}
+ m_Father: {fileID: 479344}
+ m_RootOrder: 1
+--- !u!4 &417572
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 185750}
+ m_LocalRotation: {x: -2.006019e-34, y: 0.2797406, z: 6.938894e-18, w: 0.9600756}
+ m_LocalPosition: {x: -0.2647147, y: 2.6367797e-17, z: -7.105427e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 482172}
+ m_Father: {fileID: 412720}
+ m_RootOrder: 1
+--- !u!4 &417754
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 195834}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.08243377, y: -0.011204926, z: 0.0547357}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 415786}
+ m_Father: {fileID: 455662}
+ m_RootOrder: 2
+--- !u!4 &418242
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 123838}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.08243348, y: -0.0034397033, z: -0.055764787}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 497250}
+ m_Father: {fileID: 419994}
+ m_RootOrder: 2
+--- !u!4 &418468
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 194270}
+ m_LocalRotation: {x: -0.7071068, y: 0.7071068, z: 0.00000044323147, w: -0.00000014770202}
+ m_LocalPosition: {x: 1.6940659e-23, y: 0.3155601, z: 0.05607515}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 422402}
+ - {fileID: 488666}
+ - {fileID: 488334}
+ m_Father: {fileID: 455524}
+ m_RootOrder: 1
+--- !u!4 &418728
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 149662}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.22015098, y: 0, z: 5.3290704e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 446572}
+ - {fileID: 414452}
+ - {fileID: 445090}
+ - {fileID: 422562}
+ - {fileID: 434004}
+ m_Father: {fileID: 468216}
+ m_RootOrder: 0
+--- !u!4 &418764
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 174624}
+ m_LocalRotation: {x: 0, y: 6.123234e-17, z: -6.123234e-17, w: 1}
+ m_LocalPosition: {x: -0.32044998, y: 7.105427e-17, z: 2.1316282e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 442224}
+ m_Father: {fileID: 442562}
+ m_RootOrder: 0
+--- !u!4 &419658
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 171878}
+ m_LocalRotation: {x: -2.2088105e-29, y: -1.323489e-23, z: 1.1911401e-22, w: 1}
+ m_LocalPosition: {x: -0.31936, y: 1.4210854e-16, z: -0.00000013093819}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 426730}
+ m_Father: {fileID: 490410}
+ m_RootOrder: 0
+--- !u!4 &419938
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 110292}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.10752547, y: 0, z: -9.992007e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 490402}
+ m_RootOrder: 0
+--- !u!4 &419994
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 169484}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.29477993, y: 2.842171e-16, z: 1.4210854e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 408212}
+ - {fileID: 466634}
+ - {fileID: 418242}
+ - {fileID: 494522}
+ m_Father: {fileID: 481622}
+ m_RootOrder: 0
+--- !u!4 &420036
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 158842}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.2414071, y: -3.5527136e-17, z: -6.661338e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 468382}
+ m_RootOrder: 0
+--- !u!4 &420480
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 185984}
+ m_LocalRotation: {x: -1.7061494e-12, y: -0.038481858, z: 1.6574514e-12, w: 0.9992593}
+ m_LocalPosition: {x: 0.0702166, y: 0.000003825769, z: 0.0000014552056}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 472234}
+ m_Father: {fileID: 405952}
+ m_RootOrder: 0
+--- !u!4 &420596
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 172768}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.05134844, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 478588}
+ m_Father: {fileID: 417256}
+ m_RootOrder: 0
+--- !u!4 &420722
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 106324}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.05613, y: 2.842171e-16, z: 5.3290704e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 477426}
+ m_RootOrder: 0
+--- !u!4 &420918
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 140840}
+ m_LocalRotation: {x: 1.5883571e-16, y: 0.5196694, z: -1.7782864e-16, w: 0.8543675}
+ m_LocalPosition: {x: 0.024218239, y: 0.056388304, z: -0.05957545}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 493278}
+ m_Father: {fileID: 455662}
+ m_RootOrder: 3
+--- !u!4 &421166
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 144784}
+ m_LocalRotation: {x: -0.6202468, y: 0.372353, z: -0.35534993, w: 0.5919237}
+ m_LocalPosition: {x: -0.057, y: 0.113, z: -0}
+ m_LocalScale: {x: 0.36771256, y: 0.36771256, z: 0.36771256}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 434726}
+ m_RootOrder: 3
+--- !u!4 &421198
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 176208}
+ m_LocalRotation: {x: 0.00013964916, y: 0.00022017473, z: 0.84646815, w: 0.5324393}
+ m_LocalPosition: {x: 0.077400684, y: 0.10410154, z: -0.077723525}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 434372}
+ m_Father: {fileID: 434726}
+ m_RootOrder: 1
+--- !u!4 &421394
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 149926}
+ m_LocalRotation: {x: -4.4408654e-16, y: -2.0917636e-11, z: -2.3907527e-14, w: 1}
+ m_LocalPosition: {x: 0.18389, y: -0.01761001, z: -0.094678}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 422468}
+ m_Father: {fileID: 416788}
+ m_RootOrder: 0
+--- !u!4 &421410
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 107802}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.043116, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 433616}
+ m_RootOrder: 0
+--- !u!4 &421558
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 117978}
+ m_LocalRotation: {x: -0.032988027, y: 0.6020384, z: -0.0436483, w: 0.79659057}
+ m_LocalPosition: {x: -0.37354842, y: -1.065814e-15, z: 3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 493742}
+ m_Father: {fileID: 467622}
+ m_RootOrder: 0
+--- !u!4 &421680
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 115628}
+ m_LocalRotation: {x: -2.2160072e-16, y: -0.06320087, z: -1.4033412e-17, w: 0.99800086}
+ m_LocalPosition: {x: 0.16486995, y: -0.021119999, z: -0.0020441434}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 415252}
+ m_Father: {fileID: 490722}
+ m_RootOrder: 1
+--- !u!4 &422238
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 139944}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.053736743, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 413612}
+ m_RootOrder: 0
+--- !u!4 &422402
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 143712}
+ m_LocalRotation: {x: -0.5000002, y: 0.49999958, z: 0.50000024, w: -0.5}
+ m_LocalPosition: {x: -0.20701517, y: 0.8019186, z: -0.37920392}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 441996}
+ m_Father: {fileID: 418468}
+ m_RootOrder: 0
+--- !u!4 &422468
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 122292}
+ m_LocalRotation: {x: -4.4408386e-16, y: -2.0917636e-11, z: -4.7849203e-14, w: 1}
+ m_LocalPosition: {x: 0.04538, y: 0, z: 1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 474426}
+ m_Father: {fileID: 421394}
+ m_RootOrder: 0
+--- !u!4 &422562
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 146724}
+ m_LocalRotation: {x: 0, y: -0.06320087, z: -0, w: 0.99800086}
+ m_LocalPosition: {x: -0.15791412, y: 0.021124894, z: -0.04323178}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 407314}
+ m_Father: {fileID: 418728}
+ m_RootOrder: 3
+--- !u!4 &422584
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 106114}
+ m_LocalRotation: {x: 0, y: 0.0006686676, z: -0, w: 0.99999976}
+ m_LocalPosition: {x: 0.117501, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 406386}
+ m_RootOrder: 0
+--- !u!4 &422602
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 115216}
+ m_LocalRotation: {x: 0.000000008976792, y: 0.52361697, z: 0.0000000055172014, w: 0.8519538}
+ m_LocalPosition: {x: -0.022356682, y: -0.0051800827, z: 0.027702205}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 444398}
+ m_Father: {fileID: 467682}
+ m_RootOrder: 4
+--- !u!4 &423334
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 103350}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.056125045, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 478588}
+ m_RootOrder: 0
+--- !u!4 &423876
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 161140}
+ m_LocalRotation: {x: 5.956455e-13, y: -0.30124214, z: -2.7254197e-13, w: 0.9535477}
+ m_LocalPosition: {x: -0.09883196, y: 7.910339e-17, z: -2.0198015e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 454734}
+ m_Father: {fileID: 492792}
+ m_RootOrder: 0
+--- !u!4 &423920
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170174}
+ m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068}
+ m_LocalPosition: {x: 8.936, y: 1.598, z: 11.46}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 405900}
+ m_RootOrder: 13
+--- !u!4 &423944
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 102298}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 483460}
+ - {fileID: 479050}
+ m_Father: {fileID: 405900}
+ m_RootOrder: 1
+--- !u!4 &424334
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 171008}
+ m_LocalRotation: {x: 0.5000005, y: -0.49999952, z: 0.49999952, w: 0.5000005}
+ m_LocalPosition: {x: -0.13735615, y: -0.0005649498, z: -0.54466915}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 488334}
+ m_RootOrder: 1
+--- !u!4 &425100
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 134686}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.115610994, y: -0.0090499995, z: 0.045186598}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 430172}
+ m_Father: {fileID: 499306}
+ m_RootOrder: 2
+--- !u!4 &425102
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 136526}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.24992292, y: 2.2204459e-17, z: 1.9218971e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 497654}
+ m_RootOrder: 0
+--- !u!4 &425182
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 165198}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.04311587, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 406682}
+ m_RootOrder: 0
+--- !u!4 &425242
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 158522}
+ m_LocalRotation: {x: 0, y: -0.13138154, z: -0, w: 0.9913319}
+ m_LocalPosition: {x: -0.27108666, y: 5.963822e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 497426}
+ - {fileID: 487366}
+ - {fileID: 434402}
+ m_Father: {fileID: 408158}
+ m_RootOrder: 0
+--- !u!4 &425294
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 124862}
+ m_LocalRotation: {x: 3.538836e-16, y: -1.1102232e-16, z: 0.96860605, w: -0.2486008}
+ m_LocalPosition: {x: 0.043559182, y: 0.05133841, z: -1.1368684e-15}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 499978}
+ m_Father: {fileID: 469424}
+ m_RootOrder: 7
+--- !u!4 &425338
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 190104}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.029140381, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 475882}
+ m_Father: {fileID: 414452}
+ m_RootOrder: 0
+--- !u!4 &425682
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 145022}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.2414068, y: -1.7763567e-16, z: -3.1086245e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 471830}
+ m_RootOrder: 0
+--- !u!4 &426730
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 165588}
+ m_LocalRotation: {x: -0.37658074, y: 0.5987049, z: -0.59839296, w: -0.37638453}
+ m_LocalPosition: {x: -0.33903754, y: 7.54952e-17, z: -0.000000009057423}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 460634}
+ - {fileID: 435882}
+ - {fileID: 401266}
+ m_Father: {fileID: 419658}
+ m_RootOrder: 0
+--- !u!4 &427238
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 169970}
+ m_LocalRotation: {x: -0.5503435, y: 0.48069337, z: 0.44378608, w: 0.51875794}
+ m_LocalPosition: {x: -0.15353996, y: -0.05686738, z: 0.12382855}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 430442}
+ m_RootOrder: 1
+--- !u!4 &427942
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 132466}
+ m_LocalRotation: {x: -0.05540295, y: -0.16956627, z: 0.010584849, w: 0.98390335}
+ m_LocalPosition: {x: 0.06071107, y: -0.021130526, z: 0.059972297}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 465474}
+ m_Father: {fileID: 469424}
+ m_RootOrder: 5
+--- !u!4 &428568
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 145706}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 403822}
+ m_RootOrder: 0
+--- !u!4 &429278
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 147668}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.209, y: 0, z: -0.137}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 446844}
+ m_RootOrder: 0
+--- !u!4 &429514
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 138934}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.037984, y: 0, z: -2.6645352e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 468086}
+ m_RootOrder: 0
+--- !u!4 &429756
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 138762}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.053523, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 442280}
+ m_RootOrder: 0
+--- !u!4 &430172
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 101630}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.028578, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 497224}
+ m_Father: {fileID: 425100}
+ m_RootOrder: 0
+--- !u!4 &430442
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 183830}
+ m_LocalRotation: {x: -3.4694473e-17, y: -6.938894e-18, z: 1.08853905e-16, w: 1}
+ m_LocalPosition: {x: -0.32546535, y: -2.6645352e-17, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 497654}
+ - {fileID: 427238}
+ - {fileID: 470272}
+ - {fileID: 457102}
+ - {fileID: 484624}
+ - {fileID: 493568}
+ m_Father: {fileID: 414532}
+ m_RootOrder: 0
+--- !u!4 &430704
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 136498}
+ m_LocalRotation: {x: -0.037801173, y: 0.22485705, z: -0.4612187, w: 0.8574892}
+ m_LocalPosition: {x: -0.12490513, y: -1.1368684e-15, z: 2.2737367e-15}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 446556}
+ m_Father: {fileID: 409440}
+ m_RootOrder: 0
+--- !u!4 &430936
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 107144}
+ m_LocalRotation: {x: 0.051630996, y: 1.3809607e-14, z: 0.9986662, w: 2.6716663e-13}
+ m_LocalPosition: {x: 0.023284065, y: -0.118359946, z: -0.01646414}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 467622}
+ m_Father: {fileID: 443490}
+ m_RootOrder: 0
+--- !u!4 &431074
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 107758}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.040193, y: 2.842171e-16, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 496016}
+ m_Father: {fileID: 486820}
+ m_RootOrder: 0
+--- !u!4 &431500
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 178480}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.16699106, y: -0.044440836, z: 0.09802649}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 442992}
+ m_RootOrder: 3
+--- !u!4 &431906
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 126250}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 469424}
+ m_Father: {fileID: 483460}
+ m_RootOrder: 1
+--- !u!4 &431956
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 137864}
+ m_LocalRotation: {x: -0.00000042780886, y: -0.70710605, z: -0.00000042780798, w: 0.7071075}
+ m_LocalPosition: {x: -0.079299994, y: 0.00000009595338, z: 0.00000015520204}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 403876}
+ m_RootOrder: 0
+--- !u!4 &432198
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 195274}
+ m_LocalRotation: {x: -2.9494502e-15, y: -0.101298474, z: -7.712688e-17, w: 0.9948561}
+ m_LocalPosition: {x: -0.042127386, y: 0, z: 7.9936054e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 490468}
+ m_Father: {fileID: 433740}
+ m_RootOrder: 0
+--- !u!4 &432278
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 131008}
+ m_LocalRotation: {x: 0.5000001, y: -0.49999985, z: 0.49999964, w: 0.50000036}
+ m_LocalPosition: {x: -0.2631768, y: -0.4604911, z: -0.7333016}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 463026}
+ m_RootOrder: 2
+--- !u!4 &433270
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 111500}
+ m_LocalRotation: {x: -0.01729235, y: 0.0047375937, z: -0.47601777, w: 0.87925285}
+ m_LocalPosition: {x: -0.06380386, y: 0.0034937891, z: 0.002278118}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 446384}
+ m_Father: {fileID: 415678}
+ m_RootOrder: 1
+--- !u!4 &433616
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 113372}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.037465997, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 421410}
+ m_Father: {fileID: 479104}
+ m_RootOrder: 0
+--- !u!4 &433740
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 158016}
+ m_LocalRotation: {x: -5.339793e-15, y: -0.123088084, z: -2.427774e-16, w: 0.99239576}
+ m_LocalPosition: {x: -0.06197536, y: 0, z: -8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 432198}
+ m_Father: {fileID: 434004}
+ m_RootOrder: 0
+--- !u!4 &434004
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 117522}
+ m_LocalRotation: {x: 0, y: 0.46427974, z: -0, w: 0.88568866}
+ m_LocalPosition: {x: -0.05189843, y: -0.0042919302, z: 0.035294443}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 433740}
+ m_Father: {fileID: 418728}
+ m_RootOrder: 4
+--- !u!4 &434100
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 122818}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.12336187, y: 2.7200463e-17, z: -2.220446e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 412720}
+ m_Father: {fileID: 443490}
+ m_RootOrder: 2
+--- !u!4 &434336
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 162328}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.052928448, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 458990}
+ m_RootOrder: 0
+--- !u!4 &434372
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 151030}
+ m_LocalRotation: {x: -1.1199782e-16, y: -1.6651927e-16, z: 8.568845e-17, w: 1}
+ m_LocalPosition: {x: -0.07123, y: 0.00000008618887, z: 0.00000013940785}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 417226}
+ m_Father: {fileID: 421198}
+ m_RootOrder: 0
+--- !u!4 &434402
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 103262}
+ m_LocalRotation: {x: 0.7071068, y: 0.7071068, z: -8.7157646e-33, w: -8.659561e-17}
+ m_LocalPosition: {x: -0.13950408, y: 0.0441408, z: 0.027679462}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 442680}
+ m_Father: {fileID: 425242}
+ m_RootOrder: 2
+--- !u!4 &434466
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 185728}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 469644}
+ m_Father: {fileID: 483460}
+ m_RootOrder: 0
+--- !u!4 &434708
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 136020}
+ m_LocalRotation: {x: -1.5067309e-10, y: 0.39835063, z: -0.000000018338707, w: 0.9172332}
+ m_LocalPosition: {x: -0.3000859, y: -3.1619151e-15, z: -0.000000114154}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 478056}
+ m_Father: {fileID: 456012}
+ m_RootOrder: 0
+--- !u!4 &434726
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 148136}
+ m_LocalRotation: {x: -0.37639374, y: -0.5983873, z: 0.59869903, w: -0.37658983}
+ m_LocalPosition: {x: -0.33903998, y: -1.7095433e-17, z: 1.4210853e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 442112}
+ - {fileID: 421198}
+ - {fileID: 416972}
+ - {fileID: 421166}
+ m_Father: {fileID: 442224}
+ m_RootOrder: 0
+--- !u!4 &434742
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 165796}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.030431189, y: -2.842171e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 454338}
+ m_Father: {fileID: 448554}
+ m_RootOrder: 0
+--- !u!4 &434838
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 128874}
+ m_LocalRotation: {x: 0.5000001, y: -0.49999985, z: 0.49999964, w: 0.50000036}
+ m_LocalPosition: {x: -0.2631764, y: 0.4621328, z: -0.7333016}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 463026}
+ m_RootOrder: 1
+--- !u!4 &435882
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 177596}
+ m_LocalRotation: {x: -0.00013782983, y: 0.00022035863, z: -0.8464759, w: 0.5324271}
+ m_LocalPosition: {x: 0.07739538, y: -0.10410827, z: -0.07772362}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 476886}
+ m_Father: {fileID: 426730}
+ m_RootOrder: 1
+--- !u!4 &436242
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 180728}
+ m_LocalRotation: {x: 0, y: 0.4002799, z: -0, w: 0.916393}
+ m_LocalPosition: {x: 0.13682114, y: 3.5527136e-17, z: -0.00000041386167}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 476862}
+ m_Father: {fileID: 493918}
+ m_RootOrder: 0
+--- !u!4 &436792
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 136882}
+ m_LocalRotation: {x: -0.000000008576617, y: 0.58090055, z: -0.000000006120781, w: 0.8139746}
+ m_LocalPosition: {x: 0.33995375, y: 8.881784e-16, z: 0.000000038827032}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 450624}
+ m_Father: {fileID: 402048}
+ m_RootOrder: 0
+--- !u!4 &436912
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 154458}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 3.52816, y: 0, z: -3.118}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 484118}
+ - {fileID: 445232}
+ - {fileID: 451176}
+ m_Father: {fileID: 405900}
+ m_RootOrder: 11
+--- !u!4 &438378
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 154764}
+ m_LocalRotation: {x: -4.4408654e-16, y: -2.0917636e-11, z: -2.3907527e-14, w: 1}
+ m_LocalPosition: {x: 0.17971, y: -0.017609991, z: 0.073697}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 443742}
+ m_Father: {fileID: 416788}
+ m_RootOrder: 2
+--- !u!4 &438456
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 143146}
+ m_LocalRotation: {x: 0.0000078064295, y: 0.24428402, z: -0.000001966607, w: 0.96970373}
+ m_LocalPosition: {x: 0.12581895, y: -2.842171e-16, z: 0.00000008455362}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 484994}
+ m_Father: {fileID: 457070}
+ m_RootOrder: 0
+--- !u!4 &438952
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 144138}
+ m_LocalRotation: {x: 0, y: -0.37177086, z: 0, w: 0.9283245}
+ m_LocalPosition: {x: 8.77, y: 0.032000065, z: -1.1799998}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 491784}
+ - {fileID: 475246}
+ - {fileID: 455524}
+ - {fileID: 439072}
+ m_Father: {fileID: 405900}
+ m_RootOrder: 2
+--- !u!4 &438988
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 114392}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.04657, y: 2.842171e-16, z: 3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 460548}
+ m_RootOrder: 0
+--- !u!4 &439000
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 136796}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 489608}
+ m_Father: {fileID: 403822}
+ m_RootOrder: 2
+--- !u!4 &439072
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 154632}
+ m_LocalRotation: {x: 0, y: 0.30365878, z: 0, w: 0.9527809}
+ m_LocalPosition: {x: 0.03420735, y: 0.94246745, z: 0.1691443}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 438952}
+ m_RootOrder: 3
+--- !u!4 &439088
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 110576}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.05374, y: 2.842171e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 474426}
+ m_RootOrder: 0
+--- !u!4 &439114
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 181252}
+ m_LocalRotation: {x: -2.6131697e-16, y: -0.0000005366863, z: 1.758931e-13, w: 1}
+ m_LocalPosition: {x: 0.34043205, y: 3.5527136e-17, z: 0.00000007351967}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 484896}
+ m_Father: {fileID: 468872}
+ m_RootOrder: 0
+--- !u!4 &439676
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170300}
+ m_LocalRotation: {x: 0.0057530263, y: 0.3983431, z: 0.002168512, w: 0.9172159}
+ m_LocalPosition: {x: 0.3000859, y: 2.504663e-15, z: 0.000000114154}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 413852}
+ m_Father: {fileID: 472986}
+ m_RootOrder: 0
+--- !u!4 &439702
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 190024}
+ m_LocalRotation: {x: 6.123234e-17, y: 1, z: -6.123234e-17, w: -6.123234e-17}
+ m_LocalPosition: {x: -0.16698715, y: 0.0444408, z: 0.098026074}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 442992}
+ m_RootOrder: 5
+--- !u!4 &440168
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 195024}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 477454}
+ m_Father: {fileID: 403356}
+ m_RootOrder: 1
+--- !u!4 &440404
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 107466}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.037984, y: 0, z: -2.2204459e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 462992}
+ m_RootOrder: 0
+--- !u!4 &440468
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 109338}
+ m_LocalRotation: {x: 0, y: 6.123234e-17, z: -6.123234e-17, w: 1}
+ m_LocalPosition: {x: -0.32263, y: 7.105427e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 442562}
+ m_Father: {fileID: 493252}
+ m_RootOrder: 0
+--- !u!4 &440570
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 175606}
+ m_LocalRotation: {x: 0, y: 0.018140081, z: -0, w: 0.9998355}
+ m_LocalPosition: {x: 1.0376014, y: 2.842171e-16, z: 0.14888427}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 470132}
+ m_RootOrder: 0
+--- !u!4 &440746
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 100094}
+ m_LocalRotation: {x: -1.6712978e-16, y: 3.4912011e-16, z: -8.636025e-13, w: 1}
+ m_LocalPosition: {x: -0.07174428, y: 2.8421698e-16, z: -0.00000009455366}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 470752}
+ m_Father: {fileID: 415392}
+ m_RootOrder: 0
+--- !u!4 &441158
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 141100}
+ m_LocalRotation: {x: 0.6935124, y: 0.6651143, z: -0.13798767, w: 0.24004793}
+ m_LocalPosition: {x: -0.19490875, y: 0.0496461, z: 0.054125622}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 482982}
+ m_Father: {fileID: 414532}
+ m_RootOrder: 2
+--- !u!4 &441996
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 190722}
+ m_LocalRotation: {x: -2.2088105e-29, y: -1.323489e-23, z: 1.1911401e-22, w: 1}
+ m_LocalPosition: {x: -0.3169463, y: 4.2632563e-16, z: -0.00000025989718}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 405026}
+ m_Father: {fileID: 422402}
+ m_RootOrder: 0
+--- !u!4 &442056
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 165668}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.082973585, y: -7.105427e-17, z: 2.842171e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 473920}
+ m_Father: {fileID: 408212}
+ m_RootOrder: 0
+--- !u!4 &442112
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 180924}
+ m_LocalRotation: {x: 0.00013964916, y: 0.00022017473, z: 0.84646815, w: 0.5324393}
+ m_LocalPosition: {x: 0.07746419, y: 0.10413205, z: 0.05753865}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 411596}
+ m_Father: {fileID: 434726}
+ m_RootOrder: 0
+--- !u!4 &442224
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 123204}
+ m_LocalRotation: {x: 0, y: 6.123234e-17, z: -6.123234e-17, w: 1}
+ m_LocalPosition: {x: -0.31936, y: 1.4210854e-16, z: -2.1316282e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 434726}
+ m_Father: {fileID: 418764}
+ m_RootOrder: 0
+--- !u!4 &442246
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 100216}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.0356767, y: -2.842171e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 486806}
+ m_Father: {fileID: 415170}
+ m_RootOrder: 0
+--- !u!4 &442280
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 109908}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.037465997, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 429756}
+ m_Father: {fileID: 478972}
+ m_RootOrder: 0
+--- !u!4 &442354
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 108986}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.17971253, y: 0.01761399, z: -0.0736973}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 476106}
+ m_Father: {fileID: 479344}
+ m_RootOrder: 2
+--- !u!4 &442562
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 138910}
+ m_LocalRotation: {x: 0, y: 6.123234e-17, z: -6.123234e-17, w: 1}
+ m_LocalPosition: {x: -0.32154, y: 7.105427e-17, z: -7.105427e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 418764}
+ m_Father: {fileID: 440468}
+ m_RootOrder: 0
+--- !u!4 &442680
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 125780}
+ m_LocalRotation: {x: 0.13227916, y: 0.0000000073851085, z: 2.1436086e-10, w: 0.9912125}
+ m_LocalPosition: {x: 0.1157102, y: -0.014006777, z: 0.051915508}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 455132}
+ m_Father: {fileID: 434402}
+ m_RootOrder: 0
+--- !u!4 &442992
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 163330}
+ m_LocalRotation: {x: -9.3675074e-17, y: -0.28944153, z: 1.1535912e-16, w: 0.95719576}
+ m_LocalPosition: {x: -0.15455596, y: 1.2434498e-16, z: -7.105427e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 409394}
+ - {fileID: 456134}
+ - {fileID: 453264}
+ - {fileID: 431500}
+ - {fileID: 495126}
+ - {fileID: 439702}
+ m_Father: {fileID: 487366}
+ m_RootOrder: 0
+--- !u!4 &443418
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 101516}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.12915844, y: 0, z: 0.0000000047083977}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 413852}
+ m_RootOrder: 0
+--- !u!4 &443490
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 120588}
+ m_LocalRotation: {x: 0, y: 0, z: -0.7071068, w: 0.7071068}
+ m_LocalPosition: {x: -0.0013393179, y: 0.8346392, z: 0.01646414}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 430936}
+ - {fileID: 468872}
+ - {fileID: 434100}
+ m_Father: {fileID: 460096}
+ m_RootOrder: 0
+--- !u!4 &443742
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 162430}
+ m_LocalRotation: {x: -4.4408386e-16, y: -2.0917636e-11, z: -4.7849203e-14, w: 1}
+ m_LocalPosition: {x: 0.042389996, y: -2.842171e-16, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 460548}
+ m_Father: {fileID: 438378}
+ m_RootOrder: 0
+--- !u!4 &444298
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 162100}
+ m_LocalRotation: {x: -3.469447e-18, y: -1.7347235e-18, z: -2.7105054e-20, w: 1}
+ m_LocalPosition: {x: -0.032058302, y: 0.0013393179, z: 0.12063241}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 482172}
+ m_RootOrder: 1
+--- !u!4 &444308
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 118748}
+ m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071067}
+ m_LocalPosition: {x: 4.773, y: 1.2220001, z: -1.644}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 405900}
+ m_RootOrder: 6
+--- !u!4 &444398
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 174562}
+ m_LocalRotation: {x: 0.000000007753445, y: -0.35068962, z: 0.0000000071348714, w: 0.9364917}
+ m_LocalPosition: {x: -0.057950944, y: 0, z: -2.2204459e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 465426}
+ m_Father: {fileID: 422602}
+ m_RootOrder: 0
+--- !u!4 &444674
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 149548}
+ m_LocalRotation: {x: -8.3094304e-18, y: -0.00000042288312, z: 3.670245e-17, w: 1}
+ m_LocalPosition: {x: -0.2966882, y: -5.3290704e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 489406}
+ m_Father: {fileID: 415040}
+ m_RootOrder: 0
+--- !u!4 &444716
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 153360}
+ m_LocalRotation: {x: -2.2160072e-16, y: -0.06320087, z: -1.4033412e-17, w: 0.99800086}
+ m_LocalPosition: {x: 0.15342924, y: -0.021119999, z: 0.08792334}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 479104}
+ m_Father: {fileID: 490722}
+ m_RootOrder: 2
+--- !u!4 &445090
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 125658}
+ m_LocalRotation: {x: 0, y: -0.06320087, z: -0, w: 0.99800086}
+ m_LocalPosition: {x: -0.15342994, y: 0.021124894, z: -0.0879231}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 415802}
+ m_Father: {fileID: 418728}
+ m_RootOrder: 2
+--- !u!4 &445214
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 102794}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.2261158, y: 3.5527136e-17, z: 2.2204459e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 404062}
+ m_RootOrder: 0
+--- !u!4 &445232
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 158684}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 413628}
+ m_Father: {fileID: 436912}
+ m_RootOrder: 1
+--- !u!4 &445538
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 181922}
+ m_LocalRotation: {x: 0.03277064, y: 0.47217697, z: 0.046573706, w: 0.8796624}
+ m_LocalPosition: {x: 0.03582, y: 0.05261999, z: -0.071392104}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 405952}
+ m_Father: {fileID: 416788}
+ m_RootOrder: 3
+--- !u!4 &445972
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 167882}
+ m_LocalRotation: {x: 0.000000012948033, y: -0.35068962, z: 3.475918e-10, w: 0.9364917}
+ m_LocalPosition: {x: 0.0579511, y: 0, z: 0.0000003961197}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 474380}
+ m_Father: {fileID: 487602}
+ m_RootOrder: 0
+--- !u!4 &446384
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170504}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.06420592, y: 1.0803814e-17, z: 4.3980254e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 433270}
+ m_RootOrder: 0
+--- !u!4 &446556
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 169684}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.2104267, y: -3.5527136e-17, z: -2.1450697e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 430704}
+ m_RootOrder: 0
+--- !u!4 &446572
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 152084}
+ m_LocalRotation: {x: 0, y: -0.06320087, z: -0, w: 0.99800086}
+ m_LocalPosition: {x: -0.17087743, y: 0.021124894, z: 0.051637758}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 416220}
+ m_Father: {fileID: 418728}
+ m_RootOrder: 0
+--- !u!4 &446674
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 152400}
+ m_LocalRotation: {x: -0.63528526, y: 0, z: -0, w: 0.7722776}
+ m_LocalPosition: {x: 7.4337745e-16, y: -1.7472501, z: -0.128325}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 416924}
+ m_Father: {fileID: 487960}
+ m_RootOrder: 2
+--- !u!4 &446844
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 151712}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 429278}
+ m_Father: {fileID: 497378}
+ m_RootOrder: 1
+--- !u!4 &447466
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 189324}
+ m_LocalRotation: {x: -4.992661e-33, y: -1.2207467e-16, z: 1, w: 6.123234e-17}
+ m_LocalPosition: {x: 0.015565196, y: -0.10787053, z: -0.000027749922}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 488536}
+ m_Father: {fileID: 466554}
+ m_RootOrder: 0
+--- !u!4 &447634
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 133584}
+ m_LocalRotation: {x: -1.1194366e-16, y: -1.6650571e-16, z: 8.5689506e-17, w: 1}
+ m_LocalPosition: {x: -0.07157, y: 0.00000008660004, z: 0.00000014007328}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 406648}
+ m_Father: {fileID: 485754}
+ m_RootOrder: 0
+--- !u!4 &447806
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 152402}
+ m_LocalRotation: {x: 0.000000010456562, y: -0.123088084, z: 0.0000000012969389,
+ w: 0.99239576}
+ m_LocalPosition: {x: 0.061975945, y: -1.4210854e-16, z: 0.000000055655498}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 475038}
+ m_Father: {fileID: 458418}
+ m_RootOrder: 0
+--- !u!4 &448554
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 195304}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.034947343, y: -2.842171e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 434742}
+ m_Father: {fileID: 498554}
+ m_RootOrder: 0
+--- !u!4 &449206
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 144940}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.14879514, y: 3.303916e-17, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 414532}
+ m_Father: {fileID: 466554}
+ m_RootOrder: 2
+--- !u!4 &449694
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 125790}
+ m_LocalRotation: {x: -0.00000042780886, y: -0.70710605, z: -0.00000042780798, w: 0.7071075}
+ m_LocalPosition: {x: -0.07864, y: 0.000000095154775, z: 0.00000015391034}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 417226}
+ m_RootOrder: 0
+--- !u!4 &450594
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 164304}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.30834174, y: 2.9143353e-17, z: -3.241851e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 482172}
+ m_RootOrder: 0
+--- !u!4 &450624
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 104380}
+ m_LocalRotation: {x: 0, y: 0.2056833, z: -0, w: 0.9786186}
+ m_LocalPosition: {x: 0.12520327, y: 3.5527136e-17, z: -0.000000023641551}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 466670}
+ m_Father: {fileID: 436792}
+ m_RootOrder: 0
+--- !u!4 &450828
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 149748}
+ m_LocalRotation: {x: 0, y: 0, z: -0.7071068, w: 0.7071068}
+ m_LocalPosition: {x: -0.0029089814, y: 0.7938082, z: -0.024217507}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 453292}
+ - {fileID: 480056}
+ - {fileID: 473128}
+ m_Father: {fileID: 451176}
+ m_RootOrder: 0
+--- !u!4 &451176
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170704}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 450828}
+ m_Father: {fileID: 436912}
+ m_RootOrder: 2
+--- !u!4 &452114
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 175996}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.22611624, y: -1.4210854e-16, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 481352}
+ m_RootOrder: 0
+--- !u!4 &452338
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170836}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.037984, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 496016}
+ m_RootOrder: 0
+--- !u!4 &453162
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 122160}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.032091826, y: 0, z: 1.3322676e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 465426}
+ m_RootOrder: 0
+--- !u!4 &453264
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 118450}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.38803744, y: 3.5527136e-17, z: -1.5820678e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 442992}
+ m_RootOrder: 2
+--- !u!4 &453280
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 150674}
+ m_LocalRotation: {x: 1.4245845e-31, y: -0.08400427, z: 4.1937947e-31, w: 0.9964654}
+ m_LocalPosition: {x: 0.219778, y: 3.5527136e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 493918}
+ m_Father: {fileID: 479434}
+ m_RootOrder: 0
+--- !u!4 &453292
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 163658}
+ m_LocalRotation: {x: 3.3246865e-32, y: -1.2229516e-16, z: 1, w: 5.0532154e-16}
+ m_LocalPosition: {x: 0.031695243, y: -0.11881502, z: -0.010353292}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 456012}
+ m_Father: {fileID: 450828}
+ m_RootOrder: 0
+--- !u!4 &453648
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 168166}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 6}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 454474}
+ m_RootOrder: 0
+--- !u!4 &454062
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 136784}
+ m_LocalRotation: {x: 0.0000000072248514, y: 0.24428645, z: -0.0000000018200759,
+ w: 0.96970314}
+ m_LocalPosition: {x: -0.125819, y: -8.5265126e-16, z: -1.6653345e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 460238}
+ m_Father: {fileID: 465008}
+ m_RootOrder: 0
+--- !u!4 &454338
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 117798}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.037984245, y: -2.842171e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 434742}
+ m_RootOrder: 0
+--- !u!4 &454474
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 101492}
+ m_LocalRotation: {x: 0, y: 1, z: 0, w: -0.00000016292068}
+ m_LocalPosition: {x: -3.33, y: 8, z: 9.99}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 453648}
+ m_Father: {fileID: 405900}
+ m_RootOrder: 0
+--- !u!4 &454734
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 130586}
+ m_LocalRotation: {x: 4.7011884e-13, y: -0.038481858, z: -4.560344e-13, w: 0.9992593}
+ m_LocalPosition: {x: -0.07021182, y: -1.61815e-16, z: -2.4741406e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 490070}
+ m_Father: {fileID: 423876}
+ m_RootOrder: 0
+--- !u!4 &455116
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 193718}
+ m_LocalRotation: {x: -2.8149735e-22, y: 0.0000016577737, z: 1.6980446e-16, w: 1}
+ m_LocalPosition: {x: -0.45892859, y: -2.842171e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 479344}
+ m_Father: {fileID: 400286}
+ m_RootOrder: 0
+--- !u!4 &455132
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 142900}
+ m_LocalRotation: {x: 0, y: -0.000000009427813, z: -0, w: 1}
+ m_LocalPosition: {x: 0.317964, y: 0, z: 3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 455662}
+ m_Father: {fileID: 442680}
+ m_RootOrder: 0
+--- !u!4 &455352
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 139920}
+ m_LocalRotation: {x: 0.00000026761208, y: 0.15440385, z: 0.00000004285935, w: 0.98800784}
+ m_LocalPosition: {x: 0.16111799, y: 0.00000071517866, z: 0.0000002791878}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 499018}
+ m_Father: {fileID: 484896}
+ m_RootOrder: 0
+--- !u!4 &455524
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 195812}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 487960}
+ - {fileID: 418468}
+ m_Father: {fileID: 438952}
+ m_RootOrder: 2
+--- !u!4 &455662
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 177926}
+ m_LocalRotation: {x: -0.13227893, y: 0, z: -0, w: 0.99121255}
+ m_LocalPosition: {x: 0.29478, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 468914}
+ - {fileID: 477826}
+ - {fileID: 417754}
+ - {fileID: 420918}
+ m_Father: {fileID: 455132}
+ m_RootOrder: 0
+--- !u!4 &455834
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 118788}
+ m_LocalRotation: {x: 0.1379877, y: -0.2400479, z: 0.6935124, w: 0.6651143}
+ m_LocalPosition: {x: -0.19490802, y: -0.04964612, z: 0.054125745}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 497420}
+ m_Father: {fileID: 414532}
+ m_RootOrder: 1
+--- !u!4 &456012
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 144024}
+ m_LocalRotation: {x: 0.000000012888046, y: -0.05091579, z: 6.570573e-10, w: 0.99870294}
+ m_LocalPosition: {x: -0.280884, y: -2.3092638e-16, z: 4.440892e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 434708}
+ m_Father: {fileID: 453292}
+ m_RootOrder: 0
+--- !u!4 &456134
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 103252}
+ m_LocalRotation: {x: 2.4286129e-17, y: 6.938894e-18, z: 5.4426952e-17, w: 1}
+ m_LocalPosition: {x: -0.17134191, y: -1.9211657e-17, z: 0.12136001}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 442992}
+ m_RootOrder: 1
+--- !u!4 &456910
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 150996}
+ m_LocalRotation: {x: -0.0000008510943, y: 0.12357443, z: 0.000000112221755, w: 0.9923353}
+ m_LocalPosition: {x: 0.23384185, y: -2.842171e-16, z: 0.000000100622614}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 402526}
+ m_Father: {fileID: 495366}
+ m_RootOrder: 0
+--- !u!4 &457070
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 118478}
+ m_LocalRotation: {x: 0.6597594, y: 0.7015416, z: -0.25439656, w: 0.088540755}
+ m_LocalPosition: {x: -0.22098821, y: 0.039064117, z: 0.037699834}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 438456}
+ m_Father: {fileID: 412720}
+ m_RootOrder: 2
+--- !u!4 &457102
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 107186}
+ m_LocalRotation: {x: -2.7755576e-17, y: -1.3877788e-17, z: 1.08853905e-16, w: 1}
+ m_LocalPosition: {x: -0.029753968, y: 9.809792e-17, z: 0.20504904}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 430442}
+ m_RootOrder: 3
+--- !u!4 &457664
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 178668}
+ m_LocalRotation: {x: -1.6627555e-16, y: 3.4903128e-16, z: -8.587692e-13, w: 1}
+ m_LocalPosition: {x: -0.071800254, y: 3.5527135e-16, z: -0.00000009409786}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 490906}
+ m_Father: {fileID: 476886}
+ m_RootOrder: 0
+--- !u!4 &457674
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 185310}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.056758203, y: -0.0000000030931737, z: -5.506706e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 465452}
+ m_RootOrder: 0
+--- !u!4 &458418
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 106264}
+ m_LocalRotation: {x: 3.4588897e-15, y: 0.46427974, z: -2.132959e-15, w: 0.88568866}
+ m_LocalPosition: {x: 0.05189791, y: 0.0042899996, z: -0.035294082}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 447806}
+ m_Father: {fileID: 490722}
+ m_RootOrder: 4
+--- !u!4 &458990
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 145708}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.037466202, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 434336}
+ m_Father: {fileID: 407314}
+ m_RootOrder: 0
+--- !u!4 &459328
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 186814}
+ m_LocalRotation: {x: -2.359017e-16, y: 2.828658e-16, z: 1.3159237e-11, w: 1}
+ m_LocalPosition: {x: -0.07143735, y: 0.00000036581778, z: -0.0000003984777}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 467192}
+ m_Father: {fileID: 401266}
+ m_RootOrder: 0
+--- !u!4 &460096
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 114786}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 443490}
+ m_Father: {fileID: 497378}
+ m_RootOrder: 2
+--- !u!4 &460152
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 199074}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.3220314, y: 0.13082854, z: -0.0029089814}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 470050}
+ m_RootOrder: 0
+--- !u!4 &460238
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 131962}
+ m_LocalRotation: {x: -9.483926e-31, y: 8.560468e-16, z: -6.5190887e-29, w: 1}
+ m_LocalPosition: {x: -0.26418158, y: -8.521955e-16, z: -0.0073472136}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 467682}
+ m_Father: {fileID: 454062}
+ m_RootOrder: 0
+--- !u!4 &460548
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 100042}
+ m_LocalRotation: {x: -4.4407852e-16, y: -2.0917636e-11, z: -9.576146e-14, w: 1}
+ m_LocalPosition: {x: 0.03762, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 438988}
+ m_Father: {fileID: 443742}
+ m_RootOrder: 0
+--- !u!4 &460634
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 151486}
+ m_LocalRotation: {x: -0.0001378267, y: 0.0002203606, z: -0.8464759, w: 0.5324271}
+ m_LocalPosition: {x: 0.07745891, y: -0.10413879, z: 0.05753856}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 415392}
+ m_Father: {fileID: 426730}
+ m_RootOrder: 0
+--- !u!4 &461222
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 132992}
+ m_LocalRotation: {x: -2.2088105e-29, y: -1.323489e-23, z: 1.1911401e-22, w: 1}
+ m_LocalPosition: {x: -0.32154, y: 7.105427e-17, z: -0.000000131832}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 490410}
+ m_Father: {fileID: 405026}
+ m_RootOrder: 0
+--- !u!4 &462424
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 105040}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.05675817, y: -2.4122632e-18, z: 6.2440825e-19}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 406528}
+ m_RootOrder: 0
+--- !u!4 &462586
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 158294}
+ m_LocalRotation: {x: 0, y: 0.42682478, z: -0, w: 0.90433437}
+ m_LocalPosition: {x: -0.19857061, y: 4.4408918e-17, z: -4.3469248e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 486510}
+ m_Father: {fileID: 488536}
+ m_RootOrder: 0
+--- !u!4 &462992
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 134682}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.029307, y: 0, z: -1.3322676e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 440404}
+ m_Father: {fileID: 492386}
+ m_RootOrder: 0
+--- !u!4 &463026
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 149944}
+ m_LocalRotation: {x: -2.3069222e-17, y: 6.0251035e-22, z: 3.5893144e-17, w: 1}
+ m_LocalPosition: {x: -0.6448484, y: 4.3231346e-11, z: 0.00000026950906}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 414570}
+ - {fileID: 434838}
+ - {fileID: 432278}
+ - {fileID: 482654}
+ m_Father: {fileID: 488334}
+ m_RootOrder: 0
+--- !u!4 &463976
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 168826}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.12915844, y: -5.32907e-16, z: -0.0000000047083977}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 478056}
+ m_RootOrder: 0
+--- !u!4 &464348
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 151380}
+ m_LocalRotation: {x: 0.5000002, y: 0.49999985, z: -0.4999996, w: 0.50000036}
+ m_LocalPosition: {x: -0.24372013, y: -0.00000010939036, z: -0.0000002647714}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 482654}
+ m_RootOrder: 0
+--- !u!4 &464436
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 102740}
+ m_LocalRotation: {x: 0, y: 0.09677081, z: -0, w: 0.9953067}
+ m_LocalPosition: {x: -1.048112, y: -3.0927981e-16, z: 0.015771646}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 491860}
+ m_RootOrder: 0
+--- !u!4 &464472
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 188598}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.033823308, y: -8.5265126e-16, z: 1.11022296e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 489818}
+ m_Father: {fileID: 497050}
+ m_RootOrder: 0
+--- !u!4 &465008
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 131278}
+ m_LocalRotation: {x: 0.25439653, y: -0.08854075, z: 0.65975934, w: 0.70154154}
+ m_LocalPosition: {x: -0.22099243, y: -0.03906416, z: 0.037700873}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 454062}
+ m_Father: {fileID: 412720}
+ m_RootOrder: 0
+--- !u!4 &465426
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 160126}
+ m_LocalRotation: {x: 0.0000000094807415, y: 0.06591253, z: 0.0000000045975934, w: 0.99782544}
+ m_LocalPosition: {x: -0.039361052, y: 0, z: 6.661338e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 453162}
+ m_Father: {fileID: 444398}
+ m_RootOrder: 0
+--- !u!4 &465452
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 116396}
+ m_LocalRotation: {x: 0.2305266, y: 0.96718156, z: -0.10141042, w: 0.033664003}
+ m_LocalPosition: {x: 0.051616166, y: 0.0136744715, z: -0.0022781002}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 457674}
+ m_Father: {fileID: 465474}
+ m_RootOrder: 0
+--- !u!4 &465474
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 126824}
+ m_LocalRotation: {x: 0.0000000018987534, y: -0.000000004833637, z: -0.6779544, w: 0.73510396}
+ m_LocalPosition: {x: 0.058577593, y: 0.00000012737836, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 465452}
+ - {fileID: 409636}
+ m_Father: {fileID: 427942}
+ m_RootOrder: 0
+--- !u!4 &465596
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 163580}
+ m_LocalRotation: {x: -8.326673e-17, y: 0, z: -3.0531133e-16, w: 1}
+ m_LocalPosition: {x: -0.16765492, y: 0.43150955, z: -0.0029089814}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 470050}
+ m_RootOrder: 2
+--- !u!4 &466554
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 175834}
+ m_LocalRotation: {x: 0, y: -0, z: -0.7071068, w: 0.7071068}
+ m_LocalPosition: {x: -0, y: 0.5383509, z: -0.1376512}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 447466}
+ - {fileID: 479434}
+ - {fileID: 449206}
+ m_Father: {fileID: 410594}
+ m_RootOrder: 0
+--- !u!4 &466634
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 136520}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.10379059, y: -0.0005502199, z: -0.000020815145}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 499242}
+ m_Father: {fileID: 419994}
+ m_RootOrder: 1
+--- !u!4 &466670
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 150918}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.10752509, y: 0, z: 0.0000000025132985}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 450624}
+ m_RootOrder: 0
+--- !u!4 &467192
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 103492}
+ m_LocalRotation: {x: -2.359017e-16, y: 2.828658e-16, z: 1.3159237e-11, w: 1}
+ m_LocalPosition: {x: -0.07157, y: 2.1316292e-16, z: -0.0000003678362}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 494876}
+ m_Father: {fileID: 459328}
+ m_RootOrder: 0
+--- !u!4 &467622
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 118318}
+ m_LocalRotation: {x: -2.2408375e-15, y: -0.00000034982656, z: 2.0471695e-13, w: 1}
+ m_LocalPosition: {x: -0.3404326, y: 1.0658141e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 421558}
+ m_Father: {fileID: 430936}
+ m_RootOrder: 0
+--- !u!4 &467682
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 130656}
+ m_LocalRotation: {x: 0.000000021073424, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.24890369, y: 2.837613e-16, z: 0.0073472136}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 497050}
+ - {fileID: 490664}
+ - {fileID: 490678}
+ - {fileID: 498554}
+ - {fileID: 422602}
+ m_Father: {fileID: 460238}
+ m_RootOrder: 0
+--- !u!4 &468086
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 150248}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.030431, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 429514}
+ m_Father: {fileID: 476550}
+ m_RootOrder: 0
+--- !u!4 &468216
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 185264}
+ m_LocalRotation: {x: 0, y: 0.09734922, z: -0, w: 0.9952503}
+ m_LocalPosition: {x: -0.2462692, y: -9.947598e-16, z: 6.661338e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 418728}
+ m_Father: {fileID: 497420}
+ m_RootOrder: 0
+--- !u!4 &468382
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 194378}
+ m_LocalRotation: {x: -0.71793675, y: -0.20442846, z: -0.15588188, w: 0.64689773}
+ m_LocalPosition: {x: -0.14509878, y: 0.041088313, z: 0.06245678}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 420036}
+ m_Father: {fileID: 469424}
+ m_RootOrder: 6
+--- !u!4 &468872
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 192066}
+ m_LocalRotation: {x: 0.9986568, y: 0.00022430142, z: -0.05163041, w: 0.004338482}
+ m_LocalPosition: {x: 0.023284176, y: 0.11836032, z: -0.01646414}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 439114}
+ m_Father: {fileID: 443490}
+ m_RootOrder: 1
+--- !u!4 &468914
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 109300}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.07875013, y: 0.017072476, z: -0.053031754}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 406386}
+ m_Father: {fileID: 455662}
+ m_RootOrder: 0
+--- !u!4 &469424
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 120664}
+ m_LocalRotation: {x: 0.06541445, y: 0.06174806, z: -0.5523578, w: 0.8287394}
+ m_LocalPosition: {x: 9.412325, y: 1.0863328, z: 9.082732}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 409440}
+ - {fileID: 481352}
+ - {fileID: 403200}
+ - {fileID: 471830}
+ - {fileID: 404062}
+ - {fileID: 427942}
+ - {fileID: 468382}
+ - {fileID: 425294}
+ m_Father: {fileID: 431906}
+ m_RootOrder: 0
+--- !u!4 &469644
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 129046}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 434466}
+ m_RootOrder: 0
+--- !u!4 &470050
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 117348}
+ m_LocalRotation: {x: -5.551115e-17, y: 5.551115e-17, z: -0.088978596, w: 0.99603355}
+ m_LocalPosition: {x: -0.34739292, y: 7.105427e-17, z: -7.71605e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 460152}
+ - {fileID: 474344}
+ - {fileID: 465596}
+ m_Father: {fileID: 488402}
+ m_RootOrder: 0
+--- !u!4 &470132
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 181888}
+ m_LocalRotation: {x: 0, y: 0.07522983, z: -0, w: 0.9971662}
+ m_LocalPosition: {x: -1.0792987, y: 5.708225e-16, z: 0.22159642}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 440570}
+ m_Father: {fileID: 476964}
+ m_RootOrder: 0
+--- !u!4 &470272
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170912}
+ m_LocalRotation: {x: -2.7755576e-17, y: -2.0816682e-17, z: 1.08853905e-16, w: 1}
+ m_LocalPosition: {x: -0.14492892, y: 1.2479081e-16, z: 0.15467033}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 430442}
+ m_RootOrder: 2
+--- !u!4 &470752
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 177008}
+ m_LocalRotation: {x: 0, y: 0.7071062, z: 0, w: 0.7071075}
+ m_LocalPosition: {x: -0.07930518, y: 0.00000009335994, z: -0.00000009459759}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 440746}
+ m_RootOrder: 0
+--- !u!4 &471258
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 164680}
+ m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071067}
+ m_LocalPosition: {x: 0.43400002, y: 0.51100016, z: -1.673}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 405900}
+ m_RootOrder: 3
+--- !u!4 &471830
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 123680}
+ m_LocalRotation: {x: 0.22004697, y: -0.6462069, z: 0.69792116, w: 0.21656874}
+ m_LocalPosition: {x: -0.11167476, y: 0.026394414, z: -0.078170896}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 425682}
+ m_Father: {fileID: 469424}
+ m_RootOrder: 3
+--- !u!4 &471836
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 100994}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.028804602, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 497658}
+ m_RootOrder: 0
+--- !u!4 &472234
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170016}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.05449389, y: -0.0000048590196, z: -0.000001193841}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 420480}
+ m_RootOrder: 0
+--- !u!4 &472986
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 166050}
+ m_LocalRotation: {x: 0.0000000105230455, y: -0.05091579, z: 5.36485e-10, w: 0.99870294}
+ m_LocalPosition: {x: 0.280884, y: 5.3290704e-17, z: -4.440892e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 439676}
+ m_Father: {fileID: 480056}
+ m_RootOrder: 0
+--- !u!4 &473128
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 173112}
+ m_LocalRotation: {x: 0.7069087, y: -0.016736718, z: 0.016736718, w: 0.7069087}
+ m_LocalPosition: {x: -0.09604843, y: 2.1094237e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 488402}
+ m_Father: {fileID: 450828}
+ m_RootOrder: 2
+--- !u!4 &473920
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 142196}
+ m_LocalRotation: {x: 0, y: 0.0006686676, z: -0, w: 0.99999976}
+ m_LocalPosition: {x: -0.11749812, y: -7.105427e-17, z: -5.2580163e-15}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 442056}
+ m_RootOrder: 0
+--- !u!4 &474344
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 168940}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.5899, y: 2.0017436e-16, z: -1.3223995e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 470050}
+ m_RootOrder: 1
+--- !u!4 &474380
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 160182}
+ m_LocalRotation: {x: 0.000000014776604, y: 0.06591253, z: -9.760859e-10, w: 0.99782544}
+ m_LocalPosition: {x: 0.03936071, y: -2.8421708e-15, z: -0.00000015261405}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 406302}
+ m_Father: {fileID: 445972}
+ m_RootOrder: 0
+--- !u!4 &474426
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 172052}
+ m_LocalRotation: {x: -4.4407852e-16, y: -2.0917636e-11, z: -9.576146e-14, w: 1}
+ m_LocalPosition: {x: 0.03881, y: 0, z: -8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 439088}
+ m_Father: {fileID: 422468}
+ m_RootOrder: 0
+--- !u!4 &474458
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 124054}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.056199305, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 475882}
+ m_RootOrder: 0
+--- !u!4 &474548
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 131808}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.053106792, y: 2.2556079e-10, z: -0.0000001500559}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 475038}
+ m_RootOrder: 0
+--- !u!4 &475038
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 114396}
+ m_LocalRotation: {x: 0.00000001017566, y: -0.101298474, z: 0.0000000031708143, w: 0.9948561}
+ m_LocalPosition: {x: 0.042127334, y: 1.7053025e-15, z: 0.000000074818765}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 474548}
+ m_Father: {fileID: 447806}
+ m_RootOrder: 0
+--- !u!4 &475246
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 146228}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0.269, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 481696}
+ m_Father: {fileID: 438952}
+ m_RootOrder: 1
+--- !u!4 &475882
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 151874}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.03954766, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 474458}
+ m_Father: {fileID: 425338}
+ m_RootOrder: 0
+--- !u!4 &475962
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 157048}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.107517935, y: 0.0000027274702, z: 0.0000005885144}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 493278}
+ m_RootOrder: 0
+--- !u!4 &476106
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 132934}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.04239232, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 496886}
+ m_Father: {fileID: 442354}
+ m_RootOrder: 0
+--- !u!4 &476550
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 138548}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.034948, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 468086}
+ m_Father: {fileID: 407724}
+ m_RootOrder: 0
+--- !u!4 &476862
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 145232}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.14453001, y: -3.5527136e-17, z: 0.0000000045534736}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 436242}
+ m_RootOrder: 0
+--- !u!4 &476886
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 130578}
+ m_LocalRotation: {x: -1.6627555e-16, y: 3.4903128e-16, z: -8.587692e-13, w: 1}
+ m_LocalPosition: {x: -0.071237355, y: -0.00000009336005, z: -0.00000009356112}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 457664}
+ m_Father: {fileID: 435882}
+ m_RootOrder: 0
+--- !u!4 &476896
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 197314}
+ m_LocalRotation: {x: 1, y: 0, z: 0, w: -6.123234e-17}
+ m_LocalPosition: {x: 0.015463907, y: 0.091033496, z: -0.00452452}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 402048}
+ m_Father: {fileID: 489608}
+ m_RootOrder: 1
+--- !u!4 &476964
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 129640}
+ m_LocalRotation: {x: 0.9956375, y: 4.716463e-18, z: -0.09330613, w: 6.087179e-17}
+ m_LocalPosition: {x: -1.250624, y: 8.050634e-16, z: -0.09848316}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 470132}
+ m_Father: {fileID: 487960}
+ m_RootOrder: 0
+--- !u!4 &477314
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 131124}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.037984245, y: -2.842171e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 489818}
+ m_RootOrder: 0
+--- !u!4 &477426
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 197858}
+ m_LocalRotation: {x: -4.4407852e-16, y: -2.0917636e-11, z: -9.576146e-14, w: 1}
+ m_LocalPosition: {x: 0.041799996, y: 0, z: 1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 420722}
+ m_Father: {fileID: 479458}
+ m_RootOrder: 0
+--- !u!4 &477454
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 188130}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 440168}
+ m_RootOrder: 0
+--- !u!4 &477666
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 123266}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.052929, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 411756}
+ m_RootOrder: 0
+--- !u!4 &477826
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 167052}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.103791, y: 0.0005255686, z: 0.00016344545}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 409258}
+ m_Father: {fileID: 455662}
+ m_RootOrder: 1
+--- !u!4 &478056
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 188220}
+ m_LocalRotation: {x: 0.000000020894369, y: 0.40024456, z: -0.00000007581294, w: 0.91640836}
+ m_LocalPosition: {x: -0.19535121, y: -1.4210854e-16, z: -0.0000000017076126}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 463976}
+ m_Father: {fileID: 434708}
+ m_RootOrder: 0
+--- !u!4 &478588
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 180254}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.041795243, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 423334}
+ m_Father: {fileID: 420596}
+ m_RootOrder: 0
+--- !u!4 &478972
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170044}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.027950998, y: -1.4210854e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 442280}
+ m_Father: {fileID: 407316}
+ m_RootOrder: 0
+--- !u!4 &479050
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 171780}
+ m_LocalRotation: {x: -0.5853913, y: 0, z: -0, w: 0.8107509}
+ m_LocalPosition: {x: 9.525571, y: 3.1558473, z: 6.462998}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 423944}
+ m_RootOrder: 1
+--- !u!4 &479104
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 196778}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.024383, y: -1.4210854e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 433616}
+ m_Father: {fileID: 444716}
+ m_RootOrder: 0
+--- !u!4 &479292
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 168926}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.10005931, y: 1.4210854e-16, z: 0.0013077977}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 497250}
+ m_RootOrder: 0
+--- !u!4 &479344
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 159614}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.23637588, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 415528}
+ - {fileID: 417256}
+ - {fileID: 442354}
+ - {fileID: 492792}
+ m_Father: {fileID: 455116}
+ m_RootOrder: 0
+--- !u!4 &479434
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 117184}
+ m_LocalRotation: {x: 1, y: -9.7660665e-18, z: 2.4301766e-32, w: -6.123234e-17}
+ m_LocalPosition: {x: 0.015564889, y: 0.107870996, z: -0.000027790184}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 453280}
+ m_Father: {fileID: 466554}
+ m_RootOrder: 1
+--- !u!4 &479458
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 174864}
+ m_LocalRotation: {x: -4.4408386e-16, y: -2.0917636e-11, z: -4.7849203e-14, w: 1}
+ m_LocalPosition: {x: 0.05134, y: -2.842171e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 477426}
+ m_Father: {fileID: 409572}
+ m_RootOrder: 0
+--- !u!4 &479834
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 139526}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 403356}
+ m_RootOrder: 0
+--- !u!4 &480056
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 111144}
+ m_LocalRotation: {x: 0.9999811, y: 0.0003233856, z: -1.6110871e-18, w: 0.0061396505}
+ m_LocalPosition: {x: 0.031695243, y: 0.11881498, z: -0.010353292}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 472986}
+ m_Father: {fileID: 450828}
+ m_RootOrder: 1
+--- !u!4 &480472
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 148578}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 497378}
+ m_RootOrder: 0
+--- !u!4 &481352
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 128810}
+ m_LocalRotation: {x: 0.07353115, y: 0.6207124, z: 0.7712759, w: -0.120178536}
+ m_LocalPosition: {x: -0.07728091, y: 0.0014632852, z: -0.08581618}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 452114}
+ m_Father: {fileID: 469424}
+ m_RootOrder: 1
+--- !u!4 &481622
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 193910}
+ m_LocalRotation: {x: -3.0063322e-16, y: -0.000000022380016, z: 3.5656686e-16, w: 1}
+ m_LocalPosition: {x: -0.31796485, y: 2.1316282e-16, z: -1.4210854e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 419994}
+ m_Father: {fileID: 415218}
+ m_RootOrder: 0
+--- !u!4 &481696
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 172484}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0.744, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 475246}
+ m_RootOrder: 0
+--- !u!4 &482116
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 134590}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 493228}
+ m_RootOrder: 0
+--- !u!4 &482172
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 122392}
+ m_LocalRotation: {x: -5.4643793e-17, y: -0.15239893, z: -5.4210114e-19, w: 0.9883191}
+ m_LocalPosition: {x: -0.12911041, y: 8.6042285e-18, z: 3.5527135e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 450594}
+ - {fileID: 444298}
+ m_Father: {fileID: 417572}
+ m_RootOrder: 0
+--- !u!4 &482654
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 190216}
+ m_LocalRotation: {x: 6.115467e-17, y: 1, z: -2.443103e-13, w: -0.00000031793994}
+ m_LocalPosition: {x: -0.09871685, y: -0.0005653607, z: -0.4459455}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 464348}
+ m_Father: {fileID: 463026}
+ m_RootOrder: 3
+--- !u!4 &482982
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 128028}
+ m_LocalRotation: {x: -0.0000010654834, y: 0.23490712, z: 0.0000003639413, w: 0.9720178}
+ m_LocalPosition: {x: 0.20287788, y: 2.842171e-16, z: -0.00000018149032}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 412358}
+ m_Father: {fileID: 441158}
+ m_RootOrder: 0
+--- !u!4 &483206
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 146632}
+ m_LocalRotation: {x: -2.220446e-16, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.027950998, y: -1.4210854e-16, z: 3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 411756}
+ m_Father: {fileID: 486938}
+ m_RootOrder: 0
+--- !u!4 &483214
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 183718}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.05352315, y: 0, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 408966}
+ m_RootOrder: 0
+--- !u!4 &483380
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 183542}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.113007, y: 0.000005913019, z: -0.000021916345}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 409258}
+ m_RootOrder: 0
+--- !u!4 &483460
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 138592}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 434466}
+ - {fileID: 431906}
+ m_Father: {fileID: 423944}
+ m_RootOrder: 0
+--- !u!4 &483490
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170722}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.028577795, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 497658}
+ m_Father: {fileID: 490678}
+ m_RootOrder: 0
+--- !u!4 &483916
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 122822}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.056199, y: 0, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 410978}
+ m_RootOrder: 0
+--- !u!4 &484118
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 122810}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 436912}
+ m_RootOrder: 0
+--- !u!4 &484446
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 175874}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.100057, y: 0.0000007306215, z: -0.0013079634}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 415786}
+ m_RootOrder: 0
+--- !u!4 &484526
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 116216}
+ m_LocalRotation: {x: 0.8686281, y: -0.074446425, z: 0.3138341, w: 0.37609994}
+ m_LocalPosition: {x: -2.0387483, y: 3.65, z: 0.5927165}
+ m_LocalScale: {x: 1, y: 1.0000004, z: 1.0000004}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 405900}
+ m_RootOrder: 15
+--- !u!4 &484624
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 195596}
+ m_LocalRotation: {x: -0.51875925, y: 0.44378456, z: 0.48069182, w: 0.5503449}
+ m_LocalPosition: {x: -0.15353519, y: 0.0568674, z: 0.12382927}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 430442}
+ m_RootOrder: 4
+--- !u!4 &484896
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 160810}
+ m_LocalRotation: {x: -0.029527105, y: 0.60222226, z: -0.041032474, w: 0.79672635}
+ m_LocalPosition: {x: 0.37354857, y: 1.2434498e-16, z: -0.00000005893049}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 455352}
+ m_Father: {fileID: 439114}
+ m_RootOrder: 0
+--- !u!4 &484994
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 199834}
+ m_LocalRotation: {x: -1.728288e-16, y: 0.000005141919, z: 3.3821242e-16, w: 1}
+ m_LocalPosition: {x: 0.264182, y: 1.4488317e-17, z: 0.0072700707}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 499306}
+ m_Father: {fileID: 438456}
+ m_RootOrder: 0
+--- !u!4 &485058
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 161908}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.0642059, y: 4.2283733e-12, z: 0.0000000011656923}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 409636}
+ m_RootOrder: 0
+--- !u!4 &485754
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 154714}
+ m_LocalRotation: {x: -1.1194366e-16, y: -1.6650571e-16, z: 8.5689506e-17, w: 1}
+ m_LocalPosition: {x: -0.07143, y: 0.00000008643087, z: 0.00000013979927}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 447634}
+ m_Father: {fileID: 416972}
+ m_RootOrder: 0
+--- !u!4 &486054
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 175178}
+ m_LocalRotation: {x: 0, y: -0.3710287, z: 0, w: 0.9286214}
+ m_LocalPosition: {x: 8.783, y: 2.81, z: -1.207}
+ m_LocalScale: {x: 0.4308253, y: 0.43082523, z: 0.43082523}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 405900}
+ m_RootOrder: 7
+--- !u!4 &486510
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 193666}
+ m_LocalRotation: {x: -2.0348012e-16, y: 0.4002799, z: 8.8879994e-17, w: 0.916393}
+ m_LocalPosition: {x: -0.13682106, y: 3.1086245e-17, z: -7.135392e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 416918}
+ m_Father: {fileID: 462586}
+ m_RootOrder: 0
+--- !u!4 &486806
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 184280}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.037984245, y: -2.842171e-16, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 442246}
+ m_RootOrder: 0
+--- !u!4 &486820
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 105822}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.115610994, y: -0.0090499995, z: -0.0173844}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 431074}
+ m_Father: {fileID: 499306}
+ m_RootOrder: 1
+--- !u!4 &486938
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 197036}
+ m_LocalRotation: {x: -2.2160072e-16, y: -0.06320087, z: -1.4033412e-17, w: 0.99800086}
+ m_LocalPosition: {x: 0.15791385, y: -0.021119999, z: 0.043232046}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 483206}
+ m_Father: {fileID: 490722}
+ m_RootOrder: 3
+--- !u!4 &487366
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 181856}
+ m_LocalRotation: {x: 2.7755576e-17, y: 0.36281016, z: 6.9388956e-18, w: 0.93186307}
+ m_LocalPosition: {x: -0.19717604, y: 8.881784e-18, z: -3.5527136e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 442992}
+ m_Father: {fileID: 425242}
+ m_RootOrder: 1
+--- !u!4 &487602
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 184698}
+ m_LocalRotation: {x: 9.458614e-16, y: 0.52361697, z: -1.5755911e-15, w: 0.8519538}
+ m_LocalPosition: {x: 0.022356998, y: 0.00518, z: -0.0277023}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 445972}
+ m_Father: {fileID: 499306}
+ m_RootOrder: 4
+--- !u!4 &487960
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 120640}
+ m_LocalRotation: {x: 1, y: 0, z: 0, w: -6.123234e-17}
+ m_LocalPosition: {x: 7.19978e-23, y: -3.5527136e-17, z: 5.684342e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 476964}
+ - {fileID: 491310}
+ - {fileID: 446674}
+ m_Father: {fileID: 455524}
+ m_RootOrder: 0
+--- !u!4 &488334
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 166696}
+ m_LocalRotation: {x: -5.293956e-23, y: 5.293956e-23, z: 0, w: 1}
+ m_LocalPosition: {x: -0.48641288, y: 8.8649955e-18, z: -3.5527135e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 463026}
+ - {fileID: 424334}
+ m_Father: {fileID: 418468}
+ m_RootOrder: 2
+--- !u!4 &488402
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 128462}
+ m_LocalRotation: {x: 1.110223e-16, y: 5.551115e-17, z: 0.065378256, w: 0.99786055}
+ m_LocalPosition: {x: -0.2728152, y: 2.6645352e-17, z: -5.995204e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 470050}
+ - {fileID: 407188}
+ - {fileID: 495366}
+ m_Father: {fileID: 473128}
+ m_RootOrder: 0
+--- !u!4 &488536
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 141272}
+ m_LocalRotation: {x: -2.6475347e-34, y: -0.08400427, z: -8.757106e-31, w: 0.9964654}
+ m_LocalPosition: {x: -0.21977739, y: -4.8800384e-17, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 462586}
+ m_Father: {fileID: 447466}
+ m_RootOrder: 0
+--- !u!4 &488666
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 194666}
+ m_LocalRotation: {x: 0.5000003, y: 0.49999988, z: 0.5000001, w: 0.49999967}
+ m_LocalPosition: {x: -0.20701504, y: -0.8019176, z: -0.3792052}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 493252}
+ m_Father: {fileID: 418468}
+ m_RootOrder: 1
+--- !u!4 &489406
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 181448}
+ m_LocalRotation: {x: 0.45623592, y: 0.4810738, z: -0.325597, w: 0.6740945}
+ m_LocalPosition: {x: -0.3399538, y: -3.5527136e-17, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 490402}
+ m_Father: {fileID: 444674}
+ m_RootOrder: 0
+--- !u!4 &489608
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 155818}
+ m_LocalRotation: {x: 0, y: -0, z: -0.7071068, w: 0.7071068}
+ m_LocalPosition: {x: -0, y: 0.7101239, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 415040}
+ - {fileID: 476896}
+ - {fileID: 408158}
+ m_Father: {fileID: 439000}
+ m_RootOrder: 0
+--- !u!4 &489818
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 135988}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.02930715, y: -2.842171e-16, z: -2.220446e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 477314}
+ m_Father: {fileID: 464472}
+ m_RootOrder: 0
+--- !u!4 &490070
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 157248}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.054499395, y: -1.7985613e-16, z: -1.5065444e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 454734}
+ m_RootOrder: 0
+--- !u!4 &490402
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 169128}
+ m_LocalRotation: {x: 0.20128554, y: 0.035536904, z: -0.20259012, w: 0.9576944}
+ m_LocalPosition: {x: -0.12520328, y: 7.105427e-17, z: 6.661338e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 419938}
+ m_Father: {fileID: 489406}
+ m_RootOrder: 0
+--- !u!4 &490410
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 109942}
+ m_LocalRotation: {x: -2.2088105e-29, y: -1.323489e-23, z: 1.1911401e-22, w: 1}
+ m_LocalPosition: {x: -0.32044998, y: 7.105427e-17, z: -0.0000001313851}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 419658}
+ m_Father: {fileID: 461222}
+ m_RootOrder: 0
+--- !u!4 &490468
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 192088}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.05310689, y: 0, z: -2.6645352e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 432198}
+ m_RootOrder: 0
+--- !u!4 &490664
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 189442}
+ m_LocalRotation: {x: 0.000000010536712, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.11561086, y: 0.009046224, z: 0.017384367}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 415170}
+ m_Father: {fileID: 467682}
+ m_RootOrder: 1
+--- !u!4 &490678
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 108212}
+ m_LocalRotation: {x: 0.000000010536712, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.11561086, y: 0.009046224, z: -0.045187082}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 483490}
+ m_Father: {fileID: 467682}
+ m_RootOrder: 2
+--- !u!4 &490722
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 130776}
+ m_LocalRotation: {x: 0.0000010652644, y: 1.09826305e-13, z: 0.00000011574487, w: 1}
+ m_LocalPosition: {x: 0.22015074, y: 4.2632563e-16, z: -0.00000019817008}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 407316}
+ - {fileID: 421680}
+ - {fileID: 444716}
+ - {fileID: 486938}
+ - {fileID: 458418}
+ m_Father: {fileID: 412358}
+ m_RootOrder: 0
+--- !u!4 &490906
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 184762}
+ m_LocalRotation: {x: 0, y: 0.7071062, z: 0, w: 0.7071075}
+ m_LocalPosition: {x: -0.07863518, y: 0.00000009335993, z: -0.0000001028544}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 457664}
+ m_RootOrder: 0
+--- !u!4 &491310
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 162232}
+ m_LocalRotation: {x: 0, y: 0.008850181, z: -0, w: 0.99996084}
+ m_LocalPosition: {x: 1.2506199, y: 8.050634e-16, z: -0.0984832}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 491860}
+ m_Father: {fileID: 487960}
+ m_RootOrder: 1
+--- !u!4 &491496
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 103876}
+ m_LocalRotation: {x: -1.6338827e-14, y: -0.43567598, z: -1.29036415e-14, w: 0.90010357}
+ m_LocalPosition: {x: -0.05244661, y: -0.0010045549, z: -0.0019171397}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 493576}
+ m_Father: {fileID: 494522}
+ m_RootOrder: 0
+--- !u!4 &491784
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 153026}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 438952}
+ m_RootOrder: 0
+--- !u!4 &491860
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 100144}
+ m_LocalRotation: {x: 0, y: -0.10557566, z: -0, w: 0.9944113}
+ m_LocalPosition: {x: 1.101812, y: -5.705413e-16, z: 0.0022962647}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 464436}
+ m_Father: {fileID: 491310}
+ m_RootOrder: 0
+--- !u!4 &492344
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 168774}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.045377698, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 413612}
+ m_Father: {fileID: 415528}
+ m_RootOrder: 0
+--- !u!4 &492386
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 184868}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.033824, y: 0, z: -2.4424906e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 462992}
+ m_Father: {fileID: 493946}
+ m_RootOrder: 0
+--- !u!4 &492792
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 140238}
+ m_LocalRotation: {x: 0.03277069, y: 0.47217694, z: 0.046573732, w: 0.8796624}
+ m_LocalPosition: {x: -0.035817478, y: -0.052623805, z: 0.07139191}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 423876}
+ m_Father: {fileID: 479344}
+ m_RootOrder: 3
+--- !u!4 &493228
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 161136}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 482116}
+ m_Father: {fileID: 403822}
+ m_RootOrder: 1
+--- !u!4 &493252
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 116488}
+ m_LocalRotation: {x: 0, y: 6.123234e-17, z: -6.123234e-17, w: 1}
+ m_LocalPosition: {x: -0.316942, y: 2.842171e-16, z: 5.684342e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 440468}
+ m_Father: {fileID: 488666}
+ m_RootOrder: 0
+--- !u!4 &493278
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 111738}
+ m_LocalRotation: {x: -1.9237782e-16, y: -0.42123008, z: -2.117612e-16, w: 0.9069538}
+ m_LocalPosition: {x: 0.05244655, y: 0.015451191, z: 0.0019170693}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 475962}
+ m_Father: {fileID: 420918}
+ m_RootOrder: 0
+--- !u!4 &493568
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 126846}
+ m_LocalRotation: {x: -2.7755576e-17, y: -2.0816682e-17, z: 1.08853905e-16, w: 1}
+ m_LocalPosition: {x: -0.15823962, y: 1.2771959e-16, z: 0.15447822}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 430442}
+ m_RootOrder: 5
+--- !u!4 &493576
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 123866}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.10751866, y: 0.0026852882, z: -1.12953015e-10}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 491496}
+ m_RootOrder: 0
+--- !u!4 &493742
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 105852}
+ m_LocalRotation: {x: 0.00000027092892, y: 0.15440385, z: 0.000000042341, w: 0.98800784}
+ m_LocalPosition: {x: -0.16111799, y: -1.7763568e-17, z: -1.1812772e-15}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 495936}
+ m_Father: {fileID: 421558}
+ m_RootOrder: 0
+--- !u!4 &493918
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 173090}
+ m_LocalRotation: {x: 0, y: 0.42682478, z: -0, w: 0.90433437}
+ m_LocalPosition: {x: 0.19857056, y: 5.3290704e-17, z: 0.00000037203264}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 436242}
+ m_Father: {fileID: 453280}
+ m_RootOrder: 0
+--- !u!4 &493946
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 152360}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.115610994, y: -0.0090499995, z: -0.0477334}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 492386}
+ m_Father: {fileID: 499306}
+ m_RootOrder: 0
+--- !u!4 &494522
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 121496}
+ m_LocalRotation: {x: 5.9510297e-10, y: 0.533262, z: -5.0991256e-10, w: 0.8459502}
+ m_LocalPosition: {x: -0.017448522, y: -0.040760484, z: 0.07195317}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 491496}
+ m_Father: {fileID: 419994}
+ m_RootOrder: 3
+--- !u!4 &494876
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 156460}
+ m_LocalRotation: {x: 0, y: 0.7071042, z: -0, w: 0.70710933}
+ m_LocalPosition: {x: -0.07843518, y: -0.0000003658159, z: -0.0000003717968}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 467192}
+ m_RootOrder: 0
+--- !u!4 &494952
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 146950}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 4.4439993, y: 3.0679998, z: -3.281}
+ m_LocalScale: {x: 0.43583745, y: 0.43583748, z: 0.43583748}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 405900}
+ m_RootOrder: 8
+--- !u!4 &495126
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 101414}
+ m_LocalRotation: {x: 2.4286129e-17, y: 6.938894e-18, z: 5.4426952e-17, w: 1}
+ m_LocalPosition: {x: -0.04254798, y: -4.7519925e-17, z: 0.12646013}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 442992}
+ m_RootOrder: 4
+--- !u!4 &495366
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 166240}
+ m_LocalRotation: {x: 0.47130802, y: 0.3940069, z: -0.6053878, w: 0.50609577}
+ m_LocalPosition: {x: -0.27040994, y: -0.0006452177, z: -0.11539398}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 456910}
+ m_Father: {fileID: 488402}
+ m_RootOrder: 2
+--- !u!4 &495936
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 176300}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.07749791, y: 0, z: -5.3290704e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 493742}
+ m_RootOrder: 0
+--- !u!4 &496016
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 198114}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.035676997, y: 0, z: -2.6645352e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 452338}
+ m_Father: {fileID: 431074}
+ m_RootOrder: 0
+--- !u!4 &496152
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 133330}
+ m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071067}
+ m_LocalPosition: {x: -6.9310007, y: 1.1339998, z: -2.298}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 405900}
+ m_RootOrder: 5
+--- !u!4 &496886
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170610}
+ m_LocalRotation: {x: 0, y: 5.7591297e-12, z: -0, w: 1}
+ m_LocalPosition: {x: -0.03761572, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 410484}
+ m_Father: {fileID: 476106}
+ m_RootOrder: 0
+--- !u!4 &497050
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 104370}
+ m_LocalRotation: {x: 0.000000010536712, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.11561086, y: 0.009046224, z: 0.047733396}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 464472}
+ m_Father: {fileID: 467682}
+ m_RootOrder: 0
+--- !u!4 &497224
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 123804}
+ m_LocalRotation: {x: 1.330914e-26, y: 1.1047913e-11, z: -5.0271054e-21, w: 1}
+ m_LocalPosition: {x: 0.02631, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 413270}
+ m_Father: {fileID: 430172}
+ m_RootOrder: 0
+--- !u!4 &497250
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 123990}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.068184495, y: -0.0005565151, z: -0.000060691586}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 479292}
+ m_Father: {fileID: 418242}
+ m_RootOrder: 0
+--- !u!4 &497378
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 145218}
+ m_LocalRotation: {x: 0, y: 0.50000006, z: 0, w: 0.8660254}
+ m_LocalPosition: {x: 8, y: 0, z: 5.0599995}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 480472}
+ - {fileID: 446844}
+ - {fileID: 460096}
+ m_Father: {fileID: 405900}
+ m_RootOrder: 4
+--- !u!4 &497420
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 128760}
+ m_LocalRotation: {x: 0, y: 0.23490712, z: -0, w: 0.9720178}
+ m_LocalPosition: {x: -0.20287824, y: -1.4210854e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 468216}
+ m_Father: {fileID: 455834}
+ m_RootOrder: 0
+--- !u!4 &497426
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 147610}
+ m_LocalRotation: {x: 5.551116e-17, y: 1.3877788e-17, z: 0.7071068, w: 0.7071068}
+ m_LocalPosition: {x: -0.13950405, y: -0.04414084, z: 0.02767945}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 415218}
+ m_Father: {fileID: 425242}
+ m_RootOrder: 0
+--- !u!4 &497654
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 105236}
+ m_LocalRotation: {x: -2.94903e-17, y: -0.054051593, z: 1.10480195e-16, w: 0.99853814}
+ m_LocalPosition: {x: -0.28576547, y: 2.1316282e-16, z: 1.7763567e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 425102}
+ m_Father: {fileID: 430442}
+ m_RootOrder: 0
+--- !u!4 &497658
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 187274}
+ m_LocalRotation: {x: 6.617445e-24, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.026309716, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 471836}
+ m_Father: {fileID: 483490}
+ m_RootOrder: 0
+--- !u!4 &498554
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 155952}
+ m_LocalRotation: {x: 0.000000010536712, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.11561086, y: 0.009046224, z: -0.013526678}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 448554}
+ m_Father: {fileID: 467682}
+ m_RootOrder: 3
+--- !u!4 &499018
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 112548}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.07749821, y: -0.00000031728962, z: -0.000000032375706}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 455352}
+ m_RootOrder: 0
+--- !u!4 &499242
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 148562}
+ m_LocalRotation: {x: -2.0927707e-14, y: 1.3794682e-13, z: 3.7734013e-15, w: 1}
+ m_LocalPosition: {x: -0.08448732, y: 3.5527135e-16, z: 0.0001021356}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 415278}
+ m_Father: {fileID: 466634}
+ m_RootOrder: 0
+--- !u!4 &499306
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 148212}
+ m_LocalRotation: {x: -0.000008050334, y: 1.1037902e-11, z: -4.2626222e-11, w: 1}
+ m_LocalPosition: {x: 0.248903, y: -2.9870543e-16, z: -0.0072700707}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 493946}
+ - {fileID: 486820}
+ - {fileID: 425100}
+ - {fileID: 407724}
+ - {fileID: 487602}
+ m_Father: {fileID: 484994}
+ m_RootOrder: 0
+--- !u!4 &499978
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 163144}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.23669972, y: 2.220446e-18, z: -1.0511579e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 425294}
+ m_RootOrder: 0
+--- !u!20 &2065440
+Camera:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 168166}
+ m_Enabled: 1
+ serializedVersion: 2
+ m_ClearFlags: 1
+ m_BackGroundColor: {r: 0.058823526, g: 0.028114185, b: 0.028114185, a: 1}
+ m_NormalizedViewPortRect:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 1
+ height: 1
+ near clip plane: 0.3
+ far clip plane: 1000
+ field of view: 40
+ orthographic: 0
+ orthographic size: 5
+ m_Depth: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967263
+ m_RenderingPath: -1
+ m_TargetTexture: {fileID: 0}
+ m_TargetDisplay: 0
+ m_TargetEye: 3
+ m_HDR: 0
+ m_OcclusionCulling: 1
+ m_StereoConvergence: 10
+ m_StereoSeparation: 0.022
+ m_StereoMirrorMode: 0
+--- !u!23 &2307474
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 164680}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: f6e0cf92e2e51f3439465b23ae50a9b5, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &2309628
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 154632}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 71e4cc976fb954d489e47c27ba9c6950, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &2311254
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 144784}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 9d897843149660d4a8439ee2bf24eb1e, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &2328846
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 199732}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 122e9cd5ec976eb42bc7f99a4512d40f, type: 2}
+ m_SubsetIndices:
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 1
+ m_PreserveUVs: 1
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 0
+ m_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &2332374
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 195788}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3f386ec83100d844b94a7a5b79ffb81d, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &2379702
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 171780}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 5a68483ba9764354ead16db19e43947b, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &2397162
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 197252}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3f386ec83100d844b94a7a5b79ffb81d, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!33 &3324370
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 154632}
+ m_Mesh: {fileID: 4300000, guid: 8afaf1aee63329944a36d7e8b7a6bae2, type: 3}
+--- !u!33 &3345276
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 199732}
+ m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!33 &3345386
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 144784}
+ m_Mesh: {fileID: 4300002, guid: 287f138f9d2f6d642a97ec0483afde5d, type: 3}
+--- !u!33 &3352296
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 195788}
+ m_Mesh: {fileID: 4300002, guid: ef8cdb4b09398294dbbad74fcc5add20, type: 3}
+--- !u!33 &3373858
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 164680}
+ m_Mesh: {fileID: 4300004, guid: c74383c438ad9d14298fec8b36ce7ee5, type: 3}
+--- !u!33 &3379804
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 197252}
+ m_Mesh: {fileID: 4300000, guid: ef8cdb4b09398294dbbad74fcc5add20, type: 3}
+--- !u!33 &3397992
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 171780}
+ m_Mesh: {fileID: 4300006, guid: 27dc1f41f9a3fad46a08a615f1730ad1, type: 3}
+--- !u!64 &6401950
+MeshCollider:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 199732}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!64 &6426692
+MeshCollider:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 166038}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_Mesh: {fileID: 4300008, guid: e582ad25494856c48a62bb7a4e4b4143, type: 3}
+--- !u!92 &9211216
+Behaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 168166}
+ m_Enabled: 1
+--- !u!95 &9509312
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 145218}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: 9e42500670bb47f4d99af2fa8a64f882, type: 3}
+ m_Controller: {fileID: 9100000, guid: 2238c85918cd97c45a8b66670de76d63, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!95 &9519064
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 117322}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: d8b5188c259ea8544ae17ee5ae98d2a0, type: 3}
+ m_Controller: {fileID: 9100000, guid: 0bdfa04ac50fe4f44bfec8a0e096e7e8, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!95 &9524100
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 146950}
+ m_Enabled: 1
+ m_Avatar: {fileID: 0}
+ m_Controller: {fileID: 9100000, guid: 937a26c581812c44988068bba4f17c7a, type: 2}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!95 &9544196
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 118866}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: 4b14b4b275040064fb2dbb9768d883eb, type: 3}
+ m_Controller: {fileID: 9100000, guid: 7a1d5c6243235744c85ee25e5ea03aa4, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!95 &9551032
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 154632}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: 8afaf1aee63329944a36d7e8b7a6bae2, type: 3}
+ m_Controller: {fileID: 0}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!95 &9551194
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 144138}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: e7fef9092fa565e41bf56c266766658d, type: 3}
+ m_Controller: {fileID: 9100000, guid: a6db9721009fa404aba25b86c0bc6072, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!95 &9554222
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 197252}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: ef8cdb4b09398294dbbad74fcc5add20, type: 3}
+ m_Controller: {fileID: 9100000, guid: 3f033d1d677ec21438f98252d9f13d73, type: 2}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!95 &9557074
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 175178}
+ m_Enabled: 1
+ m_Avatar: {fileID: 0}
+ m_Controller: {fileID: 9100000, guid: 95cb2527fc9701e45a7576eb6da8c962, type: 2}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!95 &9588206
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 154458}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: 208f4309afd2a5e41864618ed2613adf, type: 3}
+ m_Controller: {fileID: 9100000, guid: 1f65f9802e086de4588d52f0ddbbc1ed, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!95 &9592990
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 102298}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: 27dc1f41f9a3fad46a08a615f1730ad1, type: 3}
+ m_Controller: {fileID: 9100000, guid: 3241a35829c375043aa03ab9f22801af, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!108 &10811876
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 116216}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 1
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Intensity: 0.75
+ m_Range: 10
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 2
+ m_Resolution: 1
+ m_CustomResolution: -1
+ m_Strength: 0.54
+ m_Bias: 0.05
+ m_NormalBias: 0.01
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 256
+ m_Lightmapping: 4
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!114 &11428460
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 168166}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -768656878, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_EventMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+--- !u!114 &11457004
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 101492}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 740e682d67841cb4ca4620d2bee866b0, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ moveCamera: 1
+ smoothing: 7
+ offset: {x: 0, y: 1.5, z: 0}
+ playerPosition: {fileID: 0}
+--- !u!114 &11471296
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 166038}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -1862395651, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Delegates:
+ - eventID: 4
+ callback:
+ m_PersistentCalls:
+ m_Calls:
+ - m_Target: {fileID: 0}
+ m_MethodName: OnGroundClick
+ m_Mode: 0
+ m_Arguments:
+ m_ObjectArgument: {fileID: 0}
+ m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
+ m_IntArgument: 0
+ m_FloatArgument: 0
+ m_StringArgument:
+ m_BoolArgument: 0
+ m_CallState: 2
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ delegates: []
+--- !u!124 &12480208
+Behaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 168166}
+ m_Enabled: 1
+--- !u!137 &13748114
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 172484}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 255f1dad6693d9f4188b911d81ea50ed, type: 2}
+ - {fileID: 2100000, guid: 55ac6b62b46001749b9938e358b3c0ad, type: 2}
+ - {fileID: 2100000, guid: 65eb6d8bd532ff24790e8810799fd82f, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ serializedVersion: 2
+ m_Quality: 0
+ m_UpdateWhenOffscreen: 0
+ m_SkinnedMotionVectors: 1
+ m_Mesh: {fileID: 4300014, guid: e7fef9092fa565e41bf56c266766658d, type: 3}
+ m_Bones:
+ - {fileID: 463026}
+ - {fileID: 422402}
+ - {fileID: 441996}
+ - {fileID: 405026}
+ - {fileID: 461222}
+ - {fileID: 490410}
+ - {fileID: 419658}
+ - {fileID: 434838}
+ - {fileID: 460634}
+ - {fileID: 415392}
+ - {fileID: 440746}
+ - {fileID: 435882}
+ - {fileID: 476886}
+ - {fileID: 457664}
+ - {fileID: 401266}
+ - {fileID: 459328}
+ - {fileID: 467192}
+ - {fileID: 488666}
+ - {fileID: 493252}
+ - {fileID: 440468}
+ - {fileID: 442562}
+ - {fileID: 418764}
+ - {fileID: 442224}
+ - {fileID: 432278}
+ - {fileID: 442112}
+ - {fileID: 411596}
+ - {fileID: 403876}
+ - {fileID: 421198}
+ - {fileID: 434372}
+ - {fileID: 417226}
+ - {fileID: 416972}
+ - {fileID: 485754}
+ - {fileID: 447634}
+ - {fileID: 418468}
+ - {fileID: 424334}
+ - {fileID: 482654}
+ - {fileID: 488334}
+ - {fileID: 470132}
+ - {fileID: 476964}
+ - {fileID: 491860}
+ - {fileID: 491310}
+ - {fileID: 446674}
+ - {fileID: 487960}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 418468}
+ m_AABB:
+ m_Center: {x: -1.151192, y: 0.00000047683716, z: 0.03533387}
+ m_Extent: {x: 1.4675426, y: 2.9036415, z: 1.2157925}
+ m_DirtyAABB: 0
+--- !u!137 &13757690
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 129046}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 545ad8e6ec1048843bee89afb408a32b, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ serializedVersion: 2
+ m_Quality: 0
+ m_UpdateWhenOffscreen: 0
+ m_SkinnedMotionVectors: 1
+ m_Mesh: {fileID: 4300002, guid: 27dc1f41f9a3fad46a08a615f1730ad1, type: 3}
+ m_Bones:
+ - {fileID: 430704}
+ - {fileID: 409440}
+ - {fileID: 471830}
+ - {fileID: 481352}
+ - {fileID: 404062}
+ - {fileID: 468382}
+ - {fileID: 469424}
+ - {fileID: 433270}
+ - {fileID: 406528}
+ - {fileID: 409636}
+ - {fileID: 465452}
+ - {fileID: 465474}
+ - {fileID: 415678}
+ - {fileID: 403200}
+ - {fileID: 427942}
+ - {fileID: 425294}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 469424}
+ m_AABB:
+ m_Center: {x: -0.0695844, y: 0.048660167, z: -0.0030157417}
+ m_Extent: {x: 0.3434245, y: 0.21802062, z: 0.2632023}
+ m_DirtyAABB: 0
+--- !u!137 &13773728
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 134590}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 5aae30acb47cb134cb98d589f6e6160e, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ serializedVersion: 2
+ m_Quality: 0
+ m_UpdateWhenOffscreen: 0
+ m_SkinnedMotionVectors: 1
+ m_Mesh: {fileID: 4300000, guid: 4b14b4b275040064fb2dbb9768d883eb, type: 3}
+ m_Bones:
+ - {fileID: 490402}
+ - {fileID: 450624}
+ - {fileID: 436792}
+ - {fileID: 489406}
+ - {fileID: 444674}
+ - {fileID: 402048}
+ - {fileID: 415040}
+ - {fileID: 476896}
+ - {fileID: 406386}
+ - {fileID: 409258}
+ - {fileID: 415786}
+ - {fileID: 468914}
+ - {fileID: 477826}
+ - {fileID: 417754}
+ - {fileID: 493278}
+ - {fileID: 420918}
+ - {fileID: 455662}
+ - {fileID: 455132}
+ - {fileID: 442680}
+ - {fileID: 434402}
+ - {fileID: 442056}
+ - {fileID: 499242}
+ - {fileID: 497250}
+ - {fileID: 418242}
+ - {fileID: 466634}
+ - {fileID: 408212}
+ - {fileID: 491496}
+ - {fileID: 494522}
+ - {fileID: 419994}
+ - {fileID: 481622}
+ - {fileID: 415218}
+ - {fileID: 497426}
+ - {fileID: 431500}
+ - {fileID: 439702}
+ - {fileID: 456134}
+ - {fileID: 409394}
+ - {fileID: 495126}
+ - {fileID: 442992}
+ - {fileID: 487366}
+ - {fileID: 425242}
+ - {fileID: 408158}
+ - {fileID: 489608}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 489608}
+ m_AABB:
+ m_Center: {x: -0.13598222, y: -0.00000011920929, z: 0.0013932586}
+ m_Extent: {x: 0.96085316, y: 1.0731928, z: 0.24275583}
+ m_DirtyAABB: 0
+--- !u!137 &13789452
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 106552}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: d788c05ebea28de4db00723fccb2e638, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ serializedVersion: 2
+ m_Quality: 0
+ m_UpdateWhenOffscreen: 0
+ m_SkinnedMotionVectors: 1
+ m_Mesh: {fileID: 4300000, guid: 208f4309afd2a5e41864618ed2613adf, type: 3}
+ m_Bones:
+ - {fileID: 478056}
+ - {fileID: 413852}
+ - {fileID: 439676}
+ - {fileID: 434708}
+ - {fileID: 456012}
+ - {fileID: 472986}
+ - {fileID: 453292}
+ - {fileID: 480056}
+ - {fileID: 454734}
+ - {fileID: 423876}
+ - {fileID: 492792}
+ - {fileID: 413612}
+ - {fileID: 492344}
+ - {fileID: 415528}
+ - {fileID: 478588}
+ - {fileID: 420596}
+ - {fileID: 417256}
+ - {fileID: 496886}
+ - {fileID: 476106}
+ - {fileID: 442354}
+ - {fileID: 479344}
+ - {fileID: 455116}
+ - {fileID: 400286}
+ - {fileID: 407188}
+ - {fileID: 420480}
+ - {fileID: 405952}
+ - {fileID: 445538}
+ - {fileID: 474426}
+ - {fileID: 422468}
+ - {fileID: 421394}
+ - {fileID: 477426}
+ - {fileID: 479458}
+ - {fileID: 409572}
+ - {fileID: 460548}
+ - {fileID: 443742}
+ - {fileID: 438378}
+ - {fileID: 416788}
+ - {fileID: 402526}
+ - {fileID: 456910}
+ - {fileID: 495366}
+ - {fileID: 465596}
+ - {fileID: 460152}
+ - {fileID: 470050}
+ - {fileID: 488402}
+ - {fileID: 473128}
+ - {fileID: 450828}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 450828}
+ m_AABB:
+ m_Center: {x: -0.19467527, y: -0.0007520318, z: -0.06909007}
+ m_Extent: {x: 1.1438313, y: 1.3672259, z: 0.4599617}
+ m_DirtyAABB: 0
+--- !u!137 &13793382
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 147668}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 1a6730224b4502343a9966008f0b1668, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ serializedVersion: 2
+ m_Quality: 0
+ m_UpdateWhenOffscreen: 0
+ m_SkinnedMotionVectors: 1
+ m_Mesh: {fileID: 4300000, guid: 9e42500670bb47f4d99af2fa8a64f882, type: 3}
+ m_Bones:
+ - {fileID: 482172}
+ - {fileID: 443490}
+ - {fileID: 454062}
+ - {fileID: 421558}
+ - {fileID: 467682}
+ - {fileID: 497050}
+ - {fileID: 464472}
+ - {fileID: 489818}
+ - {fileID: 467622}
+ - {fileID: 490664}
+ - {fileID: 415170}
+ - {fileID: 442246}
+ - {fileID: 490678}
+ - {fileID: 483490}
+ - {fileID: 497658}
+ - {fileID: 498554}
+ - {fileID: 448554}
+ - {fileID: 434742}
+ - {fileID: 465008}
+ - {fileID: 422602}
+ - {fileID: 444398}
+ - {fileID: 465426}
+ - {fileID: 430936}
+ - {fileID: 460238}
+ - {fileID: 444298}
+ - {fileID: 417572}
+ - {fileID: 438456}
+ - {fileID: 484896}
+ - {fileID: 499306}
+ - {fileID: 493946}
+ - {fileID: 492386}
+ - {fileID: 462992}
+ - {fileID: 439114}
+ - {fileID: 486820}
+ - {fileID: 431074}
+ - {fileID: 496016}
+ - {fileID: 425100}
+ - {fileID: 430172}
+ - {fileID: 497224}
+ - {fileID: 407724}
+ - {fileID: 476550}
+ - {fileID: 468086}
+ - {fileID: 457070}
+ - {fileID: 487602}
+ - {fileID: 445972}
+ - {fileID: 474380}
+ - {fileID: 455352}
+ - {fileID: 468872}
+ - {fileID: 484994}
+ - {fileID: 434100}
+ - {fileID: 412720}
+ - {fileID: 493742}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 443490}
+ m_AABB:
+ m_Center: {x: -0.023521543, y: 0.0013394654, z: -0.027328342}
+ m_Extent: {x: 0.9545599, y: 0.89296556, z: 0.20781872}
+ m_DirtyAABB: 0
+--- !u!137 &13797046
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 188130}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: bf2b4aaaf633ea1449a183726b6fa2f3, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ serializedVersion: 2
+ m_Quality: 0
+ m_UpdateWhenOffscreen: 0
+ m_SkinnedMotionVectors: 1
+ m_Mesh: {fileID: 4300000, guid: d8b5188c259ea8544ae17ee5ae98d2a0, type: 3}
+ m_Bones:
+ - {fileID: 466554}
+ - {fileID: 449206}
+ - {fileID: 414532}
+ - {fileID: 430442}
+ - {fileID: 497654}
+ - {fileID: 425102}
+ - {fileID: 427238}
+ - {fileID: 457102}
+ - {fileID: 484624}
+ - {fileID: 470272}
+ - {fileID: 493568}
+ - {fileID: 455834}
+ - {fileID: 497420}
+ - {fileID: 468216}
+ - {fileID: 418728}
+ - {fileID: 434004}
+ - {fileID: 433740}
+ - {fileID: 432198}
+ - {fileID: 490468}
+ - {fileID: 446572}
+ - {fileID: 416220}
+ - {fileID: 408966}
+ - {fileID: 483214}
+ - {fileID: 414452}
+ - {fileID: 425338}
+ - {fileID: 475882}
+ - {fileID: 474458}
+ - {fileID: 422562}
+ - {fileID: 407314}
+ - {fileID: 458990}
+ - {fileID: 434336}
+ - {fileID: 445090}
+ - {fileID: 415802}
+ - {fileID: 406682}
+ - {fileID: 425182}
+ - {fileID: 441158}
+ - {fileID: 482982}
+ - {fileID: 412358}
+ - {fileID: 490722}
+ - {fileID: 458418}
+ - {fileID: 447806}
+ - {fileID: 475038}
+ - {fileID: 474548}
+ - {fileID: 407316}
+ - {fileID: 478972}
+ - {fileID: 442280}
+ - {fileID: 429756}
+ - {fileID: 421680}
+ - {fileID: 415252}
+ - {fileID: 410978}
+ - {fileID: 483916}
+ - {fileID: 486938}
+ - {fileID: 483206}
+ - {fileID: 411756}
+ - {fileID: 477666}
+ - {fileID: 444716}
+ - {fileID: 479104}
+ - {fileID: 433616}
+ - {fileID: 421410}
+ - {fileID: 447466}
+ - {fileID: 488536}
+ - {fileID: 462586}
+ - {fileID: 486510}
+ - {fileID: 416918}
+ - {fileID: 479434}
+ - {fileID: 453280}
+ - {fileID: 493918}
+ - {fileID: 436242}
+ - {fileID: 476862}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 466554}
+ m_AABB:
+ m_Center: {x: -0.2841488, y: -0.0001771748, z: 0.033477217}
+ m_Extent: {x: 0.9447558, y: 0.97485363, z: 0.3710446}
+ m_DirtyAABB: 0
+--- !u!198 &19815056
+ParticleSystem:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 118748}
+ serializedVersion: 4
+ lengthInSec: 5
+ startDelay:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ speed: 1
+ looping: 1
+ prewarm: 0
+ playOnAwake: 1
+ moveWithTransform: 1
+ autoRandomSeed: 1
+ scalingMode: 1
+ randomSeed: 0
+ InitialModule:
+ serializedVersion: 2
+ enabled: 1
+ startLifetime:
+ scalar: 4
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSpeed:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startColor:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 0
+ startSize:
+ scalar: 0.1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeY:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeZ:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationX:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationY:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotation:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ randomizeRotationDirection: 0
+ gravityModifier: 0
+ maxNumParticles: 1000
+ size3D: 0
+ rotation3D: 0
+ ShapeModule:
+ serializedVersion: 2
+ enabled: 1
+ type: 0
+ radius: 0.3
+ angle: 25
+ length: 5
+ boxX: 1
+ boxY: 1
+ boxZ: 1
+ arc: 360
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ randomDirection: 0
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 2
+ m_Type: 0
+ rate:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ cnt0: 30
+ cnt1: 30
+ cnt2: 30
+ cnt3: 30
+ cntmax0: 30
+ cntmax1: 30
+ cntmax2: 30
+ cntmax3: 30
+ time0: 0
+ time1: 0
+ time2: 0
+ time3: 0
+ m_BurstCount: 0
+ SizeModule:
+ enabled: 1
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.4516129
+ inSlope: 2.336455
+ outSlope: 2.336455
+ tangentMode: 0
+ - time: 1
+ value: 0.54838705
+ inSlope: -1.5883799
+ outSlope: -1.5883799
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 16777215
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 4278190080
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 4048
+ atime2: 62451
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ UVModule:
+ enabled: 1
+ frameOverTime:
+ scalar: 0.5
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 1
+ outSlope: 1
+ tangentMode: 10
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 1
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ startFrame:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ tilesX: 2
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 200
+ uvChannelMask: -1
+ randomRow: 1
+ VelocityModule:
+ enabled: 1
+ x:
+ scalar: 0.5
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.06810041
+ inSlope: -2.2497234
+ outSlope: -2.2497234
+ tangentMode: 0
+ - time: 0.19249876
+ value: 0.36654413
+ inSlope: 0.03747642
+ outSlope: 0.03747642
+ tangentMode: 0
+ - time: 0.4352276
+ value: 0.11553252
+ inSlope: -0.68455935
+ outSlope: -0.68455935
+ tangentMode: 0
+ - time: 0.6204743
+ value: 0.36449665
+ inSlope: 0.18052757
+ outSlope: 0.18052757
+ tangentMode: 0
+ - time: 0.83837074
+ value: 0.117438644
+ inSlope: -1.1840463
+ outSlope: -1.1840463
+ tangentMode: 0
+ - time: 1
+ value: 0.032258034
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0.004750593
+ value: -0.046595
+ inSlope: 2.766428
+ outSlope: 2.766428
+ tangentMode: 0
+ - time: 0.21140938
+ value: -0.29423496
+ inSlope: -1.2541094
+ outSlope: -1.2541094
+ tangentMode: 0
+ - time: 0.42009977
+ value: -0.123808935
+ inSlope: -0.538677
+ outSlope: -0.538677
+ tangentMode: 0
+ - time: 0.6481695
+ value: -0.3073597
+ inSlope: 0.10035932
+ outSlope: 0.10035932
+ tangentMode: 0
+ - time: 0.83799195
+ value: -0.09346932
+ inSlope: 2.4975836
+ outSlope: 2.4975836
+ tangentMode: 0
+ - time: 1
+ value: -0.08243726
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 2
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0.004750593
+ value: -0.0716846
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.40375754
+ value: -0.23638044
+ inSlope: 0.021606684
+ outSlope: 0.021606684
+ tangentMode: 0
+ - time: 0.6840854
+ value: 0.1234549
+ inSlope: -0.006686896
+ outSlope: -0.006686896
+ tangentMode: 0
+ - time: 1
+ value: -0.05734768
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.057347655
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.23760581
+ value: 0.20421031
+ inSlope: 0.048317015
+ outSlope: 0.048317015
+ tangentMode: 0
+ - time: 0.5059382
+ value: -0.24372762
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.6889286
+ value: 0.1613541
+ inSlope: -0.72687864
+ outSlope: -0.72687864
+ tangentMode: 0
+ - time: 1
+ value: 0.057347655
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 2
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.06451613
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.17815739
+ value: -0.020461192
+ inSlope: -0.0078603625
+ outSlope: -0.0078603625
+ tangentMode: 0
+ - time: 0.5983398
+ value: 0.12355407
+ inSlope: -0.0914745
+ outSlope: -0.0914745
+ tangentMode: 0
+ - time: 0.9976245
+ value: -0.071684584
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.04301074
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.049881235
+ value: 0.04301074
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.20672119
+ value: 0.1492432
+ inSlope: -0.0678096
+ outSlope: -0.0678096
+ tangentMode: 0
+ - time: 0.5964561
+ value: -0.21700746
+ inSlope: -0.26583672
+ outSlope: -0.26583672
+ tangentMode: 0
+ - time: 1
+ value: -0.000000011175871
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 2
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ ForceModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ magnitude:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_Bounce:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_EnergyLossOnCollision:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ enabled: 0
+ subEmitterBirth: {fileID: 0}
+ subEmitterBirth1: {fileID: 0}
+ subEmitterCollision: {fileID: 0}
+ subEmitterCollision1: {fileID: 0}
+ subEmitterDeath: {fileID: 0}
+ subEmitterDeath1: {fileID: 0}
+--- !u!198 &19826932
+ParticleSystem:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170174}
+ serializedVersion: 4
+ lengthInSec: 10
+ startDelay:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ speed: 1
+ looping: 1
+ prewarm: 1
+ playOnAwake: 1
+ moveWithTransform: 1
+ autoRandomSeed: 1
+ scalingMode: 1
+ randomSeed: 0
+ InitialModule:
+ serializedVersion: 2
+ enabled: 1
+ startLifetime:
+ scalar: 7
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSpeed:
+ scalar: 0.1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startColor:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 0
+ startSize:
+ scalar: 0.2
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeY:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeZ:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationX:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationY:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotation:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ randomizeRotationDirection: 0
+ gravityModifier: 0
+ maxNumParticles: 4
+ size3D: 0
+ rotation3D: 0
+ ShapeModule:
+ serializedVersion: 2
+ enabled: 1
+ type: 5
+ radius: 1
+ angle: 25
+ length: 5
+ boxX: 0.01
+ boxY: 0.01
+ boxZ: 0.01
+ arc: 360
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ randomDirection: 0
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 2
+ m_Type: 0
+ rate:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ cnt0: 30
+ cnt1: 30
+ cnt2: 30
+ cnt3: 30
+ cntmax0: 30
+ cntmax1: 30
+ cntmax2: 30
+ cntmax3: 30
+ time0: 0
+ time1: 0
+ time2: 0
+ time3: 0
+ m_BurstCount: 0
+ SizeModule:
+ enabled: 1
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.4229391
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1.1666654
+ outSlope: 1.1666654
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 16777215
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 4278190080
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 4433
+ atime2: 42983
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ UVModule:
+ enabled: 0
+ frameOverTime:
+ scalar: 0.9999
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ startFrame:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ tilesX: 1
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 1
+ uvChannelMask: -1
+ randomRow: 1
+ VelocityModule:
+ enabled: 1
+ x:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 0.3
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.17204301
+ inSlope: 3.6458335
+ outSlope: 3.6458335
+ tangentMode: 0
+ - time: 0.21889396
+ value: 0.38709676
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.57844317
+ value: -0.30959907
+ inSlope: -0.44330955
+ outSlope: -0.44330955
+ tangentMode: 0
+ - time: 1
+ value: -0.050179183
+ inSlope: -3.3140063
+ outSlope: -3.3140063
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ ForceModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ magnitude:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_Bounce:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_EnergyLossOnCollision:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ enabled: 0
+ subEmitterBirth: {fileID: 0}
+ subEmitterBirth1: {fileID: 0}
+ subEmitterCollision: {fileID: 0}
+ subEmitterCollision1: {fileID: 0}
+ subEmitterDeath: {fileID: 0}
+ subEmitterDeath1: {fileID: 0}
+--- !u!198 &19830806
+ParticleSystem:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 133330}
+ serializedVersion: 4
+ lengthInSec: 5
+ startDelay:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ speed: 1
+ looping: 1
+ prewarm: 0
+ playOnAwake: 1
+ moveWithTransform: 1
+ autoRandomSeed: 1
+ scalingMode: 1
+ randomSeed: 0
+ InitialModule:
+ serializedVersion: 2
+ enabled: 1
+ startLifetime:
+ scalar: 4
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSpeed:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startColor:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 0
+ startSize:
+ scalar: 0.1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeY:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeZ:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationX:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationY:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotation:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ randomizeRotationDirection: 0
+ gravityModifier: 0
+ maxNumParticles: 1000
+ size3D: 0
+ rotation3D: 0
+ ShapeModule:
+ serializedVersion: 2
+ enabled: 1
+ type: 0
+ radius: 0.3
+ angle: 25
+ length: 5
+ boxX: 1
+ boxY: 1
+ boxZ: 1
+ arc: 360
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ randomDirection: 0
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 2
+ m_Type: 0
+ rate:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ cnt0: 30
+ cnt1: 30
+ cnt2: 30
+ cnt3: 30
+ cntmax0: 30
+ cntmax1: 30
+ cntmax2: 30
+ cntmax3: 30
+ time0: 0
+ time1: 0
+ time2: 0
+ time3: 0
+ m_BurstCount: 0
+ SizeModule:
+ enabled: 1
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.4516129
+ inSlope: 2.336455
+ outSlope: 2.336455
+ tangentMode: 0
+ - time: 1
+ value: 0.54838705
+ inSlope: -1.5883799
+ outSlope: -1.5883799
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 16777215
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 4278190080
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 4048
+ atime2: 62451
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ UVModule:
+ enabled: 1
+ frameOverTime:
+ scalar: 0.5
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 1
+ outSlope: 1
+ tangentMode: 10
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 1
+ tangentMode: 10
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ startFrame:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ tilesX: 2
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 200
+ uvChannelMask: -1
+ randomRow: 1
+ VelocityModule:
+ enabled: 1
+ x:
+ scalar: 0.5
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.06810041
+ inSlope: -2.2497234
+ outSlope: -2.2497234
+ tangentMode: 0
+ - time: 0.19249876
+ value: 0.36654413
+ inSlope: 0.03747642
+ outSlope: 0.03747642
+ tangentMode: 0
+ - time: 0.4352276
+ value: 0.11553252
+ inSlope: -0.68455935
+ outSlope: -0.68455935
+ tangentMode: 0
+ - time: 0.6204743
+ value: 0.36449665
+ inSlope: 0.18052757
+ outSlope: 0.18052757
+ tangentMode: 0
+ - time: 0.83837074
+ value: 0.117438644
+ inSlope: -1.1840463
+ outSlope: -1.1840463
+ tangentMode: 0
+ - time: 1
+ value: 0.032258034
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0.004750593
+ value: -0.046595
+ inSlope: 2.766428
+ outSlope: 2.766428
+ tangentMode: 0
+ - time: 0.21140938
+ value: -0.29423496
+ inSlope: -1.2541094
+ outSlope: -1.2541094
+ tangentMode: 0
+ - time: 0.42009977
+ value: -0.123808935
+ inSlope: -0.538677
+ outSlope: -0.538677
+ tangentMode: 0
+ - time: 0.6481695
+ value: -0.3073597
+ inSlope: 0.10035932
+ outSlope: 0.10035932
+ tangentMode: 0
+ - time: 0.83799195
+ value: -0.09346932
+ inSlope: 2.4975836
+ outSlope: 2.4975836
+ tangentMode: 0
+ - time: 1
+ value: -0.08243726
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 2
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0.004750593
+ value: -0.0716846
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.40375754
+ value: -0.23638044
+ inSlope: 0.021606684
+ outSlope: 0.021606684
+ tangentMode: 0
+ - time: 0.6840854
+ value: 0.1234549
+ inSlope: -0.006686896
+ outSlope: -0.006686896
+ tangentMode: 0
+ - time: 1
+ value: -0.05734768
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.057347655
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.23760581
+ value: 0.20421031
+ inSlope: 0.048317015
+ outSlope: 0.048317015
+ tangentMode: 0
+ - time: 0.5059382
+ value: -0.24372762
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.6889286
+ value: 0.1613541
+ inSlope: -0.72687864
+ outSlope: -0.72687864
+ tangentMode: 0
+ - time: 1
+ value: 0.057347655
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 2
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -0.06451613
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.17815739
+ value: -0.020461192
+ inSlope: -0.0078603625
+ outSlope: -0.0078603625
+ tangentMode: 0
+ - time: 0.5983398
+ value: 0.12355407
+ inSlope: -0.0914745
+ outSlope: -0.0914745
+ tangentMode: 0
+ - time: 0.9976245
+ value: -0.071684584
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.04301074
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.049881235
+ value: 0.04301074
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 0.20672119
+ value: 0.1492432
+ inSlope: -0.0678096
+ outSlope: -0.0678096
+ tangentMode: 0
+ - time: 0.5964561
+ value: -0.21700746
+ inSlope: -0.26583672
+ outSlope: -0.26583672
+ tangentMode: 0
+ - time: 1
+ value: -0.000000011175871
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 2
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ ForceModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ magnitude:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_Bounce:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_EnergyLossOnCollision:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ enabled: 0
+ subEmitterBirth: {fileID: 0}
+ subEmitterBirth1: {fileID: 0}
+ subEmitterCollision: {fileID: 0}
+ subEmitterCollision1: {fileID: 0}
+ subEmitterDeath: {fileID: 0}
+ subEmitterDeath1: {fileID: 0}
+--- !u!199 &19912398
+ParticleSystemRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 133330}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: a7afd1b848210eb47af0d2b72c2844c0, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+--- !u!199 &19937256
+ParticleSystemRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170174}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 1a154997a08254f4ab6fb216e582bc17, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+--- !u!199 &19960112
+ParticleSystemRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 118748}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: a7afd1b848210eb47af0d2b72c2844c0, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+--- !u!208 &20808916
+NavMeshObstacle:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 144138}
+ m_Enabled: 1
+ serializedVersion: 3
+ m_Shape: 1
+ m_Extents: {x: 2.42, y: 1.5, z: 1.155}
+ m_MoveThreshold: 0.1
+ m_Carve: 1
+ m_CarveOnlyStationary: 1
+ m_Center: {x: 0, y: 1.5, z: 0}
+ m_TimeToStationary: 0.5
+--- !u!212 &21218946
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 175178}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: ee1701bd3676de14c86a6f7cedc08177, type: 3}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_FlipX: 1
+ m_FlipY: 0
+--- !u!212 &21258622
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 146950}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: 1f7e69f695c34aa4eb96e9309660d3bb, type: 3}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_FlipX: 1
+ m_FlipY: 0
+--- !u!1001 &100100000
+Prefab:
+ m_ObjectHideFlags: 1
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications: []
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 0}
+ m_RootGameObject: {fileID: 166038}
+ m_IsPrefabParent: 1
+--- !u!1 &1000010050015194
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011497794246}
+ - 108: {fileID: 108000011379392932}
+ m_Layer: 0
+ m_Name: Point light (28)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010116575736
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011298767322}
+ - 108: {fileID: 108000012013277942}
+ m_Layer: 0
+ m_Name: Point light (27)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010161120522
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010177798814}
+ m_Layer: 0
+ m_Name: MarketEnvironment
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000010352954424
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010776586818}
+ - 108: {fileID: 108000013345948036}
+ m_Layer: 0
+ m_Name: Point light (3)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010366314220
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011245972102}
+ - 33: {fileID: 33000012184341934}
+ - 23: {fileID: 23000013307707226}
+ m_Layer: 0
+ m_Name: VendingMachine02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000010386383016
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010066678534}
+ - 33: {fileID: 33000012883118608}
+ - 23: {fileID: 23000010516456482}
+ m_Layer: 0
+ m_Name: Fruit01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000010390069016
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010539586106}
+ - 108: {fileID: 108000010058688896}
+ m_Layer: 0
+ m_Name: Point light (10)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010429350340
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011052872870}
+ - 33: {fileID: 33000012041659044}
+ - 23: {fileID: 23000013538769974}
+ m_Layer: 0
+ m_Name: BlackUnlit
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000010434117254
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012366809722}
+ - 33: {fileID: 33000011315042174}
+ - 23: {fileID: 23000012365511950}
+ m_Layer: 8
+ m_Name: GroundTiles
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000010557850426
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013974808708}
+ - 33: {fileID: 33000012629538820}
+ - 23: {fileID: 23000011747874130}
+ m_Layer: 0
+ m_Name: Chairs01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000010575974788
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011456140166}
+ - 33: {fileID: 33000013208067380}
+ - 23: {fileID: 23000013358425562}
+ m_Layer: 0
+ m_Name: SpiceBags02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000010577201382
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013173696896}
+ - 108: {fileID: 108000014249592308}
+ m_Layer: 0
+ m_Name: Point light (5)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010578718982
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010390479484}
+ - 33: {fileID: 33000011187187206}
+ - 23: {fileID: 23000010081461818}
+ m_Layer: 0
+ m_Name: FoodTrays03
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000010593420792
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010566649434}
+ - 108: {fileID: 108000014109877380}
+ m_Layer: 0
+ m_Name: Point light (8)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010619207620
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012224596626}
+ m_Layer: 0
+ m_Name: BakedLights
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!1 &1000010696735110
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010863013730}
+ - 33: {fileID: 33000012454794064}
+ - 23: {fileID: 23000011313851034}
+ m_Layer: 0
+ m_Name: Door03
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000010799427700
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010342261882}
+ - 108: {fileID: 108000010712487640}
+ m_Layer: 0
+ m_Name: Point light (23)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010835162296
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011713895308}
+ - 33: {fileID: 33000010896518500}
+ - 23: {fileID: 23000011912886142}
+ m_Layer: 0
+ m_Name: Door01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000010946774752
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010729056722}
+ - 108: {fileID: 108000011010330984}
+ m_Layer: 0
+ m_Name: Point light (15)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010948589894
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014243404416}
+ - 33: {fileID: 33000014250403646}
+ - 23: {fileID: 23000013159541884}
+ m_Layer: 0
+ m_Name: Aircon02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000010956872858
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014021049254}
+ - 33: {fileID: 33000012737085218}
+ - 23: {fileID: 23000010197851214}
+ m_Layer: 0
+ m_Name: WallMetal
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000010981674584
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010665712348}
+ - 33: {fileID: 33000011173260114}
+ - 23: {fileID: 23000014026881926}
+ m_Layer: 0
+ m_Name: Dustbin02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000011022045172
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013909027710}
+ - 108: {fileID: 108000014218703074}
+ m_Layer: 0
+ m_Name: Point light
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011042193294
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011770117432}
+ - 33: {fileID: 33000010217895944}
+ - 23: {fileID: 23000013092732116}
+ m_Layer: 0
+ m_Name: Signs
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000011064586002
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011970143428}
+ - 33: {fileID: 33000013451571972}
+ - 23: {fileID: 23000012369864628}
+ m_Layer: 0
+ m_Name: Stalls02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000011101800730
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012481029452}
+ - 108: {fileID: 108000010424055650}
+ m_Layer: 0
+ m_Name: Point light (1)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011107108076
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013448190248}
+ - 33: {fileID: 33000010361757878}
+ - 23: {fileID: 23000013521245656}
+ m_Layer: 0
+ m_Name: Bollards
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000011138330038
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013129013374}
+ - 108: {fileID: 108000011883189556}
+ m_Layer: 0
+ m_Name: Point light (6)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011149150078
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013202039430}
+ - 33: {fileID: 33000013227465274}
+ - 23: {fileID: 23000011278799052}
+ m_Layer: 0
+ m_Name: Fruit02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000011190518292
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013908900878}
+ - 108: {fileID: 108000013420189610}
+ m_Layer: 0
+ m_Name: Point light (26)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011265435336
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011500646848}
+ - 33: {fileID: 33000013366681188}
+ - 23: {fileID: 23000011173442592}
+ m_Layer: 0
+ m_Name: ShadeCloth02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000011483092826
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011857840630}
+ - 33: {fileID: 33000013932482994}
+ - 23: {fileID: 23000010117306012}
+ m_Layer: 0
+ m_Name: priceTags
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000011526188438
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012416685422}
+ - 33: {fileID: 33000013253715438}
+ - 23: {fileID: 23000012201756530}
+ m_Layer: 0
+ m_Name: Dustbin01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000011534707202
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011278069990}
+ - 108: {fileID: 108000010458486920}
+ m_Layer: 0
+ m_Name: Point light (18)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011542386872
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012655802246}
+ - 108: {fileID: 108000011989240810}
+ m_Layer: 0
+ m_Name: Point light (22)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011588914074
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014186865746}
+ - 108: {fileID: 108000013401031994}
+ m_Layer: 0
+ m_Name: Point light (19)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011589421498
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012883256596}
+ - 33: {fileID: 33000013650674948}
+ - 23: {fileID: 23000014165734814}
+ m_Layer: 0
+ m_Name: SmallTables
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000011638061368
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012087422310}
+ - 108: {fileID: 108000011999905092}
+ m_Layer: 0
+ m_Name: Point light (16)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011662931214
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014118212692}
+ - 33: {fileID: 33000013921517614}
+ - 23: {fileID: 23000011607751848}
+ m_Layer: 0
+ m_Name: Stalls01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000011701091146
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013503119662}
+ - 33: {fileID: 33000013893026308}
+ - 23: {fileID: 23000012868899768}
+ m_Layer: 0
+ m_Name: FoodTrays01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000011737949348
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012010990558}
+ - 108: {fileID: 108000014097525654}
+ m_Layer: 0
+ m_Name: Point light (14)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011884369998
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012631164380}
+ - 33: {fileID: 33000010102307218}
+ - 23: {fileID: 23000013584013786}
+ m_Layer: 0
+ m_Name: Pots01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000011957300548
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013251327414}
+ - 33: {fileID: 33000014182354870}
+ - 23: {fileID: 23000013647216178}
+ m_Layer: 8
+ m_Name: FrontWallShadowCaster
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967169
+ m_IsActive: 1
+--- !u!1 &1000011976653298
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010185335862}
+ - 33: {fileID: 33000011687000228}
+ - 23: {fileID: 23000010095491106}
+ m_Layer: 0
+ m_Name: Fish
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000011995698152
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013132685282}
+ - 33: {fileID: 33000010568319192}
+ - 23: {fileID: 23000011967694702}
+ m_Layer: 0
+ m_Name: Crates
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000012260513042
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012896271974}
+ - 33: {fileID: 33000011996595038}
+ - 23: {fileID: 23000010872736924}
+ m_Layer: 0
+ m_Name: Prosthetics
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000012273346412
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013805081104}
+ - 33: {fileID: 33000010506407830}
+ - 23: {fileID: 23000011564304522}
+ m_Layer: 0
+ m_Name: OldTech
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000012292369614
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011802908092}
+ - 220: {fileID: 220000013604701322}
+ m_Layer: 0
+ m_Name: Light Probe Group
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &1000012322959342
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014182363398}
+ - 108: {fileID: 108000010518054360}
+ m_Layer: 0
+ m_Name: Point light (21)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012327678176
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010699279870}
+ - 33: {fileID: 33000010600957860}
+ - 23: {fileID: 23000013788780698}
+ m_Layer: 8
+ m_Name: ShadeCloth03
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967169
+ m_IsActive: 1
+--- !u!1 &1000012431247696
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014048903704}
+ - 33: {fileID: 33000010005501152}
+ - 23: {fileID: 23000011118781032}
+ m_Layer: 0
+ m_Name: VendingMachine01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000012510622364
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012849854860}
+ - 33: {fileID: 33000011606672996}
+ - 23: {fileID: 23000013465870212}
+ m_Layer: 0
+ m_Name: Dustbin03
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000012532030892
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012728134972}
+ - 33: {fileID: 33000012350232326}
+ - 23: {fileID: 23000010816221510}
+ m_Layer: 0
+ m_Name: FoodTrays004
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000012956645350
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012073170274}
+ - 108: {fileID: 108000010148461140}
+ m_Layer: 0
+ m_Name: Point light (7)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013007511154
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013738579458}
+ - 33: {fileID: 33000013146749316}
+ - 23: {fileID: 23000013500225860}
+ m_Layer: 0
+ m_Name: Pots02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000013049859084
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011805128960}
+ - 33: {fileID: 33000011834982494}
+ - 23: {fileID: 23000013014354864}
+ m_Layer: 0
+ m_Name: CoffeeBotCover
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &1000013067895782
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013371435876}
+ - 108: {fileID: 108000011214051894}
+ m_Layer: 0
+ m_Name: SunLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013127327806
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013425582070}
+ - 108: {fileID: 108000010408243156}
+ m_Layer: 0
+ m_Name: Point light (20)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013139516526
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012286499360}
+ - 33: {fileID: 33000011120292014}
+ - 23: {fileID: 23000014268608128}
+ m_Layer: 0
+ m_Name: Door02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000013146444376
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012865427474}
+ - 108: {fileID: 108000013172402888}
+ m_Layer: 0
+ m_Name: Point light (4)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013224889604
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011417210918}
+ - 33: {fileID: 33000011657787124}
+ - 23: {fileID: 23000014129925622}
+ m_Layer: 8
+ m_Name: FloorPanels
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000013301925762
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012032043372}
+ - 33: {fileID: 33000012997094404}
+ - 23: {fileID: 23000014049333352}
+ m_Layer: 8
+ m_Name: ShadeCloth01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000013334296552
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013522469634}
+ - 108: {fileID: 108000013956482084}
+ m_Layer: 0
+ m_Name: Point light (13)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013350436744
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011111713180}
+ - 33: {fileID: 33000012420337704}
+ - 23: {fileID: 23000011400778488}
+ m_Layer: 0
+ m_Name: Pipes
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967169
+ m_IsActive: 1
+--- !u!1 &1000013396609202
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010451260880}
+ - 108: {fileID: 108000010677512704}
+ m_Layer: 0
+ m_Name: Point light (9)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013410586290
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010116867266}
+ - 108: {fileID: 108000012703873218}
+ m_Layer: 0
+ m_Name: Point light (25)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013437369974
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012184309212}
+ - 33: {fileID: 33000012279632418}
+ - 23: {fileID: 23000011328006468}
+ m_Layer: 0
+ m_Name: Aircon01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000013437491202
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010883403204}
+ - 33: {fileID: 33000010932005612}
+ - 23: {fileID: 23000013759765586}
+ m_Layer: 0
+ m_Name: WallStone
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000013460711154
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014187557706}
+ - 108: {fileID: 108000012910128384}
+ m_Layer: 0
+ m_Name: Point light (12)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013475813778
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012023044788}
+ - 33: {fileID: 33000013671461310}
+ - 23: {fileID: 23000012630072234}
+ m_Layer: 0
+ m_Name: Chairs02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000013491188004
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013042819694}
+ - 108: {fileID: 108000012865402060}
+ m_Layer: 0
+ m_Name: Point light (24)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013890919260
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011035261526}
+ - 108: {fileID: 108000010469878016}
+ m_Layer: 0
+ m_Name: Point light (2)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013904207510
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011907178362}
+ - 33: {fileID: 33000012133676542}
+ - 23: {fileID: 23000010547036480}
+ m_Layer: 0
+ m_Name: Doorway
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000013989040068
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010686168284}
+ - 33: {fileID: 33000012908860094}
+ - 23: {fileID: 23000010421139984}
+ m_Layer: 0
+ m_Name: SpiceBags01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000014167019186
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012718342190}
+ - 108: {fileID: 108000012482713510}
+ m_Layer: 0
+ m_Name: Point light (17)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000014204061096
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013650072268}
+ - 33: {fileID: 33000012943084410}
+ - 23: {fileID: 23000011813795958}
+ m_Layer: 8
+ m_Name: Ground
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967177
+ m_IsActive: 1
+--- !u!1 &1000014223758154
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010854622100}
+ - 108: {fileID: 108000012273992830}
+ m_Layer: 0
+ m_Name: Point light (11)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &4000010066678534
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010386383016}
+ m_LocalRotation: {x: -0.027169066, y: 0.022848886, z: -0.4842862, w: 0.8741892}
+ m_LocalPosition: {x: 9.252044, y: -8.599447, z: 0.9461646}
+ m_LocalScale: {x: 0.1574107, y: 0.15741064, z: 0.15741073}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 20
+--- !u!4 &4000010116867266
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013410586290}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 6.28, y: 6.58, z: 14.42}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 27
+--- !u!4 &4000010177798814
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010161120522}
+ m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
+ m_LocalPosition: {x: -0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012184309212}
+ - {fileID: 4000014243404416}
+ - {fileID: 4000011052872870}
+ - {fileID: 4000013448190248}
+ - {fileID: 4000013974808708}
+ - {fileID: 4000012023044788}
+ - {fileID: 4000013132685282}
+ - {fileID: 4000011713895308}
+ - {fileID: 4000012286499360}
+ - {fileID: 4000010863013730}
+ - {fileID: 4000011907178362}
+ - {fileID: 4000012416685422}
+ - {fileID: 4000010665712348}
+ - {fileID: 4000012849854860}
+ - {fileID: 4000010185335862}
+ - {fileID: 4000011417210918}
+ - {fileID: 4000013503119662}
+ - {fileID: 4000010390479484}
+ - {fileID: 4000012728134972}
+ - {fileID: 4000013251327414}
+ - {fileID: 4000010066678534}
+ - {fileID: 4000013202039430}
+ - {fileID: 4000013650072268}
+ - {fileID: 4000012366809722}
+ - {fileID: 4000013805081104}
+ - {fileID: 4000011111713180}
+ - {fileID: 4000012631164380}
+ - {fileID: 4000013738579458}
+ - {fileID: 4000011857840630}
+ - {fileID: 4000012896271974}
+ - {fileID: 4000012032043372}
+ - {fileID: 4000011500646848}
+ - {fileID: 4000010699279870}
+ - {fileID: 4000011770117432}
+ - {fileID: 4000012883256596}
+ - {fileID: 4000010686168284}
+ - {fileID: 4000011456140166}
+ - {fileID: 4000014118212692}
+ - {fileID: 4000011970143428}
+ - {fileID: 4000014048903704}
+ - {fileID: 4000011245972102}
+ - {fileID: 4000014021049254}
+ - {fileID: 4000010883403204}
+ m_Father: {fileID: 405900}
+ m_RootOrder: 16
+--- !u!4 &4000010185335862
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011976653298}
+ m_LocalRotation: {x: 0.094965905, y: -0.24095869, z: 0.10536944, w: 0.96011335}
+ m_LocalPosition: {x: 2.503753, y: 1.8283671, z: 0.9960465}
+ m_LocalScale: {x: 1.2018601, y: 1.2018602, z: 1.2018602}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 14
+--- !u!4 &4000010342261882
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010799427700}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 9.5, y: 6.58, z: 7.17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 25
+--- !u!4 &4000010390479484
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010578718982}
+ m_LocalRotation: {x: 0.0652631, y: 0.113039, z: 0.8586165, w: 0.4957224}
+ m_LocalPosition: {x: 4.674295, y: -16.816814, z: 1.0307429}
+ m_LocalScale: {x: 1, y: 1, z: 0.99999994}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 17
+--- !u!4 &4000010451260880
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013396609202}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 10.315, y: 2.015, z: 5.4}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 11
+--- !u!4 &4000010539586106
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010390069016}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 10.315, y: 1.73, z: 9.97}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 12
+--- !u!4 &4000010566649434
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010593420792}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 3.55, y: 1.95, z: -3.03}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 10
+--- !u!4 &4000010665712348
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010981674584}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 5.773584, y: 1.2478547, z: 0.004395504}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 12
+--- !u!4 &4000010686168284
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013989040068}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -10.491321, y: 2.6749194, z: 0.000000038146972}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 35
+--- !u!4 &4000010699279870
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012327678176}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -11.046476, y: -3.0352392, z: 2.4605374}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 32
+--- !u!4 &4000010729056722
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010946774752}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 2.452, y: 2.257, z: 4.251}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 17
+--- !u!4 &4000010776586818
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010352954424}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.38, y: 2.13, z: 0.46}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 3
+--- !u!4 &4000010854622100
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014223758154}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 12.17, y: 2, z: 17.79}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 13
+--- !u!4 &4000010863013730
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010696735110}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 12.028806, y: -0.9373883, z: 1.5155728}
+ m_LocalScale: {x: 1, y: 0.9447926, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 9
+--- !u!4 &4000010883403204
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013437491202}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 42
+--- !u!4 &4000011035261526
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013890919260}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 8.38, y: 4.65, z: 18.89}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 2
+--- !u!4 &4000011052872870
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010429350340}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 2
+--- !u!4 &4000011111713180
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013350436744}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 25
+--- !u!4 &4000011245972102
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010366314220}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.9814666, y: 1.8493043, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 40
+--- !u!4 &4000011278069990
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011534707202}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -14.545, y: 1.787, z: -2.34}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 20
+--- !u!4 &4000011298767322
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010116575736}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -8.41, y: 4.29, z: -2.57}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 29
+--- !u!4 &4000011417210918
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013224889604}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 15
+--- !u!4 &4000011456140166
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010575974788}
+ m_LocalRotation: {x: 0, y: 0, z: 0.7572056, w: 0.6531766}
+ m_LocalPosition: {x: 2.9999073, y: -7.6481357, z: 0.000000038146972}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 36
+--- !u!4 &4000011497794246
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010050015194}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 10.296, y: 3.502, z: 0.039}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 30
+--- !u!4 &4000011500646848
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011265435336}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -11.046476, y: -3.0352392, z: 2.4605374}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 31
+--- !u!4 &4000011713895308
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010835162296}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.3889956, y: 2.762316, z: 1.0949239}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 7
+--- !u!4 &4000011770117432
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011042193294}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 10.822483, y: -10.885503, z: 3.2829485}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 33
+--- !u!4 &4000011802908092
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012292369614}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 1.32, z: 0.5}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 405900}
+ m_RootOrder: 14
+--- !u!4 &4000011805128960
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013049859084}
+ m_LocalRotation: {x: -0.65573126, y: -0.26460642, z: -0.26460642, w: 0.65573126}
+ m_LocalPosition: {x: 8.767, y: 0.034, z: -1.192}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -89.981, y: 0, z: -43.881}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 5
+--- !u!4 &4000011857840630
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011483092826}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 3.3126824, y: -9.023785, z: 0.942838}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 28
+--- !u!4 &4000011907178362
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013904207510}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 10
+--- !u!4 &4000011970143428
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011064586002}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -14.698354, y: 1.9398657, z: -0.0012442779}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 38
+--- !u!4 &4000012010990558
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011737949348}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 4.221, y: 2.257, z: 7.841}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 16
+--- !u!4 &4000012023044788
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013475813778}
+ m_LocalRotation: {x: -0.6391767, y: 0.21880373, z: -0.23878247, w: 0.6975392}
+ m_LocalPosition: {x: -7.5071096, y: -2.7143774, z: 0.16586791}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 5
+--- !u!4 &4000012032043372
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013301925762}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -11.046476, y: -3.0352392, z: 2.4605374}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 30
+--- !u!4 &4000012073170274
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012956645350}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 4.389, y: 3.118, z: -3.219}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 8
+--- !u!4 &4000012087422310
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011638061368}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -10.64, y: 1.787, z: 2.09}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 18
+--- !u!4 &4000012184309212
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013437369974}
+ m_LocalRotation: {x: 0, y: 0, z: 0.7071068, w: 0.7071067}
+ m_LocalPosition: {x: 1.2284051, y: 3.313872, z: 3.1997528}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 0
+--- !u!4 &4000012224596626
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010619207620}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013909027710}
+ - {fileID: 4000012481029452}
+ - {fileID: 4000011035261526}
+ - {fileID: 4000010776586818}
+ - {fileID: 4000013371435876}
+ - {fileID: 4000011805128960}
+ - {fileID: 4000012865427474}
+ - {fileID: 4000013173696896}
+ - {fileID: 4000012073170274}
+ - {fileID: 4000013129013374}
+ - {fileID: 4000010566649434}
+ - {fileID: 4000010451260880}
+ - {fileID: 4000010539586106}
+ - {fileID: 4000010854622100}
+ - {fileID: 4000014187557706}
+ - {fileID: 4000013522469634}
+ - {fileID: 4000012010990558}
+ - {fileID: 4000010729056722}
+ - {fileID: 4000012087422310}
+ - {fileID: 4000012718342190}
+ - {fileID: 4000011278069990}
+ - {fileID: 4000014186865746}
+ - {fileID: 4000013425582070}
+ - {fileID: 4000014182363398}
+ - {fileID: 4000012655802246}
+ - {fileID: 4000010342261882}
+ - {fileID: 4000013042819694}
+ - {fileID: 4000010116867266}
+ - {fileID: 4000013908900878}
+ - {fileID: 4000011298767322}
+ - {fileID: 4000011497794246}
+ m_Father: {fileID: 405900}
+ m_RootOrder: 17
+--- !u!4 &4000012286499360
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013139516526}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.3889956, y: -3.2334094, z: 1.0949239}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 8
+--- !u!4 &4000012366809722
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010434117254}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 23
+--- !u!4 &4000012416685422
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011526188438}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -6.9104366, y: 2.2426288, z: 0.004395504}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 11
+--- !u!4 &4000012481029452
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011101800730}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 6.45, y: 2.47, z: 11.65}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 1
+--- !u!4 &4000012631164380
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011884369998}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 9.774787, y: -14.111426, z: 0}
+ m_LocalScale: {x: 0.729112, y: 0.729112, z: 0.6984594}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 26
+--- !u!4 &4000012655802246
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011542386872}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 9.5, y: 6.58, z: 2.99}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 24
+--- !u!4 &4000012718342190
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014167019186}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -14.356, y: 1.787, z: 2.523}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 19
+--- !u!4 &4000012728134972
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012532030892}
+ m_LocalRotation: {x: 0.092997275, y: 0.09158926, z: 0.69568956, w: 0.7063844}
+ m_LocalPosition: {x: 3.1040728, y: -12.47893, z: 0.9919782}
+ m_LocalScale: {x: 1, y: 1, z: 0.99999994}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 18
+--- !u!4 &4000012849854860
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012510622364}
+ m_LocalRotation: {x: -0, y: 0, z: 0.95371693, w: -0.3007058}
+ m_LocalPosition: {x: 6.2079453, y: -16.90894, z: 0.004395504}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 13
+--- !u!4 &4000012865427474
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013146444376}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.426, y: 2.782, z: -1.954}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 6
+--- !u!4 &4000012883256596
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011589421498}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 9.26923, y: -2.644345, z: 0.9590292}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 34
+--- !u!4 &4000012896271974
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012260513042}
+ m_LocalRotation: {x: -0.03755156, y: 0.20184313, z: 0.0077447416, w: 0.9786671}
+ m_LocalPosition: {x: 9.290655, y: -6.353006, z: 0.7497916}
+ m_LocalScale: {x: 1.1885791, y: 1.1885792, z: 1.1885791}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 29
+--- !u!4 &4000013042819694
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013491188004}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 9.5, y: 6.58, z: 11.99}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 26
+--- !u!4 &4000013129013374
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011138330038}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -10.81, y: 2.121, z: -2.61}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 9
+--- !u!4 &4000013132685282
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011995698152}
+ m_LocalRotation: {x: 0, y: 0, z: 0.52738684, w: 0.8496253}
+ m_LocalPosition: {x: 8.947026, y: -3.5716333, z: 0.46245974}
+ m_LocalScale: {x: 1, y: 0.8572046, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 6
+--- !u!4 &4000013173696896
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010577201382}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.2, y: 2.348, z: -1.559}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 7
+--- !u!4 &4000013202039430
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011149150078}
+ m_LocalRotation: {x: -0.027169066, y: 0.022848886, z: -0.4842862, w: 0.8741892}
+ m_LocalPosition: {x: 4.2334514, y: -13.535828, z: 0.9461646}
+ m_LocalScale: {x: 0.1574107, y: 0.15741064, z: 0.15741073}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 21
+--- !u!4 &4000013251327414
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011957300548}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.3756185, z: 2.0719466}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 19
+--- !u!4 &4000013371435876
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013067895782}
+ m_LocalRotation: {x: 0.8686281, y: -0.074446425, z: 0.3138341, w: 0.37609994}
+ m_LocalPosition: {x: -2.0387483, y: 3.65, z: 0.5927165}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 4
+--- !u!4 &4000013425582070
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013127327806}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.426, y: 2.782, z: -1.954}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 22
+--- !u!4 &4000013448190248
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011107108076}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0, y: -0.3979898, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 3
+--- !u!4 &4000013503119662
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011701091146}
+ m_LocalRotation: {x: 0.11376956, y: 0.0007763773, z: 0.0067796553, w: 0.9934838}
+ m_LocalPosition: {x: -15.882573, y: 1.9414957, z: 1.0144908}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 16
+--- !u!4 &4000013522469634
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013334296552}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 3.849, y: 1.604, z: 11.261}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 15
+--- !u!4 &4000013650072268
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014204061096}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 22
+--- !u!4 &4000013738579458
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013007511154}
+ m_LocalRotation: {x: 0, y: 0, z: -0.73727715, w: 0.6755904}
+ m_LocalPosition: {x: -10.762651, y: -2.156256, z: 0}
+ m_LocalScale: {x: 0.729112, y: 0.729112, z: 0.6984594}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 27
+--- !u!4 &4000013805081104
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012273346412}
+ m_LocalRotation: {x: -0.11030561, y: 0.055933364, z: -0.41579798, w: 0.9010084}
+ m_LocalPosition: {x: 1.241824, y: -3.8560421, z: 1.0158453}
+ m_LocalScale: {x: 1.2317907, y: 1.2317903, z: 1.2317904}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 24
+--- !u!4 &4000013908900878
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011190518292}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 1.89, y: 6.58, z: -1.57}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 28
+--- !u!4 &4000013909027710
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011022045172}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 4.93, y: 1.88, z: 2.35}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 0
+--- !u!4 &4000013974808708
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010557850426}
+ m_LocalRotation: {x: 0, y: 0, z: -0.20652848, w: 0.9784406}
+ m_LocalPosition: {x: 8.757342, y: -7.4552865, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 4
+--- !u!4 &4000014021049254
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010956872858}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -4.4267993, y: -4.394989, z: 2.5203755}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 41
+--- !u!4 &4000014048903704
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012431247696}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.50684273, y: 1.8493043, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 39
+--- !u!4 &4000014118212692
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011662931214}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -14.698354, y: 1.9398657, z: -0.0012442779}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 37
+--- !u!4 &4000014182363398
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012322959342}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 8.5, y: 6.58, z: -1.5}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 23
+--- !u!4 &4000014186865746
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011588914074}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.14, y: 1.59, z: -2.89}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 21
+--- !u!4 &4000014187557706
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013460711154}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 4.849, y: 1.904, z: 15.155}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012224596626}
+ m_RootOrder: 14
+--- !u!4 &4000014243404416
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010948589894}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 10.913458, y: -11.893757, z: 3.1997528}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010177798814}
+ m_RootOrder: 1
+--- !u!23 &23000010081461818
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010578718982}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 61678ebbb8fa54046afc6d3f0232531c, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000010095491106
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011976653298}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 329c7db3030cc1d418a9f416eaed765f, type: 2}
+ - {fileID: 2100000, guid: 08f4e3363e393374ca0cd78cf5c5a14a, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000010117306012
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011483092826}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 8c9652377256a5d41bde897da527a3a2, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000010197851214
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010956872858}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: e59530a749010fc4fb744508277ac143, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000010421139984
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013989040068}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 4ec2d68a2ff08f94e982603197685a68, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000010516456482
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010386383016}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 18c2bd17f423d0749b72b7b321239244, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000010547036480
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013904207510}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 1fa0545d742cf194684d26312066441d, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000010816221510
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012532030892}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 61678ebbb8fa54046afc6d3f0232531c, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000010872736924
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012260513042}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 542062432d660d64f87455adddbf8343, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011118781032
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012431247696}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: e601b63d46663824d853a55aa1d71001, type: 2}
+ - {fileID: 2100000, guid: cb7d12c46517df84eb12587362b496a8, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011173442592
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011265435336}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3ea3a2c6801aae54396d0e9359371fc8, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011278799052
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011149150078}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 18c2bd17f423d0749b72b7b321239244, type: 2}
+ m_SubsetIndices:
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 2
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 0
+ m_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011313851034
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010696735110}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 21f4fccb919166745b81be58b6c766a0, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011328006468
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013437369974}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 895e35e06e2d8fc448bb48e11a72ffb8, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011400778488
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013350436744}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: cf64d91bf9d60fa46803c50a585aff08, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011564304522
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012273346412}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 0388f2d5fd84c014dbb18d851a95c1bf, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011607751848
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011662931214}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 60d569cced1f71b44b6922c49e5bb4ae, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011747874130
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010557850426}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3f196f5aa004d894c81b14bfba41ac27, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011813795958
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014204061096}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3a48947a76978074795eb630980e7e56, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011912886142
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010835162296}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 21f4fccb919166745b81be58b6c766a0, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011967694702
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011995698152}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 6811dc329162c624690784272c6a74fb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000012201756530
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011526188438}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 7cf13ff2ec6ecf6458f22b58c36f2e32, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000012365511950
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010434117254}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: e59530a749010fc4fb744508277ac143, type: 2}
+ - {fileID: 2100000, guid: 99bd920f43dd23e478029c6318bf5bbd, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000012369864628
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011064586002}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 60d569cced1f71b44b6922c49e5bb4ae, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000012630072234
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013475813778}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3f196f5aa004d894c81b14bfba41ac27, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000012868899768
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011701091146}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 61678ebbb8fa54046afc6d3f0232531c, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013014354864
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013049859084}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 255f1dad6693d9f4188b911d81ea50ed, type: 2}
+ m_SubsetIndices:
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 0.001
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 0
+ m_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013092732116
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011042193294}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 71e4cc976fb954d489e47c27ba9c6950, type: 2}
+ - {fileID: 2100000, guid: 364a48ba02c665f4688dacc733734f05, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013159541884
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010948589894}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 895e35e06e2d8fc448bb48e11a72ffb8, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013307707226
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010366314220}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: e601b63d46663824d853a55aa1d71001, type: 2}
+ - {fileID: 2100000, guid: cb7d12c46517df84eb12587362b496a8, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013358425562
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010575974788}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 4ec2d68a2ff08f94e982603197685a68, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013465870212
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012510622364}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 7cf13ff2ec6ecf6458f22b58c36f2e32, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013500225860
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013007511154}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: baa9de290ac47c74b8ce1db516ff702e, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013521245656
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011107108076}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: ca130c123aa674f48bd5de8d3f8784b7, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013538769974
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010429350340}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 18b73e95c08e7624d88d2200187d9cb3, type: 2}
+ m_SubsetIndices:
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 0.001
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 0
+ m_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013584013786
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011884369998}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: baa9de290ac47c74b8ce1db516ff702e, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013647216178
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011957300548}
+ m_Enabled: 1
+ m_CastShadows: 3
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: e59530a749010fc4fb744508277ac143, type: 2}
+ m_SubsetIndices:
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 0.001
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 0
+ m_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013759765586
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013437491202}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 841101597fac029489d23f6adc912343, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013788780698
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012327678176}
+ m_Enabled: 1
+ m_CastShadows: 3
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3ea3a2c6801aae54396d0e9359371fc8, type: 2}
+ m_SubsetIndices:
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 0.001
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 0
+ m_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000014026881926
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010981674584}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 7cf13ff2ec6ecf6458f22b58c36f2e32, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000014049333352
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013301925762}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3ea3a2c6801aae54396d0e9359371fc8, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000014129925622
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013224889604}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: d5c39045660bc764a8ef604888042b5b, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000014165734814
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011589421498}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 7d219517a6224674483d884585bad268, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000014268608128
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013139516526}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 21f4fccb919166745b81be58b6c766a0, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!33 &33000010005501152
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012431247696}
+ m_Mesh: {fileID: 4300058, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000010102307218
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011884369998}
+ m_Mesh: {fileID: 4300006, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000010217895944
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011042193294}
+ m_Mesh: {fileID: 4300056, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000010361757878
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011107108076}
+ m_Mesh: {fileID: 4300004, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000010506407830
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012273346412}
+ m_Mesh: {fileID: 4300066, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000010568319192
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011995698152}
+ m_Mesh: {fileID: 4300018, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000010600957860
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012327678176}
+ m_Mesh: {fileID: 4300092, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000010896518500
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010835162296}
+ m_Mesh: {fileID: 4300048, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000010932005612
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013437491202}
+ m_Mesh: {fileID: 4300078, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000011120292014
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013139516526}
+ m_Mesh: {fileID: 4300046, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000011173260114
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010981674584}
+ m_Mesh: {fileID: 4300036, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000011187187206
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010578718982}
+ m_Mesh: {fileID: 4300016, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000011315042174
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010434117254}
+ m_Mesh: {fileID: 4300100, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000011606672996
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012510622364}
+ m_Mesh: {fileID: 4300010, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000011657787124
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013224889604}
+ m_Mesh: {fileID: 4300096, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000011687000228
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011976653298}
+ m_Mesh: {fileID: 4300050, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000011834982494
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013049859084}
+ m_Mesh: {fileID: 4300000, guid: a6c69704f7dc81b4b943597cabdaece9, type: 3}
+--- !u!33 &33000011996595038
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012260513042}
+ m_Mesh: {fileID: 4300060, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000012041659044
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010429350340}
+ m_Mesh: {fileID: 4300080, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000012133676542
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013904207510}
+ m_Mesh: {fileID: 4300082, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000012184341934
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010366314220}
+ m_Mesh: {fileID: 4300064, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000012279632418
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013437369974}
+ m_Mesh: {fileID: 4300026, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000012350232326
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012532030892}
+ m_Mesh: {fileID: 4300044, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000012420337704
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013350436744}
+ m_Mesh: {fileID: 4300074, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000012454794064
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010696735110}
+ m_Mesh: {fileID: 4300052, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000012629538820
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010557850426}
+ m_Mesh: {fileID: 4300020, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000012737085218
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010956872858}
+ m_Mesh: {fileID: 4300098, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000012883118608
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010386383016}
+ m_Mesh: {fileID: 4300054, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000012908860094
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013989040068}
+ m_Mesh: {fileID: 4300022, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000012943084410
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014204061096}
+ m_Mesh: {fileID: 4300094, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000012997094404
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013301925762}
+ m_Mesh: {fileID: 4300084, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000013146749316
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013007511154}
+ m_Mesh: {fileID: 4300024, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000013208067380
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010575974788}
+ m_Mesh: {fileID: 4300008, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000013227465274
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011149150078}
+ m_Mesh: {fileID: 4300062, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000013253715438
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011526188438}
+ m_Mesh: {fileID: 4300028, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000013366681188
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011265435336}
+ m_Mesh: {fileID: 4300090, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000013451571972
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011064586002}
+ m_Mesh: {fileID: 4300088, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000013650674948
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011589421498}
+ m_Mesh: {fileID: 4300012, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000013671461310
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013475813778}
+ m_Mesh: {fileID: 4300042, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000013893026308
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011701091146}
+ m_Mesh: {fileID: 4300034, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000013921517614
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011662931214}
+ m_Mesh: {fileID: 4300086, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000013932482994
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011483092826}
+ m_Mesh: {fileID: 4300068, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000014182354870
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011957300548}
+ m_Mesh: {fileID: 4300040, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!33 &33000014250403646
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010948589894}
+ m_Mesh: {fileID: 4300014, guid: ae23c9eafd0c4d84690e5f3bddaf54e8, type: 3}
+--- !u!108 &108000010058688896
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010390069016}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.29936203, g: 0.8308824, b: 0.30302766, a: 1}
+ m_Intensity: 1.5
+ m_Range: 2.7817535
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000010148461140
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012956645350}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.5294118, g: 0.68843824, b: 1, a: 1}
+ m_Intensity: 2.33
+ m_Range: 1.8845925
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000010408243156
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013127327806}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 1, g: 0.21323532, b: 0.21323532, a: 1}
+ m_Intensity: 4.79
+ m_Range: 1.8535514
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000010424055650
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011101800730}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Intensity: 1
+ m_Range: 5.768015
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000010458486920
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011534707202}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.9852941, g: 0.36948523, b: 0.8663791, a: 1}
+ m_Intensity: 2.21
+ m_Range: 2.2014189
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000010469878016
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013890919260}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Intensity: 0
+ m_Range: 4.770953
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000010518054360
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012322959342}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 2
+ m_Range: 5.526562
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000010677512704
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013396609202}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.25, g: 0.875862, b: 1, a: 1}
+ m_Intensity: 2
+ m_Range: 2.7817535
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000010712487640
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010799427700}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 2
+ m_Range: 4.5548496
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000011010330984
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010946774752}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.2529411, g: 1, b: 0.066176474, a: 1}
+ m_Intensity: 0.7
+ m_Range: 2.8378081
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000011214051894
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013067895782}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 1
+ m_Color: {r: 1, g: 0.9498986, b: 0.8602941, a: 1}
+ m_Intensity: 1.5
+ m_Range: 10
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 2
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 0.852
+ m_Bias: 0.05
+ m_NormalBias: 0.01
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000011379392932
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010050015194}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 1, g: 0.5661765, b: 0.9162272, a: 1}
+ m_Intensity: 3.44
+ m_Range: 1.2184944
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000011883189556
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011138330038}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.9485294, g: 0.24410684, b: 0.24410684, a: 1}
+ m_Intensity: 3
+ m_Range: 2.7817535
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000011989240810
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011542386872}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 2
+ m_Range: 4.5548496
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000011999905092
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011638061368}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.46323532, g: 0.7778905, b: 1, a: 1}
+ m_Intensity: 3.31
+ m_Range: 2.2014189
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000012013277942
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010116575736}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 1.29
+ m_Range: 4.5548496
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000012273992830
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014223758154}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.8308824, g: 0.29936203, b: 0.81621987, a: 1}
+ m_Intensity: 1.5
+ m_Range: 2.7817535
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000012482713510
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014167019186}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.87487316, g: 0.9852941, b: 0.3694853, a: 1}
+ m_Intensity: 2.33
+ m_Range: 2.2014189
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000012703873218
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013410586290}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 2
+ m_Range: 4.5548496
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000012865402060
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013491188004}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 2
+ m_Range: 4.5548496
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000012910128384
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013460711154}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 1, g: 0.9355983, b: 0.066176474, a: 1}
+ m_Intensity: 1.5
+ m_Range: 2.35995
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000013172402888
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013146444376}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 1, g: 0.58823526, b: 0.58823526, a: 1}
+ m_Intensity: 2.02
+ m_Range: 3.2132387
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000013345948036
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010352954424}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Intensity: 1
+ m_Range: 5.609479
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000013401031994
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011588914074}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0, g: 0.5862069, b: 1, a: 1}
+ m_Intensity: 4
+ m_Range: 1.571884
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000013420189610
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011190518292}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.09839964, g: 0.77847195, b: 0.9558824, a: 1}
+ m_Intensity: 2
+ m_Range: 4.5548496
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000013956482084
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013334296552}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.9871198, g: 0.066176474, b: 1, a: 1}
+ m_Intensity: 0.7
+ m_Range: 2.2014189
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000014097525654
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011737949348}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 1, g: 0.066176474, b: 0.2787019, a: 1}
+ m_Intensity: 1.5
+ m_Range: 2.2014189
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000014109877380
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010593420792}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.28827855, g: 0.5505727, b: 0.9117647, a: 1}
+ m_Intensity: 3
+ m_Range: 2.7817535
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000014218703074
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011022045172}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Intensity: 1
+ m_Range: 5.915407
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000014249592308
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010577201382}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.19852942, g: 1, b: 0.20405675, a: 1}
+ m_Intensity: 2.02
+ m_Range: 1.8056126
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!220 &220000013604701322
+LightProbeGroup:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012292369614}
+ m_Enabled: 1
+ m_SourcePositions:
+ - {x: -5.7774887, y: 1.1244966, z: -2.134067}
+ - {x: -8.249258, y: 1.1244966, z: 2.805348}
+ - {x: 3.0621731, y: 0.8189002, z: 15.48423}
+ - {x: 2.2798452, y: 1.1244966, z: -1.6635576}
+ - {x: -1.8926063, y: 1.1244966, z: -2.7620673}
+ - {x: 4.233609, y: 1.1244966, z: 1.4127531}
+ - {x: 2.2293017, y: 0.7586528, z: 7.3632874}
+ - {x: 8.83274, y: 1.1244966, z: 7.4442444}
+ - {x: 2.3894277, y: 0.5014769, z: 10.357063}
+ - {x: -5.7774887, y: -1, z: -2.134067}
+ - {x: -8.256671, y: -1, z: 3.3989353}
+ - {x: 3.0621731, y: -1, z: 15.48423}
+ - {x: 2.2798452, y: -1, z: -1.6635576}
+ - {x: -1.8926063, y: -1, z: -2.7620673}
+ - {x: 4.233609, y: -1, z: 1.4127531}
+ - {x: 2.2293017, y: -1, z: 7.3632874}
+ - {x: 8.83274, y: -1, z: 7.4442444}
+ - {x: 2.3894277, y: -1, z: 10.357063}
+ - {x: 2.2293017, y: 0.7586528, z: 7.3632874}
+ - {x: 2.2293017, y: -1, z: 7.3632874}
+ - {x: 6.707693, y: 1.1244966, z: -1.3756893}
+ - {x: 6.707693, y: -1, z: -1.3756893}
+ - {x: 6.707693, y: 1.1244966, z: -1.3756893}
+ - {x: 6.707693, y: -1, z: -1.3756893}
+ - {x: 6.1491966, y: 1.1244966, z: 3.6340508}
+ - {x: 6.1491966, y: -1, z: 3.6340508}
+ - {x: 6.1491966, y: 1.1244966, z: 3.6340508}
+ - {x: 6.1491966, y: -1, z: 3.6340508}
+ - {x: 8.814909, y: 1.1244966, z: 11.62088}
+ - {x: 8.814909, y: -1, z: 11.62088}
+ - {x: 8.814909, y: 1.1244966, z: 11.62088}
+ - {x: 8.814909, y: -1, z: 11.62088}
+ - {x: 7.4029593, y: 1.1244966, z: 14.958935}
+ - {x: 7.4029593, y: -1, z: 14.958935}
+ - {x: 0.5791324, y: 1.1244966, z: 4.3793826}
+ - {x: 0.5791324, y: -1, z: 4.3793826}
+ - {x: 0.5791324, y: 1.1244966, z: 4.3793826}
+ - {x: 0.5791324, y: -1, z: 4.3793826}
+ - {x: 9.269917, y: 1.1244966, z: 0.91288114}
+ - {x: 9.269917, y: -1, z: 0.91288114}
+ - {x: 9.269917, y: 1.1244966, z: 0.91288114}
+ - {x: 9.269917, y: -1, z: 0.91288114}
+ - {x: 2.2798452, y: 1.1244966, z: 0.0061038733}
+ - {x: 2.2798452, y: -1, z: 0.0061038733}
+ - {x: -1.8926063, y: 1.1244966, z: 2.1176472}
+ - {x: -1.8926063, y: -1, z: 2.1176472}
+ - {x: -5.5927677, y: 1.1244966, z: 2.1275535}
+ - {x: -5.5927677, y: -1, z: 2.1275535}
+ - {x: -5.7774887, y: 1.1244966, z: 0.0061038733}
+ - {x: -5.7774887, y: -1, z: 0.0061038733}
+ - {x: -1.8926063, y: 1.1244966, z: -0.1545664}
+ - {x: -1.8926063, y: -1, z: -0.1545664}
+ - {x: 0.5791324, y: 1.1244966, z: 4.3793826}
+ - {x: 0.5791324, y: -1, z: 4.3793826}
+ - {x: 0.5791324, y: 1.1244966, z: 4.3793826}
+ - {x: 0.5791324, y: -1, z: 4.3793826}
+ - {x: -8.841893, y: 1.1244966, z: -2.3243876}
+ - {x: -8.841893, y: -1, z: -2.3243876}
+ - {x: 6.1491966, y: 1.1244966, z: 11.498412}
+ - {x: 6.1491966, y: -1, z: 11.498412}
+ - {x: 6.1491966, y: 1.1244966, z: 11.498412}
+ - {x: 6.1491966, y: -1, z: 11.498412}
+ - {x: 6.1491966, y: 1.1244966, z: 7.7390766}
+ - {x: 6.1491966, y: -1, z: 7.7390766}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Market.prefab.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Market.prefab.meta
new file mode 100644
index 00000000..82e097e4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Market.prefab.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3651ed03b8d254a478d9747447d9f2f6
+timeCreated: 1462446167
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/MessageCanvas.prefab b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/MessageCanvas.prefab
new file mode 100644
index 00000000..42c7d601
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/MessageCanvas.prefab
@@ -0,0 +1,193 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1 &174774
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 224: {fileID: 22402318}
+ - 223: {fileID: 22338222}
+ - 114: {fileID: 11488596}
+ - 114: {fileID: 11499140}
+ m_Layer: 5
+ m_Name: MessageCanvas
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &175588
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 224: {fileID: 22413402}
+ - 222: {fileID: 22202072}
+ - 114: {fileID: 11469028}
+ - 114: {fileID: 11486734}
+ m_Layer: 5
+ m_Name: MessageText
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &11469028
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 175588}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.19607845, g: 0.19607845, b: 0.19607845, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 12800000, guid: 2383f538bfcf9cc45ad0b55bcba52410, type: 3}
+ m_FontSize: 75
+ m_FontStyle: 0
+ m_BestFit: 0
+ m_MinSize: 7
+ m_MaxSize: 88
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 0
+ m_VerticalOverflow: 0
+ m_LineSpacing: 1
+ m_Text: New Text
+--- !u!114 &11486734
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 175588}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -900027084, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_EffectColor: {r: 0, g: 0, b: 0, a: 0.5}
+ m_EffectDistance: {x: 1, y: -1}
+ m_UseGraphicAlpha: 1
+--- !u!114 &11488596
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 174774}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_UiScaleMode: 1
+ m_ReferencePixelsPerUnit: 100
+ m_ScaleFactor: 1
+ m_ReferenceResolution: {x: 1920, y: 1080}
+ m_ScreenMatchMode: 0
+ m_MatchWidthOrHeight: 0
+ m_PhysicalUnit: 3
+ m_FallbackScreenDPI: 96
+ m_DefaultSpriteDPI: 96
+ m_DynamicPixelsPerUnit: 1
+--- !u!114 &11499140
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 174774}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 665c5517814b70d42953f2e52a0dc79a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ text: {fileID: 11469028}
+ displayTimePerCharacter: 0.1
+ additionalDisplayTime: 0.5
+--- !u!222 &22202072
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 175588}
+--- !u!223 &22338222
+Canvas:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 174774}
+ m_Enabled: 1
+ serializedVersion: 2
+ m_RenderMode: 0
+ m_Camera: {fileID: 0}
+ m_PlaneDistance: 100
+ m_PixelPerfect: 0
+ m_ReceivesEvents: 1
+ m_OverrideSorting: 0
+ m_OverridePixelPerfect: 0
+ m_SortingBucketNormalizedSize: 0
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_TargetDisplay: 0
+--- !u!224 &22402318
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 174774}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0, y: 0, z: 0}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 22413402}
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 0, y: 0}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 0, y: 0}
+ m_Pivot: {x: 0, y: 0}
+--- !u!224 &22413402
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 175588}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 22402318}
+ m_RootOrder: 0
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 1, y: 0}
+ m_AnchoredPosition: {x: 0, y: 50}
+ m_SizeDelta: {x: 0, y: 100}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1001 &100100000
+Prefab:
+ m_ObjectHideFlags: 1
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications: []
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 0}
+ m_RootGameObject: {fileID: 174774}
+ m_IsPrefabParent: 1
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/MessageCanvas.prefab.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/MessageCanvas.prefab.meta
new file mode 100644
index 00000000..629c5d73
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/MessageCanvas.prefab.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: bd26dac15723bf047941895f28e6c242
+timeCreated: 1456934685
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Player.prefab b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Player.prefab
new file mode 100644
index 00000000..4f279218
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Player.prefab
@@ -0,0 +1,2579 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1001 &100100000
+Prefab:
+ m_ObjectHideFlags: 1
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications: []
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 0}
+ m_RootGameObject: {fileID: 1000014019507428}
+ m_IsPrefabParent: 1
+--- !u!1 &1000010009101308
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010926347840}
+ m_Layer: 0
+ m_Name: LeftToeEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010027679304
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014136711332}
+ m_Layer: 0
+ m_Name: RightUpperLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010037479936
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012444093116}
+ m_Layer: 0
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010060980236
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011455384252}
+ - 33: {fileID: 33000012269492054}
+ - 23: {fileID: 23000013847003688}
+ m_Layer: 8
+ m_Name: Disguise
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!1 &1000010097353890
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011121887068}
+ m_Layer: 0
+ m_Name: RightPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010110556678
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011132256764}
+ m_Layer: 0
+ m_Name: RightMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010273541224
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013511736324}
+ m_Layer: 0
+ m_Name: LeftIndexEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010307498446
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012218903976}
+ m_Layer: 0
+ m_Name: RightMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010321245768
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013782154022}
+ m_Layer: 0
+ m_Name: Controls
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010361509532
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010909536058}
+ m_Layer: 0
+ m_Name: ControlsHips
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010366621804
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010503074472}
+ m_Layer: 0
+ m_Name: LeftLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010519873804
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010670511198}
+ m_Layer: 0
+ m_Name: LeftEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010551866142
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011872102908}
+ m_Layer: 0
+ m_Name: LeftMiddleEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010624974678
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011469279178}
+ m_Layer: 0
+ m_Name: LeftMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010642420844
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010846543268}
+ m_Layer: 0
+ m_Name: RightThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010675664028
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014113465936}
+ m_Layer: 0
+ m_Name: RightToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010681312570
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012637363734}
+ m_Layer: 0
+ m_Name: LeftMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010686386138
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010144316352}
+ m_Layer: 0
+ m_Name: LeftPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010714394046
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012208481034}
+ m_Layer: 0
+ m_Name: RightPinkyEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010781057472
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010112871780}
+ m_Layer: 0
+ m_Name: RightUpperArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010793480258
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012420668314}
+ m_Layer: 0
+ m_Name: RightRing2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010812091756
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010073883504}
+ m_Layer: 0
+ m_Name: RightToeEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010879573774
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012401249970}
+ m_Layer: 0
+ m_Name: LowerEyelids
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010973367260
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011942452952}
+ m_Layer: 0
+ m_Name: LowerEyelidsEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011000107122
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013335787564}
+ m_Layer: 0
+ m_Name: RightMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011088755710
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012751588698}
+ m_Layer: 0
+ m_Name: LeftPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011131126458
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013453306750}
+ m_Layer: 0
+ m_Name: HeadEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011140303866
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010245930630}
+ m_Layer: 0
+ m_Name: LeftThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011163519298
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012403752128}
+ m_Layer: 0
+ m_Name: RightPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011364870966
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012203717736}
+ m_Layer: 0
+ m_Name: LeftShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011759504690
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010081185694}
+ m_Layer: 0
+ m_Name: LeftThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011774521212
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012483480074}
+ m_Layer: 0
+ m_Name: LeftMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011803080776
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013746529464}
+ m_Layer: 0
+ m_Name: LeftUpperArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011877112006
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011190620806}
+ m_Layer: 0
+ m_Name: LeftPinkyEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011884942836
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010638650672}
+ m_Layer: 0
+ m_Name: LeftRing2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011958607958
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011768512666}
+ - 33: {fileID: 33000011033167976}
+ - 23: {fileID: 23000012139679350}
+ m_Layer: 8
+ m_Name: Disguise
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!1 &1000011967915458
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011464493412}
+ m_Layer: 0
+ m_Name: Hips
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011996707870
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010946153612}
+ m_Layer: 0
+ m_Name: RightArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012138382478
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010683469456}
+ m_Layer: 0
+ m_Name: UpperEyelids
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012301060512
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011822745088}
+ m_Layer: 0
+ m_Name: ControlsUpperBody
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012382827860
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010553247314}
+ - 137: {fileID: 137000011337651692}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012411927348
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013851182912}
+ m_Layer: 0
+ m_Name: LeftThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012414670798
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013695408138}
+ m_Layer: 0
+ m_Name: LeftIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012418880554
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013027767212}
+ m_Layer: 0
+ m_Name: RightFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012430083194
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013279417258}
+ m_Layer: 0
+ m_Name: LeftIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012505734568
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010032114300}
+ m_Layer: 0
+ m_Name: RightPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012614480550
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013851121620}
+ m_Layer: 0
+ m_Name: LeftRing1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012637772136
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011118650750}
+ m_Layer: 0
+ m_Name: LeftThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012648828136
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010686502886}
+ m_Layer: 0
+ m_Name: LeftPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012696992308
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013447643036}
+ m_Layer: 0
+ m_Name: LeftThumbEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012788635718
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012002538768}
+ m_Layer: 0
+ m_Name: RightRing3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012883232944
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011701546094}
+ m_Layer: 0
+ m_Name: RightMiddleEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012912894636
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012119672380}
+ m_Layer: 0
+ m_Name: RightShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012960315280
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010785347090}
+ m_Layer: 0
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013052214860
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011933937656}
+ m_Layer: 0
+ m_Name: LeftFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013202191102
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012319378966}
+ m_Layer: 0
+ m_Name: LeftHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013257994724
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010500829560}
+ m_Layer: 0
+ m_Name: LeftArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013258658488
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010835851368}
+ m_Layer: 0
+ m_Name: RightLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013275264340
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010207636436}
+ m_Layer: 0
+ m_Name: RightThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013290500156
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011270885794}
+ m_Layer: 0
+ m_Name: RightIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013308634202
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010014822144}
+ m_Layer: 0
+ m_Name: RightThumbEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013326625032
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013669225436}
+ m_Layer: 0
+ m_Name: LeftRing3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013338589130
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012597688704}
+ m_Layer: 0
+ m_Name: Spine1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013372706652
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013463177782}
+ m_Layer: 0
+ m_Name: RightRing1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013402977860
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012410599390}
+ m_Layer: 0
+ m_Name: RightThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013548509020
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011193278570}
+ m_Layer: 0
+ m_Name: UpperEyelidsEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013551657126
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013740208126}
+ m_Layer: 0
+ m_Name: Spine2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013623610172
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010036795350}
+ m_Layer: 0
+ m_Name: RightRingEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013669368552
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014015167564}
+ m_Layer: 0
+ m_Name: RightIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013697826216
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013013733280}
+ m_Layer: 0
+ m_Name: LeftUpperLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013832198560
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011297720498}
+ m_Layer: 0
+ m_Name: RightThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013877993698
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010198967778}
+ m_Layer: 0
+ m_Name: RightIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013929268422
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014118680414}
+ m_Layer: 0
+ m_Name: Neck
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013960176024
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011542651318}
+ m_Layer: 0
+ m_Name: LeftRingEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013973081364
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013961411224}
+ m_Layer: 0
+ m_Name: LeftToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013995664472
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014137657164}
+ m_Layer: 0
+ m_Name: RightIndexEND
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000014003317382
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010525812190}
+ m_Layer: 0
+ m_Name: LeftIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000014019507428
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014075113472}
+ - 95: {fileID: 95000012945752278}
+ - 195: {fileID: 195000013459137288}
+ - 114: {fileID: 114000014294072012}
+ - 114: {fileID: 114000014274399210}
+ m_Layer: 0
+ m_Name: Player
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000014050281458
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014237282072}
+ m_Layer: 0
+ m_Name: RightEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000014172252134
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013351610938}
+ m_Layer: 0
+ m_Name: RightHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &4000010014822144
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013308634202}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -1.4210854e-16, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010207636436}
+ m_RootOrder: 0
+--- !u!4 &4000010032114300
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012505734568}
+ m_LocalRotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ m_LocalPosition: {x: 0.093388975, y: 0.0001265551, z: 0.047905993}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000011121887068}
+ m_Father: {fileID: 4000013351610938}
+ m_RootOrder: 2
+--- !u!4 &4000010036795350
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013623610172}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.032273, y: 2.842171e-16, z: 3.7303492e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012002538768}
+ m_RootOrder: 0
+--- !u!4 &4000010073883504
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010812091756}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.111827955, y: 0.000000072275725, z: 0.00000062929314}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014113465936}
+ m_RootOrder: 0
+--- !u!4 &4000010081185694
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011759504690}
+ m_LocalRotation: {x: -1.482645e-15, y: -0.19936794, z: -7.347844e-15, w: 0.9799247}
+ m_LocalPosition: {x: -0.044124622, y: 0, z: 4.440892e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000011118650750}
+ m_Father: {fileID: 4000010245930630}
+ m_RootOrder: 0
+--- !u!4 &4000010112871780
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010781057472}
+ m_LocalRotation: {x: 0.99418354, y: -0.02591735, z: -0.10452178, w: -0.0016203261}
+ m_LocalPosition: {x: 0.11169233, y: 0.0000013741218, z: -0.000000017416571}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010946153612}
+ m_Father: {fileID: 4000012119672380}
+ m_RootOrder: 0
+--- !u!4 &4000010144316352
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010686386138}
+ m_LocalRotation: {x: -4.1216623e-18, y: -1.0841598e-17, z: 2.8185021e-18, w: 1}
+ m_LocalPosition: {x: -0.02757523, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012751588698}
+ m_Father: {fileID: 4000010686502886}
+ m_RootOrder: 0
+--- !u!4 &4000010198967778
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013877993698}
+ m_LocalRotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ m_LocalPosition: {x: 0.09506465, y: -0.000052980962, z: -0.03229297}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000011270885794}
+ m_Father: {fileID: 4000013351610938}
+ m_RootOrder: 0
+--- !u!4 &4000010207636436
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013275264340}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.02784971, y: 1.7053025e-15, z: 0.00000026974834}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010014822144}
+ m_Father: {fileID: 4000012410599390}
+ m_RootOrder: 0
+--- !u!4 &4000010245930630
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011140303866}
+ m_LocalRotation: {x: -0.001391087, y: 0.43585023, z: 0.00026398723, w: 0.90001816}
+ m_LocalPosition: {x: -0.014531664, y: -0.010635542, z: 0.02609546}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010081185694}
+ m_Father: {fileID: 4000012319378966}
+ m_RootOrder: 4
+--- !u!4 &4000010500829560
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013257994724}
+ m_LocalRotation: {x: 8.2024617e-16, y: 0.000052097534, z: -8.848866e-16, w: 1}
+ m_LocalPosition: {x: -0.2715663, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012319378966}
+ m_Father: {fileID: 4000013746529464}
+ m_RootOrder: 0
+--- !u!4 &4000010503074472
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010366621804}
+ m_LocalRotation: {x: -0.0004567116, y: -0.052333966, z: -0.008714577, w: 0.99859154}
+ m_LocalPosition: {x: -0.37195736, y: -1.236171e-16, z: 5.1000362e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000011933937656}
+ m_Father: {fileID: 4000013013733280}
+ m_RootOrder: 0
+--- !u!4 &4000010525812190
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014003317382}
+ m_LocalRotation: {x: -4.1216623e-18, y: -1.0841598e-17, z: 2.8185021e-18, w: 1}
+ m_LocalPosition: {x: -0.031456187, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013279417258}
+ m_Father: {fileID: 4000013695408138}
+ m_RootOrder: 0
+--- !u!4 &4000010553247314
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012382827860}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014075113472}
+ m_RootOrder: 1
+--- !u!4 &4000010638650672
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011884942836}
+ m_LocalRotation: {x: -4.1216623e-18, y: -1.0841598e-17, z: 2.8185021e-18, w: 1}
+ m_LocalPosition: {x: -0.033294536, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013669225436}
+ m_Father: {fileID: 4000013851121620}
+ m_RootOrder: 0
+--- !u!4 &4000010670511198
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010519873804}
+ m_LocalRotation: {x: 0.49111634, y: -0.4841803, z: 0.50882685, w: 0.5152373}
+ m_LocalPosition: {x: -0.06898784, y: 0.042644892, z: -0.067543894}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012444093116}
+ m_RootOrder: 1
+--- !u!4 &4000010683469456
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012138382478}
+ m_LocalRotation: {x: 5.7245875e-17, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.07189023, y: -8.6178355e-16, z: -0.07233469}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000011193278570}
+ m_Father: {fileID: 4000012444093116}
+ m_RootOrder: 4
+--- !u!4 &4000010686502886
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012648828136}
+ m_LocalRotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ m_LocalPosition: {x: -0.09338952, y: -0.00012434727, z: -0.047905773}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010144316352}
+ m_Father: {fileID: 4000012319378966}
+ m_RootOrder: 2
+--- !u!4 &4000010785347090
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012960315280}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000011464493412}
+ m_Father: {fileID: 4000014075113472}
+ m_RootOrder: 2
+--- !u!4 &4000010835851368
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013258658488}
+ m_LocalRotation: {x: -0.0033646203, y: -0.21389712, z: -0.028378054, w: 0.9764381}
+ m_LocalPosition: {x: 0.37195793, y: 5.9421585e-17, z: -4.0592486e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013027767212}
+ m_Father: {fileID: 4000014136711332}
+ m_RootOrder: 0
+--- !u!4 &4000010846543268
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010642420844}
+ m_LocalRotation: {x: -0.001391087, y: 0.43585023, z: 0.00026398723, w: 0.90001816}
+ m_LocalPosition: {x: 0.014531372, y: 0.010635231, z: -0.026095485}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000011297720498}
+ m_Father: {fileID: 4000013351610938}
+ m_RootOrder: 4
+--- !u!4 &4000010909536058
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010361509532}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000011822745088}
+ m_RootOrder: 0
+--- !u!4 &4000010926347840
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010009101308}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.11182804, y: -2.918769e-18, z: 9.290528e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000013961411224}
+ m_RootOrder: 0
+--- !u!4 &4000010946153612
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011996707870}
+ m_LocalRotation: {x: -0.000011964993, y: 0.0000000651813, z: -0.000010528297, w: 1}
+ m_LocalPosition: {x: 0.27156565, y: -0.0000016521891, z: -0.000000010419892}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013351610938}
+ m_Father: {fileID: 4000010112871780}
+ m_RootOrder: 0
+--- !u!4 &4000011118650750
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012637772136}
+ m_LocalRotation: {x: 1.1616034e-16, y: 0.017452406, z: 2.4369006e-16, w: 0.9998477}
+ m_LocalPosition: {x: -0.03446204, y: 0, z: -1.5543122e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013851182912}
+ m_Father: {fileID: 4000010081185694}
+ m_RootOrder: 0
+--- !u!4 &4000011121887068
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010097353890}
+ m_LocalRotation: {x: 4.2117906e-17, y: -1.7279472e-18, z: 9.994989e-19, w: 1}
+ m_LocalPosition: {x: 0.027576, y: 0, z: 3.375078e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012403752128}
+ m_Father: {fileID: 4000010032114300}
+ m_RootOrder: 0
+--- !u!4 &4000011132256764
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010110556678}
+ m_LocalRotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ m_LocalPosition: {x: 0.09450487, y: 0.000007224165, z: -0.0054008546}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012218903976}
+ m_Father: {fileID: 4000013351610938}
+ m_RootOrder: 1
+--- !u!4 &4000011190620806
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011877112006}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.023898533, y: 0, z: 1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012751588698}
+ m_RootOrder: 0
+--- !u!4 &4000011193278570
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013548509020}
+ m_LocalRotation: {x: 5.7245875e-17, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.007184859, y: 1.4464416e-18, z: -0.023956394}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010683469456}
+ m_RootOrder: 0
+--- !u!4 &4000011270885794
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013290500156}
+ m_LocalRotation: {x: 4.2117906e-17, y: -1.7279472e-18, z: 9.994989e-19, w: 1}
+ m_LocalPosition: {x: 0.031456, y: 5.684342e-16, z: 3.7303492e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000014015167564}
+ m_Father: {fileID: 4000010198967778}
+ m_RootOrder: 0
+--- !u!4 &4000011297720498
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013832198560}
+ m_LocalRotation: {x: -2.4806397e-15, y: -0.19936794, z: -1.3542974e-14, w: 0.9799247}
+ m_LocalPosition: {x: 0.044124745, y: 2.842171e-16, z: 0.00000011967238}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012410599390}
+ m_Father: {fileID: 4000010846543268}
+ m_RootOrder: 0
+--- !u!4 &4000011455384252
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010060980236}
+ m_LocalRotation: {x: 0.000000014901154, y: -0.000000048428753, z: -0.88774693, w: 0.4603319}
+ m_LocalPosition: {x: 0.137, y: 0.146, z: 0.029}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: -125.39901}
+ m_Children: []
+ m_Father: {fileID: 4000013351610938}
+ m_RootOrder: 5
+--- !u!4 &4000011464493412
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011967915458}
+ m_LocalRotation: {x: 0.7071068, y: -0.7071068, z: -4.3297806e-17, w: 4.3297806e-17}
+ m_LocalPosition: {x: -0, y: 0.9856257, z: -0.028446734}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013013733280}
+ - {fileID: 4000014136711332}
+ - {fileID: 4000012597688704}
+ m_Father: {fileID: 4000010785347090}
+ m_RootOrder: 0
+--- !u!4 &4000011469279178
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010624974678}
+ m_LocalRotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ m_LocalPosition: {x: -0.09450546, y: -0.000005017072, z: 0.0054007857}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012483480074}
+ m_Father: {fileID: 4000012319378966}
+ m_RootOrder: 1
+--- !u!4 &4000011542651318
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013960176024}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.032273233, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000013669225436}
+ m_RootOrder: 0
+--- !u!4 &4000011701546094
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012883232944}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.030638998, y: -2.842171e-16, z: 3.375078e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000013335787564}
+ m_RootOrder: 0
+--- !u!4 &4000011768512666
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011958607958}
+ m_LocalRotation: {x: 0.7008585, y: -0.7088117, z: 0.079491496, w: 0.008030626}
+ m_LocalPosition: {x: -0.055273835, y: -0.008491164, z: -0.13126074}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: -125.39901}
+ m_Children: []
+ m_Father: {fileID: 4000012444093116}
+ m_RootOrder: 5
+--- !u!4 &4000011822745088
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012301060512}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0, y: 0.9856257, z: -0.028446734}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010909536058}
+ m_Father: {fileID: 4000013782154022}
+ m_RootOrder: 0
+--- !u!4 &4000011872102908
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010551866142}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.030639142, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012637363734}
+ m_RootOrder: 0
+--- !u!4 &4000011933937656
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013052214860}
+ m_LocalRotation: {x: 0.050357435, y: 0.49969903, z: 0.026062192, w: 0.86434126}
+ m_LocalPosition: {x: -0.41152263, y: -0.0015294757, z: -0.002893631}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013961411224}
+ m_Father: {fileID: 4000010503074472}
+ m_RootOrder: 0
+--- !u!4 &4000011942452952
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010973367260}
+ m_LocalRotation: {x: 5.7245875e-17, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.01227831, y: 5.197173e-18, z: -0.019771008}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012401249970}
+ m_RootOrder: 0
+--- !u!4 &4000012002538768
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012788635718}
+ m_LocalRotation: {x: 4.2117906e-17, y: -1.7279472e-18, z: 9.994989e-19, w: 1}
+ m_LocalPosition: {x: 0.025736999, y: 0, z: 2.842171e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010036795350}
+ m_Father: {fileID: 4000012420668314}
+ m_RootOrder: 0
+--- !u!4 &4000012119672380
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012912894636}
+ m_LocalRotation: {x: -0.0130629325, y: -0.13335347, z: -0.68924034, w: 0.71203506}
+ m_LocalPosition: {x: -0.14354727, y: -0.0392262, z: 0.022630045}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010112871780}
+ m_Father: {fileID: 4000013740208126}
+ m_RootOrder: 2
+--- !u!4 &4000012203717736
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011364870966}
+ m_LocalRotation: {x: -0.68924034, y: 0.71203506, z: 0.0130629325, w: 0.13335347}
+ m_LocalPosition: {x: -0.1435461, y: 0.03922616, z: 0.022630278}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013746529464}
+ m_Father: {fileID: 4000013740208126}
+ m_RootOrder: 0
+--- !u!4 &4000012208481034
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010714394046}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.023898, y: 2.842171e-16, z: 2.664535e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012403752128}
+ m_RootOrder: 0
+--- !u!4 &4000012218903976
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010307498446}
+ m_LocalRotation: {x: 4.2117906e-17, y: -1.7279472e-18, z: 9.994989e-19, w: 1}
+ m_LocalPosition: {x: 0.038606, y: 2.842171e-16, z: 4.440892e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013335787564}
+ m_Father: {fileID: 4000011132256764}
+ m_RootOrder: 0
+--- !u!4 &4000012319378966
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013202191102}
+ m_LocalRotation: {x: -0.0000024176625, y: -0.0028313876, z: 0.000843909, w: 0.99999565}
+ m_LocalPosition: {x: -0.2331744, y: -2.842171e-16, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013695408138}
+ - {fileID: 4000011469279178}
+ - {fileID: 4000010686502886}
+ - {fileID: 4000013851121620}
+ - {fileID: 4000010245930630}
+ m_Father: {fileID: 4000010500829560}
+ m_RootOrder: 0
+--- !u!4 &4000012401249970
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010879573774}
+ m_LocalRotation: {x: 5.7245875e-17, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.069060184, y: -8.611492e-16, z: -0.07243106}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000011942452952}
+ m_Father: {fileID: 4000012444093116}
+ m_RootOrder: 2
+--- !u!4 &4000012403752128
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011163519298}
+ m_LocalRotation: {x: 4.2117906e-17, y: -1.7279472e-18, z: 9.994989e-19, w: 1}
+ m_LocalPosition: {x: 0.023694, y: 0, z: 2.664535e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012208481034}
+ m_Father: {fileID: 4000011121887068}
+ m_RootOrder: 0
+--- !u!4 &4000012410599390
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013402977860}
+ m_LocalRotation: {x: -1.3656776e-16, y: 0.017452406, z: -7.559126e-16, w: 0.9998477}
+ m_LocalPosition: {x: 0.03446187, y: 1.7053025e-15, z: -0.000000061993184}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010207636436}
+ m_Father: {fileID: 4000011297720498}
+ m_RootOrder: 0
+--- !u!4 &4000012420668314
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010793480258}
+ m_LocalRotation: {x: 4.2117906e-17, y: -1.7279472e-18, z: 9.994989e-19, w: 1}
+ m_LocalPosition: {x: 0.033294, y: 2.842171e-16, z: 3.5527135e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012002538768}
+ m_Father: {fileID: 4000013463177782}
+ m_RootOrder: 0
+--- !u!4 &4000012444093116
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010037479936}
+ m_LocalRotation: {x: 2.2895216e-17, y: 0.19936794, z: -1.7460324e-16, w: 0.9799247}
+ m_LocalPosition: {x: -0.10867395, y: -1.1779883e-16, z: 1.4210854e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013453306750}
+ - {fileID: 4000010670511198}
+ - {fileID: 4000012401249970}
+ - {fileID: 4000014237282072}
+ - {fileID: 4000010683469456}
+ - {fileID: 4000011768512666}
+ m_Father: {fileID: 4000014118680414}
+ m_RootOrder: 0
+--- !u!4 &4000012483480074
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011774521212}
+ m_LocalRotation: {x: -4.1216623e-18, y: -1.0841598e-17, z: 2.8185021e-18, w: 1}
+ m_LocalPosition: {x: -0.03860532, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012637363734}
+ m_Father: {fileID: 4000011469279178}
+ m_RootOrder: 0
+--- !u!4 &4000012597688704
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013338589130}
+ m_LocalRotation: {x: 6.123234e-17, y: 6.123234e-17, z: 0, w: 1}
+ m_LocalPosition: {x: -0.10568693, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013740208126}
+ m_Father: {fileID: 4000011464493412}
+ m_RootOrder: 2
+--- !u!4 &4000012637363734
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010681312570}
+ m_LocalRotation: {x: -3.2526065e-18, y: -9.107722e-18, z: 2.7092349e-18, w: 1}
+ m_LocalPosition: {x: -0.029822098, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000011872102908}
+ m_Father: {fileID: 4000012483480074}
+ m_RootOrder: 0
+--- !u!4 &4000012751588698
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011088755710}
+ m_LocalRotation: {x: -4.1216623e-18, y: -1.0841598e-17, z: 2.8185021e-18, w: 1}
+ m_LocalPosition: {x: -0.023694271, y: 0, z: -1.7763568e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000011190620806}
+ m_Father: {fileID: 4000010144316352}
+ m_RootOrder: 0
+--- !u!4 &4000013013733280
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013697826216}
+ m_LocalRotation: {x: -0.0033267832, y: 0.99839103, z: 0.056605782, w: -0.0004065326}
+ m_LocalPosition: {x: 0.037347827, y: 0.092801034, z: 0.0064211558}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010503074472}
+ m_Father: {fileID: 4000011464493412}
+ m_RootOrder: 0
+--- !u!4 &4000013027767212
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012418880554}
+ m_LocalRotation: {x: 0.053942762, y: 0.46962804, z: 0.027049974, w: 0.88079965}
+ m_LocalPosition: {x: 0.41152248, y: 0.001529468, z: 0.0028936374}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000014113465936}
+ m_Father: {fileID: 4000010835851368}
+ m_RootOrder: 0
+--- !u!4 &4000013279417258
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012430083194}
+ m_LocalRotation: {x: -4.1216623e-18, y: -1.0841598e-17, z: 2.8185021e-18, w: 1}
+ m_LocalPosition: {x: -0.026145402, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013511736324}
+ m_Father: {fileID: 4000010525812190}
+ m_RootOrder: 0
+--- !u!4 &4000013335787564
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011000107122}
+ m_LocalRotation: {x: 4.2117906e-17, y: -1.7279472e-18, z: 9.994989e-19, w: 1}
+ m_LocalPosition: {x: 0.029821998, y: 2.842171e-16, z: 3.375078e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000011701546094}
+ m_Father: {fileID: 4000012218903976}
+ m_RootOrder: 0
+--- !u!4 &4000013351610938
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014172252134}
+ m_LocalRotation: {x: 0.9999994, y: 0.000013414664, z: -0.00003311748, w: -0.0011172838}
+ m_LocalPosition: {x: 0.23317498, y: 0.000003552258, z: 0.00000003303112}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010198967778}
+ - {fileID: 4000011132256764}
+ - {fileID: 4000010032114300}
+ - {fileID: 4000013463177782}
+ - {fileID: 4000010846543268}
+ - {fileID: 4000011455384252}
+ m_Father: {fileID: 4000010946153612}
+ m_RootOrder: 0
+--- !u!4 &4000013447643036
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012696992308}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 1.1400142e-18, y: 0, z: -1.9054521e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000013851182912}
+ m_RootOrder: 0
+--- !u!4 &4000013453306750
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011131126458}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.24878563, y: -1.5987211e-16, z: 7.902685e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012444093116}
+ m_RootOrder: 0
+--- !u!4 &4000013463177782
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013372706652}
+ m_LocalRotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ m_LocalPosition: {x: 0.0945606, y: 0.0000678541, z: 0.021221206}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012420668314}
+ m_Father: {fileID: 4000013351610938}
+ m_RootOrder: 3
+--- !u!4 &4000013511736324
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010273541224}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.030434882, y: 0, z: 8.881784e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000013279417258}
+ m_RootOrder: 0
+--- !u!4 &4000013669225436
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013326625032}
+ m_LocalRotation: {x: -4.1216623e-18, y: -1.0841598e-17, z: 2.8185021e-18, w: 1}
+ m_LocalPosition: {x: -0.02573688, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000011542651318}
+ m_Father: {fileID: 4000010638650672}
+ m_RootOrder: 0
+--- !u!4 &4000013695408138
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012414670798}
+ m_LocalRotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ m_LocalPosition: {x: -0.09506476, y: 0.00005518901, z: 0.03229297}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010525812190}
+ m_Father: {fileID: 4000012319378966}
+ m_RootOrder: 0
+--- !u!4 &4000013740208126
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013551657126}
+ m_LocalRotation: {x: -2.4886215e-17, y: 0.087155744, z: 1.1362365e-16, w: 0.9961947}
+ m_LocalPosition: {x: -0.1833106, y: 8.548717e-16, z: -4.440892e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012203717736}
+ - {fileID: 4000014118680414}
+ - {fileID: 4000012119672380}
+ m_Father: {fileID: 4000012597688704}
+ m_RootOrder: 0
+--- !u!4 &4000013746529464
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011803080776}
+ m_LocalRotation: {x: 0.0016100118, y: 0.104498126, z: -0.025915265, w: 0.9941861}
+ m_LocalPosition: {x: -0.11169202, y: -1.3877788e-17, z: -5.851063e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010500829560}
+ m_Father: {fileID: 4000012203717736}
+ m_RootOrder: 0
+--- !u!4 &4000013782154022
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010321245768}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000011822745088}
+ m_Father: {fileID: 4000014075113472}
+ m_RootOrder: 0
+--- !u!4 &4000013851121620
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012614480550}
+ m_LocalRotation: {x: -0.0011345763, y: -0.0028024006, z: 0.0008470825, w: 0.9999951}
+ m_LocalPosition: {x: -0.09456046, y: -0.00006564576, z: -0.02122128}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010638650672}
+ m_Father: {fileID: 4000012319378966}
+ m_RootOrder: 3
+--- !u!4 &4000013851182912
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012411927348}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.027849242, y: 0, z: -2.220446e-18}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013447643036}
+ m_Father: {fileID: 4000011118650750}
+ m_RootOrder: 0
+--- !u!4 &4000013961411224
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013973081364}
+ m_LocalRotation: {x: 4.2141773e-14, y: 0.3007058, z: -1.328725e-14, w: 0.95371693}
+ m_LocalPosition: {x: -0.1110157, y: -2.5535128e-17, z: 8.2057634e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010926347840}
+ m_Father: {fileID: 4000011933937656}
+ m_RootOrder: 0
+--- !u!4 &4000014015167564
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013669368552}
+ m_LocalRotation: {x: 4.2117906e-17, y: -1.7279472e-18, z: 9.994989e-19, w: 1}
+ m_LocalPosition: {x: 0.026145, y: 0, z: 2.842171e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000014137657164}
+ m_Father: {fileID: 4000011270885794}
+ m_RootOrder: 0
+--- !u!4 &4000014075113472
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014019507428}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 5.369, y: 0, z: 2.447}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+ m_Children:
+ - {fileID: 4000013782154022}
+ - {fileID: 4000010553247314}
+ - {fileID: 4000010785347090}
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+--- !u!4 &4000014113465936
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010675664028}
+ m_LocalRotation: {x: 0.00040375165, y: 0.3971359, z: -0.0012802952, w: 0.9177588}
+ m_LocalPosition: {x: 0.11101543, y: -0.000000079186826, z: -0.0000003664904}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010073883504}
+ m_Father: {fileID: 4000013027767212}
+ m_RootOrder: 0
+--- !u!4 &4000014118680414
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013929268422}
+ m_LocalRotation: {x: -2.654279e-17, y: -0.29237172, z: -8.114945e-18, w: 0.9563048}
+ m_LocalPosition: {x: -0.2294332, y: -1.821977e-17, z: 0.0049986364}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012444093116}
+ m_Father: {fileID: 4000013740208126}
+ m_RootOrder: 1
+--- !u!4 &4000014136711332
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010027679304}
+ m_LocalRotation: {x: -0.055764332, y: 0.09585023, z: 0.0023111696, w: 0.99382985}
+ m_LocalPosition: {x: 0.037347663, y: -0.092801, z: 0.0064211655}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010835851368}
+ m_Father: {fileID: 4000011464493412}
+ m_RootOrder: 1
+--- !u!4 &4000014137657164
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013995664472}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0.030435, y: 2.842171e-16, z: 3.2862602e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014015167564}
+ m_RootOrder: 0
+--- !u!4 &4000014237282072
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014050281458}
+ m_LocalRotation: {x: -1.1714554e-15, y: 1, z: 2.8327693e-16, w: 7.7545535e-17}
+ m_LocalPosition: {x: -0.06898793, y: -0.0426449, z: -0.06754389}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012444093116}
+ m_RootOrder: 3
+--- !u!23 &23000012139679350
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011958607958}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 033a89b479ed0e242a87bbdd65d50c7a, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013847003688
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010060980236}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 033a89b479ed0e242a87bbdd65d50c7a, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!33 &33000011033167976
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011958607958}
+ m_Mesh: {fileID: 4300002, guid: 54a2e3e0f3738864f9472522c0bd66f8, type: 3}
+--- !u!33 &33000012269492054
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010060980236}
+ m_Mesh: {fileID: 4300002, guid: 54a2e3e0f3738864f9472522c0bd66f8, type: 3}
+--- !u!95 &95000012945752278
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014019507428}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: 9d9569a11a06f464bb9a5618bdd51bba, type: 3}
+ m_Controller: {fileID: 9100000, guid: f8a8e58634e93d1458658bdb4b6ba079, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 1
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!114 &114000014274399210
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014019507428}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 8f29b6054d4e0304f8b32fb4625cff19, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ uniqueIdentifier: DisguiseOnFaceActivity
+ saveData: {fileID: 11400000, guid: 55d72825bf06cf44e9cbc1b37812cc6f, type: 2}
+ gameObjectToSave: {fileID: 1000011958607958}
+--- !u!114 &114000014294072012
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014019507428}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 29103d8075f789345997a0adb6a7520e, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ animator: {fileID: 95000012945752278}
+ agent: {fileID: 195000013459137288}
+ playerSaveData: {fileID: 11400000, guid: 55d72825bf06cf44e9cbc1b37812cc6f, type: 2}
+ turnSmoothing: 15
+ speedDampTime: 0.1
+ slowingSpeed: 0.175
+ turnSpeedThreshold: 0.5
+ inputHoldDelay: 0.5
+--- !u!137 &137000011337651692
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012382827860}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 38bcda417e203744d89feb1e91554572, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ serializedVersion: 2
+ m_Quality: 0
+ m_UpdateWhenOffscreen: 0
+ m_SkinnedMotionVectors: 1
+ m_Mesh: {fileID: 4300006, guid: 9d9569a11a06f464bb9a5618bdd51bba, type: 3}
+ m_Bones:
+ - {fileID: 4000013961411224}
+ - {fileID: 4000014113465936}
+ - {fileID: 4000013027767212}
+ - {fileID: 4000011933937656}
+ - {fileID: 4000010503074472}
+ - {fileID: 4000010835851368}
+ - {fileID: 4000013013733280}
+ - {fileID: 4000014136711332}
+ - {fileID: 4000011118650750}
+ - {fileID: 4000010081185694}
+ - {fileID: 4000010245930630}
+ - {fileID: 4000013279417258}
+ - {fileID: 4000010525812190}
+ - {fileID: 4000013695408138}
+ - {fileID: 4000012637363734}
+ - {fileID: 4000012483480074}
+ - {fileID: 4000011469279178}
+ - {fileID: 4000013669225436}
+ - {fileID: 4000010638650672}
+ - {fileID: 4000013851121620}
+ - {fileID: 4000012751588698}
+ - {fileID: 4000010144316352}
+ - {fileID: 4000010686502886}
+ - {fileID: 4000012410599390}
+ - {fileID: 4000011297720498}
+ - {fileID: 4000010846543268}
+ - {fileID: 4000014015167564}
+ - {fileID: 4000011270885794}
+ - {fileID: 4000010198967778}
+ - {fileID: 4000013335787564}
+ - {fileID: 4000012218903976}
+ - {fileID: 4000011132256764}
+ - {fileID: 4000012002538768}
+ - {fileID: 4000012420668314}
+ - {fileID: 4000013463177782}
+ - {fileID: 4000012403752128}
+ - {fileID: 4000011121887068}
+ - {fileID: 4000010032114300}
+ - {fileID: 4000013351610938}
+ - {fileID: 4000012319378966}
+ - {fileID: 4000010500829560}
+ - {fileID: 4000013746529464}
+ - {fileID: 4000010946153612}
+ - {fileID: 4000010112871780}
+ - {fileID: 4000014237282072}
+ - {fileID: 4000010670511198}
+ - {fileID: 4000011193278570}
+ - {fileID: 4000011942452952}
+ - {fileID: 4000012444093116}
+ - {fileID: 4000014118680414}
+ - {fileID: 4000012203717736}
+ - {fileID: 4000012119672380}
+ - {fileID: 4000013740208126}
+ - {fileID: 4000012597688704}
+ - {fileID: 4000011464493412}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 4000011464493412}
+ m_AABB:
+ m_Center: {x: 0.10854733, y: 0.00005349517, z: -0.0012655705}
+ m_Extent: {x: 1.0001698, y: 0.8465879, z: 0.26124585}
+ m_DirtyAABB: 0
+--- !u!195 &195000013459137288
+NavMeshAgent:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014019507428}
+ m_Enabled: 1
+ m_Radius: 0.5
+ m_Speed: 2
+ m_Acceleration: 20
+ avoidancePriority: 50
+ m_AngularSpeed: 120
+ m_StoppingDistance: 0.15
+ m_AutoTraverseOffMeshLink: 1
+ m_AutoBraking: 1
+ m_AutoRepath: 1
+ m_Height: 2
+ m_BaseOffset: 0
+ m_WalkableMask: 4294967295
+ m_ObstacleAvoidanceType: 4
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Player.prefab.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Player.prefab.meta
new file mode 100644
index 00000000..9aae0154
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/Player.prefab.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ab5f05eb414b65f4f9c285f785c1dfad
+timeCreated: 1473849795
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/SecurityRoom.prefab b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/SecurityRoom.prefab
new file mode 100644
index 00000000..111e709c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/SecurityRoom.prefab
@@ -0,0 +1,20653 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1 &101552
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 494170}
+ - 20: {fileID: 2064738}
+ - 124: {fileID: 12418820}
+ - 92: {fileID: 9205652}
+ - 114: {fileID: 11473782}
+ m_Layer: 0
+ m_Name: Camera
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &103094
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 486626}
+ m_Layer: 8
+ m_Name: LeftArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &106362
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 458328}
+ m_Layer: 8
+ m_Name: Skeleton
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &106508
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 467616}
+ m_Layer: 8
+ m_Name: LeftIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &107868
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 489376}
+ m_Layer: 8
+ m_Name: LeftHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &110376
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 476932}
+ m_Layer: 8
+ m_Name: RightThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &110678
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 472190}
+ m_Layer: 8
+ m_Name: LeftIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &110824
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 474950}
+ m_Layer: 8
+ m_Name: Spine1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &112126
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 479590}
+ - 95: {fileID: 9565778}
+ m_Layer: 8
+ m_Name: Guard
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &112256
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 421688}
+ m_Layer: 8
+ m_Name: RightArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &116950
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 458144}
+ m_Layer: 8
+ m_Name: RightUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &118616
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 482116}
+ m_Layer: 8
+ m_Name: RightRing3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &120510
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 455476}
+ m_Layer: 8
+ m_Name: Spine2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &122058
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 465592}
+ m_Layer: 8
+ m_Name: RightLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &122324
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 406788}
+ m_Layer: 8
+ m_Name: RightRing2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &122494
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 418910}
+ m_Layer: 8
+ m_Name: LeftIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &123170
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 439984}
+ m_Layer: 8
+ m_Name: LeftRing1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &126858
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 491430}
+ m_Layer: 8
+ m_Name: LeftMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &127232
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 459648}
+ m_Layer: 8
+ m_Name: LeftThumb1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &128288
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 482450}
+ m_Layer: 8
+ m_Name: LeftMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &128500
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 451060}
+ m_Layer: 8
+ m_Name: RightShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &128598
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 476666}
+ m_Layer: 8
+ m_Name: LeftThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &130118
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 401364}
+ m_Layer: 8
+ m_Name: RightToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &130458
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 426422}
+ m_Layer: 8
+ m_Name: RightMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &130884
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 422670}
+ - 108: {fileID: 10882772}
+ m_Layer: 0
+ m_Name: PointLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &130902
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 487332}
+ m_Layer: 8
+ m_Name: LeftPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &131012
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 429306}
+ m_Layer: 8
+ m_Name: Controls
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &134288
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 449946}
+ m_Layer: 8
+ m_Name: RightPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &141464
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 498804}
+ m_Layer: 8
+ m_Name: LeftThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &143134
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 401168}
+ m_Layer: 8
+ m_Name: RightIndex2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &143564
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 461868}
+ m_Layer: 8
+ m_Name: LeftToe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &144798
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 491666}
+ m_Layer: 8
+ m_Name: RightMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &146836
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 422828}
+ m_Layer: 8
+ m_Name: LeftLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &147420
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 435212}
+ - 64: {fileID: 6435670}
+ - 114: {fileID: 11439506}
+ m_Layer: 0
+ m_Name: SecurityRoom
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &147848
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 447972}
+ m_Layer: 8
+ m_Name: RightPinky2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &150058
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 412080}
+ m_Layer: 8
+ m_Name: RightMiddle3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &150330
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 412030}
+ m_Layer: 8
+ m_Name: LeftMiddle2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &151658
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 420546}
+ m_Layer: 8
+ m_Name: LeftRingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &154690
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 450258}
+ m_Layer: 8
+ m_Name: LeftFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &156718
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 477240}
+ m_Layer: 8
+ m_Name: RightPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &157518
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 431866}
+ - 33: {fileID: 3379206}
+ - 23: {fileID: 2392218}
+ m_Layer: 0
+ m_Name: CameraCam
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &157898
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 414262}
+ m_Layer: 8
+ m_Name: LeftForeArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &163214
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 438092}
+ m_Layer: 8
+ m_Name: Hips
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &164248
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 433656}
+ m_Layer: 8
+ m_Name: LeftEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &164402
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 411432}
+ m_Layer: 8
+ m_Name: RightThumb3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &164480
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 413800}
+ m_Layer: 8
+ m_Name: RightIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &164580
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 425058}
+ m_Layer: 8
+ m_Name: LeftShoulder
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &165836
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 454336}
+ m_Layer: 8
+ m_Name: Mesh
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &166466
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 400806}
+ m_Layer: 8
+ m_Name: RightToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &167116
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 402166}
+ m_Layer: 8
+ m_Name: LeftIndex1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &170606
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 467942}
+ m_Layer: 8
+ m_Name: RightThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &170630
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 494556}
+ m_Layer: 8
+ m_Name: LeftRing3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &171292
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 418920}
+ m_Layer: 8
+ m_Name: LeftPinky1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &171860
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 401942}
+ m_Layer: 8
+ m_Name: RightFoot
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &171990
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 435254}
+ - 108: {fileID: 10806928}
+ m_Layer: 0
+ m_Name: GateLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &172610
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 457564}
+ m_Layer: 8
+ m_Name: RightHand
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &173124
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 409392}
+ m_Layer: 8
+ m_Name: RightRing1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &173152
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 418812}
+ - 114: {fileID: 11497582}
+ m_Layer: 0
+ m_Name: CameraRig
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &174054
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 438732}
+ m_Layer: 8
+ m_Name: LeftToeEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &174780
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 490540}
+ m_Layer: 8
+ m_Name: RightIndex3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &175842
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 435792}
+ m_Layer: 8
+ m_Name: LeftMiddle1
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &177824
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 415776}
+ - 108: {fileID: 10819640}
+ m_Layer: 0
+ m_Name: DoorLight01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &178808
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 444970}
+ m_Layer: 8
+ m_Name: HeadEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &180242
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 444310}
+ m_Layer: 8
+ m_Name: LeftUpLeg
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &180700
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 465636}
+ m_Layer: 8
+ m_Name: Mouth
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &182344
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 451138}
+ m_Layer: 8
+ m_Name: LeftRing2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &182666
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 479050}
+ m_Layer: 8
+ m_Name: RightPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &183090
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 405016}
+ m_Layer: 8
+ m_Name: LeftThumbEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &183266
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 419132}
+ m_Layer: 8
+ m_Name: LeftPinkyEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &184434
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 444654}
+ m_Layer: 8
+ m_Name: RightMiddleEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &185278
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 436944}
+ - 33: {fileID: 3331256}
+ - 23: {fileID: 2391300}
+ - 95: {fileID: 9595670}
+ m_Layer: 0
+ m_Name: SecurityCamera
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &185486
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 448980}
+ m_Layer: 8
+ m_Name: RightThumb2
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &186140
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 410436}
+ - 137: {fileID: 13742228}
+ m_Layer: 8
+ m_Name: Guard
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &187408
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 480718}
+ m_Layer: 8
+ m_Name: UpEyeLid
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &189644
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 443006}
+ m_Layer: 8
+ m_Name: RightRingEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &190728
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 409058}
+ m_Layer: 8
+ m_Name: LeftPinky3
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &191238
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 464672}
+ m_Layer: 8
+ m_Name: Head
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &192570
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 413818}
+ m_Layer: 8
+ m_Name: RightForeArm
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &193020
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 497440}
+ m_Layer: 8
+ m_Name: RightEye
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &193966
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 406204}
+ m_Layer: 8
+ m_Name: RightIndexEnd
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &195792
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 447264}
+ - 33: {fileID: 3335182}
+ - 64: {fileID: 6485356}
+ - 23: {fileID: 2326622}
+ m_Layer: 0
+ m_Name: CameraLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &196946
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 422388}
+ m_Layer: 8
+ m_Name: DownEyeLid
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &400806
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 166466}
+ m_LocalRotation: {x: 0.000000010536709, y: -0.7071068, z: 0.000000010536709, w: 0.7071068}
+ m_LocalPosition: {x: 0.0918451, y: -0.000000003808042, z: -7.105427e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 401364}
+ m_RootOrder: 0
+--- !u!4 &401168
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 143134}
+ m_LocalRotation: {x: 0.0000017669405, y: 0.00000017272842, z: 0.00000992766, w: 1}
+ m_LocalPosition: {x: -0.000011175443, y: 0.037831463, z: -0.0006563062}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 490540}
+ m_Father: {fileID: 413800}
+ m_RootOrder: 0
+--- !u!4 &401364
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 130118}
+ m_LocalRotation: {x: -3.0164975e-11, y: 1.2727871e-11, z: -0.3887529, w: 0.9213421}
+ m_LocalPosition: {x: 0.1439031, y: -0.037890207, z: 1.1368684e-15}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 400806}
+ m_Father: {fileID: 401942}
+ m_RootOrder: 0
+--- !u!4 &401942
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 171860}
+ m_LocalRotation: {x: 0.6551722, y: 0.2663453, z: -0.2662439, w: 0.6549228}
+ m_LocalPosition: {x: 0.24607798, y: -1.2789769e-15, z: -0.000000010202781}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 401364}
+ m_Father: {fileID: 465592}
+ m_RootOrder: 0
+--- !u!4 &402166
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 167116}
+ m_LocalRotation: {x: 0.6810457, y: 0.7117512, z: 0.11891557, w: 0.124281995}
+ m_LocalPosition: {x: 0.038494196, y: -0.22164994, z: -0.072702184}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 467616}
+ m_Father: {fileID: 489376}
+ m_RootOrder: 0
+--- !u!4 &405016
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 183090}
+ m_LocalRotation: {x: -0.14783914, y: 0.10720122, z: -0.17954496, w: 0.9666515}
+ m_LocalPosition: {x: -0.0028237076, y: -0.03486827, z: 0.06319536}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 498804}
+ m_RootOrder: 0
+--- !u!4 &406204
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 193966}
+ m_LocalRotation: {x: 0.0026017786, y: 0.06199429, z: 0.18034942, w: 0.98164356}
+ m_LocalPosition: {x: -0.000016952441, y: 0.05806876, z: -0.0010075476}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 490540}
+ m_RootOrder: 0
+--- !u!4 &406788
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 122324}
+ m_LocalRotation: {x: 0.0000010793332, y: -0.00000012335049, z: -0.000007127534,
+ w: 1}
+ m_LocalPosition: {x: -0.000010439614, y: 0.036637545, z: -0.00063557614}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 482116}
+ m_Father: {fileID: 409392}
+ m_RootOrder: 0
+--- !u!4 &409058
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 190728}
+ m_LocalRotation: {x: 1.8180955e-11, y: -0.000004779359, z: 0.000003803601, w: 1}
+ m_LocalPosition: {x: -0.050193336, y: 0.0000000112707825, z: 0.0000000028341856}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 419132}
+ m_Father: {fileID: 487332}
+ m_RootOrder: 0
+--- !u!4 &409392
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 173124}
+ m_LocalRotation: {x: -0.022714216, y: 0.972304, z: -0.011218397, w: 0.23234294}
+ m_LocalPosition: {x: 0.008994034, y: 0.22164938, z: -0.05913349}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 406788}
+ m_Father: {fileID: 457564}
+ m_RootOrder: 3
+--- !u!4 &410436
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 186140}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 454336}
+ m_RootOrder: 0
+--- !u!4 &411432
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 164402}
+ m_LocalRotation: {x: -6.123234e-17, y: -6.123234e-17, z: -5.0532154e-16, w: 1}
+ m_LocalPosition: {x: 0.0028988298, y: 0.059313014, z: 0.002447827}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 467942}
+ m_Father: {fileID: 448980}
+ m_RootOrder: 0
+--- !u!4 &412030
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 150330}
+ m_LocalRotation: {x: 4.309053e-15, y: 1.0009354e-15, z: -1.652194e-14, w: 1}
+ m_LocalPosition: {x: -0.035902288, y: 0.000000008061755, z: 0.00000000202726}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 482450}
+ m_Father: {fileID: 435792}
+ m_RootOrder: 0
+--- !u!4 &412080
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 150058}
+ m_LocalRotation: {x: 0.0000006502953, y: 0.00000012163824, z: 0.000007001316, w: 1}
+ m_LocalPosition: {x: -0.00001586337, y: 0.055002887, z: -0.0009541319}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 444654}
+ m_Father: {fileID: 426422}
+ m_RootOrder: 0
+--- !u!4 &413800
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 164480}
+ m_LocalRotation: {x: -0.020027531, y: 0.97236824, z: -0.010919833, w: 0.23233534}
+ m_LocalPosition: {x: -0.03849406, y: 0.2216498, z: 0.07270222}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 401168}
+ m_Father: {fileID: 457564}
+ m_RootOrder: 0
+--- !u!4 &413818
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 192570}
+ m_LocalRotation: {x: 0.000041408697, y: 0.00000014583733, z: 0.0000079633155, w: 1}
+ m_LocalPosition: {x: 0.2998337, y: 0.0000026271928, z: -0.00000010038097}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 457564}
+ m_Father: {fileID: 421688}
+ m_RootOrder: 0
+--- !u!4 &414262
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 157898}
+ m_LocalRotation: {x: 0.000042413867, y: 0.000000072635764, z: 0.00000818786, w: 1}
+ m_LocalPosition: {x: -0.2998349, y: -0.0000023670402, z: 0.00000005694868}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 489376}
+ m_Father: {fileID: 486626}
+ m_RootOrder: 0
+--- !u!4 &415776
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 177824}
+ m_LocalRotation: {x: 0.96858424, y: -0.12048136, z: 0.04565446, w: 0.21270768}
+ m_LocalPosition: {x: -2.918563, y: 0.21739936, z: 12.918306}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 24.999, y: 177.71701, z: -166.64201}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 4
+--- !u!4 &418812
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 173152}
+ m_LocalRotation: {x: 0.07807703, y: 0.8715695, z: -0.14945915, w: 0.46036136}
+ m_LocalPosition: {x: -10.1, y: 4.1, z: 5.16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 19.372002, y: 124.48601, z: -0.089}
+ m_Children:
+ - {fileID: 494170}
+ m_Father: {fileID: 435212}
+ m_RootOrder: 3
+--- !u!4 &418910
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 122494}
+ m_LocalRotation: {x: -3.6409565e-12, y: -0.00000034157893, z: -0.000010689584, w: 1}
+ m_LocalPosition: {x: -0.050539095, y: 0.000000011348388, z: 0.0000000028535065}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 472190}
+ m_Father: {fileID: 467616}
+ m_RootOrder: 0
+--- !u!4 &418920
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 171292}
+ m_LocalRotation: {x: 0.67785966, y: 0.71478564, z: 0.11836504, w: 0.124809705}
+ m_LocalPosition: {x: -0.030545792, y: -0.22164837, z: 0.118966326}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 487332}
+ m_Father: {fileID: 489376}
+ m_RootOrder: 2
+--- !u!4 &419132
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 183266}
+ m_LocalRotation: {x: -0.00000075944354, y: 0.000005267947, z: -0.5636917, w: 0.8259853}
+ m_LocalPosition: {x: -0.044467106, y: 0.0000000099848485, z: 0.000000002510972}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 409058}
+ m_RootOrder: 0
+--- !u!4 &420546
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 151658}
+ m_LocalRotation: {x: -0.0000010994823, y: -0.0000007531651, z: -0.56513727, w: 0.8249969}
+ m_LocalPosition: {x: -0.06623791, y: -0.00000028547174, z: -0.00000013884133}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 494556}
+ m_RootOrder: 0
+--- !u!4 &421688
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 112256}
+ m_LocalRotation: {x: 0.8595716, y: 0.41457585, z: -0.21457963, w: 0.2078921}
+ m_LocalPosition: {x: 0.3514257, y: -0.029599166, z: 0.019569691}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 413818}
+ m_Father: {fileID: 451060}
+ m_RootOrder: 0
+--- !u!4 &422388
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 196946}
+ m_LocalRotation: {x: 0.7071068, y: -0.7071068, z: 0.000000095198004, w: -0.000000095198004}
+ m_LocalPosition: {x: -0.14404914, y: -0.0000609945, z: -0.13758339}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 464672}
+ m_RootOrder: 0
+--- !u!4 &422670
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 130884}
+ m_LocalRotation: {x: -0.08491985, y: 0.32365128, z: 0.4145402, w: 0.846283}
+ m_LocalPosition: {x: -6.9085627, y: -2.2726007, z: -5.221694}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -24.304, y: 31.680002, z: 45.421}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 0
+--- !u!4 &422828
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 146836}
+ m_LocalRotation: {x: -2.3108803e-16, y: -0.000000047594234, z: 1.4445283e-14, w: 1}
+ m_LocalPosition: {x: -0.22824562, y: -3.291714e-17, z: 8.7778074e-10}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 450258}
+ m_Father: {fileID: 444310}
+ m_RootOrder: 0
+--- !u!4 &425058
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 164580}
+ m_LocalRotation: {x: -0.5444259, y: 0.779922, z: -0.17672123, w: 0.25316352}
+ m_LocalPosition: {x: -0.29434344, y: 0.08064728, z: -0.05615817}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 486626}
+ m_Father: {fileID: 455476}
+ m_RootOrder: 1
+--- !u!4 &426422
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 130458}
+ m_LocalRotation: {x: 5.290108e-11, y: 2.2425894e-12, z: -2.6853913e-11, w: 1}
+ m_LocalPosition: {x: -0.0000096777385, y: 0.035897575, z: -0.0006228081}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 412080}
+ m_Father: {fileID: 491666}
+ m_RootOrder: 0
+--- !u!4 &429306
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 131012}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 479590}
+ m_RootOrder: 0
+--- !u!4 &431866
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 157518}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -0.45195812, y: -0.26269963, z: 0.00000029801032}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 447264}
+ m_Father: {fileID: 436944}
+ m_RootOrder: 0
+--- !u!4 &433656
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 164248}
+ m_LocalRotation: {x: 0.7071068, y: -0.7071068, z: 0.00000009501367, w: -0.00000009501367}
+ m_LocalPosition: {x: -0.15404582, y: 0.06861903, z: -0.106809184}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 464672}
+ m_RootOrder: 2
+--- !u!4 &435212
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 147420}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000013019655500}
+ - {fileID: 4000011614177832}
+ - {fileID: 479590}
+ - {fileID: 418812}
+ - {fileID: 436944}
+ - {fileID: 4000014125242754}
+ - {fileID: 4000011677577848}
+ - {fileID: 4000012237980576}
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+--- !u!4 &435254
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 171990}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -5.89, y: -1.29, z: 0.74}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 14
+--- !u!4 &435792
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 175842}
+ m_LocalRotation: {x: 0.6795682, y: 0.71316206, z: 0.11865744, w: 0.12452915}
+ m_LocalPosition: {x: 0.0149329305, y: -0.22164941, z: -0.0072915023}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 412030}
+ m_Father: {fileID: 489376}
+ m_RootOrder: 1
+--- !u!4 &436944
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 185278}
+ m_LocalRotation: {x: -0, y: -0.9185932, z: -0, w: 0.39520445}
+ m_LocalPosition: {x: -7.3977914, y: 4.359, z: 5.0660543}
+ m_LocalScale: {x: 1.1947234, y: 1.1947231, z: 1.1947231}
+ m_LocalEulerAnglesHint: {x: 0, y: -133.442, z: 0}
+ m_Children:
+ - {fileID: 431866}
+ m_Father: {fileID: 435212}
+ m_RootOrder: 4
+--- !u!4 &438092
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 163214}
+ m_LocalRotation: {x: 0.0055363635, y: -0.0032194615, z: 0.0111661535, w: 0.99991715}
+ m_LocalPosition: {x: -0.000060994487, y: 0.5555664, z: -0.07421041}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 444310}
+ - {fileID: 458144}
+ - {fileID: 474950}
+ m_Father: {fileID: 458328}
+ m_RootOrder: 0
+--- !u!4 &438732
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 174054}
+ m_LocalRotation: {x: -0, y: -0.7071068, z: 0, w: 0.7071068}
+ m_LocalPosition: {x: -0.09184468, y: -5.3924104e-10, z: 3.2775258e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 461868}
+ m_RootOrder: 0
+--- !u!4 &439984
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 123170}
+ m_LocalRotation: {x: 0.67911863, y: 0.71359044, z: 0.11857934, w: 0.124601424}
+ m_LocalPosition: {x: -0.008993626, y: -0.22164886, z: 0.0591333}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 451138}
+ m_Father: {fileID: 489376}
+ m_RootOrder: 3
+--- !u!4 &443006
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 189644}
+ m_LocalRotation: {x: 0.002771866, y: 0.06198565, z: 0.18300945, w: 0.98115116}
+ m_LocalPosition: {x: -0.000019940127, y: 0.06622822, z: -0.0011485239}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 482116}
+ m_RootOrder: 0
+--- !u!4 &444310
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 180242}
+ m_LocalRotation: {x: -0.0016383156, y: 0.0061913226, z: 0.6991525, w: 0.7149439}
+ m_LocalPosition: {x: -0.12681985, y: -0.003941895, z: -0.013846161}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 422828}
+ m_Father: {fileID: 438092}
+ m_RootOrder: 0
+--- !u!4 &444654
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 184434}
+ m_LocalRotation: {x: 0.0027322802, y: 0.06198881, z: 0.1823775, w: 0.98126876}
+ m_LocalPosition: {x: -0.000018822433, y: 0.06728683, z: -0.0011673539}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 412080}
+ m_RootOrder: 0
+--- !u!4 &444970
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 178808}
+ m_LocalRotation: {x: 0.7071068, y: -0.7071068, z: 0.00000009501367, w: -0.00000009501367}
+ m_LocalPosition: {x: -0.32440665, y: -8.338631e-12, z: -0.000000043590394}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 464672}
+ m_RootOrder: 1
+--- !u!4 &447264
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 195792}
+ m_LocalRotation: {x: -0, y: 0.99739563, z: -0, w: -0.07212442}
+ m_LocalPosition: {x: -0.1584, y: -0.38820007, z: 0.1169}
+ m_LocalScale: {x: 0.13405032, y: 0.1340503, z: 0.1340503}
+ m_LocalEulerAnglesHint: {x: 0, y: 188.051, z: 0}
+ m_Children: []
+ m_Father: {fileID: 431866}
+ m_RootOrder: 0
+--- !u!4 &447972
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 147848}
+ m_LocalRotation: {x: 0.000006007088, y: 2.5092042e-12, z: -2.6857008e-11, w: 1}
+ m_LocalPosition: {x: -0.000010138625, y: 0.035512112, z: -0.00061625853}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 477240}
+ m_Father: {fileID: 449946}
+ m_RootOrder: 0
+--- !u!4 &448980
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 185486}
+ m_LocalRotation: {x: 3.306882e-11, y: 1.148564e-11, z: 4.795047e-11, w: 1}
+ m_LocalPosition: {x: 0.0032163146, y: 0.065840684, z: 0.0027182384}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 411432}
+ m_Father: {fileID: 476932}
+ m_RootOrder: 0
+--- !u!4 &449946
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 134288}
+ m_LocalRotation: {x: -0.024464598, y: 0.9722573, z: -0.011409624, w: 0.23235106}
+ m_LocalPosition: {x: 0.030545823, y: 0.22164913, z: -0.11896609}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 447972}
+ m_Father: {fileID: 457564}
+ m_RootOrder: 2
+--- !u!4 &450258
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 154690}
+ m_LocalRotation: {x: 0.6550475, y: 0.26629457, z: -0.26629457, w: 0.6550475}
+ m_LocalPosition: {x: -0.24607801, y: -7.240387e-17, z: 3.8717346e-10}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 461868}
+ m_Father: {fileID: 422828}
+ m_RootOrder: 0
+--- !u!4 &451060
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 128500}
+ m_LocalRotation: {x: 0.17672123, y: -0.25316352, z: -0.5444259, w: 0.779922}
+ m_LocalPosition: {x: -0.29434744, y: -0.0806473, z: -0.056158256}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 421688}
+ m_Father: {fileID: 455476}
+ m_RootOrder: 2
+--- !u!4 &451138
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 182344}
+ m_LocalRotation: {x: -1.3502335e-11, y: -0.0000019455429, z: -0.0000069423704, w: 1}
+ m_LocalPosition: {x: -0.03664366, y: 0.000000008228235, z: 0.0000000020691409}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 494556}
+ m_Father: {fileID: 439984}
+ m_RootOrder: 0
+--- !u!4 &454336
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 165836}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 410436}
+ m_Father: {fileID: 479590}
+ m_RootOrder: 1
+--- !u!4 &455476
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 120510}
+ m_LocalRotation: {x: 1.8894379e-10, y: 0.72753906, z: -1.7911264e-10, w: 0.68606627}
+ m_LocalPosition: {x: 1.4210854e-16, y: -3.1408035e-16, z: 0.42405757}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 464672}
+ - {fileID: 425058}
+ - {fileID: 451060}
+ m_Father: {fileID: 474950}
+ m_RootOrder: 0
+--- !u!4 &457564
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 172610}
+ m_LocalRotation: {x: 0.11411697, y: 0.11411694, z: -0.69783753, w: 0.6978377}
+ m_LocalPosition: {x: 0.2675942, y: -0.0000020657096, z: 2.0881583e-10}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 413800}
+ - {fileID: 491666}
+ - {fileID: 449946}
+ - {fileID: 409392}
+ - {fileID: 476932}
+ m_Father: {fileID: 413818}
+ m_RootOrder: 0
+--- !u!4 &458144
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 116950}
+ m_LocalRotation: {x: -0.69915134, y: 0.7149442, z: -0.0015022093, w: -0.006324456}
+ m_LocalPosition: {x: 0.12633176, y: -0.009605057, z: -0.0154451905}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 465592}
+ m_Father: {fileID: 438092}
+ m_RootOrder: 1
+--- !u!4 &458328
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 106362}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 438092}
+ m_Father: {fileID: 479590}
+ m_RootOrder: 2
+--- !u!4 &459648
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 127232}
+ m_LocalRotation: {x: 0.17933483, y: 0.9371175, z: -0.116155975, w: 0.2759666}
+ m_LocalPosition: {x: 0.009419801, y: -0.06345137, z: -0.07271654}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 476666}
+ m_Father: {fileID: 489376}
+ m_RootOrder: 4
+--- !u!4 &461868
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 143564}
+ m_LocalRotation: {x: 1.8412112e-15, y: -7.768844e-16, z: -0.3887529, w: 0.9213421}
+ m_LocalPosition: {x: -0.14390306, y: 0.03789019, z: 3.8161756e-17}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 438732}
+ m_Father: {fileID: 450258}
+ m_RootOrder: 0
+--- !u!4 &464672
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 191238}
+ m_LocalRotation: {x: 2.3101976e-12, y: -0.010481866, z: -1.2202634e-13, w: 0.9999451}
+ m_LocalPosition: {x: -0.44402754, y: 9.509754e-17, z: 6.3060666e-16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 422388}
+ - {fileID: 444970}
+ - {fileID: 433656}
+ - {fileID: 465636}
+ - {fileID: 497440}
+ - {fileID: 480718}
+ m_Father: {fileID: 455476}
+ m_RootOrder: 0
+--- !u!4 &465592
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 122058}
+ m_LocalRotation: {x: 4.0820415e-15, y: -0.00000009632435, z: -1.5559852e-13, w: 1}
+ m_LocalPosition: {x: 0.228246, y: -1.1191048e-15, z: 0.00000001226295}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 401942}
+ m_Father: {fileID: 458144}
+ m_RootOrder: 0
+--- !u!4 &465636
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 180700}
+ m_LocalRotation: {x: -2.9893513e-17, y: 0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.06905189, y: -0.000060994804, z: -0.1539075}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 464672}
+ m_RootOrder: 3
+--- !u!4 &467616
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 106508}
+ m_LocalRotation: {x: 5.3986863e-12, y: -0.0000005357378, z: 0.00001007094, w: 1}
+ m_LocalPosition: {x: -0.037836827, y: 0.000000008496152, z: 0.0000000021363211}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 418910}
+ m_Father: {fileID: 402166}
+ m_RootOrder: 0
+--- !u!4 &467942
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170606}
+ m_LocalRotation: {x: 0.31161714, y: -0.5363709, z: 0.17376691, w: 0.76485693}
+ m_LocalPosition: {x: 0.003522045, y: 0.07208477, z: 0.00297546}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 411432}
+ m_RootOrder: 0
+--- !u!4 &472190
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 110678}
+ m_LocalRotation: {x: -0.0000005018828, y: 0.000000078059614, z: -0.5673712, w: 0.8234622}
+ m_LocalPosition: {x: -0.0580773, y: 0.000000013041407, z: 0.0000000032791168}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 418910}
+ m_RootOrder: 0
+--- !u!4 &474950
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 110824}
+ m_LocalRotation: {x: -0.4861505, y: 0.5003838, z: 0.5024685, w: 0.51068497}
+ m_LocalPosition: {x: 0.0014615708, y: 0.06319843, z: 0.0075494987}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 455476}
+ m_Father: {fileID: 438092}
+ m_RootOrder: 2
+--- !u!4 &476666
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 128598}
+ m_LocalRotation: {x: -7.685638e-15, y: 1.863093e-15, z: -1.2628787e-15, w: 1}
+ m_LocalPosition: {x: -0.0025792674, y: -0.03184798, z: 0.057720836}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 498804}
+ m_Father: {fileID: 459648}
+ m_RootOrder: 0
+--- !u!4 &476932
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 110376}
+ m_LocalRotation: {x: -0.24031655, y: 0.8427086, z: 0.26142925, w: -0.4046541}
+ m_LocalPosition: {x: -0.009419456, y: 0.06345115, z: 0.07271669}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 448980}
+ m_Father: {fileID: 457564}
+ m_RootOrder: 4
+--- !u!4 &477240
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 156718}
+ m_LocalRotation: {x: 0.000005429347, y: 1.60815e-16, z: -5.053207e-16, w: 1}
+ m_LocalPosition: {x: -0.00001431674, y: 0.050185464, z: -0.0008700089}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 479050}
+ m_Father: {fileID: 447972}
+ m_RootOrder: 0
+--- !u!4 &479050
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 182666}
+ m_LocalRotation: {x: 0.002875947, y: 0.061985295, z: 0.18472946, w: 0.9808285}
+ m_LocalPosition: {x: -0.000012688265, y: 0.044460416, z: -0.0007716301}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 477240}
+ m_RootOrder: 0
+--- !u!4 &479590
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 112126}
+ m_LocalRotation: {x: 0, y: -0.10040493, z: 0, w: 0.99494666}
+ m_LocalPosition: {x: -0.595, y: -0.029108655, z: -3.022}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 429306}
+ - {fileID: 454336}
+ - {fileID: 458328}
+ m_Father: {fileID: 435212}
+ m_RootOrder: 2
+--- !u!4 &480718
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 187408}
+ m_LocalRotation: {x: 0.7071068, y: -0.7071068, z: 0.000000095198004, w: -0.000000095198004}
+ m_LocalPosition: {x: -0.16285986, y: -0.0000609945, z: -0.13663422}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 464672}
+ m_RootOrder: 5
+--- !u!4 &482116
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 118616}
+ m_LocalRotation: {x: -1.6081226e-16, y: 1.6081226e-16, z: -6.123234e-17, w: 1}
+ m_LocalPosition: {x: -0.000013760271, y: 0.05024163, z: -0.0008723555}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 443006}
+ m_Father: {fileID: 406788}
+ m_RootOrder: 0
+--- !u!4 &482450
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 128288}
+ m_LocalRotation: {x: -1.4942778e-12, y: 0.0000002132272, z: 0.000007029294, w: 1}
+ m_LocalPosition: {x: -0.055011496, y: 0.00000004165182, z: 0.000000018404725}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 491430}
+ m_Father: {fileID: 412030}
+ m_RootOrder: 0
+--- !u!4 &486626
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 103094}
+ m_LocalRotation: {x: 0.8595714, y: 0.41457608, z: -0.21457933, w: 0.20789267}
+ m_LocalPosition: {x: -0.35142413, y: 0.029603034, z: -0.0195726}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 414262}
+ m_Father: {fileID: 425058}
+ m_RootOrder: 0
+--- !u!4 &487332
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 130902}
+ m_LocalRotation: {x: -3.182273e-12, y: -0.000005983525, z: -0.000000531511, w: 1}
+ m_LocalPosition: {x: -0.035518065, y: 0.000000007975469, z: 0.0000000020057378}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 409058}
+ m_Father: {fileID: 418920}
+ m_RootOrder: 0
+--- !u!4 &489376
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 107868}
+ m_LocalRotation: {x: 0.114117645, y: 0.114117645, z: -0.69783753, w: 0.69783753}
+ m_LocalPosition: {x: -0.2675943, y: 0.0000024081826, z: -2.3617766e-10}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 402166}
+ - {fileID: 435792}
+ - {fileID: 418920}
+ - {fileID: 439984}
+ - {fileID: 459648}
+ m_Father: {fileID: 414262}
+ m_RootOrder: 0
+--- !u!4 &490540
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 174780}
+ m_LocalRotation: {x: 0.0000009719796, y: -0.00000018503614, z: -0.000010649156,
+ w: 1}
+ m_LocalPosition: {x: -0.000013785668, y: 0.05053152, z: -0.00087657635}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 406204}
+ m_Father: {fileID: 401168}
+ m_RootOrder: 0
+--- !u!4 &491430
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 126858}
+ m_LocalRotation: {x: 0.00000012061709, y: -0.0000000072172837, z: -0.56566846, w: 0.82463276}
+ m_LocalPosition: {x: -0.06729661, y: 0.00000001511084, z: 0.0000000037999843}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 482450}
+ m_RootOrder: 0
+--- !u!4 &491666
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 144798}
+ m_LocalRotation: {x: -0.022088015, y: 0.9723193, z: -0.011150551, w: 0.23234254}
+ m_LocalPosition: {x: -0.014932352, y: 0.2216491, z: 0.0072917114}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 426422}
+ m_Father: {fileID: 457564}
+ m_RootOrder: 1
+--- !u!4 &494170
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 101552}
+ m_LocalRotation: {x: -0.017348249, y: -0.017086923, z: -0.00035171956, w: 0.9997035}
+ m_LocalPosition: {x: 0.19, y: -0.31, z: -0.16}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -1.968, y: -1.9010001, z: -0.006}
+ m_Children: []
+ m_Father: {fileID: 418812}
+ m_RootOrder: 0
+--- !u!4 &494556
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 170630}
+ m_LocalRotation: {x: 3.740064e-15, y: 9.627715e-16, z: -1.641005e-14, w: 1}
+ m_LocalPosition: {x: -0.050249174, y: 0.000000011283474, z: 0.0000000028373535}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 420546}
+ m_Father: {fileID: 451138}
+ m_RootOrder: 0
+--- !u!4 &497440
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 193020}
+ m_LocalRotation: {x: 0.000000094957485, y: -0.000000094957485, z: -0.7071068, w: 0.7071068}
+ m_LocalPosition: {x: -0.15404996, y: -0.06861899, z: -0.10680918}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 464672}
+ m_RootOrder: 4
+--- !u!4 &498804
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 141464}
+ m_LocalRotation: {x: -6.961391e-15, y: 1.9099305e-15, z: -1.6098234e-15, w: 1}
+ m_LocalPosition: {x: -0.0023234638, y: -0.028690476, z: 0.051999416}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 405016}
+ m_Father: {fileID: 476666}
+ m_RootOrder: 0
+--- !u!20 &2064738
+Camera:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 101552}
+ m_Enabled: 1
+ serializedVersion: 2
+ m_ClearFlags: 1
+ m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844}
+ m_NormalizedViewPortRect:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 1
+ height: 1
+ near clip plane: 0.3
+ far clip plane: 1000
+ field of view: 40
+ orthographic: 0
+ orthographic size: 5
+ m_Depth: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967263
+ m_RenderingPath: -1
+ m_TargetTexture: {fileID: 0}
+ m_TargetDisplay: 0
+ m_TargetEye: 3
+ m_HDR: 0
+ m_OcclusionCulling: 1
+ m_StereoConvergence: 10
+ m_StereoSeparation: 0.022
+ m_StereoMirrorMode: 0
+--- !u!23 &2326622
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 195792}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 122e9cd5ec976eb42bc7f99a4512d40f, type: 2}
+ m_SubsetIndices:
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 1
+ m_PreserveUVs: 1
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 0
+ m_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &2391300
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 185278}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3f386ec83100d844b94a7a5b79ffb81d, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &2392218
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 157518}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3f386ec83100d844b94a7a5b79ffb81d, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!33 &3331256
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 185278}
+ m_Mesh: {fileID: 4300000, guid: ef8cdb4b09398294dbbad74fcc5add20, type: 3}
+--- !u!33 &3335182
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 195792}
+ m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!33 &3379206
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 157518}
+ m_Mesh: {fileID: 4300002, guid: ef8cdb4b09398294dbbad74fcc5add20, type: 3}
+--- !u!64 &6435670
+MeshCollider:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 147420}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_Mesh: {fileID: 4300002, guid: e4162c0d4c205614fb77d61bdf32ae20, type: 3}
+--- !u!64 &6485356
+MeshCollider:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 195792}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Convex: 0
+ m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!92 &9205652
+Behaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 101552}
+ m_Enabled: 1
+--- !u!95 &9565778
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 112126}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: c7b68b4319c8eb841972625ac9d251a6, type: 3}
+ m_Controller: {fileID: 9100000, guid: ae4877564f01ced49aafdab53e4e0c9d, type: 2}
+ m_CullingMode: 1
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!95 &9595670
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 185278}
+ m_Enabled: 1
+ m_Avatar: {fileID: 9000000, guid: ef8cdb4b09398294dbbad74fcc5add20, type: 3}
+ m_Controller: {fileID: 9100000, guid: 88ff506200557174fa0cec5f6f63094d, type: 2}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!108 &10806928
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 171990}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 1.0147059, g: 0.3390929, b: 0.26113755, a: 1}
+ m_Intensity: 2.5
+ m_Range: 3.389574
+ m_SpotAngle: 80.520966
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 5
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &10819640
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 177824}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 0
+ m_Color: {r: 1, g: 0.8075051, b: 0.46323532, a: 1}
+ m_Intensity: 2.5
+ m_Range: 8.898933
+ m_SpotAngle: 54.4
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 1
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.01
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &10882772
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 130884}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.19852942, g: 0.6351928, b: 1, a: 1}
+ m_Intensity: 8
+ m_Range: 6.4178658
+ m_SpotAngle: 67.62145
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 0.351
+ m_Bias: 0.01
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 2.3207483, y: 3.8478622}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!114 &11439506
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 147420}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -1862395651, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Delegates:
+ - eventID: 4
+ callback:
+ m_PersistentCalls:
+ m_Calls:
+ - m_Target: {fileID: 0}
+ m_MethodName: OnGroundClick
+ m_Mode: 0
+ m_Arguments:
+ m_ObjectArgument: {fileID: 0}
+ m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
+ m_IntArgument: 0
+ m_FloatArgument: 0
+ m_StringArgument:
+ m_BoolArgument: 0
+ m_CallState: 2
+ m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ delegates: []
+--- !u!114 &11473782
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 101552}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -768656878, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_EventMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+--- !u!114 &11497582
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 173152}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 740e682d67841cb4ca4620d2bee866b0, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ moveCamera: 0
+ smoothing: 7
+ offset: {x: 0, y: 1.5, z: 0}
+ playerPosition: {fileID: 0}
+--- !u!124 &12418820
+Behaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 101552}
+ m_Enabled: 1
+--- !u!137 &13742228
+SkinnedMeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 186140}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: f95cb83adbc6a1a49ae70f30c6496e73, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ serializedVersion: 2
+ m_Quality: 0
+ m_UpdateWhenOffscreen: 0
+ m_SkinnedMotionVectors: 1
+ m_Mesh: {fileID: 4300000, guid: c7b68b4319c8eb841972625ac9d251a6, type: 3}
+ m_Bones:
+ - {fileID: 498804}
+ - {fileID: 476666}
+ - {fileID: 459648}
+ - {fileID: 418910}
+ - {fileID: 467616}
+ - {fileID: 402166}
+ - {fileID: 482450}
+ - {fileID: 412030}
+ - {fileID: 435792}
+ - {fileID: 494556}
+ - {fileID: 451138}
+ - {fileID: 439984}
+ - {fileID: 409058}
+ - {fileID: 487332}
+ - {fileID: 418920}
+ - {fileID: 489376}
+ - {fileID: 411432}
+ - {fileID: 448980}
+ - {fileID: 476932}
+ - {fileID: 490540}
+ - {fileID: 401168}
+ - {fileID: 413800}
+ - {fileID: 412080}
+ - {fileID: 426422}
+ - {fileID: 491666}
+ - {fileID: 482116}
+ - {fileID: 406788}
+ - {fileID: 409392}
+ - {fileID: 477240}
+ - {fileID: 447972}
+ - {fileID: 449946}
+ - {fileID: 457564}
+ - {fileID: 413818}
+ - {fileID: 421688}
+ - {fileID: 414262}
+ - {fileID: 486626}
+ - {fileID: 401364}
+ - {fileID: 401942}
+ - {fileID: 461868}
+ - {fileID: 450258}
+ - {fileID: 422828}
+ - {fileID: 465592}
+ - {fileID: 458144}
+ - {fileID: 444310}
+ - {fileID: 433656}
+ - {fileID: 497440}
+ - {fileID: 480718}
+ - {fileID: 422388}
+ - {fileID: 464672}
+ - {fileID: 425058}
+ - {fileID: 451060}
+ - {fileID: 455476}
+ - {fileID: 474950}
+ - {fileID: 438092}
+ - {fileID: 465636}
+ m_BlendShapeWeights: []
+ m_RootBone: {fileID: 438092}
+ m_AABB:
+ m_Center: {x: -0.002768755, y: 0.29184917, z: 0.0062125325}
+ m_Extent: {x: 0.903213, y: 0.9806092, z: 0.5451709}
+ m_DirtyAABB: 0
+--- !u!1001 &100100000
+Prefab:
+ m_ObjectHideFlags: 1
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications: []
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 0}
+ m_RootGameObject: {fileID: 147420}
+ m_IsPrefabParent: 1
+--- !u!1 &1000010046552142
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013401072800}
+ - 198: {fileID: 198000010910003636}
+ - 199: {fileID: 199000011358676250}
+ m_Layer: 0
+ m_Name: Particle System (3)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010125470250
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011677577848}
+ - 108: {fileID: 108000013995331880}
+ m_Layer: 0
+ m_Name: CharacterLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010146946158
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012030312468}
+ - 198: {fileID: 198000014277928604}
+ - 199: {fileID: 199000012220485478}
+ m_Layer: 0
+ m_Name: Particle System (1)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010415090826
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012464107366}
+ - 108: {fileID: 108000013800406592}
+ m_Layer: 0
+ m_Name: DoorLight02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010475912638
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013214802910}
+ - 108: {fileID: 108000010888785628}
+ m_Layer: 0
+ m_Name: HologramLights
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010485167684
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012580619788}
+ - 212: {fileID: 212000011016869556}
+ m_Layer: 0
+ m_Name: Background
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010605808140
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012935529682}
+ - 33: {fileID: 33000013376533918}
+ - 23: {fileID: 23000012227905276}
+ m_Layer: 0
+ m_Name: Floor
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010626101604
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013438728860}
+ - 33: {fileID: 33000010670518646}
+ - 23: {fileID: 23000012697939786}
+ m_Layer: 0
+ m_Name: CoffeeTable
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010953594216
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012196361532}
+ - 33: {fileID: 33000014210218708}
+ - 23: {fileID: 23000012171102452}
+ m_Layer: 0
+ m_Name: WallPipe
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011096530410
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014287847324}
+ - 33: {fileID: 33000010639850776}
+ - 23: {fileID: 23000012861499642}
+ m_Layer: 0
+ m_Name: BackWall
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011099076474
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012810113660}
+ - 198: {fileID: 198000011151760134}
+ - 199: {fileID: 199000013336362950}
+ m_Layer: 0
+ m_Name: Particle System (5)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011198461118
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011614177832}
+ m_Layer: 0
+ m_Name: Holograms
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011252938350
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012846049046}
+ - 108: {fileID: 108000010402418588}
+ m_Layer: 0
+ m_Name: PointLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011261928328
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013832547920}
+ - 198: {fileID: 198000011113365884}
+ - 199: {fileID: 199000013436863194}
+ m_Layer: 0
+ m_Name: Particle System (4)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011276699088
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011955671538}
+ - 95: {fileID: 95000010337126304}
+ m_Layer: 0
+ m_Name: Logo
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011312830942
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011659105874}
+ - 33: {fileID: 33000013327596580}
+ - 23: {fileID: 23000010493624610}
+ m_Layer: 0
+ m_Name: Elevator
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011328732106
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010576262694}
+ - 33: {fileID: 33000011714590666}
+ - 23: {fileID: 23000010540651908}
+ m_Layer: 0
+ m_Name: Carpet
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011376953296
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010891752390}
+ - 95: {fileID: 95000011516940026}
+ m_Layer: 0
+ m_Name: DNA
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011486089040
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012559144368}
+ - 212: {fileID: 212000011274336604}
+ m_Layer: 0
+ m_Name: SecurityRoomCompanyLogo (2)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011594884080
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012233754164}
+ - 33: {fileID: 33000010144621872}
+ - 23: {fileID: 23000013488180032}
+ m_Layer: 0
+ m_Name: HologramLight02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011622339866
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012231768456}
+ - 33: {fileID: 33000013296829410}
+ - 23: {fileID: 23000014288123806}
+ m_Layer: 0
+ m_Name: SecurityGate
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011669537508
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010067323152}
+ - 108: {fileID: 108000012698787654}
+ m_Layer: 0
+ m_Name: PointLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011688780970
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012354376220}
+ - 33: {fileID: 33000012215071842}
+ - 23: {fileID: 23000011626949388}
+ m_Layer: 0
+ m_Name: DeskLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011695197228
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013442001320}
+ - 212: {fileID: 212000011086793078}
+ m_Layer: 0
+ m_Name: Text02
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011809260392
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014125242754}
+ m_Layer: 0
+ m_Name: BakedLights
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!1 &1000011843579408
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012704063600}
+ - 33: {fileID: 33000010133323040}
+ - 23: {fileID: 23000012214955340}
+ m_Layer: 0
+ m_Name: FloorLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011952199748
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010286555612}
+ - 33: {fileID: 33000011850403582}
+ - 23: {fileID: 23000013490147584}
+ m_Layer: 0
+ m_Name: SecurityRoomHologramDNA
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012074687576
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014281430012}
+ - 108: {fileID: 108000011939573250}
+ m_Layer: 0
+ m_Name: HologramLights
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012173416270
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010425026456}
+ - 33: {fileID: 33000013823183120}
+ - 23: {fileID: 23000010534055926}
+ m_Layer: 0
+ m_Name: Chair
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012173431702
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011078167740}
+ - 33: {fileID: 33000012732715708}
+ - 23: {fileID: 23000013235040610}
+ m_Layer: 0
+ m_Name: Desk
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012213709070
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010029973638}
+ - 33: {fileID: 33000012281281388}
+ - 23: {fileID: 23000011299334142}
+ m_Layer: 0
+ m_Name: HologramLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012348350740
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014012951324}
+ - 212: {fileID: 212000011784662998}
+ m_Layer: 0
+ m_Name: Graph01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012622077540
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011129167270}
+ - 33: {fileID: 33000010162576780}
+ - 23: {fileID: 23000013981064722}
+ m_Layer: 0
+ m_Name: ForegroundDetail
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012634615528
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011628647466}
+ - 212: {fileID: 212000010245583474}
+ m_Layer: 0
+ m_Name: DNAinfo
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012683253398
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014293138790}
+ - 198: {fileID: 198000012217866800}
+ - 199: {fileID: 199000012047277130}
+ m_Layer: 0
+ m_Name: Particle System
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012685686296
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013669961912}
+ - 108: {fileID: 108000010661912292}
+ m_Layer: 0
+ m_Name: HologramLights
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012719837778
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011922396940}
+ - 108: {fileID: 108000014128069300}
+ m_Layer: 0
+ m_Name: HologramLights
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012727677572
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010047729092}
+ - 33: {fileID: 33000013242199778}
+ - 23: {fileID: 23000010449179924}
+ m_Layer: 0
+ m_Name: Magazine
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012855943432
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012108243640}
+ - 212: {fileID: 212000011745423518}
+ m_Layer: 0
+ m_Name: Background (2)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012884834512
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010238770772}
+ - 108: {fileID: 108000014219185086}
+ m_Layer: 0
+ m_Name: HologramLights
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013058693036
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012630177780}
+ - 198: {fileID: 198000014222411032}
+ - 199: {fileID: 199000011444216118}
+ m_Layer: 0
+ m_Name: Particle System (6)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013178173488
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011614540558}
+ - 33: {fileID: 33000013935132160}
+ - 23: {fileID: 23000010056796580}
+ m_Layer: 0
+ m_Name: SecurityGateBeams
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013186571738
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013097986344}
+ - 33: {fileID: 33000010539951220}
+ - 23: {fileID: 23000011655469706}
+ m_Layer: 0
+ m_Name: HologramEmitters
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013268056558
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012764472670}
+ - 33: {fileID: 33000013940794080}
+ - 23: {fileID: 23000011689112538}
+ m_Layer: 0
+ m_Name: BlackUnlit
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013302548280
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011630338618}
+ - 108: {fileID: 108000013963697740}
+ m_Layer: 0
+ m_Name: HologramLights
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013333872850
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010492345494}
+ - 33: {fileID: 33000012795616460}
+ - 23: {fileID: 23000013624666864}
+ m_Layer: 0
+ m_Name: FloorLightGlow
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013432237298
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012064653160}
+ - 212: {fileID: 212000011382319174}
+ m_Layer: 0
+ m_Name: DNAinfo (2)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013515845294
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012004090760}
+ - 95: {fileID: 95000014137061562}
+ m_Layer: 0
+ m_Name: InfoBoard
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013520536666
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012888562542}
+ - 212: {fileID: 212000013511776706}
+ m_Layer: 0
+ m_Name: SecurityRoomCompanyLogo
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013569805330
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011596016840}
+ - 108: {fileID: 108000013177713852}
+ m_Layer: 0
+ m_Name: PointLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013644106482
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013681943790}
+ - 33: {fileID: 33000011719690136}
+ - 23: {fileID: 23000012351462676}
+ m_Layer: 0
+ m_Name: WallVents
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013645264410
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013019655500}
+ - 220: {fileID: 220000010542557762}
+ m_Layer: 0
+ m_Name: Light Probe Group
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 4294967295
+ m_IsActive: 1
+--- !u!1 &1000013646874202
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010935427204}
+ - 108: {fileID: 108000012421057008}
+ m_Layer: 0
+ m_Name: HologramLights
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013691320274
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014157901292}
+ - 212: {fileID: 212000012004630934}
+ m_Layer: 0
+ m_Name: SecurityRoomCompanyLogo (1)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013696707194
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010291076408}
+ - 198: {fileID: 198000013582802492}
+ - 199: {fileID: 199000011362523340}
+ m_Layer: 0
+ m_Name: Particle System (2)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013721061470
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010105417794}
+ - 212: {fileID: 212000012155913256}
+ m_Layer: 0
+ m_Name: DNAinfo (1)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013773803010
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012093091536}
+ - 212: {fileID: 212000013624432952}
+ m_Layer: 0
+ m_Name: Background (1)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013780333780
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013754653788}
+ - 33: {fileID: 33000014039276564}
+ - 23: {fileID: 23000011670661526}
+ m_Layer: 0
+ m_Name: FrontWall
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013816178062
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012539121888}
+ m_Layer: 0
+ m_Name: HologramParticles
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013817075810
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000011714355028}
+ - 33: {fileID: 33000011648420448}
+ - 23: {fileID: 23000010970424880}
+ m_Layer: 0
+ m_Name: WallTrim
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000013923381242
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000013191455990}
+ - 198: {fileID: 198000011550407260}
+ - 199: {fileID: 199000012723219328}
+ m_Layer: 0
+ m_Name: Particle System (7)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000014102345812
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012045354466}
+ - 108: {fileID: 108000010484819618}
+ m_Layer: 0
+ m_Name: PointLight
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000014108246932
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012046599822}
+ - 108: {fileID: 108000013698478822}
+ m_Layer: 0
+ m_Name: HologramLights
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000014122436594
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012077253660}
+ - 212: {fileID: 212000014242224562}
+ m_Layer: 0
+ m_Name: Text01
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000014281765782
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012237980576}
+ m_Layer: 0
+ m_Name: SecurityRoomEnvironment
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &4000010029973638
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012213709070}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 2.8193223, y: -0.22337507, z: 0.047483485}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 14
+--- !u!4 &4000010047729092
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012727677572}
+ m_LocalRotation: {x: 0, y: 0, z: -0.57495344, w: 0.8181861}
+ m_LocalPosition: {x: -5.502815, y: -0.15635048, z: 0.33606124}
+ m_LocalScale: {x: 1, y: 1, z: 0.52487075}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 16
+--- !u!4 &4000010067323152
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011669537508}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -5.59, y: -0.7426007, z: 4.86}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 3
+--- !u!4 &4000010105417794
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013721061470}
+ m_LocalRotation: {x: -0, y: 1, z: -0, w: 0}
+ m_LocalPosition: {x: -0.02699995, y: 0.04399991, z: -0.02}
+ m_LocalScale: {x: 0.2286806, y: 0.22868061, z: 0.22868061}
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010891752390}
+ m_RootOrder: 2
+--- !u!4 &4000010238770772
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012884834512}
+ m_LocalRotation: {x: -0.44566882, y: 0.5489802, z: 0.44566882, w: 0.5489803}
+ m_LocalPosition: {x: 0.68143725, y: -2.6926007, z: 5.138306}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -78.116005, y: 90.00001, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 6
+--- !u!4 &4000010286555612
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011952199748}
+ m_LocalRotation: {x: 0.25437307, y: 0.28590375, z: -0.69023275, w: 0.61411095}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0.8327815, y: 0.83278173, z: 0.83278173}
+ m_LocalEulerAnglesHint: {x: 45, y: 312, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010891752390}
+ m_RootOrder: 0
+--- !u!4 &4000010291076408
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013696707194}
+ m_LocalRotation: {x: -0.7058995, y: 0.041303392, z: -0.041303407, w: 0.7058995}
+ m_LocalPosition: {x: 4.0981035, y: -0.6768697, z: -3.1582289}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -96.71999, y: -90, z: 89.99999}
+ m_Children: []
+ m_Father: {fileID: 4000012539121888}
+ m_RootOrder: 2
+--- !u!4 &4000010425026456
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012173416270}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -5.6947217, y: -1.6758913, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 3
+--- !u!4 &4000010492345494
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013333872850}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 2.9435065, y: 4.5735636, z: 1.1725076}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 10
+--- !u!4 &4000010576262694
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011328732106}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.65468395, y: -2.5849383, z: 0.02689331}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 2
+--- !u!4 &4000010891752390
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011376953296}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -6.549, y: 2.347, z: -2.566}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010286555612}
+ - {fileID: 4000011628647466}
+ - {fileID: 4000010105417794}
+ - {fileID: 4000012064653160}
+ m_Father: {fileID: 4000011614177832}
+ m_RootOrder: 3
+--- !u!4 &4000010935427204
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013646874202}
+ m_LocalRotation: {x: -0.44566882, y: 0.5489802, z: 0.44566882, w: 0.5489803}
+ m_LocalPosition: {x: 0.6814375, y: -2.6926007, z: 6.5083065}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -78.116005, y: 90.00001, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 7
+--- !u!4 &4000011078167740
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012173431702}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.678251, y: 2.3956249, z: -0.009668121}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 5
+--- !u!4 &4000011129167270
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012622077540}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -7.154854, y: -3.5866106, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 11
+--- !u!4 &4000011596016840
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013569805330}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -8.33, y: -0.1, z: 2.52}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 15
+--- !u!4 &4000011614177832
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011198461118}
+ 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_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012539121888}
+ - {fileID: 4000011955671538}
+ - {fileID: 4000012004090760}
+ - {fileID: 4000010891752390}
+ m_Father: {fileID: 435212}
+ m_RootOrder: 1
+--- !u!4 &4000011614540558
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013178173488}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -3.7693527, y: 3.9886844, z: 0}
+ m_LocalScale: {x: 1.0820148, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 18
+--- !u!4 &4000011628647466
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012634615528}
+ m_LocalRotation: {x: 0, y: 1, z: 0, w: 0}
+ m_LocalPosition: {x: -0.027, y: 0.044, z: 0}
+ m_LocalScale: {x: 0.2286806, y: 0.22868061, z: 0.22868061}
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010891752390}
+ m_RootOrder: 1
+--- !u!4 &4000011630338618
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013302548280}
+ m_LocalRotation: {x: -0.0000007376074, y: 0.8474676, z: 0.5308472, w: 0.0000012516975}
+ m_LocalPosition: {x: -1.3885628, y: -2.4626007, z: 1.3383062}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -64.106, y: 180.00002, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 9
+--- !u!4 &4000011659105874
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011312830942}
+ m_LocalRotation: {x: 0, y: 0, z: -0.7071068, w: 0.7071068}
+ m_LocalPosition: {x: -2.467707, y: 7.751985, z: 1.0090322}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 7
+--- !u!4 &4000011677577848
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010125470250}
+ m_LocalRotation: {x: 0.6653953, y: 0.058802404, z: -0.024229689, w: 0.7437771}
+ m_LocalPosition: {x: -2.2, y: 15.4, z: -1.4}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 83.032005, y: 27.078001, z: 20.152}
+ m_Children: []
+ m_Father: {fileID: 435212}
+ m_RootOrder: 6
+--- !u!4 &4000011714355028
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013817075810}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 2.9435065, y: 4.5735636, z: 1.3960977}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 20
+--- !u!4 &4000011922396940
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012719837778}
+ m_LocalRotation: {x: -0.0000007376074, y: 0.8474676, z: 0.5308472, w: 0.0000012516975}
+ m_LocalPosition: {x: -2.9785628, y: -2.4586008, z: 1.3403063}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -64.106, y: 180.00002, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 10
+--- !u!4 &4000011955671538
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011276699088}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.609, y: 2.66, z: -3.557}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000012888562542}
+ - {fileID: 4000014157901292}
+ - {fileID: 4000012559144368}
+ m_Father: {fileID: 4000011614177832}
+ m_RootOrder: 1
+--- !u!4 &4000012004090760
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013515845294}
+ m_LocalRotation: {x: -0, y: 0.7071068, z: -0, w: 0.7071068}
+ m_LocalPosition: {x: 2.94, y: 1.89, z: 0.22}
+ m_LocalScale: {x: 0.90585834, y: 0.90585786, z: 0.90585834}
+ m_LocalEulerAnglesHint: {x: 0, y: 90, z: 0}
+ m_Children:
+ - {fileID: 4000014012951324}
+ - {fileID: 4000012077253660}
+ - {fileID: 4000013442001320}
+ - {fileID: 4000012580619788}
+ - {fileID: 4000012093091536}
+ - {fileID: 4000012108243640}
+ m_Father: {fileID: 4000011614177832}
+ m_RootOrder: 2
+--- !u!4 &4000012030312468
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010146946158}
+ m_LocalRotation: {x: -0.7058995, y: 0.041303392, z: -0.041303407, w: 0.7058995}
+ m_LocalPosition: {x: 4.0981035, y: -0.6768697, z: -1.9972289}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -96.71999, y: -90, z: 89.99999}
+ m_Children: []
+ m_Father: {fileID: 4000012539121888}
+ m_RootOrder: 1
+--- !u!4 &4000012045354466
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014102345812}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -3.29, y: -0.35, z: 2.1583064}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 2
+--- !u!4 &4000012046599822
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014108246932}
+ m_LocalRotation: {x: -0.0000007376074, y: 0.8474676, z: 0.5308472, w: 0.0000012516975}
+ m_LocalPosition: {x: -2.2515628, y: -2.4586008, z: 1.3403063}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -64.106, y: 180.00002, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 11
+--- !u!4 &4000012064653160
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013432237298}
+ m_LocalRotation: {x: -0, y: 1, z: -0, w: 0}
+ m_LocalPosition: {x: -0.02699995, y: 0.04399991, z: -0.04}
+ m_LocalScale: {x: 0.2286806, y: 0.22868061, z: 0.22868061}
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010891752390}
+ m_RootOrder: 3
+--- !u!4 &4000012077253660
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014122436594}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.958, y: 1.535, z: 0}
+ m_LocalScale: {x: 0.22700912, y: 0.22700906, z: -0.022877604}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012004090760}
+ m_RootOrder: 1
+--- !u!4 &4000012093091536
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013773803010}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0.648, z: 0.02}
+ m_LocalScale: {x: 0.39478078, y: 0.39478007, z: 0.39478078}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012004090760}
+ m_RootOrder: 4
+--- !u!4 &4000012108243640
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012855943432}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0.648, z: 0.04}
+ m_LocalScale: {x: 0.39478102, y: 0.39478007, z: 0.39478102}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012004090760}
+ m_RootOrder: 5
+--- !u!4 &4000012196361532
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010953594216}
+ m_LocalRotation: {x: -0, y: -0.70710677, z: 0, w: 0.7071068}
+ m_LocalPosition: {x: 1.2626806, y: 3.690999, z: 0.8367808}
+ m_LocalScale: {x: 0.25372982, y: 0.25372982, z: 0.25372982}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 19
+--- !u!4 &4000012231768456
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011622339866}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -3.8674603, y: 4.004582, z: -0.021655083}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 17
+--- !u!4 &4000012233754164
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011594884080}
+ m_LocalRotation: {x: -0.000000040329496, y: 0.07458343, z: -0.000000040329496, w: 0.9972148}
+ m_LocalPosition: {x: 2.8389242, y: -1.3845618, z: 0.049746007}
+ m_LocalScale: {x: 0.22197065, y: 0.29115036, z: 0.3859635}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 15
+--- !u!4 &4000012237980576
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014281765782}
+ m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068}
+ m_LocalPosition: {x: -0, y: 0, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000014287847324}
+ - {fileID: 4000012764472670}
+ - {fileID: 4000010576262694}
+ - {fileID: 4000010425026456}
+ - {fileID: 4000013438728860}
+ - {fileID: 4000011078167740}
+ - {fileID: 4000012354376220}
+ - {fileID: 4000011659105874}
+ - {fileID: 4000012935529682}
+ - {fileID: 4000012704063600}
+ - {fileID: 4000010492345494}
+ - {fileID: 4000011129167270}
+ - {fileID: 4000013754653788}
+ - {fileID: 4000013097986344}
+ - {fileID: 4000010029973638}
+ - {fileID: 4000012233754164}
+ - {fileID: 4000010047729092}
+ - {fileID: 4000012231768456}
+ - {fileID: 4000011614540558}
+ - {fileID: 4000012196361532}
+ - {fileID: 4000011714355028}
+ - {fileID: 4000013681943790}
+ m_Father: {fileID: 435212}
+ m_RootOrder: 7
+--- !u!4 &4000012354376220
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011688780970}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.6782623, y: 2.742362, z: 0.69279313}
+ m_LocalScale: {x: 1, y: 1, z: 0.29847708}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 6
+--- !u!4 &4000012464107366
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010415090826}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -2.5985627, y: -1.4026008, z: 10.708306}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 5
+--- !u!4 &4000012539121888
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013816178062}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -1.2331033, y: 0.71586967, z: 2.207229}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000014293138790}
+ - {fileID: 4000012030312468}
+ - {fileID: 4000010291076408}
+ - {fileID: 4000013401072800}
+ - {fileID: 4000013832547920}
+ - {fileID: 4000012810113660}
+ - {fileID: 4000012630177780}
+ - {fileID: 4000013191455990}
+ m_Father: {fileID: 4000011614177832}
+ m_RootOrder: 0
+--- !u!4 &4000012559144368
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011486089040}
+ m_LocalRotation: {x: -0, y: 1, z: -0, w: 0}
+ m_LocalPosition: {x: 0, y: 0, z: -0.04}
+ m_LocalScale: {x: 0.281217, y: 0.281217, z: 0.281217}
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000011955671538}
+ m_RootOrder: 2
+--- !u!4 &4000012580619788
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010485167684}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0.648, z: 0}
+ m_LocalScale: {x: 0.39478055, y: 0.39478007, z: 0.39478055}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012004090760}
+ m_RootOrder: 3
+--- !u!4 &4000012630177780
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013058693036}
+ m_LocalRotation: {x: -0.55195856, y: 0.5036408, z: 0.49093542, w: 0.44796225}
+ m_LocalPosition: {x: -4.9908967, y: -0.6868697, z: -4.647229}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -98.52, y: 38.148987, z: 51.543}
+ m_Children: []
+ m_Father: {fileID: 4000012539121888}
+ m_RootOrder: 6
+--- !u!4 &4000012704063600
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011843579408}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 2.9435065, y: 4.5735636, z: 1.1725076}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 9
+--- !u!4 &4000012764472670
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013268056558}
+ m_LocalRotation: {x: 0, y: 0, z: -0.7071068, w: 0.7071068}
+ m_LocalPosition: {x: -4.389441, y: 3.7607286, z: 0.1564154}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 1
+--- !u!4 &4000012810113660
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011099076474}
+ m_LocalRotation: {x: -0.52835286, y: 0.52835155, z: 0.4699396, w: 0.46994123}
+ m_LocalPosition: {x: 0.10210323, y: -0.40586966, z: -5.5772285}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -96.71999, y: 0, z: 89.99999}
+ m_Children: []
+ m_Father: {fileID: 4000012539121888}
+ m_RootOrder: 5
+--- !u!4 &4000012846049046
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011252938350}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.82, y: -1.2526007, z: 5.01}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 1
+--- !u!4 &4000012888562542
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013520536666}
+ m_LocalRotation: {x: 0, y: 1, z: 0, w: 0}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0.281217, y: 0.281217, z: 0.281217}
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000011955671538}
+ m_RootOrder: 0
+--- !u!4 &4000012935529682
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010605808140}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.20755066, y: 0.17706023, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 8
+--- !u!4 &4000013019655500
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013645264410}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -2.21, y: 1.32, z: 1.12}
+ m_LocalScale: {x: 1.3295741, y: 1.3295741, z: 1.3295741}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 435212}
+ m_RootOrder: 0
+--- !u!4 &4000013097986344
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013186571738}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -6.226415, y: 2.3974378, z: -0.04736725}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 13
+--- !u!4 &4000013191455990
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013923381242}
+ m_LocalRotation: {x: -0.49998227, y: 0.55527467, z: 0.44470525, w: 0.49388772}
+ m_LocalPosition: {x: -5.738897, y: -0.6868697, z: -4.647229}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -99.005, y: -41.838013, z: 132.163}
+ m_Children: []
+ m_Father: {fileID: 4000012539121888}
+ m_RootOrder: 7
+--- !u!4 &4000013214802910
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010475912638}
+ m_LocalRotation: {x: -0.44566882, y: 0.5489802, z: 0.44566882, w: 0.5489803}
+ m_LocalPosition: {x: 0.6814368, y: -2.6926007, z: 3.6883063}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -78.116005, y: 90.00001, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 8
+--- !u!4 &4000013401072800
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010046552142}
+ m_LocalRotation: {x: -0.52835286, y: 0.52835155, z: 0.4699396, w: 0.46994123}
+ m_LocalPosition: {x: 1.9901032, y: -0.40586966, z: -5.5772285}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -96.71999, y: 0, z: 89.99999}
+ m_Children: []
+ m_Father: {fileID: 4000012539121888}
+ m_RootOrder: 3
+--- !u!4 &4000013438728860
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010626101604}
+ m_LocalRotation: {x: -0, y: 0, z: 1, w: -0.0000000754979}
+ m_LocalPosition: {x: -5.626948, y: -0.11233742, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 4
+--- !u!4 &4000013442001320
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011695197228}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -0.454, y: -0.44, z: 0}
+ m_LocalScale: {x: 0.40662444, y: 0.40662345, z: 0.40662444}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012004090760}
+ m_RootOrder: 2
+--- !u!4 &4000013669961912
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012685686296}
+ m_LocalRotation: {x: -0.0000006070159, y: 0.76628894, z: 0.6424962, w: 0.0000013199799}
+ m_LocalPosition: {x: -8.888563, y: -2.5826006, z: 2.3283062}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -79.93301, y: 180.00002, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 12
+--- !u!4 &4000013681943790
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013644106482}
+ m_LocalRotation: {x: 0, y: 0, z: 0.7071068, w: 0.7071067}
+ m_LocalPosition: {x: 3.3935146, y: 1.9325957, z: 0.7248947}
+ m_LocalScale: {x: 1.203175, y: 1.203175, z: 1.203175}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 21
+--- !u!4 &4000013754653788
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013780333780}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 2.9435065, y: 4.5735636, z: 1.4158145}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 12
+--- !u!4 &4000013832547920
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011261928328}
+ m_LocalRotation: {x: -0.52835286, y: 0.52835155, z: 0.4699396, w: 0.46994123}
+ m_LocalPosition: {x: 1.0741032, y: -0.40586966, z: -5.5772285}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -96.71999, y: 0, z: 89.99999}
+ m_Children: []
+ m_Father: {fileID: 4000012539121888}
+ m_RootOrder: 4
+--- !u!4 &4000014012951324
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012348350740}
+ m_LocalRotation: {x: 0, y: 0, z: 0.3420201, w: 0.9396927}
+ m_LocalPosition: {x: -0.881, y: 0.6, z: 0}
+ m_LocalScale: {x: 0.5944462, y: 0.5944461, z: 0.5944464}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 40}
+ m_Children: []
+ m_Father: {fileID: 4000012004090760}
+ m_RootOrder: 0
+--- !u!4 &4000014125242754
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011809260392}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 1.9985628, y: 2.7126007, z: -4.7483063}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 422670}
+ - {fileID: 4000012846049046}
+ - {fileID: 4000012045354466}
+ - {fileID: 4000010067323152}
+ - {fileID: 415776}
+ - {fileID: 4000012464107366}
+ - {fileID: 4000010238770772}
+ - {fileID: 4000010935427204}
+ - {fileID: 4000013214802910}
+ - {fileID: 4000011630338618}
+ - {fileID: 4000011922396940}
+ - {fileID: 4000012046599822}
+ - {fileID: 4000013669961912}
+ - {fileID: 4000014281430012}
+ - {fileID: 435254}
+ - {fileID: 4000011596016840}
+ m_Father: {fileID: 435212}
+ m_RootOrder: 5
+--- !u!4 &4000014157901292
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013691320274}
+ m_LocalRotation: {x: -0, y: 1, z: -0, w: 0}
+ m_LocalPosition: {x: 0, y: 0, z: -0.02}
+ m_LocalScale: {x: 0.281217, y: 0.281217, z: 0.281217}
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000011955671538}
+ m_RootOrder: 1
+--- !u!4 &4000014281430012
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012074687576}
+ m_LocalRotation: {x: -0.0000006070159, y: 0.76628894, z: 0.6424962, w: 0.0000013199799}
+ m_LocalPosition: {x: -8.248563, y: -2.5826006, z: 2.3283062}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -79.93301, y: 180.00002, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000014125242754}
+ m_RootOrder: 13
+--- !u!4 &4000014287847324
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011096530410}
+ m_LocalRotation: {x: 0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 2.9435065, y: 4.5735636, z: 1.4158145}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000012237980576}
+ m_RootOrder: 0
+--- !u!4 &4000014293138790
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012683253398}
+ m_LocalRotation: {x: -0.7058995, y: 0.041303392, z: -0.041303407, w: 0.7058995}
+ m_LocalPosition: {x: 4.0981035, y: -0.6768697, z: -0.8402289}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_LocalEulerAnglesHint: {x: -96.71999, y: -90, z: 89.99999}
+ m_Children: []
+ m_Father: {fileID: 4000012539121888}
+ m_RootOrder: 0
+--- !u!23 &23000010056796580
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013178173488}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: f557a0a59fc40df4fae274e5c219b457, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000010449179924
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012727677572}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 5b59a3babc1a0264f9a031cd36d8eec4, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000010493624610
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011312830942}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 46e414f0c99a5a84ba321fc49d6fb413, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000010534055926
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012173416270}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: b4c492d80ced0be4ca2633f2554f1297, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000010540651908
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011328732106}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 5a415daf63f1338469954975350b0c9c, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000010970424880
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013817075810}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: c663c1ef3240d9b419354431013f17fe, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011299334142
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012213709070}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: bdb6658887a0cff41bb401d598c25c5c, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011626949388
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011688780970}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 05230aa6fed8282418e8584cd0ab0906, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011655469706
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013186571738}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: c663c1ef3240d9b419354431013f17fe, type: 2}
+ - {fileID: 2100000, guid: 05230aa6fed8282418e8584cd0ab0906, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011670661526
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013780333780}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: c663c1ef3240d9b419354431013f17fe, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000011689112538
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013268056558}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 18b73e95c08e7624d88d2200187d9cb3, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000012171102452
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010953594216}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 46e414f0c99a5a84ba321fc49d6fb413, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000012214955340
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011843579408}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 05230aa6fed8282418e8584cd0ab0906, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000012227905276
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010605808140}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 6f66348a4070a4c4fb04de32986786c1, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000012351462676
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013644106482}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: bb6df24b93c940a4da548a5cd5049cfd, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000012697939786
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010626101604}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: b7f824ae9841e4e4db6cd79704c517b2, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000012861499642
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011096530410}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: c663c1ef3240d9b419354431013f17fe, type: 2}
+ - {fileID: 2100000, guid: e510d81a6cef85c46bf8fcf18f5a2beb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013235040610
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012173431702}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: e3642bc2b1be7f34fbe8086b1060ba8c, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013488180032
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011594884080}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 0cf2c3124f46fb042bc649fc9d4b232f, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013490147584
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011952199748}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 1bc37cd6e59f7d043b4f6da0dbd4ab28, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013624666864
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013333872850}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 3bfa74688e01fc041924a6c5670775d2, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000013981064722
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012622077540}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: f139448bb1015924f89f0d6a390f2a1b, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!23 &23000014288123806
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011622339866}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: 268ea185a9855d647be0c7af6b9c4bef, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+--- !u!33 &33000010133323040
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011843579408}
+ m_Mesh: {fileID: 4300080, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000010144621872
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011594884080}
+ m_Mesh: {fileID: 4300102, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000010162576780
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012622077540}
+ m_Mesh: {fileID: 4300074, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000010539951220
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013186571738}
+ m_Mesh: {fileID: 4300094, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000010639850776
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011096530410}
+ m_Mesh: {fileID: 4300082, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000010670518646
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010626101604}
+ m_Mesh: {fileID: 4300086, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000011648420448
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013817075810}
+ m_Mesh: {fileID: 4300078, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000011714590666
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011328732106}
+ m_Mesh: {fileID: 4300076, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000011719690136
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013644106482}
+ m_Mesh: {fileID: 4300070, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000011850403582
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011952199748}
+ m_Mesh: {fileID: 4300000, guid: 7f436a69c8da2e64383bee548359ab14, type: 3}
+--- !u!33 &33000012215071842
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011688780970}
+ m_Mesh: {fileID: 4300100, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000012281281388
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012213709070}
+ m_Mesh: {fileID: 4300090, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000012732715708
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012173431702}
+ m_Mesh: {fileID: 4300000, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000012795616460
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013333872850}
+ m_Mesh: {fileID: 4300088, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000013242199778
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012727677572}
+ m_Mesh: {fileID: 4300008, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000013296829410
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011622339866}
+ m_Mesh: {fileID: 4300072, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000013327596580
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011312830942}
+ m_Mesh: {fileID: 4300092, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000013376533918
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010605808140}
+ m_Mesh: {fileID: 4300012, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000013823183120
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012173416270}
+ m_Mesh: {fileID: 4300084, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000013935132160
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013178173488}
+ m_Mesh: {fileID: 4300002, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000013940794080
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013268056558}
+ m_Mesh: {fileID: 4300014, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000014039276564
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013780333780}
+ m_Mesh: {fileID: 4300096, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!33 &33000014210218708
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010953594216}
+ m_Mesh: {fileID: 4300098, guid: 6544875a22773ee408686dd0c78d9c17, type: 3}
+--- !u!95 &95000010337126304
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011276699088}
+ m_Enabled: 1
+ m_Avatar: {fileID: 0}
+ m_Controller: {fileID: 9100000, guid: b09b731655eaf0b4f8ef1cbc550f118b, type: 2}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!95 &95000011516940026
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011376953296}
+ m_Enabled: 1
+ m_Avatar: {fileID: 0}
+ m_Controller: {fileID: 9100000, guid: 6ca591a0a69af17479851be4d3528e1d, type: 2}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!95 &95000014137061562
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013515845294}
+ m_Enabled: 1
+ m_Avatar: {fileID: 0}
+ m_Controller: {fileID: 9100000, guid: 20628f9b3e1cbd64a9816e3a913f10ac, type: 2}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!108 &108000010402418588
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011252938350}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.20588237, g: 0.7371199, b: 1, a: 1}
+ m_Intensity: 2.5
+ m_Range: 5.1554036
+ m_SpotAngle: 80.520966
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 2
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000010484819618
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014102345812}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.20588237, g: 0.7371199, b: 1, a: 1}
+ m_Intensity: 3
+ m_Range: 4.3323107
+ m_SpotAngle: 80.520966
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 2
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000010661912292
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012685686296}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 0
+ m_Color: {r: 0.20588237, g: 0.7371199, b: 1, a: 1}
+ m_Intensity: 2.5
+ m_Range: 7.6
+ m_SpotAngle: 26.037142
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000010888785628
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010475912638}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 0
+ m_Color: {r: 0.20588237, g: 0.7371199, b: 1, a: 1}
+ m_Intensity: 2.5
+ m_Range: 3.39
+ m_SpotAngle: 78.9
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000011939573250
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012074687576}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 0
+ m_Color: {r: 0.20588237, g: 0.7371199, b: 1, a: 1}
+ m_Intensity: 2.5
+ m_Range: 7.6
+ m_SpotAngle: 27.736952
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000012421057008
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013646874202}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 0
+ m_Color: {r: 0.20588237, g: 0.7371199, b: 1, a: 1}
+ m_Intensity: 2.5
+ m_Range: 3.39
+ m_SpotAngle: 78.9
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000012698787654
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011669537508}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.7665673, g: 0.69031143, b: 0.8235294, a: 1}
+ m_Intensity: 3
+ m_Range: 4.470769
+ m_SpotAngle: 80.520966
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 2
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 5
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000013177713852
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013569805330}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 0.20588237, g: 0.7371199, b: 1, a: 1}
+ m_Intensity: 2.5
+ m_Range: 2.1380796
+ m_SpotAngle: 80.520966
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 2
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000013698478822
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014108246932}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 0
+ m_Color: {r: 0.20588237, g: 0.7371199, b: 1, a: 1}
+ m_Intensity: 2.5
+ m_Range: 2.84
+ m_SpotAngle: 93.1
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000013800406592
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010415090826}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 2
+ m_Color: {r: 1, g: 0.8182556, b: 0.58823526, a: 1}
+ m_Intensity: 2.5
+ m_Range: 4.1580606
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 2
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000013963697740
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013302548280}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 0
+ m_Color: {r: 0.20588237, g: 0.7371199, b: 1, a: 1}
+ m_Intensity: 2.5
+ m_Range: 2.84
+ m_SpotAngle: 93.1
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000013995331880
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010125470250}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 0
+ m_Color: {r: 0.58131486, g: 0.7333253, b: 0.8235294, a: 1}
+ m_Intensity: 2
+ m_Range: 37.691425
+ m_SpotAngle: 41.53693
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 2
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.03
+ m_NormalBias: 0.12
+ m_NearPlane: 0.1
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 256
+ m_Lightmapping: 4
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000014128069300
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012719837778}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 0
+ m_Color: {r: 0.20588237, g: 0.7371199, b: 1, a: 1}
+ m_Intensity: 2.5
+ m_Range: 2.84
+ m_SpotAngle: 93.1
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!108 &108000014219185086
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012884834512}
+ m_Enabled: 1
+ serializedVersion: 7
+ m_Type: 0
+ m_Color: {r: 0.20588237, g: 0.7371199, b: 1, a: 1}
+ m_Intensity: 2.5
+ m_Range: 3.39
+ m_SpotAngle: 78.9
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!198 &198000010910003636
+ParticleSystem:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010046552142}
+ serializedVersion: 4
+ lengthInSec: 20
+ startDelay:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ speed: 1
+ looping: 1
+ prewarm: 1
+ playOnAwake: 1
+ moveWithTransform: 1
+ autoRandomSeed: 0
+ scalingMode: 1
+ randomSeed: 43
+ InitialModule:
+ serializedVersion: 2
+ enabled: 1
+ startLifetime:
+ scalar: 15
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSpeed:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startColor:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 0
+ startSize:
+ scalar: 0.05
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.19999999
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startSizeY:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeZ:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationX:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationY:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotation:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ randomizeRotationDirection: 0
+ gravityModifier: 0
+ maxNumParticles: 1000
+ size3D: 0
+ rotation3D: 0
+ ShapeModule:
+ serializedVersion: 2
+ enabled: 1
+ type: 5
+ radius: 0.11393595
+ angle: 30.40026
+ length: 5
+ boxX: 0.116283596
+ boxY: 0.20962322
+ boxZ: 0.05589184
+ arc: 360
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ randomDirection: 0
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 2
+ m_Type: 0
+ rate:
+ scalar: 2
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ cnt0: 30
+ cnt1: 30
+ cnt2: 30
+ cnt3: 30
+ cntmax0: 30
+ cntmax1: 30
+ cntmax2: 30
+ cntmax3: 30
+ time0: 0
+ time1: 0
+ time2: 0
+ time3: 0
+ m_BurstCount: 0
+ SizeModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 16777215
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 1107296256
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 5590
+ atime2: 37972
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ UVModule:
+ enabled: 0
+ frameOverTime:
+ scalar: 0.9999
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ startFrame:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ tilesX: 1
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 1
+ uvChannelMask: -1
+ randomRow: 1
+ VelocityModule:
+ enabled: 1
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ y:
+ scalar: 0.02
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ z:
+ scalar: 0.1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ ForceModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ magnitude:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_Bounce:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_EnergyLossOnCollision:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ enabled: 0
+ subEmitterBirth: {fileID: 0}
+ subEmitterBirth1: {fileID: 0}
+ subEmitterCollision: {fileID: 0}
+ subEmitterCollision1: {fileID: 0}
+ subEmitterDeath: {fileID: 0}
+ subEmitterDeath1: {fileID: 0}
+--- !u!198 &198000011113365884
+ParticleSystem:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011261928328}
+ serializedVersion: 4
+ lengthInSec: 20
+ startDelay:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ speed: 1
+ looping: 1
+ prewarm: 1
+ playOnAwake: 1
+ moveWithTransform: 1
+ autoRandomSeed: 0
+ scalingMode: 1
+ randomSeed: 42
+ InitialModule:
+ serializedVersion: 2
+ enabled: 1
+ startLifetime:
+ scalar: 15
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSpeed:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startColor:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 0
+ startSize:
+ scalar: 0.05
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.19999999
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startSizeY:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeZ:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationX:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationY:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotation:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ randomizeRotationDirection: 0
+ gravityModifier: 0
+ maxNumParticles: 1000
+ size3D: 0
+ rotation3D: 0
+ ShapeModule:
+ serializedVersion: 2
+ enabled: 1
+ type: 5
+ radius: 0.11393595
+ angle: 30.40026
+ length: 5
+ boxX: 0.116283596
+ boxY: 0.20962322
+ boxZ: 0.05589184
+ arc: 360
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ randomDirection: 0
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 2
+ m_Type: 0
+ rate:
+ scalar: 2
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ cnt0: 30
+ cnt1: 30
+ cnt2: 30
+ cnt3: 30
+ cntmax0: 30
+ cntmax1: 30
+ cntmax2: 30
+ cntmax3: 30
+ time0: 0
+ time1: 0
+ time2: 0
+ time3: 0
+ m_BurstCount: 0
+ SizeModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 16777215
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 1107296256
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 5590
+ atime2: 37972
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ UVModule:
+ enabled: 0
+ frameOverTime:
+ scalar: 0.9999
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ startFrame:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ tilesX: 1
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 1
+ uvChannelMask: -1
+ randomRow: 1
+ VelocityModule:
+ enabled: 1
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ y:
+ scalar: 0.02
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ z:
+ scalar: 0.1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ ForceModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ magnitude:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_Bounce:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_EnergyLossOnCollision:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ enabled: 0
+ subEmitterBirth: {fileID: 0}
+ subEmitterBirth1: {fileID: 0}
+ subEmitterCollision: {fileID: 0}
+ subEmitterCollision1: {fileID: 0}
+ subEmitterDeath: {fileID: 0}
+ subEmitterDeath1: {fileID: 0}
+--- !u!198 &198000011151760134
+ParticleSystem:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011099076474}
+ serializedVersion: 4
+ lengthInSec: 20
+ startDelay:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ speed: 1
+ looping: 1
+ prewarm: 1
+ playOnAwake: 1
+ moveWithTransform: 1
+ autoRandomSeed: 0
+ scalingMode: 1
+ randomSeed: 41
+ InitialModule:
+ serializedVersion: 2
+ enabled: 1
+ startLifetime:
+ scalar: 15
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSpeed:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startColor:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 0
+ startSize:
+ scalar: 0.05
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.19999999
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startSizeY:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeZ:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationX:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationY:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotation:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ randomizeRotationDirection: 0
+ gravityModifier: 0
+ maxNumParticles: 1000
+ size3D: 0
+ rotation3D: 0
+ ShapeModule:
+ serializedVersion: 2
+ enabled: 1
+ type: 5
+ radius: 0.11393595
+ angle: 30.40026
+ length: 5
+ boxX: 0.116283596
+ boxY: 0.20962322
+ boxZ: 0.05589184
+ arc: 360
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ randomDirection: 0
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 2
+ m_Type: 0
+ rate:
+ scalar: 2
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ cnt0: 30
+ cnt1: 30
+ cnt2: 30
+ cnt3: 30
+ cntmax0: 30
+ cntmax1: 30
+ cntmax2: 30
+ cntmax3: 30
+ time0: 0
+ time1: 0
+ time2: 0
+ time3: 0
+ m_BurstCount: 0
+ SizeModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 16777215
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 1107296256
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 5590
+ atime2: 37972
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ UVModule:
+ enabled: 0
+ frameOverTime:
+ scalar: 0.9999
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ startFrame:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ tilesX: 1
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 1
+ uvChannelMask: -1
+ randomRow: 1
+ VelocityModule:
+ enabled: 1
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ y:
+ scalar: 0.02
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ z:
+ scalar: 0.1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ ForceModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ magnitude:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_Bounce:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_EnergyLossOnCollision:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ enabled: 0
+ subEmitterBirth: {fileID: 0}
+ subEmitterBirth1: {fileID: 0}
+ subEmitterCollision: {fileID: 0}
+ subEmitterCollision1: {fileID: 0}
+ subEmitterDeath: {fileID: 0}
+ subEmitterDeath1: {fileID: 0}
+--- !u!198 &198000011550407260
+ParticleSystem:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013923381242}
+ serializedVersion: 4
+ lengthInSec: 20
+ startDelay:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ speed: 1
+ looping: 1
+ prewarm: 1
+ playOnAwake: 1
+ moveWithTransform: 1
+ autoRandomSeed: 0
+ scalingMode: 1
+ randomSeed: 5
+ InitialModule:
+ serializedVersion: 2
+ enabled: 1
+ startLifetime:
+ scalar: 15
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSpeed:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startColor:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 0
+ startSize:
+ scalar: 0.05
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.19999999
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startSizeY:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeZ:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationX:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationY:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotation:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ randomizeRotationDirection: 0
+ gravityModifier: 0
+ maxNumParticles: 1000
+ size3D: 0
+ rotation3D: 0
+ ShapeModule:
+ serializedVersion: 2
+ enabled: 1
+ type: 5
+ radius: 0.11393595
+ angle: 30.40026
+ length: 5
+ boxX: 0.116283596
+ boxY: 0.10498896
+ boxZ: 0.05589184
+ arc: 360
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ randomDirection: 0
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 2
+ m_Type: 0
+ rate:
+ scalar: 2
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ cnt0: 30
+ cnt1: 30
+ cnt2: 30
+ cnt3: 30
+ cntmax0: 30
+ cntmax1: 30
+ cntmax2: 30
+ cntmax3: 30
+ time0: 0
+ time1: 0
+ time2: 0
+ time3: 0
+ m_BurstCount: 0
+ SizeModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 16777215
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 1107296256
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 5590
+ atime2: 37972
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ UVModule:
+ enabled: 0
+ frameOverTime:
+ scalar: 0.9999
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ startFrame:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ tilesX: 1
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 1
+ uvChannelMask: -1
+ randomRow: 1
+ VelocityModule:
+ enabled: 1
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ y:
+ scalar: 0.01
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ z:
+ scalar: 0.1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ ForceModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ magnitude:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_Bounce:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_EnergyLossOnCollision:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ enabled: 0
+ subEmitterBirth: {fileID: 0}
+ subEmitterBirth1: {fileID: 0}
+ subEmitterCollision: {fileID: 0}
+ subEmitterCollision1: {fileID: 0}
+ subEmitterDeath: {fileID: 0}
+ subEmitterDeath1: {fileID: 0}
+--- !u!198 &198000012217866800
+ParticleSystem:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012683253398}
+ serializedVersion: 4
+ lengthInSec: 20
+ startDelay:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ speed: 1
+ looping: 1
+ prewarm: 1
+ playOnAwake: 1
+ moveWithTransform: 1
+ autoRandomSeed: 0
+ scalingMode: 1
+ randomSeed: 1111306840
+ InitialModule:
+ serializedVersion: 2
+ enabled: 1
+ startLifetime:
+ scalar: 15
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSpeed:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startColor:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 0
+ startSize:
+ scalar: 0.05
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.19999999
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startSizeY:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeZ:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationX:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationY:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotation:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ randomizeRotationDirection: 0
+ gravityModifier: 0
+ maxNumParticles: 1000
+ size3D: 0
+ rotation3D: 0
+ ShapeModule:
+ serializedVersion: 2
+ enabled: 1
+ type: 5
+ radius: 0.11393595
+ angle: 30.40026
+ length: 5
+ boxX: 0.116283596
+ boxY: 0.20962322
+ boxZ: 0.05589184
+ arc: 360
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ randomDirection: 0
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 2
+ m_Type: 0
+ rate:
+ scalar: 2
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ cnt0: 30
+ cnt1: 30
+ cnt2: 30
+ cnt3: 30
+ cntmax0: 30
+ cntmax1: 30
+ cntmax2: 30
+ cntmax3: 30
+ time0: 0
+ time1: 0
+ time2: 0
+ time3: 0
+ m_BurstCount: 0
+ SizeModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 16777215
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 1107296256
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 5590
+ atime2: 37972
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ UVModule:
+ enabled: 0
+ frameOverTime:
+ scalar: 0.9999
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ startFrame:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ tilesX: 1
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 1
+ uvChannelMask: -1
+ randomRow: 1
+ VelocityModule:
+ enabled: 1
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ y:
+ scalar: 0.02
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ z:
+ scalar: 0.1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ ForceModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ magnitude:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_Bounce:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_EnergyLossOnCollision:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ enabled: 0
+ subEmitterBirth: {fileID: 0}
+ subEmitterBirth1: {fileID: 0}
+ subEmitterCollision: {fileID: 0}
+ subEmitterCollision1: {fileID: 0}
+ subEmitterDeath: {fileID: 0}
+ subEmitterDeath1: {fileID: 0}
+--- !u!198 &198000013582802492
+ParticleSystem:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013696707194}
+ serializedVersion: 4
+ lengthInSec: 20
+ startDelay:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ speed: 1
+ looping: 1
+ prewarm: 1
+ playOnAwake: 1
+ moveWithTransform: 1
+ autoRandomSeed: 0
+ scalingMode: 1
+ randomSeed: 50
+ InitialModule:
+ serializedVersion: 2
+ enabled: 1
+ startLifetime:
+ scalar: 15
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSpeed:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startColor:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 0
+ startSize:
+ scalar: 0.05
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.19999999
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startSizeY:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeZ:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationX:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationY:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotation:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ randomizeRotationDirection: 0
+ gravityModifier: 0
+ maxNumParticles: 1000
+ size3D: 0
+ rotation3D: 0
+ ShapeModule:
+ serializedVersion: 2
+ enabled: 1
+ type: 5
+ radius: 0.11393595
+ angle: 30.40026
+ length: 5
+ boxX: 0.116283596
+ boxY: 0.20962322
+ boxZ: 0.05589184
+ arc: 360
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ randomDirection: 0
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 2
+ m_Type: 0
+ rate:
+ scalar: 2
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ cnt0: 30
+ cnt1: 30
+ cnt2: 30
+ cnt3: 30
+ cntmax0: 30
+ cntmax1: 30
+ cntmax2: 30
+ cntmax3: 30
+ time0: 0
+ time1: 0
+ time2: 0
+ time3: 0
+ m_BurstCount: 0
+ SizeModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 16777215
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 1107296256
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 5590
+ atime2: 37972
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ UVModule:
+ enabled: 0
+ frameOverTime:
+ scalar: 0.9999
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ startFrame:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ tilesX: 1
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 1
+ uvChannelMask: -1
+ randomRow: 1
+ VelocityModule:
+ enabled: 1
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ y:
+ scalar: 0.02
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ z:
+ scalar: 0.1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ ForceModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ magnitude:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_Bounce:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_EnergyLossOnCollision:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ enabled: 0
+ subEmitterBirth: {fileID: 0}
+ subEmitterBirth1: {fileID: 0}
+ subEmitterCollision: {fileID: 0}
+ subEmitterCollision1: {fileID: 0}
+ subEmitterDeath: {fileID: 0}
+ subEmitterDeath1: {fileID: 0}
+--- !u!198 &198000014222411032
+ParticleSystem:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013058693036}
+ serializedVersion: 4
+ lengthInSec: 20
+ startDelay:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ speed: 1
+ looping: 1
+ prewarm: 1
+ playOnAwake: 1
+ moveWithTransform: 1
+ autoRandomSeed: 0
+ scalingMode: 1
+ randomSeed: 2
+ InitialModule:
+ serializedVersion: 2
+ enabled: 1
+ startLifetime:
+ scalar: 15
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSpeed:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startColor:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 0
+ startSize:
+ scalar: 0.05
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.19999999
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startSizeY:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeZ:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationX:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationY:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotation:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ randomizeRotationDirection: 0
+ gravityModifier: 0
+ maxNumParticles: 1000
+ size3D: 0
+ rotation3D: 0
+ ShapeModule:
+ serializedVersion: 2
+ enabled: 1
+ type: 5
+ radius: 0.11393595
+ angle: 30.40026
+ length: 5
+ boxX: 0.116283596
+ boxY: 0.11323868
+ boxZ: 0.05589184
+ arc: 360
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ randomDirection: 0
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 2
+ m_Type: 0
+ rate:
+ scalar: 2
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ cnt0: 30
+ cnt1: 30
+ cnt2: 30
+ cnt3: 30
+ cntmax0: 30
+ cntmax1: 30
+ cntmax2: 30
+ cntmax3: 30
+ time0: 0
+ time1: 0
+ time2: 0
+ time3: 0
+ m_BurstCount: 0
+ SizeModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 16777215
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 1107296256
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 5590
+ atime2: 37972
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ UVModule:
+ enabled: 0
+ frameOverTime:
+ scalar: 0.9999
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ startFrame:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ tilesX: 1
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 1
+ uvChannelMask: -1
+ randomRow: 1
+ VelocityModule:
+ enabled: 1
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ y:
+ scalar: 0.01
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ z:
+ scalar: 0.1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ ForceModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ magnitude:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_Bounce:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_EnergyLossOnCollision:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ enabled: 0
+ subEmitterBirth: {fileID: 0}
+ subEmitterBirth1: {fileID: 0}
+ subEmitterCollision: {fileID: 0}
+ subEmitterCollision1: {fileID: 0}
+ subEmitterDeath: {fileID: 0}
+ subEmitterDeath1: {fileID: 0}
+--- !u!198 &198000014277928604
+ParticleSystem:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010146946158}
+ serializedVersion: 4
+ lengthInSec: 20
+ startDelay:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ speed: 1
+ looping: 1
+ prewarm: 1
+ playOnAwake: 1
+ moveWithTransform: 1
+ autoRandomSeed: 0
+ scalingMode: 1
+ randomSeed: 40
+ InitialModule:
+ serializedVersion: 2
+ enabled: 1
+ startLifetime:
+ scalar: 15
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSpeed:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startColor:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 0
+ startSize:
+ scalar: 0.05
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.19999999
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ startSizeY:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startSizeZ:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationX:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotationY:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ startRotation:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ randomizeRotationDirection: 0
+ gravityModifier: 0
+ maxNumParticles: 1000
+ size3D: 0
+ rotation3D: 0
+ ShapeModule:
+ serializedVersion: 2
+ enabled: 1
+ type: 5
+ radius: 0.11393595
+ angle: 30.40026
+ length: 5
+ boxX: 0.116283596
+ boxY: 0.20962322
+ boxZ: 0.05589184
+ arc: 360
+ placementMode: 0
+ m_Mesh: {fileID: 0}
+ m_MeshRenderer: {fileID: 0}
+ m_SkinnedMeshRenderer: {fileID: 0}
+ m_MeshMaterialIndex: 0
+ m_MeshNormalOffset: 0
+ m_UseMeshMaterialIndex: 0
+ m_UseMeshColors: 1
+ randomDirection: 0
+ EmissionModule:
+ enabled: 1
+ serializedVersion: 2
+ m_Type: 0
+ rate:
+ scalar: 2
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ cnt0: 30
+ cnt1: 30
+ cnt2: 30
+ cnt3: 30
+ cntmax0: 30
+ cntmax1: 30
+ cntmax2: 30
+ cntmax3: 30
+ time0: 0
+ time1: 0
+ time2: 0
+ time3: 0
+ m_BurstCount: 0
+ SizeModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ RotationModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ ColorModule:
+ enabled: 1
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 16777215
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 1107296256
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 5590
+ atime2: 37972
+ atime3: 65535
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 4
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ UVModule:
+ enabled: 0
+ frameOverTime:
+ scalar: 0.9999
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ startFrame:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ tilesX: 1
+ tilesY: 1
+ animationType: 0
+ rowIndex: 0
+ cycles: 1
+ uvChannelMask: -1
+ randomRow: 1
+ VelocityModule:
+ enabled: 1
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ y:
+ scalar: 0.02
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: -1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ z:
+ scalar: 0.1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0.5
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ minMaxState: 3
+ inWorldSpace: 0
+ InheritVelocityModule:
+ enabled: 0
+ m_Mode: 0
+ m_Curve:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ ForceModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ inWorldSpace: 0
+ randomizePerFrame: 0
+ ExternalForcesModule:
+ enabled: 0
+ multiplier: 1
+ ClampVelocityModule:
+ enabled: 0
+ x:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ magnitude:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxis: 0
+ inWorldSpace: 0
+ dampen: 1
+ SizeBySpeedModule:
+ enabled: 0
+ curve:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 1
+ y:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ z:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ range: {x: 0, y: 1}
+ separateAxes: 0
+ RotationBySpeedModule:
+ enabled: 0
+ x:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ y:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ curve:
+ scalar: 0.7853982
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ separateAxes: 0
+ range: {x: 0, y: 1}
+ ColorBySpeedModule:
+ enabled: 0
+ gradient:
+ serializedVersion: 2
+ maxGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minGradient:
+ key0:
+ serializedVersion: 2
+ rgba: 4294967295
+ key1:
+ serializedVersion: 2
+ rgba: 4294967295
+ key2:
+ serializedVersion: 2
+ rgba: 0
+ key3:
+ serializedVersion: 2
+ rgba: 0
+ key4:
+ serializedVersion: 2
+ rgba: 0
+ key5:
+ serializedVersion: 2
+ rgba: 0
+ key6:
+ serializedVersion: 2
+ rgba: 0
+ key7:
+ serializedVersion: 2
+ rgba: 0
+ ctime0: 0
+ ctime1: 65535
+ ctime2: 0
+ ctime3: 0
+ ctime4: 0
+ ctime5: 0
+ ctime6: 0
+ ctime7: 0
+ atime0: 0
+ atime1: 65535
+ atime2: 0
+ atime3: 0
+ atime4: 0
+ atime5: 0
+ atime6: 0
+ atime7: 0
+ m_NumColorKeys: 2
+ m_NumAlphaKeys: 2
+ minColor: {r: 1, g: 1, b: 1, a: 1}
+ maxColor: {r: 1, g: 1, b: 1, a: 1}
+ minMaxState: 1
+ range: {x: 0, y: 1}
+ CollisionModule:
+ enabled: 0
+ serializedVersion: 3
+ type: 0
+ collisionMode: 0
+ plane0: {fileID: 0}
+ plane1: {fileID: 0}
+ plane2: {fileID: 0}
+ plane3: {fileID: 0}
+ plane4: {fileID: 0}
+ plane5: {fileID: 0}
+ m_Dampen:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_Bounce:
+ scalar: 1
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ m_EnergyLossOnCollision:
+ scalar: 0
+ maxCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minCurve:
+ serializedVersion: 2
+ m_Curve:
+ - time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ minMaxState: 0
+ minKillSpeed: 0
+ maxKillSpeed: 10000
+ radiusScale: 1
+ collidesWith:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ maxCollisionShapes: 256
+ quality: 0
+ voxelSize: 0.5
+ collisionMessages: 0
+ collidesWithDynamic: 1
+ interiorCollisions: 1
+ TriggerModule:
+ enabled: 0
+ collisionShape0: {fileID: 0}
+ collisionShape1: {fileID: 0}
+ collisionShape2: {fileID: 0}
+ collisionShape3: {fileID: 0}
+ collisionShape4: {fileID: 0}
+ collisionShape5: {fileID: 0}
+ inside: 1
+ outside: 0
+ enter: 0
+ exit: 0
+ radiusScale: 1
+ SubModule:
+ enabled: 0
+ subEmitterBirth: {fileID: 0}
+ subEmitterBirth1: {fileID: 0}
+ subEmitterCollision: {fileID: 0}
+ subEmitterCollision1: {fileID: 0}
+ subEmitterDeath: {fileID: 0}
+ subEmitterDeath1: {fileID: 0}
+--- !u!199 &199000011358676250
+ParticleSystemRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010046552142}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10301, guid: 0000000000000000f000000000000000, type: 0}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+--- !u!199 &199000011362523340
+ParticleSystemRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013696707194}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10301, guid: 0000000000000000f000000000000000, type: 0}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+--- !u!199 &199000011444216118
+ParticleSystemRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013058693036}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10301, guid: 0000000000000000f000000000000000, type: 0}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+--- !u!199 &199000012047277130
+ParticleSystemRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012683253398}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10301, guid: 0000000000000000f000000000000000, type: 0}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+--- !u!199 &199000012220485478
+ParticleSystemRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010146946158}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10301, guid: 0000000000000000f000000000000000, type: 0}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+--- !u!199 &199000012723219328
+ParticleSystemRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013923381242}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10301, guid: 0000000000000000f000000000000000, type: 0}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+--- !u!199 &199000013336362950
+ParticleSystemRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011099076474}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10301, guid: 0000000000000000f000000000000000, type: 0}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+--- !u!199 &199000013436863194
+ParticleSystemRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011261928328}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10301, guid: 0000000000000000f000000000000000, type: 0}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_RenderMode: 0
+ m_SortMode: 0
+ m_MinParticleSize: 0
+ m_MaxParticleSize: 0.5
+ m_CameraVelocityScale: 0
+ m_VelocityScale: 0
+ m_LengthScale: 2
+ m_SortingFudge: 0
+ m_NormalDirection: 1
+ m_RenderAlignment: 0
+ m_Pivot: {x: 0, y: 0, z: 0}
+ m_Mesh: {fileID: 0}
+ m_Mesh1: {fileID: 0}
+ m_Mesh2: {fileID: 0}
+ m_Mesh3: {fileID: 0}
+--- !u!212 &212000010245583474
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012634615528}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 76f6aaeeec6d36b4f884b244370f05cb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: bc4aad8b91ed0244d9a1478531141006, type: 3}
+ m_Color: {r: 0, g: 1, b: 0, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!212 &212000011016869556
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010485167684}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 76f6aaeeec6d36b4f884b244370f05cb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: df383688f53ed894e8fd0b4f14ddebb1, type: 3}
+ m_Color: {r: 0, g: 1, b: 0, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!212 &212000011086793078
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011695197228}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300006, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!212 &212000011274336604
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011486089040}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 76f6aaeeec6d36b4f884b244370f05cb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: 841e339935f4fdc4391f65004a314c0d, type: 3}
+ m_Color: {r: 1, g: 0, b: 0, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!212 &212000011382319174
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013432237298}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 76f6aaeeec6d36b4f884b244370f05cb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: bc4aad8b91ed0244d9a1478531141006, type: 3}
+ m_Color: {r: 1, g: 0, b: 0, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!212 &212000011745423518
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012855943432}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 76f6aaeeec6d36b4f884b244370f05cb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: -2
+ m_Sprite: {fileID: 21300000, guid: df383688f53ed894e8fd0b4f14ddebb1, type: 3}
+ m_Color: {r: 1, g: 0, b: 0, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!212 &212000011784662998
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012348350740}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 76f6aaeeec6d36b4f884b244370f05cb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: 716562a2f53ae4c46bcedd4b925358a9, type: 3}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!212 &212000012004630934
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013691320274}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 76f6aaeeec6d36b4f884b244370f05cb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: 841e339935f4fdc4391f65004a314c0d, type: 3}
+ m_Color: {r: 0, g: 0, b: 1, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!212 &212000012155913256
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013721061470}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 76f6aaeeec6d36b4f884b244370f05cb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: bc4aad8b91ed0244d9a1478531141006, type: 3}
+ m_Color: {r: 0, g: 0, b: 1, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!212 &212000013511776706
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013520536666}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 76f6aaeeec6d36b4f884b244370f05cb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: 841e339935f4fdc4391f65004a314c0d, type: 3}
+ m_Color: {r: 0, g: 1, b: 0, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!212 &212000013624432952
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013773803010}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 76f6aaeeec6d36b4f884b244370f05cb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: -1
+ m_Sprite: {fileID: 21300000, guid: df383688f53ed894e8fd0b4f14ddebb1, type: 3}
+ m_Color: {r: 0, g: 0, b: 1, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!212 &212000014242224562
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000014122436594}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: aadd163a1083b694cb476d64aa66c8a2, type: 3}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!220 &220000010542557762
+LightProbeGroup:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000013645264410}
+ m_Enabled: 1
+ m_SourcePositions:
+ - {x: 2.15741, y: 1.2568933, z: -0.5980698}
+ - {x: 2.15741, y: 1.2568933, z: -3.592755}
+ - {x: -4.6346126, y: 1.2568933, z: 3.3768032}
+ - {x: -1.251137, y: 1.2568933, z: -4.554278}
+ - {x: 1.1892183, y: 1.2568933, z: 3.4610312}
+ - {x: 0.31999925, y: 1.2568933, z: -3.592755}
+ - {x: -3.3106709, y: 1.2568933, z: -0.5980698}
+ - {x: 2.15741, y: 1.2568933, z: 1.1865174}
+ - {x: 0.24806562, y: 1.2568933, z: 1.1865174}
+ - {x: 0.24806562, y: 1.2568933, z: -0.5980698}
+ - {x: -1.2370458, y: 1.2568933, z: 1.1865174}
+ - {x: -1.1945269, y: 1.2568933, z: -0.5980698}
+ - {x: 2.15741, y: -0.5590906, z: -0.5980698}
+ - {x: 2.15741, y: -0.5590906, z: -3.4479434}
+ - {x: -4.6346126, y: -0.5590906, z: 3.3768032}
+ - {x: -1.251137, y: -0.5590906, z: -4.4094663}
+ - {x: 1.1892183, y: -0.5590906, z: 3.4610312}
+ - {x: 0.31999925, y: -0.035286553, z: -3.5334759}
+ - {x: -3.3106709, y: -0.059188887, z: -0.5980698}
+ - {x: 2.15741, y: -0.5590906, z: 1.1865174}
+ - {x: 0.24806562, y: -0.5590906, z: 1.1865174}
+ - {x: 0.24806562, y: -0.5590906, z: -0.5980698}
+ - {x: -1.2370458, y: -0.5590906, z: 1.1865174}
+ - {x: -1.1945269, y: -0.059188887, z: -0.5980698}
+ - {x: 2.15741, y: 1.2568933, z: -2.1448116}
+ - {x: -3.310191, y: 1.2568933, z: -2.1873312}
+ - {x: 0.31999925, y: 1.2568933, z: -2.1448116}
+ - {x: -1.1606185, y: 1.2568933, z: -2.2018626}
+ - {x: 2.15741, y: -0.5590906, z: -2}
+ - {x: -3.310191, y: -0.5590906, z: -2.0425196}
+ - {x: 0.31999925, y: -0.035286553, z: -2.0855324}
+ - {x: -1.1606185, y: -0.5590906, z: -2.057051}
+ - {x: -1.2055448, y: 1.2568933, z: -3.3910346}
+ - {x: -1.2055448, y: -0.5590906, z: -3.246223}
+ - {x: 4.168351, y: 1.2568933, z: -0.5980698}
+ - {x: 4.168351, y: 1.2568933, z: -3.592755}
+ - {x: 4.168351, y: 1.2568933, z: 1.1865174}
+ - {x: 4.168351, y: -0.5590906, z: -0.5980698}
+ - {x: 4.168351, y: -0.5590906, z: -3.4479434}
+ - {x: 4.168351, y: -0.5590906, z: 1.1865174}
+ - {x: 4.168351, y: 1.2568933, z: -2.1448116}
+ - {x: 4.168351, y: -0.5590906, z: -2}
+ - {x: -4.6346126, y: 1.2568933, z: 1.1865174}
+ - {x: -4.6346126, y: -0.5590906, z: 1.1865174}
+ - {x: -3.3531897, y: 1.2568933, z: 3.3768032}
+ - {x: -3.3531897, y: -0.5590906, z: 3.3768032}
+ - {x: -3.3531897, y: 1.2568933, z: 1.1865174}
+ - {x: -3.3531897, y: -0.5590906, z: 1.1865174}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/SecurityRoom.prefab.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/SecurityRoom.prefab.meta
new file mode 100644
index 00000000..51082fdb
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/SecurityRoom.prefab.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 8902cc0c7910bcd4ab3ccacb67555809
+timeCreated: 1460729009
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/SmallLogoHoloGram.prefab b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/SmallLogoHoloGram.prefab
new file mode 100644
index 00000000..c8ed4f44
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/SmallLogoHoloGram.prefab
@@ -0,0 +1,277 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1001 &100100000
+Prefab:
+ m_ObjectHideFlags: 1
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications: []
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 0}
+ m_RootGameObject: {fileID: 1000010657690548}
+ m_IsPrefabParent: 1
+--- !u!1 &1000010325843784
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010913954590}
+ - 212: {fileID: 212000010205688078}
+ m_Layer: 0
+ m_Name: SecurityRoomCompanyLogo (1)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000010657690548
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000014121961444}
+ m_Layer: 0
+ m_Name: SmallLogoHoloGram
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000011254319824
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010215344140}
+ - 95: {fileID: 95000012863378112}
+ m_Layer: 0
+ m_Name: smallLogo
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012402570782
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000010035302880}
+ - 212: {fileID: 212000013591881124}
+ m_Layer: 0
+ m_Name: SecurityRoomCompanyLogo
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1000012495859482
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 4
+ m_Component:
+ - 4: {fileID: 4000012866354494}
+ - 212: {fileID: 212000014150734952}
+ m_Layer: 0
+ m_Name: SecurityRoomCompanyLogo (2)
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &4000010035302880
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012402570782}
+ m_LocalRotation: {x: 0, y: 1, z: 0, w: 0}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0.09276307, y: 0.09276311, z: 0.09276311}
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010215344140}
+ m_RootOrder: 0
+--- !u!4 &4000010215344140
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011254319824}
+ 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_LocalEulerAnglesHint: {x: 0, y: 102, z: 0}
+ m_Children:
+ - {fileID: 4000010035302880}
+ - {fileID: 4000010913954590}
+ - {fileID: 4000012866354494}
+ m_Father: {fileID: 4000014121961444}
+ m_RootOrder: 0
+--- !u!4 &4000010913954590
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010325843784}
+ m_LocalRotation: {x: -0, y: 1, z: -0, w: 0}
+ m_LocalPosition: {x: 0, y: 0, z: 0.05}
+ m_LocalScale: {x: 0.09276307, y: 0.09276311, z: 0.09276311}
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010215344140}
+ m_RootOrder: 1
+--- !u!4 &4000012866354494
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012495859482}
+ m_LocalRotation: {x: -0, y: 1, z: -0, w: 0}
+ m_LocalPosition: {x: 0, y: 0, z: -0.05}
+ m_LocalScale: {x: 0.09276307, y: 0.09276311, z: 0.09276311}
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+ m_Children: []
+ m_Father: {fileID: 4000010215344140}
+ m_RootOrder: 2
+--- !u!4 &4000014121961444
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010657690548}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -5.741, y: 0.586, z: -0.12}
+ m_LocalScale: {x: 0.5133499, y: 0.51334983, z: 0.51334983}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 4000010215344140}
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+--- !u!95 &95000012863378112
+Animator:
+ serializedVersion: 3
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000011254319824}
+ m_Enabled: 1
+ m_Avatar: {fileID: 0}
+ m_Controller: {fileID: 9100000, guid: 653a4ac3a30b7f84bb224cc644ed4a50, type: 2}
+ m_CullingMode: 0
+ m_UpdateMode: 0
+ m_ApplyRootMotion: 0
+ m_LinearVelocityBlending: 0
+ m_WarningMessage:
+ m_HasTransformHierarchy: 1
+ m_AllowConstantClipSamplingOptimization: 1
+--- !u!212 &212000010205688078
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000010325843784}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 76f6aaeeec6d36b4f884b244370f05cb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: 841e339935f4fdc4391f65004a314c0d, type: 3}
+ m_Color: {r: 0, g: 1, b: 0, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!212 &212000013591881124
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012402570782}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 76f6aaeeec6d36b4f884b244370f05cb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: 841e339935f4fdc4391f65004a314c0d, type: 3}
+ m_Color: {r: 0, g: 0, b: 1, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+--- !u!212 &212000014150734952
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1000012495859482}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 76f6aaeeec6d36b4f884b244370f05cb, type: 2}
+ m_SubsetIndices:
+ 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_SelectedWireframeHidden: 1
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: 841e339935f4fdc4391f65004a314c0d, type: 3}
+ m_Color: {r: 1, g: 0, b: 0, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/SmallLogoHoloGram.prefab.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/SmallLogoHoloGram.prefab.meta
new file mode 100644
index 00000000..4befca5c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Prefabs/SmallLogoHoloGram.prefab.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 70555508c70cbfb48bc821f173fabb76
+timeCreated: 1473418858
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Resources.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Resources.meta
new file mode 100644
index 00000000..911a5374
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Resources.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 16c4dc86b62cb5e47adb3a924bda5860
+folderAsset: yes
+timeCreated: 1467802232
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Resources/AllConditions.asset b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Resources/AllConditions.asset
new file mode 100644
index 00000000..44e2f35e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Resources/AllConditions.asset
@@ -0,0 +1,149 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a54f0fecf5593d84985bdc0adae0cbbc, type: 3}
+ m_Name: AllConditions
+ m_EditorClassIdentifier:
+ conditions:
+ - {fileID: 114000010722667090}
+ - {fileID: 114000011350643396}
+ - {fileID: 114000012888731470}
+ - {fileID: 114000010533473472}
+ - {fileID: 114000014140399352}
+ - {fileID: 114000012976324630}
+ - {fileID: 114000011711448014}
+ - {fileID: 114000011606995890}
+ - {fileID: 114000012991011084}
+--- !u!114 &114000010533473472
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name: PickedUpCoffee
+ m_EditorClassIdentifier:
+ description: PickedUpCoffee
+ satisfied: 0
+ hash: 1911255643
+--- !u!114 &114000010722667090
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name: PickedUpCoin
+ m_EditorClassIdentifier:
+ description: PickedUpCoin
+ satisfied: 0
+ hash: 514706441
+--- !u!114 &114000011350643396
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name: HasCoin
+ m_EditorClassIdentifier:
+ description: HasCoin
+ satisfied: 0
+ hash: 1129137663
+--- !u!114 &114000011606995890
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name: HasGlasses
+ m_EditorClassIdentifier:
+ description: HasGlasses
+ satisfied: 0
+ hash: -1554804606
+--- !u!114 &114000011711448014
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name: PickedUpGlasses
+ m_EditorClassIdentifier:
+ description: PickedUpGlasses
+ satisfied: 0
+ hash: 1481727687
+--- !u!114 &114000012888731470
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name: PickedUpFish
+ m_EditorClassIdentifier:
+ description: PickedUpFish
+ satisfied: 0
+ hash: 1957699431
+--- !u!114 &114000012976324630
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name: BirdDisturbed
+ m_EditorClassIdentifier:
+ description: BirdDisturbed
+ satisfied: 0
+ hash: -235457156
+--- !u!114 &114000012991011084
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name: LasersDeactivated
+ m_EditorClassIdentifier:
+ description: LasersDeactivated
+ satisfied: 0
+ hash: -2015270594
+--- !u!114 &114000014140399352
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name: HasCoffee
+ m_EditorClassIdentifier:
+ description: HasCoffee
+ satisfied: 0
+ hash: -1486269948
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Resources/AllConditions.asset.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Resources/AllConditions.asset.meta
new file mode 100644
index 00000000..91f716d0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Resources/AllConditions.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: fd02464d008c790478d9826aba7c7847
+timeCreated: 1468925721
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData.meta
new file mode 100644
index 00000000..da9d3faf
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 872d230e1d19ad345b8a6c542f6837ec
+folderAsset: yes
+timeCreated: 1469182439
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/MarketSaveData.asset b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/MarketSaveData.asset
new file mode 100644
index 00000000..0c0102e2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/MarketSaveData.asset
@@ -0,0 +1,13 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b25a41fcf26f82144b0eb57e0e4d8c69, type: 3}
+ m_Name: MarketSaveData
+ m_EditorClassIdentifier:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/MarketSaveData.asset.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/MarketSaveData.asset.meta
new file mode 100644
index 00000000..d83cc324
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/MarketSaveData.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 48d6089c54f7ceb42b1f63276fdc2247
+timeCreated: 1469182470
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/PlayerSaveData.asset b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/PlayerSaveData.asset
new file mode 100644
index 00000000..33a97078
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/PlayerSaveData.asset
@@ -0,0 +1,13 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b25a41fcf26f82144b0eb57e0e4d8c69, type: 3}
+ m_Name: PlayerSaveData
+ m_EditorClassIdentifier:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/PlayerSaveData.asset.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/PlayerSaveData.asset.meta
new file mode 100644
index 00000000..e7c808c5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/PlayerSaveData.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 55d72825bf06cf44e9cbc1b37812cc6f
+timeCreated: 1469182417
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/SecurityRoomSaveData.asset b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/SecurityRoomSaveData.asset
new file mode 100644
index 00000000..efca05f6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/SecurityRoomSaveData.asset
@@ -0,0 +1,13 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b25a41fcf26f82144b0eb57e0e4d8c69, type: 3}
+ m_Name: SecurityRoomSaveData
+ m_EditorClassIdentifier:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/SecurityRoomSaveData.asset.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/SecurityRoomSaveData.asset.meta
new file mode 100644
index 00000000..df163439
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/SaveData/SecurityRoomSaveData.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 270c372e873657242ab00b2f602b468f
+timeCreated: 1469182509
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes.meta
new file mode 100644
index 00000000..3abd70ba
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 489916fdd017b594ab044653aacb8ce3
+folderAsset: yes
+timeCreated: 1456484751
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market.meta
new file mode 100644
index 00000000..9c4f7044
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 45f93522e47e0b549bcb25044e2928ce
+folderAsset: yes
+timeCreated: 1456937745
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market.unity b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market.unity
new file mode 100644
index 00000000..86f21951
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market.unity
@@ -0,0 +1,4238 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!29 &1
+OcclusionCullingSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_OcclusionBakeSettings:
+ smallestOccluder: 5
+ smallestHole: 0.25
+ backfaceThreshold: 100
+ m_SceneGUID: 00000000000000000000000000000000
+ m_OcclusionCullingData: {fileID: 0}
+--- !u!104 &2
+RenderSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 8
+ m_Fog: 1
+ m_FogColor: {r: 0.6911765, g: 0.5127043, b: 0.35067043, a: 1}
+ m_FogMode: 3
+ m_FogDensity: 0.05
+ m_LinearFogStart: 0
+ m_LinearFogEnd: 300
+ m_AmbientSkyColor: {r: 0.26909, g: 0.20242216, b: 0.5294118, a: 1}
+ m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
+ m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
+ m_AmbientIntensity: 1
+ m_AmbientMode: 3
+ m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
+ m_SkyboxMaterial: {fileID: 0}
+ m_HaloStrength: 0.5
+ m_FlareStrength: 1
+ m_FlareFadeSpeed: 3
+ m_HaloTexture: {fileID: 0}
+ m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
+ m_DefaultReflectionMode: 0
+ m_DefaultReflectionResolution: 128
+ m_ReflectionBounces: 1
+ m_ReflectionIntensity: 1
+ m_CustomReflection: {fileID: 0}
+ m_Sun: {fileID: 0}
+ m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
+--- !u!157 &3
+LightmapSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 11
+ m_GIWorkflowMode: 1
+ m_GISettings:
+ serializedVersion: 2
+ m_BounceScale: 1
+ m_IndirectOutputScale: 1
+ m_AlbedoBoost: 6
+ m_TemporalCoherenceThreshold: 1
+ m_EnvironmentLightingMode: 0
+ m_EnableBakedLightmaps: 1
+ m_EnableRealtimeLightmaps: 0
+ m_LightmapEditorSettings:
+ serializedVersion: 9
+ m_Resolution: 2
+ m_BakeResolution: 30
+ m_TextureWidth: 4096
+ m_TextureHeight: 1024
+ m_AO: 1
+ m_AOMaxDistance: 1
+ m_CompAOExponent: 2
+ m_CompAOExponentDirect: 1
+ m_Padding: 4
+ m_LightmapParameters: {fileID: 111300000, guid: 960df0195dd11f948ab2c803eda026c2,
+ type: 2}
+ m_LightmapsBakeMode: 0
+ m_TextureCompression: 1
+ m_FinalGather: 0
+ m_FinalGatherFiltering: 1
+ m_FinalGatherRayCount: 1024
+ m_ReflectionCompression: 2
+ m_MixedBakeMode: 1
+ m_BakeBackend: 0
+ m_PVRSampling: 1
+ m_PVRDirectSampleCount: 32
+ m_PVRSampleCount: 500
+ m_PVRBounces: 2
+ m_PVRFiltering: 0
+ m_PVRFilteringMode: 1
+ m_PVRCulling: 1
+ m_PVRFilteringGaussRadiusDirect: 1
+ m_PVRFilteringGaussRadiusIndirect: 5
+ m_PVRFilteringGaussRadiusAO: 2
+ m_PVRFilteringAtrousColorSigma: 1
+ m_PVRFilteringAtrousNormalSigma: 1
+ m_PVRFilteringAtrousPositionSigma: 1
+ m_LightingDataAsset: {fileID: 112000002, guid: a2ec3523b59843b4ebd5bc714a10ec50,
+ type: 2}
+ m_UseShadowmask: 1
+--- !u!196 &4
+NavMeshSettings:
+ serializedVersion: 2
+ m_ObjectHideFlags: 0
+ m_BuildSettings:
+ serializedVersion: 2
+ agentTypeID: 0
+ agentRadius: 0.5
+ agentHeight: 2
+ agentSlope: 35
+ agentClimb: 0.2
+ ledgeDropHeight: 0
+ maxJumpAcrossDistance: 0
+ minRegionArea: 2
+ manualCellSize: 1
+ cellSize: 0.07
+ manualTileSize: 0
+ tileSize: 256
+ accuratePlacement: 1
+ m_NavMeshData: {fileID: 23800000, guid: 98b9c93af4ba5f24d823a1c6f098d0d9, type: 2}
+--- !u!114 &11543072
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: Fresh coffee! Only one coin!
+ textColor: {r: 0.5686275, g: 0.78431374, b: 0.5686275, a: 1}
+ delay: 0
+--- !u!114 &30378265
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ gameObject: {fileID: 1876984106}
+ activeState: 0
+--- !u!114 &52357461
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 1397227339}
+ audioClip: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ delay: 1
+--- !u!114 &70116245
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: 0bcb52a0dc8524b40a4a97ccc1e4cef6, type: 3}
+ delay: 0
+--- !u!1 &75465418
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 75465420}
+ - component: {fileID: 75465419}
+ m_Layer: 0
+ m_Name: NeedsCoffeeReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &75465419
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 75465418}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 1656089792}
+ - {fileID: 800296404}
+ - {fileID: 640844049}
+ - {fileID: 1700138997}
+ - {fileID: 1735739341}
+ - {fileID: 1296599059}
+ - {fileID: 541883755}
+ - {fileID: 1170795811}
+ - {fileID: 2040164790}
+ - {fileID: 1293534931}
+--- !u!4 &75465420
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 75465418}
+ 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: 1305990739}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &96160939
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.size
+ value: 6
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: itemReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_ItemReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: gameObjectReactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: usedInteractableReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_UsedInteractableReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 7.4
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 5.4
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 8
+ objectReference: {fileID: 0}
+ - target: {fileID: 121190, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: GlassesInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: OldScripts.Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.data[0].m_Interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.data[0].m_UsedState
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_Description
+ value: Used
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.data[0].m_Animator
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.data[0].m_AnimatorTrigger
+ value: LowTake
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[0].m_AudioSource
+ value:
+ objectReference: {fileID: 803947869}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[1].m_AudioSource
+ value:
+ objectReference: {fileID: 1397227339}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_Message
+ value: These glasses look useful. Get it? Look?
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[0].m_AudioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 7578097ef1d3e4ad3825f32b32564cde, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[1].m_AudioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[1].m_Delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_ItemReactions.Array.data[0].m_PickedUpItem
+ value:
+ objectReference: {fileID: 11400000, guid: 8c7a41f17e0ac4f4c8ca78dea29835dd,
+ type: 2}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_ItemReactions.Array.data[0].m_Delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_UsedInteractableReactions.Array.data[0].m_Interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.data[0].m_GameObjectToDeactivate
+ value:
+ objectReference: {fileID: 1876984106}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.data[0].m_Delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.data[1].m_GameObjectToDeactivate
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.data[1].m_Delay
+ value: 1.1
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 0.9
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 0.9
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 0.25
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: -0.00000016292068
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_TextManager
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].description
+ value: Used
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.data[0].usedState
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.data[0].interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.data[0].animator
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.data[0].animatorTrigger
+ value: LowTake
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[0].audioSource
+ value:
+ objectReference: {fileID: 803947869}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[1].audioSource
+ value:
+ objectReference: {fileID: 1397227339}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[0].audioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 7578097ef1d3e4ad3825f32b32564cde, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[1].audioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[1].delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: gameObjectReactions.Array.data[0].gameObjectToDeactivate
+ value:
+ objectReference: {fileID: 1876984106}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: gameObjectReactions.Array.data[1].gameObjectToDeactivate
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: gameObjectReactions.Array.data[1].delay
+ value: 1.1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: gameObjectReactions.Array.data[0].delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.textManager
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: itemReactions.Array.data[0].pickedUpItem
+ value:
+ objectReference: {fileID: 11400000, guid: 8c7a41f17e0ac4f4c8ca78dea29835dd,
+ type: 2}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: usedInteractableReactions.Array.data[0].interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: itemReactions.Array.data[0].delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.message
+ value: These glasses look useful. Get it? Look?
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 5
+ objectReference: {fileID: 0}
+ - target: {fileID: 194222, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: FishVendorInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 389734730}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 96160940}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 3.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: -2.4
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 3
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 1.4
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 0.75
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 0.45
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0]
+ value:
+ objectReference: {fileID: 428456828}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalEulerAnglesHint.y
+ value: 180
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[0]
+ value:
+ objectReference: {fileID: 1881880787}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[1]
+ value:
+ objectReference: {fileID: 1659892942}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[2]
+ value:
+ objectReference: {fileID: 583920926}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[3]
+ value:
+ objectReference: {fileID: 260797430}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[4]
+ value:
+ objectReference: {fileID: 325068502}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[5]
+ value:
+ objectReference: {fileID: 1095430322}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: interactionLocation
+ value:
+ objectReference: {fileID: 96160943}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: defaultReaction
+ value:
+ objectReference: {fileID: 96160942}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.z
+ value: 0.3
+ objectReference: {fileID: 0}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &96160940 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 96160939}
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+--- !u!4 &96160941 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 96160939}
+--- !u!114 &96160942 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 96160939}
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+--- !u!4 &96160943 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 96160939}
+--- !u!114 &197519449
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: 4f2c0eb89fe584a2f81b5b903cfb81f4, type: 3}
+ delay: 3
+--- !u!95 &227346009 stripped
+Animator:
+ m_PrefabParentObject: {fileID: 9551194, guid: 3651ed03b8d254a478d9747447d9f2f6,
+ type: 2}
+ m_PrefabInternal: {fileID: 1202301407}
+--- !u!4 &227346010 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 479050, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ m_PrefabInternal: {fileID: 1202301407}
+--- !u!114 &254849842
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 1397227339}
+ audioClip: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ delay: 1
+--- !u!114 &260797430
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 1397227339}
+ audioClip: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ delay: 1
+--- !u!1001 &279477568
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_RootOrder
+ value: 6
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_AnchoredPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_AnchoredPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_SizeDelta.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_SizeDelta.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_AnchorMin.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_AnchorMin.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_AnchorMax.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_AnchorMax.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_Pivot.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_Pivot.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 11469028, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_Text
+ value: Example
+ objectReference: {fileID: 0}
+ - target: {fileID: 11466148, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: text
+ value:
+ objectReference: {fileID: 279477569}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &279477569 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11469028, guid: bd26dac15723bf047941895f28e6c242,
+ type: 2}
+ m_PrefabInternal: {fileID: 279477568}
+ m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+--- !u!114 &281339374
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 1644305135}
+ trigger: EquipGlasses
+--- !u!114 &320778503
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ gameObject: {fileID: 1924647221}
+ activeState: 0
+--- !u!114 &324065090
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 10
+ gameObject: {fileID: 1613677337}
+ activeState: 0
+--- !u!114 &325068502
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: I doubt this is a clue...
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!114 &377204854
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000010722667090, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!114 &389734730 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 114000014294072012, guid: ab5f05eb414b65f4f9c285f785c1dfad,
+ type: 2}
+ m_PrefabInternal: {fileID: 1644305133}
+ m_Script: {fileID: 11500000, guid: 29103d8075f789345997a0adb6a7520e, type: 3}
+--- !u!114 &428456828
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: AlreadyGotFish
+ requiredConditions:
+ - {fileID: 1999503990}
+ reactionCollection: {fileID: 773705719}
+--- !u!114 &493698176
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000011350643396, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!114 &541883755
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000010533473472, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!1 &555312889
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 555312891}
+ - component: {fileID: 555312890}
+ m_Layer: 0
+ m_Name: BirdGoneReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &555312890
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 555312889}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 70116245}
+ - {fileID: 566268937}
+--- !u!4 &555312891
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 555312889}
+ 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: 2035261307}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &566268937
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: The bird has flown away!
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!114 &583920926
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: 754e60097902b4234b185dc059451525, type: 3}
+ delay: 0
+--- !u!114 &588962459
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: NoCoin
+ requiredConditions:
+ - {fileID: 1396242976}
+ reactionCollection: {fileID: 1986364766}
+--- !u!114 &608498811
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 1876984103}
+ trigger: FlyAway
+--- !u!114 &640844049
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2d482a9551d8b074097fdb7beded4043, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ item: {fileID: 11400000, guid: d24caee896ca7114aafaf607d9760c9d, type: 2}
+--- !u!114 &646764614
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 24dc6b17b276d6948903ade30dec71eb, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ sceneName: SecurityRoom
+ startingPointInLoadedScene: DoorToMarket
+ playerSaveData: {fileID: 11400000, guid: 55d72825bf06cf44e9cbc1b37812cc6f, type: 2}
+--- !u!114 &660451171
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: The bird knocked those glasses down.
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 3
+--- !u!1 &677457168
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 677457175}
+ - component: {fileID: 677457174}
+ - component: {fileID: 677457173}
+ - component: {fileID: 677457172}
+ - component: {fileID: 677457170}
+ - component: {fileID: 677457169}
+ - component: {fileID: 677457171}
+ - component: {fileID: 677457176}
+ m_Layer: 0
+ m_Name: Savers
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &677457169
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 677457168}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: c013938965f4c6249aa76a79195cfb6b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ uniqueIdentifier: GlassesRotation
+ saveData: {fileID: 11400000, guid: 48d6089c54f7ceb42b1f63276fdc2247, type: 2}
+ transformToSave: {fileID: 227346010}
+--- !u!114 &677457170
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 677457168}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 522d88fae112fd742a72ea5e77c67c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ uniqueIdentifier: GlassesPosition
+ saveData: {fileID: 11400000, guid: 48d6089c54f7ceb42b1f63276fdc2247, type: 2}
+ transformToSave: {fileID: 227346010}
+--- !u!114 &677457171
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 677457168}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 8f29b6054d4e0304f8b32fb4625cff19, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ uniqueIdentifier: BirdActivity
+ saveData: {fileID: 11400000, guid: 48d6089c54f7ceb42b1f63276fdc2247, type: 2}
+ gameObjectToSave: {fileID: 1876984107}
+--- !u!114 &677457172
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 677457168}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 8f29b6054d4e0304f8b32fb4625cff19, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ uniqueIdentifier: CoinGameObject
+ saveData: {fileID: 11400000, guid: 48d6089c54f7ceb42b1f63276fdc2247, type: 2}
+ gameObjectToSave: {fileID: 1924647221}
+--- !u!114 &677457173
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 677457168}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 8f29b6054d4e0304f8b32fb4625cff19, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ uniqueIdentifier: GlassesGameObject
+ saveData: {fileID: 11400000, guid: 48d6089c54f7ceb42b1f63276fdc2247, type: 2}
+ gameObjectToSave: {fileID: 1876984106}
+--- !u!114 &677457174
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 677457168}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 035502cb6f1b1c743acae234a3dae20f, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ uniqueIdentifier: BirdGlassesCutsceneAnimator
+ saveData: {fileID: 11400000, guid: 48d6089c54f7ceb42b1f63276fdc2247, type: 2}
+ behaviourToSave: {fileID: 1876984103}
+--- !u!4 &677457175
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 677457168}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 4.18822, y: -0.99231565, z: -2.7457807}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 0}
+ m_RootOrder: 10
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &677457176
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 677457168}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 8f29b6054d4e0304f8b32fb4625cff19, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ uniqueIdentifier: GlassesInteractableGameObject
+ saveData: {fileID: 11400000, guid: 48d6089c54f7ceb42b1f63276fdc2247, type: 2}
+ gameObjectToSave: {fileID: 1613677337}
+--- !u!114 &707417586
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: e1947d026bceb4d6fbfd792153287c04, type: 3}
+ delay: 0
+--- !u!114 &749286455
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000012976324630, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!1 &773705718
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 773705720}
+ - component: {fileID: 773705719}
+ m_Layer: 0
+ m_Name: HasFishReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &773705719
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 773705718}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 1960283415}
+ - {fileID: 1770216813}
+--- !u!4 &773705720
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 773705718}
+ 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: 96160941}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &800296404
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 227346009}
+ trigger: MakeCoffee
+--- !u!114 &802948111
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ gameObject: {fileID: 0}
+ activeState: 0
+--- !u!82 &803947869 stripped
+AudioSource:
+ m_PrefabParentObject: {fileID: 8277418, guid: 0036c73aed31ec14fbbf45853c79fc14,
+ type: 2}
+ m_PrefabInternal: {fileID: 1936555036}
+--- !u!114 &848497505
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: BirdDisturbed
+ satisfied: 1
+ hash: -235457156
+--- !u!114 &938190891
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: HasCoin
+ satisfied: 1
+ hash: 1129137663
+--- !u!114 &938471497
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: 9fecb71afa4ed49c89d01dffd5c600a7, type: 3}
+ delay: 0
+--- !u!114 &964840749
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 6
+ gameObject: {fileID: 1876984107}
+ activeState: 0
+--- !u!114 &1014166486
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: NeedsCoffee
+ requiredConditions:
+ - {fileID: 938190891}
+ - {fileID: 1120959720}
+ reactionCollection: {fileID: 75465419}
+--- !u!114 &1037460390
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 1644305135}
+ trigger: LowTake
+--- !u!114 &1095430322
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000012888731470, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!114 &1101621493
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 1397227339}
+ audioClip: {fileID: 8300000, guid: e52b46c6d5c1a1f4c925e2a0dc209330, type: 3}
+ delay: 0
+--- !u!114 &1120959720
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: PickedUpCoffee
+ satisfied: 0
+ hash: 1911255643
+--- !u!114 &1170795811
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000014140399352, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!114 &1192066371
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b804958e1981f9544989d65e32719692, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ item: {fileID: 11400000, guid: d24caee896ca7114aafaf607d9760c9d, type: 2}
+--- !u!1001 &1202301407
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 405900, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 405900, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 405900, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 405900, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 405900, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 405900, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 405900, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 405900, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: m_RootOrder
+ value: 8
+ objectReference: {fileID: 0}
+ - target: {fileID: 11457004, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: playerPosition
+ value:
+ objectReference: {fileID: 1644305134}
+ - target: {fileID: 11471296, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 389734730}
+ - target: {fileID: 454474, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 12
+ objectReference: {fileID: 0}
+ - target: {fileID: 454474, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: -5
+ objectReference: {fileID: 0}
+ - target: {fileID: 453648, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 8
+ objectReference: {fileID: 0}
+ - target: {fileID: 11457004, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: offset.y
+ value: 1.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000010619207620, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ propertyPath: m_IsActive
+ value: 0
+ objectReference: {fileID: 0}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &1209751514
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: PickedUpGlasses
+ satisfied: 1
+ hash: 1481727687
+--- !u!1001 &1209869595
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: behaviourReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: gameObjectReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_BehaviourReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: usedInteractableReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_UsedInteractableReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 9.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 9.08
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 7
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 1.1
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 121190, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: BirdInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_TextManager
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_UsedInteractableReactions.Array.data[0].m_Interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.data[0].m_Animator
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.data[1].m_Animator
+ value:
+ objectReference: {fileID: 1876984103}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.data[1].m_AnimatorTrigger
+ value: FlyAway
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.data[0].m_AnimatorTrigger
+ value: AttemptTake
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.data[1].m_Delay
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[0].m_AudioSource
+ value:
+ objectReference: {fileID: 1397227339}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[1].m_AudioSource
+ value:
+ objectReference: {fileID: 803947869}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[0].m_AudioClip
+ value:
+ objectReference: {fileID: 8300000, guid: e52b46c6d5c1a1f4c925e2a0dc209330, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[0].m_Delay
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[1].m_Delay
+ value: 3.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[1].m_AudioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 4f2c0eb89fe584a2f81b5b903cfb81f4, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_BehaviourReactions.Array.data[0].m_BehaviourToDisable
+ value:
+ objectReference: {fileID: 1876984103}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_BehaviourReactions.Array.data[0].m_Delay
+ value: 5
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.data[0].m_GameObjectToDeactivate
+ value:
+ objectReference: {fileID: 1876984107}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.data[0].m_Delay
+ value: 4
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_Message
+ value: Uh oh. That bird knocked the sign down!
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_Delay
+ value: 3
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_Description
+ value: Used
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.data[0].m_Interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.data[0].m_UsedState
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_Reaction
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: OldScripts.Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0.7071068
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 0.7071067
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: -1.3
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.data[0].m_GameObjectToActivate
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].description
+ value: Used
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].reaction
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.data[0].interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.data[0].usedState
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.data[0].animator
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.data[1].animator
+ value:
+ objectReference: {fileID: 1876984103}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.data[0].animatorTrigger
+ value: AttemptTake
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.data[1].animatorTrigger
+ value: FlyAway
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.data[1].delay
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[0].audioSource
+ value:
+ objectReference: {fileID: 1397227339}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[1].audioSource
+ value:
+ objectReference: {fileID: 803947869}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[0].audioClip
+ value:
+ objectReference: {fileID: 8300000, guid: e52b46c6d5c1a1f4c925e2a0dc209330, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[1].audioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 4f2c0eb89fe584a2f81b5b903cfb81f4, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[1].delay
+ value: 3.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.textManager
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.message
+ value: Uh oh. That bird knocked the sign down!
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: usedInteractableReactions.Array.data[0].interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: gameObjectReactions.Array.data[0].gameObjectToActivate
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: gameObjectReactions.Array.data[0].gameObjectToDeactivate
+ value:
+ objectReference: {fileID: 1876984107}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: gameObjectReactions.Array.data[0].delay
+ value: 4
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: behaviourReactions.Array.data[0].behaviourToDisable
+ value:
+ objectReference: {fileID: 1876984103}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.delay
+ value: 3
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: behaviourReactions.Array.data[0].delay
+ value: 5
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 4
+ objectReference: {fileID: 0}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[0]
+ value:
+ objectReference: {fileID: 1427608015}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[1]
+ value:
+ objectReference: {fileID: 646764614}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[2]
+ value:
+ objectReference: {fileID: 802948111}
+ - target: {fileID: 194222, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: DoorToSecurityRoomInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: -4.43
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: -2.8
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 389734730}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 1209869596}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 1.2
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalEulerAnglesHint.y
+ value: 180
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0.04
+ objectReference: {fileID: 0}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &1209869596 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 1209869595}
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+--- !u!1001 &1250726206
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.size
+ value: 8
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: itemReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_ItemReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: gameObjectReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: usedInteractableReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_UsedInteractableReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_GameObjectConditions.Array.size
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 0.45
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: -1.75
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 4
+ objectReference: {fileID: 0}
+ - target: {fileID: 121190, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: CoinInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 0.3
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 0.3
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 0.3
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: OldScripts.Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_TextManager
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_Message
+ value: Oh a coin!
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[0].m_AudioSource
+ value:
+ objectReference: {fileID: 803947869}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[1].m_AudioSource
+ value:
+ objectReference: {fileID: 1397227339}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[0].m_AudioClip
+ value:
+ objectReference: {fileID: 8300000, guid: e1947d026bceb4d6fbfd792153287c04, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[1].m_AudioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[1].m_Delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.data[0].m_Animator
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.data[0].m_AnimatorTrigger
+ value: MedTake
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0.8
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: -0.00000016292068
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_ItemReactions.Array.data[0].m_PickedUpItem
+ value:
+ objectReference: {fileID: 11400000, guid: 175bdae8fff0fff42b463f856fa6fe63,
+ type: 2}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_Reaction
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_GameObjectConditions.Array.data[0].m_GameObject
+ value:
+ objectReference: {fileID: 1924647221}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_Description
+ value: Used
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.data[0].m_Interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_UsedInteractableReactions.Array.data[0].m_Interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_ItemReactions.Array.data[0].m_Delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.data[0].m_UsedState
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.data[0].m_GameObjectToDeactivate
+ value:
+ objectReference: {fileID: 1924647221}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.data[0].m_Delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.data[0].interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.data[0].usedState
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].reaction
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.data[0].animator
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.data[0].animatorTrigger
+ value: MedTake
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[0].audioSource
+ value:
+ objectReference: {fileID: 803947869}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[1].audioSource
+ value:
+ objectReference: {fileID: 1397227339}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[0].audioClip
+ value:
+ objectReference: {fileID: 8300000, guid: e1947d026bceb4d6fbfd792153287c04, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[1].audioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[1].delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: gameObjectReactions.Array.data[0].gameObjectToDeactivate
+ value:
+ objectReference: {fileID: 1924647221}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: gameObjectReactions.Array.data[0].gameObjectToActivate
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: gameObjectReactions.Array.data[0].delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: itemReactions.Array.data[0].pickedUpItem
+ value:
+ objectReference: {fileID: 11400000, guid: 175bdae8fff0fff42b463f856fa6fe63,
+ type: 2}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: itemReactions.Array.data[0].delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.textManager
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.message
+ value: Oh a coin!
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: usedInteractableReactions.Array.data[0].interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].description
+ value: Used
+ objectReference: {fileID: 0}
+ - target: {fileID: 194222, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: CoinInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 3
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 0.43
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: -1.67
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 0.2
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 0.2
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 0.2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 389734730}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 1250726207}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0]
+ value:
+ objectReference: {fileID: 588962459}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalEulerAnglesHint.y
+ value: 180
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0.7
+ objectReference: {fileID: 0}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[0]
+ value:
+ objectReference: {fileID: 1732159088}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[1]
+ value:
+ objectReference: {fileID: 320778503}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[2]
+ value:
+ objectReference: {fileID: 1192066371}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[3]
+ value:
+ objectReference: {fileID: 707417586}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[4]
+ value:
+ objectReference: {fileID: 52357461}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[5]
+ value:
+ objectReference: {fileID: 1521942419}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[6]
+ value:
+ objectReference: {fileID: 377204854}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[7]
+ value:
+ objectReference: {fileID: 493698176}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[8]
+ value:
+ objectReference: {fileID: 493698176}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: defaultReaction
+ value:
+ objectReference: {fileID: 1250726209}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: interactionLocation
+ value:
+ objectReference: {fileID: 1250726210}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: -0.2
+ objectReference: {fileID: 0}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &1250726207 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 1250726206}
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+--- !u!4 &1250726208 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 1250726206}
+--- !u!114 &1250726209 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 1250726206}
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+--- !u!4 &1250726210 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 1250726206}
+--- !u!114 &1293534931
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000011350643396, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 0
+--- !u!114 &1296599059
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 1397227339}
+ audioClip: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ delay: 1
+--- !u!1 &1296787228
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1296787229}
+ - component: {fileID: 1296787230}
+ m_Layer: 0
+ m_Name: DoorToSecurityRoom
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1296787229
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1296787228}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: -4.43, y: 0.04, z: -1.6}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 0}
+ m_RootOrder: 9
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1296787230
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1296787228}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2a1a9400b6609fb4aba06d78b45ca76c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ startingPointName: DoorToSecurityRoom
+--- !u!1001 &1305990737
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: itemReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_ItemReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.size
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: usedInteractableReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_UsedInteractableReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_GameObjectConditions.Array.size
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 3.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: -2.2
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 5
+ objectReference: {fileID: 0}
+ - target: {fileID: 121190, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: FishVendorInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 3
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: OldScripts.Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_TextManager
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_Message
+ value: I doubt this is a clue...
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[0].m_AudioSource
+ value:
+ objectReference: {fileID: 803947869}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[1].m_AudioSource
+ value:
+ objectReference: {fileID: 1397227339}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[0].m_AudioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 754e60097902b4234b185dc059451525, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[1].m_AudioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[1].m_Delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.data[0].m_Animator
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AnimationReactions.Array.data[0].m_AnimatorTrigger
+ value: HighTake
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 1.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: -0.00000016292068
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_ItemReactions.Array.data[0].m_PickedUpItem
+ value:
+ objectReference: {fileID: 11400000, guid: 8e7e52183c1983e40a77c2dcb05a5549,
+ type: 2}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_Reaction
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_GameObjectConditions.Array.data[0].m_GameObject
+ value:
+ objectReference: {fileID: 1924647221}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_Description
+ value: Used
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.data[0].m_Interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_UsedInteractableReactions.Array.data[0].m_Interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_ItemReactions.Array.data[0].m_Delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.data[0].m_UsedState
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.data[0].m_GameObjectToDeactivate
+ value:
+ objectReference: {fileID: 1924647221}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_GameObjectReactions.Array.data[0].m_Delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.data[0].interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.data[0].usedState
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].reaction
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.data[0].animator
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: animationReactions.Array.data[0].animatorTrigger
+ value: HighTake
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[0].audioSource
+ value:
+ objectReference: {fileID: 803947869}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[1].audioSource
+ value:
+ objectReference: {fileID: 1397227339}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[0].audioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 754e60097902b4234b185dc059451525, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[1].audioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 154cdb10bf6550c4e9ff4038ff2a660d, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[1].delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: itemReactions.Array.data[0].pickedUpItem
+ value:
+ objectReference: {fileID: 11400000, guid: 8e7e52183c1983e40a77c2dcb05a5549,
+ type: 2}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.textManager
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.message
+ value: I doubt this is a clue...
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: itemReactions.Array.data[0].delay
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: usedInteractableReactions.Array.data[0].interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].description
+ value: Used
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 8.6
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: -1
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0.92387956
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 0.38268343
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalEulerAnglesHint.y
+ value: 135
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 389734730}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 1305990738}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0]
+ value:
+ objectReference: {fileID: 1014166486}
+ - target: {fileID: 194222, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: CoffeeBotInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: -0.1
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: -2.56
+ objectReference: {fileID: 0}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[0]
+ value:
+ objectReference: {fileID: 938471497}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[1]
+ value:
+ objectReference: {fileID: 11543072}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: interactionLocation
+ value:
+ objectReference: {fileID: 1305990741}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: defaultReaction
+ value:
+ objectReference: {fileID: 1305990740}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: -0
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: -0
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: -0
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalEulerAnglesHint.y
+ value: 180
+ objectReference: {fileID: 0}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &1305990738 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 1305990737}
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+--- !u!4 &1305990739 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 1305990737}
+--- !u!114 &1305990740 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 1305990737}
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+--- !u!4 &1305990741 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 1305990737}
+--- !u!114 &1309590729
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 1644305135}
+ trigger: AttemptTake
+--- !u!114 &1315678196
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: No more coins...
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!114 &1329830446
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b804958e1981f9544989d65e32719692, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ item: {fileID: 11400000, guid: f0776cdb931cbdb4b83c5035ebf49463, type: 2}
+--- !u!114 &1351843567
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 4
+ gameObject: {fileID: 1644305137}
+ activeState: 1
+--- !u!114 &1396242976
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: PickedUpCoin
+ satisfied: 1
+ hash: 514706441
+--- !u!82 &1397227339 stripped
+AudioSource:
+ m_PrefabParentObject: {fileID: 8299186, guid: 0036c73aed31ec14fbbf45853c79fc14,
+ type: 2}
+ m_PrefabInternal: {fileID: 1936555036}
+--- !u!114 &1427608015
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 1397227339}
+ audioClip: {fileID: 8300000, guid: ebdaadc1993914f48991efbeda5ed08e, type: 3}
+ delay: 0
+--- !u!114 &1475114109
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: Oh some glasses!
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!114 &1521942419
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: Oh! A coin!
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!114 &1601437374
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0.9
+ gameObject: {fileID: 1644305136}
+ activeState: 1
+--- !u!114 &1612421081
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000011711448014, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!1001 &1613677335
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.size
+ value: 13
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: -4.4
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: -2.8
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 9
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 0.25
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 2.2
+ objectReference: {fileID: 0}
+ - target: {fileID: 121190, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: DoorToSecurityRoomInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: OldScripts.Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_SceneReaction.m_SceneToLoad
+ value: SecurityRoom
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_SceneReaction.m_PlayerLocationPersistentData
+ value:
+ objectReference: {fileID: 11400000, guid: e722056d60857334b91c42f012612d3f,
+ type: 2}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_SceneReaction.m_PlayerPosInLoadedScene.x
+ value: -0.7
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_SceneReaction.m_PlayerPosInLoadedScene.z
+ value: 3.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_SceneReaction.m_PlayerRotInLoadedScene.y
+ value: 180
+ objectReference: {fileID: 0}
+ - target: {fileID: 435730, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: -0.00000016292068
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 1.1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_SceneReaction.m_LoadAScene
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_SceneReaction.m_PlayerLocationPersistentDataObject
+ value:
+ objectReference: {fileID: 11400000, guid: 39b9e1d18e747cc45a716e2f2e5819bf,
+ type: 2}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[0].m_AudioSource
+ value:
+ objectReference: {fileID: 1397227339}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[0].m_AudioClip
+ value:
+ objectReference: {fileID: 8300000, guid: ebdaadc1993914f48991efbeda5ed08e, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[0].audioSource
+ value:
+ objectReference: {fileID: 1397227339}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[0].audioClip
+ value:
+ objectReference: {fileID: 8300000, guid: ebdaadc1993914f48991efbeda5ed08e, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: sceneReaction.sceneToLoad
+ value: SecurityRoom
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: sceneReaction.playerLocationPersistentDataObject
+ value:
+ objectReference: {fileID: 11400000, guid: 39b9e1d18e747cc45a716e2f2e5819bf,
+ type: 2}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: sceneReaction.playerPosInLoadedScene.x
+ value: -0.7
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: sceneReaction.playerPosInLoadedScene.z
+ value: 3.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: sceneReaction.playerRotInLoadedScene.y
+ value: 180
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: sceneReaction.loadAScene
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 194222, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: GlassesInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 7.4
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 5.4
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 0.25
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 0.9
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 0.9
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalEulerAnglesHint.y
+ value: 180
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 389734730}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 1613677336}
+ - target: {fileID: 194222, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_IsActive
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[0]
+ value:
+ objectReference: {fileID: 1037460390}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[1]
+ value:
+ objectReference: {fileID: 30378265}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[2]
+ value:
+ objectReference: {fileID: 1329830446}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[3]
+ value:
+ objectReference: {fileID: 2067285672}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[4]
+ value:
+ objectReference: {fileID: 1612421081}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[5]
+ value:
+ objectReference: {fileID: 2101764231}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[6]
+ value:
+ objectReference: {fileID: 1475114109}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[7]
+ value:
+ objectReference: {fileID: 254849842}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0]
+ value:
+ objectReference: {fileID: 1813401409}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: interactionLocation
+ value:
+ objectReference: {fileID: 1613677339}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: defaultReaction
+ value:
+ objectReference: {fileID: 1613677338}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[8]
+ value:
+ objectReference: {fileID: 324065090}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[9]
+ value:
+ objectReference: {fileID: 281339374}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[10]
+ value:
+ objectReference: {fileID: 1601437374}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[11]
+ value:
+ objectReference: {fileID: 1679247436}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[12]
+ value:
+ objectReference: {fileID: 1351843567}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[13]
+ value:
+ objectReference: {fileID: 1351843567}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &1613677336 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 1613677335}
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+--- !u!1 &1613677337 stripped
+GameObject:
+ m_PrefabParentObject: {fileID: 194222, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 1613677335}
+--- !u!114 &1613677338 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 1613677335}
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+--- !u!4 &1613677339 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 1613677335}
+--- !u!114 &1627481134
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 37928671becf1a4429a8088d8bec2f34, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 5
+ behaviour: {fileID: 1876984103}
+ enabledState: 0
+--- !u!1001 &1644305133
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 5.369
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 2.447
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_RootOrder
+ value: 11
+ objectReference: {fileID: 0}
+ - target: {fileID: 23000013847003688, guid: ab5f05eb414b65f4f9c285f785c1dfad,
+ type: 2}
+ propertyPath: m_Materials.Array.data[0]
+ value:
+ objectReference: {fileID: 2100000, guid: 033a89b479ed0e242a87bbdd65d50c7a, type: 2}
+ - target: {fileID: 23000012139679350, guid: ab5f05eb414b65f4f9c285f785c1dfad,
+ type: 2}
+ propertyPath: m_Materials.Array.data[0]
+ value:
+ objectReference: {fileID: 2100000, guid: 033a89b479ed0e242a87bbdd65d50c7a, type: 2}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ m_IsPrefabParent: 0
+--- !u!4 &1644305134 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad,
+ type: 2}
+ m_PrefabInternal: {fileID: 1644305133}
+--- !u!95 &1644305135 stripped
+Animator:
+ m_PrefabParentObject: {fileID: 95000012945752278, guid: ab5f05eb414b65f4f9c285f785c1dfad,
+ type: 2}
+ m_PrefabInternal: {fileID: 1644305133}
+--- !u!1 &1644305136 stripped
+GameObject:
+ m_PrefabParentObject: {fileID: 1000010060980236, guid: ab5f05eb414b65f4f9c285f785c1dfad,
+ type: 2}
+ m_PrefabInternal: {fileID: 1644305133}
+--- !u!1 &1644305137 stripped
+GameObject:
+ m_PrefabParentObject: {fileID: 1000011958607958, guid: ab5f05eb414b65f4f9c285f785c1dfad,
+ type: 2}
+ m_PrefabInternal: {fileID: 1644305133}
+--- !u!114 &1656089792
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 1644305135}
+ trigger: HighTake
+--- !u!114 &1659892942
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b804958e1981f9544989d65e32719692, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ item: {fileID: 11400000, guid: f75f3ff4d2e91964bb8f1b9d1ba6c1f2, type: 2}
+--- !u!114 &1679247436
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 4
+ gameObject: {fileID: 1644305136}
+ activeState: 0
+--- !u!114 &1700138997
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b804958e1981f9544989d65e32719692, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 1
+ item: {fileID: 11400000, guid: d016867521888e04cb37abe439c100f7, type: 2}
+--- !u!114 &1732159088
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 1644305135}
+ trigger: MedTake
+--- !u!114 &1735739341
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: ba1f7288a86b84b2d8629e05dfd3c48c, type: 3}
+ delay: 0
+--- !u!114 &1743308727
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: BirdDisturbed
+ requiredConditions:
+ - {fileID: 848497505}
+ reactionCollection: {fileID: 555312890}
+--- !u!114 &1770216813
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: I don't want another fish.
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!114 &1813401409
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: PickedUpGlasses
+ requiredConditions:
+ - {fileID: 1209751514}
+ reactionCollection: {fileID: 0}
+--- !u!114 &1835530277
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: ae424b24e594048429a4a2bed2eeb897, type: 3}
+ delay: 0
+--- !u!95 &1876984103 stripped
+Animator:
+ m_PrefabParentObject: {fileID: 9592990, guid: 3651ed03b8d254a478d9747447d9f2f6,
+ type: 2}
+ m_PrefabInternal: {fileID: 1202301407}
+--- !u!1 &1876984106 stripped
+GameObject:
+ m_PrefabParentObject: {fileID: 171780, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ m_PrefabInternal: {fileID: 1202301407}
+--- !u!1 &1876984107 stripped
+GameObject:
+ m_PrefabParentObject: {fileID: 138592, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ m_PrefabInternal: {fileID: 1202301407}
+--- !u!114 &1881880787
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 1644305135}
+ trigger: HighTake
+--- !u!1 &1924647221 stripped
+GameObject:
+ m_PrefabParentObject: {fileID: 164680, guid: 3651ed03b8d254a478d9747447d9f2f6, type: 2}
+ m_PrefabInternal: {fileID: 1202301407}
+--- !u!1001 &1936555036
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 9.594732
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0.7473941
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 5.5252805
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_RootOrder
+ value: 7
+ objectReference: {fileID: 0}
+ - target: {fileID: 8260042, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_audioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 2133d76a50380f84b8c2275c2f348c29, type: 3}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &1960283415
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: d27de579b328a44a2a102d519fcdd38b, type: 3}
+ delay: 0
+--- !u!114 &1970471229
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 3
+ gameObject: {fileID: 1613677337}
+ activeState: 1
+--- !u!1 &1986364765
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1986364767}
+ - component: {fileID: 1986364766}
+ m_Layer: 0
+ m_Name: PickedUpCoinReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &1986364766
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1986364765}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 1835530277}
+ - {fileID: 1315678196}
+--- !u!4 &1986364767
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1986364765}
+ 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: 1250726208}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1999503990
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: PickedUpFish
+ satisfied: 1
+ hash: 1957699431
+--- !u!1001 &2035261305
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.size
+ value: 9
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].carriedItemConditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[1].m_CarriedItemConditions.Array.size
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_CarriedItemConditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[1].m_InteractableConditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 8.6
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: -1
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0.92387956
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 0.3826833
+ objectReference: {fileID: 0}
+ - target: {fileID: 477460, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 6
+ objectReference: {fileID: 0}
+ - target: {fileID: 121190, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: CoffeeBotInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 6596456, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: -0.45
+ objectReference: {fileID: 0}
+ - target: {fileID: 443154, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: -2.7
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_Reaction
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[1].m_Reaction
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_InteractableConditions.Array.data[0].m_Interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[1].m_InteractableConditions.Array.data[0].m_Interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_CarriedItemConditions.Array.data[0].m_CarriedItem
+ value:
+ objectReference: {fileID: 11400000, guid: 175bdae8fff0fff42b463f856fa6fe63,
+ type: 2}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[0].m_Description
+ value: Has coin and unused
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Conditions.Array.data[1].m_Description
+ value: Unused but no coin
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_TextManager
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_TextColor.r
+ value: 0.56779844
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_TextColor.g
+ value: 0.86764705
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_TextColor.b
+ value: 0.6446827
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_TextReaction.m_Message
+ value: Fresh coffee! Just one coin!
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[0].m_AudioSource
+ value:
+ objectReference: {fileID: 803947869}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_AudioReactions.Array.data[0].m_AudioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 9fecb71afa4ed49c89d01dffd5c600a7, type: 3}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: OldScripts.Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11423894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].description
+ value: Has coin and unused.
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.data[0].interactable
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].reaction
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].carriedItemConditions.Array.data[0].carriedItem
+ value:
+ objectReference: {fileID: 11400000, guid: 175bdae8fff0fff42b463f856fa6fe63,
+ type: 2}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[0].audioSource
+ value:
+ objectReference: {fileID: 803947869}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: audioReactions.Array.data[0].audioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 9fecb71afa4ed49c89d01dffd5c600a7, type: 3}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.textManager
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.message
+ value: Fresh coffee! Just one coin!
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.textColor.r
+ value: 0.5686275
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.textColor.g
+ value: 0.8666667
+ objectReference: {fileID: 0}
+ - target: {fileID: 11405492, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: textReaction.textColor.b
+ value: 0.6431373
+ objectReference: {fileID: 0}
+ - target: {fileID: 11470894, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditions.Array.data[0].interactableConditions.Array.data[0].usedState
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 194222, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: BirdInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 9.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 9.08
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 1.1
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: -1.3
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0.7071068
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 0.7071068
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalEulerAnglesHint.y
+ value: 90
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 389734730}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 2035261306}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0]
+ value:
+ objectReference: {fileID: 1743308727}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[0]
+ value:
+ objectReference: {fileID: 1309590729}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[1]
+ value:
+ objectReference: {fileID: 608498811}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[2]
+ value:
+ objectReference: {fileID: 1101621493}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[3]
+ value:
+ objectReference: {fileID: 197519449}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[4]
+ value:
+ objectReference: {fileID: 1627481134}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[5]
+ value:
+ objectReference: {fileID: 749286455}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[6]
+ value:
+ objectReference: {fileID: 660451171}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[7]
+ value:
+ objectReference: {fileID: 1970471229}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: interactionLocation
+ value:
+ objectReference: {fileID: 2035261309}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: defaultReaction
+ value:
+ objectReference: {fileID: 2035261308}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[8]
+ value:
+ objectReference: {fileID: 964840749}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &2035261306 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 2035261305}
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+--- !u!4 &2035261307 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 2035261305}
+--- !u!114 &2035261308 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 2035261305}
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+--- !u!4 &2035261309 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 2035261305}
+--- !u!114 &2040164790
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: Here's your coffee!
+ textColor: {r: 0.5686275, g: 0.78431374, b: 0.5686275, a: 1}
+ delay: 0
+--- !u!114 &2067285672
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 803947869}
+ audioClip: {fileID: 8300000, guid: 7578097ef1d3e4ad3825f32b32564cde, type: 3}
+ delay: 0
+--- !u!114 &2101764231
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000011606995890, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market.unity.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market.unity.meta
new file mode 100644
index 00000000..de1f0978
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market.unity.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3020f6f7c8ece2f4da9fa9ca87063961
+timeCreated: 1456936850
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/LightingData.asset b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/LightingData.asset
new file mode 100644
index 00000000..c1603fd6
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/LightingData.asset differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/LightingData.asset.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/LightingData.asset.meta
new file mode 100644
index 00000000..43bf1666
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/LightingData.asset.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: a2ec3523b59843b4ebd5bc714a10ec50
+timeCreated: 1498493838
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 25800000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/Lightmap-0_comp_light.exr b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/Lightmap-0_comp_light.exr
new file mode 100644
index 00000000..69b8591c
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/Lightmap-0_comp_light.exr differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/Lightmap-0_comp_light.exr.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/Lightmap-0_comp_light.exr.meta
new file mode 100644
index 00000000..596654f8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/Lightmap-0_comp_light.exr.meta
@@ -0,0 +1,74 @@
+fileFormatVersion: 2
+guid: 018c27a970954224899ba72ca16a29fe
+timeCreated: 1498493838
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 4
+ 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
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 3
+ mipBias: 0
+ 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}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaUsage: 0
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 6
+ textureShape: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ platformSettings:
+ - buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/MarketLightmapParameter.giparams b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/MarketLightmapParameter.giparams
new file mode 100644
index 00000000..603436e9
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/MarketLightmapParameter.giparams
@@ -0,0 +1,25 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1113 &111300000
+LightmapParameters:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarketLightmapParameter
+ serializedVersion: 3
+ resolution: 0.5
+ clusterResolution: 0.4
+ irradianceBudget: 96
+ irradianceQuality: 8192
+ backFaceTolerance: 0.9
+ isTransparent: 0
+ modellingTolerance: 0.001
+ systemTag: -1
+ edgeStitching: 1
+ blurRadius: 2
+ directLightQuality: 64
+ antiAliasingSamples: 8
+ bakedLightmapTag: -1
+ pushoff: 0.0001
+ AOQuality: 256
+ AOAntiAliasingSamples: 16
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/MarketLightmapParameter.giparams.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/MarketLightmapParameter.giparams.meta
new file mode 100644
index 00000000..67a6641b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/MarketLightmapParameter.giparams.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 960df0195dd11f948ab2c803eda026c2
+timeCreated: 1470324680
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/NavMesh.asset b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/NavMesh.asset
new file mode 100644
index 00000000..0ebae9a7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/NavMesh.asset
@@ -0,0 +1,380 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!238 &23800000
+NavMeshData:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: NavMesh
+ m_NavMeshTiles:
+ - m_MeshData: 56414e4410000000feffffffffffffff00000000070000000c00000007000000000000000a0000000e000000295c0fc278c8c0be295c8fc1295c8fc10b7721410000000049926441cdccb8c100c80a3c00000000295c8fc100c80a3c00000000295c8fc100c80a3cb81e45c0333397c100c80a3cd8a340c000009ac100c80a3c7c144ec000009ac100c80a3c3c0a57c0713d9cc100c80a3c20855bc09a999fc100c80a3c285c7fc03e0a9fc100c80a3c48e1fac014aeb7c100c80a3c48e1fac014aeb7c100c80a3cc0f568bfcdccb8c100c80a3cc01e45bf04000500060000000000000000000000050000000000000001000000030000000a000b00000000000000000000000000060000000000000001000000030000000100020003000000000000000080000004000000000000000100000003000000010003000400000000000000030000000500000000000000010000000300000001000400060000000000000004000100060000000000000001000000030000000100060007000a000000000005000000070002000280000001000000050000000700080009000a000000000000000000000006000000000001000000040000000000000000000000000001000000000001000000000001000000000002000000000001000000000003000000000001000000000004000000000001000000000005000000000003000000000008000000000002000200000001001500020000000100150002000000010015000200000001001500020000000100150004000000030011000000010003000100010002000300050003000000020011000000010002000500b6000000900000010e000001f3ffffffb6000000900000010e000001fbffffffb80000009000e4000e00f30006000000b6000000c70000010e000001fdffffffb6000000c70000010e00000105000000e9000000cf0000010e00000104000000b6000000cf0000010e000001f9ffffffb6000000cf00ed000e000001fdffffffb6000000f300b8000e00000101000000e9000000cf00ed000e00d20000000000ed000000d20000010e000001fdffffffed000000d20000010e00000103000000f2000000d40000010e0000010200000000000000000000000000000000000000
+ - m_MeshData: 56414e4410000000ffffffffffffffff0000000017000000290000001700000001000000260000002e000000295c8fc178c8c0be295c8fc1000000000b7721410000000049926441295c8fc100c80a3c00000000295c0fc100c80a3c00000000b81e0dc100c80a3c005c0fbe713d0ec100c80a3c606686bf52b812c100c80a3cc0f568bf5c8f1ac100c80a3c40e17abf3e0a1fc100c80a3cc01e45bf333333c100c80a3c400a57bf14ae37c100c80a3ca04721bf1f853fc100c80a3ca04721bf295c47c100c80a3cc0f568bfc2f54cc100c80a3ca04721bf00007cc100c80a3c403333bf295c81c100c80a3c205c0fbf666686c100c80a3c400a57bf7b1488c100c80a3cf05198bf1f8587c100c80a3c50b82ec00ad785c100c80a3cb81e45c0295c8fc100c80a3cb81e45c0a470edc000c80a3c000000000000000000c80a3c000000000000000000c80a3c40e17abfc01e45bf00c80a3cc0f568bf8014cebf00c80a3cb047a1bfc0f5e8bf00c80a3c8014cebfc0f5e8bf00c80a3c48e1fabf285c0fc000c80a3c48e1fabfec5118c000c80a3cc01ec5bf50b82ec000c80a3c703daabf000060c02cb5a03df028bcbfa4706dc02cb5a03d80ebf1bf0000a8c02cb5a03d80ebf1bfe27aacc02cb5a03dc01ec5bf14aeb7c02cb5a03d703daabf2a5cc7c000c80a3c703daabf7a14cec000c80a3cf028bcbf5c8fd2c000c80a3c703daabfe27ae4c000c80a3c703daabfa470edc000c80a3cf028bcbf86ebf1c000c80a3c305c8fbf86ebf1c000c80a3c005c0fbe040005000600010002000000000000000700000003000000010000000500000009000a000b00000000000000000000000900000000000000010000000300000002000300040000000000000000000000010000000000000001000000030000000b000c000d0000000000000000000000090000000000000001000000030000001000110012000000000000000000000008000000000000000100000003000000010008000900000000000000070000000900000000000000010000000300000006000700080001000000000000000000060001000000000001000000040000000f00100012000000000000000000050004800a00000000000100000004000000010009000b000d00000000000600020004000b000280000001000000050000000e000f000000000000000000000008000b0000000000000001000000030000000d000e00000000000000000000000a000900000000000000010000000300000022002300240000000000000000000000150000000000000001000000030000002500260027000000000000000000000011000000000000000100000003000000180019001a00000000000000000000000f00000000000000010000000300000018001a001b001700000000000e000000120000000000000001000000040000001d001e002000210000000000000016000000170000000000010000000400000024002500270000000000000000000d001500000000000000010000000300000017001b001c001600000000000f00000017000000000000000100000004000000270028001300210022000000000000001700000015000000010000000500000014001500160000000000000000800000170000000000000001000000030000002200240027000000000000000c001100130000000000000001000000030000001e001f002000000000000000000000001000000000000000010000000300000016001c001d002100130014001200000010001300028014000100000006000000000000000000000000000300000000000300000000000100000000000400000000000100000000000500000000000100000000000600000000000100000000000700000000000100000000000800000000000200000000000a00000000000200000000000c00000000000300000000000f00000000000100000000001000000000000100000000001100000000000100000000001200000000000100000000001300000000000100000000001400000000000200000000001600000000000200000000001800000000000100000000001900000000000200000000001b00000000000300000000001e00000000000100000000001f00000000000100000000002000000000000100000000002100000001000500047cabc02cb5a03d000000000400000003001100000001000300010001000200030005000200000001001500020000000100150002000000010015000200000001001500020000000100150003000000020011000000010002000500030000000200110000000100020005000400000003001100000002000300040000000100020005000200000001001500020000000100150002000000010015000200000001001500020000000100150003000000020011000000010002000500030000000200110000000100020005000200000001001500030000000200110000000100020005000400000003001100000001000300010001000200030005000200000001001500020000000100150002000000010015000500000006001100000001000600010001000200060001000200030006000100030004000600050000000000d40000010e000001d3ffffff00000000d40082000e000001ebffffff00000000d40080000e000001f7ffffff00000000ef0019000e000001fdffffff00000000ef0010000e0000010900000000000000f40019000e0000010a00000000000000d40080000e000001fbffffff00000000f70080000e0000010800000000000000d40011000e000001fdffffff00000000d40011000e00d9000400000000000000d4000e000e0000010700000019000000f10082000e000001f5ffffff19000000f30080000e000001fbffffff19000000f60049000e00f8000300000049000000f30080000e000001fdffffff49000000f30055000e00f7000100000055000000f70080000e000001050000005c000000f10082000e000001fbffffff5c000000f40080000e0000010600000072000000f10082000e000001fdffffff72000000f20082000e000001000000007d000000f10082000e00fe000200000094000000e40000010e000001e9ffffff94000000eb0000010e000001f5ffffff94000000eb00ae000e000001fbffffff94000000ed00a2000e00f0001000000094000000eb00ae000e000001fdffffff94000000ed00ae000e0000011200000094000000eb009a000e00f0000c00000094000000eb0000010e000001fbffffff94000000ed00a7000e00f0001400000096000000eb0000010e000001fdffffff96000000eb0000010e00000116000000a2000000eb00a7000e00ed000b000000ae000000e40000010e000001f5ffffffae000000e500f5000e00f300fbffffffae000000e500ce000e00ed000f000000b3000000e500f5000e00f300fdffffffb3000000e500cb000e00ea0015000000d9000000ea00f5000e00f30011000000de000000e40000010e000001fbffffffde000000e400e9000e00ee000e000000e0000000e40000010e000001fdffffffe0000000e400e6000e00e9000d000000f5000000f20000010e0000011300000000000000000000000000000000000000
+ - m_MeshData: 56414e441000000000000000ffffffff00000000110000001f000000110000000900000024000000220000000000000078c8c0be295c8fc1295c8f410b772141000000004992644115aeb74000c80a3c00000000e17a10412cb5a03d0000000052b812412cb5a03d4033b3beec5118412cb5a03d205c0fbfcdcc1c412cb5a03d205c0fbf000028412cb5a03d005c0fbe000028412cb5a03d400ad7be295c2b412cb5a03d403333bf295c2b414063e83dc01ec5bf48e10a41a808183eb81e45c03333eb402cb5a03db81e45c0d7a3f8402cb5a03d50b82ec085eb01412cb5a03d48e10ac0295cff402cb5a03dc01ec5bff628f4402cb5a03d703daabf52b8e6402cb5a03df028bcbfe17ae4402cb5a03df05198bfcdccd44000c80a3cc0f568bf7b14ce4000c80a3c40e1fabeb81ec54000c80a3c400ad7bed7a3c04000c80a3c005c0fbe0000000000c80a3c40e17abf0000000000c80a3c00000000ec51984000c80a3c00000000b81e8d4000c80a3c403333bf85eb714000c80a3c205c0fbf0000604000c80a3cc01e45bfc3f5e83f00c80a3c403333bff628bc3f00c80a3c40e17abf3333333f00c80a3cc0f568bf3e0a573e300e323d305c8fbf0e000f001000000000000000000000000600000000000000010000000300000012001300140000000000000000000000090000000000000001000000030000000400050006000000000000000000000004000000000000000100000003000000040006000700000000000000030000000800000000000000010000000300000009000a000b0000000000000000000000070000000000000001000000030000001000110012000e0000000000000000000900010000000000010000000400000009000b000c00000000000000050000000b0000000000000001000000030000000300040007000800000000000000040000000b000000000001000000040000000d000e0012001400010002000000060002000a0000000b000100000006000000000001001400000000000000028009000000000000000000010000000300000009000c000d0002000300080007000000090000000800000001000000060000001d001e001500000000000000000000000f00000000000000010000000300000017001800190000000000000000000000100000000000000001000000030000001b001c001d00000000000000000000000f0000000000000001000000030000001d00150016001b00000000000c00048010000e00000000000100000004000000170019001b001600000000000d0011000f00028000000000010000000400000019001a001b000000000000000000000010000000000000000100000003000000000000000000000000000100000000000100000000000100000000000200000000000100000000000300000000000100000000000400000001000200010000000600000000000200010000000800000002000300030000000b00000000000200030000000d00000002000600050000001300000002000300070000001600000002000600090000001c00000000000100090000001d00000000000100090000001e00000000000100090000001f00000000000200090000002100000000000200090000002300000000000100d40606414063e83d40a73dc0b2e407414063e83de8b431c0d40606414063e83d40a73dc052b8d840280e323d000ad7bd8fc2e4404063e83d0033b3bd8fc2e4404063e83d0033b3bd52b8d840280e323d000ad7bdcdcc18414063e83d48e11ac0b2e407414063e83de8b431c002000000010015000200000001001500020000000100150002000000010015000200030001001100030000000100050003000000020011000000010002000500020003000100110003000400010004000300000004000500030000000200110000000100020005000500000004001100000001000400010001000700040004000100060007000400010002000600010002000300060005000200000004001100000003000400040000000100030005000500060004001100060003000400040006000200030004000600010002000400060007000100040006000000070005000200000001001500020000000100150002000000010015000300000002001100000001000200050003000000020011000000010002000500020000000100150000000000d40099000e000001dfffffff00000000f00081000e000001f1ffffff00000000f00044000e000001f9ffffff00000000f0001a000e000001fdffffff00000000f0000a000e00f3000b00000000000000f2001a000e0000010e00000000000000f20044000e000001fdffffff00000000f60044000e0000010f0000000a000000f2001a000e00f6000d0000001a000000f50081000e000001f9ffffff1a000000f50044000e000001fdffffff1a000000f50036000e00f8001000000036000000f60044000e0000010c00000052000000f90081000e000001fdffffff52000000fe0081000e0000010900000056000000f9005c000e00fe000100000056000000d40099000e000001efffffff56000000d40083000e000001f9ffffff56000000ea0083000e000001fdffffff56000000ea0083000e000001080000005c000000ed006d000e00f9000500000066000000d4007c000e00ef00fdffffff69000000d4007c000e00d9000400000066000000eb006d000e00ef00000000006f000000d40099000e00fe00f7ffffff6f000000d40099000e00fb00fdffffff6f000000d4007c000e00e1000600000072000000d40099000e00fb000a00000088000000ea0099000e00fe00fbffffff88000000ea0099000e00f800070000008c000000f60099000e00fe00fdffffff8c000000f80096000e00fe00020000008c000000f60099000e00fa000300000000000000000000000000000000000000
+ - m_MeshData: 56414e4410000000feffffff0000000000000000040000000c00000004000000000000000800000008000000295c0fc278c8c0be00000000295c8fc10b772141295c8f4149926441295c8fc100c80a3c85eb7140295c8fc100c80a3c00000000cdccb8c100c80a3c00000000cdccb8c100c80a3c6666864085eb9dc100c80a3c66668640cdcc9cc100c80a3c6666764000009ac100c80a3cc3f56840333397c100c80a3c85eb7140295c8fc1bdb374400000a840295c8fc1bdb374403d0a9f40c3f594c1bdb374403d0a9f40c3f594c1bdb374400000a840060007000000010000000000000000000080030000000000010000000400000003000400050000000000000000000000030000000000000001000000030000000300050006000100020000000200000001000680000000000100000005000000080009000a000b0000000000008000000000000000000000010000000400000000000000000000000000020000000000020000000000010000000000030000000000030000000000060000000000020003000000020011000000010002000500020000000100150004000000030011000000010003000100010002000300050003000000020011000000010002000500b60000000000000147004b00f9ffffffb6000000000000010e003c00fdffffffb6000000000000010e003c0002000000ed000000000000010e00360000000000b60000003700000147004b00fdffffffb60000003700e8000e003c0001000000f60039004700000147004b000300000000000000000000000000000000000000
+ - m_MeshData: 56414e4410000000ffffffff0000000000000000220000004200000022000000080000004300000044000000295c8fc178c8c0be00000000000000000b772141295c8f4149926441295c8fc100c80a3c85eb714052b884c100c80a3c85eb71401f8587c100c80a3ce17a6440d7a388c100c80a3cf6283c401f8587c100c80a3c85ebf13f666686c100c80a3c7b14ce3f9a9983c100c80a3c3333b33f34334fc100c80a3c0000e03f000044c100c80a3cec51983f5c8f1ac100c80a3cae47a13f7b1416c100c80a3c6666863fb81e0dc100c80a3c295c8f3f295c0fc100c80a3c00000000295c8fc100c80a3c000000000000000000c80a3c3333b33f0000000000c80a3c00000000a470edc000c80a3c00000000a470edc000c80a3c3333b33e86ebf1c000c80a3c48e1fa3e14aeefc000c80a3cb81ec53f52b8e6c000c80a3cb81ec53f3e0ad7c000c80a3c85ebf13f2a5cc7c000c80a3cb81ec53f14aeb7c02cb5a03db81ec53fe27aacc02cb5a03d0000e03f0000a8c02cb5a03d666606403e0a9fc02cb5a03d666606407a1496c02cb5a03d0ad7134086eb81c02cb5a03d0ad71340c4f568c02cb5a03d85eb0140000060c02cb5a03d3e0ad73f50b82ec000c80a3cb81ec53fec5118c000c80a3c0000e03f48e10ac000c80a3c295c0f40f028bcbf00c80a3cec511840703daabf00c80a3c48e1fa3f40e17abf00c80a3c7b14ce3f403333bf00c80a3cf628bc3f000a57be00c80a3cb81ec53f1f853fc1b4dc18408fc225401f853fc106951f40e17a6440cdcc1cc106951f40e17a6440cdcc1cc1439f16408fc22540295c8fc1bdb374403d0a9f40295c8fc1bdb374400000a8403433ebc0bdb374400000a840ccccd4c0bdb3744048e17a40b81ec5c0bdb37440e17a6440285c0fc0bdb37440e17a64400000e0bfbdb3744048e17a400000e0bfbdb3744085eb814000000000bdb37440f628bc4000000000bdb37440c3f5b040403333bfbdb374405c8f9a4040e17abfbdb37440d7a388403033b3bfbdb3744085eb814080ebf1bfbdb3744000006040343333c0bdb3744000006040f4283cc0bdb374403e0a5740989949c0bdb374400000604086ebb9c0bdb3744000006040d8a3c0c0bdb374403e0a5740b81ec5c0bdb37440000060405c8fd2c0bdb374400000604052b8e6c0bdb374409a999140d8a3f8c0bdb374403d0a9f4000000100020000000000000000000000030000000000000001000000030000000a000b000c000000000000000000000004000000000000000100000003000000000002000300000000000000010000000500000000000000010000000300000009000a000c0008000000000000000200060000000000000001000000040000000000030004000d0000000000030000000700048000000000010000000400000008000c000d0006000000000004000680080009000000000001000000040000000d000400050000000000000005000000080000000000000001000000030000000d000500060000000000000007000000060000000000000001000000030000000600070008000000000000000000000006000000000000000100000003000000180019001a00000000000000000000000c000000000000000100000003000000250026000e0000000000000000000000130000000000000001000000030000001c001d001e0018001a001b000000000012000a0000000000010000000600000021002200230000000000000000000000100000000000000001000000030000002000240025001f00000000001000000013000000000000000100000004000000140015001600100011000000000000001400000011000000010000000500000020002100230024000000000000000d0000000e00000000000100000004000000120013001400110000000000000000000f000000000000000100000004000000170018001e001f000000000000000c000000130000000000010000000400000025000e000f00100017001f000b0000800680140012000e0001000000060000001000160017000000000000000f000000130000000000000001000000030000002700280029002a0000000000000000000000000000000000010000000400000039003a003b0000000000000000000000200000000000000001000000030000003c003d003e002f0000000000000000001c002100000000000100000004000000350036003700000000000000000000001a000000000000000100000003000000330034003500000000000000008000001a0000000000000001000000030000003200330035003700310000000000190018001d000000000001000000050000002d00400041000000000000001e000000220000000000000001000000030000002f003e003f002e0000000000170000001e0000000000000001000000040000003100370038003000000000001a0000001f0000000000000001000000040000002e003f0040002d00000000001c0000001b0000000000000001000000040000003000380039000000000000001d00000020000000000000000100000003000000300039003b000000000000001f001600210000000000000001000000030000002f0030003b003c000000000000002000000017000000000001000000040000002c002d0041002b000000000000001b0000000480000000000100000004000000000000000000000000000100000000000100000000000100000000000200000000000100000000000300000000000200000000000500000000000200000000000700000000000200000000000900000000000100000000000a00000000000100000000000b00000000000100000000000c00000000000100000000000d00000000000100000000000e00000000000400000000001200000000000100000000001300000000000200000000001500000000000300000000001800000000000200000000001a00000000000200000000001c00000001000300010000001f00000004000900050000002800000001000200060000002a00000002000400080000002e00000000000100080000002f00000000000200080000003100000000000100080000003200000000000100080000003300000000000300080000003600000000000100080000003700000000000200080000003900000000000200080000003b00000000000200080000003d00000000000100080000003e00000000000100080000003f0000000000020008000000410000000000020048e15ec04063e83db81ec53f047cabc02cb5a03d00000000d6a3c0c0280e323d4444a43f48e15ec04063e83db81ec53f0cd732c0280e323d4b2d573fd6a3c0c0280e323d4444a43fbcbb39c1439f16408fc22540bcbb39c106951f40e17a64400200000001001500020000000100150002000000010015000300000002001100000001000200050003000000020011000000010002000500030000000200110000000100020005000200000001001500020000000100150002000000010015000200000001001500020000000100150005000000040011000000010004000100010002000400010002000300040005000200000001001500030000000200110000000100020005000400000003001100000001000300010001000200030005000300000002001100000001000200050003000000020011000000010002000500030004000200110004000100020004000400000001000500080005000900010005000000090001000000010002000500020006000900010006000300070005000700040006000100040008000600010008000900060000000900000002000000020003000100110003000000010005000300040002001100040000000200010000000500020004000000010005000500020000000100150003000000020011000000010002000500020000000100150002000000010015000400000003001100000002000300040000000100020005000200000001001500030000000200110000000100020005000300000002001100000001000200050003000000020011000000010002000500020000000100150002000000010015000300000002001100000001000200050003000000020011000000010002000500000000000000000147005400bdffffff000000000000000147004b00dfffffff000000000000970047004b00f1ffffff00000000000080000e003600f9ffffff00000000000015000e003600fdffffff0000000000000e000e0036000400000000000000000015000e0017000700000000000000000080000e003600fdffffff000000002a000e000e0036000200000000000000000080000e00140005000000000000000000970047004b00f9ffffff000000003300970047004b00fdffffff000039004700970047004b002100000000000000330013000e0036000000000000000000000051000e001b00fdffffff00000000000010000e001b000600000015000000110051000e00190008000000510000000000000147004b00efffffff510000000000990047004b00f9ffffff51000000000082000e001200fdffffff51000000000080000e001200030000007a000000000082000e0010000100000055001c002500990047004b00fdffffff55001c00250074002a00330014000000910039004100990047004b001a000000940000000000000147004b00f7ffffff94000000000000010e001600fdffffff94000000050099000e0016001000000096000000000000010e00160012000000960000000000ae0047004b00fbffffff960000000000ae000e00160013000000960000000000a70047004b00fdffffff960000000000a7000e001b000e000000970039003200a20047004b001d000000a10000001400000147005400dfffffffa10000001600e00047003800f1ffffffa80000001600d90047003300f9ffffffae0000001600d9000e001e00fdffffffae0000001600d9000e00190011000000b30000001900b9000e001e0009000000a80000001800ce0047003300fdffffffb30000001800ce000e0021000b000000a80039003000ad004700330016000000a10039003000e00047003800f9ffffffa10039003200e00047003800fdffffffa10039003200a800470038001b000000a80039003200e0004700330020000000d30039003000e00047003300fdffffffd30039003000d8004700320015000000d30039003200e000470033001f000000d80000001400000147005400efffffffd9000000140000010e002200f9ffffffd90000001500f6000e002000fdffffffd90000001500f6000e0019000d000000de0000001700f2000e0020000f000000e1000000140000010e002200fdffffffe10000001c00ed000e0022000c000000f6000000140000010e0016000a000000d80039003200000147005400f7ffffffd80039003200ec0047003a00fdffffffd80039003200e500470033001e000000e00039003200ec0047003a001c000000e70039003800000147005400fbffffffe7003900380000014700540019000000ec0039003a00000147005400fdffffffec0039003a00f6004700450017000000f600390045000001470054001800000000000000000000000000000000000000
+ - m_MeshData: 56414e441000000000000000000000000000000026000000570000002600000014000000620000004c0000000000000078c8c0be00000000295c8f410b772141295c8f41499264410000000000c80a3c3333b33f3e0ad73e00c80a3c3333b33f713daa3f00c80a3c85ebf13f48e10a402cb5a03d9a9949408fc225402cb5a03d3e0a57403e0a57402cb5a03d66668640c3f568402cb5a03dcdcc9c40f62884402cb5a03d52b8ae40295c7f402cb5a03dd7a3c0407b14964000c80a3c8fc2dd405c8f9a4000c80a3cb81efd40ae47a14000c80a3c3d0a0341cdcc9c4000c80a3c295c0f41295c8f4000c80a3cc3f51441295c8f4000c80a3c5c8f52417b14964000c80a3c3e0a57410ad7934000c80a3c48e15e410000a84000c80a3cb81e614115aeb74000c80a3cc3f568419a99c94000c80a3c713d7e41ae47d94000c80a3c8fc27941f628f44000c80a3c33336b41cdcc004100c80a3cc3f56841b81efd4000c80a3c00006041666606412cb5a03d7b144e4166660641300e323d85eb014185eb014100c80a3ccdcc004148e1fa4000c80a3cf628f440295cff4000c80a3cc3f5e840b81efd4000c80a3cf6288440cdcc004100c80a3c295c7f40b81efd4000c80a3c85eb7140b81efd4000c80a3c3e0a5740ae47054100c80a3c33333340d7a3084100c80a3c66660640e17a104100c80a3c0000e03fc3f5144100c80a3c0000e03f3333174100c80a3c3333b33fcdcc1c4100c80a3cec51983f15ae1b4100c80a3c3e0a573f52b8124100c80a3c48e1fa3ee17a10412cb5a03d0000000015aeb74000c80a3c000000001f85a34000c80a3c3e0a573eec51984000c80a3c000000000000000000c80a3c00000000295c0f3fe70f2440b81e8d4085eb0140e70f2440d7a3c0400ad7134076d221406666be40713d2a40b4dc1840c3f5b04033333340b4dc1840c3f5b04033333340d2611440713daa40f628bc3fd261144085eb7140ec51983fb4dc18406666764000000000bdb37440f628bc403e0a573fbdb374408fc2dd403e0a573fbdb374408fc279410ad71340bdb37440295c8f4152b82e40bdb37440295c8f416666863fbdb374403e0a73416666863fbdb37440295c0f41ae47a13fbdb374408fc209416666863fbdb37440ae4705416666863fbdb374405c8fd24000000000bdb37440c3f5b040295c0f40106c0b40d7a32441295c0f4080a90d40e17a48415c8f5240dd380040e17a48415c8f5240d8f6fb3fd7a324418fc2254076d2214066667641713d2a40e70f244000007c41c3f56840c88a2840ec518a410ad79340241a1b400ad785411f855b40d26114405c8f6e41295cff4000c80a3c295c8f41d7a3244100c80a3c295c8f4185eb1d4100c80a3c52b884419a99114100c80a3cf628844100000c4100c80a3ce17a82416666064100c80a3c52b88441f628044100c80a3c1f8587416666f64000c80a3cd7a38841ae473d41d2611440295c8f41713d4641b4dc1840295c8f418fc24141b4dc1840ec518a4166663e41b4dc1840ec518a4185eb3941d261144000008c411d001e001f00000000000000000000001000000000000000010000000300000023002400250000000000000000000000060000000000000001000000030000002500260027000000000000000000000006000000000000000100000003000000150016001700000000000000000000000d0000000000000001000000030000000f0010001100000000000000000000000800000000000000010000000300000025002700280022002300000003000000130000000200000001000000050000000e001200180019000c000d0008001700000014000000000001000000060000000e000f001100120000000000000005000000070000000000010000000400000009000a000b001a001b00000000000000140000000e000000010000000500000020002100220000000000000000000000130000000000000001000000030000002d00000001000000000000000480000015000000000000000100000003000000050006000700000000000000000000001100000000000000010000000300000012001300140015001700000000000000000004001700000001000000050000000700080009001b000000000000000000090011000000000001000000040000001b001c001d0000000000000000000000100000000000000001000000030000001b001d001f000000000000000f000100110000000000000001000000030000001b001f0020002b000500070010000000130016000c000e00010000000600000002000300040000000000000000000000160000000000000001000000030000002200280029002a002b002000060000000680000011000a0001000000060000001a000b000c0019000000000009000000070000000000000001000000040000002d00010002000000000000000b000000160000000000000001000000030000000200040005002b002c002d0012000000110000000680150001000000060000001200170018000000000000000d00000007000000000000000100000003000000310032003300000000000000000000001a0000000000000001000000030000002f0030003100000000000000000000001a0000000000000001000000030000002f0031003300340035002e0019001800000000000000000001000000060000003c003d003e00000000000000000000001f0000000000000001000000030000003f00400036003700000000000000048000001e0000000000010000000400000038003b003c00370000000000200000001f0000000000000001000000040000003e003f00370000000000000000001c001f0000000000000001000000030000003c003e0037000000000000001b001e001d000000000000000100000003000000380039003a003b00000000000000028000001d00000000000100000004000000410042004300440000000000000000000000000000000000010000000400000049004500460047004800000000000000000000000000000001000000050000004d004e004f0000000000000000000000240000000000000001000000030000004d004f0050004a004b004c002300000025000280000000000100000006000000500051004a0000000000000000000000240000000000000001000000030000005400550056005200530000000000000000000280000000000100000005000000000000000000000000000100000000000100000000000100000000000200000000000100000000000300000000000100000000000400000000000100000000000500000000000300000000000800000002000700020000000f00000000000200020000001100000000000300020000001400000000000100020000001500000000000100020000001600000000000100020000001700000000000300020000001a00000001000300030000001d00000000000100030000001e00000000000100030000001f00000005000b00080000002a00000001000200090000002c00000000000400090000003000000000000200090000003200000000000100090000003300000005000b000e0000003e000000010002000f00000040000000000001000f00000041000000000001000f0000004200000001000500100000004700000000000100100000004800000000000200100000004a00000000000200100000004c00000000000100100000004d00000000000100100000004e00000000000200100000005000000001000300110000005300000003000600140000005900000000000100140000005a00000000000400140000005e00000000000100140000005f000000000003007a140141280e323da4705141b31af240280e323d171f3c41e6f38e40280e323d6108b540e6f38e40280e323d6108b5406cc47f40280e323d1af12f40e19575404063e83d072847402a3986404063e83d3c8571401dfa9340280e323da4b7714006810540280e323d7368314006810540280e323d73683140e19575404063e83d072847406cc47f40280e323d1af12f4096e53b404063e83de3593c401b6f3c40280e323dcc1321407a140141280e323da4705141ea261140f1e60f402b8796405c8f5240d7f6fb3f88883c418c258740d361144096fc80411be874406224124044447841806a5c40584d264023db874102000000010015000200000001001500020000000100150002000000010015000200000001001500040000000300110000000100030001000100020003000500040005000700010005000000070001000000010007000100010006000700010006000200070001000200030007000100030004000700010003000000020011000000010002000500040000000300110000000100030001000100020003000500020000000100150002000000010015000200000001001500040000000300110000000200030004000000010002000500030004000200110004000100020004000400000001000500020000000100150002000000010015000400050009000100050006000a0001000600000001000500010002000a0001000200030007000500070008000a0001000800040009000100090005000a0000000a000600010000000a000200070000000a000800090000000200030001001100030000000100050005000000040011000000030004000400000001000300010001000200030005000300000002001100000001000200050002000000010015000400050000000500000006000a000100060001000900010001000200090001000200070009000100070008000a0001000800030004000500040000000a0000000a00060009000000090007000a0000000a00080004000000020003000100110003000000010005000200000001001500020000000100150005000000040011000000030004000400000006000300040000000100060001000100020006000500020000000100150003000000020011000000010002000500030000000200110000000100020005000200000001001500020000000100150003000000020011000000010002000500030000000400110000000200040004000000010002000500040005000300110005000700030004000500060007000100060002000700040006000100020004000600000001000500020000000100150005000000040011000000010004000100010002000400010002000300040005000200000001001500040000000300110000000100030001000100020003000500000000000000b10047000001b5ffffff0000000000008c0047006d00dbffffff000000000000710047006d00efffffff000000000000490047006300f9ffffff00000000000049000e003c00fdffffff00000000000006000e0014000a00000000000000000049000e003c0015000000000000000000130047006300fdffffff00000000000013000e001b0014000000000039004f000f00470063001b00000008000000030071002a006d00f7ffffff13000000030071000e006d00fdffffff30000000030071000e006d0010000000130000001b0025000e0030001100000008001c00360028002a005600fbffffff08001c00360028002a005600190000001d001c004c0028002a005600fdffffff26001c004c0028002a004f00170000001d001c004f0026002a005600180000003000000000008c000e006d00edffffff4900000000008c000e003000f7ffffff49000000000083000e003000fdffffff49000000000083000e00300012000000710000001e007a000e003000090000007a00000007008c000e001e00fbffffff7a00000007008b000e001e0005000000810000000c008c000e001900fdffffff81000000140087000e00190001000000870000000c008c000e0014000200000030000000360073000e006d00f7ffffff300000003c0070000e006d00fdffffff300000003c003b000e004e000b000000390000004e0070000e006d000d00000070000000360073000e006d00fbffffff70000000360071000e006d000f00000070000000360073000e006d00fdffffff71000000360073000e003b0000000000700000003b0072000e006d000e0000000c0000005e00b10047000001dbffffff0c0000005e00780047000001efffffff0c0000005e0078004700df00f9ffffff0c0039005e000f0047008000fdffffff0c0039005e000f00470077001d0000000c00390063000f00470080001e0000000c000000630078004700df00fdffffff0c00390063000f004700df001c00000040000000740078000e00d000060000000c0000007700520047000001f7ffffff0f001c0077002f004700b300fdffffff0f00390077001200470080001a00000020001c0093002f002a00b300200000000c000000bc00520047000001fbffffff40000000bc0052000e00d000070000000c001c00d500420047000001fdffffff0c003900d9002700470000011f00000025001c00d50042003900f70021000000420000006300b1002a000001edffffff42000000630078000e00e300f7ffffff43000000630078000e008000fdffffff43000000630074000e0075000800000046000000730078000e0080001300000042000000b80078000e00e300fbffffff42000000c0004b000e00c9000400000052000000b80078000e00e300fdffffff52000000b80078000e00d0001600000052000000c80071000e00e3000c0000006d000000c800b1002a000001f7ffffff6d000000c80076000e000001fdffffff6d000000c80073000e00d200030000006e000000f20076000e0000012400000072000000e900b1002a000001fbffffff72000000ec0093000e0000012300000078000000e900b1002a000001fdffffff78000000e90082000e00ed0022000000a6001c00f700b1002a0000012500000000000000000000000000000000000000
+ - m_MeshData: 56414e44100000000000000001000000000000000900000019000000090000000400000018000000120000000000000078c8c0be295c8f41295c8f410b772141295c0f424992644152b82e40bdb37440295c8f410ad71340bdb37440295c8f41f6283c40bdb37440333397419a994940bdb3744066669441d7a3244100c80a3c295c8f41295cff4000c80a3c295c8f416666f64000c80a3c0ad79341ec51984000c80a3ce17a9e41ec51984000c80a3c9a999f41295c0f4100c80a3c9a99d741a4705141300e323d5c8fb64115ae534100c80a3c3333b341000060414063e83d713daa4148e15e412cb5a03dd7a3a441ae47594100c80a3cf628a041f628584100c80a3c713d9c4115ae534100c80a3c3e0a9f41713d464100c80a3cae47a14166663e4100c80a3c7b14a441a470354100c80a3cc3f5a241c3f5304100c80a3c9a999f41713d4641b4dc1840295c8f41ae473d41d2611440295c8f41b81e4541439f16407b1496410ad74b41b4dc18406666944100000100020003000000000006800000000000000000000001000000040000000e000f00100000000000000000000000030000000000000001000000030000000d000e00100000000000000000000200040000000000000001000000030000001000110012000b000c000d0000000000080000000000030001000000060000000400050006001400000000000680000006000000000000000100000004000000130014000600000000000000000005000700000000000000010000000300000006000700080009000a00130000000000000000000800060001000000060000000a000b00120013000000000000000400000007000000000001000000040000001500160017001800000000000680000000000000000000000100000004000000000000000000000000000200000000000200000000000100000000000300000001000200010000000500000003000800040000000d00000000000200040000000f000000000001000400000010000000000004000400000014000000000002000400000016000000000002008c255b41280e323df9c5a2418c255b41280e323df9c5a241a4705f412cb5a03da470a741801b5741280e323d4e48aa41030000000200110000000100020005000200000001001500020003000100110003000000010005000700050008000100050006000800010006000000010005000100020008000100020003000800010003000400080001000400070008000100080006000100000003000000020011000000010002000500020000000100150005000000040011000000010004000100010002000400010002000300040005000300000002001100000001000200050003000000020011000000010002000500210000000000c80047008100efffffff210000000000bb0047008100f9ffffff210000000000bb0047008100fdffffff2100390000002d0047000e0000000000440000000800bb000e008100060000006e0000000000a2000e002300fdffffff6e0000000800a2000e002300050000006e00000000009e000e001d0004000000a20000000000c8002a004600f7ffffffa90000000000c2002a001e00fdffffffbd0000001700c2000e001e0001000000a9001c000000b6002a000c0008000000a20000001c00c8000e004600fbffffffbd0000001c00c7000e00260002000000a20000001c00c8000e004600fdffffffaa0000001c00c8000e00400003000000a20000002300bd000e0046000700000000000000000000000000000000000000
+ m_NavMeshParams:
+ tileSize: 17.92
+ walkableHeight: 1.995
+ walkableRadius: 0.56
+ walkableClimb: 0.21000001
+ cellSize: 0.07
+ m_Heightmaps: []
+ m_HeightMeshes:
+ - m_Vertices:
+ - {x: -18.666162, y: 0.35493588, z: -3.8344707}
+ - {x: -19.662043, y: 0.012801647, z: -7.828415}
+ - {x: -19.662043, y: 0.012802124, z: -3.8344707}
+ - {x: -18.666162, y: 0.3549354, z: -7.828414}
+ - {x: -18.819662, y: -0.0013811588, z: -3.1178236}
+ - {x: -19.124443, y: 0.35493684, z: 4.5315757}
+ - {x: -14.040411, y: -0.0029335022, z: 4.028813}
+ - {x: -19.124443, y: -0.0029335022, z: 3.957851}
+ - {x: -9.260408, y: -0.0013811588, z: -3.2856417}
+ - {x: 8.0571785, y: -0.019597054, z: -2.7723036}
+ - {x: 8.600351, y: 0.16746521, z: -3.3514128}
+ - {x: 5.4220147, y: 0.11649418, z: -3.524084}
+ - {x: 5.409367, y: -0.014121771, z: -3.3573198}
+ - {x: 10.623955, y: -0.019596815, z: -1.5036168}
+ - {x: 11.01025, y: 0.21092224, z: -1.6837554}
+ - {x: 8.834696, y: 0.35493588, z: -3.727806}
+ - {x: 11.395231, y: 0.48012185, z: -1.8865776}
+ - {x: 11.105082, y: 0.15203714, z: 0.015368938}
+ - {x: 10.786385, y: -0.019596577, z: 0.017308712}
+ - {x: 10.188362, y: 0.10389161, z: 26.434029}
+ - {x: 9.957663, y: -0.018366098, z: 26.07436}
+ - {x: 9.779423, y: -0.018366098, z: 27.071957}
+ - {x: 10.085693, y: 0.14495683, z: 26.777294}
+ - {x: 10.286907, y: 0.35493946, z: 26.62642}
+ - {x: 13.645914, y: -0.018366814, z: 19.62344}
+ - {x: 12.399677, y: 0.09342837, z: 16.887903}
+ - {x: 12.094069, y: -0.01836729, z: 16.978735}
+ - {x: 13.95842, y: 0.09342885, z: 19.472801}
+ - {x: 14.303881, y: 0.35493875, z: 19.421495}
+ - {x: 14.225954, y: 0.09342885, z: 21.016365}
+ - {x: 13.848764, y: -0.018366575, z: 20.968159}
+ - {x: 14.10548, y: 0.19948864, z: 22.048111}
+ - {x: 13.428312, y: -0.018366575, z: 21.916767}
+ - {x: 13.155111, y: -0.018366575, z: 22.67886}
+ - {x: 13.408936, y: 0.103891134, z: 23.104347}
+ - {x: 13.545908, y: 0.35493922, z: 23.437527}
+ - {x: 14.596785, y: 0.7081977, z: 22.17917}
+ - {x: 2.231763, y: 2.1012955, z: 3.8503606}
+ - {x: 1.4741669, y: 2.2727056, z: 2.9517493}
+ - {x: -0.18293, y: 2.654134, z: 4.3422194}
+ - {x: 0.57466316, y: 2.6071727, z: 5.2408304}
+ - {x: 0.9805107, y: 2.6071727, z: 5.7245007}
+ - {x: 2.6376104, y: 2.069062, z: 4.3340306}
+ - {x: 1.3690519, y: 2.6071727, z: 6.1875467}
+ - {x: 3.0261517, y: 2.1012952, z: 4.7970767}
+ - {x: 3.621459, y: 2.2780356, z: 5.5065374}
+ - {x: 1.9643612, y: 2.6594641, z: 6.8970075}
+ - {x: 3.910923, y: 1.7875931, z: 10.825794}
+ - {x: 3.910923, y: 1.8875847, z: 9.6613865}
+ - {x: 1.747736, y: 2.269013, z: 9.661386}
+ - {x: 1.747736, y: 2.2690132, z: 10.825794}
+ - {x: 3.910923, y: 1.787593, z: 11.999529}
+ - {x: 1.747736, y: 2.2690132, z: 11.999529}
+ - {x: 3.910923, y: 1.8875849, z: 13.126555}
+ - {x: 1.747735, y: 2.2690132, z: 13.1265545}
+ - {x: -10.080649, y: 2.5136247, z: 4.18095}
+ - {x: -9.173903, y: 2.6324515, z: 4.18095}
+ - {x: -9.173903, y: 2.2886248, z: 1.9924994}
+ - {x: -10.080649, y: 2.228267, z: 1.9924991}
+ - {x: -11.716401, y: 2.5136247, z: 4.18095}
+ - {x: -11.716401, y: 2.228267, z: 1.9924992}
+ - {x: -12.577116, y: 2.6324515, z: 4.18095}
+ - {x: -12.577116, y: 2.2886248, z: 1.9924995}
+ - {x: 9.363377, y: 0.019122094, z: 3.6142843}
+ - {x: 8.855726, y: 0.019122034, z: 3.1631844}
+ - {x: 8.530676, y: 0.019122094, z: 3.5289834}
+ - {x: 4.4370956, y: 0.059508502, z: 14.915037}
+ - {x: 4.770416, y: 0.084180206, z: 14.556133}
+ - {x: 4.4222355, y: 0.084180236, z: 14.899988}
+ - {x: 4.7852764, y: 0.059508473, z: 14.57118}
+ - {x: 4.8028307, y: 0.084180206, z: 14.553844}
+ - {x: 5.280029, y: 0.084180266, z: 15.037043}
+ - {x: 3.4590197, y: 0.24430248, z: 5.5780315}
+ - {x: 2.8483362, y: 0.25605917, z: 4.868537}
+ - {x: 3.4500132, y: 0.25605926, z: 5.585589}
+ - {x: 3.4268332, y: 0.25605926, z: 5.605038}
+ - {x: 3.9162006, y: 0.070778124, z: 6.8726144}
+ - {x: 3.9886208, y: 0.2824288, z: 6.9444294}
+ - {x: 4.000725, y: 0.061914686, z: 6.932711}
+ - {x: 7.5309668, y: 0.3108225, z: 15.612347}
+ - {x: 7.7770963, y: 0.22457565, z: 15.526311}
+ - {x: 7.754084, y: 0.19007856, z: 15.4852295}
+ - {x: 7.5665956, y: 0.3275271, z: 15.6564865}
+ - {x: -3.226275, y: 0.020835638, z: 1.5556726}
+ - {x: -3.226275, y: 0.020835161, z: -1.332468}
+ - {x: -5.706347, y: 0.020835161, z: -1.332468}
+ - {x: -5.706347, y: 0.020835638, z: 1.5556726}
+ - {x: -5.720739, y: 0.0064430237, z: -1.332468}
+ - {x: -5.720739, y: 0.0064435005, z: 1.5556726}
+ - {x: -3.211883, y: 0.0064435005, z: 1.5556726}
+ - {x: -3.211883, y: 0.0064430237, z: -1.332468}
+ - {x: -3.0983176, y: 0.056407213, z: -3.2096639}
+ - {x: -4.466311, y: 0.056407213, z: -3.2096639}
+ - {x: -4.466311, y: 0.05640745, z: -1.3506112}
+ - {x: -3.2213664, y: 0.05640745, z: -1.3506112}
+ - {x: -3.0983176, y: 0.05640745, z: -1.4845543}
+ - {x: -5.711256, y: 0.05640745, z: -1.3506112}
+ - {x: -5.8343043, y: 0.05640745, z: -1.4845543}
+ - {x: -5.8343043, y: 0.056407213, z: -3.2096639}
+ - {x: -4.466311, y: 0.028964281, z: -1.3207383}
+ - {x: -3.2099988, y: 0.028964281, z: -1.3207383}
+ - {x: -5.7226233, y: 0.028964281, z: -1.3207383}
+ - {x: -5.8617477, y: 0.028964281, z: -1.4721808}
+ - {x: -3.0708742, y: 0.028964281, z: -1.4721808}
+ - {x: -5.834304, y: 0.05640793, z: 1.7129724}
+ - {x: -5.8343043, y: 0.056408167, z: 3.5693936}
+ - {x: -4.4663115, y: 0.056408167, z: 3.5693936}
+ - {x: -5.7112556, y: 0.05640793, z: 1.5790303}
+ - {x: -4.466311, y: 0.05640793, z: 1.5790303}
+ - {x: -3.0983179, y: 0.056408167, z: 3.5693939}
+ - {x: -3.2213662, y: 0.05640793, z: 1.5790305}
+ - {x: -3.0983176, y: 0.05640793, z: 1.7129731}
+ - {x: -4.466311, y: 0.028964758, z: 1.5491571}
+ - {x: -5.722623, y: 0.028964758, z: 1.5491571}
+ - {x: -3.2099986, y: 0.028964758, z: 1.5491574}
+ - {x: -3.0708742, y: 0.028964758, z: 1.7005994}
+ - {x: -5.8617477, y: 0.028964758, z: 1.7005987}
+ - {x: 1.3614902, y: 0.037479877, z: -1.1359472}
+ - {x: 1.6871748, y: 0.037479877, z: -1.4616313}
+ - {x: -1.280329, y: 0.037479877, z: -1.4616313}
+ - {x: -0.95464516, y: 0.037479877, z: -1.1359472}
+ - {x: -0.9668281, y: 0.008067846, z: -1.1065354}
+ - {x: 1.3736734, y: 0.008067846, z: -1.1065354}
+ - {x: -1.3097405, y: 0.008067846, z: -1.4494481}
+ - {x: -0.8963094, y: 3.7962945, z: 3.5236893}
+ - {x: -1.0141449, y: 3.7962945, z: 3.631868}
+ - {x: -0.51390886, y: 3.7962947, z: 4.1608634}
+ - {x: -0.40105915, y: 3.7962947, z: 4.055919}
+ - {x: 1.6672692, y: 3.7962956, z: 9.021687}
+ - {x: 1.6672645, y: 3.7962956, z: 8.29468}
+ - {x: 0.36281586, y: 3.7963011, z: 15.835712}
+ - {x: 1.6673756, y: 3.7962966, z: 15.075336}
+ - {x: 1.6828318, y: 3.7962966, z: 15.187176}
+ - {x: 1.729198, y: 3.7962966, z: 15.290115}
+ - {x: 3.37105, y: 3.796297, z: 19.894129}
+ - {x: 4.200999, y: 3.796297, z: 19.228174}
+ - {x: -7.3618894, y: 3.7963057, z: 5.8633623}
+ - {x: -7.74201, y: 3.7962947, z: 4.2956095}
+ - {x: -7.818274, y: 3.7962947, z: 4.368949}
+ - {x: -7.92122, y: 3.7962947, z: 4.3933845}
+ - {x: -19.190922, y: 3.7962952, z: 4.3921785}
+ - {x: -19.190922, y: 3.7962952, z: 5.4562783}
+ - {x: -7.1046977, y: 3.7963042, z: 5.7862473}
+ - {x: -6.909342, y: 3.7963014, z: 5.6020746}
+ - {x: -6.1140733, y: 3.7963037, z: 4.166799}
+ - {x: -6.905064, y: 3.7962945, z: 2.994889}
+ - {x: -6.725854, y: 3.7962945, z: 2.897004}
+ - {x: -5.763026, y: 3.7937603, z: 2.897004}
+ - {x: -5.0959425, y: 3.7963057, z: 4.1986847}
+ - {x: -3.705709, y: 3.796305, z: 4.198689}
+ - {x: -1.8260264, y: 3.7962945, z: 2.8966517}
+ - {x: -2.3065658, y: 3.7963033, z: 4.1872163}
+ - {x: -1.7188439, y: 3.7962945, z: 2.9178176}
+ - {x: -1.995249, y: 3.7963011, z: 4.5449786}
+ - {x: -1.5042014, y: 3.7963014, z: 5.082449}
+ - {x: 0.27329683, y: 3.796299, z: 7.0202637}
+ - {x: 1.5873656, y: 3.7962954, z: 6.385689}
+ - {x: 1.6472688, y: 3.7962954, z: 6.4781485}
+ - {x: 0.26533937, y: 3.7962956, z: 8.294093}
+ - {x: 1.6672373, y: 3.7962954, z: 6.5864925}
+ - {x: 0.2648301, y: 3.7962956, z: 9.021185}
+ - {x: 0.25453568, y: 3.796297, z: 15.455618}
+ - {x: 3.0228958, y: 3.7963023, z: 20.11085}
+ - {x: 11.738981, y: 0.047137737, z: 0.26332712}
+ - {x: 7.586059, y: 0.047137737, z: 0.26332712}
+ - {x: 7.5620046, y: 0.023083448, z: 0.28738117}
+ - {x: 11.738981, y: 0.023083448, z: 0.28738117}
+ - {x: 7.167605, y: 0.047137737, z: -0.155128}
+ - {x: 7.167605, y: 0.04713726, z: -4.187607}
+ - {x: 7.1435494, y: 0.023082972, z: -4.187607}
+ - {x: 7.1435494, y: 0.023083448, z: -0.13107395}
+ - {x: 8.199379, y: 0.047139406, z: 15.059787}
+ - {x: 8.199381, y: 0.04713893, z: 11.027311}
+ - {x: 8.175325, y: 0.02308464, z: 11.027311}
+ - {x: 8.175325, y: 0.023085117, z: 15.083841}
+ - {x: 8.199383, y: 0.04713869, z: 8.469566}
+ - {x: 8.175327, y: 0.023084402, z: 8.445513}
+ - {x: 8.5937805, y: 0.023084402, z: 8.027057}
+ - {x: 8.617836, y: 0.04713869, z: 8.051111}
+ - {x: 4.23465, y: 0.023084164, z: 7.314005}
+ - {x: 4.2356086, y: 0.023083687, z: 3.253695}
+ - {x: 4.211612, y: 0.047137976, z: 3.2778077}
+ - {x: 4.2105947, y: 0.047138453, z: 7.314005}
+ - {x: 3.816136, y: 0.023083687, z: 2.836261}
+ - {x: 3.7921386, y: 0.047137976, z: 2.8603737}
+ - {x: -1.8647499, y: 0.047137976, z: 2.863071}
+ - {x: -1.8647499, y: 0.023083687, z: 2.839016}
+ - {x: 11.738981, y: 0.04713726, z: -4.187607}
+ - {x: 8.617834, y: 0.047139645, z: 15.478243}
+ - {x: 11.983061, y: 0.04713893, z: 11.027312}
+ - {x: 1.0538254, y: 0.047138453, z: 7.314003}
+ - {x: 11.555101, y: 0.00000166893, z: 14.962137}
+ - {x: 11.555101, y: -0.00000023841858, z: -1.1148024}
+ - {x: 8.018309, y: -0.00000047683716, z: -3.8344698}
+ - {x: -0.5122297, y: -0.00000047683716, z: -3.8344698}
+ - {x: -1.7242274, y: -0.00000047683716, z: -2.669025}
+ - {x: -6.855139, y: -0.00000047683716, z: -2.6728497}
+ - {x: -8.00596, y: -0.00000047683716, z: -3.8344698}
+ - {x: -18.798937, y: -0.00000047683716, z: -3.8344707}
+ - {x: -18.798937, y: -0.0000009536743, z: -8.417055}
+ - {x: -23.446592, y: -0.0000009536743, z: -8.417055}
+ - {x: -23.446592, y: 0.00000047683716, z: 4.8219576}
+ - {x: -7.6909227, y: 0.00000047683716, z: 4.8219576}
+ - {x: -6.62018, y: 0.00000023841858, z: 3.2085524}
+ - {x: -1.8026767, y: 0.00000023841858, z: 3.2085524}
+ - {x: 1.4386706, y: 0.00000071525574, z: 6.5914836}
+ - {x: 1.3815131, y: 0.00000166893, z: 15.304006}
+ - {x: 9.006859, y: 0.00000333786, z: 28.021118}
+ - {x: 16.126453, y: 0.0000026226044, z: 22.312569}
+ - {x: 4.070241, y: 2.0998063, z: 14.94589}
+ - {x: 1.7253103, y: 2.6977696, z: 15.355155}
+ - {x: 2.2982607, y: 2.6429324, z: 16.186647}
+ - {x: 3.4972906, y: 2.3163414, z: 14.114401}
+ - {x: 4.7782707, y: 2.1055183, z: 15.953145}
+ - {x: 3.0062904, y: 2.6486447, z: 17.1939}
+ - {x: 5.386051, y: 2.3388183, z: 16.821146}
+ - {x: 3.6140718, y: 2.720247, z: 18.061901}
+ - {x: 12.548441, y: 2.4118292, z: 17.09832}
+ - {x: 12.192013, y: 2.52848, z: 16.517868}
+ - {x: 10.821106, y: 2.2747018, z: 17.32}
+ - {x: 11.171377, y: 2.2154493, z: 17.904053}
+ - {x: 13.16885, y: 2.4118292, z: 18.15865}
+ - {x: 11.791788, y: 2.2154496, z: 18.964384}
+ - {x: 13.482786, y: 2.52848, z: 18.723907}
+ - {x: 12.111885, y: 2.2747018, z: 19.52604}
+ m_Indices: c6000000c7000000c8000000c6000000c8000000c9000000000000000100000002000000000000000300000001000000020000000400000000000000050000000600000007000000c4000000c6000000c9000000c4000000c9000000ca0000000000000004000000080000008c000000880000008b0000008c0000008d00000088000000c4000000c5000000c60000003d0000003c0000003e0000003d0000003b0000003c0000003b0000003a0000003c0000003b000000370000003a00000037000000380000003900000037000000390000003a000000880000008a0000008b00000088000000890000008a000000880000008e00000089000000890000008e0000008f000000c4000000ca000000cb000000890000008f000000900000005c000000620000006100000061000000600000005c000000600000005d0000005c000000660000006000000061000000660000006500000060000000630000006000000065000000630000005d00000060000000560000005500000057000000560000005700000058000000530000005400000055000000530000005500000056000000c4000000cb000000cc0000006b00000070000000710000006b0000006c0000007000000071000000740000006800000071000000680000006b0000006a0000006b000000680000006a0000006c0000006b00000068000000690000006a0000009100000090000000920000009200000090000000930000009300000090000000940000009300000094000000950000008900000090000000910000005e0000005d00000063000000700000006c0000006e0000005e0000006300000064000000700000006e000000720000006c0000006a0000006d0000005b0000005c0000005d0000005d0000005e0000005b0000006d0000006e0000006c00000054000000530000005900000054000000590000005a0000005e0000005f0000005b000000640000005f0000005e0000006d0000006f0000006e00000073000000720000006e000000730000006e0000006f00000064000000670000005f0000007b00000078000000770000007b000000790000007800000075000000770000007800000075000000780000007900000075000000790000007a000000750000007600000077000000b9000000b8000000b7000000b9000000b7000000ba00000096000000970000009800000096000000950000009700000093000000950000009600000025000000260000002700000098000000990000007d0000009800000097000000990000007c0000007d0000007e0000007c0000007e0000007f0000007d000000990000009a0000007d0000009a0000007e000000250000002700000028000000b6000000b8000000b90000007e0000009a0000009b0000007e0000009b0000009c0000009c0000009b0000009d0000009d0000009b0000009e0000009d0000009e0000009f0000009f0000009e000000a00000009f000000a00000008100000081000000a0000000a100000081000000a100000082000000800000008100000082000000800000008200000083000000820000008400000083000000820000008500000084000000b6000000b9000000be00000025000000280000002900000025000000290000002a000000b5000000b7000000b8000000b6000000b5000000b8000000b5000000b4000000b7000000090000000b0000000c000000090000000a0000000b000000a7000000a8000000a9000000a7000000a9000000aa000000a7000000aa000000a5000000a7000000a5000000a40000003f00000040000000410000000d0000000a00000009000000a8000000a7000000bb000000a4000000bb000000a7000000a3000000a5000000a6000000a3000000a4000000a5000000bb000000a4000000a30000000f0000000a0000000e0000000d0000000e0000000a0000000f0000000e00000010000000110000000e0000000d000000110000000d0000001200000048000000490000004a000000490000004b0000004a0000002a000000290000002b0000002a0000002b0000002c000000b3000000b4000000b5000000b3000000b5000000b60000002d0000002c0000002b000000bf000000c1000000c2000000bf000000c2000000c3000000bf000000c0000000c1000000bf000000c4000000cc000000bf000000c3000000c40000002d0000002b0000002e0000004c0000004d0000004e000000af000000b1000000b0000000af000000b2000000b1000000bf000000cc000000cd000000ac000000b2000000af000000b2000000ac000000bd000000af000000b0000000ad000000af000000ad000000ac0000002f00000030000000310000002f0000003100000032000000bf000000cd000000ce000000850000008200000086000000350000003400000036000000330000002f00000032000000330000003200000034000000350000003300000034000000d1000000d4000000d2000000d1000000d2000000d3000000850000008600000087000000d5000000d1000000d3000000d5000000d3000000d6000000d7000000d5000000d6000000d7000000d6000000d80000004200000043000000440000004200000045000000430000004600000043000000450000004700000046000000450000004f0000005000000051000000500000004f00000052000000ab000000ad000000ae000000ab000000ac000000ad000000bc000000ac000000ab000000bd000000ac000000bc000000d9000000da000000db000000d9000000db000000dc00000082000000a200000086000000bf000000ce000000cf000000130000001400000015000000130000001500000016000000130000001600000017000000220000002100000014000000220000001400000013000000230000002200000013000000230000001300000017000000dd000000d9000000dc000000dd000000dc000000de000000bf000000cf000000d0000000df000000dd000000de000000df000000de000000e000000018000000190000001a000000180000001b000000190000001f00000020000000210000001f00000021000000220000001f00000022000000230000001f0000001e000000200000001e0000001b000000180000001e0000001d0000001b0000001f0000001d0000001e0000001f00000023000000240000001c0000001b0000001d000000
+ m_Bounds:
+ m_Center: {x: -3.6600695, y: 1.8883543, z: 9.8020315}
+ m_Extent: {x: 19.786522, y: 1.9079514, z: 18.219086}
+ m_Nodes:
+ - min: {x: -23.446592, y: -0.019597054, z: -8.417055}
+ max: {x: 16.126453, y: 3.7963057, z: 28.021118}
+ i: -30
+ n: -1
+ - min: {x: -23.446592, y: -0.0029335022, z: -8.417055}
+ max: {x: 4.2105947, y: 3.7963057, z: 15.835712}
+ i: -14
+ n: -1
+ - min: {x: -23.446592, y: -0.0029335022, z: -8.417055}
+ max: {x: -1.8026767, y: 3.7963057, z: 5.8633623}
+ i: -6
+ n: -1
+ - min: {x: -23.446592, y: -0.0029335022, z: -8.417055}
+ max: {x: -6.1140733, y: 3.7963057, z: 5.8633623}
+ i: -2
+ n: -1
+ - min: {x: -23.446592, y: -0.0029335022, z: -8.417055}
+ max: {x: -6.855139, y: 3.7963057, z: 5.8633623}
+ i: 0
+ n: 12
+ - min: {x: -12.577116, y: -0.00000047683716, z: -2.6728497}
+ max: {x: -6.1140733, y: 3.7963057, z: 5.8633623}
+ i: 12
+ n: 12
+ - min: {x: -7.74201, y: -0.00000047683716, z: -3.2096639}
+ max: {x: -1.8026767, y: 3.7963057, z: 4.2956095}
+ i: -2
+ n: -1
+ - min: {x: -6.855139, y: -0.00000047683716, z: -3.2096639}
+ max: {x: -1.8026767, y: 0.05640745, z: 3.2085524}
+ i: 24
+ n: 12
+ - min: {x: -7.74201, y: 0.028964758, z: 1.5491571}
+ max: {x: -3.705709, y: 3.7963057, z: 4.2956095}
+ i: 36
+ n: 12
+ - min: {x: -5.763026, y: 0.0064430237, z: -3.2096639}
+ max: {x: 4.2105947, y: 3.796305, z: 15.835712}
+ i: -6
+ n: -1
+ - min: {x: -4.4663115, y: 0.0064430237, z: -3.2096639}
+ max: {x: 3.816136, y: 0.056408167, z: 3.5693939}
+ i: -2
+ n: 83
+ - min: {x: -4.4663115, y: 0.0064430237, z: -3.2096639}
+ max: {x: -3.0983176, y: 0.056408167, z: 3.5693939}
+ i: 48
+ n: 12
+ - min: {x: -3.2213662, y: 0.008067846, z: -1.4845543}
+ max: {x: 3.816136, y: 0.056408167, z: 3.5693939}
+ i: 60
+ n: 12
+ - min: {x: -5.763026, y: 0.047137976, z: 2.8603737}
+ max: {x: 4.2105947, y: 3.796305, z: 15.835712}
+ i: -2
+ n: -1
+ - min: {x: -5.763026, y: 0.047137976, z: 2.8603737}
+ max: {x: 4.2105947, y: 3.796305, z: 7.314005}
+ i: 72
+ n: 12
+ - min: {x: -1.5042014, y: 3.7962947, z: 4.1608634}
+ max: {x: 1.729198, y: 3.7963014, z: 15.835712}
+ i: 84
+ n: 13
+ - min: {x: -6.855139, y: -0.019597054, z: -4.187607}
+ max: {x: 16.126453, y: 3.7963023, z: 28.021118}
+ i: -14
+ n: 0
+ - min: {x: -6.855139, y: -0.019597054, z: -4.187607}
+ max: {x: 11.983061, y: 2.6594641, z: 15.304006}
+ i: -6
+ n: 2093
+ - min: {x: -1.8647499, y: -0.019597054, z: -4.187607}
+ max: {x: 11.738981, y: 2.6071727, z: 7.314005}
+ i: -2
+ n: 0
+ - min: {x: -1.8647499, y: -0.019597054, z: -4.187607}
+ max: {x: 8.600351, y: 2.6071727, z: 7.314005}
+ i: 97
+ n: 12
+ - min: {x: 7.167605, y: -0.019597054, z: -4.187607}
+ max: {x: 11.738981, y: 0.48012185, z: 3.6142843}
+ i: 109
+ n: 12
+ - min: {x: -6.855139, y: -0.00000047683716, z: -3.8344698}
+ max: {x: 11.983061, y: 2.6594641, z: 15.304006}
+ i: -2
+ n: 0
+ - min: {x: -6.855139, y: -0.00000047683716, z: -3.8344698}
+ max: {x: 11.555101, y: 2.6071727, z: 14.962137}
+ i: 121
+ n: 12
+ - min: {x: -1.8026767, y: 0.00000023841858, z: 3.2085524}
+ max: {x: 11.983061, y: 2.6594641, z: 15.304006}
+ i: 133
+ n: 12
+ - min: {x: 0.36281586, y: -0.01836729, z: 10.825794}
+ max: {x: 16.126453, y: 3.7963023, z: 28.021118}
+ i: -6
+ n: 0
+ - min: {x: 0.36281586, y: 0.02308464, z: 10.825794}
+ max: {x: 12.548441, y: 3.7963011, z: 19.894129}
+ i: -2
+ n: 0
+ - min: {x: 0.36281586, y: 1.787593, z: 10.825794}
+ max: {x: 5.386051, y: 3.7963011, z: 19.894129}
+ i: 145
+ n: 12
+ - min: {x: 4.4222355, y: 0.02308464, z: 11.027311}
+ max: {x: 12.548441, y: 2.52848, z: 17.904053}
+ i: 157
+ n: 12
+ - min: {x: 0.36281586, y: -0.01836729, z: 14.962137}
+ max: {x: 16.126453, y: 3.7963023, z: 28.021118}
+ i: -2
+ n: 0
+ - min: {x: 0.36281586, y: -0.018366575, z: 14.962137}
+ max: {x: 16.126453, y: 3.7963023, z: 28.021118}
+ i: 169
+ n: 12
+ - min: {x: 11.791788, y: -0.01836729, z: 16.887903}
+ max: {x: 14.596785, y: 2.52848, z: 23.437527}
+ i: 181
+ n: 13
+ m_OffMeshLinks: []
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/NavMesh.asset.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/NavMesh.asset.meta
new file mode 100644
index 00000000..874a9870
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Market/NavMesh.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 98b9c93af4ba5f24d823a1c6f098d0d9
+timeCreated: 1473252686
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent.meta
new file mode 100644
index 00000000..0d27ba2a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 497c4998ad8a45e4ea0cf409bf2232d8
+folderAsset: yes
+timeCreated: 1473255898
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent.unity b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent.unity
new file mode 100644
index 00000000..ba3e7ba5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent.unity
@@ -0,0 +1,1148 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!29 &1
+OcclusionCullingSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_OcclusionBakeSettings:
+ smallestOccluder: 5
+ smallestHole: 0.25
+ backfaceThreshold: 100
+ m_SceneGUID: 00000000000000000000000000000000
+ m_OcclusionCullingData: {fileID: 0}
+--- !u!104 &2
+RenderSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 8
+ m_Fog: 0
+ m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_FogMode: 3
+ m_FogDensity: 0.01
+ m_LinearFogStart: 0
+ m_LinearFogEnd: 300
+ m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
+ m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
+ m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
+ m_AmbientIntensity: 1
+ m_AmbientMode: 3
+ m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
+ m_SkyboxMaterial: {fileID: 0}
+ m_HaloStrength: 0.5
+ m_FlareStrength: 1
+ m_FlareFadeSpeed: 3
+ m_HaloTexture: {fileID: 0}
+ m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
+ m_DefaultReflectionMode: 0
+ m_DefaultReflectionResolution: 128
+ m_ReflectionBounces: 1
+ m_ReflectionIntensity: 1
+ m_CustomReflection: {fileID: 0}
+ m_Sun: {fileID: 0}
+ m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
+--- !u!157 &3
+LightmapSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 11
+ m_GIWorkflowMode: 1
+ m_GISettings:
+ serializedVersion: 2
+ m_BounceScale: 1
+ m_IndirectOutputScale: 1
+ m_AlbedoBoost: 1
+ m_TemporalCoherenceThreshold: 1
+ m_EnvironmentLightingMode: 0
+ m_EnableBakedLightmaps: 1
+ m_EnableRealtimeLightmaps: 0
+ m_LightmapEditorSettings:
+ serializedVersion: 9
+ m_Resolution: 2
+ m_BakeResolution: 40
+ m_TextureWidth: 1024
+ m_TextureHeight: 1024
+ m_AO: 0
+ m_AOMaxDistance: 1
+ m_CompAOExponent: 0
+ m_CompAOExponentDirect: 0
+ m_Padding: 2
+ m_LightmapParameters: {fileID: 0}
+ m_LightmapsBakeMode: 0
+ m_TextureCompression: 1
+ m_FinalGather: 0
+ m_FinalGatherFiltering: 1
+ m_FinalGatherRayCount: 1024
+ m_ReflectionCompression: 2
+ m_MixedBakeMode: 1
+ m_BakeBackend: 0
+ m_PVRSampling: 1
+ m_PVRDirectSampleCount: 32
+ m_PVRSampleCount: 500
+ m_PVRBounces: 2
+ m_PVRFiltering: 0
+ m_PVRFilteringMode: 1
+ m_PVRCulling: 1
+ m_PVRFilteringGaussRadiusDirect: 1
+ m_PVRFilteringGaussRadiusIndirect: 5
+ m_PVRFilteringGaussRadiusAO: 2
+ m_PVRFilteringAtrousColorSigma: 1
+ m_PVRFilteringAtrousNormalSigma: 1
+ m_PVRFilteringAtrousPositionSigma: 1
+ m_LightingDataAsset: {fileID: 112000002, guid: b9c9699ecd2ffa440ac58934720b093a,
+ type: 2}
+ m_UseShadowmask: 0
+--- !u!196 &4
+NavMeshSettings:
+ serializedVersion: 2
+ m_ObjectHideFlags: 0
+ m_BuildSettings:
+ serializedVersion: 2
+ agentTypeID: 0
+ agentRadius: 0.5
+ agentHeight: 2
+ agentSlope: 45
+ agentClimb: 0.4
+ ledgeDropHeight: 0
+ maxJumpAcrossDistance: 0
+ minRegionArea: 2
+ manualCellSize: 0
+ cellSize: 0.16666667
+ manualTileSize: 0
+ tileSize: 256
+ accuratePlacement: 0
+ m_NavMeshData: {fileID: 0}
+--- !u!1 &312000294
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 126730, guid: 7e1e644ceb542f244a94d4a588f67420, type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 312000297}
+ - component: {fileID: 312000296}
+ - component: {fileID: 312000295}
+ m_Layer: 0
+ m_Name: EventSystem
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &312000295
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 11425036, guid: 7e1e644ceb542f244a94d4a588f67420,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 312000294}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_HorizontalAxis: Horizontal
+ m_VerticalAxis: Vertical
+ m_SubmitButton: Submit
+ m_CancelButton: Cancel
+ m_InputActionsPerSecond: 10
+ m_RepeatDelay: 0.5
+ m_ForceModuleActive: 0
+--- !u!114 &312000296
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 11450688, guid: 7e1e644ceb542f244a94d4a588f67420,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 312000294}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_FirstSelected: {fileID: 0}
+ m_sendNavigationEvents: 1
+ m_DragThreshold: 5
+--- !u!4 &312000297
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 419912, guid: 7e1e644ceb542f244a94d4a588f67420, type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 312000294}
+ 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: 0}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &313547315
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 313547321}
+ - component: {fileID: 313547320}
+ - component: {fileID: 313547319}
+ - component: {fileID: 313547318}
+ - component: {fileID: 313547316}
+ m_Layer: 5
+ m_Name: PersistentCanvas
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &313547316
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 313547315}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 46d8bad6f895a8f468f8f52259447a65, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ itemImages:
+ - {fileID: 523830082}
+ - {fileID: 800415344}
+ - {fileID: 1878583916}
+ - {fileID: 1206639140}
+ items:
+ - {fileID: 0}
+ - {fileID: 0}
+ - {fileID: 0}
+ - {fileID: 0}
+--- !u!114 &313547318
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 313547315}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_IgnoreReversedGraphics: 1
+ m_BlockingObjects: 0
+ m_BlockingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+--- !u!114 &313547319
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 313547315}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_UiScaleMode: 1
+ m_ReferencePixelsPerUnit: 100
+ m_ScaleFactor: 1
+ m_ReferenceResolution: {x: 1920, y: 1080}
+ m_ScreenMatchMode: 0
+ m_MatchWidthOrHeight: 0
+ m_PhysicalUnit: 3
+ m_FallbackScreenDPI: 96
+ m_DefaultSpriteDPI: 96
+ m_DynamicPixelsPerUnit: 1
+--- !u!223 &313547320
+Canvas:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 313547315}
+ m_Enabled: 1
+ serializedVersion: 3
+ m_RenderMode: 0
+ m_Camera: {fileID: 0}
+ m_PlaneDistance: 100
+ m_PixelPerfect: 0
+ m_ReceivesEvents: 1
+ m_OverrideSorting: 0
+ m_OverridePixelPerfect: 0
+ m_SortingBucketNormalizedSize: 0
+ m_AdditionalShaderChannelsFlag: 25
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_TargetDisplay: 0
+--- !u!224 &313547321
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 313547315}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 1335123713}
+ - {fileID: 1708470358}
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 0, y: 0}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 0, y: 0}
+ m_Pivot: {x: 0, y: 0}
+--- !u!1 &353158844
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 353158847}
+ - component: {fileID: 353158845}
+ - component: {fileID: 353158846}
+ m_Layer: 0
+ m_Name: SceneController
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!81 &353158845
+AudioListener:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 353158844}
+ m_Enabled: 1
+--- !u!114 &353158846
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 353158844}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f71c7948c9c09fe409c0b88b7e7d98e3, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ faderCanvasGroup: {fileID: 1708470355}
+ fadeDuration: 1
+ startingSceneName: SecurityRoom
+ initialStartingPositionName: DoorToMarket
+ playerSaveData: {fileID: 11400000, guid: 55d72825bf06cf44e9cbc1b37812cc6f, type: 2}
+--- !u!4 &353158847
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 353158844}
+ 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: 0}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &523830080
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 1335123713}
+ m_Modifications:
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_RootOrder
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchoredPosition.x
+ value: 67.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchoredPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_SizeDelta.x
+ value: 135
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_SizeDelta.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMin.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMin.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMax.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMax.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Pivot.x
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Pivot.y
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 193246, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Name
+ value: ItemSlot0
+ objectReference: {fileID: 0}
+ - target: {fileID: 11461466, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Enabled
+ value: 0
+ objectReference: {fileID: 0}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ m_IsPrefabParent: 0
+--- !u!224 &523830081 stripped
+RectTransform:
+ m_PrefabParentObject: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f,
+ type: 2}
+ m_PrefabInternal: {fileID: 523830080}
+--- !u!114 &523830082 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11461466, guid: 6c7afed0b4d56a047a9a515074a2e83f,
+ type: 2}
+ m_PrefabInternal: {fileID: 523830080}
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+--- !u!1001 &800415342
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 1335123713}
+ m_Modifications:
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_RootOrder
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchoredPosition.x
+ value: 67.50006
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchoredPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_SizeDelta.x
+ value: 135
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_SizeDelta.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMin.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMin.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMax.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMax.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Pivot.x
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Pivot.y
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalScale.x
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalScale.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 193246, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Name
+ value: ItemSlot1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11461466, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Enabled
+ value: 0
+ objectReference: {fileID: 0}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ m_IsPrefabParent: 0
+--- !u!224 &800415343 stripped
+RectTransform:
+ m_PrefabParentObject: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f,
+ type: 2}
+ m_PrefabInternal: {fileID: 800415342}
+--- !u!114 &800415344 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11461466, guid: 6c7afed0b4d56a047a9a515074a2e83f,
+ type: 2}
+ m_PrefabInternal: {fileID: 800415342}
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+--- !u!1 &1131390652
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1131390654}
+ - component: {fileID: 1131390653}
+ m_Layer: 0
+ m_Name: BackgroundMusic
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!82 &1131390653
+AudioSource:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1131390652}
+ m_Enabled: 1
+ serializedVersion: 4
+ OutputAudioMixerGroup: {fileID: 0}
+ m_audioClip: {fileID: 8300000, guid: 460cbf252686b5f40b1ec18039f70b59, type: 3}
+ m_PlayOnAwake: 1
+ m_Volume: 1
+ m_Pitch: 1
+ Loop: 1
+ Mute: 0
+ Spatialize: 0
+ SpatializePostEffects: 0
+ Priority: 128
+ DopplerLevel: 1
+ MinDistance: 1
+ MaxDistance: 500
+ Pan2D: 0
+ rolloffMode: 0
+ BypassEffects: 0
+ BypassListenerEffects: 0
+ BypassReverbZones: 0
+ rolloffCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ - serializedVersion: 2
+ time: 1
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ panLevelCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ spreadCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+ reverbZoneMixCustomCurve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 2
+ time: 0
+ value: 1
+ inSlope: 0
+ outSlope: 0
+ tangentMode: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 0
+--- !u!4 &1131390654
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1131390652}
+ 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: 0}
+ m_RootOrder: 4
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1001 &1206639138
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 1335123713}
+ m_Modifications:
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_RootOrder
+ value: 3
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchoredPosition.x
+ value: 67.50006
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchoredPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_SizeDelta.x
+ value: 135
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_SizeDelta.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMin.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMin.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMax.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMax.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Pivot.x
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Pivot.y
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalScale.x
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalScale.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 193246, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Name
+ value: ItemSlot3
+ objectReference: {fileID: 0}
+ - target: {fileID: 11461466, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Enabled
+ value: 0
+ objectReference: {fileID: 0}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ m_IsPrefabParent: 0
+--- !u!224 &1206639139 stripped
+RectTransform:
+ m_PrefabParentObject: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f,
+ type: 2}
+ m_PrefabInternal: {fileID: 1206639138}
+--- !u!114 &1206639140 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11461466, guid: 6c7afed0b4d56a047a9a515074a2e83f,
+ type: 2}
+ m_PrefabInternal: {fileID: 1206639138}
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+--- !u!1 &1335123712
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1335123713}
+ - component: {fileID: 1335123714}
+ m_Layer: 5
+ m_Name: Inventory
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!224 &1335123713
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1335123712}
+ 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: 523830081}
+ - {fileID: 800415343}
+ - {fileID: 1878583915}
+ - {fileID: 1206639139}
+ m_Father: {fileID: 313547321}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 1, y: 0.5}
+ m_AnchorMax: {x: 1, y: 0.5}
+ m_AnchoredPosition: {x: -87.5, y: 0}
+ m_SizeDelta: {x: 135, y: 600}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!114 &1335123714
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1335123712}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1297475563, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_ChildAlignment: 0
+ m_Spacing: 20
+ m_ChildForceExpandWidth: 1
+ m_ChildForceExpandHeight: 1
+ m_ChildControlWidth: 1
+ m_ChildControlHeight: 1
+--- !u!1 &1446455601
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1446455603}
+ - component: {fileID: 1446455602}
+ m_Layer: 0
+ m_Name: DataResetter
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &1446455602
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1446455601}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 53c91b699634ffb4d8adb3f3393588e0, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ resettableScriptableObjects:
+ - {fileID: 11400000, guid: fd02464d008c790478d9826aba7c7847, type: 2}
+ - {fileID: 11400000, guid: 48d6089c54f7ceb42b1f63276fdc2247, type: 2}
+ - {fileID: 11400000, guid: 55d72825bf06cf44e9cbc1b37812cc6f, type: 2}
+ - {fileID: 11400000, guid: 270c372e873657242ab00b2f602b468f, type: 2}
+--- !u!4 &1446455603
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1446455601}
+ 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: 0}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1708470354
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1708470358}
+ - component: {fileID: 1708470357}
+ - component: {fileID: 1708470356}
+ - component: {fileID: 1708470355}
+ m_Layer: 5
+ m_Name: FadeImage
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!225 &1708470355
+CanvasGroup:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1708470354}
+ m_Enabled: 1
+ m_Alpha: 0
+ m_Interactable: 1
+ m_BlocksRaycasts: 0
+ m_IgnoreParentGroups: 0
+--- !u!114 &1708470356
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1708470354}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0, g: 0, b: 0, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 0}
+ m_Type: 0
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!222 &1708470357
+CanvasRenderer:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1708470354}
+--- !u!224 &1708470358
+RectTransform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1708470354}
+ 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: 313547321}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 1, y: 1}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 0, y: 0}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!1001 &1878583914
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 1335123713}
+ m_Modifications:
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_RootOrder
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchoredPosition.x
+ value: 67.50006
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchoredPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_SizeDelta.x
+ value: 135
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_SizeDelta.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMin.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMin.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMax.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_AnchorMax.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Pivot.x
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Pivot.y
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalScale.x
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_LocalScale.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 193246, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Name
+ value: ItemSlot2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11461466, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ propertyPath: m_Enabled
+ value: 0
+ objectReference: {fileID: 0}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: 6c7afed0b4d56a047a9a515074a2e83f, type: 2}
+ m_IsPrefabParent: 0
+--- !u!224 &1878583915 stripped
+RectTransform:
+ m_PrefabParentObject: {fileID: 22480890, guid: 6c7afed0b4d56a047a9a515074a2e83f,
+ type: 2}
+ m_PrefabInternal: {fileID: 1878583914}
+--- !u!114 &1878583916 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11461466, guid: 6c7afed0b4d56a047a9a515074a2e83f,
+ type: 2}
+ m_PrefabInternal: {fileID: 1878583914}
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+--- !u!1 &1990360983
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1990360988}
+ - component: {fileID: 1990360987}
+ - component: {fileID: 1990360986}
+ - component: {fileID: 1990360985}
+ m_Layer: 0
+ m_Name: Camera
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!92 &1990360985
+Behaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1990360983}
+ m_Enabled: 1
+--- !u!124 &1990360986
+Behaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1990360983}
+ m_Enabled: 1
+--- !u!20 &1990360987
+Camera:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1990360983}
+ m_Enabled: 1
+ serializedVersion: 2
+ m_ClearFlags: 1
+ m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0}
+ m_NormalizedViewPortRect:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 1
+ height: 1
+ near clip plane: 0.3
+ far clip plane: 1000
+ field of view: 60
+ orthographic: 0
+ orthographic size: 5
+ m_Depth: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 32
+ m_RenderingPath: -1
+ m_TargetTexture: {fileID: 0}
+ m_TargetDisplay: 0
+ m_TargetEye: 3
+ m_HDR: 0
+ m_AllowMSAA: 1
+ m_ForceIntoRT: 0
+ m_OcclusionCulling: 1
+ m_StereoConvergence: 10
+ m_StereoSeparation: 0.022
+ m_StereoMirrorMode: 0
+--- !u!4 &1990360988
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1990360983}
+ 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: 0}
+ m_RootOrder: 5
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent.unity.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent.unity.meta
new file mode 100644
index 00000000..f8756412
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent.unity.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ef18a6fcc8276e541a14d91f5fb2d496
+timeCreated: 1456932396
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent/LightingData.asset b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent/LightingData.asset
new file mode 100644
index 00000000..18ef6da9
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent/LightingData.asset differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent/LightingData.asset.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent/LightingData.asset.meta
new file mode 100644
index 00000000..3b6e834b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/Persistent/LightingData.asset.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: b9c9699ecd2ffa440ac58934720b093a
+timeCreated: 1498493664
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 25800000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom.meta
new file mode 100644
index 00000000..2f416237
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 924f450d91ff3894da9892259976054e
+folderAsset: yes
+timeCreated: 1456936121
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom.unity b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom.unity
new file mode 100644
index 00000000..1f000f7b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom.unity
@@ -0,0 +1,1806 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!29 &1
+OcclusionCullingSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_OcclusionBakeSettings:
+ smallestOccluder: 5
+ smallestHole: 0.25
+ backfaceThreshold: 100
+ m_SceneGUID: 00000000000000000000000000000000
+ m_OcclusionCullingData: {fileID: 0}
+--- !u!104 &2
+RenderSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 8
+ m_Fog: 0
+ m_FogColor: {r: 0.33088237, g: 0.3055125, b: 0.1995026, a: 1}
+ m_FogMode: 2
+ m_FogDensity: 0.025
+ m_LinearFogStart: 5
+ m_LinearFogEnd: 20
+ m_AmbientSkyColor: {r: 0.39387426, g: 0.35363325, b: 0.4294118, a: 0.8}
+ m_AmbientEquatorColor: {r: 0.0912, g: 0.1, b: 0.106400006, a: 0.8}
+ m_AmbientGroundColor: {r: 0.0376, g: 0.0344, b: 0.028, a: 0.8}
+ m_AmbientIntensity: 0.8
+ m_AmbientMode: 3
+ m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
+ m_SkyboxMaterial: {fileID: 0}
+ m_HaloStrength: 0.5
+ m_FlareStrength: 1
+ m_FlareFadeSpeed: 3
+ m_HaloTexture: {fileID: 0}
+ m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
+ m_DefaultReflectionMode: 0
+ m_DefaultReflectionResolution: 128
+ m_ReflectionBounces: 1
+ m_ReflectionIntensity: 1
+ m_CustomReflection: {fileID: 0}
+ m_Sun: {fileID: 0}
+ m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
+--- !u!157 &3
+LightmapSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 11
+ m_GIWorkflowMode: 1
+ m_GISettings:
+ serializedVersion: 2
+ m_BounceScale: 1
+ m_IndirectOutputScale: 1
+ m_AlbedoBoost: 1
+ m_TemporalCoherenceThreshold: 1
+ m_EnvironmentLightingMode: 0
+ m_EnableBakedLightmaps: 1
+ m_EnableRealtimeLightmaps: 0
+ m_LightmapEditorSettings:
+ serializedVersion: 9
+ m_Resolution: 2
+ m_BakeResolution: 30
+ m_TextureWidth: 1024
+ m_TextureHeight: 1024
+ m_AO: 1
+ m_AOMaxDistance: 1
+ m_CompAOExponent: 3
+ m_CompAOExponentDirect: 1
+ m_Padding: 4
+ m_LightmapParameters: {fileID: 15200, guid: 0000000000000000f000000000000000,
+ type: 0}
+ m_LightmapsBakeMode: 0
+ m_TextureCompression: 1
+ m_FinalGather: 0
+ m_FinalGatherFiltering: 1
+ m_FinalGatherRayCount: 1024
+ m_ReflectionCompression: 2
+ m_MixedBakeMode: 1
+ m_BakeBackend: 0
+ m_PVRSampling: 1
+ m_PVRDirectSampleCount: 32
+ m_PVRSampleCount: 1000
+ m_PVRBounces: 2
+ m_PVRFiltering: 0
+ m_PVRFilteringMode: 1
+ m_PVRCulling: 1
+ m_PVRFilteringGaussRadiusDirect: 1
+ m_PVRFilteringGaussRadiusIndirect: 5
+ m_PVRFilteringGaussRadiusAO: 2
+ m_PVRFilteringAtrousColorSigma: 1
+ m_PVRFilteringAtrousNormalSigma: 1
+ m_PVRFilteringAtrousPositionSigma: 1
+ m_LightingDataAsset: {fileID: 112000002, guid: f063a860947fdde438b2418b9255bd91,
+ type: 2}
+ m_UseShadowmask: 1
+--- !u!196 &4
+NavMeshSettings:
+ serializedVersion: 2
+ m_ObjectHideFlags: 0
+ m_BuildSettings:
+ serializedVersion: 2
+ agentTypeID: 0
+ agentRadius: 0.5
+ agentHeight: 2
+ agentSlope: 1
+ agentClimb: 0.2
+ ledgeDropHeight: 0
+ maxJumpAcrossDistance: 0
+ minRegionArea: 2
+ manualCellSize: 0
+ cellSize: 0.16666667
+ manualTileSize: 0
+ tileSize: 256
+ accuratePlacement: 1
+ m_NavMeshData: {fileID: 23800000, guid: 12ff5bb3c39b7b647bba8fc00a1989a8, type: 2}
+--- !u!114 &1330737
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 905901659}
+ audioClip: {fileID: 8300000, guid: 96b6650a22f2cb341a4bbb635f9af634, type: 3}
+ delay: 0
+--- !u!114 &25289150
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 905901658}
+ audioClip: {fileID: 8300000, guid: 0d494c2c0a97b4fdc8de4ad7f2e44f43, type: 3}
+ delay: 0
+--- !u!1001 &65161318
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 3.18
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0.24
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 4
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 1094123812}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 65161319}
+ - target: {fileID: 194222, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: PictureInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 0.25
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 2.3
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 3.8
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 2.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0.7071068
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 0.7071067
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: -1.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalEulerAnglesHint.y
+ value: 90
+ objectReference: {fileID: 0}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[0]
+ value:
+ objectReference: {fileID: 1272427429}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[1]
+ value:
+ objectReference: {fileID: 25289150}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[2]
+ value:
+ objectReference: {fileID: 1231559414}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[3]
+ value:
+ objectReference: {fileID: 815170027}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[4]
+ value:
+ objectReference: {fileID: 815170027}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[5]
+ value:
+ objectReference: {fileID: 1610222598}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[6]
+ value:
+ objectReference: {fileID: 1578821600}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &65161319 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 65161318}
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+--- !u!114 &104556140
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 905901658}
+ audioClip: {fileID: 8300000, guid: 707d533b18a364142897701cc3b4027e, type: 3}
+ delay: 0
+--- !u!114 &227469776
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: HasGlasses
+ satisfied: 1
+ hash: -1554804606
+--- !u!114 &236826289
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 905901659}
+ audioClip: {fileID: 8300000, guid: ebdaadc1993914f48991efbeda5ed08e, type: 3}
+ delay: 0
+--- !u!114 &294159636
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: Hey Frank, you shouldn't go through without the boss's coffee.
+ textColor: {r: 0, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!114 &503792339
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: Hey Frank! Go on through!
+ textColor: {r: 0, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!114 &639733709
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 905901659}
+ audioClip: {fileID: 8300000, guid: 28b6ecbb67d75a743be188695bc54261, type: 3}
+ delay: 0.5
+--- !u!114 &669618034
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: new condition collection
+ requiredConditions:
+ - {fileID: 1497693457}
+ reactionCollection: {fileID: 0}
+--- !u!114 &682091567
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 905901658}
+ audioClip: {fileID: 8300000, guid: 20b36408ef0bfce45b7d4010cc76e7de, type: 3}
+ delay: 0
+--- !u!114 &693356648
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: Get lost!
+ textColor: {r: 0, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!114 &789374198
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 905901658}
+ audioClip: {fileID: 8300000, guid: d18f058921ed94b17847871c11f8c9da, type: 3}
+ delay: 0
+--- !u!114 &795348259
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 80c32f1270758a64ba4bc71dbf7e498b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0.5
+ gameObject: {fileID: 1043656358}
+ activeState: 0
+--- !u!114 &815170027
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 0}
+ trigger:
+--- !u!114 &832231904
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2392585f8a4e53a42a0ddc8de25e64d2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ audioSource: {fileID: 905901658}
+ audioClip: {fileID: 8300000, guid: d786774c25f284b79bcda64a1571c979, type: 3}
+ delay: 0
+--- !u!1001 &904848606
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: -0.7
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 5.25
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 3
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 1094123812}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 904848607}
+ - target: {fileID: 194222, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: DoorToMarketInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 0.4
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 2.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 0.2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[0]
+ value:
+ objectReference: {fileID: 1548132460}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[1]
+ value:
+ objectReference: {fileID: 236826289}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &904848607 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 904848606}
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+--- !u!1001 &905901657
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 472252, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_RootOrder
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 8260042, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ propertyPath: m_audioClip
+ value:
+ objectReference: {fileID: 8300000, guid: 19e9160e69a211246b8d3e4de36e96ec, type: 3}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: 0036c73aed31ec14fbbf45853c79fc14, type: 2}
+ m_IsPrefabParent: 0
+--- !u!82 &905901658 stripped
+AudioSource:
+ m_PrefabParentObject: {fileID: 8277418, guid: 0036c73aed31ec14fbbf45853c79fc14,
+ type: 2}
+ m_PrefabInternal: {fileID: 905901657}
+--- !u!82 &905901659 stripped
+AudioSource:
+ m_PrefabParentObject: {fileID: 8299186, guid: 0036c73aed31ec14fbbf45853c79fc14,
+ type: 2}
+ m_PrefabInternal: {fileID: 905901657}
+--- !u!114 &921382151
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 2
+ animator: {fileID: 0}
+ trigger:
+--- !u!114 &923580822
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: HasGlasses
+ satisfied: 1
+ hash: -1554804606
+--- !u!1001 &1043656357
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 435212, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 435212, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 435212, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 435212, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 435212, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 435212, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 435212, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 435212, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_RootOrder
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 401942, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0.6551722
+ objectReference: {fileID: 0}
+ - target: {fileID: 401942, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0.2663453
+ objectReference: {fileID: 0}
+ - target: {fileID: 401942, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: -0.2662439
+ objectReference: {fileID: 0}
+ - target: {fileID: 401942, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 0.6549228
+ objectReference: {fileID: 0}
+ - target: {fileID: 11439506, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 1094123812}
+ - target: {fileID: 1000011809260392, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_IsActive
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000010125470250, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_IsActive
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000013644106482, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000013817075810, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000010953594216, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000013178173488, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000011622339866, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000012727677572, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000011594884080, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000012213709070, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000013186571738, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000013780333780, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000012622077540, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000013333872850, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000011843579408, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000010605808140, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000011312830942, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000011688780970, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000012173431702, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000010626101604, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000012173416270, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000011328732106, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000013268056558, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000011096530410, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000014281765782, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_StaticEditorFlags
+ value: 4294967295
+ objectReference: {fileID: 0}
+ - target: {fileID: 23000011670661526, guid: 8902cc0c7910bcd4ab3ccacb67555809,
+ type: 2}
+ propertyPath: m_ScaleInLightmap
+ value: 0.01
+ objectReference: {fileID: 0}
+ - target: {fileID: 23000012214955340, guid: 8902cc0c7910bcd4ab3ccacb67555809,
+ type: 2}
+ propertyPath: m_ScaleInLightmap
+ value: 0.001
+ objectReference: {fileID: 0}
+ - target: {fileID: 23000010534055926, guid: 8902cc0c7910bcd4ab3ccacb67555809,
+ type: 2}
+ propertyPath: m_ScaleInLightmap
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 23000012697939786, guid: 8902cc0c7910bcd4ab3ccacb67555809,
+ type: 2}
+ propertyPath: m_ScaleInLightmap
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 23000010540651908, guid: 8902cc0c7910bcd4ab3ccacb67555809,
+ type: 2}
+ propertyPath: m_ScaleInLightmap
+ value: 0.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000011328732106, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_Layer
+ value: 8
+ objectReference: {fileID: 0}
+ - target: {fileID: 1000010605808140, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ propertyPath: m_Layer
+ value: 8
+ objectReference: {fileID: 0}
+ - target: {fileID: 23000013488180032, guid: 8902cc0c7910bcd4ab3ccacb67555809,
+ type: 2}
+ propertyPath: m_Materials.Array.data[0]
+ value:
+ objectReference: {fileID: 2100000, guid: 237e59587b8f1c641a0b736a82a2f342, type: 2}
+ - target: {fileID: 23000013981064722, guid: 8902cc0c7910bcd4ab3ccacb67555809,
+ type: 2}
+ propertyPath: m_Materials.Array.data[0]
+ value:
+ objectReference: {fileID: 2100000, guid: 45b8eaf0be0364a40b0b46fe8679696f, type: 2}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: 8902cc0c7910bcd4ab3ccacb67555809, type: 2}
+ m_IsPrefabParent: 0
+--- !u!1 &1043656358 stripped
+GameObject:
+ m_PrefabParentObject: {fileID: 1000013178173488, guid: 8902cc0c7910bcd4ab3ccacb67555809,
+ type: 2}
+ m_PrefabInternal: {fileID: 1043656357}
+--- !u!1001 &1094123811
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: -0.7
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 3.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: -1
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: -0.00000016292068
+ objectReference: {fileID: 0}
+ - target: {fileID: 4000014075113472, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ propertyPath: m_RootOrder
+ value: 8
+ objectReference: {fileID: 0}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: ab5f05eb414b65f4f9c285f785c1dfad, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &1094123812 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 114000014294072012, guid: ab5f05eb414b65f4f9c285f785c1dfad,
+ type: 2}
+ m_PrefabInternal: {fileID: 1094123811}
+ m_Script: {fileID: 11500000, guid: 29103d8075f789345997a0adb6a7520e, type: 3}
+--- !u!114 &1100553211
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: LaserOff
+ requiredConditions:
+ - {fileID: 1192381676}
+ reactionCollection: {fileID: 1114146747}
+--- !u!1 &1114146746
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1114146748}
+ - component: {fileID: 1114146747}
+ m_Layer: 0
+ m_Name: BeamsOffReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &1114146747
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1114146746}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 1330737}
+ - {fileID: 1906087159}
+--- !u!4 &1114146748
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1114146746}
+ 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: 1276257939}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1147711796
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 0}
+ trigger:
+--- !u!1001 &1183915326
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_RootOrder
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_AnchoredPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_AnchoredPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_SizeDelta.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_SizeDelta.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_AnchorMin.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_AnchorMin.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_AnchorMax.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_AnchorMax.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_Pivot.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 22402318, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ propertyPath: m_Pivot.y
+ value: 0
+ objectReference: {fileID: 0}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: bd26dac15723bf047941895f28e6c242, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &1192381676
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: LasersDeactivated
+ satisfied: 1
+ hash: -2015270594
+--- !u!114 &1231559414
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 0}
+ trigger:
+--- !u!114 &1272427429
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: He looks pretty trustworthy.
+ textColor: {r: 1, g: 1, b: 1, a: 1}
+ delay: 0
+--- !u!1001 &1276257937
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].conditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: -3.94
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: -4
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 5
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 1094123812}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 1276257938}
+ - target: {fileID: 194222, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: LaserGridInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].description
+ value: Beams Off
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].conditions.Array.data[0].condition
+ value:
+ objectReference: {fileID: 11400000, guid: e103e04006611934e83a070f62f2d7ab,
+ type: 2}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].conditions.Array.data[0].objectToCheck
+ value:
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].reaction
+ value:
+ objectReference: {fileID: 1114146747}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 2.5
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 0.2
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 1.25
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: -0.00000016292068
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalEulerAnglesHint.y
+ value: -180
+ objectReference: {fileID: 0}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[0]
+ value:
+ objectReference: {fileID: 1340991283}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[1]
+ value:
+ objectReference: {fileID: 682091567}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[2]
+ value:
+ objectReference: {fileID: 1921767126}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0]
+ value:
+ objectReference: {fileID: 1100553211}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: interactionLocation
+ value:
+ objectReference: {fileID: 1276257942}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: defaultReaction
+ value:
+ objectReference: {fileID: 1276257941}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &1276257938 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 1276257937}
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+--- !u!4 &1276257939 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 1276257937}
+--- !u!1 &1276257940 stripped
+GameObject:
+ m_PrefabParentObject: {fileID: 194222, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 1276257937}
+--- !u!114 &1276257941 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 1276257937}
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+--- !u!4 &1276257942 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 1276257937}
+--- !u!114 &1283123098
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: HasGlasses
+ requiredConditions:
+ - {fileID: 923580822}
+ reactionCollection: {fileID: 1955368934}
+--- !u!114 &1340991283
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: ACCESS DENIED!
+ textColor: {r: 1, g: 0, b: 0, a: 1}
+ delay: 0
+--- !u!114 &1497693457
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: pouabv
+ satisfied: 0
+ hash: 0
+--- !u!1 &1536750085
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1536750087}
+ - component: {fileID: 1536750086}
+ m_Layer: 0
+ m_Name: DoorToMarketStartingPosition
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &1536750086
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1536750085}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2a1a9400b6609fb4aba06d78b45ca76c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ startingPointName: DoorToMarket
+--- !u!4 &1536750087
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1536750085}
+ m_LocalRotation: {x: 0, y: 1, z: 0, w: 0}
+ m_LocalPosition: {x: -0.7, y: 0.02, z: 4.5}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 0}
+ m_RootOrder: 7
+ m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
+--- !u!114 &1548132460
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 24dc6b17b276d6948903ade30dec71eb, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ sceneName: Market
+ startingPointInLoadedScene: DoorToSecurityRoom
+ playerSaveData: {fileID: 11400000, guid: 55d72825bf06cf44e9cbc1b37812cc6f, type: 2}
+--- !u!114 &1578821600
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 0}
+ trigger:
+--- !u!114 &1610222598
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 0}
+ trigger:
+--- !u!1 &1627901430
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 105628, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1627901431}
+ - component: {fileID: 1627901432}
+ m_Layer: 0
+ m_Name: GlassesAndCoffeeReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1627901431
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 424910, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1627901430}
+ 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: 1746140239}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1627901432
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1627901430}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 832231904}
+ - {fileID: 639733709}
+ - {fileID: 503792339}
+ - {fileID: 795348259}
+ - {fileID: 1906371743}
+--- !u!114 &1651130631
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 4900350095ceff24fbe8c1ac5f1e17c4, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: HasGlassesAndCoffee
+ requiredConditions:
+ - {fileID: 227469776}
+ - {fileID: 2070106622}
+ reactionCollection: {fileID: 1627901432}
+--- !u!1001 &1746140237
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].conditions.Array.size
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[1].conditions.Array.size
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: -0.571
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: -3.09
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_RootOrder
+ value: 6
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Target
+ value:
+ objectReference: {fileID: 1094123812}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
+ value: OnInteractableClick
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
+ value: 2
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
+ value: Interactable, Assembly-CSharp
+ objectReference: {fileID: 0}
+ - target: {fileID: 11485606, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Delegates.Array.data[0].callback.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgument
+ value:
+ objectReference: {fileID: 1746140238}
+ - target: {fileID: 194222, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Name
+ value: GuardInteractable
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.x
+ value: 1.6
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.y
+ value: 1.8
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Size.z
+ value: 0.7
+ objectReference: {fileID: 0}
+ - target: {fileID: 6512962, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_Center.y
+ value: 0.9
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].description
+ value: Glasses and Coffee
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[1].description
+ value: Glasses
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].conditions.Array.data[0].condition
+ value:
+ objectReference: {fileID: 11400000, guid: 08c1e490445fe48468256959f20b7ae4,
+ type: 2}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].conditions.Array.data[1].condition
+ value:
+ objectReference: {fileID: 11400000, guid: 08c1e490445fe48468256959f20b7ae4,
+ type: 2}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[1].conditions.Array.data[0].condition
+ value:
+ objectReference: {fileID: 11400000, guid: 08c1e490445fe48468256959f20b7ae4,
+ type: 2}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].conditions.Array.data[0].objectToCheck
+ value:
+ objectReference: {fileID: 11400000, guid: d016867521888e04cb37abe439c100f7,
+ type: 2}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].conditions.Array.data[1].objectToCheck
+ value:
+ objectReference: {fileID: 11400000, guid: f0776cdb931cbdb4b83c5035ebf49463,
+ type: 2}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[1].conditions.Array.data[0].objectToCheck
+ value:
+ objectReference: {fileID: 11400000, guid: f0776cdb931cbdb4b83c5035ebf49463,
+ type: 2}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].conditions.Array.data[0].conditionState
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].conditions.Array.data[1].conditionState
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[1].conditions.Array.data[0].conditionState
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: -0.00000016292068
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 2.2
+ objectReference: {fileID: 0}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalEulerAnglesHint.y
+ value: -180
+ objectReference: {fileID: 0}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[0]
+ value:
+ objectReference: {fileID: 789374198}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[1]
+ value:
+ objectReference: {fileID: 693356648}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[2]
+ value:
+ objectReference: {fileID: 921382151}
+ - target: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: reactions.Array.data[3]
+ value:
+ objectReference: {fileID: 1147711796}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].conditions.Array.data[2].condition
+ value:
+ objectReference: {fileID: 11400000, guid: e103e04006611934e83a070f62f2d7ab,
+ type: 2}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].conditions.Array.data[2].objectToCheck
+ value:
+ objectReference: {fileID: 1276257940}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0].conditions.Array.data[2].conditionState
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[0]
+ value:
+ objectReference: {fileID: 1651130631}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[1]
+ value:
+ objectReference: {fileID: 1283123098}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[2]
+ value:
+ objectReference: {fileID: 669618034}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[3]
+ value:
+ objectReference: {fileID: 669618034}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: conditionCollections.Array.data[4]
+ value:
+ objectReference: {fileID: 669618034}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: interactionLocation
+ value:
+ objectReference: {fileID: 1746140241}
+ - target: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: defaultReaction
+ value:
+ objectReference: {fileID: 1746140240}
+ - target: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0.02
+ objectReference: {fileID: 0}
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 100100000, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_IsPrefabParent: 0
+--- !u!114 &1746140238 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11484708, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 1746140237}
+ m_Script: {fileID: 11500000, guid: d85941078afdf3244b2a1ae50fea256c, type: 3}
+--- !u!4 &1746140239 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 474418, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 1746140237}
+--- !u!114 &1746140240 stripped
+MonoBehaviour:
+ m_PrefabParentObject: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 1746140237}
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+--- !u!4 &1746140241 stripped
+Transform:
+ m_PrefabParentObject: {fileID: 491826, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 1746140237}
+--- !u!114 &1906087159
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 03f8a149ea5a3aa4583dc1cab3334cbc, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ message: YOU WIN!
+ textColor: {r: 1, g: 0, b: 0, a: 1}
+ delay: 0
+--- !u!114 &1906371743
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: ec43236ba6522584894ac80bfbcb3815, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ condition: {fileID: 114000012991011084, guid: fd02464d008c790478d9826aba7c7847,
+ type: 2}
+ satisfied: 1
+--- !u!114 &1921767126
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a931d1c243b462c46bad5f7d2aae5949, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ delay: 0
+ animator: {fileID: 0}
+ trigger:
+--- !u!1 &1955368932
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 105628, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 0}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 1955368933}
+ - component: {fileID: 1955368934}
+ m_Layer: 0
+ m_Name: GlassesReaction
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &1955368933
+Transform:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 424910, guid: d48734bd22479a14cb1a52b40aa09db4, type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1955368932}
+ 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: 1746140239}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!114 &1955368934
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 11441280, guid: d48734bd22479a14cb1a52b40aa09db4,
+ type: 2}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 1955368932}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 1fc7ecfe98531f2429694b8c81a6748a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ reactions:
+ - {fileID: 104556140}
+ - {fileID: 294159636}
+--- !u!114 &2070106622
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 48c14b7cdc8cc6347b3a5d48d05c9c85, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ description: HasCoffee
+ satisfied: 1
+ hash: -1486269948
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom.unity.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom.unity.meta
new file mode 100644
index 00000000..f72bef8a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom.unity.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: fa8464330437a6c439e767c377bbee1d
+timeCreated: 1456933223
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/LightingData.asset b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/LightingData.asset
new file mode 100644
index 00000000..f5b3c067
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/LightingData.asset differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/LightingData.asset.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/LightingData.asset.meta
new file mode 100644
index 00000000..7972e0fb
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/LightingData.asset.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: f063a860947fdde438b2418b9255bd91
+timeCreated: 1498493506
+licenseType: Store
+NativeFormatImporter:
+ mainObjectFileID: 25800000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/Lightmap-0_comp_light.exr b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/Lightmap-0_comp_light.exr
new file mode 100644
index 00000000..c036e3d2
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/Lightmap-0_comp_light.exr differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/Lightmap-0_comp_light.exr.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/Lightmap-0_comp_light.exr.meta
new file mode 100644
index 00000000..4ec33756
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/Lightmap-0_comp_light.exr.meta
@@ -0,0 +1,74 @@
+fileFormatVersion: 2
+guid: 846dc741483fa4c4c94dff177224fda1
+timeCreated: 1498493506
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 4
+ 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
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: 1
+ aniso: 3
+ mipBias: 0
+ 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}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaUsage: 0
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 6
+ textureShape: 1
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ platformSettings:
+ - buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/NavMesh.asset b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/NavMesh.asset
new file mode 100644
index 00000000..718424ff
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/NavMesh.asset
@@ -0,0 +1,124 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!238 &23800000
+NavMeshData:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: NavMesh
+ m_NavMeshTiles:
+ - m_MeshData: 56414e4410000000ffffffffffffffff00000000050000001100000005000000000000000b0000000a000000abaa2ac217ce6ebeabaa2ac200000000f6c02641000000000000c040585595c0488f893c545525c1000090c0488f893c000090c0b0aa4ac0488f893c585595c0000040c0488f893c0000e0c0b0aa4ac0488f893c545525c1000090c0488f893c00000000000000007e0ecd3d00000000000000007e0ecd3da0aaaabf000020c0488f893ca0aaaabf000040c0488f893ca0aaeabf000040c0488f893c505555c0000090c0488f893c505555c0000090c0488f893c505535c0a8aaaac0488f893cb0aa0ac0000008c14aeedd3e00000000545505c14aeedd3e00000000000008c14aeedd3e505515c001000200030004000000000000000000000000000000000001000000050000000a000b000c000900000000000000000004000000000000000100000004000000060007000800050000000000008000000400028000000000010000000400000009000c000d0005000800000002000000000003000000000001000000050000000e000f0010000000000000000280000000000000000000000100000003000000000000000000000000000300000000000300000000000200000000000500000000000200000000000700000000000300000000000a0000000000010004000000030011000000020003000400000001000200050003000000020011000000010002000500030000000200110000000100020005000400000003001100000001000300010001000200030005000200000001001500cd000000c200000106000001f7ffffffe4000000c200ee000600f500fdffffffe4000000c200ee000600e50000000000e5000000ec00ee000600f50001000000cd000000ef00000106000001fbffffffcd000000f200ce000600000104000000e0000000ef00000106000001fdffffffe0000000ef00f1000600000103000000e5000000f8000001060000010200000000000000000000000000000000000000
+ - m_MeshData: 56414e441000000000000000ffffffff000000000300000007000000030000000000000005000000060000000000000017ce6ebeabaa2ac2abaa2a42f6c02641000000000000c040000000007e0ecd3da0aaaabf000000007e0ecd3d0000000056551540488f893c0000000000002040488f893c000040c00000c03f488f893c000040c05655d53f488f893ca0aaeabf5655953f488f893ca0aaaabf0300040005000200000000000000000003000000000000000100000004000000060000000100020000000000000004800280030000000000010000000400000002000500060000000000000001000000020000000000000001000000030000000000000000000000000002000000000002000000000002000000000004000000000001000300000002001100000001000200050003000000020011000000010002000500020000000100150000000000ee000f0006000001fbffffff09000000ee000f00060000010000000000000000f5000e0006000001fdffffff00000000f8000e00060000010100000007000000f5000e00060000010200000000000000000000000000000000000000
+ - m_MeshData: 56414e4410000000ffffffff0000000000000000080000001300000008000000000000000f00000010000000abaa2ac217ce6ebe0000000000000000f6c02641abaa2a420000c040545505c14aeedd3e00000000000008c14aeedd3e00000000000008c14aeedd3eabaaca40b0aa6ac04aeedd3eabaaca40505575c04aeedd3eabaa9a40000000c14aeedd3eabaa9a40545505c14aeedd3e00009040000000007e0ecd3dabaaca40000000007e0ecd3d00009040000000007e0ecd3d00008040000000007e0ecd3d00000000000090c0488f893c00000000585595c0488f893cabaa0a405855a5c0488f893cabaa2a40585595c0488f893cabaa2a40a8aa8ac0488f893cabaa4a40a0aaeabf7e0ecd3d00006040a0aaaabf7e0ecd3d000080400000c0bf7e0ecd3dabaaca400600000001000200000000000000068000000300000000000100000004000000030004000500020000000000000000000300000000000000010000000400000005000600020000000000000000000100020000000000000001000000030000000c000d000e0000000000000000000000050000000000000001000000030000000c000e000f0010000000000004000000000007000000000001000000040000001200070008001100000000000000008008000000000000000100000004000000100009000a000b000c00000008000080068000000500000001000000050000001100080009001000000000000600008007000000000000000100000004000000000000000000000000000200000000000200000000000200000000000400000000000100000000000500000000000100000000000600000000000200000000000800000000000200000000000a00000000000300000000000d00000000000200030000000200110000000100020005000300000002001100000001000200050002000000010015000200000001001500030000000200110000000100020005000300000002001100000001000200050004000000030011000000010003000100010002000300050003000000020011000000010002000500cd0000000000000106002600f1ffffffcd0000000000ea0006002600f9ffffffcd0000000000e40006002600fdffffffcd0000000000ce000600260000000000e10000000d00e4000600100003000000cd0000001b00ea0006002600fdffffffcd0000001d00ea000600260001000000cd0000001b00d0000600260002000000e40000000000000106002600f9ffffffe40000000000000106001800fdffffffe40000000d00f5000600150004000000e4000000000000010600180006000000f50000001500000106002600fdfffffff50000001500000106001b0007000000f700000018000001060026000500000000000000000000000000000000000000
+ - m_MeshData: 56414e44100000000000000000000000000000000200000005000000020000000000000003000000040000000000000017ce6ebe00000000abaa2a42f6c02641abaa2a420000c040000000007e0ecd3d000080405655553f488f893c5655554000002040488f893c5655554056551540488f893c00000000000000007e0ecd3d00000000040000000100000000000000048000000200000000000000010000000300000001000200030004000000000000000000068001000000000001000000040000000000000000000000000001000000000001000000000002000200000001001500030000000200110000000100020005000000000000000f0006001800fdffffff0000000000000f0006001400010000000000000000000500060018000000000000000000000000000000000000000000
+ m_NavMeshParams:
+ tileSize: 42.666668
+ walkableHeight: 2
+ walkableRadius: 0.5
+ walkableClimb: 0.25
+ cellSize: 0.16666667
+ m_Heightmaps: []
+ m_HeightMeshes:
+ - m_Vertices:
+ - {x: -2.9026086, y: 0.01920855, z: 3.9315372}
+ - {x: -7.323349, y: 0.01920855, z: 3.9320464}
+ - {x: -7.332823, y: 0.01920855, z: 4.06537}
+ - {x: -2.908665, y: 0.019208431, z: 4.065059}
+ - {x: -2.626126, y: 0.019208431, z: 4.091931}
+ - {x: -2.5987594, y: 0.01920855, z: 3.961104}
+ - {x: -2.3701212, y: 0.019208431, z: 4.178248}
+ - {x: -2.30947, y: 0.01920855, z: 4.0591426}
+ - {x: -4.076578, y: 0.4165051, z: 3.7273645}
+ - {x: -5.9930863, y: 0.4165051, z: 3.7273645}
+ - {x: -5.9930863, y: 0.41650516, z: 4.274285}
+ - {x: -3.9979258, y: 0.41650516, z: 4.274285}
+ - {x: -4.030756, y: 0.4165051, z: 3.736529}
+ - {x: -4.0070896, y: 0.4165051, z: 3.760195}
+ - {x: -3.9979258, y: 0.4165051, z: 3.8060174}
+ - {x: -4.074602, y: 0.39654902, z: 3.7074084}
+ - {x: -5.9930863, y: 0.39654902, z: 3.7074084}
+ - {x: -3.9779696, y: 0.3965491, z: 4.274285}
+ - {x: -3.9779696, y: 0.39654905, z: 3.8040414}
+ - {x: -3.9887064, y: 0.39654905, z: 3.7503564}
+ - {x: -4.0209174, y: 0.39654905, z: 3.7181456}
+ - {x: -5.111458, y: 0.3251824, z: -0.07528589}
+ - {x: -5.0807304, y: 0.33649072, z: 0.06425844}
+ - {x: -5.069949, y: 0.32518244, z: 0.063309446}
+ - {x: -5.121435, y: 0.3364907, z: -0.07165427}
+ - {x: -5.328699, y: 0.33649066, z: -0.43022087}
+ - {x: -5.4149404, y: 0.32518235, z: -0.5338516}
+ - {x: -5.419044, y: 0.33649063, z: -0.52134407}
+ - {x: -5.322812, y: 0.32518238, z: -0.44092986}
+ - {x: -5.247347, y: 0.33649066, z: -0.32273757}
+ - {x: -5.2398543, y: 0.32518238, z: -0.33132502}
+ - {x: -5.1776166, y: 0.3364907, z: -0.2019341}
+ - {x: -5.168748, y: 0.3251824, z: -0.20813721}
+ - {x: -5.515754, y: 0.33649063, z: -0.5930669}
+ - {x: -6.1655526, y: 0.33649066, z: -0.35655892}
+ - {x: -6.2041698, y: 0.3364907, z: -0.11157475}
+ - {x: -6.173166, y: 0.33649072, z: 0.1604166}
+ - {x: -2.1110506, y: 0.0000006067364, z: 5.0896745}
+ - {x: -2.1110506, y: 0.0000008298918, z: 6.961638}
+ - {x: 0.75708747, y: 0.0000008298918, z: 6.961638}
+ - {x: 0.7570874, y: 0.0000006067364, z: 5.0896745}
+ - {x: 1.572478, y: 0.0000005095343, z: 4.274284}
+ - {x: 3.448927, y: 0.00000050953435, z: 4.2742844}
+ - {x: 3.4489272, y: -0.000000458301, z: -3.8445082}
+ - {x: -2.0024579, y: -0.00000045830106, z: -3.8445086}
+ - {x: -2.6000645, y: -0.00000053661273, z: -4.5014343}
+ - {x: -2.6000638, y: -0.0000012980895, z: -10.889165}
+ - {x: -5.2213693, y: -0.0000012980895, z: -10.889165}
+ - {x: -5.22137, y: -0.0000005366128, z: -4.501435}
+ - {x: -5.964501, y: -0.00000035261027, z: -2.9579096}
+ - {x: -7.7375846, y: -0.00000035261027, z: -2.9579096}
+ - {x: -7.7375846, y: 0.00000050953423, z: 4.2742834}
+ - {x: -2.9181561, y: 0.00000050953423, z: 4.2742834}
+ - {x: -5.6567473, y: 0.34937638, z: 0.38100845}
+ - {x: -5.2409863, y: 0.34937635, z: 0.23126583}
+ - {x: -5.348882, y: 0.34937632, z: -0.06830756}
+ - {x: 0.44263983, y: 0.026894143, z: 6.961637}
+ - {x: 0.44263983, y: 0.026893068, z: -2.058537}
+ - {x: -1.7520077, y: 0.026893068, z: -2.058537}
+ - {x: -1.7520077, y: 0.026894143, z: 6.961637}
+ - {x: -7.7635794, y: 0.41650522, z: 4.283098}
+ - {x: -7.7635803, y: 0.41650552, z: 6.9616394}
+ - {x: -2.1110516, y: 0.41650552, z: 6.9616394}
+ - {x: -2.9465795, y: 0.41650522, z: 4.283098}
+ - {x: -9.077551, y: 0.41650552, z: 6.9616385}
+ - {x: -9.077549, y: 0.41650522, z: 4.2830973}
+ - {x: -9.077549, y: 0.41650432, z: -2.95791}
+ - {x: -7.763579, y: 0.41650432, z: -2.9579098}
+ m_Indices: 2d0000002e0000002f000000250000002f00000030000000250000002d0000002f00000021000000190000001b000000190000001a0000001b0000001a000000190000001c0000002200000019000000210000001d0000001c000000190000001c0000001d0000001e000000190000001f0000001d000000230000001f000000190000001900000022000000230000001f0000001e0000001d0000001e0000001f0000002000000018000000200000001f0000002000000018000000150000001f000000160000001800000024000000160000001f0000001f0000002300000024000000150000001600000017000000160000001500000018000000350000003600000037000000290000002a0000002b000000250000003000000031000000250000002c0000002d000000250000002b0000002c00000025000000290000002b0000003c00000043000000420000003c00000042000000410000002500000032000000330000002500000031000000320000003c00000041000000400000003c000000400000003d00000000000000020000000300000000000000010000000200000008000000090000000a000000090000000f0000001000000009000000080000000f0000000a0000000b000000080000003c0000003d0000003e0000003c0000003e0000003f000000250000003300000034000000140000000f0000000800000014000000080000000c0000000b0000000c000000080000000b0000000d0000000c00000013000000140000000c000000130000000c0000000d0000000b0000000e0000000d00000012000000130000000d000000120000000d0000000e0000000e00000011000000120000000e0000000b0000001100000000000000030000000400000000000000040000000500000005000000040000000600000005000000060000000700000025000000270000002800000025000000260000002700000038000000390000003a000000380000003a0000003b000000250000002800000029000000
+ m_Bounds:
+ m_Center: {x: -2.814312, y: 0.2082521, z: -1.9637628}
+ m_Extent: {x: 6.263239, y: 0.20825341, z: 8.925402}
+ m_Nodes:
+ - min: {x: -9.077551, y: -0.0000012980895, z: -10.889165}
+ max: {x: 3.4489272, y: 0.41650552, z: 6.9616394}
+ i: -6
+ n: -1
+ - min: {x: -9.077549, y: -0.0000012980895, z: -10.889165}
+ max: {x: 3.4489272, y: 0.41650522, z: 5.0896745}
+ i: -2
+ n: -1
+ - min: {x: -6.2041698, y: -0.0000012980895, z: -10.889165}
+ max: {x: -2.1110506, y: 0.3364907, z: 5.0896745}
+ i: 0
+ n: 15
+ - min: {x: -9.077549, y: -0.0000005366128, z: -4.501435}
+ max: {x: 3.4489272, y: 0.41650522, z: 5.0896745}
+ i: 15
+ n: 16
+ - min: {x: -9.077551, y: 0.00000050953423, z: -2.058537}
+ max: {x: 1.572478, y: 0.41650552, z: 6.9616394}
+ i: -2
+ n: -1
+ - min: {x: -9.077551, y: 0.00000050953423, z: 3.7074084}
+ max: {x: -2.1110506, y: 0.41650552, z: 6.9616394}
+ i: 31
+ n: 15
+ - min: {x: -4.030756, y: 0.0000005095343, z: -2.058537}
+ max: {x: 1.572478, y: 0.41650516, z: 6.961638}
+ i: 46
+ n: 16
+ m_OffMeshLinks: []
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/NavMesh.asset.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/NavMesh.asset.meta
new file mode 100644
index 00000000..20848f3b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scenes/SecurityRoom/NavMesh.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 12ff5bb3c39b7b647bba8fc00a1989a8
+timeCreated: 1473261853
+licenseType: Store
+NativeFormatImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts.meta
new file mode 100644
index 00000000..4a74d321
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: aae8f31309f02804986aa4f0a5aa05cc
+folderAsset: yes
+timeCreated: 1465290273
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor.meta
new file mode 100644
index 00000000..484266cb
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: e6fac49fb92e7fc47a493c38a6f9190a
+folderAsset: yes
+timeCreated: 1465297869
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Abstracts.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Abstracts.meta
new file mode 100644
index 00000000..70dd7104
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Abstracts.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: c96375f3731513340ad8f0e7dc0904e0
+folderAsset: yes
+timeCreated: 1471349578
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Abstracts/EditorWithSubEditors.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Abstracts/EditorWithSubEditors.cs
new file mode 100644
index 00000000..660c4fe0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Abstracts/EditorWithSubEditors.cs
@@ -0,0 +1,58 @@
+using UnityEngine;
+using UnityEditor;
+
+// This class acts as a base class for Editors that have Editors
+// nested within them. For example, the InteractableEditor has
+// an array of ConditionCollectionEditors.
+// It's generic types represent the type of Editor array that are
+// nested within this Editor and the target type of those Editors.
+public abstract class EditorWithSubEditors : Editor
+ where TEditor : Editor
+ where TTarget : Object
+{
+ protected TEditor[] subEditors; // Array of Editors nested within this Editor.
+
+
+ // This should be called in OnEnable and at the start of OnInspectorGUI.
+ protected void CheckAndCreateSubEditors (TTarget[] subEditorTargets)
+ {
+ // If there are the correct number of subEditors then do nothing.
+ if (subEditors != null && subEditors.Length == subEditorTargets.Length)
+ return;
+
+ // Otherwise get rid of the editors.
+ CleanupEditors ();
+
+ // Create an array of the subEditor type that is the right length for the targets.
+ subEditors = new TEditor[subEditorTargets.Length];
+
+ // Populate the array and setup each Editor.
+ for (int i = 0; i < subEditors.Length; i++)
+ {
+ subEditors[i] = CreateEditor (subEditorTargets[i]) as TEditor;
+ SubEditorSetup (subEditors[i]);
+ }
+ }
+
+
+ // This should be called in OnDisable.
+ protected void CleanupEditors ()
+ {
+ // If there are no subEditors do nothing.
+ if (subEditors == null)
+ return;
+
+ // Otherwise destroy all the subEditors.
+ for (int i = 0; i < subEditors.Length; i++)
+ {
+ DestroyImmediate (subEditors[i]);
+ }
+
+ // Null the array so it's GCed.
+ subEditors = null;
+ }
+
+
+ // This must be overridden to provide any setup the subEditor needs when it is first created.
+ protected abstract void SubEditorSetup (TEditor editor);
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Abstracts/EditorWithSubEditors.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Abstracts/EditorWithSubEditors.cs.meta
new file mode 100644
index 00000000..d0bcdd3b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Abstracts/EditorWithSubEditors.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 32ffb103c29c5ce4e9b849c36e35b140
+timeCreated: 1471349589
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence.meta
new file mode 100644
index 00000000..8cd8d6f3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: e6b679449957eee48877e2fec4251e89
+folderAsset: yes
+timeCreated: 1469179821
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence/DataResetterEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence/DataResetterEditor.cs
new file mode 100644
index 00000000..db941c16
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence/DataResetterEditor.cs
@@ -0,0 +1,66 @@
+using UnityEngine;
+using UnityEditor;
+
+[CustomEditor(typeof(DataResetter))]
+public class DataResetterEditor : Editor
+{
+ private DataResetter dataResetter; // Reference to the target of this Editor.
+ private SerializedProperty resettersProperty; // Represents the only field in the target.
+
+
+ private const float buttonWidth = 30f; // Width in pixels of the add and remove buttons
+ private const string dataResetterPropResettableScriptableObjectsName = "resettableScriptableObjects";
+ // The name of the field to be represented.
+
+
+ private void OnEnable ()
+ {
+ // Cache the property and target.
+ resettersProperty = serializedObject.FindProperty(dataResetterPropResettableScriptableObjectsName);
+
+ dataResetter = (DataResetter)target;
+
+ // If the array is null, initialise it to prevent null refs.
+ if (dataResetter.resettableScriptableObjects == null)
+ {
+ dataResetter.resettableScriptableObjects = new ResettableScriptableObject[0];
+ }
+ }
+
+
+ public override void OnInspectorGUI ()
+ {
+ // Update the state of the serializedObject to the current values of the target.
+ serializedObject.Update();
+
+ // Go through all the resetters and create GUI appropriate for them.
+ for (int i = 0; i < resettersProperty.arraySize; i++)
+ {
+ SerializedProperty resettableProperty = resettersProperty.GetArrayElementAtIndex (i);
+
+ EditorGUILayout.PropertyField (resettableProperty);
+ }
+
+ EditorGUILayout.BeginHorizontal ();
+
+ // Create a button with a '+' and if it's clicked, add an element to the end of the array.
+ if (GUILayout.Button ("+", GUILayout.Width (buttonWidth)))
+ {
+ resettersProperty.InsertArrayElementAtIndex (resettersProperty.arraySize);
+ }
+
+ // Create a button with a '-' and if it's clicked remove the last element of the array.
+ // Note that if the last element is not null calling DeleteArrayElementAtIndex will make it null.
+ if (GUILayout.Button("-", GUILayout.Width(buttonWidth)))
+ {
+ if (resettersProperty.GetArrayElementAtIndex(resettersProperty.arraySize - 1).objectReferenceValue)
+ resettersProperty.DeleteArrayElementAtIndex(resettersProperty.arraySize - 1);
+ resettersProperty.DeleteArrayElementAtIndex(resettersProperty.arraySize - 1);
+ }
+
+ EditorGUILayout.EndHorizontal ();
+
+ // Push the values from the serializedObject back to the target.
+ serializedObject.ApplyModifiedProperties();
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence/DataResetterEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence/DataResetterEditor.cs.meta
new file mode 100644
index 00000000..e5fb1404
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence/DataResetterEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 93b4f52e7b5d95b4581340a868cd119c
+timeCreated: 1469179850
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence/SaveDataEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence/SaveDataEditor.cs
new file mode 100644
index 00000000..0699d9ad
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence/SaveDataEditor.cs
@@ -0,0 +1,69 @@
+using System;
+using UnityEngine;
+using UnityEditor;
+
+[CustomEditor(typeof(SaveData))]
+public class SaveDataEditor : Editor
+{
+ private SaveData saveData; // Reference to the target.
+ private Action boolSpecificGUI; // Delegate for the GUI that represents bool values.
+ private Action intSpecificGUI; // Delegate for the GUI that represents int values.
+ private Action stringSpecificGUI; // Delegate for the GUI that represents string values.
+ private Action vector3SpecificGUI; // Delegate for the GUI that represents Vector3 values.
+ private Action quaternionSpecificGUI; // Delegate for the GUI that represents Quaternion values.
+
+
+ private void OnEnable ()
+ {
+ // Cache the reference to the target.
+ saveData = (SaveData)target;
+
+ // Set the values of the delegates to various 'read-only' GUI functions.
+ boolSpecificGUI = value => { EditorGUILayout.Toggle(value); };
+ intSpecificGUI = value => { EditorGUILayout.LabelField(value.ToString()); };
+ stringSpecificGUI = value => { EditorGUILayout.LabelField (value); };
+ vector3SpecificGUI = value => { EditorGUILayout.Vector3Field (GUIContent.none, value); };
+ quaternionSpecificGUI = value => { EditorGUILayout.Vector3Field (GUIContent.none, value.eulerAngles); };
+ }
+
+
+ public override void OnInspectorGUI ()
+ {
+ // Display all the values for each data type.
+ KeyValuePairListsGUI ("Bools", saveData.boolKeyValuePairLists, boolSpecificGUI);
+ KeyValuePairListsGUI ("Integers", saveData.intKeyValuePairLists, intSpecificGUI);
+ KeyValuePairListsGUI ("Strings", saveData.stringKeyValuePairLists, stringSpecificGUI);
+ KeyValuePairListsGUI ("Vector3s", saveData.vector3KeyValuePairLists, vector3SpecificGUI);
+ KeyValuePairListsGUI ("Quaternions", saveData.quaternionKeyValuePairLists, quaternionSpecificGUI);
+ }
+
+
+ private void KeyValuePairListsGUI (string label, SaveData.KeyValuePairLists keyvaluePairList, Action specificGUI)
+ {
+ // Surround each data type in a box.
+ EditorGUILayout.BeginVertical(GUI.skin.box);
+ EditorGUI.indentLevel++;
+
+ // Display a label for this data type.
+ EditorGUILayout.LabelField (label);
+
+ // If there are data elements...
+ if (keyvaluePairList.keys.Count > 0)
+ {
+ // ... go through each of them...
+ for (int i = 0; i < keyvaluePairList.keys.Count; i++)
+ {
+ EditorGUILayout.BeginHorizontal ();
+
+ // ... and display a label for each followed by GUI specific to their type.
+ EditorGUILayout.LabelField (keyvaluePairList.keys[i]);
+ specificGUI (keyvaluePairList.values[i]);
+
+ EditorGUILayout.EndHorizontal ();
+ }
+ }
+
+ EditorGUI.indentLevel--;
+ EditorGUILayout.EndVertical();
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence/SaveDataEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence/SaveDataEditor.cs.meta
new file mode 100644
index 00000000..2e6353b7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/DataPersistence/SaveDataEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: dd3a3444339c84c4e914b87a6b416709
+timeCreated: 1469182629
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Extensions.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Extensions.meta
new file mode 100644
index 00000000..31bcc806
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Extensions.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 43983ce5b76d6864abbe6a8bdf5557c1
+folderAsset: yes
+timeCreated: 1469199315
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Extensions/SerializedPropertyExtensions.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Extensions/SerializedPropertyExtensions.cs
new file mode 100644
index 00000000..87fc47a7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Extensions/SerializedPropertyExtensions.cs
@@ -0,0 +1,86 @@
+using UnityEngine;
+using UnityEditor;
+
+// This class contains extension methods for the SerializedProperty
+// class. Specifically, methods for dealing with object arrays.
+public static class SerializedPropertyExtensions
+{
+ // Use this to add an object to an object array represented by a SerializedProperty.
+ public static void AddToObjectArray (this SerializedProperty arrayProperty, T elementToAdd)
+ where T : Object
+ {
+ // If the SerializedProperty this is being called from is not an array, throw an exception.
+ if (!arrayProperty.isArray)
+ throw new UnityException("SerializedProperty " + arrayProperty.name + " is not an array.");
+
+ // Pull all the information from the target of the serializedObject.
+ arrayProperty.serializedObject.Update();
+
+ // Add a null array element to the end of the array then populate it with the object parameter.
+ arrayProperty.InsertArrayElementAtIndex(arrayProperty.arraySize);
+ arrayProperty.GetArrayElementAtIndex(arrayProperty.arraySize - 1).objectReferenceValue = elementToAdd;
+
+ // Push all the information on the serializedObject back to the target.
+ arrayProperty.serializedObject.ApplyModifiedProperties();
+ }
+
+
+ // Use this to remove the object at an index from an object array represented by a SerializedProperty.
+ public static void RemoveFromObjectArrayAt (this SerializedProperty arrayProperty, int index)
+ {
+ // If the index is not appropriate or the serializedProperty this is being called from is not an array, throw an exception.
+ if(index < 0)
+ throw new UnityException("SerializedProperty " + arrayProperty.name + " cannot have negative elements removed.");
+
+ if (!arrayProperty.isArray)
+ throw new UnityException("SerializedProperty " + arrayProperty.name + " is not an array.");
+
+ if(index > arrayProperty.arraySize - 1)
+ throw new UnityException("SerializedProperty " + arrayProperty.name + " has only " + arrayProperty.arraySize + " elements so element " + index + " cannot be removed.");
+
+ // Pull all the information from the target of the serializedObject.
+ arrayProperty.serializedObject.Update();
+
+ // If there is a non-null element at the index, null it.
+ if (arrayProperty.GetArrayElementAtIndex(index).objectReferenceValue)
+ arrayProperty.DeleteArrayElementAtIndex(index);
+
+ // Delete the null element from the array at the index.
+ arrayProperty.DeleteArrayElementAtIndex(index);
+
+ // Push all the information on the serializedObject back to the target.
+ arrayProperty.serializedObject.ApplyModifiedProperties();
+ }
+
+
+ // Use this to remove an object from an object array represented by a SerializedProperty.
+ public static void RemoveFromObjectArray (this SerializedProperty arrayProperty, T elementToRemove)
+ where T : Object
+ {
+ // If either the serializedProperty doesn't represent an array or the element is null, throw an exception.
+ if (!arrayProperty.isArray)
+ throw new UnityException("SerializedProperty " + arrayProperty.name + " is not an array.");
+
+ if(!elementToRemove)
+ throw new UnityException("Removing a null element is not supported using this method.");
+
+ // Pull all the information from the target of the serializedObject.
+ arrayProperty.serializedObject.Update();
+
+ // Go through all the elements in the serializedProperty's array...
+ for (int i = 0; i < arrayProperty.arraySize; i++)
+ {
+ SerializedProperty elementProperty = arrayProperty.GetArrayElementAtIndex(i);
+
+ // ... until the element matches the parameter...
+ if (elementProperty.objectReferenceValue == elementToRemove)
+ {
+ // ... then remove it.
+ arrayProperty.RemoveFromObjectArrayAt (i);
+ return;
+ }
+ }
+
+ throw new UnityException("Element " + elementToRemove.name + "was not found in property " + arrayProperty.name);
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Extensions/SerializedPropertyExtensions.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Extensions/SerializedPropertyExtensions.cs.meta
new file mode 100644
index 00000000..9bb9b602
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Extensions/SerializedPropertyExtensions.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 0cf8878c8d3ee2d4b94b7eabb5cf96d7
+timeCreated: 1469199343
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction.meta
new file mode 100644
index 00000000..8d43fbcd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: e9dbeb73997f08148aae3640c8d2a182
+folderAsset: yes
+timeCreated: 1466763546
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions.meta
new file mode 100644
index 00000000..f6d652a9
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 4c8d1889b58e393449e70ef6ffcd34c3
+folderAsset: yes
+timeCreated: 1467714351
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/AllConditionsEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/AllConditionsEditor.cs
new file mode 100644
index 00000000..9ceab4b8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/AllConditionsEditor.cs
@@ -0,0 +1,262 @@
+using UnityEngine;
+using UnityEditor;
+
+[CustomEditor(typeof(AllConditions))]
+public class AllConditionsEditor : Editor
+{
+ // Property for accessing the descriptions for all the Conditions.
+ // This is used for the Popups on the ConditionEditor.
+ public static string[] AllConditionDescriptions
+ {
+ get
+ {
+ // If the description array doesn't exist yet, set it.
+ if (allConditionDescriptions == null)
+ {
+ SetAllConditionDescriptions ();
+ }
+ return allConditionDescriptions;
+ }
+ private set { allConditionDescriptions = value; }
+ }
+
+
+ private static string[] allConditionDescriptions; // Field to store the descriptions of all the Conditions.
+
+
+ private ConditionEditor[] conditionEditors; // All of the subEditors to display the Conditions.
+ private AllConditions allConditions; // Reference to the target.
+ private string newConditionDescription = "New Condition"; // String to start off the naming of new Conditions.
+
+
+ private const string creationPath = "Assets/Resources/AllConditions.asset";
+ // The path that the AllConditions asset is created at.
+ private const float buttonWidth = 30f; // Width in pixels of the button to create Conditions.
+
+
+ private void OnEnable()
+ {
+ // Cache the reference to the target.
+ allConditions = (AllConditions)target;
+
+ // If there aren't any Conditions on the target, create an empty array of Conditions.
+ if (allConditions.conditions == null)
+ allConditions.conditions = new Condition[0];
+
+ // If there aren't any editors, create them.
+ if (conditionEditors == null)
+ {
+ CreateEditors();
+ }
+ }
+
+
+ private void OnDisable()
+ {
+ // Destroy all the editors.
+ for (int i = 0; i < conditionEditors.Length; i++)
+ {
+ DestroyImmediate(conditionEditors[i]);
+ }
+
+ // Null out the editor array.
+ conditionEditors = null;
+ }
+
+
+ private static void SetAllConditionDescriptions ()
+ {
+ // Create a new array that has the same number of elements as there are Conditions.
+ AllConditionDescriptions = new string[TryGetConditionsLength()];
+
+ // Go through the array and assign the description of the condition at the same index.
+ for (int i = 0; i < AllConditionDescriptions.Length; i++)
+ {
+ AllConditionDescriptions[i] = TryGetConditionAt(i).description;
+ }
+ }
+
+
+ public override void OnInspectorGUI ()
+ {
+ // If there are different number of editors to Conditions, create them afresh.
+ if (conditionEditors.Length != TryGetConditionsLength ())
+ {
+ // Destroy all the old editors.
+ for (int i = 0; i < conditionEditors.Length; i++)
+ {
+ DestroyImmediate(conditionEditors[i]);
+ }
+
+ // Create new editors.
+ CreateEditors ();
+ }
+
+ // Display all the conditions.
+ for (int i = 0; i < conditionEditors.Length; i++)
+ {
+ conditionEditors[i].OnInspectorGUI ();
+ }
+
+ // If there are conditions, add a gap.
+ if (TryGetConditionsLength () > 0)
+ {
+ EditorGUILayout.Space ();
+ EditorGUILayout.Space ();
+ }
+
+ EditorGUILayout.BeginHorizontal ();
+
+ // Get and display a string for the name of a new Condition.
+ newConditionDescription = EditorGUILayout.TextField (GUIContent.none, newConditionDescription);
+
+ // Display a button that when clicked adds a new Condition to the AllConditions asset and resets the new description string.
+ if (GUILayout.Button ("+", GUILayout.Width (buttonWidth)))
+ {
+ AddCondition (newConditionDescription);
+ newConditionDescription = "New Condition";
+ }
+ EditorGUILayout.EndHorizontal ();
+ }
+
+
+ private void CreateEditors ()
+ {
+ // Create a new array for the editors which is the same length at the conditions array.
+ conditionEditors = new ConditionEditor[allConditions.conditions.Length];
+
+ // Go through all the empty array...
+ for (int i = 0; i < conditionEditors.Length; i++)
+ {
+ // ... and create an editor with an editor type to display correctly.
+ conditionEditors[i] = CreateEditor(TryGetConditionAt(i)) as ConditionEditor;
+ conditionEditors[i].editorType = ConditionEditor.EditorType.AllConditionAsset;
+ }
+ }
+
+
+ // Call this function when the menu item is selected.
+ [MenuItem("Assets/Create/AllConditions")]
+ private static void CreateAllConditionsAsset()
+ {
+ // If there's already an AllConditions asset, do nothing.
+ if(AllConditions.Instance)
+ return;
+
+ // Create an instance of the AllConditions object and make an asset for it.
+ AllConditions instance = CreateInstance();
+ AssetDatabase.CreateAsset(instance, creationPath);
+
+ // Set this as the singleton instance.
+ AllConditions.Instance = instance;
+
+ // Create a new empty array of Conditions.
+ instance.conditions = new Condition[0];
+ }
+
+
+ private void AddCondition(string description)
+ {
+ // If there isn't an AllConditions instance yet, put a message in the console and return.
+ if (!AllConditions.Instance)
+ {
+ Debug.LogError("AllConditions has not been created yet.");
+ return;
+ }
+
+ // Create a condition based on the description.
+ Condition newCondition = ConditionEditor.CreateCondition (description);
+
+ // The name is what is displayed by the asset so set that too.
+ newCondition.name = description;
+
+ // Record all operations on the newConditions so they can be undone.
+ Undo.RecordObject(newCondition, "Created new Condition");
+
+ // Attach the Condition to the AllConditions asset.
+ AssetDatabase.AddObjectToAsset(newCondition, AllConditions.Instance);
+
+ // Import the asset so it is recognised as a joined asset.
+ AssetDatabase.ImportAsset(AssetDatabase.GetAssetPath(newCondition));
+
+ // Add the Condition to the AllConditions array.
+ ArrayUtility.Add(ref AllConditions.Instance.conditions, newCondition);
+
+ // Mark the AllConditions asset as dirty so the editor knows to save changes to it when a project save happens.
+ EditorUtility.SetDirty(AllConditions.Instance);
+
+ // Recreate the condition description array with the new added Condition.
+ SetAllConditionDescriptions ();
+ }
+
+
+ public static void RemoveCondition(Condition condition)
+ {
+ // If there isn't an AllConditions asset, do nothing.
+ if (!AllConditions.Instance)
+ {
+ Debug.LogError("AllConditions has not been created yet.");
+ return;
+ }
+
+ // Record all operations on the AllConditions asset so they can be undone.
+ Undo.RecordObject(AllConditions.Instance, "Removing condition");
+
+ // Remove the specified condition from the AllConditions array.
+ ArrayUtility.Remove(ref AllConditions.Instance.conditions, condition);
+
+ // Destroy the condition, including it's asset and save the assets to recognise the change.
+ DestroyImmediate(condition, true);
+ AssetDatabase.SaveAssets();
+
+ // Mark the AllConditions asset as dirty so the editor knows to save changes to it when a project save happens.
+ EditorUtility.SetDirty(AllConditions.Instance);
+
+ // Recreate the condition description array without the removed condition.
+ SetAllConditionDescriptions ();
+ }
+
+
+ public static int TryGetConditionIndex (Condition condition)
+ {
+ // Go through all the Conditions...
+ for (int i = 0; i < TryGetConditionsLength (); i++)
+ {
+ // ... and if one matches the given Condition, return its index.
+ if (TryGetConditionAt (i).hash == condition.hash)
+ return i;
+ }
+
+ // If the Condition wasn't found, return -1.
+ return -1;
+ }
+
+
+ public static Condition TryGetConditionAt (int index)
+ {
+ // Cache the AllConditions array.
+ Condition[] allConditions = AllConditions.Instance.conditions;
+
+ // If it doesn't exist or there are null elements, return null.
+ if (allConditions == null || allConditions[0] == null)
+ return null;
+
+ // If the given index is beyond the length of the array return the first element.
+ if (index >= allConditions.Length)
+ return allConditions[0];
+
+ // Otherwise return the Condition at the given index.
+ return allConditions[index];
+ }
+
+
+ public static int TryGetConditionsLength ()
+ {
+ // If there is no Conditions array, return a length of 0.
+ if (AllConditions.Instance.conditions == null)
+ return 0;
+
+ // Otherwise return the length of the array.
+ return AllConditions.Instance.conditions.Length;
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/AllConditionsEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/AllConditionsEditor.cs.meta
new file mode 100644
index 00000000..c195a0b1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/AllConditionsEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 350a826281427894e9cee38c2cadf547
+timeCreated: 1467807096
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/ConditionCollectionEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/ConditionCollectionEditor.cs
new file mode 100644
index 00000000..ba92ea0e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/ConditionCollectionEditor.cs
@@ -0,0 +1,161 @@
+using UnityEngine;
+using UnityEditor;
+
+[CustomEditor(typeof(ConditionCollection))]
+public class ConditionCollectionEditor : EditorWithSubEditors
+{
+ public SerializedProperty collectionsProperty; // Represents the array of ConditionCollections that the target belongs to.
+
+
+ private ConditionCollection conditionCollection; // Reference to the target.
+ private SerializedProperty descriptionProperty; // Represents a string description for the target.
+ private SerializedProperty conditionsProperty; // Represents an array of Conditions for the target.
+ private SerializedProperty reactionCollectionProperty; // Represents the ReactionCollection that is referenced by the target.
+
+
+ private const float conditionButtonWidth = 30f; // Width of the button for adding a new Condition.
+ private const float collectionButtonWidth = 125f; // Width of the button for removing the target from it's Interactable.
+ private const string conditionCollectionPropDescriptionName = "description";
+ // Name of the field that represents a string description for the target.
+ private const string conditionCollectionPropRequiredConditionsName = "requiredConditions";
+ // Name of the field that represents an array of Conditions for the target.
+ private const string conditionCollectionPropReactionCollectionName = "reactionCollection";
+ // Name of the field that represents the ReactionCollection that is referenced by the target.
+
+
+ private void OnEnable ()
+ {
+ // Cache a reference to the target.
+ conditionCollection = (ConditionCollection)target;
+
+ // If this Editor exists but isn't targeting anything destroy it.
+ if (target == null)
+ {
+ DestroyImmediate (this);
+ return;
+ }
+
+ // Cache the SerializedProperties.
+ descriptionProperty = serializedObject.FindProperty(conditionCollectionPropDescriptionName);
+ conditionsProperty = serializedObject.FindProperty(conditionCollectionPropRequiredConditionsName);
+ reactionCollectionProperty = serializedObject.FindProperty(conditionCollectionPropReactionCollectionName);
+
+ // Check if the Editors for the Conditions need creating and optionally create them.
+ CheckAndCreateSubEditors (conditionCollection.requiredConditions);
+ }
+
+
+ private void OnDisable ()
+ {
+ // When this Editor ends, destroy all it's subEditors.
+ CleanupEditors ();
+ }
+
+
+ // This is called immediately when a subEditor is created.
+ protected override void SubEditorSetup (ConditionEditor editor)
+ {
+ // Set the editor type so that the correct GUI for Condition is shown.
+ editor.editorType = ConditionEditor.EditorType.ConditionCollection;
+
+ // Assign the conditions property so that the ConditionEditor can remove its target if necessary.
+ editor.conditionsProperty = conditionsProperty;
+ }
+
+
+ public override void OnInspectorGUI ()
+ {
+ // Pull the information from the target into the serializedObject.
+ serializedObject.Update ();
+
+ // Check if the Editors for the Conditions need creating and optionally create them.
+ CheckAndCreateSubEditors(conditionCollection.requiredConditions);
+
+ EditorGUILayout.BeginVertical(GUI.skin.box);
+ EditorGUI.indentLevel++;
+
+ EditorGUILayout.BeginHorizontal();
+
+ // Use the isExpanded bool for the descriptionProperty to store whether the foldout is open or closed.
+ descriptionProperty.isExpanded = EditorGUILayout.Foldout(descriptionProperty.isExpanded, descriptionProperty.stringValue);
+
+ // Display a button showing 'Remove Collection' which removes the target from the Interactable when clicked.
+ if (GUILayout.Button("Remove Collection", GUILayout.Width(collectionButtonWidth)))
+ {
+ collectionsProperty.RemoveFromObjectArray (conditionCollection);
+ }
+
+ EditorGUILayout.EndHorizontal();
+
+ // If the foldout is open show the expanded GUI.
+ if (descriptionProperty.isExpanded)
+ {
+ ExpandedGUI ();
+ }
+
+ EditorGUI.indentLevel--;
+ EditorGUILayout.EndVertical();
+
+ // Push all changes made on the serializedObject back to the target.
+ serializedObject.ApplyModifiedProperties();
+ }
+
+
+ private void ExpandedGUI ()
+ {
+ EditorGUILayout.Space();
+
+ // Display the description for editing.
+ EditorGUILayout.PropertyField(descriptionProperty);
+
+ EditorGUILayout.Space();
+
+ // Display the Labels for the Conditions evenly split over the width of the inspector.
+ float space = EditorGUIUtility.currentViewWidth / 3f;
+
+ EditorGUILayout.BeginHorizontal();
+ EditorGUILayout.LabelField("Condition", GUILayout.Width(space));
+ EditorGUILayout.LabelField("Satisfied?", GUILayout.Width(space));
+ EditorGUILayout.LabelField("Add/Remove", GUILayout.Width(space));
+ EditorGUILayout.EndHorizontal();
+
+ // Display each of the Conditions.
+ EditorGUILayout.BeginVertical(GUI.skin.box);
+ for (int i = 0; i < subEditors.Length; i++)
+ {
+ subEditors[i].OnInspectorGUI();
+ }
+ EditorGUILayout.EndHorizontal();
+
+ // Display a right aligned button which when clicked adds a Condition to the array.
+ EditorGUILayout.BeginHorizontal();
+ GUILayout.FlexibleSpace ();
+ if (GUILayout.Button("+", GUILayout.Width(conditionButtonWidth)))
+ {
+ Condition newCondition = ConditionEditor.CreateCondition();
+ conditionsProperty.AddToObjectArray(newCondition);
+ }
+ EditorGUILayout.EndHorizontal();
+
+ EditorGUILayout.Space();
+
+ // Display the reference to the ReactionCollection for editing.
+ EditorGUILayout.PropertyField(reactionCollectionProperty);
+ }
+
+
+ // This function is static such that it can be called without an editor being instanced.
+ public static ConditionCollection CreateConditionCollection()
+ {
+ // Create a new instance of ConditionCollection.
+ ConditionCollection newConditionCollection = CreateInstance();
+
+ // Give it a default description.
+ newConditionCollection.description = "New condition collection";
+
+ // Give it a single default Condition.
+ newConditionCollection.requiredConditions = new Condition[1];
+ newConditionCollection.requiredConditions[0] = ConditionEditor.CreateCondition();
+ return newConditionCollection;
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/ConditionCollectionEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/ConditionCollectionEditor.cs.meta
new file mode 100644
index 00000000..a2e0420d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/ConditionCollectionEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: d16670cda04bce94fa9d82405b13e469
+timeCreated: 1470821301
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/ConditionEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/ConditionEditor.cs
new file mode 100644
index 00000000..da68b6e1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/ConditionEditor.cs
@@ -0,0 +1,188 @@
+using UnityEngine;
+using UnityEditor;
+
+// This class controls all the GUI for Conditions
+// in all the places they are found.
+[CustomEditor(typeof(Condition))]
+public class ConditionEditor : Editor
+{
+ // This enum is used to represent where the Condition is being seen in the inspector.
+ // ConditionAsset is for when a single Condition asset is selected as a child of the AllConditions asset.
+ // AllConditionAsset is when the AllConditions asset is selected and this is a nested Editor.
+ // ConditionCollection is when an Interactable is selected and this is a nested Editor within a ConditionCollection.
+ public enum EditorType
+ {
+ ConditionAsset, AllConditionAsset, ConditionCollection
+ }
+
+
+ public EditorType editorType; // The type of this Editor.
+ public SerializedProperty conditionsProperty; // The SerializedProperty representing an array of Conditions on a ConditionCollection.
+
+
+ private SerializedProperty descriptionProperty; // Represents a string description of this Editor's target.
+ private SerializedProperty satisfiedProperty; // Represents a bool of whether this Editor's target is satisfied.
+ private SerializedProperty hashProperty; // Represents the number that identified this Editor's target.
+ private Condition condition; // Reference to the target.
+
+
+ private const float conditionButtonWidth = 30f; // Width in pixels of the button to remove this Condition from it's array.
+ private const float toggleOffset = 30f; // Offset to line up the satisfied toggle with its label.
+ private const string conditionPropDescriptionName = "description"; // Name of the field that represents the description.
+ private const string conditionPropSatisfiedName = "satisfied"; // Name of the field that represents whether or not the Condition is satisfied.
+ private const string conditionPropHashName = "hash"; // Name of the field that represents the Condition's identifier.
+ private const string blankDescription = "No conditions set."; // Description to use in case no Conditions have been created yet.
+
+
+ private void OnEnable()
+ {
+ // Cache the target.
+ condition = (Condition)target;
+
+ // If this Editor has persisted through the destruction of it's target then destroy it.
+ if (target == null)
+ {
+ DestroyImmediate(this);
+ return;
+ }
+
+ // Cache the SerializedProperties.
+ descriptionProperty = serializedObject.FindProperty(conditionPropDescriptionName);
+ satisfiedProperty = serializedObject.FindProperty(conditionPropSatisfiedName);
+ hashProperty = serializedObject.FindProperty(conditionPropHashName);
+ }
+
+
+ public override void OnInspectorGUI()
+ {
+ // Call different GUI depending where the Condition is.
+ switch (editorType)
+ {
+ case EditorType.AllConditionAsset:
+ AllConditionsAssetGUI();
+ break;
+ case EditorType.ConditionAsset:
+ ConditionAssetGUI();
+ break;
+ case EditorType.ConditionCollection:
+ InteractableGUI();
+ break;
+ default:
+ throw new UnityException("Unknown ConditionEditor.EditorType.");
+ }
+ }
+
+
+ // This is displayed for each Condition when the AllConditions asset is selected.
+ private void AllConditionsAssetGUI()
+ {
+ EditorGUILayout.BeginHorizontal(GUI.skin.box);
+ EditorGUI.indentLevel++;
+
+ // Display the description of the Condition.
+ EditorGUILayout.LabelField(condition.description);
+
+ // Display a button showing a '-' that if clicked removes this Condition from the AllConditions asset.
+ if (GUILayout.Button("-", GUILayout.Width(conditionButtonWidth)))
+ AllConditionsEditor.RemoveCondition(condition);
+
+ EditorGUI.indentLevel--;
+ EditorGUILayout.EndHorizontal();
+ }
+
+
+ // This is displayed when a single Condition asset is selected as a child of the AllConditions asset.
+ private void ConditionAssetGUI()
+ {
+ EditorGUILayout.BeginHorizontal(GUI.skin.box);
+ EditorGUI.indentLevel++;
+
+ // Display the description of the Condition.
+ EditorGUILayout.LabelField(condition.description);
+
+ EditorGUI.indentLevel--;
+ EditorGUILayout.EndHorizontal();
+ }
+
+
+ private void InteractableGUI()
+ {
+ // Pull the information from the target into the serializedObject.
+ serializedObject.Update();
+
+ // The width for the Popup, Toggle and remove Button.
+ float width = EditorGUIUtility.currentViewWidth / 3f;
+
+ EditorGUILayout.BeginHorizontal();
+
+ // Find the index for the target based on the AllConditions array.
+ int conditionIndex = AllConditionsEditor.TryGetConditionIndex(condition);
+
+ // If the target can't be found in the AllConditions array use the first condition.
+ if (conditionIndex == -1)
+ conditionIndex = 0;
+
+ // Set the index based on the user selection of the condition by the user.
+ conditionIndex = EditorGUILayout.Popup(conditionIndex, AllConditionsEditor.AllConditionDescriptions,
+ GUILayout.Width(width));
+
+ // Find the equivalent condition in the AllConditions array.
+ Condition globalCondition = AllConditionsEditor.TryGetConditionAt(conditionIndex);
+
+ // Set the description based on the globalCondition's description.
+ descriptionProperty.stringValue = globalCondition != null ? globalCondition.description : blankDescription;
+
+ // Set the hash based on the description.
+ hashProperty.intValue = Animator.StringToHash(descriptionProperty.stringValue);
+
+ // Display the toggle for the satisfied bool.
+ EditorGUILayout.PropertyField(satisfiedProperty, GUIContent.none, GUILayout.Width(width + toggleOffset));
+
+ // Display a button with a '-' that when clicked removes the target from the ConditionCollection's conditions array.
+ if (GUILayout.Button("-", GUILayout.Width(conditionButtonWidth)))
+ {
+ conditionsProperty.RemoveFromObjectArray(condition);
+ }
+
+ EditorGUILayout.EndHorizontal();
+
+ // Push all changes made on the serializedObject back to the target.
+ serializedObject.ApplyModifiedProperties();
+ }
+
+
+ // This function is static such that it can be called without an editor being instanced.
+ public static Condition CreateCondition()
+ {
+ // Create a new instance of Condition.
+ Condition newCondition = CreateInstance();
+
+ string blankDescription = "No conditions set.";
+
+ // Try and set the new condition's description to the first condition in the AllConditions array.
+ Condition globalCondition = AllConditionsEditor.TryGetConditionAt(0);
+ newCondition.description = globalCondition != null ? globalCondition.description : blankDescription;
+
+ // Set the hash based on this description.
+ SetHash(newCondition);
+ return newCondition;
+ }
+
+
+ public static Condition CreateCondition(string description)
+ {
+ // Create a new instance of the Condition.
+ Condition newCondition = CreateInstance();
+
+ // Set the description and the hash based on it.
+ newCondition.description = description;
+ SetHash(newCondition);
+ return newCondition;
+ }
+
+
+ private static void SetHash(Condition condition)
+ {
+ condition.hash = Animator.StringToHash(condition.description);
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/ConditionEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/ConditionEditor.cs.meta
new file mode 100644
index 00000000..cd79db29
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/Conditions/ConditionEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: badcfc1123a99544a9bdba8874619d9b
+timeCreated: 1468239979
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/InteractableEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/InteractableEditor.cs
new file mode 100644
index 00000000..77456da0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/InteractableEditor.cs
@@ -0,0 +1,92 @@
+using UnityEngine;
+using UnityEditor;
+
+// This is the Editor for the Interactable MonoBehaviour.
+// However, since the Interactable contains many sub-objects,
+// it requires many sub-editors to display them.
+// For more details see the EditorWithSubEditors class.
+[CustomEditor(typeof(Interactable))]
+public class InteractableEditor : EditorWithSubEditors
+{
+ private Interactable interactable; // Reference to the target.
+ private SerializedProperty interactionLocationProperty; // Represents the Transform which is where the player walks to in order to Interact with the Interactable.
+ private SerializedProperty collectionsProperty; // Represents the ConditionCollection array on the Interactable.
+ private SerializedProperty defaultReactionCollectionProperty; // Represents the ReactionCollection which is used if none of the ConditionCollections are.
+
+
+ private const float collectionButtonWidth = 125f; // Width in pixels of the button for adding to the ConditionCollection array.
+ private const string interactablePropInteractionLocationName = "interactionLocation";
+ // Name of the Transform field for where the player walks to in order to Interact with the Interactable.
+ private const string interactablePropConditionCollectionsName = "conditionCollections";
+ // Name of the ConditionCollection array.
+ private const string interactablePropDefaultReactionCollectionName = "defaultReactionCollection";
+ // Name of the ReactionCollection field which is used if none of the ConditionCollections are.
+
+
+ private void OnEnable ()
+ {
+ // Cache the target reference.
+ interactable = (Interactable)target;
+
+ // Cache the SerializedProperties.
+ collectionsProperty = serializedObject.FindProperty(interactablePropConditionCollectionsName);
+ interactionLocationProperty = serializedObject.FindProperty(interactablePropInteractionLocationName);
+ defaultReactionCollectionProperty = serializedObject.FindProperty(interactablePropDefaultReactionCollectionName);
+
+ // Create the necessary Editors for the ConditionCollections.
+ CheckAndCreateSubEditors(interactable.conditionCollections);
+ }
+
+
+ private void OnDisable ()
+ {
+ // When the InteractableEditor is disabled, destroy all the ConditionCollection editors.
+ CleanupEditors ();
+ }
+
+
+ // This is called when the ConditionCollection editors are created.
+ protected override void SubEditorSetup(ConditionCollectionEditor editor)
+ {
+ // Give the ConditionCollection editor a reference to the array to which it belongs.
+ editor.collectionsProperty = collectionsProperty;
+ }
+
+
+ public override void OnInspectorGUI ()
+ {
+ // Pull information from the target into the serializedObject.
+ serializedObject.Update ();
+
+ // If necessary, create editors for the ConditionCollections.
+ CheckAndCreateSubEditors(interactable.conditionCollections);
+
+ // Use the default object field GUI for the interactionLocation.
+ EditorGUILayout.PropertyField (interactionLocationProperty);
+
+ // Display all of the ConditionCollections.
+ for (int i = 0; i < subEditors.Length; i++)
+ {
+ subEditors[i].OnInspectorGUI ();
+ EditorGUILayout.Space ();
+ }
+
+ // Create a right-aligned button which when clicked, creates a new ConditionCollection in the ConditionCollections array.
+ EditorGUILayout.BeginHorizontal();
+ GUILayout.FlexibleSpace ();
+ if (GUILayout.Button("Add Collection", GUILayout.Width(collectionButtonWidth)))
+ {
+ ConditionCollection newCollection = ConditionCollectionEditor.CreateConditionCollection ();
+ collectionsProperty.AddToObjectArray (newCollection);
+ }
+ EditorGUILayout.EndHorizontal ();
+
+ EditorGUILayout.Space ();
+
+ // Use the default object field GUI for the defaultReaction.
+ EditorGUILayout.PropertyField (defaultReactionCollectionProperty);
+
+ // Push information back to the target from the serializedObject.
+ serializedObject.ApplyModifiedProperties ();
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/InteractableEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/InteractableEditor.cs.meta
new file mode 100644
index 00000000..1f8e5e39
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/InteractableEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 27f731a3c93269845a152b80779e8c6a
+timeCreated: 1466687860
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionCollectionEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionCollectionEditor.cs
new file mode 100644
index 00000000..159c6927
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionCollectionEditor.cs
@@ -0,0 +1,268 @@
+using System;
+using UnityEngine;
+using System.Collections.Generic;
+using UnityEditor;
+
+// This is the Editor for the ReactionCollection MonoBehaviour.
+// However, since the ReactionCollection contains many Reactions,
+// it requires many sub-editors to display them.
+// For more details see the EditorWithSubEditors class.
+// There are two ways of adding Reactions to the ReactionCollection:
+// a type selection popup with confirmation button and a drag and drop
+// area. Details on these are found below.
+[CustomEditor(typeof(ReactionCollection))]
+public class ReactionCollectionEditor : EditorWithSubEditors
+{
+ private ReactionCollection reactionCollection; // Reference to the target.
+ private SerializedProperty reactionsProperty; // Represents the array of Reactions.
+
+ private Type[] reactionTypes; // All the non-abstract types which inherit from Reaction. This is used for adding new Reactions.
+ private string[] reactionTypeNames; // The names of all appropriate Reaction types.
+ private int selectedIndex; // The index of the currently selected Reaction type.
+
+
+ private const float dropAreaHeight = 50f; // Height in pixels of the area for dropping scripts.
+ private const float controlSpacing = 5f; // Width in pixels between the popup type selection and drop area.
+ private const string reactionsPropName = "reactions"; // Name of the field for the array of Reactions.
+
+
+ private readonly float verticalSpacing = EditorGUIUtility.standardVerticalSpacing;
+ // Caching the vertical spacing between GUI elements.
+
+
+ private void OnEnable ()
+ {
+ // Cache the target.
+ reactionCollection = (ReactionCollection)target;
+
+ // Cache the SerializedProperty
+ reactionsProperty = serializedObject.FindProperty(reactionsPropName);
+
+ // If new editors are required for Reactions, create them.
+ CheckAndCreateSubEditors (reactionCollection.reactions);
+
+ // Set the array of types and type names of subtypes of Reaction.
+ SetReactionNamesArray ();
+ }
+
+
+ private void OnDisable ()
+ {
+ // Destroy all the subeditors.
+ CleanupEditors ();
+ }
+
+
+ // This is called immediately after each ReactionEditor is created.
+ protected override void SubEditorSetup (ReactionEditor editor)
+ {
+ // Make sure the ReactionEditors have a reference to the array that contains their targets.
+ editor.reactionsProperty = reactionsProperty;
+ }
+
+
+ public override void OnInspectorGUI ()
+ {
+ // Pull all the information from the target into the serializedObject.
+ serializedObject.Update ();
+
+ // If new editors for Reactions are required, create them.
+ CheckAndCreateSubEditors(reactionCollection.reactions);
+
+ // Display all the Reactions.
+ for (int i = 0; i < subEditors.Length; i++)
+ {
+ subEditors[i].OnInspectorGUI ();
+ }
+
+ // If there are Reactions, add a space.
+ if (reactionCollection.reactions.Length > 0)
+ {
+ EditorGUILayout.Space();
+ EditorGUILayout.Space ();
+ }
+
+ // Create a Rect for the full width of the inspector with enough height for the drop area.
+ Rect fullWidthRect = GUILayoutUtility.GetRect(GUIContent.none, GUIStyle.none, GUILayout.Height(dropAreaHeight + verticalSpacing));
+
+ // Create a Rect for the left GUI controls.
+ Rect leftAreaRect = fullWidthRect;
+
+ // It should be in half a space from the top.
+ leftAreaRect.y += verticalSpacing * 0.5f;
+
+ // The width should be slightly less than half the width of the inspector.
+ leftAreaRect.width *= 0.5f;
+ leftAreaRect.width -= controlSpacing * 0.5f;
+
+ // The height should be the same as the drop area.
+ leftAreaRect.height = dropAreaHeight;
+
+ // Create a Rect for the right GUI controls that is the same as the left Rect except...
+ Rect rightAreaRect = leftAreaRect;
+
+ // ... it should be on the right.
+ rightAreaRect.x += rightAreaRect.width + controlSpacing;
+
+ // Display the GUI for the type popup and button on the left.
+ TypeSelectionGUI (leftAreaRect);
+
+ // Display the GUI for the drag and drop area on the right.
+ DragAndDropAreaGUI (rightAreaRect);
+
+ // Manage the events for dropping on the right area.
+ DraggingAndDropping(rightAreaRect, this);
+
+ // Push the information back from the serializedObject to the target.
+ serializedObject.ApplyModifiedProperties ();
+ }
+
+
+ private void TypeSelectionGUI (Rect containingRect)
+ {
+ // Create Rects for the top and bottom half.
+ Rect topHalf = containingRect;
+ topHalf.height *= 0.5f;
+ Rect bottomHalf = topHalf;
+ bottomHalf.y += bottomHalf.height;
+
+ // Display a popup in the top half showing all the reaction types.
+ selectedIndex = EditorGUI.Popup(topHalf, selectedIndex, reactionTypeNames);
+
+ // Display a button in the bottom half that if clicked...
+ if (GUI.Button (bottomHalf, "Add Selected Reaction"))
+ {
+ // ... finds the type selected by the popup, creates an appropriate reaction and adds it to the array.
+ Type reactionType = reactionTypes[selectedIndex];
+ Reaction newReaction = ReactionEditor.CreateReaction (reactionType);
+ reactionsProperty.AddToObjectArray (newReaction);
+ }
+ }
+
+
+ private static void DragAndDropAreaGUI (Rect containingRect)
+ {
+ // Create a GUI style of a box but with middle aligned text and button text color.
+ GUIStyle centredStyle = GUI.skin.box;
+ centredStyle.alignment = TextAnchor.MiddleCenter;
+ centredStyle.normal.textColor = GUI.skin.button.normal.textColor;
+
+ // Draw a box over the area with the created style.
+ GUI.Box (containingRect, "Drop new Reactions here", centredStyle);
+ }
+
+
+ private static void DraggingAndDropping (Rect dropArea, ReactionCollectionEditor editor)
+ {
+ // Cache the current event.
+ Event currentEvent = Event.current;
+
+ // If the drop area doesn't contain the mouse then return.
+ if (!dropArea.Contains (currentEvent.mousePosition))
+ return;
+
+ switch (currentEvent.type)
+ {
+ // If the mouse is dragging something...
+ case EventType.DragUpdated:
+
+ // ... change whether or not the drag *can* be performed by changing the visual mode of the cursor based on the IsDragValid function.
+ DragAndDrop.visualMode = IsDragValid () ? DragAndDropVisualMode.Link : DragAndDropVisualMode.Rejected;
+
+ // Make sure the event isn't used by anything else.
+ currentEvent.Use ();
+
+ break;
+
+ // If the mouse was dragging something and has released...
+ case EventType.DragPerform:
+
+ // ... accept the drag event.
+ DragAndDrop.AcceptDrag();
+
+ // Go through all the objects that were being dragged...
+ for (int i = 0; i < DragAndDrop.objectReferences.Length; i++)
+ {
+ // ... and find the script asset that was being dragged...
+ MonoScript script = DragAndDrop.objectReferences[i] as MonoScript;
+
+ // ... then find the type of that Reaction...
+ Type reactionType = script.GetClass();
+
+ // ... and create a Reaction of that type and add it to the array.
+ Reaction newReaction = ReactionEditor.CreateReaction (reactionType);
+ editor.reactionsProperty.AddToObjectArray (newReaction);
+ }
+
+ // Make sure the event isn't used by anything else.
+ currentEvent.Use();
+
+ break;
+ }
+ }
+
+
+ private static bool IsDragValid ()
+ {
+ // Go through all the objects being dragged...
+ for (int i = 0; i < DragAndDrop.objectReferences.Length; i++)
+ {
+ // ... and if any of them are not script assets, return that the drag is invalid.
+ if (DragAndDrop.objectReferences[i].GetType () != typeof (MonoScript))
+ return false;
+
+ // Otherwise find the class contained in the script asset.
+ MonoScript script = DragAndDrop.objectReferences[i] as MonoScript;
+ Type scriptType = script.GetClass ();
+
+ // If the script does not inherit from Reaction, return that the drag is invalid.
+ if (!scriptType.IsSubclassOf (typeof(Reaction)))
+ return false;
+
+ // If the script is an abstract, return that the drag is invalid.
+ if (scriptType.IsAbstract)
+ return false;
+ }
+
+ // If none of the dragging objects returned that the drag was invalid, return that it is valid.
+ return true;
+ }
+
+
+ private void SetReactionNamesArray ()
+ {
+ // Store the Reaction type.
+ Type reactionType = typeof(Reaction);
+
+ // Get all the types that are in the same Assembly (all the runtime scripts) as the Reaction type.
+ Type[] allTypes = reactionType.Assembly.GetTypes();
+
+ // Create an empty list to store all the types that are subtypes of Reaction.
+ List reactionSubTypeList = new List();
+
+ // Go through all the types in the Assembly...
+ for (int i = 0; i < allTypes.Length; i++)
+ {
+ // ... and if they are a non-abstract subclass of Reaction then add them to the list.
+ if (allTypes[i].IsSubclassOf(reactionType) && !allTypes[i].IsAbstract)
+ {
+ reactionSubTypeList.Add(allTypes[i]);
+ }
+ }
+
+ // Convert the list to an array and store it.
+ reactionTypes = reactionSubTypeList.ToArray();
+
+ // Create an empty list of strings to store the names of the Reaction types.
+ List reactionTypeNameList = new List();
+
+ // Go through all the Reaction types and add their names to the list.
+ for (int i = 0; i < reactionTypes.Length; i++)
+ {
+ reactionTypeNameList.Add(reactionTypes[i].Name);
+ }
+
+ // Convert the list to an array and store it.
+ reactionTypeNames = reactionTypeNameList.ToArray();
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionCollectionEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionCollectionEditor.cs.meta
new file mode 100644
index 00000000..8f7da0aa
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionCollectionEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 30f7e12577cd4e6418d94e7ba9d24951
+timeCreated: 1465905662
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors.meta
new file mode 100644
index 00000000..ea71705d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: f515ffcf17fc37346a3c68e9bae2b90d
+folderAsset: yes
+timeCreated: 1465984433
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/AnimationReactionEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/AnimationReactionEditor.cs
new file mode 100644
index 00000000..106c6666
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/AnimationReactionEditor.cs
@@ -0,0 +1,10 @@
+using UnityEditor;
+
+[CustomEditor(typeof(AnimationReaction))]
+public class AnimationReactionEditor : ReactionEditor
+{
+ protected override string GetFoldoutLabel ()
+ {
+ return "Animation Reaction";
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/AnimationReactionEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/AnimationReactionEditor.cs.meta
new file mode 100644
index 00000000..acd2ce0f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/AnimationReactionEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 8efd0f8dae335f648a5e378151c4ffde
+timeCreated: 1465984627
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/AudioReactionEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/AudioReactionEditor.cs
new file mode 100644
index 00000000..79b40313
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/AudioReactionEditor.cs
@@ -0,0 +1,10 @@
+using UnityEditor;
+
+[CustomEditor(typeof(AudioReaction))]
+public class AudioReactionEditor : ReactionEditor
+{
+ protected override string GetFoldoutLabel ()
+ {
+ return "Audio Reaction";
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/AudioReactionEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/AudioReactionEditor.cs.meta
new file mode 100644
index 00000000..9827527e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/AudioReactionEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: bd7f4aec82757bd4ea3b92cf4c484d96
+timeCreated: 1465984660
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/BehaviourReactionEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/BehaviourReactionEditor.cs
new file mode 100644
index 00000000..ae4553b5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/BehaviourReactionEditor.cs
@@ -0,0 +1,10 @@
+using UnityEditor;
+
+[CustomEditor(typeof(BehaviourReaction))]
+public class BehaviourReactionEditor : ReactionEditor
+{
+ protected override string GetFoldoutLabel ()
+ {
+ return "Behaviour Reaction";
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/BehaviourReactionEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/BehaviourReactionEditor.cs.meta
new file mode 100644
index 00000000..23a32c9f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/BehaviourReactionEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 0c8f72496399164499345ad951a2b653
+timeCreated: 1465987694
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/ConditionReactionEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/ConditionReactionEditor.cs
new file mode 100644
index 00000000..26093b11
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/ConditionReactionEditor.cs
@@ -0,0 +1,48 @@
+using UnityEditor;
+
+[CustomEditor(typeof(ConditionReaction))]
+public class ConditionReactionEditor : ReactionEditor
+{
+ private SerializedProperty conditionProperty; // Represents the Condition that will be changed.
+ private SerializedProperty satisfiedProperty; // Represents the value that the Condition's satifised flag will be set to.
+
+
+ private const string conditionReactionPropConditionName = "condition";
+ // Name of the field which is the Condition that will be changed.
+ private const string conditionReactionPropSatisfiedName = "satisfied";
+ // Name of the bool field which is the value the Condition will get.
+
+
+ protected override void Init ()
+ {
+ // Cache the SerializedProperties.
+ conditionProperty = serializedObject.FindProperty (conditionReactionPropConditionName);
+ satisfiedProperty = serializedObject.FindProperty (conditionReactionPropSatisfiedName);
+ }
+
+
+ protected override void DrawReaction ()
+ {
+ // If there's isn't a Condition yet, set it to the first Condition from the AllConditions array.
+ if (conditionProperty.objectReferenceValue == null)
+ conditionProperty.objectReferenceValue = AllConditionsEditor.TryGetConditionAt(0);
+
+ // Get the index of the Condition in the AllConditions array.
+ int index = AllConditionsEditor.TryGetConditionIndex ((Condition)conditionProperty.objectReferenceValue);
+
+ // Use and set that index based on a popup of all the descriptions of the Conditions.
+ index = EditorGUILayout.Popup (index, AllConditionsEditor.AllConditionDescriptions);
+
+ // Set the Condition based on the new index from the AllConditions array.
+ conditionProperty.objectReferenceValue = AllConditionsEditor.TryGetConditionAt(index);
+
+ // Use default toggle GUI for the satisfied field.
+ EditorGUILayout.PropertyField (satisfiedProperty);
+ }
+
+
+ protected override string GetFoldoutLabel ()
+ {
+ return "Condition Reaction";
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/ConditionReactionEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/ConditionReactionEditor.cs.meta
new file mode 100644
index 00000000..102a7664
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/ConditionReactionEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: c267e6d7c88ecbc4db66bd706f8d5c78
+timeCreated: 1469439901
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/GameObjectReactionEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/GameObjectReactionEditor.cs
new file mode 100644
index 00000000..75db768d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/GameObjectReactionEditor.cs
@@ -0,0 +1,10 @@
+using UnityEditor;
+
+[CustomEditor(typeof(GameObjectReaction))]
+public class GameObjectReactionEditor : ReactionEditor
+{
+ protected override string GetFoldoutLabel ()
+ {
+ return "GameObject Reaction";
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/GameObjectReactionEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/GameObjectReactionEditor.cs.meta
new file mode 100644
index 00000000..e33d2467
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/GameObjectReactionEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 7baaafb028f42014c96e3ea4ed05b1fe
+timeCreated: 1465987708
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/LostItemReactionEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/LostItemReactionEditor.cs
new file mode 100644
index 00000000..92b6d257
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/LostItemReactionEditor.cs
@@ -0,0 +1,10 @@
+using UnityEditor;
+
+[CustomEditor(typeof(LostItemReaction))]
+public class LostItemReactionEditor : ReactionEditor
+{
+ protected override string GetFoldoutLabel ()
+ {
+ return "Lost Item Reaction";
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/LostItemReactionEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/LostItemReactionEditor.cs.meta
new file mode 100644
index 00000000..b5f9d024
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/LostItemReactionEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: ef73e701c8534fb4bb106acfddc80ab3
+timeCreated: 1465987724
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/PickedUpReactionEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/PickedUpReactionEditor.cs
new file mode 100644
index 00000000..58cba978
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/PickedUpReactionEditor.cs
@@ -0,0 +1,10 @@
+using UnityEditor;
+
+[CustomEditor(typeof(PickedUpItemReaction))]
+public class PickedUpItemReactionEditor : ReactionEditor
+{
+ protected override string GetFoldoutLabel()
+ {
+ return "Picked Up Item Reaction";
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/PickedUpReactionEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/PickedUpReactionEditor.cs.meta
new file mode 100644
index 00000000..bc80f183
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/PickedUpReactionEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 51f64283da13d454eac85754dd480711
+timeCreated: 1465987738
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/ReactionEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/ReactionEditor.cs
new file mode 100644
index 00000000..32d94bd4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/ReactionEditor.cs
@@ -0,0 +1,81 @@
+using System;
+using UnityEngine;
+using UnityEditor;
+
+public abstract class ReactionEditor : Editor
+{
+ public bool showReaction; // Is the Reaction editor expanded?
+ public SerializedProperty reactionsProperty; // Represents the SerializedProperty of the array the target belongs to.
+
+
+ private Reaction reaction; // The target Reaction.
+
+
+ private const float buttonWidth = 30f; // Width in pixels of the button to remove this Reaction from the ReactionCollection array.
+
+
+ private void OnEnable ()
+ {
+ // Cache the target reference.
+ reaction = (Reaction)target;
+
+ // Call an initialisation method for inheriting classes.
+ Init ();
+ }
+
+
+ // This function should be overridden by inheriting classes that need initialisation.
+ protected virtual void Init () {}
+
+
+ public override void OnInspectorGUI ()
+ {
+ // Pull data from the target into the serializedObject.
+ serializedObject.Update ();
+
+ EditorGUILayout.BeginVertical (GUI.skin.box);
+ EditorGUI.indentLevel++;
+
+ EditorGUILayout.BeginHorizontal ();
+
+ // Display a foldout for the Reaction with a custom label.
+ showReaction = EditorGUILayout.Foldout (showReaction, GetFoldoutLabel ());
+
+ // Show a button which, if clicked, will remove this Reaction from the ReactionCollection.
+ if (GUILayout.Button ("-", GUILayout.Width (buttonWidth)))
+ {
+ reactionsProperty.RemoveFromObjectArray (reaction);
+ }
+ EditorGUILayout.EndHorizontal ();
+
+ // If the foldout is open, draw the GUI specific to the inheriting ReactionEditor.
+ if (showReaction)
+ {
+ DrawReaction ();
+ }
+
+ EditorGUI.indentLevel--;
+ EditorGUILayout.EndVertical ();
+
+ // Push data back from the serializedObject to the target.
+ serializedObject.ApplyModifiedProperties ();
+ }
+
+
+ public static Reaction CreateReaction (Type reactionType)
+ {
+ // Create a reaction of a given type.
+ return (Reaction)CreateInstance (reactionType);
+ }
+
+
+ protected virtual void DrawReaction ()
+ {
+ // This function can overridden by inheriting classes, but if it isn't, draw the default for it's properties.
+ DrawDefaultInspector ();
+ }
+
+
+ // The inheriting class must override this function to create the label of the foldout.
+ protected abstract string GetFoldoutLabel ();
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/ReactionEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/ReactionEditor.cs.meta
new file mode 100644
index 00000000..34fe834a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/ReactionEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 9369ef77b78dfbf49badc674d75125dd
+timeCreated: 1465984596
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/SceneReactionEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/SceneReactionEditor.cs
new file mode 100644
index 00000000..361654e6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/SceneReactionEditor.cs
@@ -0,0 +1,10 @@
+using UnityEditor;
+
+[CustomEditor (typeof (SceneReaction))]
+public class SceneReactionEditor : ReactionEditor
+{
+ protected override string GetFoldoutLabel ()
+ {
+ return "Scene Reaction";
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/SceneReactionEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/SceneReactionEditor.cs.meta
new file mode 100644
index 00000000..e7bb7092
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/SceneReactionEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 311a2c08ec25c8b43bc9653adf802e92
+timeCreated: 1465987754
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/TextReactionEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/TextReactionEditor.cs
new file mode 100644
index 00000000..cf838641
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/TextReactionEditor.cs
@@ -0,0 +1,52 @@
+using UnityEditor;
+using UnityEngine;
+
+[CustomEditor(typeof(TextReaction))]
+public class TextReactionEditor : ReactionEditor
+{
+ private SerializedProperty messageProperty; // Represents the string field which is the message to be displayed.
+ private SerializedProperty textColorProperty; // Represents the color field which is the color of the message to be displayed.
+ private SerializedProperty delayProperty; // Represents the float field which is the delay before the messaage is displayed
+
+
+ private const float messageGUILines = 3f; // How many lines tall the GUI for the message field should be.
+ private const float areaWidthOffset = 19f; // Offset to account for the message GUI being made of two GUI calls. It makes the GUI line up.
+ private const string textReactionPropMessageName = "message";
+ // The name of the field which is the message to be written to the screen.
+ private const string textReactionPropTextColorName = "textColor";
+ // The name of the field which is the color of the message to be written to the screen.
+ private const string textReactionPropDelayName = "delay";
+ // The name of the field which is the delay before the message is written to the screen.
+
+
+ protected override void Init ()
+ {
+ // Cache all the SerializedProperties.
+ messageProperty = serializedObject.FindProperty (textReactionPropMessageName);
+ textColorProperty = serializedObject.FindProperty (textReactionPropTextColorName);
+ delayProperty = serializedObject.FindProperty (textReactionPropDelayName);
+ }
+
+
+ protected override void DrawReaction ()
+ {
+ EditorGUILayout.BeginHorizontal ();
+
+ // Display a label whose width is offset such that the TextArea lines up with the rest of the GUI.
+ EditorGUILayout.LabelField ("Message", GUILayout.Width (EditorGUIUtility.labelWidth - areaWidthOffset));
+
+ // Display an interactable GUI element for the text of the message to be displayed over several lines.
+ messageProperty.stringValue = EditorGUILayout.TextArea (messageProperty.stringValue, GUILayout.Height (EditorGUIUtility.singleLineHeight * messageGUILines));
+ EditorGUILayout.EndHorizontal ();
+
+ // Display default GUI for the text color and the delay.
+ EditorGUILayout.PropertyField (textColorProperty);
+ EditorGUILayout.PropertyField (delayProperty);
+ }
+
+
+ protected override string GetFoldoutLabel ()
+ {
+ return "Text Reaction";
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/TextReactionEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/TextReactionEditor.cs.meta
new file mode 100644
index 00000000..cf43b6cf
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Interaction/ReactionEditors/TextReactionEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 586f5dcecd12036408906efc5693f17d
+timeCreated: 1465987770
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Inventory.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Inventory.meta
new file mode 100644
index 00000000..3068c124
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Inventory.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: c6c84938260bc734e87b1467e95ef092
+folderAsset: yes
+timeCreated: 1466763587
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Inventory/InventoryEditor.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Inventory/InventoryEditor.cs
new file mode 100644
index 00000000..270dc992
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Inventory/InventoryEditor.cs
@@ -0,0 +1,58 @@
+using UnityEngine;
+using UnityEditor;
+
+[CustomEditor(typeof(Inventory))]
+public class InventoryEditor : Editor
+{
+ private bool[] showItemSlots = new bool[Inventory.numItemSlots]; // Whether the GUI for each Item slot is expanded.
+ private SerializedProperty itemImagesProperty; // Represents the array of Image components to display the Items.
+ private SerializedProperty itemsProperty; // Represents the array of Items.
+
+
+ private const string inventoryPropItemImagesName = "itemImages"; // The name of the field that is an array of Image components.
+ private const string inventoryPropItemsName = "items"; // The name of the field that is an array of Items.
+
+
+ private void OnEnable ()
+ {
+ // Cache the SerializedProperties.
+ itemImagesProperty = serializedObject.FindProperty (inventoryPropItemImagesName);
+ itemsProperty = serializedObject.FindProperty (inventoryPropItemsName);
+ }
+
+
+ public override void OnInspectorGUI ()
+ {
+ // Pull all the information from the target into the serializedObject.
+ serializedObject.Update ();
+
+ // Display GUI for each Item slot.
+ for (int i = 0; i < Inventory.numItemSlots; i++)
+ {
+ ItemSlotGUI (i);
+ }
+
+ // Push all the information from the serializedObject back into the target.
+ serializedObject.ApplyModifiedProperties ();
+ }
+
+
+ private void ItemSlotGUI (int index)
+ {
+ EditorGUILayout.BeginVertical (GUI.skin.box);
+ EditorGUI.indentLevel++;
+
+ // Display a foldout to determine whether the GUI should be shown or not.
+ showItemSlots[index] = EditorGUILayout.Foldout (showItemSlots[index], "Item slot " + index);
+
+ // If the foldout is open then display default GUI for the specific elements in each array.
+ if (showItemSlots[index])
+ {
+ EditorGUILayout.PropertyField (itemImagesProperty.GetArrayElementAtIndex (index));
+ EditorGUILayout.PropertyField (itemsProperty.GetArrayElementAtIndex (index));
+ }
+
+ EditorGUI.indentLevel--;
+ EditorGUILayout.EndVertical ();
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Inventory/InventoryEditor.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Inventory/InventoryEditor.cs.meta
new file mode 100644
index 00000000..a9c117a0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/Editor/Inventory/InventoryEditor.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 18c91db4d342c3849a88f1eb149e9bef
+timeCreated: 1466687845
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours.meta
new file mode 100644
index 00000000..8563ded3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: f614f6acc8934cc48a02c8eb4f6641cd
+folderAsset: yes
+timeCreated: 1466762322
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Camera.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Camera.meta
new file mode 100644
index 00000000..3af37515
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Camera.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 7768fca197e61114eb8a20abef8b373a
+folderAsset: yes
+timeCreated: 1457346797
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Camera/CameraControl.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Camera/CameraControl.cs
new file mode 100644
index 00000000..9303956c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Camera/CameraControl.cs
@@ -0,0 +1,39 @@
+using System.Collections;
+using UnityEngine;
+
+public class CameraControl : MonoBehaviour
+{
+ public bool moveCamera = true; // Whether the camera should be moved by this script.
+ public float smoothing = 7f; // Smoothing applied during Slerp, higher is smoother but slower.
+ public Vector3 offset = new Vector3 (0f, 1.5f, 0f); // The offset from the player's position that the camera aims at.
+ public Transform playerPosition; // Reference to the player's Transform to aim at.
+
+
+ private IEnumerator Start ()
+ {
+ // If the camera shouldn't move, do nothing.
+ if(!moveCamera)
+ yield break;
+
+ // Wait a single frame to ensure all other Starts are called first.
+ yield return null;
+
+ // Set the rotation of the camera to look at the player's position with a given offset.
+ transform.rotation = Quaternion.LookRotation(playerPosition.position - transform.position + offset);
+ }
+
+
+ // LateUpdate is used so that all position updates have happened before the camera aims.
+ private void LateUpdate ()
+ {
+ // If the camer shouldn't move, do nothing.
+ if (!moveCamera)
+ return;
+
+ // Find a new rotation aimed at the player's position with a given offset.
+ Quaternion newRotation = Quaternion.LookRotation (playerPosition.position - transform.position + offset);
+
+ // Spherically interpolate between the camera's current rotation and the new rotation.
+ transform.rotation = Quaternion.Slerp (transform.rotation, newRotation, Time.deltaTime * smoothing);
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Camera/CameraControl.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Camera/CameraControl.cs.meta
new file mode 100644
index 00000000..6c9c69d7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Camera/CameraControl.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 740e682d67841cb4ca4620d2bee866b0
+timeCreated: 1457346790
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence.meta
new file mode 100644
index 00000000..0976e479
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 627daeb1d73630c42b8bac657642a898
+folderAsset: yes
+timeCreated: 1466762751
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/BehaviourEnableStateSaver.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/BehaviourEnableStateSaver.cs
new file mode 100644
index 00000000..2497f2dc
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/BehaviourEnableStateSaver.cs
@@ -0,0 +1,30 @@
+using UnityEngine;
+
+public class BehaviourEnableStateSaver : Saver
+{
+ public Behaviour behaviourToSave; // Reference to the Behaviour that will have its enabled state saved from and loaded to.
+
+
+ protected override string SetKey ()
+ {
+ // Here the key will be based on the name of the behaviour, the behaviour's type and a unique identifier.
+ return behaviourToSave.name + behaviourToSave.GetType().FullName + uniqueIdentifier;
+ }
+
+
+ protected override void Save ()
+ {
+ saveData.Save (key, behaviourToSave.enabled);
+ }
+
+
+ protected override void Load ()
+ {
+ // Create a variable to be passed by reference to the Load function.
+ bool enabledState = false;
+
+ // If the load function returns true then the enabled state can be set.
+ if (saveData.Load(key, ref enabledState))
+ behaviourToSave.enabled = enabledState;
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/BehaviourEnableStateSaver.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/BehaviourEnableStateSaver.cs.meta
new file mode 100644
index 00000000..83005532
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/BehaviourEnableStateSaver.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 035502cb6f1b1c743acae234a3dae20f
+timeCreated: 1469029821
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/DataResetter.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/DataResetter.cs
new file mode 100644
index 00000000..e6e5cc59
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/DataResetter.cs
@@ -0,0 +1,23 @@
+using UnityEngine;
+
+// This script is used to reset scriptable objects
+// back to their default values. This is useful
+// in the editor when serialized data can persist
+// between entering and exiting play mode. It is
+// also useful for situations where the game needs
+// to reset without being closed, for example a new
+// play through.
+public class DataResetter : MonoBehaviour
+{
+ public ResettableScriptableObject[] resettableScriptableObjects; // All of the scriptable object assets that should be reset at the start of the game.
+
+
+ private void Awake ()
+ {
+ // Go through all the scriptable objects and call their Reset function.
+ for (int i = 0; i < resettableScriptableObjects.Length; i++)
+ {
+ resettableScriptableObjects[i].Reset ();
+ }
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/DataResetter.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/DataResetter.cs.meta
new file mode 100644
index 00000000..b58cf9ce
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/DataResetter.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 53c91b699634ffb4d8adb3f3393588e0
+timeCreated: 1469109455
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/GameObjectActivitySaver.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/GameObjectActivitySaver.cs
new file mode 100644
index 00000000..a51ef2dd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/GameObjectActivitySaver.cs
@@ -0,0 +1,30 @@
+using UnityEngine;
+
+public class GameObjectActivitySaver : Saver
+{
+ public GameObject gameObjectToSave; // Reference to the GameObject that will have its activity saved from and loaded to.
+
+
+ protected override string SetKey()
+ {
+ // Here the key will be based on the name of the gameobject, the gameobject's type and a unique identifier.
+ return gameObjectToSave.name + gameObjectToSave.GetType().FullName + uniqueIdentifier;
+ }
+
+
+ protected override void Save()
+ {
+ saveData.Save(key, gameObjectToSave.activeSelf);
+ }
+
+
+ protected override void Load()
+ {
+ // Create a variable to be passed by reference to the Load function.
+ bool activeState = false;
+
+ // If the load function returns true then the activity can be set.
+ if (saveData.Load(key, ref activeState))
+ gameObjectToSave.SetActive (activeState);
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/GameObjectActivitySaver.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/GameObjectActivitySaver.cs.meta
new file mode 100644
index 00000000..acee9df2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/GameObjectActivitySaver.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 8f29b6054d4e0304f8b32fb4625cff19
+timeCreated: 1469029803
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/PositionSaver.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/PositionSaver.cs
new file mode 100644
index 00000000..d23ad1fb
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/PositionSaver.cs
@@ -0,0 +1,30 @@
+using UnityEngine;
+
+public class PositionSaver : Saver
+{
+ public Transform transformToSave; // Reference to the Transform that will have its position saved from and loaded to.
+
+
+ protected override string SetKey()
+ {
+ // Here the key will be based on the name of the transform, the transform's type and a unique identifier.
+ return transformToSave.name + transformToSave.GetType().FullName + uniqueIdentifier;
+ }
+
+
+ protected override void Save()
+ {
+ saveData.Save(key, transformToSave.position);
+ }
+
+
+ protected override void Load()
+ {
+ // Create a variable to be passed by reference to the Load function.
+ Vector3 position = Vector3.zero;
+
+ // If the load function returns true then the position can be set.
+ if (saveData.Load(key, ref position))
+ transformToSave.position = position;
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/PositionSaver.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/PositionSaver.cs.meta
new file mode 100644
index 00000000..7ec030b3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/PositionSaver.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 522d88fae112fd742a72ea5e77c67c85
+timeCreated: 1469029839
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/RotationSaver.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/RotationSaver.cs
new file mode 100644
index 00000000..46027380
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/RotationSaver.cs
@@ -0,0 +1,30 @@
+using UnityEngine;
+
+public class RotationSaver : Saver
+{
+ public Transform transformToSave; // Reference to the Transform that will have its rotation saved from and loaded to.
+
+
+ protected override string SetKey()
+ {
+ // Here the key will be based on the name of the transform, the transform's type and a unique identifier.
+ return transformToSave.name + transformToSave.GetType().FullName + uniqueIdentifier;
+ }
+
+
+ protected override void Save()
+ {
+ saveData.Save(key, transformToSave.rotation);
+ }
+
+
+ protected override void Load()
+ {
+ // Create a variable to be passed by reference to the Load function.
+ Quaternion rotation = Quaternion.identity;
+
+ // If the load function returns true then the rotation can be set.
+ if (saveData.Load(key, ref rotation))
+ transformToSave.rotation = rotation;
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/RotationSaver.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/RotationSaver.cs.meta
new file mode 100644
index 00000000..c7d777b0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/RotationSaver.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: c013938965f4c6249aa76a79195cfb6b
+timeCreated: 1469029874
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/Saver.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/Saver.cs
new file mode 100644
index 00000000..68d0658a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/Saver.cs
@@ -0,0 +1,67 @@
+using UnityEngine;
+
+// This is an abstract MonoBehaviour that is the base class
+// for all classes that want to save data to persist between
+// scene loads and unloads.
+// For an example of using this class, see the PositionSaver
+// script.
+public abstract class Saver : MonoBehaviour
+{
+ public string uniqueIdentifier; // A unique string set by a scene designer to identify what is being saved.
+ public SaveData saveData; // Reference to the SaveData scriptable object where the data is stored.
+
+
+ protected string key; // A string to identify what is being saved. This should be set using information about the data as well as the uniqueIdentifier.
+
+
+ private SceneController sceneController; // Reference to the SceneController so that this can subscribe to events that happen before and after scene loads.
+
+
+ private void Awake()
+ {
+ // Find the SceneController and store a reference to it.
+ sceneController = FindObjectOfType();
+
+ // If the SceneController couldn't be found throw an exception so it can be added.
+ if(!sceneController)
+ throw new UnityException("Scene Controller could not be found, ensure that it exists in the Persistent scene.");
+
+ // Set the key based on information in inheriting classes.
+ key = SetKey ();
+ }
+
+
+ private void OnEnable()
+ {
+ // Subscribe the Save function to the BeforeSceneUnload event.
+ sceneController.BeforeSceneUnload += Save;
+
+ // Subscribe the Load function to the AfterSceneLoad event.
+ sceneController.AfterSceneLoad += Load;
+ }
+
+
+ private void OnDisable()
+ {
+ // Unsubscribe the Save function from the BeforeSceneUnloud event.
+ sceneController.BeforeSceneUnload -= Save;
+
+ // Unsubscribe the Load function from the AfterSceneLoad event.
+ sceneController.AfterSceneLoad -= Load;
+ }
+
+
+ // This function will be called in awake and must return the intended key.
+ // The key must be totally unique across all Saver scripts.
+ protected abstract string SetKey ();
+
+
+ // This function will be called just before a scene is unloaded.
+ // It must call saveData.Save and pass in the key and the relevant data.
+ protected abstract void Save ();
+
+
+ // This function will be called just after a scene is finished loading.
+ // It must call saveData.Load with a ref parameter to get the data out.
+ protected abstract void Load ();
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/Saver.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/Saver.cs.meta
new file mode 100644
index 00000000..e906e47d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/DataPersistence/Saver.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: e2aca70c4271e084f93bdc3fbfb733a8
+timeCreated: 1469113066
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction.meta
new file mode 100644
index 00000000..f7729fe8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 31379d88cd3daf94bb4ac5ee3c5f47ca
+folderAsset: yes
+timeCreated: 1466762731
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/Interactable.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/Interactable.cs
new file mode 100644
index 00000000..61225d2b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/Interactable.cs
@@ -0,0 +1,32 @@
+using UnityEngine;
+
+// This is one of the core features of the game.
+// Each one acts like a hub for all things that transpire
+// over the course of the game.
+// The script must be on a gameobject with a collider and
+// an event trigger. The event trigger should tell the
+// player to approach the interactionLocation and the
+// player should call the Interact function when they arrive.
+public class Interactable : MonoBehaviour
+{
+ public Transform interactionLocation; // The position and rotation the player should go to in order to interact with this Interactable.
+ public ConditionCollection[] conditionCollections = new ConditionCollection[0];
+ // All the different Conditions and relevant Reactions that can happen based on them.
+ public ReactionCollection defaultReactionCollection; // If none of the ConditionCollections are reacted to, this one is used.
+
+
+ // This is called when the player arrives at the interactionLocation.
+ public void Interact ()
+ {
+ // Go through all the ConditionCollections...
+ for (int i = 0; i < conditionCollections.Length; i++)
+ {
+ // ... then check and potentially react to each. If the reaction happens, exit the function.
+ if (conditionCollections[i].CheckAndReact ())
+ return;
+ }
+
+ // If none of the reactions happened, use the default ReactionCollection.
+ defaultReactionCollection.React ();
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/Interactable.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/Interactable.cs.meta
new file mode 100644
index 00000000..7c613d5f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/Interactable.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: d85941078afdf3244b2a1ae50fea256c
+timeCreated: 1465295951
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/ReactionCollection.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/ReactionCollection.cs
new file mode 100644
index 00000000..d149ee49
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/ReactionCollection.cs
@@ -0,0 +1,44 @@
+using UnityEngine;
+
+// This script acts as a collection for all the
+// individual Reactions that happen as a result
+// of an interaction.
+public class ReactionCollection : MonoBehaviour
+{
+ public Reaction[] reactions = new Reaction[0]; // Array of all the Reactions to play when React is called.
+
+
+ private void Start ()
+ {
+ // Go through all the Reactions and call their Init function.
+ for (int i = 0; i < reactions.Length; i++)
+ {
+ // The DelayedReaction 'hides' the Reaction's Init function with it's own.
+ // This means that we have to try to cast the Reaction to a DelayedReaction and then if it exists call it's Init function.
+ // Note that this mainly done to demonstrate hiding and not especially for functionality.
+ DelayedReaction delayedReaction = reactions[i] as DelayedReaction;
+
+ if (delayedReaction)
+ delayedReaction.Init ();
+ else
+ reactions[i].Init ();
+ }
+ }
+
+
+ public void React ()
+ {
+ // Go through all the Reactions and call their React function.
+ for (int i = 0; i < reactions.Length; i++)
+ {
+ // The DelayedReaction hides the Reaction.React function.
+ // Note again this is mainly done for demonstration purposes.
+ DelayedReaction delayedReaction = reactions[i] as DelayedReaction;
+
+ if(delayedReaction)
+ delayedReaction.React (this);
+ else
+ reactions[i].React (this);
+ }
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/ReactionCollection.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/ReactionCollection.cs.meta
new file mode 100644
index 00000000..47d949d1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/ReactionCollection.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 1fc7ecfe98531f2429694b8c81a6748a
+timeCreated: 1465292864
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/TextManager.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/TextManager.cs
new file mode 100644
index 00000000..65a6b515
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/TextManager.cs
@@ -0,0 +1,113 @@
+using UnityEngine;
+using UnityEngine.UI;
+using System.Collections.Generic;
+
+// This class is used to manage the text that is
+// displayed on screen. In situations where many
+// messages are triggered one after another it
+// makes sure they are played in the correct order.
+public class TextManager : MonoBehaviour
+{
+ // This struct encapsulates the messages that are
+ // sent for organising.
+ public struct Instruction
+ {
+ public string message; // The body of the message.
+ public Color textColor; // The color the message should be displayed in.
+ public float startTime; // The time the message should start being displayed based on when it is triggered and its delay.
+ }
+
+
+ public Text text; // Reference to the Text component that will display the message.
+ public float displayTimePerCharacter = 0.1f; // The amount of time that each character in a message adds to the amount of time it is displayed for.
+ public float additionalDisplayTime = 0.5f; // The additional time that is added to the message is displayed for.
+
+
+ private List instructions = new List ();
+ // Collection of instructions that are ordered by their startTime.
+ private float clearTime; // The time at which there should no longer be any text on screen.
+
+
+ private void Update ()
+ {
+ // If there are instructions and the time is beyond the start time of the first instruction...
+ if (instructions.Count > 0 && Time.time >= instructions[0].startTime)
+ {
+ // ... set the Text component to display the instruction's message in the correct color.
+ text.text = instructions[0].message;
+ text.color = instructions[0].textColor;
+
+ // Then remove the instruction.
+ instructions.RemoveAt (0);
+ }
+ // Otherwise, if the time is beyond the clear time, clear the text component's text.
+ else if (Time.time >= clearTime)
+ {
+ text.text = string.Empty;
+ }
+ }
+
+
+ // This function is called from TextReactions in order to display a message to the screen.
+ public void DisplayMessage (string message, Color textColor, float delay)
+ {
+ // The time when the message should start displaying is the current time offset by the delay.
+ float startTime = Time.time + delay;
+
+ // Calculate how long the message should be displayed for based on the number of characters.
+ float displayDuration = message.Length * displayTimePerCharacter + additionalDisplayTime;
+
+ // Create a new clear time...
+ float newClearTime = startTime + displayDuration;
+
+ // ... and if it is after the old clear time, replace the old clear time with the new.
+ if (newClearTime > clearTime)
+ clearTime = newClearTime;
+
+ // Create a new instruction.
+ Instruction newInstruction = new Instruction
+ {
+ message = message,
+ textColor = textColor,
+ startTime = startTime
+ };
+
+ // Add the new instruction to the collection.
+ instructions.Add (newInstruction);
+
+ // Order the instructions by their start time.
+ SortInstructions ();
+ }
+
+
+ // This function orders the instructions by start time using a bubble sort.
+ private void SortInstructions ()
+ {
+ // Go through all the instructions...
+ for (int i = 0; i < instructions.Count; i++)
+ {
+ // ... and create a flag to determine if any reordering has been done.
+ bool swapped = false;
+
+ // For each instruction, go through all the instructions...
+ for (int j = 0; j < instructions.Count; j++)
+ {
+ // ... and compare the instruction from the outer loop with this one.
+ // If the outer loop's instruction has a later start time, swap their positions and set the flag to true.
+ if (instructions[i].startTime > instructions[j].startTime)
+ {
+ Instruction temp = instructions[i];
+ instructions[i] = instructions[j];
+ instructions[j] = temp;
+
+ swapped = true;
+ }
+ }
+
+ // If for a single instruction, all other instructions are later then they are correctly ordered.
+ if (!swapped)
+ break;
+ }
+ }
+}
+
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/TextManager.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/TextManager.cs.meta
new file mode 100644
index 00000000..d43b9ceb
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Interaction/TextManager.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 665c5517814b70d42953f2e52a0dc79a
+timeCreated: 1466764533
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Inventory.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Inventory.meta
new file mode 100644
index 00000000..da0a7744
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Inventory.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 92b0031f8108a3547ae389c50b8d8abf
+folderAsset: yes
+timeCreated: 1466762717
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Inventory/Inventory.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Inventory/Inventory.cs
new file mode 100644
index 00000000..7dee6cf9
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Inventory/Inventory.cs
@@ -0,0 +1,49 @@
+using UnityEngine;
+using UnityEngine.UI;
+
+public class Inventory : MonoBehaviour
+{
+ public Image[] itemImages = new Image[numItemSlots]; // The Image components that display the Items.
+ public Item[] items = new Item[numItemSlots]; // The Items that are carried by the player.
+
+
+ public const int numItemSlots = 4; // The number of items that can be carried. This is a constant so that the number of Images and Items are always the same.
+
+
+ // This function is called by the PickedUpItemReaction in order to add an item to the inventory.
+ public void AddItem(Item itemToAdd)
+ {
+ // Go through all the item slots...
+ for (int i = 0; i < items.Length; i++)
+ {
+ // ... if the item slot is empty...
+ if (items[i] == null)
+ {
+ // ... set it to the picked up item and set the image component to display the item's sprite.
+ items[i] = itemToAdd;
+ itemImages[i].sprite = itemToAdd.sprite;
+ itemImages[i].enabled = true;
+ return;
+ }
+ }
+ }
+
+
+ // This function is called by the LostItemReaction in order to remove an item from the inventory.
+ public void RemoveItem (Item itemToRemove)
+ {
+ // Go through all the item slots...
+ for (int i = 0; i < items.Length; i++)
+ {
+ // ... if the item slot has the item to be removed...
+ if (items[i] == itemToRemove)
+ {
+ // ... set the item slot to null and set the image component to display nothing.
+ items[i] = null;
+ itemImages[i].sprite = null;
+ itemImages[i].enabled = false;
+ return;
+ }
+ }
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Inventory/Inventory.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Inventory/Inventory.cs.meta
new file mode 100644
index 00000000..de5583b0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Inventory/Inventory.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 46d8bad6f895a8f468f8f52259447a65
+timeCreated: 1466676623
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Player.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Player.meta
new file mode 100644
index 00000000..c2f4bcf0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Player.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 05756eeb881889e428eb919eb719a24c
+folderAsset: yes
+timeCreated: 1466429272
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Player/PlayerMovement.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Player/PlayerMovement.cs
new file mode 100644
index 00000000..de0cf324
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Player/PlayerMovement.cs
@@ -0,0 +1,218 @@
+using System.Collections;
+using UnityEngine;
+using UnityEngine.AI;
+using UnityEngine.EventSystems;
+
+public class PlayerMovement : MonoBehaviour
+{
+ public Animator animator; // Reference to the animator component.
+ public NavMeshAgent agent; // Reference to the nav mesh agent component.
+ public SaveData playerSaveData; // Reference to the save data asset containing the player's starting position.
+ public float turnSmoothing = 15f; // The amount of smoothing applied to the player's turning using spherical interpolation.
+ public float speedDampTime = 0.1f; // The approximate amount of time it takes for the speed parameter to reach its value upon being set.
+ public float slowingSpeed = 0.175f; // The speed the player moves as it reaches close to it's destination.
+ public float turnSpeedThreshold = 0.5f; // The speed beyond which the player can move and turn normally.
+ public float inputHoldDelay = 0.5f; // How long after reaching an interactable before input is allowed again.
+
+
+ private Interactable currentInteractable; // The interactable that is currently being headed towards.
+ private Vector3 destinationPosition; // The position that is currently being headed towards, this is the interactionLocation of the currentInteractable if it is not null.
+ private bool handleInput = true; // Whether input is currently being handled.
+ private WaitForSeconds inputHoldWait; // The WaitForSeconds used to make the user wait before input is handled again.
+
+
+ private readonly int hashSpeedPara = Animator.StringToHash("Speed");
+ // An hash representing the Speed animator parameter, this is used at runtime in place of a string.
+ private readonly int hashLocomotionTag = Animator.StringToHash("Locomotion");
+ // An hash representing the Locomotion tag, this is used at runtime in place of a string.
+
+
+ public const string startingPositionKey = "starting position";
+ // The key used to retrieve the starting position from the playerSaveData.
+
+
+ private const float stopDistanceProportion = 0.1f;
+ // The proportion of the nav mesh agent's stopping distance within which the player stops completely.
+ private const float navMeshSampleDistance = 4f;
+ // The maximum distance from the nav mesh a click can be to be accepted.
+
+
+ private void Start()
+ {
+ // The player will be rotated by this script so the nav mesh agent should not rotate it.
+ agent.updateRotation = false;
+
+ // Create the wait based on the delay.
+ inputHoldWait = new WaitForSeconds (inputHoldDelay);
+
+ // Load the starting position from the save data and find the transform from the starting position's name.
+ string startingPositionName = "";
+ playerSaveData.Load(startingPositionKey, ref startingPositionName);
+ Transform startingPosition = StartingPosition.FindStartingPosition(startingPositionName);
+
+ // Set the player's position and rotation based on the starting position.
+ transform.position = startingPosition.position;
+ transform.rotation = startingPosition.rotation;
+
+ // Set the initial destination as the player's current position.
+ destinationPosition = transform.position;
+ }
+
+
+ private void OnAnimatorMove()
+ {
+ // Set the velocity of the nav mesh agent (which is moving the player) based on the speed that the animator would move the player.
+ agent.velocity = animator.deltaPosition / Time.deltaTime;
+ }
+
+
+ private void Update()
+ {
+ // If the nav mesh agent is currently waiting for a path, do nothing.
+ if (agent.pathPending)
+ return;
+
+ // Cache the speed that nav mesh agent wants to move at.
+ float speed = agent.desiredVelocity.magnitude;
+
+ // If the nav mesh agent is very close to it's destination, call the Stopping function.
+ if (agent.remainingDistance <= agent.stoppingDistance * stopDistanceProportion)
+ Stopping (out speed);
+ // Otherwise, if the nav mesh agent is close to it's destination, call the Slowing function.
+ else if (agent.remainingDistance <= agent.stoppingDistance)
+ Slowing(out speed, agent.remainingDistance);
+ // Otherwise, if the nav mesh agent wants to move fast enough, call the Moving function.
+ else if (speed > turnSpeedThreshold)
+ Moving ();
+
+ // Set the animator's Speed parameter based on the (possibly modified) speed that the nav mesh agent wants to move at.
+ animator.SetFloat(hashSpeedPara, speed, speedDampTime, Time.deltaTime);
+ }
+
+
+ // This is called when the nav mesh agent is very close to it's destination.
+ private void Stopping (out float speed)
+ {
+ // Stop the nav mesh agent from moving the player.
+ agent.isStopped = true;
+
+ // Set the player's position to the destination.
+ transform.position = destinationPosition;
+
+ // Set the speed (which is what the animator will use) to zero.
+ speed = 0f;
+
+ // If the player is stopping at an interactable...
+ if (currentInteractable)
+ {
+ // ... set the player's rotation to match the interactionLocation's.
+ transform.rotation = currentInteractable.interactionLocation.rotation;
+
+ // Interact with the interactable and then null it out so this interaction only happens once.
+ currentInteractable.Interact();
+ currentInteractable = null;
+
+ // Start the WaitForInteraction coroutine so that input is ignored briefly.
+ StartCoroutine (WaitForInteraction ());
+ }
+ }
+
+
+ // This is called when the nav mesh agent is close to its destination but not so close it's position should snap to it's destination.
+ private void Slowing (out float speed, float distanceToDestination)
+ {
+ // Although the player will continue to move, it will be controlled manually so stop the nav mesh agent.
+ agent.isStopped = true;
+
+ // Find the distance to the destination as a percentage of the stopping distance.
+ float proportionalDistance = 1f - distanceToDestination / agent.stoppingDistance;
+
+ // The target rotation is the rotation of the interactionLocation if the player is headed to an interactable, or the player's own rotation if not.
+ Quaternion targetRotation = currentInteractable ? currentInteractable.interactionLocation.rotation : transform.rotation;
+
+ // Interpolate the player's rotation between itself and the target rotation based on how close to the destination the player is.
+ transform.rotation = Quaternion.Lerp(transform.rotation, targetRotation, proportionalDistance);
+
+ // Move the player towards the destination by an amount based on the slowing speed.
+ transform.position = Vector3.MoveTowards(transform.position, destinationPosition, slowingSpeed * Time.deltaTime);
+
+ // Set the speed (for use by the animator) to a value between slowing speed and zero based on the proportional distance.
+ speed = Mathf.Lerp(slowingSpeed, 0f, proportionalDistance);
+ }
+
+
+ // This is called when the player is moving normally. In such cases the player is moved by the nav mesh agent, but rotated by this function.
+ private void Moving ()
+ {
+ // Create a rotation looking down the nav mesh agent's desired velocity.
+ Quaternion targetRotation = Quaternion.LookRotation(agent.desiredVelocity);
+
+ // Interpolate the player's rotation towards the target rotation.
+ transform.rotation = Quaternion.Lerp(transform.rotation, targetRotation, turnSmoothing * Time.deltaTime);
+ }
+
+
+ // This function is called by the EventTrigger on the scene's ground when it is clicked on.
+ public void OnGroundClick(BaseEventData data)
+ {
+ // If the handle input flag is set to false then do nothing.
+ if(!handleInput)
+ return;
+
+ // The player is no longer headed for an interactable so set it to null.
+ currentInteractable = null;
+
+ // This function needs information about a click so cast the BaseEventData to a PointerEventData.
+ PointerEventData pData = (PointerEventData)data;
+
+ // Try and find a point on the nav mesh nearest to the world position of the click and set the destination to that.
+ NavMeshHit hit;
+ if (NavMesh.SamplePosition (pData.pointerCurrentRaycast.worldPosition, out hit, navMeshSampleDistance, NavMesh.AllAreas))
+ destinationPosition = hit.position;
+ else
+ // In the event that the nearest position cannot be found, set the position as the world position of the click.
+ destinationPosition = pData.pointerCurrentRaycast.worldPosition;
+
+ // Set the destination of the nav mesh agent to the found destination position and start the nav mesh agent going.
+ agent.SetDestination(destinationPosition);
+ agent.isStopped = false;
+ }
+
+
+ // This function is called by the EventTrigger on an Interactable, the Interactable component is passed into it.
+ public void OnInteractableClick(Interactable interactable)
+ {
+ // If the handle input flag is set to false then do nothing.
+ if(!handleInput)
+ return;
+
+ // Store the interactble that was clicked on.
+ currentInteractable = interactable;
+
+ // Set the destination to the interaction location of the interactable.
+ destinationPosition = currentInteractable.interactionLocation.position;
+
+ // Set the destination of the nav mesh agent to the found destination position and start the nav mesh agent going.
+ agent.SetDestination(destinationPosition);
+ agent.isStopped = false;
+ }
+
+
+ private IEnumerator WaitForInteraction ()
+ {
+ // As soon as the wait starts, input should no longer be accepted.
+ handleInput = false;
+
+ // Wait for the normal pause on interaction.
+ yield return inputHoldWait;
+
+ // Until the animator is in a state with the Locomotion tag, wait.
+ while (animator.GetCurrentAnimatorStateInfo (0).tagHash != hashLocomotionTag)
+ {
+ yield return null;
+ }
+
+ // Now input can be accepted again.
+ handleInput = true;
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Player/PlayerMovement.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Player/PlayerMovement.cs.meta
new file mode 100644
index 00000000..7ce9dde6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/Player/PlayerMovement.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 29103d8075f789345997a0adb6a7520e
+timeCreated: 1466429255
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl.meta
new file mode 100644
index 00000000..79a5cb31
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: af4d62ce24bcaee4993fc9cb33056e89
+folderAsset: yes
+timeCreated: 1466676572
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl/SceneController.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl/SceneController.cs
new file mode 100644
index 00000000..1bfb7a78
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl/SceneController.cs
@@ -0,0 +1,124 @@
+using System;
+using UnityEngine;
+using System.Collections;
+using UnityEngine.SceneManagement;
+
+// This script exists in the Persistent scene and manages the content
+// based scene's loading. It works on a principle that the
+// Persistent scene will be loaded first, then it loads the scenes that
+// contain the player and other visual elements when they are needed.
+// At the same time it will unload the scenes that are not needed when
+// the player leaves them.
+public class SceneController : MonoBehaviour
+{
+ public event Action BeforeSceneUnload; // Event delegate that is called just before a scene is unloaded.
+ public event Action AfterSceneLoad; // Event delegate that is called just after a scene is loaded.
+
+
+ public CanvasGroup faderCanvasGroup; // The CanvasGroup that controls the Image used for fading to black.
+ public float fadeDuration = 1f; // How long it should take to fade to and from black.
+ public string startingSceneName = "SecurityRoom";
+ // The name of the scene that should be loaded first.
+ public string initialStartingPositionName = "DoorToMarket";
+ // The name of the StartingPosition in the first scene to be loaded.
+ public SaveData playerSaveData; // Reference to the ScriptableObject which stores the name of the StartingPosition in the next scene.
+
+
+ private bool isFading; // Flag used to determine if the Image is currently fading to or from black.
+
+
+ private IEnumerator Start ()
+ {
+ // Set the initial alpha to start off with a black screen.
+ faderCanvasGroup.alpha = 1f;
+
+ // Write the initial starting position to the playerSaveData so it can be loaded by the player when the first scene is loaded.
+ playerSaveData.Save (PlayerMovement.startingPositionKey, initialStartingPositionName);
+
+ // Start the first scene loading and wait for it to finish.
+ yield return StartCoroutine (LoadSceneAndSetActive (startingSceneName));
+
+ // Once the scene is finished loading, start fading in.
+ StartCoroutine (Fade (0f));
+ }
+
+
+ // This is the main external point of contact and influence from the rest of the project.
+ // This will be called by a SceneReaction when the player wants to switch scenes.
+ public void FadeAndLoadScene (SceneReaction sceneReaction)
+ {
+ // If a fade isn't happening then start fading and switching scenes.
+ if (!isFading)
+ {
+ StartCoroutine (FadeAndSwitchScenes (sceneReaction.sceneName));
+ }
+ }
+
+
+ // This is the coroutine where the 'building blocks' of the script are put together.
+ private IEnumerator FadeAndSwitchScenes (string sceneName)
+ {
+ // Start fading to black and wait for it to finish before continuing.
+ yield return StartCoroutine (Fade (1f));
+
+ // If this event has any subscribers, call it.
+ if (BeforeSceneUnload != null)
+ BeforeSceneUnload ();
+
+ // Unload the current active scene.
+ yield return SceneManager.UnloadSceneAsync (SceneManager.GetActiveScene ().buildIndex);
+
+ // Start loading the given scene and wait for it to finish.
+ yield return StartCoroutine (LoadSceneAndSetActive (sceneName));
+
+ // If this event has any subscribers, call it.
+ if (AfterSceneLoad != null)
+ AfterSceneLoad ();
+
+ // Start fading back in and wait for it to finish before exiting the function.
+ yield return StartCoroutine (Fade (0f));
+ }
+
+
+ private IEnumerator LoadSceneAndSetActive (string sceneName)
+ {
+ // Allow the given scene to load over several frames and add it to the already loaded scenes (just the Persistent scene at this point).
+ yield return SceneManager.LoadSceneAsync (sceneName, LoadSceneMode.Additive);
+
+ // Find the scene that was most recently loaded (the one at the last index of the loaded scenes).
+ Scene newlyLoadedScene = SceneManager.GetSceneAt (SceneManager.sceneCount - 1);
+
+ // Set the newly loaded scene as the active scene (this marks it as the one to be unloaded next).
+ SceneManager.SetActiveScene (newlyLoadedScene);
+ }
+
+
+ private IEnumerator Fade (float finalAlpha)
+ {
+ // Set the fading flag to true so the FadeAndSwitchScenes coroutine won't be called again.
+ isFading = true;
+
+ // Make sure the CanvasGroup blocks raycasts into the scene so no more input can be accepted.
+ faderCanvasGroup.blocksRaycasts = true;
+
+ // Calculate how fast the CanvasGroup should fade based on it's current alpha, it's final alpha and how long it has to change between the two.
+ float fadeSpeed = Mathf.Abs (faderCanvasGroup.alpha - finalAlpha) / fadeDuration;
+
+ // While the CanvasGroup hasn't reached the final alpha yet...
+ while (!Mathf.Approximately (faderCanvasGroup.alpha, finalAlpha))
+ {
+ // ... move the alpha towards it's target alpha.
+ faderCanvasGroup.alpha = Mathf.MoveTowards (faderCanvasGroup.alpha, finalAlpha,
+ fadeSpeed * Time.deltaTime);
+
+ // Wait for a frame then continue.
+ yield return null;
+ }
+
+ // Set the flag to false since the fade has finished.
+ isFading = false;
+
+ // Stop the CanvasGroup from blocking raycasts so input is no longer ignored.
+ faderCanvasGroup.blocksRaycasts = false;
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl/SceneController.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl/SceneController.cs.meta
new file mode 100644
index 00000000..6353a4bb
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl/SceneController.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: f71c7948c9c09fe409c0b88b7e7d98e3
+timeCreated: 1466522577
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl/StartingPosition.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl/StartingPosition.cs
new file mode 100644
index 00000000..80b817b2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl/StartingPosition.cs
@@ -0,0 +1,40 @@
+using System.Collections.Generic;
+using UnityEngine;
+
+// This script is used to mark a Transform as potential starting point for a scene.
+public class StartingPosition : MonoBehaviour
+{
+ public string startingPointName; // The name that identifies this starting point in the scene.
+
+
+ private static List allStartingPositions = new List ();
+ // This list contains all the StartingPositions that are currently active.
+
+
+ private void OnEnable ()
+ {
+ // When this is activated, add it to the list that contains all active StartingPositions.
+ allStartingPositions.Add (this);
+ }
+
+
+ private void OnDisable ()
+ {
+ // When this is deactivated, remove it from the list that contains all the active StartingPositions.
+ allStartingPositions.Remove (this);
+ }
+
+
+ public static Transform FindStartingPosition (string pointName)
+ {
+ // Go through all the currently active StartingPositions and return the one with the matching name.
+ for (int i = 0; i < allStartingPositions.Count; i++)
+ {
+ if (allStartingPositions[i].startingPointName == pointName)
+ return allStartingPositions[i].transform;
+ }
+
+ // If a matching StartingPosition couldn't be found, return null.
+ return null;
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl/StartingPosition.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl/StartingPosition.cs.meta
new file mode 100644
index 00000000..4822dfba
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/MonoBehaviours/SceneControl/StartingPosition.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 2a1a9400b6609fb4aba06d78b45ca76c
+timeCreated: 1466523064
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects.meta
new file mode 100644
index 00000000..184cfd8b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 7f1fc8e51881e324995ed5aa89603096
+folderAsset: yes
+timeCreated: 1466762530
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/DataPersistence.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/DataPersistence.meta
new file mode 100644
index 00000000..96ea2f00
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/DataPersistence.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: bc5bcbaffc9422145b6ecbc7372d0838
+folderAsset: yes
+timeCreated: 1466763484
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/DataPersistence/SaveData.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/DataPersistence/SaveData.cs
new file mode 100644
index 00000000..1ce7d895
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/DataPersistence/SaveData.cs
@@ -0,0 +1,169 @@
+using System;
+using UnityEngine;
+using System.Collections.Generic;
+
+// Instance of this class can be created as assets.
+// Each instance contains collections of data from
+// the Saver monobehaviours they have been referenced
+// by. Since assets exist outside of the scene, the
+// data will persist ready to be reloaded next time
+// the scene is loaded. Note that these assets
+// DO NOT persist between loads of a build and can
+// therefore NOT be used for saving the gamestate to
+// disk.
+[CreateAssetMenu]
+public class SaveData : ResettableScriptableObject
+{
+ // This nested class is a lighter replacement for
+ // Dictionaries. This is required because Dictionaries
+ // are not serializable. It has a single generic type
+ // that represents the type of data to be stored in it.
+ [Serializable]
+ public class KeyValuePairLists
+ {
+ public List keys = new List(); // The keys are unique identifiers for each element of data.
+ public List values = new List(); // The values are the elements of data.
+
+
+ public void Clear ()
+ {
+ keys.Clear ();
+ values.Clear ();
+ }
+
+
+ public void TrySetValue (string key, T value)
+ {
+ // Find the index of the keys and values based on the given key.
+ int index = keys.FindIndex(x => x == key);
+
+ // If the index is positive...
+ if (index > -1)
+ {
+ // ... set the value at that index to the given value.
+ values[index] = value;
+ }
+ else
+ {
+ // Otherwise add a new key and a new value to the collection.
+ keys.Add (key);
+ values.Add (value);
+ }
+ }
+
+
+ public bool TryGetValue (string key, ref T value)
+ {
+ // Find the index of the keys and values based on the given key.
+ int index = keys.FindIndex(x => x == key);
+
+ // If the index is positive...
+ if (index > -1)
+ {
+ // ... set the reference value to the value at that index and return that the value was found.
+ value = values[index];
+ return true;
+ }
+
+ // Otherwise, return that the value was not found.
+ return false;
+ }
+ }
+
+
+ // These are collections for various different data types.
+ public KeyValuePairLists boolKeyValuePairLists = new KeyValuePairLists ();
+ public KeyValuePairLists intKeyValuePairLists = new KeyValuePairLists();
+ public KeyValuePairLists stringKeyValuePairLists = new KeyValuePairLists();
+ public KeyValuePairLists vector3KeyValuePairLists = new KeyValuePairLists();
+ public KeyValuePairLists quaternionKeyValuePairLists = new KeyValuePairLists();
+
+
+ public override void Reset ()
+ {
+ boolKeyValuePairLists.Clear ();
+ intKeyValuePairLists.Clear ();
+ stringKeyValuePairLists.Clear ();
+ vector3KeyValuePairLists.Clear ();
+ quaternionKeyValuePairLists.Clear ();
+ }
+
+
+ // This is the generic version of the Save function which takes a
+ // collection and value of the same type and then tries to set a value.
+ private void Save(KeyValuePairLists lists, string key, T value)
+ {
+ lists.TrySetValue(key, value);
+ }
+
+
+ // This is similar to the generic Save function, it tries to get a value.
+ private bool Load(KeyValuePairLists lists, string key, ref T value)
+ {
+ return lists.TryGetValue(key, ref value);
+ }
+
+
+ // This is a public overload for the Save function that specifically
+ // chooses the generic type and calls the generic version.
+ public void Save (string key, bool value)
+ {
+ Save(boolKeyValuePairLists, key, value);
+ }
+
+
+ public void Save (string key, int value)
+ {
+ Save(intKeyValuePairLists, key, value);
+ }
+
+
+ public void Save (string key, string value)
+ {
+ Save(stringKeyValuePairLists, key, value);
+ }
+
+
+ public void Save (string key, Vector3 value)
+ {
+ Save(vector3KeyValuePairLists, key, value);
+ }
+
+
+ public void Save (string key, Quaternion value)
+ {
+ Save(quaternionKeyValuePairLists, key, value);
+ }
+
+
+ // This works the same as the public Save overloads except
+ // it calls the generic Load function.
+ public bool Load (string key, ref bool value)
+ {
+ return Load(boolKeyValuePairLists, key, ref value);
+ }
+
+
+ public bool Load (string key, ref int value)
+ {
+ return Load (intKeyValuePairLists, key, ref value);
+ }
+
+
+ public bool Load (string key, ref string value)
+ {
+ return Load (stringKeyValuePairLists, key, ref value);
+ }
+
+
+ public bool Load (string key, ref Vector3 value)
+ {
+ return Load(vector3KeyValuePairLists, key, ref value);
+ }
+
+
+ public bool Load (string key, ref Quaternion value)
+ {
+ return Load (quaternionKeyValuePairLists, key, ref value);
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/DataPersistence/SaveData.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/DataPersistence/SaveData.cs.meta
new file mode 100644
index 00000000..add7f417
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/DataPersistence/SaveData.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: b25a41fcf26f82144b0eb57e0e4d8c69
+timeCreated: 1469027048
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction.meta
new file mode 100644
index 00000000..38f2f90c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: c56022108be0d0e4ea6f2bc4ae80f831
+folderAsset: yes
+timeCreated: 1465290280
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts.meta
new file mode 100644
index 00000000..0d85e2e1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 77cea91b2cbe8174bac910bcd3ab72a7
+folderAsset: yes
+timeCreated: 1466763449
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts/DelayedReaction.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts/DelayedReaction.cs
new file mode 100644
index 00000000..44191d4c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts/DelayedReaction.cs
@@ -0,0 +1,42 @@
+using UnityEngine;
+using System.Collections;
+
+// This is a base class for Reactions that need to have a delay.
+public abstract class DelayedReaction : Reaction
+{
+ public float delay; // All DelayedReactions need to have an time that they are delayed by.
+
+
+ protected WaitForSeconds wait; // Storing the wait created from the delay so it doesn't need to be created each time.
+
+
+ // This function 'hides' the Init function from the Reaction class.
+ // Hiding generally happens when the original function doesn't meet
+ // the requirements for the function in the inheriting class.
+ // Previously it was assumed that all Reactions just needed to call
+ // SpecificInit but with DelayedReactions, wait needs to be set too.
+ public new void Init ()
+ {
+ wait = new WaitForSeconds (delay);
+
+ SpecificInit ();
+ }
+
+
+ // This function 'hides' the React function from the Reaction class.
+ // It replaces the functionality with starting a coroutine instead.
+ public new void React (MonoBehaviour monoBehaviour)
+ {
+ monoBehaviour.StartCoroutine (ReactCoroutine ());
+ }
+
+
+ protected IEnumerator ReactCoroutine ()
+ {
+ // Wait for the specified time.
+ yield return wait;
+
+ // Then call the ImmediateReaction function which must be defined in inherting classes.
+ ImmediateReaction ();
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts/DelayedReaction.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts/DelayedReaction.cs.meta
new file mode 100644
index 00000000..3e4458f7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts/DelayedReaction.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: b077babc2a21bfc4a9d4f1494b20a391
+timeCreated: 1465896551
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts/Reaction.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts/Reaction.cs
new file mode 100644
index 00000000..89ec16ad
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts/Reaction.cs
@@ -0,0 +1,33 @@
+using UnityEngine;
+
+// This is the base class for all Reactions.
+// There are arrays of inheriting Reactions on ReactionCollections.
+public abstract class Reaction : ScriptableObject
+{
+ // This is called from ReactionCollection.
+ // This function contains everything that is required to be done for all
+ // Reactions as well as call the SpecificInit of the inheriting Reaction.
+ public void Init ()
+ {
+ SpecificInit ();
+ }
+
+
+ // This function is virtual so that it can be overridden and used purely
+ // for the needs of the inheriting class.
+ protected virtual void SpecificInit()
+ {}
+
+
+ // This function is called from ReactionCollection.
+ // It contains everything that is required for all for all Reactions as
+ // well as the part of the Reaction which needs to happen immediately.
+ public void React (MonoBehaviour monoBehaviour)
+ {
+ ImmediateReaction ();
+ }
+
+
+ // This is the core of the Reaction and must be overridden to make things happpen.
+ protected abstract void ImmediateReaction ();
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts/Reaction.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts/Reaction.cs.meta
new file mode 100644
index 00000000..a59c862b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Abstracts/Reaction.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 49b474f6ad484f3498107379f34ba05c
+timeCreated: 1465830942
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions.meta
new file mode 100644
index 00000000..f8a39c73
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: d2fe801b326d9024db2ce145599fe673
+folderAsset: yes
+timeCreated: 1470663959
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/AllConditions.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/AllConditions.cs
new file mode 100644
index 00000000..2cfe8c91
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/AllConditions.cs
@@ -0,0 +1,77 @@
+using UnityEngine;
+
+// This script works as a singleton asset. That means that
+// it is globally accessible through a static instance
+// reference.
+public class AllConditions : ResettableScriptableObject
+{
+ public Condition[] conditions; // All the Conditions that exist in the game.
+
+
+ private static AllConditions instance; // The singleton instance.
+
+
+ private const string loadPath = "AllConditions"; // The path within the Resources folder that
+
+
+ public static AllConditions Instance // The public accessor for the singleton instance.
+ {
+ get
+ {
+ // If the instance is currently null, try to find an AllConditions instance already in memory.
+ if (!instance)
+ instance = FindObjectOfType ();
+ // If the instance is still null, try to load it from the Resources folder.
+ if (!instance)
+ instance = Resources.Load (loadPath);
+ // If the instance is still null, report that it has not been created yet.
+ if (!instance)
+ Debug.LogError ("AllConditions has not been created yet. Go to Assets > Create > AllConditions.");
+ return instance;
+ }
+ set { instance = value; }
+ }
+
+
+ // This function will be called at Start once per run of the game.
+ public override void Reset ()
+ {
+ // If there are no conditions, do nothing.
+ if (conditions == null)
+ return;
+
+ // Set all of the conditions to not satisfied.
+ for (int i = 0; i < conditions.Length; i++)
+ {
+ conditions[i].satisfied = false;
+ }
+ }
+
+
+ // This is called from ConditionCollections when they are being checked by an Interactable that has been clicked on.
+ public static bool CheckCondition (Condition requiredCondition)
+ {
+ // Cache the condition array.
+ Condition[] allConditions = Instance.conditions;
+ Condition globalCondition = null;
+
+ // If there is at least one condition...
+ if (allConditions != null && allConditions[0] != null)
+ {
+ // ... go through all the conditions...
+ for (int i = 0; i < allConditions.Length; i++)
+ {
+ // ... and if they match the given condition then this is the global version of the requiredConditiond.
+ if (allConditions[i].hash == requiredCondition.hash)
+ globalCondition = allConditions[i];
+ }
+ }
+
+ // If by this point a globalCondition hasn't been found then return false.
+ if (!globalCondition)
+ return false;
+
+ // Return true if the satisfied states match, false otherwise.
+ return globalCondition.satisfied == requiredCondition.satisfied;
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/AllConditions.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/AllConditions.cs.meta
new file mode 100644
index 00000000..520c70b8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/AllConditions.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: a54f0fecf5593d84985bdc0adae0cbbc
+timeCreated: 1467799231
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/Condition.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/Condition.cs
new file mode 100644
index 00000000..14a527a7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/Condition.cs
@@ -0,0 +1,17 @@
+using UnityEngine;
+
+// This class is used to determine whether or not Reactions
+// should happen. Instances of Condition exist in two places:
+// as assets which are part of the AllConditions asset and as
+// part of ConditionCollections. The Conditions that are part
+// of the AllConditions asset are those that are set by
+// Reactions and reflect the state of the game. Those that
+// are on ConditionCollections are compared to the
+// AllConditions asset to determine whether other Reactions
+// should happen.
+public class Condition : ScriptableObject
+{
+ public string description; // A description of the Condition, for example 'BeamsOff'.
+ public bool satisfied; // Whether or not the Condition has been satisfied, for example are the beams off?
+ public int hash; // A number which represents the description. This is used to compare ConditionCollection Conditions to AllConditions Conditions.
+}
\ No newline at end of file
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/Condition.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/Condition.cs.meta
new file mode 100644
index 00000000..c52dfd1a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/Condition.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 48c14b7cdc8cc6347b3a5d48d05c9c85
+timeCreated: 1467714156
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/ConditionCollection.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/ConditionCollection.cs
new file mode 100644
index 00000000..e3d8daea
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/ConditionCollection.cs
@@ -0,0 +1,32 @@
+using UnityEngine;
+
+// This class represents a single outcome from clicking
+// on an interactable. It has an array of Conditions
+// and if they are all met an ReactionCollection that
+// will happen.
+public class ConditionCollection : ScriptableObject
+{
+ public string description; // Description of the ConditionCollection. This is used purely for identification in the inspector.
+ public Condition[] requiredConditions = new Condition[0]; // The Conditions that need to be met in order for the ReactionCollection to React.
+ public ReactionCollection reactionCollection; // Reference to the ReactionCollection that will React should all the Conditions be met.
+
+
+ // This is called by the Interactable one at a time for each of its ConditionCollections until one returns true.
+ public bool CheckAndReact()
+ {
+ // Go through all Conditions...
+ for (int i = 0; i < requiredConditions.Length; i++)
+ {
+ // ... and check them against the AllConditions version of the Condition. If they don't have the same satisfied flag, return false.
+ if (!AllConditions.CheckCondition (requiredConditions[i]))
+ return false;
+ }
+
+ // If there is an ReactionCollection assigned, call its React function.
+ if(reactionCollection)
+ reactionCollection.React();
+
+ // A Reaction happened so return true.
+ return true;
+ }
+}
\ No newline at end of file
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/ConditionCollection.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/ConditionCollection.cs.meta
new file mode 100644
index 00000000..e87d12ab
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Conditions/ConditionCollection.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 4900350095ceff24fbe8c1ac5f1e17c4
+timeCreated: 1467714168
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions.meta
new file mode 100644
index 00000000..f590f4db
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 79035e49ae3d9d246a8326ee09d3b1df
+folderAsset: yes
+timeCreated: 1465895630
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions.meta
new file mode 100644
index 00000000..da305d1b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 0df936839eff4d0448c519c74c959156
+folderAsset: yes
+timeCreated: 1465897352
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/AnimationReaction.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/AnimationReaction.cs
new file mode 100644
index 00000000..22f38e80
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/AnimationReaction.cs
@@ -0,0 +1,22 @@
+using UnityEngine;
+
+public class AnimationReaction : DelayedReaction
+{
+ public Animator animator; // The Animator that will have its trigger parameter set.
+ public string trigger; // The name of the trigger parameter to be set.
+
+
+ private int triggerHash; // The hash representing the trigger parameter to be set.
+
+
+ protected override void SpecificInit ()
+ {
+ triggerHash = Animator.StringToHash(trigger);
+ }
+
+
+ protected override void ImmediateReaction ()
+ {
+ animator.SetTrigger (triggerHash);
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/AnimationReaction.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/AnimationReaction.cs.meta
new file mode 100644
index 00000000..eaf21dde
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/AnimationReaction.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: a931d1c243b462c46bad5f7d2aae5949
+timeCreated: 1465895648
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/BehaviourReaction.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/BehaviourReaction.cs
new file mode 100644
index 00000000..a7a4a579
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/BehaviourReaction.cs
@@ -0,0 +1,18 @@
+using UnityEngine;
+
+// This Reaction is for turning Behaviours on and
+// off. Behaviours are a subset of Components
+// which have the enabled property, for example
+// all MonoBehaviours are Behaviours as well as
+// Animators, AudioSources and many more.
+public class BehaviourReaction : DelayedReaction
+{
+ public Behaviour behaviour; // The Behaviour to be turned on or off.
+ public bool enabledState; // The state the Behaviour will be in after the Reaction.
+
+
+ protected override void ImmediateReaction()
+ {
+ behaviour.enabled = enabledState;
+ }
+}
\ No newline at end of file
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/BehaviourReaction.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/BehaviourReaction.cs.meta
new file mode 100644
index 00000000..00380fe7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/BehaviourReaction.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 37928671becf1a4429a8088d8bec2f34
+timeCreated: 1465895686
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/GameObjectReaction.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/GameObjectReaction.cs
new file mode 100644
index 00000000..888aef8f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/GameObjectReaction.cs
@@ -0,0 +1,13 @@
+using UnityEngine;
+
+public class GameObjectReaction : DelayedReaction
+{
+ public GameObject gameObject; // The gameobject to be turned on or off.
+ public bool activeState; // The state that the gameobject will be in after the Reaction.
+
+
+ protected override void ImmediateReaction()
+ {
+ gameObject.SetActive (activeState);
+ }
+}
\ No newline at end of file
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/GameObjectReaction.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/GameObjectReaction.cs.meta
new file mode 100644
index 00000000..95d3f337
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/GameObjectReaction.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 80c32f1270758a64ba4bc71dbf7e498b
+timeCreated: 1465895752
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/LostItemReaction.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/LostItemReaction.cs
new file mode 100644
index 00000000..c75b1d51
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/LostItemReaction.cs
@@ -0,0 +1,19 @@
+public class LostItemReaction : DelayedReaction
+{
+ public Item item; // Item to be removed from the Inventory.
+
+
+ private Inventory inventory; // Reference to the Inventory component.
+
+
+ protected override void SpecificInit()
+ {
+ inventory = FindObjectOfType ();
+ }
+
+
+ protected override void ImmediateReaction()
+ {
+ inventory.RemoveItem (item);
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/LostItemReaction.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/LostItemReaction.cs.meta
new file mode 100644
index 00000000..d5f5a8f7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/LostItemReaction.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 2d482a9551d8b074097fdb7beded4043
+timeCreated: 1465897331
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/PickedUpItemReaction.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/PickedUpItemReaction.cs
new file mode 100644
index 00000000..ec49f9cd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/PickedUpItemReaction.cs
@@ -0,0 +1,19 @@
+public class PickedUpItemReaction : DelayedReaction
+{
+ public Item item; // The item asset to be added to the Inventory.
+
+
+ private Inventory inventory; // Reference to the Inventory component.
+
+
+ protected override void SpecificInit()
+ {
+ inventory = FindObjectOfType();
+ }
+
+
+ protected override void ImmediateReaction()
+ {
+ inventory.AddItem(item);
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/PickedUpItemReaction.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/PickedUpItemReaction.cs.meta
new file mode 100644
index 00000000..b43f09e1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/DelayedReactions/PickedUpItemReaction.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: b804958e1981f9544989d65e32719692
+timeCreated: 1465897313
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions.meta
new file mode 100644
index 00000000..0717f190
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 1f3d7bb6838b9484e84f538f057326a5
+folderAsset: yes
+timeCreated: 1465915531
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/AudioReaction.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/AudioReaction.cs
new file mode 100644
index 00000000..f20dcc78
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/AudioReaction.cs
@@ -0,0 +1,19 @@
+using UnityEngine;
+
+// This Reaction is used to play sounds through a given AudioSource.
+// Since the AudioSource itself handles delay, this is a Reaction
+// rather than an DelayedReaction.
+public class AudioReaction : Reaction
+{
+ public AudioSource audioSource; // The AudioSource to play the clip.
+ public AudioClip audioClip; // The AudioClip to be played.
+ public float delay; // How long after React is called before the clip plays.
+
+
+ protected override void ImmediateReaction()
+ {
+ // Set the AudioSource's clip to the given one and play with the given delay.
+ audioSource.clip = audioClip;
+ audioSource.PlayDelayed(delay);
+ }
+}
\ No newline at end of file
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/AudioReaction.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/AudioReaction.cs.meta
new file mode 100644
index 00000000..fbc4ba4d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/AudioReaction.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 2392585f8a4e53a42a0ddc8de25e64d2
+timeCreated: 1465895671
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/ConditionReaction.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/ConditionReaction.cs
new file mode 100644
index 00000000..ea72eba0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/ConditionReaction.cs
@@ -0,0 +1,19 @@
+// This is the Reaction to change the satisfied state
+// of a Condition. The Condition here is a reference
+// to one on the AllConditions asset. That means by
+// changing the Condition here, the global game
+// Condition will change. Since Reaction decisions
+// are made based on Conditions, the change must be
+// immediate and therefore this is a Reaction rather
+// than a DelayedReaction.
+public class ConditionReaction : Reaction
+{
+ public Condition condition; // The Condition to be changed.
+ public bool satisfied; // The satisfied state the Condition will be changed to.
+
+
+ protected override void ImmediateReaction ()
+ {
+ condition.satisfied = satisfied;
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/ConditionReaction.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/ConditionReaction.cs.meta
new file mode 100644
index 00000000..d11c8702
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/ConditionReaction.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: ec43236ba6522584894ac80bfbcb3815
+timeCreated: 1469439843
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/SceneReaction.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/SceneReaction.cs
new file mode 100644
index 00000000..f165ef2e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/SceneReaction.cs
@@ -0,0 +1,29 @@
+// The SceneReaction is used to change between scenes.
+// Though there is a delay while the scene fades out,
+// this is done with the SceneController class and so
+// this is just a Reaction not a DelayedReaction.
+public class SceneReaction : Reaction
+{
+ public string sceneName; // The name of the scene to be loaded.
+ public string startingPointInLoadedScene; // The name of the StartingPosition in the newly loaded scene.
+ public SaveData playerSaveData; // Reference to the save data asset that will store the StartingPosition.
+
+
+ private SceneController sceneController; // Reference to the SceneController to actually do the loading and unloading of scenes.
+
+
+ protected override void SpecificInit()
+ {
+ sceneController = FindObjectOfType ();
+ }
+
+
+ protected override void ImmediateReaction()
+ {
+ // Save the StartingPosition's name to the data asset.
+ playerSaveData.Save (PlayerMovement.startingPositionKey, startingPointInLoadedScene);
+
+ // Start the scene loading process.
+ sceneController.FadeAndLoadScene (this);
+ }
+}
\ No newline at end of file
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/SceneReaction.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/SceneReaction.cs.meta
new file mode 100644
index 00000000..23d4fed2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/SceneReaction.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 24dc6b17b276d6948903ade30dec71eb
+timeCreated: 1465895777
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/TextReaction.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/TextReaction.cs
new file mode 100644
index 00000000..97b858ca
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/TextReaction.cs
@@ -0,0 +1,26 @@
+using UnityEngine;
+
+// This Reaction has a delay but is not a DelayedReaction.
+// This is because the TextManager component handles the
+// delay instead of the Reaction.
+public class TextReaction : Reaction
+{
+ public string message; // The text to be displayed to the screen.
+ public Color textColor = Color.white; // The color of the text when it's displayed (different colors for different characters talking).
+ public float delay; // How long after the React function is called before the text is displayed.
+
+
+ private TextManager textManager; // Reference to the component to display the text.
+
+
+ protected override void SpecificInit()
+ {
+ textManager = FindObjectOfType ();
+ }
+
+
+ protected override void ImmediateReaction()
+ {
+ textManager.DisplayMessage (message, textColor, delay);
+ }
+}
\ No newline at end of file
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/TextReaction.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/TextReaction.cs.meta
new file mode 100644
index 00000000..412b89ea
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Interaction/Reactions/ImmediateReactions/TextReaction.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 03f8a149ea5a3aa4583dc1cab3334cbc
+timeCreated: 1465895792
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Inventory.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Inventory.meta
new file mode 100644
index 00000000..9241cdb8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Inventory.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 751091493074194408da3cbf31f2239e
+folderAsset: yes
+timeCreated: 1466763472
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Inventory/Item.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Inventory/Item.cs
new file mode 100644
index 00000000..d2163b6f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Inventory/Item.cs
@@ -0,0 +1,11 @@
+using UnityEngine;
+
+// This simple script represents Items that can be picked
+// up in the game. The inventory system is done using
+// this script instead of just sprites to ensure that items
+// are extensible.
+[CreateAssetMenu]
+public class Item : ScriptableObject
+{
+ public Sprite sprite;
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Inventory/Item.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Inventory/Item.cs.meta
new file mode 100644
index 00000000..3565f948
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/Inventory/Item.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 2f67bd8ec6e33af4987562f6141a3bf2
+timeCreated: 1466676638
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/ResettableScriptableObject.cs b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/ResettableScriptableObject.cs
new file mode 100644
index 00000000..afc8d7f1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/ResettableScriptableObject.cs
@@ -0,0 +1,9 @@
+using UnityEngine;
+
+// This class is used to enforce a Reset function on ScriptableObjects.
+// It is used instead of an Interface as Interfaces do not serialize
+// and therefore can't be shown in the inspector.
+public abstract class ResettableScriptableObject : ScriptableObject
+{
+ public abstract void Reset ();
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/ResettableScriptableObject.cs.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/ResettableScriptableObject.cs.meta
new file mode 100644
index 00000000..90229ac5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Scripts/ScriptableObjects/ResettableScriptableObject.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 36d057bb7ad6d5c4e9e6cdfda5ba8d70
+timeCreated: 1469109439
+licenseType: Store
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders.meta
new file mode 100644
index 00000000..13dad371
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 90dc39d8d400a5f4d8fc58c11461086b
+folderAsset: yes
+timeCreated: 1461845511
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders/Hologram.shader b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders/Hologram.shader
new file mode 100644
index 00000000..3b89cad7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders/Hologram.shader
@@ -0,0 +1,99 @@
+Shader "Custom/Hologram"
+{
+ Properties
+ {
+ _MainTex ("Texture", 2D) = "white" {}
+ [HDR]_HoloColor("Hologram Color", Color) = (0, 0.7, 0, 1)
+ _HoloNoise("Noise Texture", 2D) = "white" {}
+ _ScanlineData("scanline: x = speed, y = scale | noise: z = Scale, w = Strength", Vector) = (4,1,10,0.6)
+ _RimPower("Rim Strength", Range(0.1,5.0)) = 0.5
+ _MinAlpha("Minimum Alpha", Range(0.0,1.0)) = 0.2
+ }
+ SubShader
+ {
+ Tags { "RenderType"="Transparent" "Queue"="Transparent" }
+
+ LOD 100
+
+ Pass{
+ ZWrite On
+ ColorMask 0
+ }
+
+ Pass
+ {
+ Blend SrcAlpha OneMinusSrcAlpha
+
+ CGPROGRAM
+ #pragma vertex vert
+ #pragma fragment frag
+ // make fog work
+ #pragma multi_compile_fog
+
+ #include "UnityCG.cginc"
+
+ struct appdata
+ {
+ float4 vertex : POSITION;
+ float4 normal : NORMAL;
+ float2 uv : TEXCOORD0;
+ };
+
+ struct v2f
+ {
+ float2 uv : TEXCOORD0;
+ float4 normal : TEXCOORD1;
+ float4 worldPos : TEXCOORD2;
+ float3 viewDir : TEXCOORD3;
+ UNITY_FOG_COORDS(4)
+ float4 vertex : SV_POSITION;
+ };
+
+ sampler2D _MainTex;
+ sampler2D _HoloNoise;
+ float4 _MainTex_ST;
+ float4 _HoloColor;
+ float4 _ScanlineData;
+ float _RimPower;
+ float _MinAlpha;
+
+ v2f vert (appdata v)
+ {
+ v2f o;
+ o.vertex = UnityObjectToClipPos(v.vertex);
+ o.uv = TRANSFORM_TEX(v.uv, _MainTex);
+ o.normal = v.normal;
+ o.worldPos = o.vertex;
+ o.viewDir = ObjSpaceViewDir(v.vertex);
+ UNITY_TRANSFER_FOG(o,o.vertex);
+ return o;
+ }
+
+ fixed4 frag (v2f i) : SV_Target
+ {
+ float atten = pow(1.0f - saturate(dot(i.normal.xyz, normalize(i.viewDir))), _RimPower);
+ atten = max(_MinAlpha, atten);
+
+ // sample the texture
+ fixed4 col = tex2D(_MainTex, i.uv) * _HoloColor;
+
+ float y = (i.worldPos.y + _Time.y * _ScanlineData.x) * _ScanlineData.y;
+
+ float4 scanLine = tex2D(_HoloNoise, float2(0.5, y));
+ float4 scanNoise = tex2D(_HoloNoise, float2(i.worldPos.x * _ScanlineData.z, y));
+
+ clip(scanLine.x - 0.1f);
+
+ atten *= scanLine.z + scanNoise * _ScanlineData.w;
+
+ // apply fog
+ UNITY_APPLY_FOG(i.fogCoord, col);
+
+ col.a = atten;
+
+ return col;
+ }
+ ENDCG
+ }
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders/Hologram.shader.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders/Hologram.shader.meta
new file mode 100644
index 00000000..5fe6f866
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders/Hologram.shader.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 7635c0ad095ddcb4389731c35e45c833
+timeCreated: 1461922925
+licenseType: Store
+ShaderImporter:
+ defaultTextures: []
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders/ToonShader.shader b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders/ToonShader.shader
new file mode 100644
index 00000000..60734a75
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders/ToonShader.shader
@@ -0,0 +1,121 @@
+Shader "Custom/ToonShader" {
+ Properties {
+ _Color ("Color", Color) = (1,1,1,1)
+ _SpecularPower("Specular Power", Range(0.0,1.0)) = 0.01
+ _MainTex ("Albedo (RGB)", 2D) = "white" {}
+ _SpecTex("Specular (B&W)", 2D) = "white" {}
+ _Ramp("Toon Ramp", 2D) = "white" {}
+ _Border("Border size", Range(0.0,0.1)) = 0.01
+ _BorderColor("Border Color", Color) = (0,0,0,1)
+ [Toggle(SPECULAR_ENABLE)] _SpecularEnable("Enable Specular", Int) = 0
+ [Toggle(OUTLINE_FRONT)] _OutlineFront("Enable Outline", Int) = 1
+ }
+ SubShader {
+ Tags { "RenderType"="Opaque" "Queue"="Transparent+2"}
+ LOD 200
+
+ Pass
+ {
+ Name "OUTLINE"
+ Tags{ "LightMode" = "Always" }
+ Cull Front
+ ZWrite Off
+ ColorMask RGB
+ Blend SrcAlpha OneMinusSrcAlpha
+
+ CGPROGRAM
+
+ #pragma shader_feature OUTLINE_FRONT
+
+ #pragma vertex vert
+ #pragma fragment frag
+ #include "UnityCG.cginc"
+
+ struct appdata {
+ float4 vertex : POSITION;
+ float3 normal : NORMAL;
+ };
+
+ struct v2f {
+ float4 pos : POSITION;
+ float4 color : COLOR;
+ };
+
+ float _Border;
+ float4 _BorderColor;
+
+ v2f vert(appdata v)
+ {
+ v2f o;
+ #if OUTLINE_FRONT
+ o.pos = UnityObjectToClipPos(v.vertex);
+
+ float3 norm = mul((float3x3)UNITY_MATRIX_IT_MV, v.normal);
+ float2 offset = TransformViewToProjection(norm.xy);
+
+ o.pos.xy += offset * UNITY_Z_0_FAR_FROM_CLIPSPACE(o.pos.z) * _Border;
+ o.color = _BorderColor;
+ #else
+ o.pos = float4(0, 0, 0, 0);
+ o.color = float4(0, 0, 0, 0);
+ #endif
+ return o;
+ }
+
+ half4 frag(v2f i) :COLOR{ return i.color; }
+ ENDCG
+ }
+
+ CGPROGRAM
+ // Physically based Standard lighting model, and enable shadows on all light types
+ #pragma shader_feature SPECULAR_ENABLE
+ #pragma surface surf Ramp fullforwardshadows
+
+ // Use shader model 3.0 target, to get nicer looking lighting
+ #pragma target 3.0
+
+ sampler2D _Ramp;
+
+ half4 LightingRamp(SurfaceOutput s, half3 lightDir, half3 viewDir, half atten) {
+ half NdotL = dot(s.Normal, lightDir);
+ half diff = NdotL * 0.5 + 0.5;
+ half3 ramp = tex2D(_Ramp, float2(diff, diff)).rgb;
+ half4 c;
+
+#if SPECULAR_ENABLE
+ half3 h = normalize(lightDir + viewDir);
+ float nh = max(0, dot(s.Normal, h));
+ float spec = pow(nh, s.Specular * 128.0);
+ c.rgb = (s.Albedo * _LightColor0.rgb * ramp + spec * _LightColor0.rgb) * atten;
+#else
+ c.rgb = s.Albedo * _LightColor0.rgb * ramp * atten;
+#endif
+ c.a = s.Alpha;
+ return c;
+ }
+
+ struct Input {
+ float2 uv_MainTex;
+ float3 viewDir;
+ };
+
+
+ sampler2D _MainTex;
+ sampler2D _SpecTex;
+
+ float _SpecularPower;
+ fixed4 _Color;
+
+ void surf (Input IN, inout SurfaceOutput o) {
+ // Albedo comes from a texture tinted by color
+ fixed4 c = tex2D (_MainTex, IN.uv_MainTex) * _Color;
+ o.Albedo = c.rgb;
+ o.Alpha = c.a;
+ o.Specular = _SpecularPower * tex2D(_SpecTex, IN.uv_MainTex);
+ }
+ ENDCG
+
+
+ }
+ FallBack "Diffuse"
+}
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders/ToonShader.shader.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders/ToonShader.shader.meta
new file mode 100644
index 00000000..8085f9b7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Shaders/ToonShader.shader.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 63c2c69d4aa01af4085f3b148a5b5c84
+timeCreated: 1461845548
+licenseType: Store
+ShaderImporter:
+ defaultTextures: []
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites.meta
new file mode 100644
index 00000000..5f978efa
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 39401a16151a0d7419c824f9bc6a3876
+folderAsset: yes
+timeCreated: 1456402679
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/AlphaSwatch.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/AlphaSwatch.png
new file mode 100644
index 00000000..d5191171
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/AlphaSwatch.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/AlphaSwatch.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/AlphaSwatch.png.meta
new file mode 100644
index 00000000..2246b02d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/AlphaSwatch.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 34153472ac6169448972d8436401d5d1
+timeCreated: 1460713127
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Coffee.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Coffee.png
new file mode 100644
index 00000000..55150af1
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Coffee.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Coffee.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Coffee.png.meta
new file mode 100644
index 00000000..588504dd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Coffee.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 0d6887c5e31a67d4c9c3988379769ec4
+timeCreated: 1456402679
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Coin.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Coin.png
new file mode 100644
index 00000000..0c1c6562
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Coin.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Coin.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Coin.png.meta
new file mode 100644
index 00000000..86fb5eb6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Coin.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: be11ca0eaba3a8d4eb2b4478733ba9d9
+timeCreated: 1456402679
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/DNA.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/DNA.png
new file mode 100644
index 00000000..98e4e287
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/DNA.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/DNA.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/DNA.png.meta
new file mode 100644
index 00000000..c30fe47e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/DNA.png.meta
@@ -0,0 +1,59 @@
+fileFormatVersion: 2
+guid: f3dc633e1017a28448b3a31383189740
+timeCreated: 1473430324
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/DNAinfo.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/DNAinfo.png
new file mode 100644
index 00000000..cdd8918d
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/DNAinfo.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/DNAinfo.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/DNAinfo.png.meta
new file mode 100644
index 00000000..37f9e311
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/DNAinfo.png.meta
@@ -0,0 +1,59 @@
+fileFormatVersion: 2
+guid: bc4aad8b91ed0244d9a1478531141006
+timeCreated: 1473431186
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 0
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 5
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Glasses.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Glasses.png
new file mode 100644
index 00000000..417d5460
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Glasses.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Glasses.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Glasses.png.meta
new file mode 100644
index 00000000..eecd36e2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Glasses.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: e2846dbbb26170a438d7da1d69f7d05e
+timeCreated: 1456402680
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Graph01.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Graph01.png
new file mode 100644
index 00000000..119180ba
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Graph01.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Graph01.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Graph01.png.meta
new file mode 100644
index 00000000..49f57e19
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Graph01.png.meta
@@ -0,0 +1,311 @@
+fileFormatVersion: 2
+guid: 716562a2f53ae4c46bcedd4b925358a9
+timeCreated: 1473344058
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName:
+ 21300000: Graph01_0
+ 21300002: Graph01_1
+ 21300004: Graph01_2
+ 21300006: Graph01_3
+ 21300008: Graph01_4
+ 21300010: Graph01_5
+ 21300012: Graph01_6
+ 21300014: Graph01_7
+ 21300016: Graph01_8
+ 21300018: Graph01_9
+ 21300020: Graph01_10
+ 21300022: Graph01_11
+ 21300024: Graph01_12
+ 21300026: Graph01_13
+ 21300028: Graph01_14
+ 21300030: Graph01_15
+ 21300032: Graph01_16
+ 21300034: Graph01_17
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: 1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 2
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites:
+ - serializedVersion: 2
+ name: Graph01_0
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 854
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_1
+ rect:
+ serializedVersion: 2
+ x: 340
+ y: 854
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_2
+ rect:
+ serializedVersion: 2
+ x: 680
+ y: 854
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_3
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 684
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_4
+ rect:
+ serializedVersion: 2
+ x: 340
+ y: 684
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_5
+ rect:
+ serializedVersion: 2
+ x: 680
+ y: 684
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_6
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 514
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_7
+ rect:
+ serializedVersion: 2
+ x: 340
+ y: 514
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_8
+ rect:
+ serializedVersion: 2
+ x: 680
+ y: 514
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_9
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 344
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_10
+ rect:
+ serializedVersion: 2
+ x: 340
+ y: 344
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_11
+ rect:
+ serializedVersion: 2
+ x: 680
+ y: 344
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_12
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 174
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_13
+ rect:
+ serializedVersion: 2
+ x: 340
+ y: 174
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_14
+ rect:
+ serializedVersion: 2
+ x: 680
+ y: 174
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_15
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 4
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_16
+ rect:
+ serializedVersion: 2
+ x: 340
+ y: 4
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: Graph01_17
+ rect:
+ serializedVersion: 2
+ x: 680
+ y: 4
+ width: 340
+ height: 170
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Icon.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Icon.png
new file mode 100644
index 00000000..5ffe0cd7
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Icon.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Icon.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Icon.png.meta
new file mode 100644
index 00000000..598b0007
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Icon.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 0f2b736c8ab8e324a9038a73543ca6da
+timeCreated: 1462978783
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/InfoBoard.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/InfoBoard.png
new file mode 100644
index 00000000..8eb90308
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/InfoBoard.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/InfoBoard.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/InfoBoard.png.meta
new file mode 100644
index 00000000..75b0d8d6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/InfoBoard.png.meta
@@ -0,0 +1,73 @@
+fileFormatVersion: 2
+guid: df383688f53ed894e8fd0b4f14ddebb1
+timeCreated: 1473414046
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName:
+ 21300000: InfoBoard_0
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites:
+ - serializedVersion: 2
+ name: InfoBoard_0
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 1024
+ height: 1024
+ alignment: 7
+ pivot: {x: 0.5, y: 0}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/InventorySlotBG.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/InventorySlotBG.png
new file mode 100644
index 00000000..729ffc11
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/InventorySlotBG.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/InventorySlotBG.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/InventorySlotBG.png.meta
new file mode 100644
index 00000000..b4dae7f1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/InventorySlotBG.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 12870f9075386c147ba1bbabcaaaf033
+timeCreated: 1456402679
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/RedHerring.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/RedHerring.png
new file mode 100644
index 00000000..3b477015
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/RedHerring.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/RedHerring.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/RedHerring.png.meta
new file mode 100644
index 00000000..e628b456
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/RedHerring.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 741b6eb3ed1c5d24482e517a0841dce3
+timeCreated: 1456402679
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Screen01.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Screen01.png
new file mode 100644
index 00000000..b541c1e1
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Screen01.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Screen01.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Screen01.png.meta
new file mode 100644
index 00000000..4af0c349
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/Screen01.png.meta
@@ -0,0 +1,59 @@
+fileFormatVersion: 2
+guid: 2dd295cfd53132440878c3c7fd36cdcd
+timeCreated: 1469804978
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence.meta
new file mode 100644
index 00000000..401ab4a7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: a1cdf59ea0639ca488fd18bee776c276
+folderAsset: yes
+timeCreated: 1462789166
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen00.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen00.jpg
new file mode 100644
index 00000000..de45b9b3
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen00.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen00.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen00.jpg.meta
new file mode 100644
index 00000000..c9056421
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen00.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 0830a10b0f3522d4ca4224db25284f8f
+timeCreated: 1462790382
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen01.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen01.jpg
new file mode 100644
index 00000000..3f746f3b
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen01.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen01.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen01.jpg.meta
new file mode 100644
index 00000000..03314b4f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen01.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: f66061c76a1f1bb48bdf25ee9aca1642
+timeCreated: 1462790415
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen02.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen02.jpg
new file mode 100644
index 00000000..7a7422fa
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen02.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen02.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen02.jpg.meta
new file mode 100644
index 00000000..cfa3e6bd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen02.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: f160348cac8b9db40ae286f6cf0981ce
+timeCreated: 1462790413
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen03.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen03.jpg
new file mode 100644
index 00000000..e7fe6f93
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen03.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen03.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen03.jpg.meta
new file mode 100644
index 00000000..a6c85f05
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen03.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 40586783d6731c84794463483874ff75
+timeCreated: 1462790391
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen04.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen04.jpg
new file mode 100644
index 00000000..83c14ab1
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen04.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen04.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen04.jpg.meta
new file mode 100644
index 00000000..993bf01d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen04.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 00deaf26506364c49afb29da95188293
+timeCreated: 1462790380
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen05.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen05.jpg
new file mode 100644
index 00000000..7fa0780a
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen05.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen05.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen05.jpg.meta
new file mode 100644
index 00000000..fece5f0c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen05.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 2df9c312e4cf878428b77e90bebbc172
+timeCreated: 1462790388
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen06.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen06.jpg
new file mode 100644
index 00000000..b494c232
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen06.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen06.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen06.jpg.meta
new file mode 100644
index 00000000..5a519c46
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen06.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 822685cc96a73e4499fc770fcae5b264
+timeCreated: 1462790396
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen07.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen07.jpg
new file mode 100644
index 00000000..5879f4e4
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen07.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen07.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen07.jpg.meta
new file mode 100644
index 00000000..032a8763
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen07.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 531c383e3b0af1a4dbd4b06bf3903cb9
+timeCreated: 1462790392
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen08.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen08.jpg
new file mode 100644
index 00000000..aa2f2b07
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen08.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen08.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen08.jpg.meta
new file mode 100644
index 00000000..eb68a15c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen08.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 1429a7bd5cce78e4984143bef9c49a35
+timeCreated: 1462790384
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen09.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen09.jpg
new file mode 100644
index 00000000..94e98da9
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen09.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen09.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen09.jpg.meta
new file mode 100644
index 00000000..7d608d2b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen09.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: db5629c439867a14e9424bf8b61b2e1e
+timeCreated: 1462790410
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen10.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen10.jpg
new file mode 100644
index 00000000..e888c769
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen10.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen10.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen10.jpg.meta
new file mode 100644
index 00000000..515d8612
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen10.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: efe55a40b8ff01f48b821846077e005f
+timeCreated: 1462790412
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen11.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen11.jpg
new file mode 100644
index 00000000..4a2eabfa
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen11.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen11.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen11.jpg.meta
new file mode 100644
index 00000000..b02517e0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen11.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 84f255ab9164975428f0be8e832e35c2
+timeCreated: 1462790397
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen12.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen12.jpg
new file mode 100644
index 00000000..9691aaff
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen12.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen12.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen12.jpg.meta
new file mode 100644
index 00000000..4cef3338
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen12.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 0f5c1b0e17d0bca4986bc684bb1da165
+timeCreated: 1462790383
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen13.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen13.jpg
new file mode 100644
index 00000000..4c416ba3
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen13.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen13.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen13.jpg.meta
new file mode 100644
index 00000000..5d7945ce
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen13.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: a4f9ea00a952af54296a8615a4a827e4
+timeCreated: 1462790403
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen14.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen14.jpg
new file mode 100644
index 00000000..cd672121
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen14.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen14.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen14.jpg.meta
new file mode 100644
index 00000000..392933f0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen14.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: a2983f088c0a8a84aa962efd0f6c8d49
+timeCreated: 1462790402
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen15.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen15.jpg
new file mode 100644
index 00000000..a06d173f
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen15.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen15.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen15.jpg.meta
new file mode 100644
index 00000000..a7b55f24
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen15.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: a98b990fb535d804cab2b2a08bedac00
+timeCreated: 1462790404
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen16.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen16.jpg
new file mode 100644
index 00000000..67c98dcb
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen16.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen16.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen16.jpg.meta
new file mode 100644
index 00000000..6334d569
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen16.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 1827904c17385ba45846c01c4a320181
+timeCreated: 1462790385
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen17.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen17.jpg
new file mode 100644
index 00000000..567d5f52
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen17.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen17.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen17.jpg.meta
new file mode 100644
index 00000000..fd44cab8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen17.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 7ac88b6a9c611154da0765a0ee9141a8
+timeCreated: 1462790395
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen18.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen18.jpg
new file mode 100644
index 00000000..ce665c3f
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen18.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen18.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen18.jpg.meta
new file mode 100644
index 00000000..a0b0900e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen18.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 9c544a5e779d11f498a6795f640c7c5a
+timeCreated: 1462790400
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen19.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen19.jpg
new file mode 100644
index 00000000..031eca5a
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen19.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen19.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen19.jpg.meta
new file mode 100644
index 00000000..43989d2e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen19.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: a67f8f2333730e94b8f305e9b8112a0a
+timeCreated: 1462790404
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen20.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen20.jpg
new file mode 100644
index 00000000..9b27172c
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen20.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen20.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen20.jpg.meta
new file mode 100644
index 00000000..3e286fc1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen20.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 1ce54dfe78fdd014ea7a810de468bb1b
+timeCreated: 1462790387
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen21.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen21.jpg
new file mode 100644
index 00000000..2c6a155b
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen21.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen21.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen21.jpg.meta
new file mode 100644
index 00000000..4ac624bf
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen21.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: f4e99a06510b3f34a95d615c1779e3d0
+timeCreated: 1462790414
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen22.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen22.jpg
new file mode 100644
index 00000000..9d27b4de
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen22.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen22.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen22.jpg.meta
new file mode 100644
index 00000000..1ab52b34
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen22.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 8804f5f22f28c17408c180c27a933992
+timeCreated: 1462790398
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen23.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen23.jpg
new file mode 100644
index 00000000..fb6eae3c
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen23.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen23.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen23.jpg.meta
new file mode 100644
index 00000000..ddd39ec5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen23.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: b96ec4933e8a2394ca51771f206d41a1
+timeCreated: 1462790407
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen24.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen24.jpg
new file mode 100644
index 00000000..b854fe52
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen24.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen24.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen24.jpg.meta
new file mode 100644
index 00000000..266d687a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen24.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: bf1256d4e3b31c8429640a4b4415f068
+timeCreated: 1462790408
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen25.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen25.jpg
new file mode 100644
index 00000000..e9783ffe
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen25.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen25.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen25.jpg.meta
new file mode 100644
index 00000000..2be023e4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen25.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: b3dfea5171cb2784caccba6db300fc25
+timeCreated: 1462790406
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen26.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen26.jpg
new file mode 100644
index 00000000..920fb3f5
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen26.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen26.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen26.jpg.meta
new file mode 100644
index 00000000..a1ce2754
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen26.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: fdbd020453eaaca42b17f5639797ac46
+timeCreated: 1462790416
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen27.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen27.jpg
new file mode 100644
index 00000000..21355ff1
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen27.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen27.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen27.jpg.meta
new file mode 100644
index 00000000..f77f58f4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen27.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 2f5b531c2d93df645b3abff0f0197487
+timeCreated: 1462790389
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen28.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen28.jpg
new file mode 100644
index 00000000..81eb544b
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen28.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen28.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen28.jpg.meta
new file mode 100644
index 00000000..da362b7f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen28.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 0131f331964b9eb4a8c78d6f50aa7576
+timeCreated: 1462790381
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen29.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen29.jpg
new file mode 100644
index 00000000..e4577f7e
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen29.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen29.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen29.jpg.meta
new file mode 100644
index 00000000..dcb48bd6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen29.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 1999ea5a562968846af91228d250b095
+timeCreated: 1462790386
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen30.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen30.jpg
new file mode 100644
index 00000000..0802afb1
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen30.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen30.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen30.jpg.meta
new file mode 100644
index 00000000..4404f5ae
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen30.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: c8114a7be7bba6348b1fc589af04176e
+timeCreated: 1462790409
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen31.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen31.jpg
new file mode 100644
index 00000000..0375265b
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen31.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen31.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen31.jpg.meta
new file mode 100644
index 00000000..94c7ba30
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen31.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 28e7865eda8d1924b95b8e990ae68652
+timeCreated: 1462790387
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen32.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen32.jpg
new file mode 100644
index 00000000..131d4fe9
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen32.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen32.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen32.jpg.meta
new file mode 100644
index 00000000..972e4ad8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen32.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: fd9f9681fe2710240bc3524596797386
+timeCreated: 1462790415
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen33.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen33.jpg
new file mode 100644
index 00000000..ecb05f51
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen33.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen33.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen33.jpg.meta
new file mode 100644
index 00000000..60d3e1a6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen33.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: e7c313c128b458341877e26806ef19b5
+timeCreated: 1462790411
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen34.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen34.jpg
new file mode 100644
index 00000000..68fdcfc7
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen34.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen34.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen34.jpg.meta
new file mode 100644
index 00000000..b735db05
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen34.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 6b4f2256a6db01e4f88196c8e85a1e12
+timeCreated: 1462790393
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen35.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen35.jpg
new file mode 100644
index 00000000..d239181d
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen35.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen35.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen35.jpg.meta
new file mode 100644
index 00000000..adc0b4ed
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen35.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: aaeaf4e6d0ef1104f8c0f4d2764067e1
+timeCreated: 1462790405
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen36.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen36.jpg
new file mode 100644
index 00000000..96c379b0
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen36.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen36.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen36.jpg.meta
new file mode 100644
index 00000000..e7b9d449
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen36.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 735af51b6711a654282899dfd1a4ffca
+timeCreated: 1462790394
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen37.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen37.jpg
new file mode 100644
index 00000000..2b47dcee
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen37.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen37.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen37.jpg.meta
new file mode 100644
index 00000000..65a23022
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen37.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 31c9236435db09a46b1830c0bc85b750
+timeCreated: 1462790390
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen38.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen38.jpg
new file mode 100644
index 00000000..9c31af17
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen38.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen38.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen38.jpg.meta
new file mode 100644
index 00000000..70fccfc6
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen38.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 91934fe1864cd75439ad27e4bdda02e2
+timeCreated: 1462790399
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen39.jpg b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen39.jpg
new file mode 100644
index 00000000..76b9b998
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen39.jpg differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen39.jpg.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen39.jpg.meta
new file mode 100644
index 00000000..ef1b64b4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScreenSequence/Screen39.jpg.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 9f8052982c021e5469e1f532f9b944ab
+timeCreated: 1462790401
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScrollingText.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScrollingText.png
new file mode 100644
index 00000000..598ec057
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScrollingText.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScrollingText.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScrollingText.png.meta
new file mode 100644
index 00000000..55e1fff8
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/ScrollingText.png.meta
@@ -0,0 +1,563 @@
+fileFormatVersion: 2
+guid: aadd163a1083b694cb476d64aa66c8a2
+timeCreated: 1473342866
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName:
+ 21300000: ScrollingText_0
+ 21300002: ScrollingText_1
+ 21300004: ScrollingText_2
+ 21300006: ScrollingText_3
+ 21300008: ScrollingText_4
+ 21300010: ScrollingText_5
+ 21300012: ScrollingText_6
+ 21300014: ScrollingText_7
+ 21300016: ScrollingText_8
+ 21300018: ScrollingText_9
+ 21300020: ScrollingText_10
+ 21300022: ScrollingText_11
+ 21300024: ScrollingText_12
+ 21300026: ScrollingText_13
+ 21300028: ScrollingText_14
+ 21300030: ScrollingText_15
+ 21300032: ScrollingText_16
+ 21300034: ScrollingText_17
+ 21300036: ScrollingText_18
+ 21300038: ScrollingText_19
+ 21300040: ScrollingText_20
+ 21300042: ScrollingText_21
+ 21300044: ScrollingText_22
+ 21300046: ScrollingText_23
+ 21300048: ScrollingText_24
+ 21300050: ScrollingText_25
+ 21300052: ScrollingText_26
+ 21300054: ScrollingText_27
+ 21300056: ScrollingText_28
+ 21300058: ScrollingText_29
+ 21300060: ScrollingText_30
+ 21300062: ScrollingText_31
+ 21300064: ScrollingText_32
+ 21300066: ScrollingText_33
+ 21300068: ScrollingText_34
+ 21300070: ScrollingText_35
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 2
+ spriteExtrude: 1
+ spriteMeshType: 0
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 5
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites:
+ - serializedVersion: 2
+ name: ScrollingText_0
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 1878.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_1
+ rect:
+ serializedVersion: 2
+ x: 682
+ y: 1878.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_2
+ rect:
+ serializedVersion: 2
+ x: 1364
+ y: 1878.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_3
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 1708.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_4
+ rect:
+ serializedVersion: 2
+ x: 682
+ y: 1708.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_5
+ rect:
+ serializedVersion: 2
+ x: 1364
+ y: 1708.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_6
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 1538.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_7
+ rect:
+ serializedVersion: 2
+ x: 682
+ y: 1538.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_8
+ rect:
+ serializedVersion: 2
+ x: 1364
+ y: 1538.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_9
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 1368.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_10
+ rect:
+ serializedVersion: 2
+ x: 682
+ y: 1368.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_11
+ rect:
+ serializedVersion: 2
+ x: 1364
+ y: 1368.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_12
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 1198.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_13
+ rect:
+ serializedVersion: 2
+ x: 682
+ y: 1198.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_14
+ rect:
+ serializedVersion: 2
+ x: 1364
+ y: 1198.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_15
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 1028.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_16
+ rect:
+ serializedVersion: 2
+ x: 682
+ y: 1028.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_17
+ rect:
+ serializedVersion: 2
+ x: 1364
+ y: 1028.3334
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_18
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 858.3333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_19
+ rect:
+ serializedVersion: 2
+ x: 682
+ y: 858.3333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_20
+ rect:
+ serializedVersion: 2
+ x: 1364
+ y: 858.3333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_21
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 688.3333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_22
+ rect:
+ serializedVersion: 2
+ x: 682
+ y: 688.3333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_23
+ rect:
+ serializedVersion: 2
+ x: 1364
+ y: 688.3333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_24
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 518.3333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_25
+ rect:
+ serializedVersion: 2
+ x: 682
+ y: 518.3333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_26
+ rect:
+ serializedVersion: 2
+ x: 1364
+ y: 518.3333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_27
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 348.3333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_28
+ rect:
+ serializedVersion: 2
+ x: 682
+ y: 348.3333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_29
+ rect:
+ serializedVersion: 2
+ x: 1364
+ y: 348.3333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_30
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 178.33333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_31
+ rect:
+ serializedVersion: 2
+ x: 682
+ y: 178.33333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_32
+ rect:
+ serializedVersion: 2
+ x: 1364
+ y: 178.33333
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_33
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 8.333328
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_34
+ rect:
+ serializedVersion: 2
+ x: 682
+ y: 8.333328
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ - serializedVersion: 2
+ name: ScrollingText_35
+ rect:
+ serializedVersion: 2
+ x: 1364
+ y: 8.333328
+ width: 681.6667
+ height: 169.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline: []
+ tessellationDetail: 0
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/SecurityRoomCompanyLogo.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/SecurityRoomCompanyLogo.png
new file mode 100644
index 00000000..9d7bfc49
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/SecurityRoomCompanyLogo.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/SecurityRoomCompanyLogo.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/SecurityRoomCompanyLogo.png.meta
new file mode 100644
index 00000000..fd3df481
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/SecurityRoomCompanyLogo.png.meta
@@ -0,0 +1,59 @@
+fileFormatVersion: 2
+guid: 841e339935f4fdc4391f65004a314c0d
+timeCreated: 1473417024
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 0
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ spriteTessellationDetail: -1
+ textureType: 5
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/SleepZ.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/SleepZ.png
new file mode 100644
index 00000000..278c0747
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/SleepZ.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/SleepZ.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/SleepZ.png.meta
new file mode 100644
index 00000000..a13daf93
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/SleepZ.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: bfb6b02ca2aca0d49bb917257920334b
+timeCreated: 1462359060
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/UIButton.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/UIButton.png
new file mode 100644
index 00000000..bdb9682b
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/UIButton.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/UIButton.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/UIButton.png.meta
new file mode 100644
index 00000000..d337ac9f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Sprites/UIButton.png.meta
@@ -0,0 +1,223 @@
+fileFormatVersion: 2
+guid: 325d5bf5e3989f144b52e256abd1ac29
+timeCreated: 1461940856
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName:
+ 21300000: UIButton_0
+ 21300002: UIButton_1
+ 21300004: UIButton_2
+ 21300006: UIButton_3
+ 21300008: UIButton_4
+ 21300010: UIButton_5
+ 21300012: UIButton_6
+ 21300014: UIButton_7
+ 21300016: UIButton_8
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 1
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 1
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 50, y: 50, z: 50, w: 50}
+ spritePixelsToUnits: 300
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites:
+ - name: UIButton_0
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 341.3333
+ width: 170.66667
+ height: 170.66669
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: -59.5, y: 85.83331}
+ - {x: -68.5, y: 85.83331}
+ - {x: -75.5, y: 80.83331}
+ - {x: -82.5, y: 73.83331}
+ - {x: -85.5, y: 65.83331}
+ - {x: -85.5, y: 56.833313}
+ - {x: -84.5, y: 55.833313}
+ - {x: -84.5, y: -85.16669}
+ - {x: 85.5, y: -85.16669}
+ - {x: 85.5, y: 84.83331}
+ - {x: -59.5, y: 84.83331}
+ - name: UIButton_1
+ rect:
+ serializedVersion: 2
+ x: 170
+ y: 341.3333
+ width: 170.66669
+ height: 170.66669
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: -85.5, y: -85.16669}
+ - {x: 85.5, y: -85.16669}
+ - {x: 85.5, y: 84.83331}
+ - {x: -85.5, y: 84.83331}
+ - name: UIButton_2
+ rect:
+ serializedVersion: 2
+ x: 340
+ y: 341.3333
+ width: 170.66667
+ height: 170.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: 80.5, y: 74.83331}
+ - {x: 74.5, y: 81.83331}
+ - {x: 71.5, y: 84.83331}
+ - {x: 67.5, y: 84.83331}
+ - {x: 66.5, y: 85.83331}
+ - {x: 57.5, y: 85.83331}
+ - {x: 56.5, y: 84.83331}
+ - {x: -85.5, y: 84.83331}
+ - {x: -85.5, y: -85.16669}
+ - {x: 85.5, y: -85.16669}
+ - {x: 85.5, y: 62.833313}
+ - {x: 80.5, y: 72.83331}
+ - name: UIButton_3
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 171.33333
+ width: 170.66667
+ height: 170.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: -84.5, y: 85.83333}
+ - {x: -84.5, y: -85.16667}
+ - {x: 85.5, y: -85.16667}
+ - {x: 85.5, y: 85.83333}
+ - name: UIButton_4
+ rect:
+ serializedVersion: 2
+ x: 170
+ y: 171.33333
+ width: 170.66667
+ height: 170.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: -85.5, y: 85.83333}
+ - {x: -85.5, y: -85.16667}
+ - {x: 85.5, y: -85.16667}
+ - {x: 85.5, y: 85.83333}
+ - name: UIButton_5
+ rect:
+ serializedVersion: 2
+ x: 340
+ y: 171.33333
+ width: 170.66667
+ height: 170.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: -85.5, y: 85.83333}
+ - {x: -85.5, y: -85.16667}
+ - {x: 85.5, y: -85.16667}
+ - {x: 85.5, y: 85.83333}
+ - name: UIButton_6
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 1.3333282
+ width: 170.66667
+ height: 170.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: -79.5, y: 85.83333}
+ - {x: -79.5, y: -71.16667}
+ - {x: -75.5, y: -77.16667}
+ - {x: -73.5, y: -77.16667}
+ - {x: -70.5, y: -80.16667}
+ - {x: 85.5, y: -80.16667}
+ - {x: 85.5, y: 85.83333}
+ - name: UIButton_7
+ rect:
+ serializedVersion: 2
+ x: 170
+ y: 1.3333282
+ width: 170.66667
+ height: 170.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: -85.5, y: 85.83333}
+ - {x: -85.5, y: -85.16667}
+ - {x: 85.5, y: -85.16667}
+ - {x: 85.5, y: 85.83333}
+ - name: UIButton_8
+ rect:
+ serializedVersion: 2
+ x: 340
+ y: 1.3333282
+ width: 170.66667
+ height: 170.66667
+ alignment: 0
+ pivot: {x: 0.5, y: 0.5}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: 74.5, y: -80.16667}
+ - {x: 80.5, y: -75.16667}
+ - {x: 85.5, y: -64.16667}
+ - {x: 85.5, y: 85.83333}
+ - {x: -85.5, y: 85.83333}
+ - {x: -85.5, y: -85.16667}
+ - {x: 65.5, y: -85.16667}
+ - {x: 72.5, y: -82.16667}
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures.meta
new file mode 100644
index 00000000..9cf04ed1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 90cb3ae3ce9ed9a45a216342650aa885
+folderAsset: yes
+timeCreated: 1456400122
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters.meta
new file mode 100644
index 00000000..5fed38c2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: f65e77ae734ed4b4a97ce2d12a6333f6
+folderAsset: yes
+timeCreated: 1460459250
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/BirdAlbedo.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/BirdAlbedo.png
new file mode 100644
index 00000000..f1b91f6e
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/BirdAlbedo.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/BirdAlbedo.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/BirdAlbedo.png.meta
new file mode 100644
index 00000000..3e79b765
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/BirdAlbedo.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: d4c5bab927c0d88449ff03ca4dc38a2e
+timeCreated: 1460627495
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CoffeeBotAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CoffeeBotAlbedo.tif
new file mode 100644
index 00000000..e22b012c
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CoffeeBotAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CoffeeBotAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CoffeeBotAlbedo.tif.meta
new file mode 100644
index 00000000..53349c86
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CoffeeBotAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: dd7ba3f30ee1ce34e8c5fa2e72d068ad
+timeCreated: 1460459027
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CoffeeBotCoverAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CoffeeBotCoverAlbedo.tif
new file mode 100644
index 00000000..3aad61b3
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CoffeeBotCoverAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CoffeeBotCoverAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CoffeeBotCoverAlbedo.tif.meta
new file mode 100644
index 00000000..ba6892f4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CoffeeBotCoverAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: bd8bf31a938eaa24e87e1f2dd27f0ebd
+timeCreated: 1460459027
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CustomerAlbedo.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CustomerAlbedo.png
new file mode 100644
index 00000000..87283e77
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CustomerAlbedo.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CustomerAlbedo.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CustomerAlbedo.png.meta
new file mode 100644
index 00000000..30fdd82a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/CustomerAlbedo.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: ed3ecf4e3f4511149b63bd68105d0bba
+timeCreated: 1461759616
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/FruitVendorAlbedo.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/FruitVendorAlbedo.png
new file mode 100644
index 00000000..b6edf55c
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/FruitVendorAlbedo.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/FruitVendorAlbedo.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/FruitVendorAlbedo.png.meta
new file mode 100644
index 00000000..64eed97e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/FruitVendorAlbedo.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: bcd04a113a550f346b7e408c712babcb
+timeCreated: 1461577165
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/GuardAlbedo.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/GuardAlbedo.png
new file mode 100644
index 00000000..014689cc
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/GuardAlbedo.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/GuardAlbedo.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/GuardAlbedo.png.meta
new file mode 100644
index 00000000..e62eb633
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/GuardAlbedo.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: d636c4f5a57f26746a6b131f4ae5c090
+timeCreated: 1461576963
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/PlayerAlbedo.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/PlayerAlbedo.png
new file mode 100644
index 00000000..debd6317
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/PlayerAlbedo.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/PlayerAlbedo.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/PlayerAlbedo.png.meta
new file mode 100644
index 00000000..1ef676fe
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/PlayerAlbedo.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 012b97771b3cba84a8be8c328727cc94
+timeCreated: 1459506270
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: 0
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/SecondHandSalesmanAlbedo.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/SecondHandSalesmanAlbedo.png
new file mode 100644
index 00000000..f95ebb1c
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/SecondHandSalesmanAlbedo.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/SecondHandSalesmanAlbedo.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/SecondHandSalesmanAlbedo.png.meta
new file mode 100644
index 00000000..d29dc823
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/SecondHandSalesmanAlbedo.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: b7151f1a0a5d38342944f011ee0e636b
+timeCreated: 1461576962
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/SharkmanAlbedo.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/SharkmanAlbedo.png
new file mode 100644
index 00000000..0a8bc824
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/SharkmanAlbedo.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/SharkmanAlbedo.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/SharkmanAlbedo.png.meta
new file mode 100644
index 00000000..6d765e09
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Characters/SharkmanAlbedo.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 7edd70f880d8087498ef3d1406a77744
+timeCreated: 1461576706
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/CoffeCupAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/CoffeCupAlbedo.tif
new file mode 100644
index 00000000..23c395c7
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/CoffeCupAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/CoffeCupAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/CoffeCupAlbedo.tif.meta
new file mode 100644
index 00000000..ea1baf49
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/CoffeCupAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: d5f9621718188bf47af2055248c22f1c
+timeCreated: 1460127062
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/CoinAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/CoinAlbedo.tif
new file mode 100644
index 00000000..375c00a4
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/CoinAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/CoinAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/CoinAlbedo.tif.meta
new file mode 100644
index 00000000..e9f2fe8b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/CoinAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: dff03d3ff601eed4fb412945333a30b0
+timeCreated: 1460127062
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/DisguiseAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/DisguiseAlbedo.tif
new file mode 100644
index 00000000..7509bad0
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/DisguiseAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/DisguiseAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/DisguiseAlbedo.tif.meta
new file mode 100644
index 00000000..8c7cfc71
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/DisguiseAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: e2854c6a2eccc6945803441e7f7ab239
+timeCreated: 1460125453
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment.meta
new file mode 100644
index 00000000..331ab559
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 751f1da0b6645d74b91b8ceabab4b463
+folderAsset: yes
+timeCreated: 1459868371
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market.meta
new file mode 100644
index 00000000..d8967d91
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 0416c7523e67a5f4a9ddba611cb2d2f2
+folderAsset: yes
+timeCreated: 1459868371
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/Fly.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/Fly.png
new file mode 100644
index 00000000..433e7de9
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/Fly.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/Fly.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/Fly.png.meta
new file mode 100644
index 00000000..53f19ce2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/Fly.png.meta
@@ -0,0 +1,118 @@
+fileFormatVersion: 2
+guid: 4944c65a03c70b54a9c2b020aaaae283
+timeCreated: 1461850349
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName:
+ 21300000: Fly_0
+ 21300002: Fly_1
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 2
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites:
+ - name: Fly_0
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 128
+ height: 128
+ alignment: 0
+ pivot: {x: 0, y: 0}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: -32, y: -38}
+ - {x: -36, y: -38}
+ - {x: -40, y: -40}
+ - {x: -40, y: -45}
+ - {x: -38, y: -49}
+ - {x: -35, y: -52}
+ - {x: -32, y: -53}
+ - {x: -29, y: -53}
+ - {x: -28, y: -51}
+ - {x: -28, y: -43}
+ - {x: -31, y: -39}
+ - - {x: -45, y: 64}
+ - {x: -58, y: 33}
+ - {x: -58, y: 5}
+ - {x: -30, y: -48}
+ - {x: -24, y: -51}
+ - {x: 29, y: -51}
+ - {x: 58, y: -1}
+ - {x: 58, y: 41}
+ - {x: 44, y: 64}
+ - name: Fly_1
+ rect:
+ serializedVersion: 2
+ x: 128
+ y: 0
+ width: 128
+ height: 128
+ alignment: 0
+ pivot: {x: 0, y: 0}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: -32, y: -38}
+ - {x: -36, y: -38}
+ - {x: -40, y: -40}
+ - {x: -40, y: -45}
+ - {x: -38, y: -49}
+ - {x: -35, y: -52}
+ - {x: -32, y: -53}
+ - {x: -29, y: -53}
+ - {x: -28, y: -51}
+ - {x: -28, y: -43}
+ - {x: -31, y: -39}
+ - - {x: -64, y: 49}
+ - {x: -64, y: 3}
+ - {x: -20, y: -51}
+ - {x: 15, y: -51}
+ - {x: 63, y: 4}
+ - {x: 63, y: 49}
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketAirconAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketAirconAlbedo.tif
new file mode 100644
index 00000000..15eb7f1d
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketAirconAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketAirconAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketAirconAlbedo.tif.meta
new file mode 100644
index 00000000..411a6e25
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketAirconAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 4f6289a78d017ac4b932e0d8ce9e30d5
+timeCreated: 1459868371
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketAirconDustyAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketAirconDustyAlbedo.tif
new file mode 100644
index 00000000..0f518594
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketAirconDustyAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketAirconDustyAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketAirconDustyAlbedo.tif.meta
new file mode 100644
index 00000000..03a39ddf
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketAirconDustyAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: e0a211eebe68147499136790d8011a29
+timeCreated: 1461687034
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketBollardAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketBollardAlbedo.tif
new file mode 100644
index 00000000..94dc1002
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketBollardAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketBollardAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketBollardAlbedo.tif.meta
new file mode 100644
index 00000000..74f40a79
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketBollardAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 6cd25c186583cb645b60527f7d53e7c9
+timeCreated: 1459868371
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketChairsAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketChairsAlbedo.tif
new file mode 100644
index 00000000..4ab8dd0a
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketChairsAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketChairsAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketChairsAlbedo.tif.meta
new file mode 100644
index 00000000..4637e8e4
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketChairsAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 0eda8cae9332c4a4481756329bf839cf
+timeCreated: 1459868371
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketCoffeeSignAlbedo.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketCoffeeSignAlbedo.png
new file mode 100644
index 00000000..5d66f0f9
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketCoffeeSignAlbedo.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketCoffeeSignAlbedo.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketCoffeeSignAlbedo.png.meta
new file mode 100644
index 00000000..81abfc53
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketCoffeeSignAlbedo.png.meta
@@ -0,0 +1,121 @@
+fileFormatVersion: 2
+guid: ee1701bd3676de14c86a6f7cedc08177
+timeCreated: 1461842000
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName:
+ 21300000: Market_CoffeeSign_Diffuse_0
+ 21300002: Market_CoffeeSign_Diffuse_1
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 2
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites:
+ - name: Market_CoffeeSign_Diffuse_0
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 256
+ width: 512
+ height: 256
+ alignment: 7
+ pivot: {x: 0.5, y: 0}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: 182, y: 32}
+ - {x: 182, y: 26}
+ - {x: 183, y: 0}
+ - {x: 197, y: 0}
+ - {x: 197, y: 50}
+ - {x: 253, y: 50}
+ - {x: 255, y: 52}
+ - {x: 255, y: 58}
+ - {x: 249, y: 77}
+ - {x: 255, y: 84}
+ - {x: 255, y: 171}
+ - {x: -221, y: 171}
+ - {x: -249, y: 120}
+ - {x: -249, y: 93}
+ - {x: -223, y: 52}
+ - {x: -198, y: 0}
+ - {x: -182, y: 0}
+ - {x: -92, y: 53}
+ - {x: -37, y: 45}
+ - {x: 183, y: 48}
+ - name: Market_CoffeeSign_Diffuse_1
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 512
+ height: 256
+ alignment: 7
+ pivot: {x: 0.5, y: 0}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: 182, y: 32}
+ - {x: 182, y: 26}
+ - {x: 183, y: 0}
+ - {x: 197, y: 0}
+ - {x: 197, y: 50}
+ - {x: 253, y: 50}
+ - {x: 255, y: 52}
+ - {x: 255, y: 58}
+ - {x: 249, y: 77}
+ - {x: 255, y: 84}
+ - {x: 255, y: 171}
+ - {x: -221, y: 171}
+ - {x: -249, y: 120}
+ - {x: -249, y: 93}
+ - {x: -223, y: 52}
+ - {x: -198, y: 0}
+ - {x: -182, y: 0}
+ - {x: -92, y: 53}
+ - {x: -37, y: 45}
+ - {x: 183, y: 48}
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketCrateAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketCrateAlbedo.tif
new file mode 100644
index 00000000..45a5a2bb
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketCrateAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketCrateAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketCrateAlbedo.tif.meta
new file mode 100644
index 00000000..995c468b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketCrateAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: df0b7963013e23a418521a920a1f3fd7
+timeCreated: 1459868372
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketDoorwayAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketDoorwayAlbedo.tif
new file mode 100644
index 00000000..6389edbc
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketDoorwayAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketDoorwayAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketDoorwayAlbedo.tif.meta
new file mode 100644
index 00000000..afef3923
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketDoorwayAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: b5d38c66b85346749ab4b022b7ce9598
+timeCreated: 1459868372
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketDustBinAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketDustBinAlbedo.tif
new file mode 100644
index 00000000..433696a6
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketDustBinAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketDustBinAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketDustBinAlbedo.tif.meta
new file mode 100644
index 00000000..7cc30c6b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketDustBinAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 0653821625ae27441ad6b9ab8e80ee9c
+timeCreated: 1459869241
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFishAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFishAlbedo.tif
new file mode 100644
index 00000000..a1ef9269
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFishAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFishAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFishAlbedo.tif.meta
new file mode 100644
index 00000000..b08a9f80
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFishAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: ac1f9c4e38e1d0140916af56683a8310
+timeCreated: 1460125939
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFishSignNeon.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFishSignNeon.png
new file mode 100644
index 00000000..6065a5e3
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFishSignNeon.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFishSignNeon.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFishSignNeon.png.meta
new file mode 100644
index 00000000..7b1abf1f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFishSignNeon.png.meta
@@ -0,0 +1,226 @@
+fileFormatVersion: 2
+guid: 1f7e69f695c34aa4eb96e9309660d3bb
+timeCreated: 1461752935
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName:
+ 21300000: Market_FishSignNeon_0
+ 21300002: Market_FishSignNeon_1
+ 21300004: Market_FishSignNeon_2
+ 21300006: Market_FishSignNeon_3
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: 16
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 0
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 2
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 1
+ textureType: 8
+ buildTargetSettings: []
+ spriteSheet:
+ sprites:
+ - name: Market_FishSignNeon_0
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 768
+ width: 512
+ height: 256
+ alignment: 0
+ pivot: {x: 0, y: 0}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: 113, y: -64}
+ - {x: 192, y: -116}
+ - {x: 225, y: -103}
+ - {x: 225, y: -68}
+ - {x: 205, y: -14}
+ - {x: 225, y: 32}
+ - {x: 225, y: 39}
+ - {x: 223, y: 63}
+ - {x: 187, y: 75}
+ - {x: 131, y: 40}
+ - {x: 84, y: 44}
+ - {x: 53, y: 90}
+ - {x: -28, y: 122}
+ - {x: -54, y: 120}
+ - {x: -154, y: 53}
+ - {x: -145, y: 75}
+ - {x: -175, y: 123}
+ - {x: -217, y: 123}
+ - {x: -221, y: 115}
+ - {x: -221, y: -23}
+ - {x: -205, y: -50}
+ - {x: -145, y: -82}
+ - {x: -54, y: -128}
+ - {x: -23, y: -128}
+ - {x: -17, y: -123}
+ - {x: 41, y: -108}
+ - {x: 84, y: -90}
+ - name: Market_FishSignNeon_1
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 512
+ width: 512
+ height: 256
+ alignment: 0
+ pivot: {x: 0, y: 0}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: 192, y: -116}
+ - {x: 225, y: -103}
+ - {x: 225, y: -68}
+ - {x: 205, y: -14}
+ - {x: 225, y: 32}
+ - {x: 225, y: 39}
+ - {x: 223, y: 63}
+ - {x: 187, y: 75}
+ - {x: 131, y: 40}
+ - {x: 84, y: 44}
+ - {x: 53, y: 90}
+ - {x: -28, y: 122}
+ - {x: -54, y: 120}
+ - {x: -106, y: 74}
+ - {x: -139, y: 59}
+ - {x: -156, y: 64}
+ - {x: -169, y: 117}
+ - {x: -187, y: 123}
+ - {x: -217, y: 123}
+ - {x: -221, y: 114}
+ - {x: -221, y: 89}
+ - {x: -209, y: 77}
+ - {x: -219, y: 45}
+ - {x: -221, y: 14}
+ - {x: -221, y: -18}
+ - {x: -215, y: -32}
+ - {x: -146, y: -84}
+ - {x: -65, y: -128}
+ - {x: -14, y: -128}
+ - {x: 41, y: -108}
+ - {x: 84, y: -90}
+ - {x: 113, y: -64}
+ - name: Market_FishSignNeon_2
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 256
+ width: 512
+ height: 256
+ alignment: 0
+ pivot: {x: 0, y: 0}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: 113, y: -64}
+ - {x: 192, y: -116}
+ - {x: 225, y: -103}
+ - {x: 225, y: -68}
+ - {x: 205, y: -14}
+ - {x: 225, y: 32}
+ - {x: 225, y: 39}
+ - {x: 223, y: 63}
+ - {x: 187, y: 75}
+ - {x: 131, y: 40}
+ - {x: 84, y: 44}
+ - {x: 53, y: 90}
+ - {x: -28, y: 122}
+ - {x: -54, y: 120}
+ - {x: -106, y: 74}
+ - {x: -158, y: 75}
+ - {x: -169, y: 109}
+ - {x: -184, y: 123}
+ - {x: -212, y: 123}
+ - {x: -221, y: 114}
+ - {x: -221, y: 88}
+ - {x: -216, y: 67}
+ - {x: -221, y: 28}
+ - {x: -221, y: -15}
+ - {x: -215, y: -33}
+ - {x: -204, y: -48}
+ - {x: -64, y: -128}
+ - {x: -23, y: -128}
+ - {x: -17, y: -123}
+ - {x: 41, y: -108}
+ - {x: 84, y: -90}
+ - name: Market_FishSignNeon_3
+ rect:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 512
+ height: 256
+ alignment: 0
+ pivot: {x: 0, y: 0}
+ border: {x: 0, y: 0, z: 0, w: 0}
+ outline:
+ - - {x: 113, y: -64}
+ - {x: 166, y: -99}
+ - {x: 192, y: -116}
+ - {x: 225, y: -103}
+ - {x: 225, y: -68}
+ - {x: 205, y: -14}
+ - {x: 225, y: 32}
+ - {x: 225, y: 39}
+ - {x: 223, y: 63}
+ - {x: 187, y: 75}
+ - {x: 131, y: 40}
+ - {x: 18, y: 105}
+ - {x: -28, y: 120}
+ - {x: -54, y: 120}
+ - {x: -106, y: 74}
+ - {x: -159, y: 56}
+ - {x: -163, y: 79}
+ - {x: -176, y: 117}
+ - {x: -188, y: 126}
+ - {x: -207, y: 126}
+ - {x: -214, y: 124}
+ - {x: -222, y: 116}
+ - {x: -222, y: 34}
+ - {x: -219, y: -23}
+ - {x: -201, y: -44}
+ - {x: -145, y: -82}
+ - {x: -54, y: -128}
+ - {x: -22, y: -128}
+ - {x: 1, y: -107}
+ - {x: 41, y: -107}
+ - {x: 80, y: -91}
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFloorMetalAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFloorMetalAlbedo.tif
new file mode 100644
index 00000000..d829d92a
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFloorMetalAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFloorMetalAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFloorMetalAlbedo.tif.meta
new file mode 100644
index 00000000..34040790
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFloorMetalAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: a600502155988e64f9d45b079ad18278
+timeCreated: 1459869241
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFloorTileSandAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFloorTileSandAlbedo.tif
new file mode 100644
index 00000000..f3c32d58
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFloorTileSandAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFloorTileSandAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFloorTileSandAlbedo.tif.meta
new file mode 100644
index 00000000..7ce949e0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFloorTileSandAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 90d75d244446a9644888b0a0305f81f8
+timeCreated: 1459868371
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFoodTraysAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFoodTraysAlbedo.tif
new file mode 100644
index 00000000..4be79f03
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFoodTraysAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFoodTraysAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFoodTraysAlbedo.tif.meta
new file mode 100644
index 00000000..3b5266f3
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFoodTraysAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 869476bbc9b93a7479c092965001b301
+timeCreated: 1459868371
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFruitAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFruitAlbedo.tif
new file mode 100644
index 00000000..1ad208b6
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFruitAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFruitAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFruitAlbedo.tif.meta
new file mode 100644
index 00000000..f9b9b995
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketFruitAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 18f57289380b2874cb4e97463670fd40
+timeCreated: 1460126024
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketMosaicTilesAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketMosaicTilesAlbedo.tif
new file mode 100644
index 00000000..9d7e0789
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketMosaicTilesAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketMosaicTilesAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketMosaicTilesAlbedo.tif.meta
new file mode 100644
index 00000000..46a61e86
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketMosaicTilesAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 0cdf82aca9d03a94a9bf95f6aa6848eb
+timeCreated: 1459868371
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketOldTechAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketOldTechAlbedo.tif
new file mode 100644
index 00000000..11a5599a
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketOldTechAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketOldTechAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketOldTechAlbedo.tif.meta
new file mode 100644
index 00000000..d4da0196
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketOldTechAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 7bfe29dd2e7b2994cbb29d1435e09dd8
+timeCreated: 1462441721
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketPipesAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketPipesAlbedo.tif
new file mode 100644
index 00000000..dc1270bb
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketPipesAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketPipesAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketPipesAlbedo.tif.meta
new file mode 100644
index 00000000..9f190a7c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketPipesAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 834fbfcfbfe02784a80c226f7becf3d9
+timeCreated: 1459868371
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketPotsAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketPotsAlbedo.tif
new file mode 100644
index 00000000..ce60e937
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketPotsAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketPotsAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketPotsAlbedo.tif.meta
new file mode 100644
index 00000000..9d260cfd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketPotsAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: e23a337c1363258479422f2d385dbff2
+timeCreated: 1459868372
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketProstheticsAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketProstheticsAlbedo.tif
new file mode 100644
index 00000000..55eba49f
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketProstheticsAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketProstheticsAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketProstheticsAlbedo.tif.meta
new file mode 100644
index 00000000..b0424bdf
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketProstheticsAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 65b573131294c994e863d895774631b7
+timeCreated: 1461167498
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSecurityDoorAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSecurityDoorAlbedo.tif
new file mode 100644
index 00000000..e2e589a8
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSecurityDoorAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSecurityDoorAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSecurityDoorAlbedo.tif.meta
new file mode 100644
index 00000000..2e0c3ddd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSecurityDoorAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 716f870002e41434e9d0c706f84bfb42
+timeCreated: 1460125883
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketShadeClothAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketShadeClothAlbedo.tif
new file mode 100644
index 00000000..27c67c2f
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketShadeClothAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketShadeClothAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketShadeClothAlbedo.tif.meta
new file mode 100644
index 00000000..10c61500
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketShadeClothAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 0d5bb08b295260746ad46af1d41ca9b5
+timeCreated: 1459868371
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSignsAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSignsAlbedo.tif
new file mode 100644
index 00000000..d482bf01
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSignsAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSignsAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSignsAlbedo.tif.meta
new file mode 100644
index 00000000..fc6e9414
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSignsAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 6446c889f3ca93e49808b98b30f164ec
+timeCreated: 1461683904
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSlerpAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSlerpAlbedo.tif
new file mode 100644
index 00000000..4ef64ca4
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSlerpAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSlerpAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSlerpAlbedo.tif.meta
new file mode 100644
index 00000000..c3e23349
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSlerpAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 5f57ab1f61420474a94be04b29ad91cf
+timeCreated: 1462549835
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSmallTableAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSmallTableAlbedo.tif
new file mode 100644
index 00000000..4cccffe7
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSmallTableAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSmallTableAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSmallTableAlbedo.tif.meta
new file mode 100644
index 00000000..2bd0ec4e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSmallTableAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: a6511214d0d3cb54f801712341a6289c
+timeCreated: 1460126245
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSpiceBagsAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSpiceBagsAlbedo.tif
new file mode 100644
index 00000000..a5ade3b2
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSpiceBagsAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSpiceBagsAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSpiceBagsAlbedo.tif.meta
new file mode 100644
index 00000000..c68dfb8b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSpiceBagsAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: aea7c7080ade8424abc85cea833868a9
+timeCreated: 1459868372
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSpiceBagsSpec.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSpiceBagsSpec.tif
new file mode 100644
index 00000000..167ee548
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSpiceBagsSpec.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSpiceBagsSpec.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSpiceBagsSpec.tif.meta
new file mode 100644
index 00000000..8c8caf15
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketSpiceBagsSpec.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 284ae6c3cc4874a40a64934678cff03f
+timeCreated: 1460459521
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketStallsAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketStallsAlbedo.tif
new file mode 100644
index 00000000..3025722f
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketStallsAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketStallsAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketStallsAlbedo.tif.meta
new file mode 100644
index 00000000..90d2b63b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketStallsAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 2b20a8f7be0b0d64f9f4fa63b1365207
+timeCreated: 1459868371
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketVendingMachineAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketVendingMachineAlbedo.tif
new file mode 100644
index 00000000..2907264d
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketVendingMachineAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketVendingMachineAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketVendingMachineAlbedo.tif.meta
new file mode 100644
index 00000000..0a945c00
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketVendingMachineAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: c8bfb299e0026f044bcdc2d7677e8d6f
+timeCreated: 1460127062
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketVendingMachineGlassAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketVendingMachineGlassAlbedo.tif
new file mode 100644
index 00000000..8905dced
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketVendingMachineGlassAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketVendingMachineGlassAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketVendingMachineGlassAlbedo.tif.meta
new file mode 100644
index 00000000..690ba8a5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketVendingMachineGlassAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 6da39cb2fe8f79b40ac48cb35d42deff
+timeCreated: 1461770063
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketWallMetalAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketWallMetalAlbedo.tif
new file mode 100644
index 00000000..d87360d3
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketWallMetalAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketWallMetalAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketWallMetalAlbedo.tif.meta
new file mode 100644
index 00000000..64f8f704
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketWallMetalAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: a3a0708edf5124f43b8760cd541c0b89
+timeCreated: 1459868372
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketWallStoneAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketWallStoneAlbedo.tif
new file mode 100644
index 00000000..94abdfb0
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketWallStoneAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketWallStoneAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketWallStoneAlbedo.tif.meta
new file mode 100644
index 00000000..ac438d4b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/MarketWallStoneAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 9297a9fd8cd107445bb53365671f2576
+timeCreated: 1459868372
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/marketPriceTagsAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/marketPriceTagsAlbedo.tif
new file mode 100644
index 00000000..efb5629d
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/marketPriceTagsAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/marketPriceTagsAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/marketPriceTagsAlbedo.tif.meta
new file mode 100644
index 00000000..a8172a48
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/Market/marketPriceTagsAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: ec108ead4d2d71642a7f3bc5981f9726
+timeCreated: 1462451792
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom.meta
new file mode 100644
index 00000000..a08582f7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 23e2fead3dbab8d4187e807f71d5cbc9
+folderAsset: yes
+timeCreated: 1460459521
+licenseType: Store
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/FloorLight.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/FloorLight.tif
new file mode 100644
index 00000000..2e1d4260
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/FloorLight.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/FloorLight.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/FloorLight.tif.meta
new file mode 100644
index 00000000..22c57cc1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/FloorLight.tif.meta
@@ -0,0 +1,59 @@
+fileFormatVersion: 2
+guid: d0063a7e961263b4d8c43f7dc163ef52
+timeCreated: 1470131738
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/HologGramLight.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/HologGramLight.tif
new file mode 100644
index 00000000..131b2f52
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/HologGramLight.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/HologGramLight.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/HologGramLight.tif.meta
new file mode 100644
index 00000000..1b2d06b0
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/HologGramLight.tif.meta
@@ -0,0 +1,59 @@
+fileFormatVersion: 2
+guid: 5177705080969544fae59c61774ac145
+timeCreated: 1469784415
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/HologGramLight02.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/HologGramLight02.tif
new file mode 100644
index 00000000..d45cf83d
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/HologGramLight02.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/HologGramLight02.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/HologGramLight02.tif.meta
new file mode 100644
index 00000000..0569ea62
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/HologGramLight02.tif.meta
@@ -0,0 +1,59 @@
+fileFormatVersion: 2
+guid: 3ff46e219d5799141b9219e49e43e79f
+timeCreated: 1470131291
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCameraAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCameraAlbedo.tif
new file mode 100644
index 00000000..e964e559
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCameraAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCameraAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCameraAlbedo.tif.meta
new file mode 100644
index 00000000..33d4185a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCameraAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 8bb99954e5abb1b41846a2b1eeef7504
+timeCreated: 1461677559
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCarpetAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCarpetAlbedo.tif
new file mode 100644
index 00000000..41377300
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCarpetAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCarpetAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCarpetAlbedo.tif.meta
new file mode 100644
index 00000000..ae99dba7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCarpetAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 8e6beecbd339c3e479bd3b2964cdc9df
+timeCreated: 1460712776
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCautionSignAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCautionSignAlbedo.tif
new file mode 100644
index 00000000..5d2c39fa
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCautionSignAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCautionSignAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCautionSignAlbedo.tif.meta
new file mode 100644
index 00000000..317dd0b2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCautionSignAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 9cfe860617d31b14aae53c5ab61a483c
+timeCreated: 1460728897
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomChairAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomChairAlbedo.tif
new file mode 100644
index 00000000..210733bf
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomChairAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomChairAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomChairAlbedo.tif.meta
new file mode 100644
index 00000000..bcd57e70
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomChairAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 7c8935e6cf094d8478e9bd8a491a3aa1
+timeCreated: 1460712775
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCoffeeTableAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCoffeeTableAlbedo.tif
new file mode 100644
index 00000000..e665c13a
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCoffeeTableAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCoffeeTableAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCoffeeTableAlbedo.tif.meta
new file mode 100644
index 00000000..cce8bc46
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCoffeeTableAlbedo.tif.meta
@@ -0,0 +1,59 @@
+fileFormatVersion: 2
+guid: e21b277404a88484fb71fc7cec998681
+timeCreated: 1470046975
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCompanyLogoAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCompanyLogoAlbedo.tif
new file mode 100644
index 00000000..dd1aae69
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCompanyLogoAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCompanyLogoAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCompanyLogoAlbedo.tif.meta
new file mode 100644
index 00000000..d62689e1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomCompanyLogoAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 84ebeb3e2147ad8428f2e0aa3444a8b6
+timeCreated: 1460459521
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomDeskAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomDeskAlbedo.tif
new file mode 100644
index 00000000..f9e6aff5
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomDeskAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomDeskAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomDeskAlbedo.tif.meta
new file mode 100644
index 00000000..a65a5e01
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomDeskAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: fccad9fb63352884792dc307d75449e8
+timeCreated: 1460712776
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomFloorAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomFloorAlbedo.tif
new file mode 100644
index 00000000..90b056ab
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomFloorAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomFloorAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomFloorAlbedo.tif.meta
new file mode 100644
index 00000000..2545ac55
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomFloorAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 1bcc788d0e1020646bd703ed8ecdd29d
+timeCreated: 1460712775
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomLazerGateAlpha.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomLazerGateAlpha.png
new file mode 100644
index 00000000..63e82ccb
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomLazerGateAlpha.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomLazerGateAlpha.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomLazerGateAlpha.png.meta
new file mode 100644
index 00000000..c989a464
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomLazerGateAlpha.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 2c725f9780a0e7a46bffd946de0ed428
+timeCreated: 1460713730
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomMagazinesAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomMagazinesAlbedo.tif
new file mode 100644
index 00000000..e6a08363
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomMagazinesAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomMagazinesAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomMagazinesAlbedo.tif.meta
new file mode 100644
index 00000000..2c1e6d2b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomMagazinesAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: a126be43b2bd96142b7807d850762677
+timeCreated: 1461839935
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomPotPlantAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomPotPlantAlbedo.tif
new file mode 100644
index 00000000..83d86efe
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomPotPlantAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomPotPlantAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomPotPlantAlbedo.tif.meta
new file mode 100644
index 00000000..acb6ead5
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomPotPlantAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: f3973d4f9270bb540926dfdcd84abc61
+timeCreated: 1460712776
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomPotPlantLeafAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomPotPlantLeafAlbedo.tif
new file mode 100644
index 00000000..e32db45c
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomPotPlantLeafAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomPotPlantLeafAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomPotPlantLeafAlbedo.tif.meta
new file mode 100644
index 00000000..545905db
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomPotPlantLeafAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 8c0c59bb72ed75f4b8367be71a3d415d
+timeCreated: 1460712925
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomScreenImageAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomScreenImageAlbedo.tif
new file mode 100644
index 00000000..8db57433
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomScreenImageAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomScreenImageAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomScreenImageAlbedo.tif.meta
new file mode 100644
index 00000000..14af4282
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomScreenImageAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 6242e1bd02709584b8bdd22e2f1e512c
+timeCreated: 1460712775
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomSecurityGateAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomSecurityGateAlbedo.tif
new file mode 100644
index 00000000..a8853838
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomSecurityGateAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomSecurityGateAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomSecurityGateAlbedo.tif.meta
new file mode 100644
index 00000000..028b63ea
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomSecurityGateAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 49d25d1acab51f14d9027f34709789b7
+timeCreated: 1460712775
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomSecurityGateEmissive.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomSecurityGateEmissive.tif
new file mode 100644
index 00000000..7b855036
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomSecurityGateEmissive.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomSecurityGateEmissive.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomSecurityGateEmissive.tif.meta
new file mode 100644
index 00000000..1cb01a0f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomSecurityGateEmissive.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: a3b3a850ae7962b44a82ac0a87dc5e31
+timeCreated: 1460712776
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsAlbedo.tif
new file mode 100644
index 00000000..bb188320
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsAlbedo.tif.meta
new file mode 100644
index 00000000..e3f1517c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 00f97b060845d8e4f9563d2a4827a583
+timeCreated: 1460712775
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsGreyAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsGreyAlbedo.tif
new file mode 100644
index 00000000..71901bcf
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsGreyAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsGreyAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsGreyAlbedo.tif.meta
new file mode 100644
index 00000000..a772fceb
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsGreyAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: f3829b5e0e5f3a94aa45ce530d05c1f4
+timeCreated: 1461664823
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 512
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsRedAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsRedAlbedo.tif
new file mode 100644
index 00000000..a31dcc22
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsRedAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsRedAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsRedAlbedo.tif.meta
new file mode 100644
index 00000000..9c52c41d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsRedAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 078d4e29587559e4398f3c48f807b460
+timeCreated: 1461664823
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsTrimAlbedo.tif b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsTrimAlbedo.tif
new file mode 100644
index 00000000..755cc016
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsTrimAlbedo.tif differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsTrimAlbedo.tif.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsTrimAlbedo.tif.meta
new file mode 100644
index 00000000..ce950377
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/Environment/SecurityRoom/SecurityRoomWallsTrimAlbedo.tif.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 914fbb3b0d1b86a4d93861993facf9b4
+timeCreated: 1461677734
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/LightGradient.psd b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/LightGradient.psd
new file mode 100644
index 00000000..4cd3074b
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/LightGradient.psd differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/LightGradient.psd.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/LightGradient.psd.meta
new file mode 100644
index 00000000..da7e2ba7
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/LightGradient.psd.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 836ae3c2ccd31da49a1095ab1e5e2ccc
+timeCreated: 1460551645
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint.png
new file mode 100644
index 00000000..ee1bdf3f
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint.png.meta
new file mode 100644
index 00000000..f9e42e27
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint.png.meta
@@ -0,0 +1,59 @@
+fileFormatVersion: 2
+guid: 0f66c07279c7f154598d4aec04bf1496
+timeCreated: 1461850514
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint2.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint2.png
new file mode 100644
index 00000000..3488f2bb
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint2.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint2.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint2.png.meta
new file mode 100644
index 00000000..62c70f71
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint2.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: d181812e8fae7c448a03d283dbba6d4e
+timeCreated: 1461852819
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint3.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint3.png
new file mode 100644
index 00000000..13e3886c
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint3.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint3.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint3.png.meta
new file mode 100644
index 00000000..0bcdee7c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint3.png.meta
@@ -0,0 +1,59 @@
+fileFormatVersion: 2
+guid: 3e2ff6720234f5447894e77691ec2026
+timeCreated: 1461852819
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint4.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint4.png
new file mode 100644
index 00000000..162afc41
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint4.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint4.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint4.png.meta
new file mode 100644
index 00000000..fb68e2b1
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/ToonRampTint4.png.meta
@@ -0,0 +1,59 @@
+fileFormatVersion: 2
+guid: 79be2c25a12e980469d7d935c889c16a
+timeCreated: 1461853032
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: -1
+ aniso: -1
+ mipBias: -1
+ wrapMode: 1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: -1
+ buildTargetSettings: []
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/noise.png b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/noise.png
new file mode 100644
index 00000000..ec33aed3
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/noise.png differ
diff --git a/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/noise.png.meta b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/noise.png.meta
new file mode 100644
index 00000000..806f3d27
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/Market Scene Demo/Unity/Textures/noise.png.meta
@@ -0,0 +1,57 @@
+fileFormatVersion: 2
+guid: 1d764c59b81154346b47a0ee3c315b2c
+timeCreated: 1461924174
+licenseType: Store
+TextureImporter:
+ fileIDToRecycleName: {}
+ serializedVersion: 2
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 0
+ linearTexture: 0
+ correctGamma: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 0
+ cubemapConvolution: 0
+ cubemapConvolutionSteps: 7
+ cubemapConvolutionExponent: 1.5
+ seamlessCubemap: 0
+ textureFormat: -1
+ maxTextureSize: 2048
+ textureSettings:
+ filterMode: 0
+ aniso: -1
+ mipBias: -1
+ wrapMode: -1
+ nPOTScale: 1
+ lightmap: 0
+ rGBM: 0
+ compressionQuality: 50
+ allowsAlphaSplitting: 0
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spritePixelsToUnits: 100
+ alphaIsTransparency: 0
+ textureType: 5
+ buildTargetSettings: []
+ spriteSheet:
+ sprites: []
+ outline: []
+ spritePackingTag:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin.meta b/dev_Refactor-and-demos/Assets/pupil_plugin.meta
new file mode 100644
index 00000000..40c2cf1c
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 31ec6a10ea7eb2c46ade778de069cae0
+folderAsset: yes
+timeCreated: 1501370909
+licenseType: Free
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Calibration.unity b/dev_Refactor-and-demos/Assets/pupil_plugin/Calibration.unity
new file mode 100644
index 00000000..84231503
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Calibration.unity
@@ -0,0 +1,193 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!29 &1
+OcclusionCullingSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_OcclusionBakeSettings:
+ smallestOccluder: 5
+ smallestHole: 0.25
+ backfaceThreshold: 100
+ m_SceneGUID: 00000000000000000000000000000000
+ m_OcclusionCullingData: {fileID: 0}
+--- !u!104 &2
+RenderSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 8
+ m_Fog: 0
+ m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_FogMode: 3
+ m_FogDensity: 0.01
+ m_LinearFogStart: 0
+ m_LinearFogEnd: 300
+ m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
+ m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
+ m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
+ m_AmbientIntensity: 1
+ m_AmbientMode: 3
+ m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
+ m_SkyboxMaterial: {fileID: 0}
+ m_HaloStrength: 0.5
+ m_FlareStrength: 1
+ m_FlareFadeSpeed: 3
+ m_HaloTexture: {fileID: 0}
+ m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
+ m_DefaultReflectionMode: 0
+ m_DefaultReflectionResolution: 128
+ m_ReflectionBounces: 1
+ m_ReflectionIntensity: 1
+ m_CustomReflection: {fileID: 0}
+ m_Sun: {fileID: 0}
+ m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
+--- !u!157 &3
+LightmapSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 11
+ m_GIWorkflowMode: 1
+ m_GISettings:
+ serializedVersion: 2
+ m_BounceScale: 1
+ m_IndirectOutputScale: 1
+ m_AlbedoBoost: 1
+ m_TemporalCoherenceThreshold: 1
+ m_EnvironmentLightingMode: 0
+ m_EnableBakedLightmaps: 0
+ m_EnableRealtimeLightmaps: 0
+ m_LightmapEditorSettings:
+ serializedVersion: 9
+ m_Resolution: 2
+ m_BakeResolution: 40
+ m_TextureWidth: 1024
+ m_TextureHeight: 1024
+ m_AO: 0
+ m_AOMaxDistance: 1
+ m_CompAOExponent: 0
+ m_CompAOExponentDirect: 0
+ m_Padding: 2
+ m_LightmapParameters: {fileID: 0}
+ m_LightmapsBakeMode: 1
+ m_TextureCompression: 1
+ m_FinalGather: 0
+ m_FinalGatherFiltering: 1
+ m_FinalGatherRayCount: 1024
+ m_ReflectionCompression: 2
+ m_MixedBakeMode: 1
+ m_BakeBackend: 0
+ m_PVRSampling: 1
+ m_PVRDirectSampleCount: 32
+ m_PVRSampleCount: 500
+ m_PVRBounces: 2
+ m_PVRFiltering: 0
+ m_PVRFilteringMode: 1
+ m_PVRCulling: 1
+ m_PVRFilteringGaussRadiusDirect: 1
+ m_PVRFilteringGaussRadiusIndirect: 5
+ m_PVRFilteringGaussRadiusAO: 2
+ m_PVRFilteringAtrousColorSigma: 1
+ m_PVRFilteringAtrousNormalSigma: 1
+ m_PVRFilteringAtrousPositionSigma: 1
+ m_LightingDataAsset: {fileID: 0}
+ m_UseShadowmask: 1
+--- !u!196 &4
+NavMeshSettings:
+ serializedVersion: 2
+ m_ObjectHideFlags: 0
+ m_BuildSettings:
+ serializedVersion: 2
+ agentTypeID: 0
+ agentRadius: 0.5
+ agentHeight: 2
+ agentSlope: 45
+ agentClimb: 0.4
+ ledgeDropHeight: 0
+ maxJumpAcrossDistance: 0
+ minRegionArea: 2
+ manualCellSize: 0
+ cellSize: 0.16666667
+ manualTileSize: 0
+ tileSize: 256
+ accuratePlacement: 0
+ m_NavMeshData: {fileID: 0}
+--- !u!1001 &112420803
+Prefab:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications:
+ - target: {fileID: 4432854479943544, guid: 6867d7df8e994d1408f20e1c72b7ad5f, type: 2}
+ propertyPath: m_LocalPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 4432854479943544, guid: 6867d7df8e994d1408f20e1c72b7ad5f, type: 2}
+ propertyPath: m_LocalPosition.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 4432854479943544, guid: 6867d7df8e994d1408f20e1c72b7ad5f, type: 2}
+ propertyPath: m_LocalPosition.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 4432854479943544, guid: 6867d7df8e994d1408f20e1c72b7ad5f, type: 2}
+ propertyPath: m_LocalRotation.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 4432854479943544, guid: 6867d7df8e994d1408f20e1c72b7ad5f, type: 2}
+ propertyPath: m_LocalRotation.y
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 4432854479943544, guid: 6867d7df8e994d1408f20e1c72b7ad5f, type: 2}
+ propertyPath: m_LocalRotation.z
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 4432854479943544, guid: 6867d7df8e994d1408f20e1c72b7ad5f, type: 2}
+ propertyPath: m_LocalRotation.w
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 4432854479943544, guid: 6867d7df8e994d1408f20e1c72b7ad5f, type: 2}
+ propertyPath: m_RootOrder
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 114998737830956956, guid: 6867d7df8e994d1408f20e1c72b7ad5f,
+ type: 2}
+ propertyPath: servicePath
+ value: C:/Program Files/Pupil Service/pupil_service.exe
+ objectReference: {fileID: 0}
+ - target: {fileID: 114183052706794194, guid: 6867d7df8e994d1408f20e1c72b7ad5f,
+ type: 2}
+ propertyPath: m_Enabled
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 114998737830956956, guid: 6867d7df8e994d1408f20e1c72b7ad5f,
+ type: 2}
+ propertyPath: connection.isAutorun
+ value: 1
+ objectReference: {fileID: 0}
+ - target: {fileID: 114998737830956956, guid: 6867d7df8e994d1408f20e1c72b7ad5f,
+ type: 2}
+ propertyPath: connection.IP
+ value: 127.0.0.1
+ objectReference: {fileID: 0}
+ - target: {fileID: 114998737830956956, guid: 6867d7df8e994d1408f20e1c72b7ad5f,
+ type: 2}
+ propertyPath: connection.IPHeader
+ value: '>tcp://127.0.0.1:'
+ objectReference: {fileID: 0}
+ - target: {fileID: 114998737830956956, guid: 6867d7df8e994d1408f20e1c72b7ad5f,
+ type: 2}
+ propertyPath: connection.PORT
+ value: 50020
+ objectReference: {fileID: 0}
+ - target: {fileID: 114998737830956956, guid: 6867d7df8e994d1408f20e1c72b7ad5f,
+ type: 2}
+ propertyPath: connection.subport
+ value: 59485
+ objectReference: {fileID: 0}
+ - target: {fileID: 114998737830956956, guid: 6867d7df8e994d1408f20e1c72b7ad5f,
+ type: 2}
+ propertyPath: connection.isLocal
+ value: 1
+ objectReference: {fileID: 0}
+ m_RemovedComponents:
+ - {fileID: 114059430647369094, guid: 6867d7df8e994d1408f20e1c72b7ad5f, type: 2}
+ m_ParentPrefab: {fileID: 100100000, guid: 6867d7df8e994d1408f20e1c72b7ad5f, type: 2}
+ m_IsPrefabParent: 0
diff --git a/unity_pupil_plugin/Assets/scene/Calibration.unity.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Calibration.unity.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/scene/Calibration.unity.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Calibration.unity.meta
diff --git a/unity_pupil_plugin/Assets/Editor.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Editor.meta
similarity index 67%
rename from unity_pupil_plugin/Assets/Editor.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Editor.meta
index 44ec9a6f..8a35b574 100644
--- a/unity_pupil_plugin/Assets/Editor.meta
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Editor.meta
@@ -1,7 +1,7 @@
fileFormatVersion: 2
-guid: ca706dd793c4271488b45102507e215d
+guid: fc76e57d47960ef4687f12669f2c32be
folderAsset: yes
-timeCreated: 1488962974
+timeCreated: 1507126444
licenseType: Free
DefaultImporter:
userData:
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Editor/CustomPupilGazeTrackerInspector.cs b/dev_Refactor-and-demos/Assets/pupil_plugin/Editor/CustomPupilGazeTrackerInspector.cs
new file mode 100644
index 00000000..74f30f6e
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Editor/CustomPupilGazeTrackerInspector.cs
@@ -0,0 +1,589 @@
+
+/// Custom Inspector Script for the PupilGazeTracker script.
+/// There are four custom Style variables exposed from PupilGazeTracker: MainTabsStyle, SettingsLabelsStyle, SettingsValuesStyle, LogoStyle.
+/// These are not accessable by default, to gain access, please go to Settings/ShowAll (this toggle will be removed in public version).
+
+
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using UnityEditor;
+using UnityEditor.SceneManagement;
+
+
+[CustomEditor(typeof(PupilGazeTracker))]
+public class CustomPupilGazeTrackerInspector : Editor {
+
+ PupilGazeTracker pupilTracker;
+
+ private PupilSettings pupilSettings;
+
+// bool isConnected = false;
+ bool isEyeProcessConnected = false;
+ string tempServerIP;
+
+ Camera CalibEditorCamera;
+// PupilGazeTracker.CustomInspector cInspector;
+
+ void OnEnable(){
+
+
+
+ }
+ void OnDisable(){
+ PupilTools.WantRepaint -= this.Repaint;
+ Repaint ();
+ }
+
+ public static void AutoRunLayout(){
+
+ PupilSettings pupilSettings = PupilTools.Settings;
+
+ ////////////////////////////TOGGLE AUTO MODE////////////////////////////
+
+ PupilTools.Settings.connection.isAutorun = GUILayout.Toggle (PupilTools.Settings.connection.isAutorun, "Autorun Pupil Service", "Button");
+
+ if (!PupilTools.Settings.connection.isAutorun && Application.isPlaying) {
+
+ GUILayout.BeginHorizontal ();
+
+ if (GUILayout.Button ("Start")) {
+
+ Debug.Log ("start button before connect");
+ PupilTools.Connect ();
+ Debug.Log ("start button after connect");
+
+// if (PupilTools.Settings.connection.isLocal)
+// PupilTools.RunServiceAtPath ();
+//
+//
+// PupilDataReceiver.Instance.StartCoroutine (PupilDataReceiver.Instance.Connect (retry: true, retryDelay: 5f));
+
+
+
+// if (PupilTools.Settings.connection.isLocal) {
+//
+// PupilTools.RunServiceAtPath ();
+// PupilDataReceiver.Instance.StartCoroutine (PupilDataReceiver.Instance.Connect (retry: true, retryDelay: 5f));
+//
+// } else {
+//
+// PupilDataReceiver.Instance.StartCoroutine (PupilDataReceiver.Instance.Connect (retry: true, retryDelay: 5f));
+//
+// }
+
+ }
+
+ if (GUILayout.Button ("Stop"))
+ PupilTools.StopEyeProcesses ();
+
+ GUILayout.EndHorizontal ();
+ }
+
+ ////////////////////////////TOGGLE AUTO MODE////////////////////////////
+
+ }
+
+ public override void OnInspectorGUI(){
+
+
+ if (pupilTracker == null) {
+ Debug.Log ("fos");
+ pupilTracker = (PupilGazeTracker)target;
+// pupilTracker.AdjustPath ();
+
+ PupilTools.WantRepaint += this.Repaint;
+
+ if (pupilTracker.Settings == null) {
+ pupilTracker.Settings = Resources.Load ("PupilSettings");
+ pupilSettings = pupilTracker.Settings;
+ } else {
+ pupilSettings = pupilTracker.Settings;
+ }
+
+
+
+ tempServerIP = PupilTools.Settings.connection.IP;
+
+
+ if (pupilTracker.DrawMenu == null) {
+ switch (pupilSettings.customGUIVariables.tabs.mainTab) {
+ case 0:////////MAIN MENU////////
+ pupilTracker.DrawMenu = null;
+ pupilTracker.DrawMenu += DrawMainMenu;
+ break;
+ case 1:////////SETTINGS////////
+ pupilTracker.DrawMenu = null;
+ pupilTracker.DrawMenu += DrawSettings;
+ break;
+ }
+ }
+ }
+// PupilSettings pupilSettings = PupilTools.GetPupilSettings ();
+// Event e = Event.current;
+//
+// switch (e.type) {
+// case EventType.MouseUp:
+// isMouseDown = false;
+// break;
+// case EventType.MouseDown:
+// isMouseDown = true;
+// break;
+// }
+
+ GUILayout.Space (20);
+
+ ////////LABEL WITH STYLE////////
+ System.Object logo = Resources.Load("pupil_labs_logotype") as Texture;
+ GUILayout.Label (logo as Texture, pupilSettings.GUIStyles[0]);
+ ////////LABEL WITH STYLE////////
+
+ GUILayout.Space (50);
+
+ ////////DRAW TAB MENU SYSTEM////////
+ EditorGUI.BeginChangeCheck();
+
+ EditorGUILayout.BeginHorizontal ();
+
+ //////////////////////////////////////STATUS FIELD//////////////////////////////////////
+ if (PupilTools.Settings.connection.isConnected) {
+ GUI.color = Color.green;
+ if (PupilTools.Settings.connection.isLocal) {
+ GUILayout.Label ("localHost ( Connected )", pupilSettings.GUIStyles[1]);
+ } else {
+ GUILayout.Label ("remote " + PupilTools.Settings.connection.IP + " ( Connected )" , pupilSettings.GUIStyles[1]);
+ }
+
+ } else {
+ if (PupilTools.Settings.connection.isLocal) {
+ GUILayout.Label ("localHost ( Not Connected )", pupilSettings.GUIStyles[1]);
+ } else {
+ GUILayout.Label ("remote " + PupilTools.Settings.connection.IP + " ( Not Connected )" , pupilSettings.GUIStyles[1]);
+ }
+ }
+ GUI.color = Color.white;
+
+ Texture2D eyeIcon = Resources.Load("eye") as Texture2D;
+ if (Pupil.processStatus.eyeProcess0) {
+ GUI.color = Color.green;
+ } else {
+ GUI.color = Color.gray;
+ }
+ GUILayout.Label (eyeIcon as Texture2D, pupilSettings.GUIStyles[2], GUILayout.Width (20), GUILayout.Height (20));
+ GUILayout.Space (5);
+ if (Pupil.processStatus.eyeProcess1) {
+ GUI.color = Color.green;
+ } else {
+ GUI.color = Color.gray;
+ }
+ GUILayout.Label (eyeIcon as Texture2D, pupilSettings.GUIStyles[2], GUILayout.Width (20), GUILayout.Height (20));
+ GUI.color = Color.white;
+
+ EditorGUILayout.EndHorizontal ();
+ //////////////////////////////////////STATUS FIELD\//////////////////////////////////////
+
+ //////////////////////////////////////DEVELOPER MODE TOGGLE//////////////////////////////////////
+ GUILayout.BeginHorizontal();////////////////////HORIZONTAL////////////////////
+
+ GUI.skin.button.fontSize = 9;
+ pupilSettings.customGUIVariables.bools.isAdvanced = GUILayout.Toggle (pupilSettings.customGUIVariables.bools.isAdvanced, "developer mode", "Button", GUILayout.Width(90));
+ //GUI.skin.button.fontSize = 13;
+ GUI.skin.button.fontSize = 12;
+
+ GUILayout.EndHorizontal ();////////////////////HORIZONTAL////////////////////
+ //////////////////////////////////////DEVELOPER MODE TOGGLE\//////////////////////////////////////
+ //base.OnInspectorGUI ();
+ GUILayout.Box("", GUILayout.ExpandWidth(true), GUILayout.Height(1));//Separator Line
+ pupilSettings.customGUIVariables.tabs.mainTab = GUILayout.Toolbar (pupilSettings.customGUIVariables.tabs.mainTab, new string[]{ "Main", "Settings"}, GUILayout.Height(35));
+ GUILayout.Box("", GUILayout.ExpandWidth(true), GUILayout.Height(1));//Separator Line
+ if (EditorGUI.EndChangeCheck ()) {//I delegates are used to assign the relevant menu to be drawn. This way I can fire off something on tab change.
+ switch (pupilSettings.customGUIVariables.tabs.mainTab) {
+ case 0:////////MAIN MENU////////
+ pupilTracker.DrawMenu = null;
+ pupilTracker.DrawMenu += DrawMainMenu;
+ break;
+ case 1:////////SETTINGS////////
+ pupilTracker.DrawMenu = null;
+ pupilTracker.DrawMenu += DrawSettings;
+ break;
+ }
+ }
+
+ if (pupilTracker.DrawMenu != null)
+ pupilTracker.DrawMenu ();
+
+ ////////DRAW TAB MENU SYSTEM////////
+ GUILayout.Space (50);
+
+ GUI.skin = null;
+ }
+ public float y;
+ private void DrawMainMenu(){
+
+ Event e = Event.current;
+
+ GUILayout.Space (10);
+
+ ////////////////////////////CALIBRATE BUTTON////////////////////////////
+ if (PupilTools.Settings.connection.isConnected) {
+ if (PupilTools.Settings.dataProcess.state != PupilSettings.EStatus.Calibration) {
+ if (GUILayout.Button ("Calibrate", GUILayout.Height (50))) {
+ if (Application.isPlaying)
+ {
+ PupilTools.StartCalibration ();
+ //EditorApplication.update += CheckCalibration;
+ } else {
+ EditorUtility.DisplayDialog ("Pupil service message", "You can only use calibration in playmode", "Understood");
+ }
+ }
+ } else {
+ if (GUILayout.Button ("Stop Calibration", GUILayout.Height (50))) {
+ PupilTools.StopCalibration ();
+ }
+ }
+ } else {
+ GUI.enabled = false;
+ GUILayout.Button ("Calibrate (Not Connected !)", GUILayout.Height (50));
+ }
+ GUI.enabled = true;
+ ////////////////////////////CALIBRATE BUTTON////////////////////////////
+
+ GUILayout.Space (5);
+
+ ////////////////////////////RECORDING BUTTON////////////////////////////
+ EditorGUI.BeginChangeCheck ();
+
+ if (Recorder.isProcessing){
+ GUI.enabled = false;
+ Recorder.isRecording = GUILayout.Toggle (Recorder.isRecording, "Processing ... ", "Button", GUILayout.Height (50));
+ } else {
+ Recorder.isRecording = GUILayout.Toggle (Recorder.isRecording, "Recording", "Button", GUILayout.Height (50));
+ }
+
+ GUI.enabled = true;
+ GUI.backgroundColor = Color.white;
+ if (EditorGUI.EndChangeCheck ()) {
+ if (Recorder.isRecording) {
+ Recorder.Start ();
+ EditorApplication.update += CheckRecording;
+ EditorUtility.SetDirty (target);
+ } else {
+ Recorder.Stop ();
+ }
+ }
+
+ ////////////////////////////RECORDING BUTTON////////////////////////////
+ ///
+ GUILayout.Space (5);
+
+ ////////////////////////////OPERATOR MONITOR BUTTON////////////////////////////
+ EditorGUI.BeginChangeCheck ();
+ pupilTracker.isOperatorMonitor = GUILayout.Toggle (pupilTracker.isOperatorMonitor, "Operator Monitor", "Button", GUILayout.MinWidth (100), GUILayout.Height (50));
+ if (EditorGUI.EndChangeCheck ()) {
+ if (pupilTracker.isOperatorMonitor) {
+ pupilTracker.debugInstance.CloseCalibrationDebugView();
+ // Debug.Log("instantiate operator monitor");
+ OperatorMonitor.Instantiate ();
+ } else {
+ if (pupilTracker.OperatorMonitorProperties[0].OperatorCamera != null)
+ OperatorMonitor.Instance.ExitOperatorMonitor ();
+ }
+ }
+ ////////////////////////////OPERATOR MONITOR BUTTON////////////////////////////
+
+ GUILayout.Space (10);
+
+ GUI.skin = default(GUISkin);
+
+ GUILayout.Space (100);
+
+ GUI.depth = 0;
+ GUI.color = Color.white;
+ GUILayout.Box("", GUILayout.ExpandWidth(true), GUILayout.Height(1));//Separator Line
+ GUI.depth = 1;
+ GUI.color = Color.white;
+
+ if (pupilSettings.customGUIVariables.bools.isAdvanced) {
+ if (GUILayout.Button ("IsConnected")) {
+ PupilTools.Settings.connection.isConnected = true;
+ }
+// pupilTracker.debugInstance.DebugVariables.packetsOnMainThread = GUILayout.Toggle (pupilTracker.debugInstance.DebugVariables.packetsOnMainThread, "Process Packets on Main Thread", "Button", GUILayout.MinWidth (100));
+
+ GUI.backgroundColor = Color.white;
+ GUILayout.Space (10);
+
+ pupilSettings.debug.printSampling = GUILayout.Toggle (pupilSettings.debug.printSampling, "Print Sampling", "Button");
+
+ pupilSettings.debug.printMessage = GUILayout.Toggle (pupilSettings.debug.printMessage, "Print Msg", "Button");
+
+ pupilSettings.debug.printMessageType = GUILayout.Toggle (pupilSettings.debug.printMessageType, "Print Msg Types", "Button");
+
+// pupilTracker.DebugVariables.subscribeAll = GUILayout.Toggle (pupilTracker.DebugVariables.subscribeAll, "Subscribe to all", "Button");
+//
+// pupilTracker.DebugVariables.subscribeFrame = GUILayout.Toggle (pupilTracker.DebugVariables.subscribeFrame, "Subscribe to frame.", "Button");
+//
+// pupilTracker.DebugVariables.subscribeGaze = GUILayout.Toggle (pupilTracker.DebugVariables.subscribeGaze, "Subscribe to gaze.", "Button");
+//
+// pupilTracker.DebugVariables.subscribeNotify = GUILayout.Toggle (pupilTracker.DebugVariables.subscribeNotify, "Subscribe to notifications.", "Button");
+
+ }
+
+
+ }
+ private void DrawSettings(){
+
+ PupilSettings pupilSettings = PupilTools.Settings;
+
+ GUILayout.Space (10);
+
+ // test for changes in exposed values
+ EditorGUI.BeginChangeCheck();
+ pupilTracker.SettingsTab = GUILayout.Toolbar (pupilTracker.SettingsTab, new string[] {
+ "pupil app",
+ "calibration",
+ "recording"
+ }, GUILayout.Height(30));
+ ////////INPUT FIELDS////////
+ switch (pupilTracker.SettingsTab) {
+ case 0://PUPIL APP
+ if (PupilTools.Settings.dataProcess.state == PupilSettings.EStatus.Calibration) {
+ GUI.enabled = false;
+ }
+
+ GUILayout.Space (10);
+
+ AutoRunLayout ();
+
+ GUILayout.Space (20);
+
+ ////////////////////////////CONNECTION MODE////////////////////////////
+ EditorGUI.BeginChangeCheck ();
+ //GUI.color = new Color (.7f, .7f, .7f, 1f);
+
+ PupilTools.Settings.connection.isLocal = Convert.ToBoolean (GUILayout.Toolbar (Convert.ToInt32 (PupilTools.Settings.connection.isLocal), new string[] {
+ "Remote",
+ "Local"
+ }, GUILayout.Height (30), GUILayout.MinWidth (25)));
+ //pupilTracker.customInspector.connectionMode = GUILayout.Toolbar (pupilTracker.customInspector.connectionMode, new string[]{ "Local", "Remote" }, GUILayout.Height (30), GUILayout.MinWidth (25));
+ GUI.color = Color.white;
+ if (EditorGUI.EndChangeCheck ()) {
+ if (PupilTools.Settings.connection.isLocal) {
+ tempServerIP = PupilTools.Settings.connection.IP;
+ PupilTools.Settings.connection.IP = "127.0.0.1";
+ } else {
+ PupilTools.Settings.connection.IP = tempServerIP;
+ }
+ }
+
+ ////////////////////////////CONNECTION MODE////////////////////////////
+ GUILayout.Space (5);
+ if (PupilTools.Settings.connection.isLocal) {//LOCAL CONNECTION MODE//
+ ////////////////////////////PUPIL APP PATH////////////////////////////
+ GUILayout.BeginHorizontal ();
+ GUILayout.Label ("path : ", pupilSettings.GUIStyles[5], GUILayout.MinWidth (50));
+
+ PupilTools.Settings.pupilServiceApp.servicePath = EditorGUILayout.TextArea (PupilTools.Settings.pupilServiceApp.servicePath, pupilSettings.GUIStyles[6], GUILayout.MinWidth (100), GUILayout.Height (22));
+ if (GUILayout.Button ("Browse")) {
+ PupilTools.Settings.pupilServiceApp.servicePath = EditorUtility.OpenFilePanel ("Select Pupil service application file", PupilTools.Settings.pupilServiceApp.servicePath, "exe");
+ }
+ GUILayout.EndHorizontal ();
+ ////////////////////////////PUPIL APP PATH////////////////////////////
+ }
+
+ if (pupilSettings.customGUIVariables.bools.isAdvanced){//ADVANCED SETTING
+
+ ////////////////////////////SERVICE PORT////////////////////////////
+ ///
+ GUILayout.BeginHorizontal ();//---------HORIZONTAL GROUP---------//
+ //
+ GUILayout.Label ("Service Port : ", pupilSettings.GUIStyles[3], GUILayout.MinWidth (50));
+ PupilTools.Settings.connection.PORT = EditorGUILayout.IntField (PupilTools.Settings.connection.PORT, pupilSettings.GUIStyles[4], GUILayout.MinWidth (100), GUILayout.Height (22));
+ //
+ GUILayout.EndHorizontal ();//---------HORIZONTAL GROUP\---------//
+ ///
+ ////////////////////////////SERVICE PORT\////////////////////////////
+ base.OnInspectorGUI ();
+ GUILayout.Box("", GUILayout.ExpandWidth(true), GUILayout.Height(1));//Separator Line
+
+ }//ADVANCED SETTING\
+
+ if (!PupilTools.Settings.connection.isLocal) {//---------REMOTE CONNECTION MODE---------//
+
+
+
+ GUILayout.Space (5);
+
+ ////////////////////////////SERVER IP ADDRESS////////////////////////////
+ ///
+
+ GUILayout.BeginHorizontal ();//---------HORIZONTAL GROUP---------//
+ //
+ GUILayout.Label ("IP : ", pupilSettings.GUIStyles[5], GUILayout.MinWidth (50));
+ //
+
+// pupilTracker.Settings = (PupilSettings)EditorGUILayout.ObjectField (pupilTracker.Settings);
+// pupilTracker.Settings.a = EditorGUILayout.TextArea (pupilTracker.Settings.a, pupilTracker.Styles[8], GUILayout.MinWidth (50), GUILayout.Height (22));
+ PupilTools.Settings.connection.IP = EditorGUILayout.TextArea (PupilTools.Settings.connection.IP, pupilSettings.GUIStyles[4], GUILayout.MinWidth (50), GUILayout.Height (22));
+ if (GUILayout.Button ("Default")) {
+ PupilTools.Settings.connection.IP = "127.0.0.1";
+ Repaint ();
+ GUI.FocusControl ("");
+ }
+ //
+ GUI.enabled = true;
+ //
+ GUILayout.EndHorizontal ();//---------HORIZONTAL GROUP\---------//
+ ///
+ ////////////////////////////SERVER IP ADDRESS\////////////////////////////
+
+
+ GUI.enabled = true;
+
+ }//---------REMOTE CONNECTION MODE\---------//
+
+
+ break;
+ case 1://CALIBRATION
+
+
+ GUILayout.Space (20);
+
+ ////////////////////////////2D-3D TOGGLE BAR////////////////////////////
+ EditorGUI.BeginChangeCheck ();
+ var calibrationMode = (Calibration.CalibMode)GUILayout.Toolbar ((int)pupilSettings.calibration.currentCalibrationMode, new string[] {"2D","3D"});
+ if (calibrationMode != pupilSettings.calibration.currentCalibrationMode)
+ pupilSettings.calibration.currentCalibrationMode = calibrationMode;
+ GUI.enabled = true;
+ if (EditorGUI.EndChangeCheck ()) {
+// pupilSettings.calibration.SwitchCalibrationMode ();
+ }
+ ////////////////////////////2D-3D TOGGLE BAR////////////////////////////
+
+ ////////////////////////////CALIBRATION DEBUG MODE////////////////////////////
+ if (PupilTools.Settings.dataProcess.state == PupilSettings.EStatus.Calibration || !isEyeProcessConnected || (int)pupilSettings.calibration.currentCalibrationMode != 1) {
+ } else {
+
+ //GUI.enabled = false;
+
+ EditorGUI.BeginChangeCheck ();
+
+ pupilSettings.debugView.active = GUILayout.Toggle (pupilSettings.debugView.active, "Calibration Debug Mode", "Button");
+ GUI.enabled = true;
+ if (EditorGUI.EndChangeCheck ()) {
+ if (pupilSettings.debugView.active) {
+ if (pupilTracker.OperatorMonitorProperties [0].OperatorCamera != null)
+ OperatorMonitor.Instance.ExitOperatorMonitor ();
+ pupilTracker.debugInstance.StartCalibrationDebugView ();
+
+ } else {
+ pupilTracker.debugInstance.CloseCalibrationDebugView ();
+ }
+ }
+ }
+
+ if (pupilSettings.debugView.active) {
+ // pupilTracker.calibrationDebugCamera = (PupilGazeTracker.CalibrationDebugCamera) EditorGUILayout.EnumPopup (pupilTracker.calibrationDebugCamera);
+ GUILayout.BeginHorizontal ();
+ EditorGUI.BeginChangeCheck ();
+ pupilTracker.debugInstance.DebugViewVariables.isDrawLines = GUILayout.Toggle (pupilTracker.debugInstance.DebugViewVariables.isDrawLines, " Draw Debug Lines ", "Button");
+ pupilTracker.debugInstance.DebugViewVariables.isDrawPoints = GUILayout.Toggle (pupilTracker.debugInstance.DebugViewVariables.isDrawPoints, " Draw Debug Points ", "Button");
+ if (EditorGUI.EndChangeCheck ()) {
+ pupilTracker.debugInstance.SetDrawCalibrationPointCloud (pupilTracker.debugInstance.DebugViewVariables.isDrawPoints);
+ pupilTracker.debugInstance.SetDrawCalibrationLines (pupilTracker.debugInstance.DebugViewVariables.isDrawLines);
+ }
+ GUILayout.EndHorizontal ();
+ }
+
+ GUI.enabled = true;
+ ////////////////////////////CALIBRATION DEBUG MODE////////////////////////////
+
+ GUILayout.Space (20);
+
+ GUILayout.BeginHorizontal ();////////////////////HORIZONTAL////////////////////
+ GUILayout.Label ("Samples ", pupilSettings.GUIStyles[3], GUILayout.MinWidth (35));
+ PupilTools.defaultCalibrationCount = EditorGUILayout.IntSlider (PupilTools.defaultCalibrationCount, 1, 120, GUILayout.ExpandWidth(true));
+ GUILayout.EndHorizontal ();////////////////////HORIZONTAL////////////////////
+
+ GUILayout.Space (10);//------------------------------------------------------------//
+
+ if (pupilSettings.customGUIVariables.bools.isAdvanced){
+
+ base.OnInspectorGUI ();
+ }
+ break;
+ case 2://RECORDING
+
+ GUILayout.Space (20);
+
+ GUILayout.BeginHorizontal ();
+ pupilTracker.recorder.resolution = (FFmpegOut.FFmpegPipe.Resolution)EditorGUILayout.EnumPopup (pupilTracker.recorder.resolution);
+ pupilTracker.recorder.codec = (FFmpegOut.FFmpegPipe.Codec)EditorGUILayout.EnumPopup (pupilTracker.recorder.codec);// GUILayout.Toolbar (pupilTracker.Codec, new string[] {
+ GUILayout.EndHorizontal();
+
+// GUILayout.BeginHorizontal ();
+// pupilTracker.recorder.isFixedRecordingLength = GUILayout.Toggle (pupilTracker.recorder.isFixedRecordingLength, "fixed length", "Button", GUILayout.Width (90));
+// if (pupilTracker.recorder.isFixedRecordingLength) {
+// pupilTracker.recorder.recordingLength = EditorGUILayout.FloatField (pupilTracker.recorder.recordingLength);
+// }
+// GUILayout.EndHorizontal ();
+
+ GUILayout.BeginHorizontal ();
+ EditorGUI.BeginChangeCheck ();
+ pupilTracker.recorder.isCustomPath = GUILayout.Toggle (pupilTracker.recorder.isCustomPath, "CustomPath", "Button", GUILayout.Width (90));
+ if (EditorGUI.EndChangeCheck ()) {
+ if (pupilTracker.recorder.isCustomPath) {
+ pupilTracker.recorder.filePath = EditorUtility.OpenFolderPanel ("Select the output folder", pupilTracker.recorder.filePath, "");
+ }
+ }
+ if (pupilTracker.recorder.isCustomPath) {
+ GUIStyle centeredStyle = new GUIStyle (GUI.skin.textField);
+ centeredStyle.alignment = TextAnchor.MiddleCenter;
+ centeredStyle.margin = new RectOffset (0, 0, 3, 0);
+ centeredStyle.fixedHeight = 20;
+ pupilTracker.recorder.filePath = GUILayout.TextField (pupilTracker.recorder.filePath, centeredStyle);
+ if (GUILayout.Button ("Browse", GUILayout.Width(60))) {
+ pupilTracker.recorder.filePath = EditorUtility.OpenFolderPanel ("Select the output folder", pupilTracker.recorder.filePath, "");
+ }
+ }
+ GUILayout.EndHorizontal ();
+
+ break;
+ }
+
+
+ //if change found set scene as dirty, so user will have to save changed values.
+ if (EditorGUI.EndChangeCheck() && !Application.isPlaying)
+ {
+ EditorSceneManager.MarkSceneDirty (EditorSceneManager.GetActiveScene ());
+ }
+
+ GUILayout.Space (10);
+
+ }
+
+// public void CheckConnection(){
+// if (Pupil.processStatus.eyeProcess0 || Pupil.processStatus.eyeProcess1) {
+// if (Pupil.processStatus.initialized) {
+// EditorApplication.update -= CheckConnection;
+// }
+// isEyeProcessConnected = true;
+// }
+//
+// Repaint ();
+// }
+
+ public void CheckRecording(){
+ if (!Recorder.isRecording) {
+ EditorApplication.update -= CheckRecording;
+ Repaint ();
+ }
+ }
+
+ void OnApplicationQuit(){
+ EditorApplication.update = null;
+ }
+
+
+}
+
diff --git a/unity_pupil_plugin/Assets/Editor/CustomPupilGazeTrackerInspector.cs.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Editor/CustomPupilGazeTrackerInspector.cs.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Editor/CustomPupilGazeTrackerInspector.cs.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Editor/CustomPupilGazeTrackerInspector.cs.meta
diff --git a/unity_pupil_plugin/Assets/FFmpegOut.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut.meta
similarity index 67%
rename from unity_pupil_plugin/Assets/FFmpegOut.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut.meta
index 3e03cd6a..83073f50 100644
--- a/unity_pupil_plugin/Assets/FFmpegOut.meta
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut.meta
@@ -1,7 +1,7 @@
fileFormatVersion: 2
-guid: 308af0cc2d2d1ef44a84de3f30cfe4db
+guid: cb50da9adfd1a1c40a1c2421016088d2
folderAsset: yes
-timeCreated: 1490904471
+timeCreated: 1507126444
licenseType: Free
DefaultImporter:
userData:
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/CameraCapture.cs b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/CameraCapture.cs
similarity index 90%
rename from unity_pupil_plugin/Assets/FFmpegOut/CameraCapture.cs
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/CameraCapture.cs
index 63f7c78a..3171ced7 100644
--- a/unity_pupil_plugin/Assets/FFmpegOut/CameraCapture.cs
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/CameraCapture.cs
@@ -16,8 +16,6 @@ public class CameraCapture : MonoBehaviour
#region Editable properties
[SerializeField] bool _setResolution = true;
-// [SerializeField] public int _width = 1280;
-// [SerializeField] public int _height = 720;
[SerializeField] int _frameRate = 30;
[SerializeField] FFmpegPipe.Codec _codec;
[SerializeField] public float _recordLength = 5;
@@ -42,14 +40,14 @@ enum RecorderState {RECORDING,PROCESSING,STOPPING,IDLE}
Thread RecorderThread;
List renderPipeQueue = new List();
- object datalock = new object();
+// object datalock = new object();
PupilGazeTracker pupilTracker;
int renderedFrameCount = 0;
int writtenFrameCount = 0;
- List timeStampList = new List();
+ List timeStampList = new List();
// StringBuilder strBuilder;
public Camera RecordedMainCamera;
@@ -114,7 +112,7 @@ void Update()
if (_recorderState == RecorderState.STOPPING) {
- pupilTracker.RepaintGUI ();
+ PupilTools.RepaintGUI ();
GameObject.Destroy (this.gameObject);
}
@@ -123,7 +121,7 @@ void Update()
public void Stop(){
Recorder.isRecording = false;
- PupilGazeTracker.Instance.StopPupilServiceRecording ();
+ PupilTools.StopPupilServiceRecording ();
_recorderState = RecorderState.PROCESSING;
Recorder.isProcessing = true;
}
@@ -156,7 +154,7 @@ void OnRenderImage(RenderTexture source, RenderTexture destination)
if (_pipe != null && _recorderState == RecorderState.RECORDING)
{
var tempRT = RenderTexture.GetTemporary(source.width, source.height);
- var pupilTimeStamp = pupilTracker.GetPupilTimestamp ();
+ var pupilTimeStamp = PupilSettings.Instance.connection.GetPupilTimestamp ();
if (_material != null) {
@@ -194,7 +192,7 @@ void OpenPipe()
if (_pipe != null) return;
renderPipeQueue.Clear ();
- timeStampList = new List ();
+ timeStampList = new List ();
var camera = GetComponent();
var width = pupilTracker.recorder.resolutions [(int)pupilTracker.recorder.resolution] [0];
@@ -257,14 +255,11 @@ void ClosePipe()
{
Debug.Log ("Capture ended (" + _pipe.Filename + ")" + ". Rendered frame count on MainThread : " + renderedFrameCount + ". Written out frame count on SecondaryThread : " + writtenFrameCount + ". Leftover : " + renderPipeQueue.Count);
-
+ // Write pupil timestamps to a file
string timeStampFileName = "Unity_" + Camera.main.name;
- byte[] timeStampByteArray = pupilTracker.floatArrayToByteArray (timeStampList.ToArray ());
+ byte[] timeStampByteArray = PupilConversions.doubleArrayToByteArray (timeStampList.ToArray ());
File.WriteAllBytes(_pipe.FilePath + "/" + timeStampFileName + ".time", timeStampByteArray);
- //File.WriteAllText (_pipe.FilePath + "/" + csvFileName + ".time", strBuilder.ToString ());
-
-
_pipe.Close();
if (!string.IsNullOrEmpty(_pipe.Error))
@@ -280,12 +275,6 @@ void ClosePipe()
}
-// private string SingleToBinaryString(float f)
-// {
-// byte[] b = BitConverter.GetBytes(f);
-// int i = BitConverter.ToInt32(b, 0);
-// return Convert.ToString(i, 2);
-// }
#endregion
}
}
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/CameraCapture.cs.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/CameraCapture.cs.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/FFmpegOut/CameraCapture.cs.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/CameraCapture.cs.meta
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/Editor.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Editor.meta
similarity index 78%
rename from unity_pupil_plugin/Assets/FFmpegOut/Editor.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Editor.meta
index 5983dfc1..e45a36a9 100644
--- a/unity_pupil_plugin/Assets/FFmpegOut/Editor.meta
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Editor.meta
@@ -1,8 +1,8 @@
fileFormatVersion: 2
guid: ca9c13867ad2c7142a339af129c0f7d7
folderAsset: yes
-timeCreated: 1491148560
-licenseType: Pro
+timeCreated: 1507126444
+licenseType: Free
DefaultImporter:
userData:
assetBundleName:
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/Editor/CameraCaptureEditor.cs b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Editor/CameraCaptureEditor.cs
similarity index 100%
rename from unity_pupil_plugin/Assets/FFmpegOut/Editor/CameraCaptureEditor.cs
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Editor/CameraCaptureEditor.cs
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/Editor/CameraCaptureEditor.cs.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Editor/CameraCaptureEditor.cs.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/FFmpegOut/Editor/CameraCaptureEditor.cs.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Editor/CameraCaptureEditor.cs.meta
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/FFmpegConfig.cs b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/FFmpegConfig.cs
similarity index 100%
rename from unity_pupil_plugin/Assets/FFmpegOut/FFmpegConfig.cs
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/FFmpegConfig.cs
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/FFmpegConfig.cs.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/FFmpegConfig.cs.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/FFmpegOut/FFmpegConfig.cs.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/FFmpegConfig.cs.meta
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/FFmpegPipe.cs b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/FFmpegPipe.cs
similarity index 97%
rename from unity_pupil_plugin/Assets/FFmpegOut/FFmpegPipe.cs
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/FFmpegPipe.cs
index 7c2bc3e5..714fbfb5 100644
--- a/unity_pupil_plugin/Assets/FFmpegOut/FFmpegPipe.cs
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/FFmpegPipe.cs
@@ -42,7 +42,7 @@ public FFmpegPipe(string name, int width, int height, int framerate, Codec codec
path = path.Replace ("Assets/", "");
UnityEngine.Debug.Log (path);
- pupilTracker.StartPupilServiceRecording (path);
+ PupilTools.StartPupilServiceRecording (path);
Thread.Sleep (200);//Waiting for Pupil Service to create the incremented folder
@@ -133,7 +133,7 @@ public string GetLastIncrement(string path){
directoryIncrements.Add (int.Parse (directory.Substring(directory.Length-3 )));
}
int currentIncrement = Mathf.Max (directoryIncrements.ToArray());
- int newIncrement = currentIncrement + 1;
+// int newIncrement = currentIncrement + 1;
return currentIncrement.ToString ("000");
//directoryIncrements.ToArray()
}
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/FFmpegPipe.cs.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/FFmpegPipe.cs.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/FFmpegOut/FFmpegPipe.cs.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/FFmpegPipe.cs.meta
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/Internal.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Internal.meta
similarity index 78%
rename from unity_pupil_plugin/Assets/FFmpegOut/Internal.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Internal.meta
index e29d5fa6..a8a804ee 100644
--- a/unity_pupil_plugin/Assets/FFmpegOut/Internal.meta
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Internal.meta
@@ -1,8 +1,8 @@
fileFormatVersion: 2
guid: 88f8cafe5d48d4a4f89f22b10bbc64a4
folderAsset: yes
-timeCreated: 1491313768
-licenseType: Pro
+timeCreated: 1507126444
+licenseType: Free
DefaultImporter:
userData:
assetBundleName:
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/Internal/Blitter.cs b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Internal/Blitter.cs
similarity index 100%
rename from unity_pupil_plugin/Assets/FFmpegOut/Internal/Blitter.cs
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Internal/Blitter.cs
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/Internal/Blitter.cs.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Internal/Blitter.cs.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/FFmpegOut/Internal/Blitter.cs.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Internal/Blitter.cs.meta
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/Shader.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Shader.meta
similarity index 78%
rename from unity_pupil_plugin/Assets/FFmpegOut/Shader.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Shader.meta
index ad545efb..81b5a67d 100644
--- a/unity_pupil_plugin/Assets/FFmpegOut/Shader.meta
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Shader.meta
@@ -1,8 +1,8 @@
fileFormatVersion: 2
guid: 3b9d23a6d19446d498b3ae54bae7b8fa
folderAsset: yes
-timeCreated: 1488902130
-licenseType: Pro
+timeCreated: 1507126444
+licenseType: Free
DefaultImporter:
userData:
assetBundleName:
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/Internal/Shader/CameraCapture.shader b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Shader/CameraCapture.shader
similarity index 100%
rename from unity_pupil_plugin/Assets/FFmpegOut/Internal/Shader/CameraCapture.shader
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Shader/CameraCapture.shader
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/Shader/CameraCapture.shader.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Shader/CameraCapture.shader.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/FFmpegOut/Shader/CameraCapture.shader.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/FFmpegOut/Shader/CameraCapture.shader.meta
diff --git a/unity_pupil_plugin/Assets/Plugins.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins.meta
similarity index 67%
rename from unity_pupil_plugin/Assets/Plugins.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Plugins.meta
index 759a99dc..f07fb4e9 100644
--- a/unity_pupil_plugin/Assets/Plugins.meta
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins.meta
@@ -1,7 +1,7 @@
fileFormatVersion: 2
-guid: d118fa1478c646944a5de2ba027961f3
+guid: 0f0644b761596554a9096b4a2aaacb3b
folderAsset: yes
-timeCreated: 1471403497
+timeCreated: 1501370909
licenseType: Free
DefaultImporter:
userData:
diff --git a/unity_pupil_plugin/Assets/Plugins/x86_64.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Plugins/x86_64.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64.meta
diff --git a/unity_pupil_plugin/Assets/Plugins/x86_64/AsyncIO.dll b/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/AsyncIO.dll
similarity index 100%
rename from unity_pupil_plugin/Assets/Plugins/x86_64/AsyncIO.dll
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/AsyncIO.dll
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/AsyncIO.dll.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/AsyncIO.dll.meta
new file mode 100644
index 00000000..9dde102a
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/AsyncIO.dll.meta
@@ -0,0 +1,152 @@
+fileFormatVersion: 2
+guid: c92acb5389b23f14b80eda6dd3d710b7
+timeCreated: 1471323711
+licenseType: Free
+PluginImporter:
+ serializedVersion: 2
+ iconMap: {}
+ executionOrder: {}
+ isPreloaded: 0
+ isOverridable: 0
+ platformData:
+ data:
+ first:
+ '': Any
+ second:
+ enabled: 0
+ settings:
+ Exclude Android: 0
+ Exclude Editor: 0
+ Exclude Linux: 0
+ Exclude Linux64: 0
+ Exclude LinuxUniversal: 0
+ Exclude OSXIntel: 0
+ Exclude OSXIntel64: 0
+ Exclude OSXUniversal: 0
+ Exclude WebGL: 0
+ Exclude Win: 0
+ Exclude Win64: 0
+ Exclude iOS: 0
+ data:
+ first:
+ '': Editor
+ second:
+ enabled: 0
+ settings:
+ CPU: AnyCPU
+ OS: AnyOS
+ data:
+ first:
+ Android: Android
+ second:
+ enabled: 1
+ settings:
+ CPU: ARMv7
+ data:
+ first:
+ Any:
+ second:
+ enabled: 1
+ settings: {}
+ data:
+ first:
+ Editor: Editor
+ second:
+ enabled: 1
+ settings:
+ CPU: x86_64
+ DefaultValueInitialized: true
+ data:
+ first:
+ Facebook: Win
+ second:
+ enabled: 0
+ settings:
+ CPU: None
+ data:
+ first:
+ Facebook: Win64
+ second:
+ enabled: 1
+ settings:
+ CPU: AnyCPU
+ data:
+ first:
+ Standalone: Linux
+ second:
+ enabled: 1
+ settings:
+ CPU: None
+ data:
+ first:
+ Standalone: Linux64
+ second:
+ enabled: 1
+ settings:
+ CPU: x86_64
+ data:
+ first:
+ Standalone: LinuxUniversal
+ second:
+ enabled: 1
+ settings:
+ CPU: x86_64
+ data:
+ first:
+ Standalone: OSXIntel
+ second:
+ enabled: 1
+ settings:
+ CPU: None
+ data:
+ first:
+ Standalone: OSXIntel64
+ second:
+ enabled: 1
+ settings:
+ CPU: AnyCPU
+ data:
+ first:
+ Standalone: OSXUniversal
+ second:
+ enabled: 1
+ settings:
+ CPU: x86_64
+ data:
+ first:
+ Standalone: Win
+ second:
+ enabled: 1
+ settings:
+ CPU: None
+ data:
+ first:
+ Standalone: Win64
+ second:
+ enabled: 1
+ settings:
+ CPU: AnyCPU
+ data:
+ first:
+ WebGL: WebGL
+ second:
+ enabled: 1
+ settings: {}
+ data:
+ first:
+ Windows Store Apps: WindowsStoreApps
+ second:
+ enabled: 0
+ settings:
+ CPU: AnyCPU
+ data:
+ first:
+ iPhone: iOS
+ second:
+ enabled: 1
+ settings:
+ CompileFlags:
+ FrameworkDependencies:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/JetBrains.Annotations.dll b/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/JetBrains.Annotations.dll
new file mode 100644
index 00000000..aed793e1
Binary files /dev/null and b/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/JetBrains.Annotations.dll differ
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/JetBrains.Annotations.dll.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/JetBrains.Annotations.dll.meta
new file mode 100644
index 00000000..6aeaecab
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/JetBrains.Annotations.dll.meta
@@ -0,0 +1,105 @@
+fileFormatVersion: 2
+guid: 2ed3d63d316ba7649af3cfcdb549fd27
+timeCreated: 1497184592
+licenseType: Free
+PluginImporter:
+ serializedVersion: 2
+ iconMap: {}
+ executionOrder: {}
+ isPreloaded: 0
+ isOverridable: 0
+ platformData:
+ data:
+ first:
+ Any:
+ second:
+ enabled: 1
+ settings: {}
+ data:
+ first:
+ Editor: Editor
+ second:
+ enabled: 0
+ settings:
+ CPU: x86_64
+ DefaultValueInitialized: true
+ data:
+ first:
+ Facebook: Win
+ second:
+ enabled: 0
+ settings:
+ CPU: None
+ data:
+ first:
+ Facebook: Win64
+ second:
+ enabled: 1
+ settings:
+ CPU: AnyCPU
+ data:
+ first:
+ Standalone: Linux
+ second:
+ enabled: 0
+ settings:
+ CPU: None
+ data:
+ first:
+ Standalone: Linux64
+ second:
+ enabled: 1
+ settings:
+ CPU: x86_64
+ data:
+ first:
+ Standalone: LinuxUniversal
+ second:
+ enabled: 1
+ settings:
+ CPU: x86_64
+ data:
+ first:
+ Standalone: OSXIntel
+ second:
+ enabled: 0
+ settings:
+ CPU: None
+ data:
+ first:
+ Standalone: OSXIntel64
+ second:
+ enabled: 1
+ settings:
+ CPU: AnyCPU
+ data:
+ first:
+ Standalone: OSXUniversal
+ second:
+ enabled: 0
+ settings:
+ CPU: x86_64
+ data:
+ first:
+ Standalone: Win
+ second:
+ enabled: 0
+ settings:
+ CPU: None
+ data:
+ first:
+ Standalone: Win64
+ second:
+ enabled: 1
+ settings:
+ CPU: AnyCPU
+ data:
+ first:
+ Windows Store Apps: WindowsStoreApps
+ second:
+ enabled: 0
+ settings:
+ CPU: AnyCPU
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/unity_pupil_plugin/Assets/Plugins/x86_64/NetMQ.dll b/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/NetMQ.dll
similarity index 100%
rename from unity_pupil_plugin/Assets/Plugins/x86_64/NetMQ.dll
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/NetMQ.dll
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/NetMQ.dll.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/NetMQ.dll.meta
new file mode 100644
index 00000000..de25782d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Plugins/x86_64/NetMQ.dll.meta
@@ -0,0 +1,152 @@
+fileFormatVersion: 2
+guid: e70e5de49031acf4db04de55a9a01e45
+timeCreated: 1471323711
+licenseType: Free
+PluginImporter:
+ serializedVersion: 2
+ iconMap: {}
+ executionOrder: {}
+ isPreloaded: 0
+ isOverridable: 0
+ platformData:
+ data:
+ first:
+ '': Any
+ second:
+ enabled: 0
+ settings:
+ Exclude Android: 0
+ Exclude Editor: 0
+ Exclude Linux: 0
+ Exclude Linux64: 0
+ Exclude LinuxUniversal: 0
+ Exclude OSXIntel: 0
+ Exclude OSXIntel64: 0
+ Exclude OSXUniversal: 0
+ Exclude WebGL: 0
+ Exclude Win: 0
+ Exclude Win64: 0
+ Exclude iOS: 0
+ data:
+ first:
+ '': Editor
+ second:
+ enabled: 0
+ settings:
+ CPU: AnyCPU
+ OS: AnyOS
+ data:
+ first:
+ Android: Android
+ second:
+ enabled: 1
+ settings:
+ CPU: ARMv7
+ data:
+ first:
+ Any:
+ second:
+ enabled: 1
+ settings: {}
+ data:
+ first:
+ Editor: Editor
+ second:
+ enabled: 1
+ settings:
+ CPU: x86_64
+ DefaultValueInitialized: true
+ data:
+ first:
+ Facebook: Win
+ second:
+ enabled: 0
+ settings:
+ CPU: None
+ data:
+ first:
+ Facebook: Win64
+ second:
+ enabled: 1
+ settings:
+ CPU: AnyCPU
+ data:
+ first:
+ Standalone: Linux
+ second:
+ enabled: 1
+ settings:
+ CPU: None
+ data:
+ first:
+ Standalone: Linux64
+ second:
+ enabled: 1
+ settings:
+ CPU: x86_64
+ data:
+ first:
+ Standalone: LinuxUniversal
+ second:
+ enabled: 1
+ settings:
+ CPU: x86_64
+ data:
+ first:
+ Standalone: OSXIntel
+ second:
+ enabled: 1
+ settings:
+ CPU: None
+ data:
+ first:
+ Standalone: OSXIntel64
+ second:
+ enabled: 1
+ settings:
+ CPU: AnyCPU
+ data:
+ first:
+ Standalone: OSXUniversal
+ second:
+ enabled: 1
+ settings:
+ CPU: x86_64
+ data:
+ first:
+ Standalone: Win
+ second:
+ enabled: 1
+ settings:
+ CPU: None
+ data:
+ first:
+ Standalone: Win64
+ second:
+ enabled: 1
+ settings:
+ CPU: AnyCPU
+ data:
+ first:
+ WebGL: WebGL
+ second:
+ enabled: 1
+ settings: {}
+ data:
+ first:
+ Windows Store Apps: WindowsStoreApps
+ second:
+ enabled: 0
+ settings:
+ CPU: AnyCPU
+ data:
+ first:
+ iPhone: iOS
+ second:
+ enabled: 1
+ settings:
+ CompileFlags:
+ FrameworkDependencies:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/unity_pupil_plugin/Assets/Prefab.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab.meta
similarity index 67%
rename from unity_pupil_plugin/Assets/Prefab.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Prefab.meta
index 09b9a48c..b6653680 100644
--- a/unity_pupil_plugin/Assets/Prefab.meta
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab.meta
@@ -1,7 +1,7 @@
fileFormatVersion: 2
-guid: 5eeb8e18af957b84c8a2870fce884fda
+guid: cf1f6030490178741b82ef9c389c6b31
folderAsset: yes
-timeCreated: 1489335246
+timeCreated: 1501370909
licenseType: Free
DefaultImporter:
userData:
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Calibration Scene.prefab b/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Calibration Scene.prefab
new file mode 100644
index 00000000..2e1ca03b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Calibration Scene.prefab
@@ -0,0 +1,1119 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1001 &100100000
+Prefab:
+ m_ObjectHideFlags: 1
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications: []
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 0}
+ m_RootGameObject: {fileID: 1884977259054048}
+ m_IsPrefabParent: 1
+--- !u!1 &1390130202119930
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 4803166649572190}
+ - component: {fileID: 20715853296651360}
+ - component: {fileID: 92825431667423550}
+ - component: {fileID: 124731014815963418}
+ - component: {fileID: 81113067995086100}
+ - component: {fileID: 114183052706794194}
+ m_Layer: 0
+ m_Name: Main Camera
+ m_TagString: MainCamera
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!1 &1421942848299102
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 4621892831616974}
+ - component: {fileID: 20264543746337908}
+ - component: {fileID: 124612344761341120}
+ - component: {fileID: 92403179145183418}
+ - component: {fileID: 81086168920007664}
+ m_Layer: 5
+ m_Name: Camera
+ m_TagString: MainCamera
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1452964750218904
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 4635341404453392}
+ - component: {fileID: 114059430647369094}
+ - component: {fileID: 114998737830956956}
+ m_Layer: 0
+ m_Name: PupilGazeTracker
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1503278351909044
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224792447864871018}
+ - component: {fileID: 222833169380758562}
+ - component: {fileID: 114815085525388082}
+ m_Layer: 5
+ m_Name: CalibrateText
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1539778217434270
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 4197753051062530}
+ - component: {fileID: 108787250050708206}
+ m_Layer: 0
+ m_Name: Directional light
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!1 &1591693907658638
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224872031458685736}
+ - component: {fileID: 222946340469220008}
+ - component: {fileID: 114649936649580630}
+ m_Layer: 5
+ m_Name: ConnectingText
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1655339789178114
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224344998489780512}
+ - component: {fileID: 222410827078137416}
+ - component: {fileID: 114444312486193036}
+ m_Layer: 5
+ m_Name: SuccessText
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1658491543928136
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224383336597107962}
+ - component: {fileID: 222792205917423104}
+ - component: {fileID: 114099574485509662}
+ m_Layer: 5
+ m_Name: CalibrationEndedText
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1728695423201934
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224953320357145470}
+ - component: {fileID: 223132280035159742}
+ - component: {fileID: 114482203834872886}
+ - component: {fileID: 114663932687713846}
+ - component: {fileID: 114209128291701252}
+ m_Layer: 5
+ m_Name: Pupil Demo Manager
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1792887589903932
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 4623582075537076}
+ - component: {fileID: 114254195377903898}
+ - component: {fileID: 114642037208513276}
+ m_Layer: 0
+ m_Name: EventSystem
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1884977259054048
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 4432854479943544}
+ m_Layer: 0
+ m_Name: Calibration Scene
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &4197753051062530
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1539778217434270}
+ m_LocalRotation: {x: 0.40821797, y: -0.23456973, z: 0.10938168, w: 0.87542605}
+ m_LocalPosition: {x: -5.03, y: 0.33906257, z: -7.88}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 4432854479943544}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &4432854479943544
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1884977259054048}
+ 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: 4803166649572190}
+ - {fileID: 4197753051062530}
+ - {fileID: 224953320357145470}
+ - {fileID: 4635341404453392}
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &4621892831616974
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1421942848299102}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: -6.74}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 224792447864871018}
+ - {fileID: 224872031458685736}
+ - {fileID: 224344998489780512}
+ - {fileID: 224383336597107962}
+ m_Father: {fileID: 224953320357145470}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &4623582075537076
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1792887589903932}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -250, y: -140.5, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 224953320357145470}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &4635341404453392
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1452964750218904}
+ 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: 4432854479943544}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &4803166649572190
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1390130202119930}
+ 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: 4432854479943544}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!20 &20264543746337908
+Camera:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1421942848299102}
+ m_Enabled: 1
+ serializedVersion: 2
+ m_ClearFlags: 2
+ m_BackGroundColor: {r: 0.49264705, g: 0.49264705, b: 0.49264705, a: 1}
+ m_NormalizedViewPortRect:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 1
+ height: 1
+ near clip plane: 0.3
+ far clip plane: 1000
+ field of view: 60
+ orthographic: 0
+ orthographic size: 5
+ m_Depth: -1
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_RenderingPath: -1
+ m_TargetTexture: {fileID: 0}
+ m_TargetDisplay: 0
+ m_TargetEye: 3
+ m_HDR: 1
+ m_AllowMSAA: 1
+ m_ForceIntoRT: 0
+ m_OcclusionCulling: 1
+ m_StereoConvergence: 10
+ m_StereoSeparation: 0.022
+ m_StereoMirrorMode: 0
+--- !u!20 &20715853296651360
+Camera:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1390130202119930}
+ m_Enabled: 1
+ serializedVersion: 2
+ m_ClearFlags: 1
+ m_BackGroundColor: {r: 0.3019608, g: 0.3019608, b: 0.3019608, a: 0.019607844}
+ m_NormalizedViewPortRect:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 1
+ height: 1
+ near clip plane: 0.01
+ far clip plane: 1000
+ field of view: 111
+ orthographic: 0
+ orthographic size: 5.2
+ m_Depth: -1
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_RenderingPath: -1
+ m_TargetTexture: {fileID: 0}
+ m_TargetDisplay: 0
+ m_TargetEye: 3
+ m_HDR: 0
+ m_AllowMSAA: 1
+ m_ForceIntoRT: 0
+ m_OcclusionCulling: 1
+ m_StereoConvergence: 10
+ m_StereoSeparation: 0.022
+ m_StereoMirrorMode: 0
+--- !u!81 &81086168920007664
+AudioListener:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1421942848299102}
+ m_Enabled: 1
+--- !u!81 &81113067995086100
+AudioListener:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1390130202119930}
+ m_Enabled: 1
+--- !u!92 &92403179145183418
+Behaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1421942848299102}
+ m_Enabled: 1
+--- !u!92 &92825431667423550
+Behaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1390130202119930}
+ m_Enabled: 1
+--- !u!108 &108787250050708206
+Light:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1539778217434270}
+ m_Enabled: 1
+ serializedVersion: 8
+ m_Type: 1
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_Intensity: 1
+ m_Range: 10
+ m_SpotAngle: 30
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 0
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_Lightmapping: 4
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+--- !u!114 &114059430647369094
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1452964750218904}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 9d79fb3cd34cd6641b1dba5b63fc4235, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+--- !u!114 &114099574485509662
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1658491543928136}
+ m_Enabled: 0
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.9044118, g: 0.9044118, b: 0.9044118, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 64
+ m_FontStyle: 1
+ m_BestFit: 0
+ m_MinSize: 0
+ m_MaxSize: 100
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Calibration ended.
+--- !u!114 &114183052706794194
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1390130202119930}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: c2f0a0cc2a470c9489642b0aa47db38a, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+--- !u!114 &114209128291701252
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1728695423201934}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2c25fee72b3443e4e9f7697f8ec38c58, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ gameObjectsToEnable:
+ - {fileID: 1390130202119930}
+ - {fileID: 1539778217434270}
+ GUITexts:
+ - {fileID: 114815085525388082}
+ - {fileID: 114649936649580630}
+ - {fileID: 114444312486193036}
+ - {fileID: 114099574485509662}
+ pupilTracker: {fileID: 0}
+ pupilDataReceiver: {fileID: 0}
+--- !u!114 &114254195377903898
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1792887589903932}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -619905303, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_FirstSelected: {fileID: 0}
+ m_sendNavigationEvents: 1
+ m_DragThreshold: 5
+--- !u!114 &114444312486193036
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1655339789178114}
+ m_Enabled: 0
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.9044118, g: 0.9044118, b: 0.9044118, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 64
+ m_FontStyle: 1
+ m_BestFit: 0
+ m_MinSize: 0
+ m_MaxSize: 100
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Success
+--- !u!114 &114482203834872886
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1728695423201934}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_UiScaleMode: 0
+ m_ReferencePixelsPerUnit: 100
+ m_ScaleFactor: 1
+ m_ReferenceResolution: {x: 800, y: 600}
+ m_ScreenMatchMode: 0
+ m_MatchWidthOrHeight: 0
+ m_PhysicalUnit: 3
+ m_FallbackScreenDPI: 96
+ m_DefaultSpriteDPI: 96
+ m_DynamicPixelsPerUnit: 1
+--- !u!114 &114642037208513276
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1792887589903932}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1077351063, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_HorizontalAxis: Horizontal
+ m_VerticalAxis: Vertical
+ m_SubmitButton: Submit
+ m_CancelButton: Cancel
+ m_InputActionsPerSecond: 10
+ m_RepeatDelay: 0.5
+ m_ForceModuleActive: 0
+--- !u!114 &114649936649580630
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1591693907658638}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.9044118, g: 0.9044118, b: 0.9044118, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 64
+ m_FontStyle: 1
+ m_BestFit: 0
+ m_MinSize: 0
+ m_MaxSize: 100
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Connecting to pupil.
+--- !u!114 &114663932687713846
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1728695423201934}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_IgnoreReversedGraphics: 1
+ m_BlockingObjects: 0
+ m_BlockingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+--- !u!114 &114815085525388082
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1503278351909044}
+ m_Enabled: 0
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.9044118, g: 0.9044118, b: 0.9044118, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 64
+ m_FontStyle: 1
+ m_BestFit: 0
+ m_MinSize: 0
+ m_MaxSize: 100
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Press 'c' to start Calibration
+--- !u!114 &114998737830956956
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1452964750218904}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 37bc500822e7a454b8d29726c95a51b1, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ Settings: {fileID: 11400000, guid: 19e52fef3bed37e4f9089d08d7c1773e, type: 2}
+ recorder:
+ codec: 0
+ resolution: 0
+ filePath:
+ isFixedRecordingLength: 0
+ recordingLength: 10
+ isCustomPath: 0
+ ProjectName:
+ isOperatorMonitor: 0
+ OperatorMonitorProperties: []
+ CanvasWidth: 640
+ CanvasHeight: 480
+ saved: 0
+ SettingsTab: 1
+ Codec: 1
+ PupilServicePath:
+ PupilServiceFileName:
+ Styles: []
+ FoldOutStyle:
+ m_Name:
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 0
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ ButtonStyle:
+ m_Name:
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 0
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ TextField:
+ m_Name:
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 0
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ CalibRowStyle:
+ m_Name:
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 0
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ Platforms: []
+--- !u!124 &124612344761341120
+Behaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1421942848299102}
+ m_Enabled: 1
+--- !u!124 &124731014815963418
+Behaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1390130202119930}
+ m_Enabled: 1
+--- !u!222 &222410827078137416
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1655339789178114}
+--- !u!222 &222792205917423104
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1658491543928136}
+--- !u!222 &222833169380758562
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1503278351909044}
+--- !u!222 &222946340469220008
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1591693907658638}
+--- !u!223 &223132280035159742
+Canvas:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1728695423201934}
+ m_Enabled: 1
+ serializedVersion: 3
+ m_RenderMode: 2
+ m_Camera: {fileID: 0}
+ m_PlaneDistance: 100
+ m_PixelPerfect: 0
+ m_ReceivesEvents: 1
+ m_OverrideSorting: 0
+ m_OverridePixelPerfect: 0
+ m_SortingBucketNormalizedSize: 0
+ m_AdditionalShaderChannelsFlag: 0
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_TargetDisplay: 0
+--- !u!224 &224344998489780512
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1655339789178114}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 2}
+ m_LocalScale: {x: 0.002, y: 0.002, z: 0.002}
+ m_Children: []
+ m_Father: {fileID: 4621892831616974}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 160, y: 30}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &224383336597107962
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1658491543928136}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 2}
+ m_LocalScale: {x: 0.002, y: 0.002, z: 0.002}
+ m_Children: []
+ m_Father: {fileID: 4621892831616974}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 160, y: 30}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &224792447864871018
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1503278351909044}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 2}
+ m_LocalScale: {x: 0.002, y: 0.002, z: 0.002}
+ m_Children: []
+ m_Father: {fileID: 4621892831616974}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 160, y: 30}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &224872031458685736
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1591693907658638}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 2}
+ m_LocalScale: {x: 0.002, y: 0.002, z: 0.002}
+ m_Children: []
+ m_Father: {fileID: 4621892831616974}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 160, y: 30}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &224953320357145470
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1728695423201934}
+ 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: 4623582075537076}
+ - {fileID: 4621892831616974}
+ m_Father: {fileID: 4432854479943544}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 0, y: 0}
+ m_AnchoredPosition: {x: 250, y: 140.5}
+ m_SizeDelta: {x: 500, y: 281}
+ m_Pivot: {x: 0.5, y: 0.5}
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Calibration Scene.prefab.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Calibration Scene.prefab.meta
new file mode 100644
index 00000000..a6376416
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Calibration Scene.prefab.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 6867d7df8e994d1408f20e1c72b7ad5f
+timeCreated: 1508397562
+licenseType: Free
+NativeFormatImporter:
+ mainObjectFileID: 100100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Calibrator.prefab b/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Calibrator.prefab
new file mode 100644
index 00000000..ff5b4bde
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Calibrator.prefab
@@ -0,0 +1,690 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1001 &100100000
+Prefab:
+ m_ObjectHideFlags: 1
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications: []
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 0}
+ m_RootGameObject: {fileID: 1900954525868746}
+ m_IsPrefabParent: 1
+--- !u!1 &1038815991347798
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 4310403431059206}
+ - component: {fileID: 33841528796779522}
+ - component: {fileID: 135946148996226496}
+ - component: {fileID: 23236454709905520}
+ - component: {fileID: 114261795870838450}
+ - component: {fileID: 114987793036404242}
+ m_Layer: 0
+ m_Name: Calib Marker 3D
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1065724870345650
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 4255341654650898}
+ - component: {fileID: 212405602398045314}
+ m_Layer: 0
+ m_Name: PupilLabsLogoHalo
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1294725992325544
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224450257909794120}
+ - component: {fileID: 222379288513904908}
+ - component: {fileID: 114974959889828606}
+ - component: {fileID: 114515216257264180}
+ m_Layer: 5
+ m_Name: Left
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1408230111750866
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224474126401361306}
+ - component: {fileID: 222301294101297002}
+ - component: {fileID: 114887725057031792}
+ - component: {fileID: 114692100753026640}
+ m_Layer: 5
+ m_Name: Right
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1434393822544750
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224564109532545326}
+ - component: {fileID: 222791886262420168}
+ - component: {fileID: 114500508673938368}
+ - component: {fileID: 114225390632320678}
+ m_Layer: 5
+ m_Name: Center
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1490343219193972
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224757464362285736}
+ - component: {fileID: 223870205926031062}
+ - component: {fileID: 114142605631166750}
+ - component: {fileID: 114333534866741780}
+ m_Layer: 5
+ m_Name: 2D Calibrator
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 0
+--- !u!1 &1526451957728790
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 4758200784806822}
+ m_Layer: 0
+ m_Name: 3D Calibrator
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1749600808516088
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224346978742238822}
+ - component: {fileID: 222638729215164620}
+ - component: {fileID: 114047457366213976}
+ - component: {fileID: 114555811258830480}
+ m_Layer: 5
+ m_Name: Calib
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1900954525868746
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 4655564185491128}
+ m_Layer: 0
+ m_Name: Calibrator
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &4255341654650898
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1065724870345650}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: -2.3186665}
+ m_LocalScale: {x: 0.21000028, y: 0.21000028, z: 0.21000028}
+ m_Children: []
+ m_Father: {fileID: 4310403431059206}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &4310403431059206
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1038815991347798}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 183.9}
+ m_LocalScale: {x: 75, y: 75, z: 75}
+ m_Children:
+ - {fileID: 4255341654650898}
+ m_Father: {fileID: 4758200784806822}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &4655564185491128
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1900954525868746}
+ 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: 224757464362285736}
+ - {fileID: 4758200784806822}
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &4758200784806822
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1526451957728790}
+ 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: 4310403431059206}
+ m_Father: {fileID: 4655564185491128}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &23236454709905520
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1038815991347798}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_Materials:
+ - {fileID: 2100000, guid: f2d1aabd769af2d46a31029ba0931924, 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: 1
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 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
+--- !u!33 &33841528796779522
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1038815991347798}
+ m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!114 &114047457366213976
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1749600808516088}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 21300000, guid: 3eaf5bd721bd77c48b828424b366f9fa, type: 3}
+ m_Type: 0
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!114 &114142605631166750
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1490343219193972}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_UiScaleMode: 0
+ m_ReferencePixelsPerUnit: 100
+ m_ScaleFactor: 1
+ m_ReferenceResolution: {x: 800, y: 600}
+ m_ScreenMatchMode: 0
+ m_MatchWidthOrHeight: 0
+ m_PhysicalUnit: 3
+ m_FallbackScreenDPI: 96
+ m_DefaultSpriteDPI: 96
+ m_DynamicPixelsPerUnit: 1
+--- !u!114 &114225390632320678
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1434393822544750}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b4c4123fb99b2da499b05fc96e128bea, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ gaze: {fileID: 224564109532545326}
+ Gaze: 2
+--- !u!114 &114261795870838450
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1038815991347798}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 00120f179b7e1fe46a071ca42050700b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ animTotalLength: 1250
+ animSegmentAmount: 50
+ pulsateSpeed: 2.66
+ maxScale: 0.4
+ minScale: 0.2
+ StartColor:
+ r: 1
+ g: 1
+ b: 1
+ a: 0.097
+ EndColor:
+ r: 0.014705896
+ g: 1
+ b: 0.6667387
+ a: 1
+ sprite: {fileID: 21300000, guid: 1ee5eefb70c8fce43a427b0303b4fbff, type: 3}
+ tmp: 0
+--- !u!114 &114333534866741780
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1490343219193972}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_IgnoreReversedGraphics: 1
+ m_BlockingObjects: 0
+ m_BlockingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+--- !u!114 &114500508673938368
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1434393822544750}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0, g: 1, b: 0.006896496, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 21300000, guid: 3eaf5bd721bd77c48b828424b366f9fa, type: 3}
+ m_Type: 0
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!114 &114515216257264180
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1294725992325544}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b4c4123fb99b2da499b05fc96e128bea, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ gaze: {fileID: 224450257909794120}
+ Gaze: 0
+--- !u!114 &114555811258830480
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1749600808516088}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 913205bf7c7312d4da2119b1b3ce7fce, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+--- !u!114 &114692100753026640
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1408230111750866}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b4c4123fb99b2da499b05fc96e128bea, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ gaze: {fileID: 224474126401361306}
+ Gaze: 1
+--- !u!114 &114887725057031792
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1408230111750866}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.2827587, g: 0, b: 1, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 21300000, guid: 3eaf5bd721bd77c48b828424b366f9fa, type: 3}
+ m_Type: 0
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!114 &114974959889828606
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1294725992325544}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 1, g: 0, b: 0, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_Sprite: {fileID: 21300000, guid: 3eaf5bd721bd77c48b828424b366f9fa, type: 3}
+ m_Type: 0
+ m_PreserveAspect: 0
+ m_FillCenter: 1
+ m_FillMethod: 4
+ m_FillAmount: 1
+ m_FillClockwise: 1
+ m_FillOrigin: 0
+--- !u!114 &114987793036404242
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1038815991347798}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: b66174d84320ed2419f3e4a129987f8e, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+--- !u!135 &135946148996226496
+SphereCollider:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1038815991347798}
+ m_Material: {fileID: 0}
+ m_IsTrigger: 0
+ m_Enabled: 1
+ serializedVersion: 2
+ m_Radius: 0.5
+ m_Center: {x: 0, y: 0, z: 0}
+--- !u!212 &212405602398045314
+SpriteRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1065724870345650}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
+ 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_SelectedEditorRenderState: 0
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_SortingLayerID: 0
+ m_SortingLayer: 0
+ m_SortingOrder: 0
+ m_Sprite: {fileID: 21300000, guid: 4962bd8d79659064fbd96a19ed19a397, type: 3}
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
+ m_FlipX: 0
+ m_FlipY: 0
+ m_DrawMode: 0
+ m_Size: {x: 1, y: 1}
+ m_AdaptiveModeThreshold: 0.5
+ m_SpriteTileMode: 0
+ m_WasSpriteAssigned: 1
+ m_MaskInteraction: 0
+--- !u!222 &222301294101297002
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1408230111750866}
+--- !u!222 &222379288513904908
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1294725992325544}
+--- !u!222 &222638729215164620
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1749600808516088}
+--- !u!222 &222791886262420168
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1434393822544750}
+--- !u!223 &223870205926031062
+Canvas:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1490343219193972}
+ m_Enabled: 1
+ serializedVersion: 3
+ m_RenderMode: 1
+ m_Camera: {fileID: 0}
+ m_PlaneDistance: 569.4
+ m_PixelPerfect: 0
+ m_ReceivesEvents: 1
+ m_OverrideSorting: 0
+ m_OverridePixelPerfect: 0
+ m_SortingBucketNormalizedSize: 0
+ m_AdditionalShaderChannelsFlag: 25
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_TargetDisplay: 0
+--- !u!224 &224346978742238822
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1749600808516088}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0.7758578, y: 0.7758578, z: 0.7758578}
+ m_Children: []
+ m_Father: {fileID: 224757464362285736}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 100, y: 100}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &224450257909794120
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1294725992325544}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0.3678976, y: 0.36789754, z: 0.36789754}
+ m_Children: []
+ m_Father: {fileID: 224757464362285736}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 100, y: 100}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &224474126401361306
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1408230111750866}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0.36789757, y: 0.3678975, z: 0.3678975}
+ m_Children: []
+ m_Father: {fileID: 224757464362285736}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 100, y: 100}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &224564109532545326
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1434393822544750}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0.36789757, y: 0.3678975, z: 0.3678975}
+ m_Children: []
+ m_Father: {fileID: 224757464362285736}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 100, y: 100}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &224757464362285736
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1490343219193972}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 0}
+ m_LocalScale: {x: 0, y: 0, z: 0}
+ m_Children:
+ - {fileID: 224346978742238822}
+ - {fileID: 224450257909794120}
+ - {fileID: 224474126401361306}
+ - {fileID: 224564109532545326}
+ m_Father: {fileID: 4655564185491128}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 0, y: 0}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 0, y: 0}
+ m_Pivot: {x: 0, y: 0}
diff --git a/unity_pupil_plugin/Assets/Prefab/Calibrator.prefab.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Calibrator.prefab.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Prefab/Calibrator.prefab.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Calibrator.prefab.meta
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Pupil Demo Manager.prefab b/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Pupil Demo Manager.prefab
new file mode 100644
index 00000000..cc1ba7e2
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Pupil Demo Manager.prefab
@@ -0,0 +1,581 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1001 &100100000
+Prefab:
+ m_ObjectHideFlags: 1
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications: []
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 0}
+ m_RootGameObject: {fileID: 1508411167041054}
+ m_IsPrefabParent: 1
+--- !u!1 &1031051262706332
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224489652661705770}
+ - component: {fileID: 222974940113162550}
+ - component: {fileID: 114039916137019804}
+ m_Layer: 5
+ m_Name: SuccessText
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1320934553465610
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224292964981741348}
+ - component: {fileID: 222179253814665414}
+ - component: {fileID: 114921030041978622}
+ m_Layer: 5
+ m_Name: ConnectingText
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1457256292477380
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 4149187830991734}
+ - component: {fileID: 20090834490174222}
+ - component: {fileID: 124459409914551746}
+ - component: {fileID: 92574340873809620}
+ - component: {fileID: 81355834346760454}
+ m_Layer: 5
+ m_Name: Camera
+ m_TagString: MainCamera
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1476835490903132
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224739218255644684}
+ - component: {fileID: 222121525052262418}
+ - component: {fileID: 114234863500188354}
+ m_Layer: 5
+ m_Name: CalibrationEndedText
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1484048796364622
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 4823115167990284}
+ - component: {fileID: 114470348129894920}
+ - component: {fileID: 114837852808114116}
+ m_Layer: 0
+ m_Name: EventSystem
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1508411167041054
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224528166007893496}
+ - component: {fileID: 223586385069592640}
+ - component: {fileID: 114653625045693704}
+ - component: {fileID: 114940176711967110}
+ - component: {fileID: 114039770744552444}
+ m_Layer: 5
+ m_Name: Pupil Demo Manager
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!1 &1723152480655916
+GameObject:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 224981369576734126}
+ - component: {fileID: 222215909153279826}
+ - component: {fileID: 114230679173381060}
+ m_Layer: 5
+ m_Name: CalibrateText
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &4149187830991734
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1457256292477380}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: -6.74}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children:
+ - {fileID: 224981369576734126}
+ - {fileID: 224292964981741348}
+ - {fileID: 224489652661705770}
+ - {fileID: 224739218255644684}
+ m_Father: {fileID: 224528166007893496}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!4 &4823115167990284
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1484048796364622}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: -250, y: -140.5, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_Children: []
+ m_Father: {fileID: 224528166007893496}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!20 &20090834490174222
+Camera:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1457256292477380}
+ m_Enabled: 1
+ serializedVersion: 2
+ m_ClearFlags: 2
+ m_BackGroundColor: {r: 0.49264705, g: 0.49264705, b: 0.49264705, a: 1}
+ m_NormalizedViewPortRect:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 1
+ height: 1
+ near clip plane: 0.3
+ far clip plane: 1000
+ field of view: 60
+ orthographic: 0
+ orthographic size: 5
+ m_Depth: -1
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_RenderingPath: -1
+ m_TargetTexture: {fileID: 0}
+ m_TargetDisplay: 0
+ m_TargetEye: 3
+ m_HDR: 1
+ m_AllowMSAA: 1
+ m_ForceIntoRT: 0
+ m_OcclusionCulling: 1
+ m_StereoConvergence: 10
+ m_StereoSeparation: 0.022
+ m_StereoMirrorMode: 0
+--- !u!81 &81355834346760454
+AudioListener:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1457256292477380}
+ m_Enabled: 1
+--- !u!92 &92574340873809620
+Behaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1457256292477380}
+ m_Enabled: 1
+--- !u!114 &114039770744552444
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1508411167041054}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2c25fee72b3443e4e9f7697f8ec38c58, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ gameObjectsToEnable:
+ - {fileID: 0}
+ - {fileID: 0}
+ GUITexts:
+ - {fileID: 114230679173381060}
+ - {fileID: 114921030041978622}
+ - {fileID: 114039916137019804}
+ - {fileID: 114234863500188354}
+ pupilTracker: {fileID: 0}
+ pupilDataReceiver: {fileID: 0}
+--- !u!114 &114039916137019804
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1031051262706332}
+ m_Enabled: 0
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.9044118, g: 0.9044118, b: 0.9044118, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 64
+ m_FontStyle: 1
+ m_BestFit: 0
+ m_MinSize: 0
+ m_MaxSize: 100
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Success
+--- !u!114 &114230679173381060
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1723152480655916}
+ m_Enabled: 0
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.9044118, g: 0.9044118, b: 0.9044118, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 64
+ m_FontStyle: 1
+ m_BestFit: 0
+ m_MinSize: 0
+ m_MaxSize: 100
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Press 'c' to start Calibration
+--- !u!114 &114234863500188354
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1476835490903132}
+ m_Enabled: 0
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.9044118, g: 0.9044118, b: 0.9044118, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 64
+ m_FontStyle: 1
+ m_BestFit: 0
+ m_MinSize: 0
+ m_MaxSize: 100
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Calibration ended.
+--- !u!114 &114470348129894920
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1484048796364622}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: -619905303, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_FirstSelected: {fileID: 0}
+ m_sendNavigationEvents: 1
+ m_DragThreshold: 5
+--- !u!114 &114653625045693704
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1508411167041054}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_UiScaleMode: 0
+ m_ReferencePixelsPerUnit: 100
+ m_ScaleFactor: 1
+ m_ReferenceResolution: {x: 800, y: 600}
+ m_ScreenMatchMode: 0
+ m_MatchWidthOrHeight: 0
+ m_PhysicalUnit: 3
+ m_FallbackScreenDPI: 96
+ m_DefaultSpriteDPI: 96
+ m_DynamicPixelsPerUnit: 1
+--- !u!114 &114837852808114116
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1484048796364622}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1077351063, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_HorizontalAxis: Horizontal
+ m_VerticalAxis: Vertical
+ m_SubmitButton: Submit
+ m_CancelButton: Cancel
+ m_InputActionsPerSecond: 10
+ m_RepeatDelay: 0.5
+ m_ForceModuleActive: 0
+--- !u!114 &114921030041978622
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1320934553465610}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_Material: {fileID: 0}
+ m_Color: {r: 0.9044118, g: 0.9044118, b: 0.9044118, a: 1}
+ m_RaycastTarget: 1
+ m_OnCullStateChanged:
+ m_PersistentCalls:
+ m_Calls: []
+ m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
+ Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
+ m_FontData:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 64
+ m_FontStyle: 1
+ m_BestFit: 0
+ m_MinSize: 0
+ m_MaxSize: 100
+ m_Alignment: 4
+ m_AlignByGeometry: 0
+ m_RichText: 1
+ m_HorizontalOverflow: 1
+ m_VerticalOverflow: 1
+ m_LineSpacing: 1
+ m_Text: Connecting to pupil.
+--- !u!114 &114940176711967110
+MonoBehaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1508411167041054}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_IgnoreReversedGraphics: 1
+ m_BlockingObjects: 0
+ m_BlockingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+--- !u!124 &124459409914551746
+Behaviour:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1457256292477380}
+ m_Enabled: 1
+--- !u!222 &222121525052262418
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1476835490903132}
+--- !u!222 &222179253814665414
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1320934553465610}
+--- !u!222 &222215909153279826
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1723152480655916}
+--- !u!222 &222974940113162550
+CanvasRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1031051262706332}
+--- !u!223 &223586385069592640
+Canvas:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1508411167041054}
+ m_Enabled: 1
+ serializedVersion: 3
+ m_RenderMode: 2
+ m_Camera: {fileID: 0}
+ m_PlaneDistance: 100
+ m_PixelPerfect: 0
+ m_ReceivesEvents: 1
+ m_OverrideSorting: 0
+ m_OverridePixelPerfect: 0
+ m_SortingBucketNormalizedSize: 0
+ m_AdditionalShaderChannelsFlag: 0
+ m_SortingLayerID: 0
+ m_SortingOrder: 0
+ m_TargetDisplay: 0
+--- !u!224 &224292964981741348
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1320934553465610}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 2}
+ m_LocalScale: {x: 0.002, y: 0.002, z: 0.002}
+ m_Children: []
+ m_Father: {fileID: 4149187830991734}
+ m_RootOrder: 1
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 160, y: 30}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &224489652661705770
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1031051262706332}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 2}
+ m_LocalScale: {x: 0.002, y: 0.002, z: 0.002}
+ m_Children: []
+ m_Father: {fileID: 4149187830991734}
+ m_RootOrder: 2
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 160, y: 30}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &224528166007893496
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1508411167041054}
+ 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: 4823115167990284}
+ - {fileID: 4149187830991734}
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0, y: 0}
+ m_AnchorMax: {x: 0, y: 0}
+ m_AnchoredPosition: {x: 250, y: 140.5}
+ m_SizeDelta: {x: 500, y: 281}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &224739218255644684
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1476835490903132}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 2}
+ m_LocalScale: {x: 0.002, y: 0.002, z: 0.002}
+ m_Children: []
+ m_Father: {fileID: 4149187830991734}
+ m_RootOrder: 3
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 160, y: 30}
+ m_Pivot: {x: 0.5, y: 0.5}
+--- !u!224 &224981369576734126
+RectTransform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1723152480655916}
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
+ m_LocalPosition: {x: 0, y: 0, z: 2}
+ m_LocalScale: {x: 0.002, y: 0.002, z: 0.002}
+ m_Children: []
+ m_Father: {fileID: 4149187830991734}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+ m_AnchorMin: {x: 0.5, y: 0.5}
+ m_AnchorMax: {x: 0.5, y: 0.5}
+ m_AnchoredPosition: {x: 0, y: 0}
+ m_SizeDelta: {x: 160, y: 30}
+ m_Pivot: {x: 0.5, y: 0.5}
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Pupil Demo Manager.prefab.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Pupil Demo Manager.prefab.meta
new file mode 100644
index 00000000..c518e98b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Prefab/Pupil Demo Manager.prefab.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 1a363ebd9791e7d48a02435c46d956ab
+timeCreated: 1501520462
+licenseType: Free
+NativeFormatImporter:
+ mainObjectFileID: 100100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/unity_pupil_plugin/Assets/Resources.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources.meta
similarity index 67%
rename from unity_pupil_plugin/Assets/Resources.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources.meta
index a6e75ef6..7805ebf2 100644
--- a/unity_pupil_plugin/Assets/Resources.meta
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources.meta
@@ -1,7 +1,7 @@
fileFormatVersion: 2
-guid: 3a5293177c8af544bbe69830971924de
+guid: b9150d94bf09d6847a1d3864176dbb84
folderAsset: yes
-timeCreated: 1488964478
+timeCreated: 1501370909
licenseType: Free
DefaultImporter:
userData:
diff --git a/unity_pupil_plugin/Assets/Resources/CalibrationMarker.png b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/CalibrationMarker.png
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/CalibrationMarker.png
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/CalibrationMarker.png
diff --git a/unity_pupil_plugin/Assets/Resources/CalibrationMarker.png.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/CalibrationMarker.png.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/CalibrationMarker.png.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/CalibrationMarker.png.meta
diff --git a/unity_pupil_plugin/Assets/Resources/ItemInfo.json b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/ItemInfo.json
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/ItemInfo.json
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/ItemInfo.json
diff --git a/unity_pupil_plugin/Assets/Resources/ItemInfo.json.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/ItemInfo.json.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/ItemInfo.json.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/ItemInfo.json.meta
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/MarkerMaterial.mat b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/MarkerMaterial.mat
new file mode 100644
index 00000000..ea8bb1ba
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/MarkerMaterial.mat
@@ -0,0 +1,81 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: MarkerMaterial
+ m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: _EMISSION _GLOSSYREFLECTIONS_OFF _SPECULARHIGHLIGHTS_OFF
+ m_LightmapFlags: 2
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _SpecGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 0
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 0
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 1, g: 0, b: 0, a: 1}
+ - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
diff --git a/unity_pupil_plugin/Assets/Resources/New Material.mat.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/MarkerMaterial.mat.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/New Material.mat.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/MarkerMaterial.mat.meta
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/MarkerObject.prefab b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/MarkerObject.prefab
new file mode 100644
index 00000000..90f44daf
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/MarkerObject.prefab
@@ -0,0 +1,82 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1001 &100100000
+Prefab:
+ m_ObjectHideFlags: 1
+ serializedVersion: 2
+ m_Modification:
+ m_TransformParent: {fileID: 0}
+ m_Modifications: []
+ m_RemovedComponents: []
+ m_ParentPrefab: {fileID: 0}
+ m_RootGameObject: {fileID: 1844563681802056}
+ m_IsPrefabParent: 1
+--- !u!1 &1844563681802056
+GameObject:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ serializedVersion: 5
+ m_Component:
+ - component: {fileID: 4003686997055484}
+ - component: {fileID: 33587596784184336}
+ - component: {fileID: 23108256815177222}
+ m_Layer: 0
+ m_Name: MarkerObject
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!4 &4003686997055484
+Transform:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1844563681802056}
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 249.49854, y: 141.4007, z: -7.5441804}
+ m_LocalScale: {x: 0.05, y: 0.05, z: 0.05}
+ m_Children: []
+ m_Father: {fileID: 0}
+ m_RootOrder: 0
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!23 &23108256815177222
+MeshRenderer:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1844563681802056}
+ m_Enabled: 1
+ m_CastShadows: 0
+ m_ReceiveShadows: 1
+ m_MotionVectors: 1
+ m_LightProbeUsage: 0
+ m_ReflectionProbeUsage: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 91e6128a688d9e24781de8f61bed7ff3, 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: 1
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 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
+--- !u!33 &33587596784184336
+MeshFilter:
+ m_ObjectHideFlags: 1
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 100100000}
+ m_GameObject: {fileID: 1844563681802056}
+ m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/MarkerObject.prefab.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/MarkerObject.prefab.meta
new file mode 100644
index 00000000..cb0ac0ae
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/MarkerObject.prefab.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 9eb38c3324c80be4e92cdca48eaf7433
+timeCreated: 1508227936
+licenseType: Free
+NativeFormatImporter:
+ mainObjectFileID: 100100000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/unity_pupil_plugin/Assets/Resources/Material.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Material.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/Material.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Material.meta
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Material/New Material.mat b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Material/New Material.mat
new file mode 100644
index 00000000..954a1892
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Material/New Material.mat
@@ -0,0 +1,89 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: New Material
+ m_Shader: {fileID: 203, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords:
+ m_LightmapFlags: 4
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _AlphaTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 2800000, guid: 3eaf5bd721bd77c48b828424b366f9fa, type: 3}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - PixelSnap: 0
+ - _BumpScale: 1
+ - _Cutoff: 1
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _EnableExternalAlpha: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.5
+ - _GlossyReflections: 1
+ - _InvFade: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _Shininess: 0.319
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 0, b: 0, a: 1}
+ - _Emission: {r: 1, g: 1, b: 1, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
+ - _Flip: {r: 1, g: 1, b: 1, a: 1}
+ - _RendererColor: {r: 1, g: 1, b: 1, a: 1}
+ - _SpecColor: {r: 1, g: 1, b: 1, a: 1}
+ - _TintColor: {r: 1, g: 0, b: 0, a: 1}
diff --git a/unity_pupil_plugin/Assets/Resources/Material/New Material.mat.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Material/New Material.mat.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/Material/New Material.mat.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Material/New Material.mat.meta
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Material/Pupil.mat b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Material/Pupil.mat
new file mode 100644
index 00000000..91cd5574
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Material/Pupil.mat
@@ -0,0 +1,79 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Pupil
+ m_Shader: {fileID: 4800000, guid: b79b73a34648d3146a647839695d8858, type: 3}
+ m_ShaderKeywords: _EMISSION
+ m_LightmapFlags: 1
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.691
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _Shininess: 0.7
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 0.71323526, g: 0.361862, b: 0.361862, a: 1}
+ - _Emission: {r: 0, g: 0, b: 0, a: 0}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
+ - _SpecColor: {r: 1, g: 1, b: 1, a: 1}
diff --git a/unity_pupil_plugin/Assets/Resources/Material/Pupil.mat.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Material/Pupil.mat.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/Material/Pupil.mat.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Material/Pupil.mat.meta
diff --git a/unity_pupil_plugin/Assets/Resources/NewUnlitShader.shader b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/NewUnlitShader.shader
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/NewUnlitShader.shader
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/NewUnlitShader.shader
diff --git a/unity_pupil_plugin/Assets/Resources/NewUnlitShader.shader.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/NewUnlitShader.shader.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/NewUnlitShader.shader.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/NewUnlitShader.shader.meta
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Pupil Inspector GUIskin.guiskin b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Pupil Inspector GUIskin.guiskin
new file mode 100644
index 00000000..4b79cd6d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Pupil Inspector GUIskin.guiskin
@@ -0,0 +1,1427 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 1
+ m_Script: {fileID: 12001, guid: 0000000000000000e000000000000000, type: 0}
+ m_Name: Pupil Inspector GUIskin
+ m_EditorClassIdentifier:
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_box:
+ m_Name: box
+ m_Normal:
+ m_Background: {fileID: 11001, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0.79999995, g: 0.79999995, b: 0.79999995, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 6
+ m_Right: 6
+ m_Top: 6
+ m_Bottom: 6
+ m_Margin:
+ m_Left: 4
+ m_Right: 4
+ m_Top: 4
+ m_Bottom: 4
+ m_Padding:
+ m_Left: 4
+ m_Right: 4
+ m_Top: 4
+ m_Bottom: 4
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 1
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_button:
+ m_Name: button
+ m_Normal:
+ m_Background: {fileID: 11006, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0.9, g: 0.9, b: 0.9, a: 1}
+ m_Hover:
+ m_Background: {fileID: 11003, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 1, g: 1, b: 1, a: 1}
+ m_Active:
+ m_Background: {fileID: 11002, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0.9, g: 0.9, b: 0.9, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 1, g: 1, b: 1, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 11005, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0.9019608, g: 0.9019608, b: 0.9019608, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 11004, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 1, g: 1, b: 1, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 11002, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0.9, g: 0.9, b: 0.9, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 6
+ m_Right: 6
+ m_Top: 6
+ m_Bottom: 4
+ m_Margin:
+ m_Left: 4
+ m_Right: 4
+ m_Top: 4
+ m_Bottom: 4
+ m_Padding:
+ m_Left: 6
+ m_Right: 6
+ m_Top: 3
+ m_Bottom: 3
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 10
+ m_FontStyle: 0
+ m_Alignment: 4
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_toggle:
+ m_Name: toggle
+ m_Normal:
+ m_Background: {fileID: 11018, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0.89112896, g: 0.89112896, b: 0.89112896, a: 1}
+ m_Hover:
+ m_Background: {fileID: 11014, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 1, g: 1, b: 1, a: 1}
+ m_Active:
+ m_Background: {fileID: 11013, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 1, g: 1, b: 1, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 11016, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0.8901961, g: 0.8901961, b: 0.8901961, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 11015, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 1, g: 1, b: 1, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 11017, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 1, g: 1, b: 1, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 14
+ m_Right: 0
+ m_Top: 14
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 4
+ m_Right: 4
+ m_Top: 4
+ m_Bottom: 4
+ m_Padding:
+ m_Left: 15
+ m_Right: 0
+ m_Top: 3
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: -1
+ m_Right: 0
+ m_Top: -4
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_label:
+ m_Name: label
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 4
+ m_Right: 4
+ m_Top: 4
+ m_Bottom: 4
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 3
+ m_Bottom: 3
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
+ m_FontSize: 11
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 1
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_textField:
+ m_Name: textfield
+ m_Normal:
+ m_Background: {fileID: 11024, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0.79999995, g: 0.79999995, b: 0.79999995, a: 1}
+ m_Hover:
+ m_Background: {fileID: 11026, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0.9, g: 0.9, b: 0.9, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 11026, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 1, g: 1, b: 1, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 11025, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 1, g: 1, b: 1, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 4
+ m_Right: 4
+ m_Top: 4
+ m_Bottom: 4
+ m_Margin:
+ m_Left: 4
+ m_Right: 4
+ m_Top: 4
+ m_Bottom: 4
+ m_Padding:
+ m_Left: 3
+ m_Right: 3
+ m_Top: 3
+ m_Bottom: 3
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 3
+ m_WordWrap: 0
+ m_RichText: 0
+ m_TextClipping: 1
+ m_ImagePosition: 3
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_textArea:
+ m_Name: textarea
+ m_Normal:
+ m_Background: {fileID: 11024, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0.9019608, g: 0.9019608, b: 0.9019608, a: 1}
+ m_Hover:
+ m_Background: {fileID: 11026, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0.79999995, g: 0.79999995, b: 0.79999995, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 11025, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 1, g: 1, b: 1, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 4
+ m_Right: 4
+ m_Top: 4
+ m_Bottom: 4
+ m_Margin:
+ m_Left: 4
+ m_Right: 4
+ m_Top: 4
+ m_Bottom: 4
+ m_Padding:
+ m_Left: 3
+ m_Right: 3
+ m_Top: 3
+ m_Bottom: 3
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 1
+ m_RichText: 0
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_window:
+ m_Name: window
+ m_Normal:
+ m_Background: {fileID: 11023, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 11022, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 1, g: 1, b: 1, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 8
+ m_Right: 8
+ m_Top: 18
+ m_Bottom: 8
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 10
+ m_Right: 10
+ m_Top: 20
+ m_Bottom: 10
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 1
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: -0.19}
+ m_FixedWidth: 3.9
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_horizontalSlider:
+ m_Name: horizontalslider
+ m_Normal:
+ m_Background: {fileID: 11009, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 3
+ m_Right: 3
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 4
+ m_Right: 4
+ m_Top: 4
+ m_Bottom: 4
+ m_Padding:
+ m_Left: -1
+ m_Right: -1
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: -2
+ m_Bottom: -3
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 2
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 12
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_horizontalSliderThumb:
+ m_Name: horizontalsliderthumb
+ m_Normal:
+ m_Background: {fileID: 11011, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 11012, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 11010, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 4
+ m_Right: 4
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 7
+ m_Right: 7
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: -1
+ m_Right: -1
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 2
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 12
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_verticalSlider:
+ m_Name: verticalslider
+ m_Normal:
+ m_Background: {fileID: 11021, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 3
+ m_Bottom: 3
+ m_Margin:
+ m_Left: 4
+ m_Right: 4
+ m_Top: 4
+ m_Bottom: 4
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: -1
+ m_Bottom: -1
+ m_Overflow:
+ m_Left: -2
+ m_Right: -3
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 0
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 12
+ m_FixedHeight: 0
+ m_StretchWidth: 0
+ m_StretchHeight: 1
+ m_verticalSliderThumb:
+ m_Name: verticalsliderthumb
+ m_Normal:
+ m_Background: {fileID: 11011, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 11012, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 11010, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 7
+ m_Bottom: 7
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: -1
+ m_Bottom: -1
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 12
+ m_FixedHeight: 0
+ m_StretchWidth: 0
+ m_StretchHeight: 1
+ m_horizontalScrollbar:
+ m_Name: horizontalscrollbar
+ m_Normal:
+ m_Background: {fileID: 11008, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 9
+ m_Right: 9
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 4
+ m_Right: 4
+ m_Top: 1
+ m_Bottom: 4
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 2
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 15
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_horizontalScrollbarThumb:
+ m_Name: horizontalscrollbarthumb
+ m_Normal:
+ m_Background: {fileID: 11007, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 6
+ m_Right: 6
+ m_Top: 6
+ m_Bottom: 6
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 6
+ m_Right: 6
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: -1
+ m_Bottom: 1
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 13
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_horizontalScrollbarLeftButton:
+ m_Name: horizontalscrollbarleftbutton
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_horizontalScrollbarRightButton:
+ m_Name: horizontalscrollbarrightbutton
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_verticalScrollbar:
+ m_Name: verticalscrollbar
+ m_Normal:
+ m_Background: {fileID: 11020, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 9
+ m_Bottom: 9
+ m_Margin:
+ m_Left: 1
+ m_Right: 4
+ m_Top: 4
+ m_Bottom: 4
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 1
+ m_Bottom: 1
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 15
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_verticalScrollbarThumb:
+ m_Name: verticalscrollbarthumb
+ m_Normal:
+ m_Background: {fileID: 11019, guid: 0000000000000000e000000000000000, type: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 6
+ m_Right: 6
+ m_Top: 6
+ m_Bottom: 6
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 6
+ m_Bottom: 6
+ m_Overflow:
+ m_Left: -1
+ m_Right: -1
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 2
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 15
+ m_FixedHeight: 0
+ m_StretchWidth: 0
+ m_StretchHeight: 1
+ m_verticalScrollbarUpButton:
+ m_Name: verticalscrollbarupbutton
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_verticalScrollbarDownButton:
+ m_Name: verticalscrollbardownbutton
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_ScrollView:
+ m_Name: scrollview
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 1
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_CustomStyles:
+ - m_Name:
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 37
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 1
+ m_TextClipping: 0
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ m_Settings:
+ m_DoubleClickSelectsWord: 0
+ m_TripleClickSelectsLine: 0
+ m_CursorColor: {r: 1, g: 0, b: 0, a: 1}
+ m_CursorFlashSpeed: 1.12
+ m_SelectionColor: {r: 1, g: 0.38403907, b: 0, a: 0.7}
diff --git a/unity_pupil_plugin/Assets/Resources/Pupil Inspector GUIskin.guiskin.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Pupil Inspector GUIskin.guiskin.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/Pupil Inspector GUIskin.guiskin.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Pupil Inspector GUIskin.guiskin.meta
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Pupil.mat b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Pupil.mat
new file mode 100644
index 00000000..947a1a4f
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Pupil.mat
@@ -0,0 +1,76 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!21 &2100000
+Material:
+ serializedVersion: 6
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: Pupil
+ m_Shader: {fileID: 7, guid: 0000000000000000f000000000000000, type: 0}
+ m_ShaderKeywords: _EMISSION
+ m_LightmapFlags: 1
+ m_EnableInstancingVariants: 0
+ m_DoubleSidedGI: 0
+ m_CustomRenderQueue: -1
+ stringTagMap: {}
+ disabledShaderPasses: []
+ m_SavedProperties:
+ serializedVersion: 3
+ m_TexEnvs:
+ - _BumpMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailAlbedoMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailMask:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _DetailNormalMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _EmissionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MainTex:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _MetallicGlossMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _OcclusionMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ - _ParallaxMap:
+ m_Texture: {fileID: 0}
+ m_Scale: {x: 1, y: 1}
+ m_Offset: {x: 0, y: 0}
+ m_Floats:
+ - _BumpScale: 1
+ - _Cutoff: 0.5
+ - _DetailNormalMapScale: 1
+ - _DstBlend: 0
+ - _GlossMapScale: 1
+ - _Glossiness: 0.691
+ - _GlossyReflections: 1
+ - _Metallic: 0
+ - _Mode: 0
+ - _OcclusionStrength: 1
+ - _Parallax: 0.02
+ - _SmoothnessTextureChannel: 0
+ - _SpecularHighlights: 1
+ - _SrcBlend: 1
+ - _UVSec: 0
+ - _ZWrite: 1
+ m_Colors:
+ - _Color: {r: 1, g: 0.19117647, b: 0.19117647, a: 1}
+ - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
diff --git a/unity_pupil_plugin/Assets/Resources/Pupil.mat.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Pupil.mat.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/Pupil.mat.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/Pupil.mat.meta
diff --git a/unity_pupil_plugin/Assets/Resources/PupilLabsLogo.png b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilLabsLogo.png
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/PupilLabsLogo.png
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilLabsLogo.png
diff --git a/unity_pupil_plugin/Assets/Resources/PupilLabsLogo.png.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilLabsLogo.png.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/PupilLabsLogo.png.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilLabsLogo.png.meta
diff --git a/unity_pupil_plugin/Assets/Resources/PupilLabsLogoHalo.png b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilLabsLogoHalo.png
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/PupilLabsLogoHalo.png
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilLabsLogoHalo.png
diff --git a/unity_pupil_plugin/Assets/Resources/PupilLabsLogoHalo.png.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilLabsLogoHalo.png.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/PupilLabsLogoHalo.png.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilLabsLogoHalo.png.meta
diff --git a/unity_pupil_plugin/Assets/Resources/PupilLabsLogoSegment.png b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilLabsLogoSegment.png
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/PupilLabsLogoSegment.png
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilLabsLogoSegment.png
diff --git a/unity_pupil_plugin/Assets/Resources/PupilLabsLogoSegment.png.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilLabsLogoSegment.png.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/PupilLabsLogoSegment.png.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilLabsLogoSegment.png.meta
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilSettings.asset b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilSettings.asset
new file mode 100644
index 00000000..0094a138
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilSettings.asset
@@ -0,0 +1,645 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 0cf5eb5b245f272439ce012cb9328cd8, type: 3}
+ m_Name: PupilSettings
+ m_EditorClassIdentifier: Assembly-CSharp::Settings
+ debug:
+ printSampling: 0
+ printMessage: 0
+ printMessageType: 0
+ dataProcess:
+ benchMarkString: nEMgyYOWxULimBRoLVHLRKVzuITTwUJEgtmtPobHwQWXmDKESjNDwKVuUJaizDKFSwxTpHMVtszCvqtofYztXGKvBLfORELcMqzmnmiSnMamxmTPKPnzrijIOEbjJBEidaLtdDsteRSQFOjbbLMtHigKeSvjspCvTdGqsnlxoJOPhFoViksKhTXljvrGMFgvLXOjvPheJutkkSzNvvqmUTvAuszIXmkHtniogEdusZollVEQWlmWYMHhEbMLundqhjmkLJxaDdsJyAQpvvwiCTKPqXfwQftSKzffIwydxeoZgYFaNIcsDcoBqiVhGCQYeRyuFYffvTWziZvSFbCLuFpHLUYqaHtzMdDNlZWzwrDcDFZTQfpskAnbQcfYnxnEwIYiBMcmXuHJGXcqKfctNaDLOTYNvtxvEQXWrnCjNtyXVKKuAEtQsusUckzkcwkqGBcxJuSOJntUJzPWMbhfxjlShBWpdoegIsivAyRoPePGtgKGBDqfIRFdtqucgbhDJgvShrZHmvMAtZarIXczpZZQEMXyMFeWderhNDviAAfvgBaQoMGXAclHRouOTgloCbgXXHlUoHMFRvlXrjmYwKWWrmhSaAMPNdqMDObkZOEmWFKcVXQSFdQFQdkUTmaVwLGimpHNtnQbLYUTWrIfvxZpynAzWOPPmVgRqSFzrshnuREoMlxUMozvBFLOaENhmPOcOtfQBbVcJVrDZzioBnrGBcmXJUqOosmwUDTZKodFBPmVFoEwKzzoaUaEDNvltsnaALoqxYqAOJnDeqfOYlcUpNlCCHEGnqixmXAQRqDPiNLlievruOewphQvhlttHLWWedTVjhmQnxDyvwyNTHHdQxAfXWCSsTljxGfvONigdSEDcMOPYQCExPYocNCxCysTwXozsjCfFoJufcJGRxMJnGBmPEOGLOSqltRiUgYCgurvUdbmDtMIvTvywEAGSRNXIiMqNqykxfQvbucPWTBuGJLdGpnerQVOiCZFAaqFleWQGlYkwbXqOskBIYOJWNyDqcGbpiCNiHTsplsGMcQQDkdcnreByYdAHScjphiXYJJllogtEyBgjyWBIvQcurghaeeuxjNKGZCtofzoJgrznKNWxsYncUbAoNUXjevxwalHBFuVMsEQfcEUYtqcXfuufzYohvlivunOGAaTqiiZtQeSZmAygVQGuqdiNOyPixSqUuWclkRaGSNYWdzfKujKSGtQEJnDPzKqnDevzPGgEKAEgpwhXDHkcHeaFIKfUcAKAxyAJZKVBodllZCtFEQlGnkEzKXjhqTgngLOdbuOrwMgDRjjdZTTzeMZhrPNHFitlBZyMuuWKrnJOeoRvZKLimMdaNrJKWkGvDtlVNRKgkNAAEWqhQxrzivTFqwyBSxwmBDpjVoVXeEVeKGgWyEsHaYwExgZrjCqwKuynnHVdvmIvfxYkSXBoorOgDxQJsnJpNYOnofXPwWpQhOWvnLlbrltIzTQWpjcULCrUIyTsiuURcAhjhCSIauUBfoBrJfdnZIAeRtalAIAFZpVfIRheRQwiZVjKELNpLtwzQGxWVdTjLBWMfnFUYiwWoUgfkpKHFxDIsAqBliGETjJzkruezTeExaUtFrFcGgYVuXcxKxKfafhktYoKkSlDLIeBTCAoUubfciiuFhdJUJfGsiWrvmlLzbpCeSwBbkrWVbeBuSOoIPuknPMRkBgewQzimycEPOpWtCjkpmBrcIWRcuUIcsuXOlRpJNmrzFouxDsSswbVmoLMlvZPLKqouGISOyclMZOQyalQevUZmaWQipCSELByxmivfyOBzwtTNJddujJUAstlSTwkAHuirZcxjhMlonnIiLiWTgpcOIfFSsTcbXxeRYbyUbjqhloAfffAPtTVuiJetwKghnjBXKIofYuGipBPyPypRIXaWotjymdBjToTOhyGMNuyiuBzgQfHnBvHMOukZGqnOgzYZNjZrEepjjPiUEsuoapPJKiDBGlfVaWdIAWGoZnpASgHLGZXIfXWVmuOTwwNsCxPorhwNFIkKicWIPoCaUVCzvTlUzlXASZlVAtOOVBMyzyLQoBNIUxqzxDTixvpWBrKUczVqUoHFUZtvWVPZJelOZGeHkGDTMVbWbLjfozDciGfAIeDaXYSLEKIdsHlNJGAOhfCsoTaqPvFqOPcVvAWnbtzkrESeXscVJRmyVlIqIBMbDAcqSNUJLtVdabrJZYGgalYtJWYxgwKztqBkHaKjXsKSIynFJMDYCMhYdcLUoOeknlGFXoShBhhrABLYDfSgcdLhgUfDrOOeOLNnhGkfBAvHReiisSLGcGKIIvLHItDeEAhXwWqkWderAbOOtsSiSFIqHgVquFiaAoQkyAtFXfUjEMOnWDibDRfJrTAGbZYSEpYiCSzGQRqwoaovUEGtGejXmzhQyhdnyyJCmCpBOutVfApezNguThnUDdMEwSKNeFkksavIRiFMIZbepBbKOUcvvvVTEVHufhoXueXflwTJgOOHiqKHHHttyzqjuCBljCvCeynBreHbHLkzmfkVMOEjJvfMuyxvIipKcVFEEkvUZTFbVfoWtigyQgFdqmzYWgmXnEKaeDUnQltXPUcjndiQqyoUIFLmztSGbjiZiIEqhuALpOGiMergFKKEMUzsvrTkAPOiEgqSHJoxTGaDnhwgFxGAmEPISQzXtvovMvVnWVcXWAetDLTQpHbTGrgRbSyyxLsVjdTioOMewftgpwEarATdWdYlrYlMAxCETYMMBnAUqBZrUlRBWcTUGqbdAlFOJZBgIiziuXSQNxOfTUPUHxMxNuirsTDTQbMgyLMxRbVBWsIfvYcnhUPdHoHYMArdfbrtrIyVLfGFtioeGksTZdKiavShhOmXZuEXfvrzmWZCQnXXgJlkVnuuOXrvHnvSArIkxKDABWjAJjlNSFPKxsKDBzTwkmdEBJpHjKLaVxiYEdHiIwCnddBQjFpvroFTbeONTUlattsSEEykPzTkVcfuBPdZwhNCTFIXvRoqYlVQnNejUJceTioLacPPEoiApqGfkvjPxVVjVOisuNkknufcJxoNyIJTnKAaWBsXKSpuOYfAZcKzSpNxCSXGJtgBCnvlXFXotRhYnQCeWRDrlelcOQoCAoUIWugctSWeKnjcjCxDtBYoNYbZluibPwTEnLyIYfRsRHPdEMrBUsLkbPzUoFGrtMCzxKKeGlvGmtQgCFfrcexoxmTGrrISOSmtYRncvALkIEUPCGztUJbUwyBtvxbBghRmLSZBCZiXmsKiRYbryEJhQhYzneoGJKawbFeQdCUFTTfLEFswRGPORVvAecmiIgxeIFUiBwksgKTnRWHxfeKBueLjkATOjNiNiaZAYwFYzlefVJrdKOTYCpBkldjvlJIvumUvFEKdmlwywBJesvOYoQOsKUeSPxPlKXPZcCowZTfZfaPEoFMscAEqFYLAzBhuoYCxxmcXDHzCftFxIYHxdakylBThIjAHAAFLSAofdcJTwLuCtSIgSFKEVHmKkcFzJELPnejqEeovLpFUFrmOkgeIILZRyLjggDISsrEkXZmlcaoGMIfhjfSDDoMZBwAVgAuiSSisWEsqJwUzgiLKHVpvSwPHdrzCPaNpZzWatkzZlfFKiPzoIoSqGzKZolzqIOIbYHiNOxupQtlymKcrXvRxALlVmaMNUWzemxIDLtKYQiioDcAbqhTHbWvWiNStJBAqbzXtzpmSyFMsBjTrBUUFLDNZdjrjnziJnLbSfRISDNlVRHaVcJielNFVenJCtiSWKWxtcpqJdtwMkwpZWAnlKbIqoaNZBhZZYUJoeEBeXWzouoqRhXFkCtFEViNmwoauixeiVGgkJZXUjoiQeliVIXFIiSznsIHjDNppxDvjCAydbHcJLeYmKUMBmLpUqCdkTOThWMMucPjnXkJeDDyvUBjcHCWRNlcWKqOgWPRoUNXNFYfLdJPPHmtzjYtWbaoPFVERKpPzSsWGuGcoLUrFSLDVNqLnvzalRSBZFlGLtpHhIareRSHVavRWFtoyBaWjcJehMEWHcLgdxkuhCVxIHIUzOUBbiTUfcTgzuHwumrJvFREtkhpyLlBCILztAZGsxlnikSpJusgiVJnxDljqKChDAuoaSTtOWUIUYebjFaSiaVBApmwSuMGbEYmUdUERlDmqoIjCRSyBBBvGHBnGbHXDvlCPdtVwwbSciaoyrnNXQgMWXMZLhFCXKUWYfNnuLYceRwtMpmMVKWWGFJacOEijPzWSmPeDdiIoWBRvmPcBsEedhklzESQsJLTpreUYZRJZNqfsCpzZrDFeLXLxnfFPaRnGPEswkrEYMYjoaTLbsGglraiRsmiBJXVBuNkcuNwAxPbkxBZHpiZUGTuyNhZpKioHimIkFDhlDyCDFAaHCjjFlMIxiRzXMnASwQPoKgMrhgcHgzxgFsJXyDgtVbrCClOtIyOuDJsNxgPFzVhWqkQqXZfGbaVLzBAobkufHQbAlaphSRMrCQVTwQqNFRZzMLBdZhQYZoVapgEDLmUTgXEABAHIwiDMwVJkLYVWAEfvJCygZhzqzsdVPjXRyCsajlEkXBamjXUrWtJkJYxrQddMWBdsVcukuxwnNhiTXkWAvGpNFIuykOGSsmHrNOwNHTLgamPDWamQZoPNrAFwsuCwUebhBKmrxzNGtTwsVFaXwtGUpxwMYhalMeEgYXJHiHKSOUyIhHSANuBiPIeswMQHchUlZXyCdkEBgMygSPUAIcPesKNCqeFiYRWjfMayFYERFQxEWjQkOFHSVYZkkFpeUicfluFlrjWzKoSeNHHUdZXrejooNzgpImOmQhxDEqjdSSMWwsjLNldMLIMLEDWuCicmUPOPYdCQgOswFStTEEsCMngLsESVkXBiBsrdeVkHcTaTaqUrcCbXoeKkDMYVnivZpcDfIakhMpbpCWXSQDbNLwacwzXdJPtDziVcqKkDmKLuMCatZlrHwzscFmJgENGfNlSGGeeaymSpHHHIJVoFqKsWQResPwefVREkJPkMcyIapeJQPoITermfZUSiRvbfiujnlCFvKwQDDegJPxruVyAyhjoFfNAnaSsKTNnGDydSlKAHoiHTFygYDDavHjwjlVXHhmjZMrEXBdRUxCmpIynCeWyBXbKxLfkBTqqTYJlZCWNMmJFfGhcEbCVoUcrjUGzhLGInlOFeirNOUUrZqspmmQamJiQjRYMVqjcVTkaGHEsWeFRikXNfVADtCoWpfnMTgeXPWYwRYuYfASTZOhPiDjWLNwaLKvPqMnHtgBqmgkdxWPRJFuVObMOyBVYOhqDhzdWongFAESVwDAvvBONGDiOPbwhpiQhWupuzEclCIPBjFObnvbjmFDGtsGwoLlgkvIEaKPgHaJzadARVdFgBFNcljbqyZIovNMYGlGqVFTgVwXIibjNdsERwOZzcWHiPLBQPVNeJjDpJokPGHCvCYbVIXRycEjLttdcntvnKQEoRDORlRLnyIXGypDYsnMMbXRXMFxLvLLUYnYLcqDpZVwaVTsYybgBkUpObPKokqONuhTVQsUNIpxPSWJhQBAkUrCYDbfscMYTBGhUilPPtlqspITiNEjnCXVsogdBBgwtKlYJrVjXcVoPvPKXaxSAkkQqIgFlDeoKzwuEKWmlcNoVnkGQCslgebsOnTNXvgwzdiDbbKmhOsHqECEmzKabvjFNKGsGfnkhziCMAexugpeYhfchYqFDuASNXwfCilNdHjPdMiuOCceuoLMsdbKTmlHaAKcLpvtCFnzxOnVHXpdcziBgJXOQSmIzkCbpZsMurBVusFuCPCMMJHplndcQGWHvKjtASRMmYNUTwcxGffUcPduicsZRDnYppHNViFclocivijiLSDoHWCjWEdPPNozJxanIVcxGGwhoVxCHcwYezvKuzybQeFviRpRcxFQAStaJWIPeTtdguBkLdDweyRbGHOopXMiKzEcESuFtpKBmlWIFZwRAXnbFzeUjMfoEMdgEfDMYmdyEKjMilebRCDXweKTpTLSMeamkRaTjUsROHzivKBgtzyMHruFLULpwXDjVSwinfcnXbRWqBFCpkBFarMEKCcSjCDqWjLAgyGmuAtiJoqZxUAyaUJKCyTsfExnfzZJJMHgwnPisBcMqaLZoRYbtZwpnENcICuzUWpEWZLsVTCWbvkHacKfqnhQuDptVVJWOCzAyFPCtxwYlqqeMOzRinuKBTzXqTNelMBpMpvuWuCLjDubzHBpqEbboYxbccBgRoAwlsSolFvwAjpCWpxdwyXHlnwMOCKZwqvIAygJtDKUkCiTsfCVRkdqNXmhzDrxxzrQOHBMWZvALcqpoaCAgjnGQbcaeFgsVPOPWzJeOAsOErwpxQHZliyafgtlhQFwvfduqOhfntyWEWSXSnUFjfctyCfgNlYXOVMjXFICDmfBHDKGlGZCOfQBPXCwVnuYwDXPYirZkDjcSbbroRrvSppsNkUuiexuqAEorfNkGwHkewgtVbQDmiMtoLOXKOxIdKzcEpTogaXxCCYGFaCkSwImaoJuHxDnrBLGTKRYpevZLuHkjnvfuaAXWyUoqvcJkKDPCECTmnLJoeEsIkQTtmDBZdFyjNgkZFQUkdVpHdizFDmGJSBzuGvFODfGbPxkbGLPgTqJgLzPUyeZxTyjoeFMRnDetVpAcsvrLiNriSlgfLzxIdwyHzAYZJtMbsKBWmMqkKOOjVHLnMNfutGDPIDvevJOrBySQHwLgflcYCFHcybXgedLEnlWoggmfOQAljPrWxGuaHdPZTqRGZEdSanffGoFLUXGzAAodMuhlWiXOBRBZQRMDtVchsJykCYIThfqigquZeZelEgMkTNKhGZUarICKmAoxyIyAKAiBjNQpJLahPWpZLksnFHpUhGxnWspAESZDwFboFMmMdzIjEQnAVEFDxxsGqCpoqQtzyCMlWZXThSocxPfquMYdocaYvfuVGvGQYkoZSWzGGNbowdUMKeAzfqVolQUlufRFYeiArFZuAkSiNingXwIRQLVCWKpZIYzyfGdbAWquOButgLMXdKGGvCVgWuqgRUGbtTyGLuvufyFLOnTDqnHWkfiJPyzadWMMPWAdohvbryHeQohkBzhrHtCyFGdkkLldirqGuIKkxFgyGdmdjMkUTREPaGzeQaWNYlFrqHCwGkruJPOMpNDKPcQyHQozbcWdAWnEQZfIvwBKmclOuwFjJBvFITPIqREbdFqfcKwRzFRThuhiKfeTUMxbqcUZoCMTxUSEMpEfxRvkrGbVihVqBFfTQnlpDNKBLleveUljwpSnnhCLcTazIkGNwWZuLJrOBobINufbdYDyFjiPaMODYwPQwPxIldZvehYdjuiJPmMCZwacLZCMAzMqOWrbpXunzznhGEzbOyLJctkJZWMjjNHzjHCfTBhdAjTaDClTpbNtelOCZNzeiOdXMeNpzCCVxMTkrrRbtTdwisrWCfaCmYfTVuCqrokNbGdqXdbaRVyihoTdZlJgDCHoavHXtEMSrzplYewkGMoMSWCxrehAfrVYBMopBGXNoKPbWtmWCDuMorFjkeceTLixSmJstinxVQqPoLFKtyfXdpsQvCWeJLKWlglCBviubLnoEbDkKrftuOwsNkYMUgQiCyWQuCPOkJbQtUFSMbhwEGXJoJKwmuwiieTqHDOgWsEbmLuYVHRzSspBOmnRTQrXwzGOIWDfuPBfFKIWRfCelXNGYKkTkgdjPSrNjwdHWaiqKPhIkLjZakZxlymSrhAkFPNffeQBanbtXVjdckLbRKyVYdlGlkuEeVuxUFhbzhibivFxplzBoSlhaHEmAgoHXZdWGgjPDMfRZtcowXOuupgxsitBdmdIjWNqkpPHIKIFaEiBmlSNDEFddohqPikOsVnDVRhsFPvedJwsdwcGtHpWnXEbjxVddwRAUfVeQHBfKlCKXvpkMEoAFOuGaQoTZxhykUZtZWbufKVlMDBdXaFkOcnPPdtdSUYlztkFUJSDgtGLRIbaLZcJpuaWuAqfMqQtSjcOWaVCFafrxeXmtKQPdWwzQMvNiAybQuXCldYhOahINUbRcCGbLRyEYOsdLHAXDybhIIeciuYOKBdYyzOZTfLlTkkBuZCChThTsVynIchrNXoHHBYmBNNYLHsKgSeCuGgLctZCcyPCEDkZnNYReKutwJMJhKMUtRDurALgmAcchhbNQQKShOxuipzIWXgQwIjrpoeuvOqvrFoSnCEYFwvkpNLISqdyIRNBewTrjdvaFkluedFMTFUNzaugECvevlbZXTZKpFQavmFfmCOnWiboBBtcZYCtdcVlfhYpwfAtHwPhUpKfEYvjAJcLfQgJzcebckAoRQxTouEXEJTROezFtlSOIodmVHvlwaqCHWGKVOYHaWbqpjnDPUyIfJNnyICwDMpGdyoTOiWokfiKLvMnyeeeBVBqeeChSExDplYeBgjUoTFzQZCmnyPMVOcUsBqOmpuYmgANATcoQjLjQDFOsrdGwoprpsdlWoYVLitcDdZQuxHLYoVywNkMMjfDOOIGCgvfBfYEoXRdEJigNiBrSyYVfnZwlnrIReakRruOXfnGynNxQVfJlbimwGJAMvagGUGqoAQhpWSxgLxUwyqoGOfwttUnzbIayoQYQEavZhLfLISZGRLWavcXTIAzeJernXqzIIaRFShvKtTkSvrOwpGyFuTSaNCSkJMCJWBAksxOoLUwMWSBPfNHYcgQuyqQxzGTDNyHLUilQfHUGyPehchbYOKemILHZUSMsxBgPKrDKXWblGXjfwTZOfXgyxBDLrpwOnXadNUzBOuduciJWDZdgSZGyckwPsxotxYGyMhcJaHiLGDFGbmGwgIYNwxIznXcmHeVTLwqbReqaCrXDNGPYGaucBvPkbuQIsgkUzAtRHitXXmajHkzkWIwByPQlacAmckLSiCYrVNnUOGgECiMBxPgLPNjmVbTdsrzRgExFJkVYzkpBsyDBfzBOvkUBMAovYdMwCinWGCbyVekAATSNUqdmttDilyrBJuOAQCIwYVwQEUWstgUuNLjtzizvyCiEUpWIdDNiDrwgmKuKTvYETjktkmDnFVHXqUmyMeAibTwBIqFrMPlXoELQRYGahQImUKgnMxPCViKzfYuDXVstacuCJcJkcwJwFQQsebXUvouYvIhLjaCifEraeMtknEwMMUwDPmwwqQecbIbkAcBepSKdYbMlYcNcYrAsQAQHscxUISGyDYqYrUjCmxgKIxUngeFXzFaRsCXoqhYwPTGPSrRfTdGByxwwsCBZuYyHsSoYAYFVBxRUAtgxXZJXPBkGSZMDPOVfGKAvHNGlcGyJgbpuQPSkQCjGPIVJGgSWNVvOuTrhFHqpjFFVvJdvuBKRYXCyUWDcAxdISCLZynVakmmcdzzTctUfUhWRNmBZsXJmXPNKMzcqgIeNjxSqvbozCItCEsOWxfMNpXsBiKeUWDZxeORPmiLtlWahPVEhCfFyFUBKrvqvzfvEtYIkhzxtLVJWElUbqhfIbvubhOUPWCALPPUyHmVLNnjeZHpoZepUjvYaHdSvalRaeJReXGeWcYbfsHTsMSftDZefUZvMOOJPOcrDGMOwtGanfMQXHGFqkbyiFwtIBjtohPPWbhSnqxWxVcbzHqmQPXXFTRQAcJBnGloakStTBzkKSEmrSeYbIVOihChfhfJBPtGpXSQHzTUoJzjZdIIfvGLXLSyHzpjmkhIIqSsQDfDEaqRgcITfxZBNBgvgDKkpaCsZLXRpMiFrVgyTDVkuwsdIOlAxrzogpkXWWuqFwcNQRCNmVTtJzECCJpJMaWLzLOfFwHdchWyYOJGiZFYsulBkZICYdsopxFbpoyaDZpcqOpvhgDQiSHffWoGdJqjBDnhpgQoRJIlvdFOTBbdSjOubavGbdxoSukBavXBjeqdwjOyQDekveRgNGMqsxwNPPaVosydaRUupQlYpqgQXLQfDNzYFPDIJJUhJqICLNwYULInMyjvMFyZzJHfVaCxSQVwmknuUBXTFHCnRLcXZIweZOuFJjhGBcAfeUcSRWQLXuCLYsCVzFvRRLiftIvBvmHnGpaGrpyVObbShwhFJVmPVsRWbuCvazixiKFMKnbFWQOHlLTTgaUeRpDcQTkDTHTyBIwIxxDAEqGuoeSciocqibhvPHMqfZmWlocnsoMxdFgNQDAHldATzLuuDgXNYRqBlSkcCeWJNqtYPjZifWYigQXQFllUoWmAkHBIOcRTzbaBEvCcwfLiLUqzkzbYcNSLvngdJEcYTiUnhihNVQUovrqRhYfPDDWUWGBYhSKJTzPkzISkyJGhupEqQMheiAOMyFqZPdxeESqhdGEdkelJbwQiKHNyzQTgWsYnttiHkeIKBnpMiluhbftkyZuOeuiDXITBYKdEgaEUQgHoTekdcIPppBVSukzWQCkBXnrfhCLRJmNyQPoDqLPHFlIXYZfpVFtfHMAxcwwMJUoHJEUMgYDHBtqbYbIhwBMRSaDPvQrSsCacSfPvWDxYRwfadTVgAmvqwjSZlEwsBUXAkNoPwtTeWxFNwcFIZVlDejsmzYVNiTFAvCUMMPGlmrnYWvImWxkxZjqitiwQIYCjMlxqtsDpzeBbqqAbcdttWKAxifFGhWrmVcCiOdvtSPVsbTMRniwlRjqLKRhXNJqnnySgwhuRokIDInXeniuPhQvDuOgarLWvuzrhHuRKIIQuwJqYNmssNKihaElhJkuaMoypTcmXvetpkaDnINhcAJIedeFqQVUutBCHLifaEJxAgumrBdzOCaBKfxRMmEKZzQVvcTXqOOKMBRgJuzWolQVgrWsEFKOCsSrHucKMEoLgcCdYIfedblskEvaOsXxTsgMjSGySICgzmgAnkUklvaVnAdxSXqfOsKQjwZCSgkutfgmvxdQNigzbSjlJWgXFnxJbSTuIRkcTwgAfjfyDxlVuXoPSTUzfgVgvRBPcKiqpbfBwFjioAoomyIcQhZYibrXYTKbwofkkBycGqyHUqMPzCxntUREIyyHJvspAZJSSWGguRsjNumIsFHVNzrlynwKpKBzrDOlDlpsDyLurprWyhZmgeeLMSOipJdbIwZyFldHvtPdBsLJseVhuAbWbyDrkpdxHgKuqrkkkGrDpqZPaUlqDkTWfjhHErjtHVAIDdOUrOENxwoByNkBAMfroffpGSZxvzHfGKHYoyEpCcGAsQogeYJvKvovXSpdkZNcbcJQYjadjoUJnFvfsUddHlCTPDCmXEkazzehpAqKKLjzswjOmuIRkFUMsCDfaVVYhAlVAHUwPYqTEvDHEPTovHUDfRlXwdGxPTVpkWakMkfNjnfZYVyGlwZeYVhlHvRjKPDoVXXDJVQrwLJmRVQxnbDLdUprmuAdyZdHVGvqsMGhcnPenzladpwPKJKRKWLlTwlcHQGnFjsaxQcjuOEIphMwwLRmnzXxHoiQRuhFduENYumacfNfvXwXJdygCcNiDkLrDvSYZRZbtqmbTRUkNhMhuubluvnAHMWiljbAbWtyJlLLMhFYEmDHcvaQoUseMGprWCpxiXoQysEZAybpivnbGhFaYfMdnIpWrVzpdKUBeTINqbZkXffctyivYFCqCwnszOeVUgyVKfMzduQaMhozurXaDsrjFKUKrSEUIbgSheYWKMmeZXhGrZonfxcenEgZPMqaQFAXhWtDNCYZXArDurfwOFleluwzuFejDnUvyEUtCCqoLezLpaoxPaniqGWoiykMEctEEUwglmxEPaObNnJJUEvMgWreHDNxRjpKWuktgwAANZYLHwAiJOceDZbZtOwuUJrnJUKyveNsuDillAMPKuoFxTYfsSWflFnZqxpUonsirhRzidRhkuNOMjdiZAnEloAngCEBzKiUofkjcbNqiJbSKPRNoladYCInFRsaZLtCxOKgnNiCIeaXhneMUCljDrXyRuhJpKaggUrinQqkKwsyJUhunsxKDDLbzAXzdFHxyEzfXlhSFnpaFFzBKghYkDHhWDCsBxyPOPpewmQOhwagEfdWMphSJeTJISUlHjsAvUHCHQgPrDHRejVxmlIjvDaLlZjcadgIAepGKWFantlCGcOmntlyanGfkizSoFPVDpQZeFksVRRXODHVnGfOwESZVunXdpoFewTdCuWwQIjhLKfHLJaWbBuQLXDxoSrrpVAeDxEGXIsrDnemYqhVBIuWEKXaJFPbPJBEqHKDxDonkFzsgyBTtYvUclZAcTIMCulrDqbTKeCBnOYoxeMOhBbNJcZlpeMWvgMVLhDvpWQKhUlYoHXjUTqZsbNsEdNhOMFfuADvmNngZNWXeYkduPBEzHNjwwoWMQWRAsPyEOXlxgbNeGlCrGfcOisxMKtbDBmOaSKUjUPKmdfUomhIfgqnwlwkjKEkqizpghKEoPHRzwuQWpOYRDMxbLgpPHoDEvbqLPuQUSgdiEvbfotQaksFQeJPOJEhzuUzVWUOlUTntyzBAIEGfAZBvzJlTQSDBGzKbJIGxXIuUvsHLnZVMmhVTdUeKiHOkTbHnuchjFtOdyTzwkwbuAUSZpURLwdnJGFigvEaTZuZFJzgNBpNJCfeKmPyLGpfDUpHZycnbZIFPacUQScoGWHMcjSPwQoTBxjpPDVevLkcIjWfkeQPJCsrAhhqSRAYEjsVDFVqjtGRMDQFbUBlbyFLNVWPjKKCPqSZIkBDJAaHPRdapuIcWsIXCnuxKItGTFmtBEVpzUwYCbdbXjQifAxgnVeouVTmcHzhEQHrtRgKEFDyADULPiDpQGTBIRdQuOQsyyifgMpXBYJDbKiNeIyfzmoQeBTBjOwGRjddWVuhhPBdEPGXXdJiikeyeWnvIlTzibpWmNzafIXfQvDUgjhjmbPdmbYZoRNRVqmOiExdYgjFElmLVnjdVNMlwrUWXJLorFUelvASujaFuuZkpTyqYgZveoQktqCnQZnVxRnamlxNJRTZUTlgGfvYkzDlbvkVLmfaBfyNbAgZBVTAaihFbrXJiASBCrgjNVdZdVwfZTHNvdtgYqoaGsElAxhqaMGYeJCzkACEnKrXNwtjycIfWGcpsPyKXyeJSlmuzyBErcSELjyIerQUqXoXilpBxVrwzpbJvVywGtJJxpHcrexjjZmjzQTIIJyLmMKxxFEfUtmvzAsjvBEgYMOxKzdSWSPYNZMyAQOIjrRrrfruawxgMXaQpKwqRNyBVHlhdcaFoIdVzsHtcMNYHysnEAEjNuuiEMyjIRMOIbftnojXmGQBfEEUwkcJIGOyNroJpIQDOwxokcUNzEfaUSYzzXeXOPStSUpTivSfeTETtCfrmJuZGjLOToteSQrCpMlLhdgHsAjZmUzxndyLDbeMuJzXzHxZgwLNSzoysIKoNeFCzwkQCcXUeogGfyRHVCoGvwrEEptaNhwtytBoOuKejgNcMAnmEvxecAaVNXVwIpOSZiMXgJoIHAwAIrZVVIwAoKFtbealZayztvArdSfxMSlVGbzjuxlJbuNqGDcVQqNHBGFWqLFpiBnWwzLvQJgxFmclkHtOXXZkbLtfFTVVtiGGhDXsDzemDBxDcSXUYCLpBiSucpvRnFxQaXyxIDpALYfBOARGTXCvnVdvGBWDoevMJoUkBplrflqnaovujzkhyVmtqujOyHMqsvQPWKWWGgaUGqounyhPzNAsnnXwmhZlDYWBvyVPYPzhOqWuKbCcPJGTkOnDCLvgeEdNaBaPnugICJpRSDlhxceKgowoKFbYIcHClRAMDqNEecMGcWfunxhIGXxFDubMJPFjhxoRwVMvOmPrimQUvpdBDTlNPWsZjiiVATNFbrboaXwkhoxGQadahbDJqwgoHDPsUaMuQlIhyQuxWAXaNbbHvXlVouVoGssjhkItGdArdTlAzjYbZagUVdHvkiFSenXyAEBcnQflbpAtbdKQRnhTuZXNbQkppNqYrafxRjLlJWQAUqHfDYAQdgERTjAIXqtdsHVEdEmIvwxPfKSqlAJZtbPkCYKUFElwBgDSMzMzwLWdzguDsCTMXzEuKUFPssSVhZcVZAkWxBBZndOfWVjKIAZWQTnMZTvEOGThWUPUFoNcNQgngqpJNEnCiSjBwoCyjEwXsFgQkPWMAADIlRRJDCIIkYdbkXqaHsnGxfeqtTUOZCzgnxJlpvMAXERakWLShaPwQwAzmiWJfTMpnJoOYDbpEilhoyJQKjcuejXQWiLFdbadtrmTQvKfJOXBLybFKexOncbkjIkfytYJMxrICVCrZRYbfMTigRcUYOJkbDchLiVpLaLMyzPvETkiRYVZxMIeUSAoQGtwBMTgsxxYLkzCYFRaUxLMNEtzfYgUSnUagpHcafzmTcQIAAkDSVypOeORkBrjxjdFnPyVFJbnCsaJYmXGwUgtqqWhMbcsVcjgBpWDgoHjocjocBDYQOwfjZsMJOFnnlIJrhycHgwafzORLBBvglFckHVocuYxBAjHUXGWJqfsKKuewriPYOlEpiKTzDOdwCgVxmEPemyOBUAbcuXkwEGrsbfgPcnKlbjmvQcoTQIBzoaePYBhaXhCuzdhmutOyzqfYviJAHddmGFVXWsQZUcsbNepTBjEqmkRAsjXiNpAJFEwvSxoXbNBumOSHyMTcOseONwESvaUUvXfLpCnHWpzQFgiOPWcPxSBHjTjvekCZOLxqdYvkDkNsUQPlCtUXakOGWxWSphfLRmewbbdYCHCpChKrFUzzJzWGRcTDJlYNfVffBhxmQOBpOhSIigfBMERhLRVIMjZnFJaUzJdezephboFlRUurIJMYQsUxaMduGrjASLyzfCrSUuGTLyqPUePWVYZgDmpartprgmldIjQBsJbNddJSmTkuWdmovbpSXRbyWrPzYuaLZeELLMIlGSirHYUQTHcTpMxwJYDAHrAIRAQRILaAORBKCqVRuTtIDOfxNkEuMYLXpvSVlnpKzNablsofVKnWuqWljVOtsUXwSfQJlzsvFNwWgDhumirFYxBdmPrFohDQACUEUbYqXvtrnYQAUwNFuWmdmWaAPjMTKaMMQudmxXQbRVzUmkGZhqQCmhyhkcagWZrIBOcJpvzrLvITWeAfKQxNQnkgrbaLsxccKNELpnPPuIIPkMttorzAUFOPRDOfzfDEYnGkzGuCddWBKoLFRiUCKDVkvxlgeyldLusoMwMKaLiHnCBQMtdjqidavwHjGeLLCixLKJiZUnoqfpCFVNqzVRWCUbVnFMAiMcVhYBqHuQFbIBZMlPNIvJfzsdhbzsFyCdIeeRZYQdclKcILZINiaJybZNkhevktjLspQvQFjpsHfQssKLkxxSxSFgQlmLYYzNlaaTNaRToYxbVHTvmjXpPJlNEPTdyBxoKXNmQszzeOJbYqgIwwMwQycDizgWitATaswwExNRJJmPANGxnjjpPYIEFPmSFdsXEONwqAGOhrWhQhYhQwxytvgnwphgBzEknYnwaRMQqprtzFdqyaSNWMBKoLaAQizzxNGkMXlozxbFZEkRWVvnryqBqDGvQkfpwRHOmhnehtnluTPgeCDnoXlSPpgicjbwvMEMPJbQaNsyaxLGKnbEDJqQntnOKcpdjKViNgZhEnelCzyQUIDKjzCuQsHSqgGbPDfTypRSGJawRVcvBZDMAAmAvACicsgtNyJSaSphSQNwIyrIVfEDExDgEsKvvVjGvEMnXrpAUYGmOrXpMAGzVPPSvLGgNjMoIhyYzwlHyFSkfjcxuyCptBEJEincvyjYTizTiTihbitAmPIeKtykeixOrxCjeIjxOIgHIqwabWAjOUczonFKurpDSzQZaZPEeCHMysALEHDhBInoCFdazjWiYXbrhwxnscEiLjCSZrkKxjqDSyYhRfrpJgFNCZitAZDkraBCxcJahlXqEcncMFIGUmRLXNOyhdBIFpJWtwbUDLtqDheYgFewBVdzDmhtRpEgnuILPIPoHoyMYHujNTuCqjLSFKTvUqgNfvdLDJxtOsvYJjkuYGbUedQTuNTaawKrIqSbvWKJNkyMTABlrhhQFpciSOpIlFHvKDLaDRXdYOJCXEkGVczDpdJMcnWwKfocFmQeTIOjZgdRvFRKnfbVrEbEiydXXFVFgiBZwRaQxvJwyalUOVPALKXyyiwDiQzSdEiqPxSqqPikMCIRKWvcJgsjngdGNMiZTvLELZUmUbxhiObqTJHflpPtiqbqqLLGcNkZcLqNmvmeSoTIYNitEicEbVyGoauBQEraQEdwKzTVFAwmFmZnUYFCesidUELhNMKUAYZSllFpWLfNWLbKRzzyLbOsDFxeJBLbLizQIUrDEYiWYSLNnjhJCIMPKZOKxkJXYuWNpaGEjTZTHgyUGUJVXIPXtzgVxUtUadFzcdMUliwxqrbPPOVXEElJakfQPKwJpPTYkwrhCQliwMiraJqeMjyKfubvprWNcqBhgSSFJSXojJIqKcSLLAhJFdFpKzsrIFAkdewnpRpTbtuCXKETINSqdEWRqtcbCeTHDrdJnyKsbwrXuSOzkOfvcIDadtYAhIKDjTyICVfjQEldmgMIUdiKJYRrJxYLfQbbsEDusFYevmflejKxfmbBeWqaLWMETPXnMvJfYCIUMtIsgVVbEDjZqrVLhKtqYXBCHjCMYYAYOWmLOFUhiBBtUMUSoCzYIizokddKNAadYNbjZEgpNUUgaIRHPtMzDsKKzXWcnRehxzwsbDPlIOGeUXQmMwgthuHvVdjwfDelluRkMWnlObgftSrqReobbvAYHEZqoQsSspprxykdUKYvoLQmoPWsdDTbZPxIUderdHbZFUjHaNQIwAqodVWITdjwdJjeLzDGnIdaFOLTmWihPFXasjKUJxHYSAFZQCzvPfTSAdaoUNqpsARBDakeQIBDuCmmyladZenbcmyvHrxcqbsqyCinySTWFRXOFuviHFubeZVbxkppuPldMJNlLSKyohofCwOrXPpWqdChLAWekdlTmbgSiHSeOumTJZioEChNqztWabRQcFFKCOHRWmCYiVvaoLCFFfwFkFqLEydJoauhpQJBpHIFDdtHgsxQJZWnAItKTLLKLQcirCwikAgzIDinqLEDLbPaiOmsajKaswZXswHiyDlRDvIFmCMrMnqAWWflvBUtyBDyautfohLcSIuaFfpwWfjnUlXuRFMtdiUqoRALRbfUIUGxZQMeLuWrNCJXwxWdtDUrAwYSQFsrZYWFQkSgETFkCRxktaHgcNSICDfEmbJrjnyEJqWneGRIcFkLbbpXYQZknbTsIQhwwfLkMHbjqdBjpNtSNvIRRwqvWcyOdtbuOGDljrfETmuLEBCLiAZwEHwhjHspcksxbaajVkgrsAoSiSJRGcguElndYPocHDBGvlzUoUBKKrOirMiHfNpbQQbBeVlxpgTFKZQQsJVMTvJryNoAmiJSinWIHeSdGohnkyjvEyaIgZdDKXXKsLDnwfrUxZCsWAmGSjkQIBHRyfVdzrmKrOevCZJMvrvqRtjUbMgcENdwZHroLlNTpUwaljNZIuXPhFzFIjsvMJiysIvsZJXSkmEbAmrZWILPZfoQwrzsnQUgxezCVhxhTYSQSTCBaBQQkPevyeuVqwxOheGlviANIFliUOYXhDeKkckDWlhHyXWlWQUSSKNmdSggnbbQspCrMkUCDNqUEftaSYjkkAVRPnmpINJvlzmsHpGoConzEGNObRhsFvoRfBgDKCQWQHjjWhaszrUTckUwolnvOFZMQMkuUsoGnEDFtisXgCLWcpSDkwmtYyLxIQcpRlDYDNHDUjqSxRqhHLvRtYTvNbTdhelAgHUOxwJmvLhKINzHAToyUxwtNgQnoZiSbOuZuAuoTIfsGMZOvBtJWCmbODzBBvHGNAJXtTAYnYyefcozGMQItbUXEnmXPnBZUXYcauozmnroyddBKqdDGNCBFjiirJyvxSZAJbUIegXKHGlANYpPLuhLPEQJQkewMkcbkkdQpKLoTMsMTamhrQixIqIXyyxeLFfsLCohaqOcYvNGkszRvNSxQWGCTQoMncakfAFYVylOXfznhsCTBDQadADyNitxLzNKfBPJbXgvZaMpaiLsfvSbbkRsGsupMmJbtsIoHOJaASDjiVmEqAMWtbQhrnUpJOHZFCRnmhmUHcALIwgvmwTVYNPXmxaKBMFGZQEKydNydUYDpTuHqaLEDvbiyMosskzZlcqlvhRoITXyvSZJvsOMIbBAHjzLLSiruFnGTtohsZgvmYXLbmFKyGNMeiFfQTIBTKwQstCXiHbpKvNgrfRuHYqgnHyxPqMoROmGkahdfWzFSwrJfOsQIDIVcTGyXFKcrkNPhBisUEXSaKtenZHEvmSTBcvENINjnpUoRFWiPKwzATNZNvRgRPLVXzOvBqzGgDfRmqdcNYqjdYffRrYpfQGklQbLTOsIeLWrMfVVykNIMwfEJQPxSlZSpIRuAKzrqDDKwMmyTPGxwHpORZTKrXRZAZLSSrBmUAiKjvaXqWmXfGAXhouuzsHwqkyRypUdXZzjukfjeDPEDWVFijJKnLEcRAuZZUFtYhcLwyKTxDiBtcUkAZSWHyqTfbIkZsIdFKgCgPfKcjiCxsdHanjlPCWJmTFzsUcmfitAfbsSWvwjuUFPomaGqGLlOTtfQkVMgaKvXoHfovuXgqWlNKbqvJbhydNAlslaIqLCPNcvemtaCcqdxWtyssqWskcfXCToubYkJNqYPPCKmFqnXHbJXXqRLttfQNMeyzIEjAvZazAeHbTkBtISbFHOgfLZHpgoUUlPZGJMMYgYtfrxQBTBhMUXoMZrHvnKQKgQdreKifRCqYhHBlrYwDTyGKVcTdstPrpDALmfyNbZkSpPYcWVwKIRBFJyjIgBBuINMawnxEYvjVqwmLcmyBKyhLZRPEbthGkliAKSMCxqMWBuXuptqhaNfTlkDaLLbcLeTIOKvMzHplSWtWQHOEaDSUFLPtowBVOIWkaQxmDuFQquihnirrURZqqAfdwcUByTqsVyUPEnVmHvnqYBTdhRzSjKoqNSiQMMWzNRplvopmtWYaQKhxfrXsWGHcFQLHidtxLVFytQUkbzuRxxXooUaEukbvZWojAGhkocoTLSwKicggHbRKOPgXRpWfbNdwStaYMufWggZEJfEKKSCRjnzinLgfbhfqLgfNSXeCHwUhNLSDZRQFDYgFUVcXQxoZnzurcWKVKwJqwKOKDIdqFNpkQQexJCgVhDwUrKTnoCcEoiEjxSIXYjqnooIKqYUqwgHXXMBAdfNmaqoOnooDlPeSwLDZJqvmvuWKYeHwAqdJhhHeDIcSadxQVngyMIbaOibqdlhTDiXCjhQOKZCHjLcGcloPxNsTlaTrUCWAOUrdQEzGpFCybWiErppZOGPyzrCsYcmmAvXLDHRpZIOpXRZAxkUVdpgNQzWMFafpZjcQAJhJjxTkGdLJNfAbclVLRELixUFovGngaGKKRKDVpLbvdgRcCejOGvgMHCmgGSwYUmviSBUROyMhTqBubjTgqzRfMaeQPseKiLRTtEplEgfPFVDHuhImubhZqxxBwKYImIwTdvMNcHHtuGgMKVwnXCzttzANCCnXXJFiwipKWdCwNtPidfMEKbtJLUaubvstTzTErrtSMWuZtINtwzVIqJkXnyvuWTTgagYrAWNljcKaHLHGiLWybbeGOPFVyFBjvwzVsUVePwGgjIgSLkqFEVgZYnxXdEgSceMoJDWavPPuNnfsThfWhwXZPMsnpNIvEoxzGkwTZvVcHmtjzJsMNqsPAGuzyvGSZnmnrbkiEKIAPcjJzagpzmcPTaaGgGfYBnUbKIiENgBJxdVkQpTvYRMdSmrnDMMImakrLTYKplKoFLpovLSXvTnFdRkYVOtvcYaLYZmcuphonHwjzxVBtZvNrxTEvPdLwXUSBDeVHttxiNjkkoUvGmZwWndlErYrOytUqIoNcmjljiAJyUhMeUomGDzpoNCEHKHZbPLvmvJkrFyTxHYjVMsdwxBqOOtARnJYSjwyGkysQseMBJQDpSwHWvXSgYWogrfzkfLKrFXoSxSItSjkSAKTbgUQlNSOnPAVuCIjNDlgmGzAJVqJduEtXaVlhpOnJBdRqopGpqXrVJyirdvzjtRkqEOYDJtHayaLcyyQgDRYjdQWrAawhjiRYqZxuAMVSmtojPZzZvlUCuoViujkhECgDujNCeinXMGBsuhwjnTGyMfKasAVWOtJzDkmeXAAJBBUGWyZJMcJdMogowVMatEujghAHlxTBpyqblUwAVklyFnwAdnbUnkvEeLsfXfifnOIehfUVRWREAgDRmpPNUtPFPcPEaTHlOtkpEFSxiUOAcdZppCwudDUsBeoDUngjXBdJOIaRovOZTzlHLihfaNShaGLslMTXaueimQPnoceHhdgBTaGOYMxGZYpcqtgdjgiAfGxYGJShtHEmfYSOxIokzXqsMFeBJzVZckHtJTQYYTAAJQlBWqUxrtWYUvJpDtaKALgDCUOOSZwMFvLRjpQltzVBWNgAVEZVDxzlEhLDyeTQTtgLyGCeudjDHPFJJmrIVefDheJjmKDxArOXVGdQDJBMwXapRcsPTRlBshToyEeyMGwqEJHOSYmcKdLWImgKuxHMdYAtSiOJRQdiPOkqdnLFEJFLvChLnplYpJhMsFsOcDMsiQbSoykzwiWcviPbGJrHjaJKxAuoZAoZNdLtcjxrcUvZHtslfncKCDjFpUtkoyOFoyFRtKZvvDqDzfHoyKzOrldvUlHIoJsxrulOyWTchoEdwsuUKEoHpdSGGlywNMVyXMDwbIzLWhDGKwbMrQGxWyHivrqazrzHKFZUnXiwLUnWUVsNfVPIWOQzHjgRheRMAhyqKxcLIScMhjVckBTdRcPGzLomrZyMHRrCCKlqVeFKSbHvGsLSMdaPRbDgfWTpYEzGCArfWOxqwacyTHwmRvJBAsDVrzmHOvSzAbuEaVzsvOorQoDmNJlkcORddoZWsnsCZzQVljDLuDqsPrMUxKeYIqLOoDLGIkfPUwhdUCYMiYrGzpxZiPgnaPgyQqBVNckBXHonxaWRhCISiMFKJnyLGKZMtPcAUIDujFFwFqkyElljgKLvYDJKYkzgJwzXKeGgZbpkNOiyMnVPsIzbXJgpBlUfMDuvzAWIhmcFksRsGmFvqQBVzOIELwIzCiUsIJIDZQdOPBCafOtKJSlElEnFNOcqkZekOUReLuBcqinoJsHwXItxCVWBAHsdGikhZLPpsEKHLRYzmPbCxUWkfRshQCDNUAmTYfMixBmhoAPtEZpiULArjsYKaXRnWNbuIKHohDNzXfKYsVSdnTjkBoqIBZcHrqTKeVtcOAKwkOEyZUcWZfkozaJImoWvpXoABbvKsLUyGDQSilDaOeRFQKlCJriUKNUwMcKNIJeEnOMUZZQYEtVUblSOmoEhoIAlOFikCeCgyHNEeCPaWgVHQmdjZnnZubKPiQMraMPvPtHdsvjbiRpihKpnsRpoLovtiKCtujVPoTghUonDyHQrPEDVEUtmaVBsCLxvHGzOsWxqFZAYEsdlrHqczaQWdYOxDAqRflcmZaJzsUENMgsFMvhpkzEDnFZgOOWNSmuQOTOXYQSKnxWuYYPBMVSWZvzJnPvRwxsvkzQwdWpkbldhHbuLyCyLoseYTpTGMqLkCPLnrwqrNMhQNJdlwNCzDplMZnkIcWxJLvCKvfNuuYSMCdXPaUOSMXgRFaJquJzzMchtgcLGuEatMkcUgZdYpKumUSZYzbGDQXJuTBsGuyfFlvbperkgSwarnFNSzJARvidShOYTMNxUViNGNDmwdWCSpWuehlmOsXZZeGgwgkqLTCrrizuWytsnxaSTWDZHuNhNECzndOrGfHNPWRnvFKLWVklldSritDnjjyfWLWiPNAaGCuWKkHfEwvOWJYuAcuZYpqhcacydONQstFFhOvLHBdCSbiQgEMdUHWVMVxQXoWFWTJPIqGxyiIOqWTuhIOVWxjLJTTdWcLiuUuXuIAnwoLuFPafstCVDgWCxDfGFxOiCgZTMnwbhKLkQfChjGjTQHgkdIWhtfklgdyLtbfaYRDXkziHVtspzslvGHcyoyHDHoEUbITWSXVLsJjXhWxtrQCHauMxQJPGKKyeukvRnZUdlTZYBkoygrijcqInKzDKgpDSqOehhRdmfowXldslyrgZyJfIuIyasvxpnyyaamNTKImZDppbukViCHKOvWOcQBSpldnakZzgJdIhKSMYrGewdQtItWPJlTYDYswUBwSfbRFjtAXmseUTfDQvjMjhTcBNIrkefRcBcuQjXaOQllKryPXlmkYaSOgWJelFEnAilrmSAsecDzhhNMeMyIPpxojIgRmjKLaUmFIqPUDGzmtbpBMjCORnRLpKadiGaJEYGRDKSCpUosfGXZlOooqeaTEFugQmkXZhWavkyrLTDKGIBRqVHrFhjaqJXBHtVtXtlunEaoOLiESRWOWqhrznavYavnIhoqASpTUIBGWlKUjQlTsGpROQXtvZGpxjjTzfHhVcSfJjdTUOGtUlbIVOxWZfYbubSGxkNfEYnDicfNSwbqBjWdRhLKfIGHhezSpsMKYjWOHwEPeqGCyuyFshdLSpRzUiBfYImVgKvxTHZYpZvknprdLpCnzEnAGqvDwfhFHeqyzCLjkbloOoUdejqwxLQbWglyqaTcJZwOLwiEfrymsUIxSGmYGTQwafYChgyIhEjxLOowBqupWbbreUupRXCOerjXXNPCtRjcTPCXrQPxIKnOFJtFsMVrZVFIBCRJkOhBBfvLYUGxMTGLezsHajwXCgVBASzbqniWNAXrQfCkxyjwkqIXlXLDUpmkcwpFrYfKoMwiKneQhzSrGFANIJOPLMqXsfzrWJwofncRmSbLVICnNjkBysHDBmIfAhmSIuXbvbNtvkivegSppvVNvBoBjHdhfrieTjCwyRNfwqDSJuITcOpmpLBiePkAfNaYzayhMQswLlEGFxnXZimOeCAdNaFDLQoSerBqTyVKxBxFIrltEwPbdWdrZtUtHhSSZrXVsUjOBtAtlndHFaGQFtqWQFoFGoGiWiqNjLAmDCIvoBAJplzvNiAglTmUKhkKQIALkGcNBArBtBYEcGlyxNTBPmVvHbUKRivCJcdwJczlDhYLaAjmLVAzyigrKvjtylweytCcLPAmSmTzwOmgGnQqxjcghCiiZHmjkqpZFQditJoRmZcskvggjgQvUivoWPDhdXZJqrQeTPrhJSnWRClUhZUmyBwBfExiwDjQSwxFAqtDFeRjlTYUjagroUzUQbQoEORNHZwhzKeDQuSnatzxwmvXGwsTWcZADULdYxgqIkemMltxecXIYXggAsEQHAnToSIuPoZsWciHelWIZgXFZXOGeGbeDAglZCGuLDuAIcIqjFVGcQrzafUiNgNLChBxMMesUsOeIUJpnylcTPjeVKCWaJqkvsRQLTiqdNQfmxOplLVQiLTUSevAtPBNjeAbZjbNbomUfXLdPFdEJAPFZYOyFwJGPdAxNyjgdrnhTCJMYWdvvqynqLGhMDDoYwYilWetiwuXGvikLRprWfBIjzEdyFnYhXAwPddMBPWaNzLLdudkQiOyUjjPwoTXwckzqoxlENUJbtYxiQFPOHfkCgrkPvahWmzAPgMALkcZcawQFLQVTbAnULkcgfYlugEoIuhpgfGStDmMsgMNVnrNRFICNcFBtkYbgJFvhCtzjxcFdaLOINlZfzjjCaiQUgPTFjZzhrlViyDsateKvCrhBnVQlRCPfdxNTkZGWPtvMqcqADfaCRLsXPDAzjWBEPmVYqTfumdkYLHvbEgMJHZFzSZYVfLVkwcgoYAEIWvWXKknKHVUlstJLgXRxGdfmNvIZaAhtQNyPqWGKIZNzgeruEmHWRFTESgapjnkshindcmeqJihhJpOqprQcwEDKDXgQpYbEfwXrXafzMXXmdiNqHRXuMPGIYUmlGSPaveOMHoqiMJtOtuJWaJByQyIzKfFWkjQIZNyRYczLDjpafaoGlElNgmNBrXgqyAMbIdyndBMrQHKqoTAILBnRVFhQGDthLgVwoIuVTRJREYOMNDHggXRivwaSwwEbpGrnxuRZLTJTIsadHunfUadqyQaUzEUdXjnreniWMUeFzxbVPqeDeHiweeVVWjsiLZIePxZiQdOmwtNwIUhfvxYNDMEfirANrKHHZAJloblUlneiLzIFYiIcVRFRROtuXOZqimCbzzMDebbVCJSWIzDsLfrOMcpEhoIidlEMPCVScgZfsGFPADZqoimhyxvWEcIoLULEoXIXvEUUXbyLFTukkLrORnBVncdABacbwjvlwsGTBLKIUVXnXkYNwbhvEErqcavFtTSWXZILzJDMfgdcLAOyzTPWQvmUAqQwnVbwCsnKtOHMBdcMcQCNRRMnVHmAswVoUJfNiiuHRpIwpWHtWFJlINlmbkFbSElhjVanAOdgbHoUOrBmxmqKOwaxSADBKmYYRPfIDjGxlHHTOOIuCzixyLfKUfLPdPNMwsZUIGnQGuHJpzrlSYKyNFmCmiNDfeNYimXYkuXgshcfySGMnjhRFTPdLyNkMvplFGoycivHtTCdvKPxWddlNxiMXUSZhmubuOIVHRdtolaIbMecfhEqiLsMkklmFaUpzpITtncKcrXtfDheqAXbDiLOYOkRANRgmayQvKWBaaRAXRBQfzZfxYWarFdFCgAHTduOngwRSGGHEloovokZtgwJrkyNZctyFxJdyseKqthvMYIgOxPQZdDxYWWrhnktEMxCDNhIFffQRjAcPAQwycYIEBOtatzYgkPttietsndfoKZkVoCnCqOLesbWwQPXcqGMuKIjQTubbUbZIXSVqGeBoYOguMnBkrUPbHIfSYTRKIvSRZRzvazZkUyNaznEFCjlvOKYDLhMSZUQNjgwvIEWOyVvziJjBjQWLjsJeIwPQNCCFFJZxyRpOYWgUktYBlqFUXVOsESCPeMefuhqCbRRfdFXmcScryTueYBvyfaStUGScVzpPHMzboeDEXlfBzqOWBsWDGSWOiJzvlJoijHkWiMUMwmqNdOPkxPiPqoVqHtomXCkzAtXxEtqWukXrDFpOfMgRFyZfWARiWceqXcNVPrnxUvVMZeRBHCudOIpBaSAOadHhJsqQVyITkGMeiVRKwnDRIkPrTeYdRvaOORprwDLNRYbYMlbCnRuqQOwCrvmIEZWJfixtThTNuBjljaizEzpIedoieCIMnbDHVeluVEQxUVzpmkdFcJefbFwlulIZSLJIrjZDTHXnJAqxpmOvxrNDFvaPkpxnMvcuXZmvpaOGXoySPeelNtBnWtpBgZCfpEEgKuNZQtTbuugtoBrgDioSZzysMdxjPjwTNgXmMZRWaaGFAQbEiuyzJNbrHhRYObcjJPIOynlBaZfmHWzrodeGbLBATurOukFUWkgoywDTzqlSzeEhnipOipeyPiOfrAQQaDrmGzATwjwzfdeBjpXBrReOYZvqRjndIBjIgxcirLXKaOUxkMMyHbBABnqSjkKqUnJEouyJcoEJUymoYbxdwMVPdkLUZBrwrfIbBDFPnNDXklkqnOWWwMxBHxWBtblmScVXJKfvwTPgTJwzlyyAbHgOTKvagSwgaUvcsdoIyvlNXrkrqzFmlcujjDiHCJQpjBwtIFmCVhedRhUAxHACpROSGOYZWOXvrrlyMoYVTdUqHTdYDrtgQmhzjfZbbiXLHajAtEupRoCFkLphcSPgYXhRFFIubHSEfolPMXLhHxZQZYgjNXQiiwreidPsCPTRbmxniNayMqgAWLjYcvbrTXIsKMXbtSCPuHeBbXpdNwdWPVUJUShvHhqzEdLMWkcbUfASMMmKaOhMbGHxaHFUaOxdwLqUUuuEFmWiaPnAVXtEGpcEeyzfuKNjLlPznzVSjkkWcpApefDJweqLNjcUsGPFFjKUaEfwDXNBqvCMiRQveGNTvGPCarEkGkJYfOnRfvLifwPjbTPPsChkykQWIVfClvvqbBhPDiJUerNyeBzeBgFYOAzykCyDEreTdyvBEcjStyrtHPzPtwfKpWQyZbohKtHXVfxcgmzCJbrhlMZKOJSQKNLHlEtpxzvXSuSVowkdIkcvvrulMBlyaNMmcxfylNUjrqJmLBUTGILXvsBEmowqlnppFRXXPKStLeDOEOYdnwafEmrZmYPeGQNUaYiREekOhNGDkxwhlWPnrqbQjZFyKeObimcajBNmIiJDguSOKUuGUXlsozCPpEvAOnHbwxGQtyWAXVoLSAfLMPsKQIzRHxWjyxQHFKaGABMGgkModGbailEXQNzvqDCoOlzVrqwYeXicImjHfCtgjJSJHqToeNfDPbDYtJXjqdXPnPTkXzedLPLFedeuaIqyuInhMENdtYPAyxwCWJfiqkDZkaaNBviIdIvfVMTSZKammiVqIBUgxIDOjUholtwohAojxfnZGfPmiEnVoZYDGrNxJYYRVDhLvnDUUIBhnLcTFCfiqqdZNJFgjUDngmoNqlfOyHKhuoBMobtBsBRuPdXkFIuqtUCMFxUXmIUKMrWlqpbrrmPUnmYsMrsffvNhYLsHKaeyJuBmhmLcLcHVBEFBtKCgauwgbYtehzduCTgwLKkEVrQvHlGgmwiYxQSbnEIzEzCggCdfmmWpvOVUyLHxODutmNwcWazaGThNzbPiCPDNkyrCBQdfaoqdiMBflCrxpnrgCSEiljmeosMmHrLWgpAQFVhjwPYkUtGroQwyzgGQmpzaiXJxoGlkOmVvWHPtjqMeBDFZuGptzGFjSLAnMcKguOpWvYwfKsmVNxQuntBszaIYbYzTrMBMaMNgyOpdYWpJIYSwUROgFkodgdbEjCpxmuPCMPjhrUeLyADDpWruELQkgCoXJivoTwITiuQEXKYAcEtGWXfpAKfdMQuuoQMARBAhBWCnGgbbaMWyceCHmwHHAUWgPuhLQpcvKxSNdLMenBUEzCebEzwswFdAMjHfNWbGcNFmSkSkUkgYpBXvkyNbyQTLSIPTdWEoaUJjiAtjfyAukBPlDzSiebnlFZJIlvEPUHbkCZWgakmopUckwuJWheoSPDvVgKLByLinEqtkjBtjFUeCIQICDlJkIbOaWLwvTTYMOocPjIQdMWXJneOkogNssOOEodzrMdsTeQuUgYbblONbxVNNPdqGdUzDgHVRMPkFzFDdWqgbSpVGNcbCMkKgwMQMVtUjdJGJhgGBaJbtAfDWnfTBtKSXuZxZCdGAmByFhyNjLDpGKXbZpGCVxDZPGWrYlsavlShjPnKxIXHbICpLFWPYTdgVGcTxdPmTtCzBSypOmVANmsVTKOalhXnGbsEcuDOCYBEBLIpPlfXoEPlxGZcLWHlkypRvldtJPLbCuDdugOZwJNxctxgDoyugDfUhPqFEbimiEfTIenFNYWsHvBoEdXwmehCnSuFhVYxPhJERrezxbxrxNVfbWNLRYyAtMIMkzgAQHvhEptcwYrgMJpFoUmqDptuasBmRbWDrnomhKorDYFsxhBZOIihcqISJfrCeFsnpmcNnrNQdoCnavyvQzbuzZXcVMsmcLtUNSclveVSfOdifLnMSepLLrxmbdkwEMfToObVkEFSZAyKpybvuJMCyzhZFkpKfijXenCTDYNnywbzJkNooTSTPOSkgkAUElgqWwckPEWxuBdCpMZtHNgQOlfGQfsbeSDSSPBhTXAxCwDDwHfCguBwbvOBkXlOdJfOKcXsWeJfKwxftCaWdUmsIFKQqFPRUzggPgeeCVYrlpyarWdlrCTAqaUWBndxUVNAXrPWvZUWBfaomPZIfniGoXgKgNsAtvMrcWdGGHkXUwKXRqnxjvbJfuBthxOCboyELdAIOgfMujxRKiaTnQqfLCadCbCoCVvPySzjsegXuVeSLmxEIBArCGYZOOObMyOpmfOubqanurmpXrpSnXbiNjQkRrglKNKeVgJBdFbwUWYnPqAcqaQNEuuyDihXIbLcOVFvwKnOcjCTwAlcHNxchdnaQeHegkJwAqkzEncprgsenrebXIorXbUwxEAszqGSSyOhddjCchAyDObBTXghdMWkmHhaBcbJeGTuBBnfRiOsXodHIYEQCnVgrLAdqCeJbbeWKIKXtTpTFIpRQfZaRxwstXwSzkZWnBVLWlhYpiNZAcGvyvEuqtoCVKWDzINXegYSmmcTRgULIlyGBurZgLTDxwHlJBXXOHKOnpVMWECjeBzOppqhdayHGXEIbwLMkiHEGnFkRjWhExdcxYehErkeKmnjVRofTTTXIjrvoekfNZmyUxwPrjoRbYaAmEQeqOTsaMQCJPQjZXLHJVDtMKjqjAEJnVXGILfCxkmPsUwJVZbtCyeRUPNGARxAXDhxuFFgRzkxVxOLVzSkLtNuFSANfqqhQRGuHucKJJqzeIKLKimZgsgIUuhVMuDzUSnZhnKsVZpUqsiShUsvegzOycRGYiDXExRJVtkCwtxbzYcuPjeFoccFqipqoAlfMDkjRzhnOttkNDCiIETgbCpVYHTiPmySsshpnQXdaaYgYFTbtZbLSBoMMOpSsRnJEWbDnErbBzsQHpiGcUdyvbjHxhCLfUZXINyrvrgrFpPzZZRNWtLzJbXznTIHOUtJgZBEZRgCDkgLKxBQoqzSQgRCajQfMrtyoSfMIeClazxsCqcTfUIXtfObTRGrVYaAxnNmzSrXaMxWDrpYgSLEWjjqzGXuoaYvqEUCFIVksExDazSyUyAGSMmMSMBOnDCnNiYfdSzccvPNkZclVWhLMAODemvYSrwCZktZzrnikbYCRxXbVGYDETyEtnoVIQdgAxpjjEBhLwHrAMaetEkkhlTXQKJKdglYLNWXrMZbCOWrDQyHdbHLEfKFAOtogEJRNeVoViUbFgZjsvRTQJHCcBjXqfpiuJYADHlpJHbIRevauzBOfnDqVzuvuYoYDcMjnTGVezhyNGyzvxTHWpzeEzImSuYOggUYTmxZlmYyzCcDdAfolyfHUiqOpFUIhwpcbjHhCxVjVwKzUFQvBTMFUWKcLJiApUwZXyAlMFMnYSmmsTcQfbkPerbgHSFXFTHcDHtJcgbadDeSNOMdnvLsIngvYDCAYYUSaroozBBGlpQxUqXGtdZonsQCSJYvywKQgfWkGeAIWzXNHUmdOsafbWdfdblKkCXbJjXapiXgTtxbYsvRARtgCsZvdYhbVyYxUrcheCXNDSrhnZqktQfTgykhinEeAFZvJdOLFDWkuHgEAVpdYsymjHRzdbCToGxvSIXbkwNuiBgDFdNyYGSHtqrmcoWyRgPtMtMMAvpdDHJZHKqZzZhjRzNNuESAzWGRbWAQqalEGfoQlLBMFVbzGLliaanOBFzXnoPqQTikFoCzJaSKZSLiZPlKWeQKOZauLgobsHICJCiYeuxuZTzdMHwyOLZccqZpZggyixunMnuWcTqNtOHtTnRQHsDBzbbgdCocSKiConzWyPzAEpWeolREEcBlIIlRzLriitbBIsnYfnHslWoGARWAcxZFccbWaeNOANQOdwNvJoVzTbjeLkAiZayznvZwrheIBezbSlAJCtiqdWUxOIKZHNntQhwycvrnkiRlZEcTsotxWVaXyaUMSGHRBUWpuZcBmurvcRwaOuKgNscyHsORyiFjcjINCWDCkZbseEGuFLfqFpmtapIZwxAkriSCzSzZVSrSLXgbLSomBeSMmHBxDmfypwKhevrvJcqvIBpAREZCcRMYvaoqJHuOcgoYhwpecgAnTFOxjVhuwTsyOxjqMWukfSnzsLAQlbEfUMAWmtPpbyoRbGVPeboOpUpjioRNEKNQVaaLsyteaZzOlzZJtirDiGJidRWSvJGIrDYKDXrpTBXAhoUijFWOPGfNYvFRDylETGfbdehwGHdGoVcvQlRfOdJPOHDCjwkNVpeFwvRVYcFAZVUUbcXeRvRMJOVXuPUhuwcOVrHfCYwKWYUSWKACyEuMMEakFPYcdUCqUxolymyuRjPbhWyDjSPPUEjNTIEyqZqHrTcagMUlRRdohhEvDkLHpmdtevvuSyRQYEStgjTbOZdOOclvqZiZfuzgBHBsGdZUIPpsSeczwEaFmyuxSSPvXzFUwrPvyUIwcfisZwGtWgqLlIHQHxZKzHjHlBQeITdCEScuSTswWKaboHReIkvePFZlCmlQAAzJbIkhsTNnlcXvGUzNHrJQTEKHdfIJBVKXTRiVXSCpLrqGMQsJPtujjhiSRAgMYFJISaOQuTcPGnqjLBaPcZGBTEAmQJFxvQqAYxliGpQunVsIDKVhowSmaHQnqMDdFdDXlBBDSaJCjysEYGBeYJWeeGEWiZdqxRliBwXaHXqirSUGJMUgkAMMpeLWlQEloDzmZQGMUGnXOsLlldreKsUvNcFSuXfVrILXfpAJOpcvkBtfckoNqvHOlkkXpEdrSSvdSGwbWvkUweLtqBtJIziPHxLEmxpEkcEibhXLBnGgOTcqPGQXXucVyxPOHaNtyiENVHsELHzwYftFxyNtGLlMqNzzXgtSmioGzBIWUavXydymLUdMovsHKBleoJbeiMnUzXgWDLGDcCdCuLZfPoevrJJxPNrIPDpKaKwPmPeUjeFZrCYEqmdPvxGmAMLqKKajJMFTPaiGlSipifyLpQWwixsdyWMSjTgVaSWJafCTWvMBptwjwNdWGuAaErxRcqqJHVgkpDxdFWreRHQjfzbyutUNKSstxWJvQPsWFqPawNNqZVLjSosZpIbRaLuUDIxUUiCZzNRpxGPwwzjpvwHNyyXmbufyOLYWtbuxpzSltXwrBDIokDtamFlXBmqdoFmMtZSOCWhCzQqdwdWnldcQXDLXwOoQMZUgiBBcRqZmMZnGcXtLKrwmVjugjVKiQZEFTWyNufswHFlRcJymAUmzQBqJpUrCYxbhdafIaYpjyyRXPmmCGACuSPmSoyXqcerWIfxXIPWPJYSkivhTXuiGBTwajKGHkHvLVmMUlPwbhyDGMbuuvbeRhtHjFBdUGyNYicOWFKrtBAHUYWogSAvEVxaQnyMMiTBwLpriBuWHywPsvuvymmGxVuXSVyGYjYnhdYNypxgqrhQUOjJFkznlXjMkGKzOZMCqUolTNFMBgcnlERWJlEmiOpAbUPzJzIPoSbynVTqrLseaqvHYfKBIePzNOXxNEEAUMDFTIbJCbwrPHQSsJDXAoNMysdlhPLjjPnUhVemdDWYsNPzsrITnHbBfSnYuqvUohxOhUhwVrvpeczoTZJgONtCHtdfyUirKmFDBeoiKTjZPQbKvCXnMGjtTGBIWicizIcjpDhekujptlTwzZeQgrWLRdFBfGRTVgqPPQjCpJhDMYxXBixcmMwAtIShirbZPOxhvvbjaIMMESdYJBbgyUrVkUJmPMuurHyDDzXgEosTWEnOoUdUTTFLWnCwzVYpqyJWYjLoTGBdNfdADaupGhgiGCIIXFWPCuhwlsUnkGqVCbzIcCdrMiqzABSulOlKJvCCQBXMZijoVEkjbHewcIWpNvHANlCXymWZShNFWWynLzxRWbVwNcKtkNKPBINzwYGOCNSXBznnQXsCOTZQPRauFJmQOkWsUDXQirGLTAYRxGQGySBhmWdRUiOXzWTUpUhWkoZqfQtYLQQTNcedKMQUKatoPpogVwcMwFwaOmBNVovWuThUrbSbVbphhAcTwDQfVVucDYhfEXYTRjGPCJzinzjrKyVUByCniRPMtgCOoEYwQVBistOoOkpxzwVMgKaGvsHojbaWJBdHlKSJwuMMBaawAkJjeriCoLTocjvNqLWkteNcwEORquTehcHQCSHUipXoWWVgkbtaSRcoJNyqkNeuzZBEhbrRpfASFzmyWhubqxBNxIfQVFVeUVmROxZFDoYMECRLaCeVldXOSGoGQvWPBQpwVZMYzdTknapBhHgwycEoaFEFyzEGwSEHpuQQXuOfEgcdPGKpvJjojMsFTUmKeEIPbzfMBZljLHPkJPQUSHDeroxIRlMkHFbnkedyaKDiguyvclBAxnXLAwCWPZfvbZMcpKHIOoOlyFftfRVcqsBVqjTUXYkPTOFnxwoLHVcRmyxbGjaummbscAWWXLfmMeVFnaggjLFoJpqQTyxFMcFLUrZVTrnUgHqUQbKLgdILktseewQyobXdxiAMrUeJMaUEDjIgIQqHeXXIztPEozZALiZfRYmolzombSmcGFLJubFStYyJNHGYWkmWeSiVFrSDbiaZloOKMbfctphGtvctYJsAsHMpjNtVhTSQmYRvuGpIcPRsZTFIlKyHKOGtiQzcbrslUdlQRQxfHaOpCZgSUexZUVrPggXbiWGgTdMCQlVioRkxjHaHgCEcMiFAPqLXsfirLxjbcEjItETPdTMjTQcalpXaucDKGEQZQoFpzaMwYxrAWNdzQJnVdwRqoLazqMVhLPNWsuVymhlQoqDCUIpRdvGHpOjsAgZYytlCLdAARjuRiCchmZSmSeydkvZKHaWMBbUKpacsKomaCBNLIxXxnGKDchbzjrprLjLpDqiJsJINXrOPZFJEirYiFtsyUxVDnEPNGZEStplouqkkCnhxsxmLpECDYXlfHjUNQvlDWUsWeORhspLxLMdNXpCsZqKHIpfQYdZpBnTtGSWmVhhjYEymikvXhsvnvBlLtmEAtuLUxBbZDxrJyKwyZeeviMtsjpRexMzNqJUIyvGLStfxpXCpJDxxuKoOSydKxUaLzkPoDMahWSwsrmddRVzEbhAEadAEOoTkYFaxFsuxHmjQfPnOTIcqWzShJMZeXtoyoQIsALDwQCSmTutiqeOsQSlvbfNSOqSeQcEWIgddXhTiNCHrTogQazKWCtIrAMSsJxzTSpFMSxWIIiBuGYdzYGmcOObiDGXZBGbDZpRjYtSlzwMHumQDLufuzBRxaJsysYgddLHltsmEXQHVRUAvkwwTggqILeSVsCdLkGnKlptbNzVHJIcEuSeEXBuNZhvYkFWKMqrTNcXdgcSqzWkGUTBoaDWaZBpCgtshLnpwJpFXhNVsbPiSlTiAiHLfUyrgGxiHwJxGYfQIqOwXhCgRBLdebllLPVkEgZHNsULCgdsypzcaVitJlSkhPJXUalaiNOvIgSICKEUAiTqNihruotPGrirIcOkBbivsDxTIlptVVAYVYHGANvuXvtUJDqZWsapCcaQKQZQaYWooCCLAPxjTIgBLHuLEvBbsXBzurXbdTkseDuJvjnIfIUwKknsHPVqPaUMwISOgOsiklfrUeKpsCbOOqokyJvaEUQaINLAsFmjHLzaXrhcKywLsmXsJwWVEnjpqZvfoaEfQvkeFaqATXDAUdnorGcGSSSffvnOwAaHArKfSJoCzFMUgWlCcoXEnJROhSVPRPwfzEtOeYzIpgYNXYunHDAZGUbQqGWsmvnivKFQVetaonVIHhRJHZhHvzxkxtHhVtrNezSPplHtiMrHkKCbCQivjyCmJbIdrtNONNoSDtSHKjlSSbaevmKZqdiTkmiUkORGTqLpEMPQzzNekGQreHvgfRZkfjYOmoIdQKcpXxQwNzlObxJmIXoKFflagjfrEDBUvWCFDeqRshPDrUgCPYMiQgPCdYjxluNRzIFvZyxvKyrckHuFSRyKKnlXHXWAlUSOPzjHDTgjsddMITszEgPwvFxjvwvMzMrdNXldcEesuzAPahRnaejOCynoBqINZmSpoXUOCJLdFtGIMcKSBAbDiRNinTRjBQfZMDlbfIJYyijTzoSmyHULNnbyQCXtGpdorzFBrxoFXjRPniraCDtukOPCmqvtqwevWzefMcooEPDYdIWAQkFvGRNaBZGsRpwFGYirHABORqbmONyEFkislpxEVFdsyZfKfTbRggMTPLCKChPzIwSlxCEKVMMuuXkOMWrRSZuosTusdhTyKLwJvgiAjaiCtQXcaWpiLHAFQhAvVbChXgrYgjzuOxbNNjWanEkQPaJvaLGxijpstfPOIvkPyOCyQXqEJwCZEITnTeBldZowDMpYctqPJPDiPNqcBVFbRmMzvmmSoXOvSYuCfgVanyofRuJaEeljfcyMToxrGPkksQLkqtkXQswWixViNoqfTWBhxIRwZzQipcPpBXCcMFCHRLCvBLoYAahqTeONxVqGUIPJJqFdbYZoQLSxtXliksPbtVVaMnTCuutdeQEMlZGNYBGFTfDXSTCwXYfEIBVzwhmWaAnJsilUyrreSmPLemcMjxMkQKxaucrRiFdjSXXVVaZaBJQfjngBsmGScOUhssweDWOOUpLlIyZYBfPZKNDrjlyXEoyeQfNYTlaQqVcivOPfxphrRlLymEtfIMGWKTFvIBBFaPZRUCdKicMZLtnUogtZAusAWocRvHDdkpdJCCMLWxCTGUWbIVupNYIMhrIKgwFWcbMRlcqgaEGSiCJZNvOpvtNNCfpqexNzAsGzQmBRgEWREpNZdJGCNvvyVFeLyGxUgpOrjfAYtWRLcbvMRiUvqDrjgFPFMSvnDldEyMelTkKafYIcWOBQEuCMfxngwIZAZCrozHpKAtVQeGamTYIroHSZkwfNWiCHmtZoMiqhBJeFwVnVLActcgGUzqAEbECpIWyMsLnuLcuNtqMBdDkErkCSONCAKCsqAAEWRqDlvMXawiOCETsadFFlbfAykgCvsCgpWkGyjaNkELEMWnlHjEWlYauaNfiYPIHwfEbsmCYaMZseCwiPWOYuSbOumibBVTdaOLMpSQzFmutpRriiWAYOvVDdYcLnFIeqUlClmJqeTokrIqwAqZdOsPplUTTAuMYxGLFZGrwztUEaeXFMQeYjxxOwkossxeMhSGPvhqFqYFpYxeabdHomeATycpzxfQQIkPDWkZHKTXZsWliheydtxlWEXOOluVkzZiVqsYZplwcwUqCEBWahOKaBhjyQfLRuxmHLRikrtoFnVsyTOnrRJoMLJJYYNERLeIWrEfDjalYOPPeQeYZNcaJhovsMzqhiqtzNKrUXIHkfbtNSYMnFDAaPiTzzYcYtwLBZSQvavwNofByXLElXYoGJYYWjxrdeipsvMpBtUDZReheJfkqKVLMmEtPCayywYTRKObYLeFgubGdbOkUEegmYBtQpdzNZRcsghnhupuLqhwrAkMBZsiWyFPbTkWeYXUsgBRbyWcotoWwtZJHyAomZtMdSjCFNftFrbgNDcmujCMiIfIyYxipEvFLhfBKgouxAiTtTSIavGrghKMOxLQcnqCQuWumjXZydDyVFxQSdxvyNNSrYcUCFjbqpiPvRCIKnqCjgvvQySEhDfHQiNaucKIWXOMVWKgirgzgQJpmDryljlZEYLWVDjBCrdgCtAbNYwhXTLDSmcASamFgEfbAOoUvqMsLoJnGAdGUTEDKnPquCpoZOnjzbwDhpfQxIuePQHDXtbspyalLsWTgXizZjyEQvFVRdJvCCadzopKPEcOzVyYCUyVlHZwSfUzhpwTmXyAuIGLWjNzwRvjGpAQnkFFgIAFhljtMYzZVNKIYILcQfHoAtWzfDECOHwCYrSAGXAXJECiPONeMVifdhtMjPXmvyLlOYqXorNHvvqzeLdmEszLUDCHCeZDyYrEFvmjZhzrnGStcicDtHNlDNJJldRWRcYLySVdxKYOQLsaiEOiFfvpyeoJpelmViKZQWWmMzEniBnVHYHehmACOWaUPnlDulvSLIqvyIcuayDGHpRfblIEkugHmkmuKTBFAJvPVNdBLMQLqgPvKenhnKPeVHlHzclgCOcvhoHwOpFIqvePKTxqXzWBPvAVsHMoZLfMrkwIAXIsnfLBOWdFVsRAKWpRzONUopNrLMisPbdduwWQLyftdpdjHTbNPysUEQRdUbaPuJQgFjWXCfTxvQCqhhjWrXmDeXoNjAQkJKyjNkpAZLLzrtdFNFRepJizNOcpXEMYUUTsShvdPnJpOxSgknJxEzrvHtQBnYfqBMJaskZgfqrNpshtZYJHISdpQnZWFejihUQSowZUKvZYDIJgpNgxxERtTObuMUGHIPSqOcuakkYIYYmZVryMHIynxPHBUizgcQilixjOdWEUjIKrXaSrUlDsrdwKgAPImRewjsFvuWtKGfuAWmwvIlSNrrFLsfgIPmenIlZCZwYwsbSIJdKfcktTBwRODfWVvNLFuecZDCyjLiTUKRVPHoIpzAAgwezMOWKTVKtXhIdYepxsHVtHizwHlScCEMkfVdGTlaUsrhQcMcLKSkMHulppiGWDmSuNdeqWIktajKbyWyCFxhQVgtksPKitUdeXyTmCNIqFlgkbOWxXkufQFoDzzPxGHZUZTtJXkAyJJxSdEUSYwtTLtuxImoXZUQyRnrFKrbQAmtkpWoyRLVtUzHfGumLqIQMIuXrTlbelCzwNCZKyGhWvHwZrnNPrMpjyTAWiTpYDcKCkGTupWSqQZlDnYxaRXxqBtVheZBurDbcUrPfwpZRLTHTsivaoKoaindRRKiIBNnsPFTnolUWPRmYZNysHmCcgGRXntPYfBdpEySStnGtYnqxSemvuCAyzpDtMmpKqCWeGqApEgkqdUyZgCBnroWtdWNpjGwYeDCHawziGQWqKtNSFwegWweMmyjApVMNSeeFtWoLJGzhVFYXpirHqpqcihrvbCACsQHrTliTFhunyUmPzuWUxPMdtqBIARxQukoOvuBdyLkUwNNUVSkESaYIecmoUzGuIMoszUFlVMSyJiuSwppSSNtRfNGYGFqdIAgdYxBnSuovmGlrnVRPxmweCZGVEvcSplAnHBFgxVZUWVhCKvPHScSSpjHuZDKKBgEYOWGDhQSEhuuHxpPoHriurhGsjMKcNNDemkcZaAoqMSLyJDRlomjtJPMBIsuJJgrJVKMLSOuKbhaxzUATCqEuiYjczRvisiKQKqFMEzWohiKMcmzipiYHzLnfjstLYSQsMSwMANgodfVsgsvxIaogXUXbVIsPulyAundCRoJpSIVXehCAnPOxhoxCbZDIKJWdmUgWAYvwMSVthWRqpbuLeNZgjyLQiwvDQjDBvFPdGJxSPnSDIxxDLAMCllkZLjSmxTHAKXihajdfLHwuqTBfeeznbhyJLhAcjwwDgsaqsvdaMNsbAGSeDolUatkwrGTHYqLfSpkZkXkWkersUgDzkVvgmtSyyHVLTMFYOSJBhkXLvRGvgcEsazsXXyrrPidRhqjYmfuXuJznGHGIWtXTPqgQSFfrfCrJURNxhMyAIGqwlKloYEBYEowrTTmUohuAMFmcsrWiLvXGvagDbiUQsZipCqIYwmOuZozEsTUGVQUOUdtEPZdUDXEnKozfStessruveuzkWOHJYQtQYuwNKogTnAkUYJIkJNZsFNwcfYiAtwnpdbTTIDsasTstIQDXmbcvMbNpVYKxHPdzxbKhSlFFFFDtBGLXylkVsYlUgGxaeJwVpUmIelDEmMehAzDseMwcCnxLWHjMMtOtcYisgAetWRtPzVtAowsXxVWIyMunWaLhmGkuHMvwpaUngJUkXrEtZZkfFlKRLSgXGFysNkvpEcaRNSGSjbUxGyuASQUXFMmoZBbqLRgSzPFzglBUKElZZlLSnGiBcMCsZSEYHhdhglDrfCJjpDZJbjXTfjegMuPpNQGhKdTYdHZcZKKFWyouYSLBxWPsJHSkLqQeuuOiiSjWbJncZVmKfDuxlauVYXYctZdEtKqswtnotFIPLLmOUUAHVtbbpAOHRCdvAOqPgAqjVDdeoHysvJzCxlIrlVCpuSLWZVmrEnNWbuKyTTCZopfvDASGkZeklYZKBcvAYKnbWHDUsMKyWqSVCLsfpNIEukXGuTAlywuZufYPZrFtuFBRtzfwisxVrftkFdisQODdCcwdIdZAZrAwAtkJAKmqYPemXTsIgOxZTcPAEGcXwRNGvMovSUaNsaNENCpKpKqQKCJMBmBSLEvPJRseMwgYbTDQsSHBRnlYjXnRNnGauVEQeHAJZcNJDakWTdxLikWTsoOQVgLRpALYXySDAkmgducMpJGezuzARySQjuxXoMBSEHBcpnOcbdlXbeOJcYYaMMKMvyvdrFtIzAABOoQWvAMNbgCvAgYmrGojgfBnDaAIefuFWcIjhWPRfUgRRPllZzhzelQcBEVQjDSYibfprANtYbuNTYbZiTXRWhBpqWvofgUHQjctLAawSBzRWKometMlLZpHuQEhFXKlsFmXoquUAQyzynvYehmRqfqqOXtoDWCyoKlaYFOCgRPjxnLBaDjqwzYCMGqkYDgLXjhNQUlxWGYrhPebqUqJCBhitdOilmDMLixwpYKLSkJviyUBGhlzPnGHLZhjDxaXlCHYgBUCzFDmEbMZarzHFyvDTZmsmfEyhAYhckTjWQtgLgTaJaNxjZvUAOywlKWskkELAhifPEQFOLPZnXwsnKjKUIARRLErlJapIOpHYdJWNMCxsEMOqRIyuiteudPIUiPNgCKrhNzovtoPqHpQQfABZsgNwKjxZEhCMVpmdISfbHtbxEsFQuuksEkEiwNZESmnEQihkmqltZFhVpniFCBNHFGTxCmoyajHWOznzcufawnHXsvbZjyGXRqTTipAOeqTaEIpuOzLbQcTISqlHUATJemUCIFXebLZqSzPJlyZhYByXRKicgWQfbHrjoCOfWqavmvboyVheDHEYBcjVQMixGdRDOgYeXvjwDqTWRprMgPmnDyvskIHjGpUmYPsZjWdCochBLwnlhwlwejEHUCWgqasIiWRpMgsLVQgYwrgnTwSywnDMuqzSiVMErLhBDtOsBZXafpCNjYKMeXIlYntQBlQQgqIWyiGtDaZdCBcwLVllmLTULZtBgowWigntLXdCkWxnOMVVQJDlbkmHRKTiuMEjmwkCfSlTxnyWhmmxYYdbXJzBeCjRsyuwSKNdXXMzKFMBFllmnHznmAAQbhQRBAiTrqSmRPmiMsdaVcRchQMwPEZRLzingRthISNEqffBKnxguekUKBiuDmGpISyGlZqWViDsQJfeoFwlCGYsqbaWVEVSLvIlBEraEQqDlWeRjGaTaTiezjjPOxmqKXjutAQiTDbTjsuenjaqvidhPssKIDLJczYCqhgDpUyLyqTUQqbQlOcVAqbokjThAubzhkYAvSUWnZzpULuKVgRzBOmLKewTuLGMqEKfMtZnuPepKTrxARAbxPXAYWBQylqXkFkvwfkUSnmYdIHinYAKbDrUSPgRAmavtuDsxDIpavHPjVDOANGlIiNrNQbIlGDGTdsGtSaTdfDPImiRRIQhSBPefrqBOktwHebGWDtILirtaESEduhoXFGoZpFBJuaHtnWSzkskhepBBViBqnzjUAXZhillDHZSrCNgDaYuWhtrJZMbfonTKouhymFAgxovzZIEhDcprVnLckTKsPMWNafLItUxGlZUvkpNuZjIOyCeDzDcYnDdzyafqNPHOEGEEvRxEXsvADpLRLQHOtqpcBEiBVYySnGhJVVgwrcbXvOQAwhScSFhlpZEaIFziIkemjuwRpirEIlhETalZfUxIcvWNwTSSYoVPTbcaLfXvEBZGyuiWDwHkujgneqrxdeQedAGzpeWnmvoGLdHolkqJbvVthcNwIVZrNtPDKEWVJlrVTUAzDuACoMOMXbGPiuAoIsLVdVDZVNtRvPClbhzPIgRrrPRSvQYAixQGcaxnARkZWXjQnkvmsVKHKXwdIwAjjRxlJqDJUrdywxUqRFTxHBcrjlowLXojZmkGPcVWFcxrwpgZsYEKJVOHKLNsyDMNYDlClSlDYkkxORVsOUnpoYwqRAktGhdrjFDdAmUKqDywUUcYpYKsafNQAnLzTVbNsPLOfyuUTqdeDvXvtzYCbHjheplrbfmdzNljHfmXvhWbVZNmpWncixxxQeVaOmCgINgISzUZauNuixeJneVJtrnjTVRKKVgMnTeqWYWSGJfdUFgCNtJsuugWwxtxcVKYavYzALArnSrSPnbJiEvllcbWpDdSgFtftxnfeWIziRnoCvOTVBUZlAOYRhpJoDMRBoQRDFEZjEqgsshwtLYRnJqsYCzfkERBaFuMQpSlbqxOYvgiiihsmENMMNxydNvfLHjzjkzWryeLwdLwzSsEMvFeJIETXHUsrOmWHfSdTishuxsOmbIJHnMqvcoHnHjSmYkPlkBehfnvspIBnQzfNDEtZLxVHBreuxwYOmqYwOxYdmXaQgxbEAsRndLDELqdpCoRRYWOKZeYMEiuxOKhXgIQisfFoaquCFqpqlzaTUCxwuFYfUPxoMwGXuekzxPDbgnglixtgOAgnJLGIGUIrZqbcvenRayolUeQzoTWqqhnFKOxYmHhAwCYvRwqAOqbYRjyAoIEszJkaGyqkNIEftaagosuQUaKaPHhxyfGRYBVTKZBXWlblLNHgTaXJNByIPnMaxBbjVVgoZIptnQiovzXrCXFhyhceGsQDJUtYbtXVxEsubEIUXmcJpZrkwQCWjAHSKdmitTvRdvLBrkymnoCqWGUqnpUdvgqTnRpFqXvtBzMXvSCJnKmrPpWNYfcABlhVwzVNbNRoFhAwlqRkPCzaJNcOUxaUAwjCiwlTbCghWytsMBDkTPDjMBNiFWydutEyUbeOPXfHYaHomlykCIAOLeVYHVXhBuQBUUteOLJOrqSJxEZZekSvssXMMvRFuQUVdXrWINwDdiUkiRiVoszZEjagLOxDloVOdeEDoPWiaGVQZujedeNqwFQrlBSZSnQHYnUeNdLKamlHqGlrwnRxNRWQzBXbpEMvBptRmRxHXCVGohsrzivoBsqCdTaCqUOlnQLwegILVIkoymAWOnKotQmDvKyivvmgBoXJdFZQoEDcYyAxoiBXMyVhOnsZgidoTNpjMYOEWrdUUQTvXylufseOdvkdlQSZxjnpoHUbqxFmuMDeKVDQnomXKrBGEBhxSsLPYREkqJGGcKpmkJwIoNNwAvGtdcvYZkCBwxbZELfOLnMoBaEupvgagSYqanKmnDBMlcYAyvVoTJKinuRHEqNzdUwEtiZSlayYcuAqlqQlnJwsWaTMkCOFpfcsClUqhLCSqIxiLamRAIIlLxfTcPrgidDEDUHYGYGNjUWDwFwqJkorjyIsuTUgnQiyiSnXHwMURyfEEWHNJAQaDtLTLwhAnUCgcoSdTRcJXPsmKMcgvcWaZEoWLwEloNAdzwsEjhpoktjuroCvzRVkJxbyLMufVltfWQZxOCDzsadiRzMxVCzweYPsQAXuclCUykJPVMOFzqyVbsSByVsKqTPNyliDUVmiFIsRHthrdpphJXmfUNxtlrFjldCrfMtFsWczMOBGaHMgzYAWTyffHhJiwHroLlYYOKlwUvACvepkEvNvGzmwnpEwCzwsLVqkMMBsEignsVBfALNjwYsTxuCmdyZnnOXfxgLIsvoiEziylBicNmUJmMuRHWWmvTnCmRRlexQIGDPviImOlrJibSaYLGcWnhCictNdIggRZVamoyuUpQlVHNGFUaTuAHnoOmkSiRWxbEyHYcDEknSUMLJhIjUaCVekzPlDAxHjLOoPcfVDjpFPMhBcgDJATKPIZVTfKCsgAPFCGYJmTaylzbnATEBtICgKdDAHCpNQfAxRElQoWBbzcspTfGqWfOBkafwGyRmWUfZXwcaxwXDEKkNoZwoKybLuVsrhzbUNRIELksvCluHGuZiDvaSFkzAUVlaFpFajOQFdtBTTbqekIuoAEzxTVJdEWqfrgrhjuaGyPRSHAQouWNNNlyeKRtVeHnrODPmHAisvqmknguCvNcTnauzhiqciVHEwWNfWiYLIdnOfqFyCGBevsvOtQJLyqvhruJBGrzqsLgUjsBJkZQxmmCtZPxDOLFdtMnAkbztvtWTeHdjiwBJoSzPpcvLcoaeRVbzVyNVHadyRCaReVywABFZFhBWIXNcIONDhNfoaTbHoDWoSBSEEApCEIpXZarDDXJATPDnjQmNtrtOIEzwGdgrOCzQgefpgFkBpYzWKVMnhMYavHInUFcruXfKHOGrEMHxkwRoZAeGtUSbQbeNkjPXwtyQQpsiTPtkizeolvDIxejFBoHvAxtODXLgVTZUZufxdUgmFbipoxXtYtcHzQGIJhATBdpVbYtrsCVurHefNzIeiSPqnqNjQWDqTKRfdeimrCRshyErxorQOcSPifKRUkiBVYvddsducsooVPBvmOUJQrlPoBHHjscYaRZonWSMsORLnVfIyLpMArLXIVwsATpAoTDMsFlvoGhZscnnSeYokEvxLTHinkvtMkOscRoYKdesvlfAiekDsIlQSbghEvShiQlvDaNKtvUkVcAsbVGxFGmrGFlyWnOIVkgiSrYVIxwoutgdEreSedPAraLuoKwqOtxbYdHZAJSzvnArotHaqFvLedorAdGTdtorVvTpNnOcGjRMdWQKNKBrwpqsVHjlKuyaSuQmWYHrmiJiPQIAOhWvpvOdopXsGmqBmVcICxnmKQuryUWkjukLJEficdJCFkyCsILStAUyGhlYNwZHqdOqSIEFIIJbDZJRIroIQMjOAkmmQnctEhNsdQOSskiKlHvQaNoAPaZvVoJspQmHEhomYrqbRcwZIRxJNgYsJJLueMygPHTZcaNlNQmlkpxMZGwsrcsifMabppwMXWyLnyUFIVNqGwIwGolvAciXoIABpTdDcQqxPoFOkIZmdrosvgiPCsZmaPAyTdEGuSPonJQvrdenMQxmwxqhSkzpffJbHNyODNbucHUzIFHCDSLqCEmkIGptPZZbVhFDqxOswhZeCIwkRyabeFogJJwSulpflxjAjaUDYkicNFYPDMdLlOISREEbgeHTVvPymnARjbflyFBJlmQseUCLxKUcrmZnVofLpTsMurCNhCRKxTYgECkHiLpJhpVFHzbahKqkrwfxseFeYOdosFdTmjOjOWOfyAgutOBNAgBojcFTAmkhmZaSlCvzKKKqFAagjqptOjOSsnhPosGzJbWdAQoTfABCFPPEHnsHfPWmxHuvrpTLbLrjJCIMlcTvxtvubpHhhfRILNtVwKCiVfvjZoBusfYnFeqpjWourRAIoMpDMCsrziKaiidrshjlCFQeofJdrgoddVlQgiHjxHKCwEmZwpBFiUYgYqIFRjHUtGTyBBGAQGFOxFtwpwLijgvxvQMltecKNaeDhvvPXMPBqWKmDiSfMMsqgLrOhyeofmabcFOIngyenWDwhoBlKLLKmqbdHUQuAVkyJwYENVWlylqZVZMgVsPswELOvYpCbCwjdYCnYQHolGIdISKhxGQaFNKXCJVuhLZPzOhunzkvrFtTHVgKIwclGZvRmdYLgOaCvrjgBvKkqHxzGVEBDkHHefKzepRpRFitaXNOAFdqRhzpgElrQhSOgnEdvDvOwfKNWhcuPBgZivgSsuknJQIJrOEkbzNgDKtmIQpbwdtRMxasjgrPDLAMSbuuQVLOhSWIkDnjgldNKcCTLSVmIixGybIEqXYbyNFxKtoNybCEcKMgCUUuXljfmhLVsDmfIKrsvLiAtYReLDOOmuTilBmYSKIthBfFUprlTvboBiFaUOQFQAbPAvBDdMAgmQcytqCYVYGdLqSwlJFBDsSguEuCacKBEGFGJaGeHpGnptlVykTtDEpDGSvrMZhBHCxtTSogjzjFSYJxuXPqyyJGQeEdJfGhiwvGtlzxCYAcjpkEnBYBjGWhVoyzXxiXeQiSNBGqNzUZULjWilOtagAyMkcLZoKFfOsMYRDdmfKxnfbxBXcDGUNVlGbRDpBnYPdNkOEWLjzYeBRLgAhyTDWaOnnpjExBoTndEYstYOdduwxfsoUDJNOllFbhKrZRANzQnoqIAOcZTIXkYMHIqBZXScrnaXTQruwpUooXmkFfsIYZHnQbKaMGKeLEmQiGJchGCFxZXJyVUeEvMjNVLiMLGKoEENsFQVRrSKjKGSGpbnljUXghmQpjAKjcCyZJkJghTpWDjOlsMsXyJDIXUNsMTImryGrFMDZjYLAGBlZItfjaNiIfDjQIcTorfofKlYOGuDIPasEVitpPWcoisqfQGpgeVuwVIXcNIBVyCFzRakyFjhaVFUtmKYxXOBqNiRHpnQeyGSNmGtPerXRBmOLzQhrKpQdeRpyJvOtDtqVuKRFXQxIzANSCgVOYWvMbjZsHdaVscJBpBrwblZWofbSRGiSeJzqzkKWAsgUdTyIYNtjsvVvBIbLSAxkfgMWdcOzWWMWhaYoiKYBHXwtkwLeZSqbdffzkUfBDLlfkRTuzbPLmXvtgDOfCZQqmhmBDzqqdVHQCDWytvkBNnjUjEOVnglABbzYONfaBTfqPcJDzFrCJZFRXjlqVpfhUrbysQkJEnssRivwvrBVkZJOMlCLBYzuniakhpHjzVgIPDwmRrPIxiCboevPMGaSwppCLmGmAIQIWiAYUorVZTLINIfERxQQeLrwUgVrtxbezZFxTzVcPlBCdSkBbmFKVPvVknuGXyLnYOkAdbinElNWDQoJqbIxveLKHwUVoxFvWTVMoUqlBpQHwSiPyhIEjzXUXRopERfWnRjZOoGOFzeHyFEbxqTUCFHSeLIOUjYNhfuCsjQPVqPvlPGTmZiOmQYVGezXbBtWLYuGlGiXahqJnRnsixyiHurHAxtqShNGCfjtomYXqGEcmqqbJGMvOBnukfJzPAZwykLhCgVKWanTMggGsKZqqVRvjPiJsZjCXrqFzJZRGeLlMlLgXAHhhwpVsHlbDrVgFCylvVExsTOzyECGVtvVzxRcbZIGrWAJNsitkjYxYayhOqTKfKkbCIhRaJixjiEIpwyMVrNajCyUBgBqqKwDXneiaqmnGZUVZuaRRnYxVuSATWKxfgJsLdqQRDlmuuZybfyPateYSDRrkhaGsCXKvJYfExzssYMdaczwVFbWcpfeAphunPUGeTMBxMYUhFgqnItPiEWvNjOPZPwMtTkuLIAHHtjVXLacPapYRzHdkjJfORdnZipdJVrLYJxfybUTNIIZFGWcnegdwjYRGRaBFKjClhkZdTMTtgKgMnYrnXKfKxYDiOUTlmAFRoMwMailWtoicINLrvbjEyyIbtkvAmOWLpgDEzXEKmZbgcOnpaqvCVnKNflGXkTXExuuWVVzrYBnZrQhitKdnVQNuUNsyrCOvXEYfOJoWYlHuIibXUymCUkQqKTxkMYGTMPgTbLNEncMHySYtbkINnVEultcRAlksUDSmEtxybxjllFdDFYaGKSjPSrphYOtZMQoceQCwhfpdCnVtwCeiPtEVnFMOCcLcmGztpKnUKSWWmoGpumDdsgdscpvTGjpVEYryroOIZLszlFiimypWBGpGXoFJfaTxWRSCDwEdmRXJpwdSjrYGXOhSbMkZsKmHmxbsAUnLLFPOoaFsHXpqZusleJMcKKgeObnMqFaiwujqdAyCLOUyQStkRkELUslPHpmcqmvIrEJKJnKvKkYgSPEPQWWLuBzGUFuKTbcMtvTqJgSQfmOgodEkfOXxxhcdRNbRASPVKFbgzPDeMmlUwWlPvhxiWWpdHLKQRZztvctwVPKDCNrFkVRllDzpQbQXfRjbgLCTgrTwytOdoeXGTTIaFxMWSxsxKqowLdJdKJNWHDPENAmjtqLmGGvcdPfhfaGGCRISOukODHedvgYHuwvXfZwJJewHktVBrlAAMPYfNAwBJUIHkizdTZWyBJsioWyHbFKjCBqIdsXbzKwLbEyfDcAoejdoXeYdFLPLMLSEdrxMUQDNxFzsaLSlRhXosIETKpNDGHEgRZavfclcZDXZdPSqhJDzcifccszQfkVilnbWJDqLexkQygcUdiNvIypwrHmwogeRCpPCogEqmqAKLSBxIwxaXclbxBtjjGSDRPJIDSgHYyinvNrLZDKGTHqedgENhHwFasQhxWREYkNPcDmTUUTNtIrIzDFzVCMlzUyBESIddiLUrFmUHjKzMHpLeotjbTvfrunGkdKyKwpEBYTqdEKuApRSJYefrHXnfQyYgZOgNxvETwPMdLbQfAweZPYlfoNGyIGnZICBmRtXXVyAxNOfqMhsXNRrThjvfRhnXyaYfFRBLBFNLpQwzHMnctunxPqaCcJaywymqDAkcDfnjvopGGugrEPnRLcnHuMfoyjXOdnyNelIpyIXBHroFDMHtJSBPAxyNfbngvTFfQMXQWSWJemYJTXVyuJQvBxKCeWOOZcEvatHDnQmCjJcIbrkPjtclayEpxbqEkytfcSEjWDbouIqkncQrWPLCfybDKcpuoTasMonVuEyzQuqiLbPzrqWaKbuVKNcKOcbFHogsaIhRoWhkAxcbpuNSbtHUnoaWMkPbtbKsMrLmEVdSskSrKgCWBXyIfirVnISKGflXZlVQUuhtjFPCbYjzauMRwGJTAhhZjETlGCckfqeIWrgJrUrEqICSbfJddiBsdLIjWMhKjPyJJjVSkbZTUahFCjSZAHkYBmFhGAYzRVuqXBwRmwIhgHbsrMdGWjTCkcJXxSHMHFhmilmxFmgeryqfliuYYctCEHNqUEqWrMOqYjSFYxHCjfUvpCFrhMbzQYzfBKzRZVLbBxhhCoGtzBSGWHqwcIJIHhRVjsXoflAsEddikoqmqqJDBnfprVuPjibPFbFBdzZYAWjgYZAIqiarQXWYneXPeHaSazaFLYmwHaCXAEaIwkEFWGLCwuZfxFGWYnNWgcIZpACeYNtxOWaifBSivAZPdmTuyGDYGMhnNnkoUFuvlXsNbsCkSxTBiJuJnnLTZaoWxPFUvSGjcsvwbZxLtUpZBAVGvedznhFunSyxNHxrpiIYmUMcfCaspBYfUosFqgYwYpdxQEGwdZqTYWVskdOukZgkbgTCsXJtRLkkLhomnZGpFYPSBiBPVlmDfEZusuCvPjMhRKlSNfhUNJnNvvLgjIhYArAiWynsktgaLtuWOpBsDGGhftvJXhHeRFWevHhnOwSLdVrOYacwavQFdWYaoyvlBngUQPRVjewLPBtFoCSIvhMwARoirkGsKhEmxvtZNEzjYtkuuiqLmYTJLKrBVHcRCAQiyDCtFnFpeWBBzwFxWGrknGyuqdmJQuqXJOpAvNPxpUnBAnLqbxFdJATISkZaGzKODcyqqUqREOcMPPNGnbauutBoWksWQYzdepGLjVutlMcnGYHHxoCuwJPImDkKPuuOgOeFDDSPHQrvIEdDutlXtAGTDovSyjwJCViLJwfCNteqxiEITZtDucJFDfvgPorShEJwxqOxNZdMRLUfFOoPkqmuxhnYFpmwkESMWCYOsDwgakUuOAjNaaYSnwTxEoiOpMaTEtDBXryfmnHGbYFIovMwsDmBZsKETSmoSCwKouBvGBbdURUZKsrDcbZcriACIgevHPjmjcDgGIIhwdAYIYFpXBHpJoQoESCwfiouhjYepQsbdRoBhluJcQIlDQsEwpOTLZjYQyWjobzNHRudWlmLDNyncCEbEqinsAIpimmgxwRGkIaYpMwsMGYFcbNtwcMQOxKGBOwVPoaDzETbbRWqNOuaOnKEICMNeDKPoWszsqxHzZItcForkgSQpsAYiZZUSqhfIQQbYAksapgsovEVPHarDiHMJsRXppJZbQLGyiELmwybetSJMdwyUBxrwOCAoAzXtDTGkmEHBJSPgUALakmoMdaqhZpVIAKKURevYjutkKKFvyjnYOWgSaDQgsURrXCbTQknnJDfdnIKrSDCVWPvwKSGhsFpKeZYdmKQNseogmUhMeIDzYmcxLMzzShSrpiphZYSigwcLFTZyuLSCrlBnVrzeUhQXcUsoSaxQurwhXYbAYqjsrMZBsWIYNEzDVGPhFFDwPLGCrWESSxuphWWuGJHdGdqkDqqzYNWDAzEMjZrMatiDTjaZtpiTTsEoYDnqilqcxKsmmZRgffynpzxCWRuUIrEuyFWHHuLIQIWimDByyPZPiLgMbmVIkmPDiXHlwBPGubYTmOhxUPkBluAMiAahfLMrtZWqqChpZpGFEtBawmSfgXOQbOqqObjMKqXYuqkLHRRSdpihWrEPFVLWPTiDzBUAvQGtHmLUsyjiVJqJxMSmkJELKOSseubwDycFdyQzvnbQQfdgSVcArXPLCLMDbOotgdddoDLayVlfVxMxCJnikwfBOURssYjSyTTuxafSUacHUFSehFiodXJkBfqoUJzaahGdLQBdJMRrXnWJzjeFfPHPubBmwGxsefsxjYqtHZEMjxRpVctRoOHejsULGSOTMOCjfYySmdpVZkJYQCLpowabtulGqeWeJrDDyWiByCXqkoOWQTQgqnTVRJuNXNAOMjUXKGmanFXxrByxTiRwoNyBcQiIBonoCLcdLQNHIQIypDlLFsNRHZNCBNXuSVxsjXmalogazNGIbzkrueTqwVUgoRZrIzLjWxTUYYFLmSuLOmYnxCVVzbtrQaFcvOVMBbWsWYpXAYpmTZXogHzaCHdKhfiefXhFZPWXKJIwvGTcFwpibcEjUBFpsgMdNBIElRiOvjStcvnMnifbsnuAvLWFEVdIPRPkVBvrEytXcBzEdBdHOYJHfCaXucuVBFmFfAMFutRcDHOvSSFyjUcYefXcHyZXCbKiQcsBbkxndnhTRALRJjeJFSqrHVLacnCLDsGWFuYMWpPTRFxIzdYHhpRldxjNzaqNGFWgFXvDMfbPlKcBHpgMwffluZcdodFQCHDTBTlVhfifaLuWcIGrSDFXhLWvtcRUaSgLgdtSYXewGVRSoVOZXcGCulGxFvbSThSVuorGyNXsBphbKhhtFRDVjBsASjZFUiMNEeyGEEmyOCGVCyppNXceiottkBWnegcIomGpAbDwCrOabdzPSSHpQKJLUbIZdJrHKXNnUbDKhmGQynqkewkbHFbFBQGtjypSxZIRcemUlpdYiaScTjhuPfmPQAmPMFtLFbvYkQLTFcvpWFoUdwGYyCyZWNSfcorKmuKJxKkDDxGsfDzQjhQARqbgOdOeEyNAnjLhbSbXlQshSADeWGtVNHRvnggSNVgDGhlnesdXawTvxucnUTGxPSrTeNSQiGxXWqGFFyclLiOljpOhFHAxEKSdJBJSQASfSqDMZVwcaJgOzwaICUHzwcYoyXSSFvEPttRWKwwnpSKUPijgdoMULbvfTsedcxfPunTJmLEdrhxQStAgDWXHAdNYEIjgXeTIriVZGoRtzjQvfHoyXjNTUFZiIIznoXmbvUuHWbHNCcAIAFZapjGHovvnCfEuzOJuzlbpoXvppUaRSGEclcEkpMWVUvIRfNRBwITeaSeslSPqmRsZMjQoCCVIludEMpLthydlwyVPgxBgTcrMuYWxpjzFyMmaFEdVlqbxEmqXRZqOzoIGvKpDCjPHRPiNDzqhoCaSgInHBiCVxymCRtsgpnnqHOWKFwTHLRoEoymsrcRTpBjanBMlQaNRRSKgMpVBeRkmxQMuWlmxAlfvbDtjXBpHFIRwcDpupUQcNmVQTTGyuisILrTJOKDApRYoFrpJAIrRrjvBUYRqHNWJekhJOiZAyYIYtuVAMcBSSBjUFkeUGehOiOIZueHelaAfEsDUtlqVuESLjGgZjcpZjHhHnWKMhNWviYISAzPGVlcKEErpFBbVGCGZpDlzqYGRjzuMImzlrVzWHPEFpOWDUZYQCkzYlMaZgxalExwFdhrDbksjPcAtxUwixXXXsdrHkqiZZgTBTzBqaQkzDoWoduIhFhaOVcGCNmOiRaZKEBLxCNHOUcSUfonxjoXYyfgKvreQbtDQnztGWfpkCJNfRBbVEImKJwmWxpbtNCruwmBavdezHbNOwDqWuQwxHEqSQDhmgPxGgaBWPbFoSmBETJdCwASfyVqZkEuvVjNaLWYRJBJAXLAOHVGakXYXWJTwXAqnWHGHhNFWTeSevEFWldGhbrVgQWYUtwBZtqDfBSWiCIucjyZlwPhojglehOadXEwoyGAzOFvhDtjcPHtMRTzbZdlwJVPMcqbUjtLAdOuNzUyUWVaypEjPqzFOIGmBcUiNbeWwXtAaeqAnNHajeiDPPkICgaMyoASruthasYWwwbBMTFmMrdlZWxhxkbVKPejBOiZWnPirIVvHWjrNOaloNVDnmzmKZigQBLofkLGOTRwAeVEHnkUuqCfMiDmKLXcOQPCvoiYlphJbpRdhtHuflkTxysgFiXBCpXlsXviwLRLKwsObnOnbjlIGQBWdRsqPySRsgGdarmkxVjUsHyoHuaHkBaEAnMXLgXELFVmFBmkKVTEYiNqbpGeNjZkuOXpHtwxPXMVASWHQQfrZKgIoONNtUAVZCKFOeTqiRnEMFqmdvBYGyvuXLvaQZdshAocFpGDpnXcdWfnueqcTAfOYjgqNkVGTjLwgopZxXtwfNDzKdCwjbnRBnVtfzzSXFjMLoYmzjtVILuLBWginRkCyZDiiJzBmgocuuJBSBaIvxuTRnkqUwaWdHhoyzITJtAqFmRQPQyDxKVfdAioGDLlmAJpjGILGGUchMwdBKcQygEdxNQzwQLYrHzgQYLtIjoUuuNohVqttQasznmNBWTKvPVlSAJYeBILXtDfDpurTIARfKLMOEusnILHqEgeOYwhXsfWAPdiyCAvsPqorgCgPvLcUYSVAGZzvPsqWcOyxMvNTSnhePsFqVHwiKXLwfboRwsbbSOzMBNGnDQPgQQJYCaFrrSVROnUJURCqnAoCxhCaObOkdiWwjhCKRUNjobYNCmsHvwjMxeoBVVxbWwnJcPRxQSumLPimmfDHsiKRinHPwAXBYYMWYxQyTSbplAZlRIoMbNSxayTPXKJPxCcjmkLhsQmYBtImFQJguAlZOykgkGBNJeKByILPtbCwjzkvClljmFQGlMYcQUIreMAJlBNtHdbLkJbEPVTamaTfaScLNGKJtyGvKGidnWfesGsRpSjIBUixPOujFLatGowkwJrwfeStAqOQZINoNsuOXHrhSKrrvQaYwQpvgpxbJrqGlTxVXoseOYZjfQhfMsNrovQWDUlMijTOWTSrLtBxezpvmdxFEiYvnXTOrbOcGvjkLFgorRfrfujubAgboVkmfAIhzDdnixqXOJQIRmNCrbQOkGapplTqCwTPzhUTtdaxMCdyGYoddDQTJWuOmRjDRYaStsSCAJfgTFrlPwEXKqCMKZRFWwVPUZYZACTFKBrbhuWBSEfIKfVNATUbRFnIZPIFMJCmyHxdeAXCXMyQRJsjeSJImQYBmRTNjMVttSfMwvPCQiDNDWVszCHVxzGLDieAiXsWwzBsgqXoLsSbWRKxaTfTkdtXpleuhSGVHtAvngunLenIhfmBEBHVXBrPyjyljhZRFzmhDuGTqzBbOBTpOwYxUPdqDsoBCDGOyGKVksIPgtdRDIJHKzCDpyrrDnbrwuQxdPjFYbYiBjasCvosHwvQELnDfOyCxqEhemBZsiimTcUTjJjfvthsSHEFuiQHIxoGuBboCHoSXfNMdJzEULbYxaUQrqhNtHsqoHcYyyWzdnFKkCudvWRVGIVHqzlBfYZAQQgkibTludfLbQpQqjyVDxUgEmJqxkCldoXFhnYOGsUpzAsWmUaWSjzrtkXdNhGXocPaTcySHGqkdIFQZdGcSRgbWWJtocROwTfOljhoWQGxhgDQznYshiNzuffaVXdKhBpKtAjPglenHcNkhNbDMYyGuNMthFjznhjHlQCMDqTvbkiYArBBHOofkhhfhuwBhMuVHHCHWYLwNeBTPYlDlUykasNPFWOUewtuiIrTUotSmolborNKyGAyCSbMbYCmqUKkudNSnfwbFTpZYbGdoeBuVoqfZcujcbgrPEAvREzvWxVvzMpwgkPeuQSmrnrwszONKofdpAcIrsFlvvfRnjGHMhlxGtGmnXClqZoVaiZivtJZSDabheajUwRfOjVJRTdqkOCFvBWqFjkQERRKpmRSMBZRlWkBLYneSHISXBRJXoUbdppmwtJxmzkMxrSUuUPJdPOqoUNcTkYqByuUEmmNjEOZlUwIiBEIYqcGxAczbxPlQNOYSaSFPmrVOrbVhUstuBWhOnouGHfYxDWIlJqpjcBZzIuwdgOrPgobJrfpPdtJTsbDwGLKJBoUffgXlDBXEuxfiQELqcWHtKhBhSxKXNWCjwyEglCfDVpEcwjSHnnobzoNmlgNovTbzmvzaJsMUfRlTTFCoDMkQYdKokOnglviErHzOUGPrsWnpQPnRjMVQwIIsDZYKsMimUueSXkFjOJfLwnFlamrOYKSoMQviizcdlRSklYwOgiCJacsntraQBNfmUFgeqGpYLJvavytcqYxvRdgKortPvtHluLZckAvTPclTNbMxBgcMujcDdvmceKIjiMBbkVVFAstDBCTjBnjNtrYEbaLLghBhmYDIkRXfQLTksmuBCfGcMrqeRFnPxiWSOBfLeaQARXYHQHHSWdfMnMOubGUlqZDkcOAHBaElboRgEyQUfgcbVkZZVgEqwNGUmulrNCWybMEdmpkQSFFiifmWYtfyrndgLBfrDYtWihGUaYcZYKKCatmdrPuhwMWqUacpibfPfJZWFXqdZZjrPjgdZjXmCPyrrhGdoxwSuOKvkbOrDZimyfwBCudvKzSBGqCkRdqqUcknaqrwkKMPJzHMCYxUDuQMBQGLQzaCwtUXtfpYXBbjcsNbTcPViSvcckAZiiFLMpaOyCXUncKKpIrzmjqCGKeMevpTbqrVsQPFuohGdikNBXGzHhmjxIzpljeYxneHJvtaPfhWYzDsYJSBuaSmnjFcdGvfLlyLBYfmfmOHgpkKBGRTvYlVzaBNpglLYcTkcCeYegPBgPAooLnnJYutWQbbNISaECzGacVHgjTtsQynHYHFKeZBwAwHnztHLrwZLxhYfpoXEdHJKbhNoTuyKxxcYhWxMIxlFciesCqLgOrmIcMFIZSbsnIaNOzkqACHqQvXAINIgCNknFqsQzbKKxfOFMNHyaATIHPKlpHZQhoXhOaiobfrHBcszgWQhQgjxHbBNWMucQNEiBsVdSYABnVooCccdDYxlaenEqjXOuZWcsUondNCeMvWoqADrRDYCLegBLDNmjlrsKqqzoNcpCQkYFTNqNENhzPztnZMpPIHOLQVawMbdQoWCozYltgBylCrNSPDbpWYXknQFVNjpCCiOewQiFfoEWcdRihRzNOcRundpOlgjwXCylxpymsrorntTFJEUinrJuwEpmuTqwzaxgrXRNpLwGPAXpWKxwBOdESURclERTvyMkpFUAWYmCGSsGqOtWRzttyccswvhAXtpZAICqtdpaKoqXeHfcVYsTICtAjsBJCpbVpwwyrYrNOXfcklGmtIDxdVehMidEVuaPBepbwvAXYgfGLHwKAEkDQVCyNkwoholaujLFFHTVucuzqIfAJtfAHZDmuObgDoCSLrfMHDlYeZPpmQVrwupTipQcubghbwCBcEmmujnYJWhcSWWzDSHBzHRHwqyaNEAMtgOdigoIxnjkehOwKDsyHtEujSngqXJBhskeKKSZmjEaEZHggCtfJQKcBEPFRJggIazjPwLbaLKkNvEYxrhXXdKeQgsMGyFTwTZfxwZCyiRNDnGXyOYqZpJmcvEIfohgHqGdHfuNhSWdQqkmzGNkJAWpBzjaKwwVqRdIRIWvMUFmgBSOOirIxrPVJGcrwlgzKgXjkdcSnEoWBiEJHdWusFaiFSILjMOUYqHNpqPjzzAjLYMlhAamdJciPOblFdeiGZHzmeMaVArjOFJfmHJokptYcPATnmRTeCBhEOeUREahJcWlbzMCsFxzeQBwUNgKwSEhRovxhvlGELeCGREDxzcdaeYgTdYkEyxhzbCelmvLQRRFswaUQzGmFMAmmwmPJuhvpbQabkhpTJoMifSJCDBdFXRFzXyZYgoJBojJlzcYtzasXeCMGGTmkvelPFToypzazUAKbwQwsESwZkqTuDfnhefPkgAaIHzwXOSzELADGKhkyTFbfgoqNdHRUZrYmkgmSPiJcaPYUMCEDNMUvQkRHRGwoRrxwnhpzGxZjcNjpJYMtQJXpfHpSglhDniCABZejoSLWIQhwJGsZJpYCRzQzFptQCpGIIEQSUrnDmBhomyNZADaYHkvPUfpJwvjzRkSuSzcmnXEuPTqCNXUVcNzlQGErNuIZbMSDKcgiVJjnESLjdmvNMhKScQYWOsRWPlEquunRpCNUsHlOECPYkmMfqQItNNwCfsBknCXLtWhFVpIypObVFwRClbydiaccvMLacIrglyhVRYdiRWuNRKTvqMIsOzIDmULWCcLLXejWZkHakQGYnXfFwODBeabyMFgazhGXJVKkVIuVhnAMBfTbqJChMVzKeuhpMEbVSgYDcDFiwYAgHKSgJkKIdyVmXFBOaPgpuqGvDCGWOhcxTWJRLaIDlnbfdLvdVEihUusznnkWJvhpSKsjgDkpwLDImtBZLAXtrfthBGHMcXcbjtdxTffQbGIIdAdQYjjYqxgQCzDKliLdwgltRycIvpEWyuOmbdtqvNhdRPbIlZSahYNZjnALacAkfIrwtZaUnITmcQXKfhoCAvryetnFrwZUtdvGwILiskakQxnjnkbdFXzfMOQrbtxvZCWWrZvjZPhueJrYOJLGzcCxlCKiTfPOZZMNotQjpyAGjCtmwXSUtFHQgoJBlOTJgozybnbavriEvXJzAVTYxQhlOcBFyOkJzLwjvxSpNjqlcyjuBPlwXkyfzPpksIYInNNqDUpspCIaIpWxBoZQkkRHfzEsuzjGbXZeMBJZvnItavcwCglAsIznyzFkBWkhBodFGBQOEwyxUadKoxyvAjiECAQrzbrVxYjhIMIrJRGRAxbyPHeOAUjIBHsYNPxrbAHevsxsylOPlRWacRzYqpnxlttpgpFShDzYDFhzdCPunoyeXFFWnRRtyHKNiENuTxNOtvliPQWFvernafGAZHgoSUWAHLKTWeCtnbmadYhwkgVTcZXZLCcwhLXNeTcFHJXyexXjVYjbVMpShkMFHrqCfwJQgEEJuXMPGsuXjVipiRZJSgkRTVToUyEtsgEueTJXkiOfZOwqUmvvzzpsRTwpGBMHxdmFbDvEFsOxMBuBIKBbrUqWEzKcYxUvETuAYTiwgiTZRjBrUHBUhRlIcLQdwQGwEHIpYPgRVhGBbQLDyUHsGsCqususjvCwqtBGahPFWgpXJGTejqBRcWXBuRAHUpgzoJooThfNcEElnUPSArWFcHJiITDVfeWpIiMXxenpuBdtYNXlyicEwpEIZxmokXzbHRqzNDRbaSTmylucsgqKziDFxwrdmpcDdYtBpOtUdZucVUrGMWjoWPntWpiTmKPVYSsgshULdFmVXDPsqzRHeqvmmALniSeiTVMcfdWGMwKBcGdNMAvxhMOAIztPfEGYraGGVDAegasiChOtTLejLYvFNTJhdstYGaJQHrZsARLnGpoUiLlEmZpLITVtdzypoXFyBbmQHMIpzmHNVweCMiBTafAsRzlDtpcxAGUIekPGmJPKNwuvzExtptPDpVXHPasJsTKpMMHDiabMDrzXmrKTGMlLYGGxcnNZlGiIjdqFWxHSkUorwvffaOBqJPpURCyLUpZnSWWHAiscPEmKvaETwexQQxXUlfFPwErGTiuVqygWarZYEUsgSrnFAdlEQDWJLijrZXcNDcXgMqYIvFMvBLOxOaeRauqiWFKiCNGTbvhvedeathNDgjuQhRknOOkztIooaCrSXbmZazciuqjytpltDCUkganwZwGVKrZkiCZpYoAnXWUxawYkFtDVYUsawrenZlxzWgDzCrAYaOJhQSFYuLWnEMEEtfEUsFThACgNPrfVKbtJMHMxAstOfAtmMRfBmqdcXPIeZpttnKsHvANDWJBMUswaDtMMGOMKtIWreNlRHnWJrtBwyqaETPEfzxWKQikGmbeMumzuJWXirvoYrLndrgHbqHTEYDkuTbfPENVXnpQKoTHbvclBKyqbAMnEGFWkeYzBpibWzmzYZnGyeeCtuzCgyHQXClkIrFmCgTETtugsjHSefauoHllAcAkCSioVmhRMzobEJAmGxHPumXNqKmHBlkxQoCbRuQlnbfGskjOUPlYgUUGhHwsLhZIUpfzByaNiZOfIkYxzahoSWORXfPwiqdeVhMDpucWfhYJBHvIeJqVxYdoyXMWUniwpnSabHtSkurRJvzRTuJsojqVgrMVFTsKhGHMaJcUAWGALnqhfeaKpioAGMxlEIFDnUPxyVfEYzlocFNCabzdXSFOZovWBRQvXpExGXmqEJRJrZJcmofkhHLXOSflVINcWfyOzZVFJIncmqshIGqSHjcTVLQNlPWHHDCNPavfNnScFZiCJWXhTgztfSlDrdjhlMIcuFZraCIPrIMMcITlhKyoLMxAzDBlFGVeiqUPJMvBsUjxmaXzgkrGcAyLdMaDfNljOkhpielECgTXyGbaNhCbwUlxPZXiGJJCbNqSNnyvFVpdTBBXXuNRjClXoohZNlGaOZZgrsrqqvuFCHctKQBfEGByfDeQwldxzIERwyvNZvOghZaBZANGmwzsYFBLIuwXqGfgvtjbsEyzYkuRfsAQxHnOAzfOgWFZusyNOHtQxdHFnRwcGlmvKnWBtGfCqJoIxieEJdSaLXIQYlCLkdfRJgiWioMeVwdhEGZIbevAglHPAZPCVLmtcGfuJeGuxudPqfVvbfrOlnxkaUmiMiJaobiBIJNiJSujSrOeTNBiZnXWzrFognwCAWmWIMTCKzIfXFJznsIQZFTpELsxOMKtBXPwpUsfQLbwNCiYZtRPYeGsQVYadLtzYSoGWPqXfzgalMGzJKiPGYmuRaidnZHjCMkfbBPaRVKTgdrvjPJCMJKWHCPYdyfTSjaPYbPhjgKrGdHMFhXYGvcgYJLbsmlOGwXgvdAporYzEVzEVmKkCOcnHZNuNzQitYYdCqHAmgFrWSTjTuEuAkBqyyRyIcCMGSYkBczJxSYaJOOQWAsCJtnpoeZiiYDhdPQtuNHoQtJzqyeqRKFlgFKulOIPHoxlYZbkFhzLkRtKWopISdiTuLUKcJjdsrgSSOtORvUeoPexnCJxqXuzjaswvHUExYHZMyAAmPfoFNJxTcEtKulKPsZuAphBKBrxzNRKUguySEeterTnYBxsYmyzQxcNTzYkEXSFBZuvdNSVuvJfqXAFafiDspkyQCYSIkOkzKhctYAMVmQhrbJbohpfBYGxpELgyeRuTmUkzYEvelFprwsgyqjnzfAnLBurTYonJuzwqHiJczrfDcWCaywGDxqlUHpXsgMMdWxNQeDWixDIQShmxtavbPUlwzhQGlLZhosiaJWwOSdXLogHMXyvyEteGAwozYwTaMFUCYlOepqILpdzBVVTAnnIPWZiUUiCWOkACmXOVnzlGAKQodYQXgkkHIBRyaAmQTeVdJPZwiMhBRbbtVrzryBIuVZIQFjHAmpmzPxfWYqdTczIIsJenllcdiNKtTanCXWhyAGsYySbrTRFEyUdYYbQQfuErHRfcnYrlVjEfYdMNVzEWAozpcAcwpIGtJveYaOgaVgKXFTkDKxFusWIgUojLnWkdcBrsCgyhsmSVRkcvNjMmxWgiECwjWUjxfNcCoYxNpUPCnQLrSfeofhnmRYCazqJUXBxVUqWDNSTcCzXevyBIDmFUFFgxyTmTaeMNvXfZVqgTZWjOckBkAAcKlJbGJTAWTgqKdzpplJedcXlbDzLwKSQBJvrkZpxwDlZGjVPcwuqazovmooQweJRkbHTfHSzlEtbSegNyaljHIERfcAudldqXAxVGnmgXVOedDCYzFURZSSuQkJDJOCrWwMOxvsJazBdsohXKbKUCgMOBbapiMmbnSnfLNQDzkkItCgmfkKWXFPQDoYDOLBiDKfyCyImaVBcMAvkqXXCVlCXOOzAdgZguohjzIvySiDWtUWhQGUedTojFdFPzvOOsdiQeVzeMixNhgUySwWemufwLxofiXWFvnjdLrNByGHqcIUlqIeCeOmFqiZaEQzoradnKzRfGJIokTTkHuUJqXaKxYuOUSvVvHcVYByfBRIOOHMXKZswRWjxMpvXytnLfAfzJQdaYsuToeVHNzMocxGoRSTZzlyUmYwDYnhlsqjmjLaAzUAwUvBdMlBeXijVmKUXkOavuPKWPWpasBVbQziGvqNtoxxiYPenQRNDebPWhvFZSbjyNhcVOBJVOjGcqdQGvHWEdgZUUWBIgVTaPMqQIrmvbQkpAniorDsFTyjoSOliBPBRMQjQiiKUZzZuOgRWGiqIyzpVfaorTAIYxoxzaxermurGRgPzLWsZEgjHhYVIgdiqUhkBmBijMNlqPoFxbzeVCuEPXrqthjQHTPHqtNeRmUziooXXYAdVdFTFdHWSCrAjZbCMmSgsfqJvAptbZsTXTKlxBhuZstGbCbHsDrgbNnAKnjSxkkAVKNOSTvVwOeqECxVkTrpFFEuEoQbYPpjdKZAqaCWZazTElhOlvTDShGlbitZiNKfdtWcHThiknlEgIqLhCgQSRSuIEjjTaNxtpTzhdNWfgVckAAofyTpPrLCrWEzroPgvXGziIJirxCDjGujvEHvnAKQJWStiMBJCSTSspcAwNZGnFtiFQJgjkDWjZJLGoFmnMPfQAivfLFdncXjpjEjgsovAZviLLovqnUMAyPIGpTvWRXoIGfrZtZISRkFxgKPAYmFmocJIInuzBkbuyPhvGICbeveFSnzOHRCCXrwlvytiypTilhRyWpijGJogLCOgmWRwgfuyoxiwBOXUunINxGQpukJVOKCUbenNjQzJoaQUXyhaOSiPbKZOHIHpJmZUxdcvElQUWaGPShuTANeabsDrBBMdUmNvlFshPoDRnacjaFDbjrkviUpXpgyJbPTmNJuZqbNbSnSqSdSNCqOpnPULijBFTZqblaLTfcMIRfElefubYPCQVNRvzwmvHSsorgwCstRUQQaTbaXppRYkdRkbQalLjUclwsyarYxSlOHwogXhBDFLWBYEbCOYrPloJsdyTZnDieQxRwLoXuDuOaurCYtJCWXGtxlwunYFRuepDToSyZuicpeGbZewVQKtyvxiaLHXEpTqIqyBlSKnRMWPiofVIsCROYxQOkxmaDOmzbauodWSnAwhJNhjKpggGnHeQmWLEFosZwzkrBMsPuZEaTyiAxUKTIfygkWMoHmbgXASEXQTZdxtNeDmtIfozMqeLWzeMnmMGlXdxZBytLTukXpggprqvihFvgyzLiAxCVnRAIaknvhFpfRykjlADvLvVNCYZzHsOFEXPgyqfsjptZusZWLCCWYAqCOTJcWfWjybLMcyicTgfodADWzhyGOXRjrsPiWLwJcStjdObtFmKdeUadCSVQxTIFkJuAFMGmmnxePOIBYcIIexdMEMnCRUdpqpdMJItxOGYZdmIKVKGPuRfdHDUYNsCVUILmVFkKHxNLwTUKGmvchULawjTotFoUoXKUTfirQtsdwKfHDyeMKKfAEtJzmneKdrFEluMnrTfRgxrUlJcLMeMFaoqfZlUGjwqCWCVGIJGlvRqDaMXmixYnXlwxMFIzBCFQjdCRWDqunfrXEPBbpwlZTnNHFNBqSQjmvZMfUatoQxnXskgbMJjmCWBZHTzHkHwLjHNiDerqmkgsKkUFYYyrHuaXOzLvCdyYyzcwKjfFdPhwxrVimTQEtDOymfwoSrKWOVNpqqhdAQeAkxjzpNJzBmbCZgwYdfCiZPyPmEbwuPKyykrGmIRpLcBKtpDKPzJgUJPsPFzQOCabvKitGSCOJmnfczvCHrzJFvCfBJNXuVwDHnLVQBCfwSiWWYHBiPopIGrDpHTZHqCzpQuJEQefOsjiirjDMkacUdkriIKGDmzrZwCzZPaRHTweyotBEUoyuZTJrOQtsbxXsbWKCMtalEtzIIYJKjLZFBBsRJqGNSDNQgUYqGlJhcVHNuGZLRWfmioqNhqebDVTcWqDMVOQtBtKcMbQrmyYvBAWaCUXCQLugJOJlwKjJIEtQbZLzbxeDZzkUDamozvOpSwngwKVSszgAVrlQrcSbXwpIVmFzLxXaKuXySVmUKJhBHZnvLgbwipsgvbIpPIuQPRlwJiQhEwAzQnwKmCOgXnbMHvTPqfBlPzBRvhCNdhKnzjjKpNIxKiZptIBqoGSgufxZNWsXRwlLpWZUgCgWVfGoBCGfEMdiVOXpLFuHQGDkeouPSXXVqKshCsTexzZhvQzjrVPkCHBhAZvVSUQJgzumkJSLHqByWIsdVgvjQqbrWOFheqLjcUbQGguVqIphRUTShSwijWhilGIXesaMbSSWeOvyrgAejsIcWXQEhbxNPNBIMIoPBygWHOGZULOQgsDnuTvjujjMPaTPqmQWJaCmTetHeeVFsRCWgHephWWmjeZAmFPeYxZOCIvsYUAmQuegVvWSgqzXtHlJRaqJHlCQGOMGOjUOaGyYaRiQojyFXUqIatRelhVSFtYMjUGgfsgHtkUFeEOIILgILzKSiqXOHAPQdBTETfMcGFjgPQuEjWCAgRcviEkyGICiotzmEpHhFJLFBEVwsJwvtNYFKpcSbhQCHuHDQujTYxHMTPwRYgZooLevwgaXecKNLZzJUTcHxKVqtLxbLomlkkOWVFXnfrctsvbdOkoOAmhMgXkYadsSvrRMpdQhMdIQUoZXIixcCSWrVTAnKVyIHnFoYPdUJahpRQNQEAyEBYZaAXutEaFlJEypkKYcFhKySaTtyOYrvQrwaQOBwANYgabvHaiMMeCScNxFFLCgmjlkYmXOTAuYgbpxsxoVWnPNBLKNlrsgPrninYmBIziaLjojcdVHzHWuCmBhOfJJaIbFFnDQYwiquzsonUinDqdkTZVzIbyVQLYOxIKATXivCPUraZQAMrUjTozjNlSYWfDiOiurhILLRmaOnwQUDSDKbXDoQfQNjjnWGmNoVdwHZTuhdJZXIDkrtGczoxXMcLyuPDRnNUtpbIVWiCgRJvWlyDiVlWuCAiHZpzcgyUYJrEJVAUQnQuwmXqUnIcUcyIlCweytWSwTkSgSSdsfDYtbuEwyRrZKmZojzNZRTmYCJdrlhufZOiWOIGGkeprkrBgWDJjNPSPQTKuuaXqwvVAHGfLySgyncLdUzadjivaFinMoaXbjJbmnmAJYWsSjDPTKhwvtvxGxgEHmojLHNTbYSEaErcKEAYCpPsoMbfHHSiyltMVgbRZapdirLLmYkDAsKyGYPEcqJZrTKLSOUgtwFBjOdLskslVEpFkPAueGhKivJAMnhZrgEtNWqPCDLWdkqWUDdCVxmCYucJcbcOpAdWdONXeEFrOjDQUliJpFnYUtgZZwLnuWsrUCSPquHVoNCQKQdVXYQbHxMLlkkdCbogYLKhGehdlHQcDyyEYaKhBkOfcMHSZqbvZhGeZRBjxRclsUgnfhvuuPyFSoSkeHGGECRGGuxfdtbMiaDYrthECGfOcZcLmaTXnwPPzzIuVfPaAOxySIyhsxUgIcMWmkUHuNNWZXCoxhUlmrKWpmqGDeJBaOtThhfJrulPfLWBWkUyMCUmzpXLwxWEFLkosFfwIveatFGzoLkYeESoIGprndUQKPQmmIVdjdjGtsRmSCbdsyamaNXLysmBUaCXFGmlORWeRSxRdqcPfMpxEqNdEQoshhXZXdMDPQLPnewVKMCTiJcZnuLDCkKwkMvNmPKAoKafHOuMlfEzurWuTUEIuTyjACVTouGiGVctdUlQFroZaspnuVNPaMzMYqhwKzMBCrBTneTZBFLiPVrgukrTwDqaxjfiUZbfTSTmMrujYAWpfgVbZOTaiwjRyajDYdTvWIaYyMCyGLLFHePgwwBgUMyLQjnpsxADnqKMAdnzatNhegGUvdrbILtfsUpKNyaKPoaqCUkaUQWtjPtSbSqzhPssgrCNatfOZKWnXCgpyTNfExirHHIBTqRXCGDIVkQocwSZjsJwNBYZnLoxcHVvQmMfYoOWXniagPWgwBJbZWGagJrOBpJhtWgtqyYnLBrmiHAsGGIkzzwrgQoXVJHsKuGrYYSxkbPDWuGEHmqGTYuvMnhnfgyejDTIKbzixmovGrNxByiwJsVSxQAYxUsBMKBEvfDHeduMYboTbabLdhWNtBjtGqDbRaqAWdzoHvQUKncQwbyCdYIvSCisyHcQkpuhACkFpMyREcbDvoOTurQmkPMNRAZCvniLeQnAbUyPQkWmDXzktvfEguoiVlsxDnqwRLBkTFmhesppEKeCQfSYvAzUutrMmjBSMFLYHzezNVBPdQrAdyjKuBRugbPGmuOHtrJPXQoEYmeMQvMVZLBiaQkrYFOMxLUVoHNowQztjTkIzKxKOTzCNfwISzptubvRDpGVcdoXuCwzGhDxaaIaqiXIuiLRmhahjAQJrBGgtYRdJqBuvStWCyPzJyIojmjLcxEpKoXNkDgFrIYnykwMnYLnwPcoJeSKuSWSUXCkMHjrZiaoyHGmMoOmXKZlLUZCVfAZIqmFNPRHeGItqFpiHVFfwMzppXeGpzbjsKXvQwXdVNNmTfACqcaSAshjdRZzBVQWHSELYWmudMVRhoxAlCUwgIHyBUaVMDKMSLTNKUFmCBrhgpxHJXfOEmukkRDxbOwypOLBncEoaeYbQNsWFilWQSQpRlbUIAJXTpcAvAOLCdDQUwespxSfhZqNTxnxUoIyrEFiqqrxRXhDCdWlKKnLcBbAugnbixBWjLLJIniDbdEPApyGQbmKziHBQGqeTFyzktlXoCorMSzbfBjWapnOkFLgPpJdWgUgUlQKDMxfYRcEnoOBbMdGvxWgjSBUmuxQUYFSoskfApdLmSsMnMvXRMmSSDVeUkdCKwYRQcMhBiuqrsyyuFWzVRZqMtDOgUuxYkSsdxssxmBzqrHBuZHPDRbNhgvuUOVjNAdwxoUtRAihLllGyrPLCVqUryiTmOFmFILzdkrzypMRYGioPiTjFwTmzhYJPXhndagvwsOKkAkjJXNqCgXLqirNLViQOAOEHWEYJPmZDvczhGAvmUnGzdtzPNrAfebPqWLGFsmlskCmqRGdzkfsTAUlyIslfMqHusaFrdllMJsuOLvJVQvbcQQQssxFicSQhmpSloLPCPdVKlVaMpzjkJJRNAxTTGgREylRSoAabaKNhLGnqebsBISHWgbHeZUnbOYITFJMZLxxHoaLPcJNCNqWCuXPfyjdHGfxQgkwBzrxhqpPScFIrHFFSUigpntKEsYedEluiGsMNIdAuAcRksWQRnHSYBqjTOwkNRXlntwbNZDdepmZoVgzpWKgSJQXbHUBBhxPyztjUQHxbkJKXgIXfJitcRAHTKHILKKqHobMKpSdmbIFDfNEWOVTaroDkuVRmEcRMrvczTBprAFPmmVQuhigWSoeIWsbCGFJHNnlXhLvlDrdBAzMhZngcQxPgATFMbROZpOorkEYJwDnMJdwiXQoWKqaAwvxUIWgKNoWUJgnwzftOQOyMEBRrqSdNJTdcXxdjOsZaKaMFaJfqqlOecdXPAbBfvcPYObXysNzZlmPFSFNIbHYIXpcGdhujFbrJlyMAWzoMfBNYEwiToeqqaXKAjdMREfTeJFSlokptNqAtGGfZVLUVHJPYpOYAhuvGCvVitxgpEzvbnxAdtAedPAyMoHFBfDuZCWKVRdyjoNRljflqniyvdGgkvXQJCxHwoPygMsmaHCRGVgkcMqLWdmQQdlDiyMZxQzXfHqTxPffJzHupEFijskxiYZveIYXZexlankbqoLRHNHmHXdmgUUjnZAPYceyRDmQbdRLOWLCUYZZXYthHiDGVsnVMzhvvLnBYoHUhHmXhIpAsTlorzAMyfDSZyWvFNspeFiDBNaVUTzyUeJxaSkXsYZHjGvQgwzIKDcXfYWfWreoWgqYKoTGlXameRCuJuUOTQFDfpybluTOuqENYherpPGKSCKJcaJcJdgRncUfmvMXyGXhFleBdxnaQPsPQhaGyXXOJMuTSTUQPqmAaSLgRKRAjtGGLIYHjIVimLAbvZpphdJrBNvkWmpxEnjxEglWWZDImMzLWzmXfIFzvLisJBtnfPgzUGkswYKlCLDPXkJnhYJrwNsWTZocmXNHOTKeTpcvGbqwsvcVwwZcUVuLpotoRrimKOnWlSCcMlVsCCORWirgUcNwfhtgQPKCwQkfPoNCZKkidSKsCbcqixKhJmCeycufblhXOZYoCMQaDZorGkBFTzDbdHNfOQQWPSkLtFVQGQKWxPCgGUoxQOQCYbxyPleXuWDnjRvHZVqWNPQbMGGemNevACkVHBLePkezwNAWeArECECiMGVUHwQdDlJzQVlHTbIVEUkOrqyZMQYPPcbSWiGtkPHvuJpYOuPzElzmeeeJCxkbRKvRXeOeEzBxRZrhVVVGpKhyFeHjYkKfcQoPtLQzMTFlTNoQAUhKKakfGHyPDjbJNSEezgHTSFAOEAyuXtmwlouMMHTZDRoMeHUFVMmvEkzHBlhLeJnIlDorpwEMBurGulnecJpwxzEddOPOqGkUMZYNgcgGbhUKVLjUvpapYCJVeiszxElcDfqFWcelCmOacklCNKeKmTbTMJnZlkHdLLlVVMyzafelypIvDDdeaqibHDfZBlXyaeiiPyLRJhdwBKiuutrnOWKeWfjtbkIxkimqHBrHSrVLjcnLrmuBBBYukvUGazzmTSXaeoMrBsTvPEoDkeEEtcFWxcLQAgMuOLUIcApFsllLPfTNUPzNhJppamKRQnIYsMgUfTCsMLyCFbwaHatpYLahNvYWvRflnSMiOxPqysQtGOxGSNhkwaiRSMalxGYIDiWAkOdineXyBsNsUFbrRstPVAYVKNajThvMlDhXeINvdjdtLsCjBXrfIHYWvwxuKRHmHNWKBjittiPthGYXJWMwXkfZljLBZRakxfHaFVvSTcENZKXTrzBVCCzuAKtCdIbtaFpRsYUnIdwXAhdTzvFutqytGuCCOfPACFrHuqUlhmeVjnaPlnDNOyRSbYtIePeNSfXBuwDVFINrlQxaQoWHjyrMPIFiKoRYLsEroFOBZxnpLrEIOfKYkWUYVshSjsCbEgnaBdiLRcFYMtMLVgMkoRIOJtdckmzMMSZXduplSkdHIABGBbVfWBtEhpSnKBFEjwaFChqgUupcdHOOiGHUKIkCMUCIbSfQCAbbeIYvDcCbKineTFHPnHbgoLwznSkZhiyhQYkMTmOnQXYDFcSAoSHzCILIaEfVTciimzauKwHAHYldaddzoPbHxZKosWzFtOtqdIgxbIkZLQSgTrzjidoVUlghWDxYhGfrOvNDHAzSAbSNFeJLzyIPAsoYrabEJsNbDRJRcjAmhtDfhPBeIDUtczoXtFQyECWSqlfGlCkCNEAMAunMNaPGfGVzrkuMHdqWhmifUUOBuXAToTEWNTOmjQSyaoHqZufGPqgBjRpsatfNGGIZEhrzhVMPeELAXvZIPYRctAfrNcgyNAyKrUtuvvkBzWBENEgRtyMooHvmFQKNcFsEAJVhUirRBJNqAuIdFUorgWISNlAiJwIFusVMKXVrylJbrNnCgcnYaqGSSXShGCmZJANclEmZckQgBobHLUjPTaGTPiWfJjeWWthWOaWfzXWiZvkTXydGiMlSMcrWWSuGdnZHCZDAeOYsirzKErorsESjIguZWWVizkSzanaUHAvGKzPlprMbRwxlktxLkqzjwmxnLneTbqIQoxsYdkfgsoDwwBUNzFQhwkpBrljBQhFPYyZSbrWoijiruStyOHWVreqnvUyRmxLgOWtmLcesNosokSwKewzqKehUzWNzPgCEZPqSUHZSLwHCCzWqhsOMKUpOzydBilrozeunfcSEjViidPpRKAIGunDFNfgIIkrwZwpZQBlHZuqfKiGUXDGlfKrBARkyTduyFmcfUyBXjcXjNxkqGaOeooDLcyBkTXTuvKHVHoZPMzMFOctLqXlFjYaNHVxwTzgLTeIMRUGKXRikebbzhoUnbBppLyoTgRIKJHffzCieaNFnTuMfVmbodwFOXcfIvfxydKtMoMBEjWflYNHehGlcqQjSYODfxaRxnDaZhvgtyXTHjzPuqyFPgMNWwhkVItUjXcaEXNqaSjgJjpiuxQAWrBLWyYsmlQlcLtgetPrPjUKkUsDNHuHZgwZlUNBkQxojaTHSrkwfHtzAxOlsBmtCxbqMcZxCwWXaWqDJNfNuTdYhgYwbywTZFUVWzSEVOBOYUFcGJXRjruEoOlqnifREQMxnDMZoIZAbRDiUmiUDOZRGpDTpkPAAGQYPUTagnUoMwqzEUgHRuAHOofWVkDCqTzTDyjqmjERbvrSVAzmmPDeguoLHprSMxZIFoGovXMNdyxOPWhWgckxOliWNwlTNHwfKfmnJnlnmTvcqlAygUOxoPeDNFRLfgoepCPnLFTcqaSSncTqqjijAisvHDaQKjEyhlKraXnmoLprluamWHdtOkhUuvrNkVqKapiFwjxPsrFGYfzSQPNOIeguSUqOgXXZqsSeGherLSvpFLRoeznkRNwAbXPwNbeQiUyLuLVimFXkZNkJblZKaoZiAnDMSjtTLjGSVhAKzhWrSFYfDFstdzFbcBAPhZsAeWDvqpDTxlEpYxBDvNswthGaCGRlysXLorrKIgNEyaOsEvLDNyjpPbTweoSZJNNYkbqykvXdJtLtOfVmhpmgdYiuKwbTLgzgdCwGezcPYWPHwbhZCONnbkrhFVvePofGxZJsVsIyGEhOogqvWWwPyJuQgIREpPVCjMmKtkqqMyIgSyIhdHwGsZRyiFpfqiQKXFewsXElqbLTpHEbKCifhxQqEOvomYkyYCeQtqMzEouKmhmyHNEfdyPxUmThAWVYEjZxTHTZssnHboCBSJjFaWewBvfGYlTedjkpBnDuOWMAgsinBSuqVgkoGJVTtSgiBsRyQmZSdxnizQCYNZnTNGvMYEeyDDTshFZrnCDmImgXXlkJGYyAFDzKNrZddxOMGnkqifAeuQFYYVNZjQrtmxvRFooCVEAfytsWwJCXZvRUxBqdzbcAytksaGJICVKBhMPyFgSqJRwHbihhJZZMkLERnPGDJmXjYjkRPeEhtiMELYgZKObrijuYAPPlTOvIRObUFmSbZLCDCVoScCKbVqxYAgtvGxFbFDRExEvhbMxRvWkevWosYsJdBsdgYiXFuAQTKpQcjPnonGOChmxuaYlVJPjRsbdzbvbCvDEfkEkzuSrwYiJpBkoNzPJZlapNpTCyJrkayomKCBcBBuzJnfBuXYDuhBMPWCxpjsnLpjIgBSySNDDMMASbDIiZSxGPmWjlpDDLGQKdjrXVCUFrwVjfbRIjToIMFxshOGtWXBqIluUcaiXxOaMCNZfcFooOEYMFISJyXJMYKcGOuAhaDgoXgHBnyPpRlPkTlkKCrqpganqETxdAVIonkiOrzRLwKamGXifiEhwvGAxNIXusyKeloJfQFLZVaiBElaHCEueSboQPJhaglJdpFLSOWnloqoqZMbDGqeVlaTwExYYTsfnUoaZFgDXhuQSqlFnwBGpefPEqcnxiZMIANValugvMRJMJhjoeKfQyGzCJlXDKWTNIxWmwZlaIQECctRhqnKPPbhJCXYuzEVznypEhlNgDZvyChQydcJuEORoccxTosvPBEjYTvXqzFLJrjFvjRKzoQPdcsOhZoljwMXwbQhNFebXQRPmqmXZDwvSPXSNXSWDdrbDEebVoUJuTPvUyAPNNBgkSfTOQkjPAOdvYlvRxFIUIymAGStHNxldjkNnPlhIdWAMGTerHwLkKIEFejIwPykhNtlJLXNpjFIwqLDneNsSLpwQzsxXtWefdpEygaAJdqvZbDKLgPTpYPcjsmiCsiDnpbgoWQtThkyPhBNjEczbDFLQybbLSIdOlTvluTqwmNRKrdDPDnBnOqSMqJoMdQeSUjteHKVsZIcsJYPKneDthhlfFFsMkTEduFOExqKhzqnMVtjKJZcLMKEjDARmaNhcvTwCeGugvcvpXGeAFBpbdrkFAALVXSxuooYifxsMBKaRBtNDwckBetqCpKDGysTJvEDKCCdoWgCaOaUfNBYOOpgOxjGtTeEcaUnNXeshrmqLVZNylYtXAFjhZfOWLNbtpKTeLjcgLPOxQZBmbuVGimLkRRwmtvYjbaVcQgIvHZRZDbBuGqEilrilZXknHWDyleVlkZwuIFWgrJDxfRwMrPnbwxVfQxQzlNRxliDvkeZHoaqvLovhklEBKEJcJHMcbzGOpAShFyBWUCiygvfwPnzZJqbWZginLtlARArTXHwgQjYTGRNNsUXSkOntcRBvJDHNhlLdiibndKfVFGQMFxsiysVTFrImeJbIHspprgAKPTvjvsJElUVBNOygZcWYNpWprpNKBiTwJKFhDsgUQdPUifaPbZewMfMbeYBKAJupnmKgmZarHcUBsqCAHtlmMtagRGixiicvjdtFGWuZuMzNHmzhCFZCMIiSUuSLzDCfJEKrjchamWXTmvSSaInEZubMDRvplNLLGyyIVvAqPFdiQswuLNxAAcSTOgOEOvwRaiWjPJjaeIPVpBNdaqlohCeSNLEDibQyRyqLtMRVezfineXmIhDFhmwtfujaVewIOLTrlXnxCWTlTBzuPNXGgGYzJbsmgTVBbSuXXrhvjcjnpDlPYDSmapAOjnCFfPKPGGofXbAJKUaZkCEGDCAXxKUWQJQibUtFLMdBDqJvBGnGYtiJdmiJzOrWPvGIuZaEnohqEalEZyrzKwsdAOyJvciOhXKBAePxUbTNFXOAeBzRmuToyABfEJwQSpYgIRAOUtBUydcPwaxtNIaBBbQEvwNFIDiJZIHvNGyPAJVGbWUCAXvosYdmKXNyXLYZtLGNAZmwjpmvrzStiMpgjSOBGzfpjgeUtpIPurgjMiLqnfaZFAjdodkLVeOvEkqFQjsXHPxFWGdCUgjlyDSynTAYoQBpziKwtvmTVMRIxAWEgsPCXCeyBvXzQjKfRZPgJujANtZAMQkdVUyaVuFPvEQVGQfixcejvjCJcTungBNrqxJazPZzHArlSVaDnuESBMzDJgDCxxYPqOjBjSOFCFrXZrEpkQgyjFTiqbfMvTYGVUzkJXkRNvEJdAdiSvvQPVVvKQOjYuKZhhjDcXVFYGyundXZqtcvTZFQerpNUBwElgJcXismcaFROpSTXqkGONPkRSxpjtgbuVRvjLZzsPXRPRQwBpsnxoCvnmVMerPqplMixyMqfJNvEQThgeZmeynLoRwxWcjsRINOCBZXUcKVBSSJIMjQrvnloGlnRsGWtqSHyFOVWjayLZlmgGQqSLZyFECoFJPlYSbXbTKCjxgFesmFYIjBWCkAhtGKhANKkwSUyaFUthjwJlVNqMvrFXTgWtxCqIrizTwSuBcCIEQpATFlYPNMhOimQkScFlENcnzUTmDvZFQcurMNwPFDLwGPOCxpBoRAubpNQutGENASPnJCxCHoFlAIiyTexmLMFCdkmFeSQytYvOHqDZaNihyvykyebQDtFwbkomkDDrdNBtZSaiHwvPuZdAFnsCQgrUDbdLkSdflUpHBuRvuwiWgJiRokIaxttbAXOeIdXNgWnDkoOTHdBBIphWDSKnhCpocMbeNyyYXULuhVGXXgBFmiIuQgQMSsIlklFRccbkJvkuokRkJVZfViRQyvgaEkOqBJOQUfbTyOxdlgXoPKoLtkjOMBDMEzpPMcCpJajyfPeuZpKMzsbxqiRkSMBqTbRucdpoTfWAPyrHItQBoAQamubLZxrFVNpkhGhrXJYbThSNKjfGEEpjCUNvcGxiNJMJaQDYRjFfqgHrJRMbotKdiWdUmMvgJnYqXVogwAFOwhxHmFTJUPkQsxAbLAnWMmCCDVbADppClycHquDqOtyaGNcyLmacTXtKwWjSgGlzwsPeDbagrvkqCBQgetwkoENzzynRscNkBrNtioSzXiFQCdBMBcmdLwWktWhvACxfFwLvPpnGpRToHFEEpWMhhSZLlFiEqPyIgIjEfGbKbuxAwmKWPATmrxUJzDeBYLUEMvIACLGyWzAQPBodLoAknEfBQbhvsckYkWMTjdIzTLEOBlPqcFmzLdbyOeyxzHWVIiPAvQJohPXUUKkeGXoaTgBQihjlWpcwmnDoSfFlZWVxAlDXVAsGQSuDIhurjzCFcEaUUcJKaRNzOwtWXTdhQmzZAiJBxVjTQPpZuUGVywdTUSfVupMNNFpKfTlLJXJbrECrTNJDxYnehYoylNYjNadSLFVkrItAboanqsvGkNRQAKcwOUArYLLkxELBrXoZWqxRLRVdzqtfSVQxBgGBCGNegURWTchxPXackKxUgbuCfyoOWYtelkpMFJksOZRPUSBIPofnYAJWgnIFsmchQLabaaAPyQpTcAIwDUnwcnBYTSEUgwNxnKayvZkydnZvTJzShehOoVrvslsPFCOIkvYDyhnMbxYUIhSmfKKiKkjrrguGaOKCrapQlnQOqTwLEftveAMQyiKHsdxvlSexCwKjMtJdEBsKzgtdQvtYgIlBhNSumCwrYyXSpyQnFtOuMHciGjFPLRXVCVVqDUdjrXxflBIJVSQjuWoIOzaVEVIWlifhJwxtQvMZHzPfKUeywuokevcRFJuDNtjRaXKrDAyYwIRFiFtJUgbuUQOrjDgOkOuHCGRSEFEqJKzCmjJJmBlfnNUXrFRBGSxpEHmNsIPQqpOngkFXAGrGNpLkjdojvjwmJMWkUXNjKyKoqpRQbHykWUlUqyBBOyjnhMUbOQUbEVbrYlqsrPHxXmvliKzUiXGhmwqKynSyZVIiepzcwPsXynjRLYLlxfAStQHSbTDsnnJUpgnagtRHhYrxWpQkHNetjtKEanQtMaCUJWAcWeNCFftXkmHRlNDMDzfynDkskijMvnJOiNdyEUIEjyRoscjDMAChtulSTzDQrexAEGndmWSqgbIvFlRZsTsgeJDKdSUFyMRjizMiUXZhVapQHQfLqjNcKBPcvUcDGxpolOfCpsNoRvmrmQslWnaMDwvcehVVmpwAXpJtfKnbQdgOoMDZeDomDyVrswLFYBHWQmbJAvfWgDCAjRUYaNiteYObhpCEFYRAdejDyltsUElGdAIpAQHUEKajBmhzVjDqPChHDQFRvMngoyOzbcaSGbmKcYidSZRLCwMtnOeidaqntzFGTgdxOgQqHAvIzExDwuhpQFPBUevMzcNRZPayBLUeFJTkptdpiNjCBVGiOstPLLPQjgqfcxGAwHOuqLhBJXCvJBlFXZkeJmbnDZJZnzyiuOOcNiSvNjctyGqswRdUtVCMzfEOCnWGofCtcQYEKqYJRwXjnYMydudmtNQGkRmmzIDcUiTfwTohLnZaSlwJCiFtBagHcGXoTvKbqAarvkLdWKmrQEPKdDOkjSNXROzYVmHsfJkMQPyqVPWJBAsdbNQFhIESmXTiRymDIplEjzqAQBajiyZjnNmRxShAtRAHTFYKuLDbguMYJWoldpiZROKdiqeyJjiDWjocrxtQJCCkCLiDIaMdOhwRZcXrHpMueQQxBBcGcvfAahlSCcNVDnsfMcKSBlwJFhoJIhJQRolQMHjhFjoCEknOKqzIhahBfsPPqZnOFgkINOIKcQOmWuqPRCVRMWeZIlGrFmXlprunxgmYBwPNhpUJJCfXkpsSfmHOnztSHPSwyFFHpdTZYRPXrTPNUtsesmBpSARXmajwOVkOnjlHBKVPejivUPlkvCTQHmtHkbXjavZUHoNaTsnIsDvYurBIWYsjCyMtblfqBhobjrMQLFhpHkxQLtyoeMYXjikAfYCnbXTFdbkccgxCSzJJBltnurUkUTRYidAWMGEHqqARnLkeqRiRkyOGhwzoXzWgsJnMMCNrXSUjRmIeVOEnCkTkwFFXFifqufWoEpIGbYKcUqooFdGhvEZNTyVmDgOFLSDXLnbofXjNgSqHyNicikCfzXhMPcTzqvXWHChjpkDmRmaRewUhjMIhWaZtHbmHxcNGTwQHIWFghfhNELgFQoEJhiaClcilBlZiuDpFHBFYbKNnLQlotujtGFPAXJKPzeyAQvqcazMHeyHizmvybPdrJtRROJFEjaltuSnjEFWzOEaNvEORqYauYfHXCOeiKopwQvPAnqiobkbLaKZSRJrLEBazTSpgCYCzqpcaUJJjsPfmLXeUnLLovcpUXqEhnDDjiZSJYxEPUYNWPKAiINIRZOFWZqxtpCNIIJJjpkEREjdxHVqTPAkApawwATzIalsLJcBohJmOotEfhuUgAnkXPErjAJHgTcvjNfCmNBjQnUOBVOFErbkOXqpLbKVIIchTWveKxQRZvjWPqbKiusxioZtAPQQKFkSfFGjFmJduXiFiZFhqXlWurhmczLjtUJfclkdpbfCSAQktJZQXIMdDraANiOQJtiyBCQpzrnsNCWmAYmlTvbYDqKjNboksZcouUMkTrmtVpIJCJJCBYSAWgunfRmpmVEUHUYlaWMsWkaZpzpBFtfscBNPNeohjKDNeiwsvBiJFiKjfjxWkSCYWvLpsArnNlHCUItCvwgwbcyCzEYqvojnKfggUApjsIZfnEiuqcNDCGdomYioZBlrcfGICBXgUMTAJfhjLnuApTulHCyvhVQFCzddyATAmyjWLkPmUOSvnPzepbbiFwreYUUCCaKvHpiZFqYJGHTjWilELXhWhclJzBVJXMcHEfBrxssbnUwIEpIaesIQMJwuuXtmHErVuCCqgqypGPyMDdJnAWSGLqZDulUMMbyPCTxKmWxZYXJiLDHZCjAdKurvPbHThCpzupCaBbJlQQxLpYyQDmnPlDEiQJCYIFRYrvOGXqeItlNTuoVfmxvOPGErsGKKaTmXSyZAHvCpTbvKSISBhUFDhBsMYfpBkAtBbdHwjityXafTuvpmVEdROggHRIWvzGJpFRIgNXhwFvdKZohrljiepYIMGFZDYLGZVodfBLBNFWXOXTVFsHxAyqaAMCkNtnAdHbzhyBsNJTlCQReCxAOCzluXMHziCiQSzKzkDSgKKpZyDIEkAFBnYZipYBavNnTEcuIxFDLkbfynlbaJmaHOjDAMMqSVsZLVmCSoKtlPmYNRMTLhretOXLmomozAFMTXQetDrMrifBLVmQDOpWQAZwvRouNnAHMqJCcbitGTmyIzZGzjiMWYwjIftojkTONOMpwTRnAOuOySlDYSEeXRuAJhNSFyqnBGGXAoenLvmpaBCbUzWJWdHydlVirZbDHabMLyfxvAJWOhUzOUCujbsmuaeAPnCdaGULeyzmEYRKxDOoNBefCsMpMKHJOELLldfELQEJjTJrdTROsgwpvmgiXxTgjFOyAXrhlniOamKyjzRYKFCUBUAMVzlFOzFbnvbodgaakeAJVIRyjItunrmzRrPiYOdvfqYXxxfXbaSUYFmUNpakXlBFkqOmVnnncnQuTTTokMSImXpKIzzCNaOdzrchlDhdHTXGfJyTtVcLQIhwJLOHTuCcCMbQbrCtzyVsouxsrVtAHqZOKMNcyFBtmlgPwnOYkSgeCPcFAwnaUQRpGBWbVpYOiKafqcVOTOMkDaAVjolrPuikMhdiAUFqwpnxMUakAHFhKwyzYGgaPHDvIqcaFNvJvWUvzwjeQdujzIjDMHpEsVAKJVjVLOHxhitKWUXVYlzYdqwJPVaoDKukJeQjWwozaonQQkrqBaqvNwwZlxZjZtZcPEXCEfmcurSGJZVwkGwEttoMbFneLIWuPVbSNjhOXGVCQFZEEGCQaduvzmoRyVQMWdkpygCGHDBSeKOeZNJnKtZEIMRtINQfNOLVOZBOasxMZfOdUrvBrCwkMhtGDihruOtLqkqyWdftEWLDbZItVTFSZxDKuIvVOnSLrWOaHJWJuWGGircszcpktXSZqGxsBsQbgAEUKpxnsAcPFcWayQdrPSXmJxzHVeawHhqUeHAxVwPhPetbpBZXEMbbmiFkggaPsrgnURmQuoQrQbcHXWEaIQKOEwBofxGQmldmWLwqBiEkttzupdhntkAhPMxnmmWejLrWofGqRHEArALhaYXJivVgKNqzCqHEBfwrKAWykcVcLBxhqiaDXUMoNxRuUGAlooWwHtnfKeowfngLbkotcZtfSBZswhpzbtNUSBKFWcpBwJGfVFZqyGkCoASvdEzgDCHrHcTxuouDjuamtSjbXqpMAEoJpcinrkHMGMHSMuZKFmENVpmZyGnwNOXJsiyINozwvGNpIjlFhXIbAWefLUUHwUqrODBLpsfNGlfyZIiBdfLEAzmRwceYfuLoWZuypjnSqkNkUUOPNGDvDEDmIAKKxTaHvwfrcdmyygBePENIWGpioCJFoRKSquLTocBoLNLkfMEIyroQpzbOTcWDtoapqoHUHvgoBtHBVHwNtSgBmgVrBmWXEWCIdCdYYxIqjKXCIWJouGYMiCVZrUAznaRPuvEDgVqfqiVEWOrlXdvwZCUAhNKJYKJpUMYfHCPtwsSyTIKMoALOZjIXwNaEGqThNHqVGmmoyLrViEBXmDObtepAnuUgCLJKQizajQaGbOofNfoVdKVtRwtbJsdKUQQhoLxJgzkEXtDctDzyZvTYIpMwHkgwbQqzTKBjjgNVsPAfFXEmoikphgSYtjNMiGyqNZhMcqGHryBFBBkqWRWSCumUjZeNIfaRVnsvYKTAIVhOIqGxMnfhTLIvKoyhlIlPMsApnMxsoQShcPLOIuHqRsBqzTLAWiZIvwRjoLKSIwtKlOpHYjrapzcpArCsaBTCEiOeOgiEuRSZNlrDjoAcfhRPlysvaKuRSCFfiWNyGyaqFPZhjHBRbPIwcqVJYvJRvFNsfgEeXhhlbPjTQPKbXSjxgobaDGaXEQtLbrXGfTsrJHyGPzbHMyiuZbvhDOpqtbgbrnvbNPhivbeAOHIaLsBjQdUrsiplToxDIQwZLvoKdRxhktcNlFXSvYsgrHxnsRqsaxuATrYTeZVsHeDhVjfHmsXKfIoPuqBznUNROkWUtBDqWvGownDQfuSjyWmdlMfQKvEgBLfyjvQTfrIxwDQWUceLdJEZJGadtWBYoxDpDfJCJwRFGWxCkGbXLvHqwBASBbHrbUbcisiPbkEFuneijDjOhQXuQkEcMjsIICIGbLJTtuWvwDHPoryPLEYwZlakhJrJyIiBnnCkMZLyDQGugyXLmLeOrbuymguyieTIdUtlHBMEdAkOxQoeyLNROMUNDMAkFyUHGYIMtzAKIcIGoZGIqKtNfnzgEyQUWoVScHqwAtbfHqgfinRGLhGGPfQBpHLaiZrxdzLsDMTuRHKMgFxiOJOsLCpWvKprAutImKMGLywhrtODAAljsjnujgszJwziSPQRejqaNAHxHJLiKAaGxccQvllxklRWUryCcTTdcJyXlkGjHmGDItsPmEwFeTDESpZmzZZzNCCOdBXkvAswWMAvIYtTnZWnNdKYdVaPBWwbiqeZxrOpoAKkMeGeYZjkhBxGEltypLcXYgRNmKVsTXxazxmwZBceDFLZTEFsVOwSxgXBVvaJrjIrgGNitIXBHRpwCyCdPRzDhFilKvkSLucITSjiHaeAkceCrYZJzqdhwjGwEgXdYSnrlERlicJgPQcySoolQueTNRWzpMfkFCjpwevAlXqxWVBAAeiOkiwlLtCxRHMWFogVzVoYxkuWrdQhVmqcRNGIuxGJAcQdTJMphauYUZUYnxAzhuHWNVaYeReGwYzqewavnsnMRbjcfgRWCrVYgpFlVyqHXwdijInRkuaGCIdOAtsRgkrUsClnYpuSdwRkPguQAeJKIzSyIeuKUPqubTWfzXGQCGbxKdcvFOdxHPrhPVRCuMrFvmJWQvbkBlpTresLIoQItFgotzLHnTVkoBDodrHQLpjTxfxtRhoazdBHnCmtkvxjsTvNHlJHDlsZpCuuBWSDMsxKnxZQWQEiBZOELwbffhAdcrIofXAWTTgDxymrifTZKYTgtQAXAeyoXkfHfcpcdteOxSkSGelcfxMbQbTItfLsFhrDnUqZhziUwFcaQsXWmFTEQRpMncDwGcjpkvVljwpOmvPbiLgdFqYpCAXumqMOpkPIoonsYMcpMXVvljXGxfDNCYCIzFmDdsKHZEgvgwGsNHEVjLsrNxPWamkvClUitJTwrMPdEKAdIpRHcVNUlNiuTEHEIYRrrHZLocODGPrBGhNpzBMgxSRZNOfwQdhbihCLZrbigWJxWcZOhlELXyQiBZBCoBhKOfsunYoYcRnmtKpOZFUgFKvkjCUhkieHdsdjtxLfNDqBgEEYTXldtoxDFGVKZwKQrxnlfAvEoNnALNSjNbbtKyyxydIRTisRDstFUvkqJJsDpEwrUaowovszBqJYHWSGvfaLMHxXkFqwNQDTWwXkFTDoTelYeIgMhbsXiTOJdMEBkPKksMHkgvvFEJLahtcigbMQGesFykOHtINZffnGXaHEtEtyETigfPEKXtzPxVULRFNcJaqDEtFxBljwrRZKOgDFKaMVsDucXkQifMbZttXElKbLsDpgJGZyRIcUSRTjbNFoIutFFLPcDXBOolqnaoGZjcUJdcpFShClYlFcoZwklPUPVCqgFPsbmnkXiNIOFvkJsFDFAPjaLjAGdLTqjeWumOiTCNKBdariXlLMXlmnUoPEXXqhhmZqrSdsTzJEbQkNSkWxTYvHeAbAdYKDNTLoIhXBvvMzllimkOiFfnSHgwKfQZeqnvKZfVBslzGdbFrsYywIAJjkyaQRmHYMcRilWiMAFxijWwDTReLTSAkorAkTZvusKMONNWwtKrCqcurBtNUpwAWugxKOmwPKbohCdcrCufsaqusITlSqlVFLtcOWIRYARXZxSgxTYnQoQsltOLaVHyVHZpXnumTQpzCIIyOxpAzfYtuEslxszUcCYakrvZOjexwZOXmjYDyDLzKBWPeHQmkObTkiVHHHrmuHcsUtaugxdhzwXbbqqSLqXXLotJfuChgxopVZkVQKqzvytBtrmxXaSYvtNHKclPNWrdgbwFearbAjivzWZQHzDdZlqHAGlXqZWCTuojOWOOkOcwdiWqhDuifvlvMFmeLkokfdkiXEkDLqEYajfYNYfqRlpHNNZreIRDpwvlnRdrxKwgDNWQqiDxeVvwYoLhTOZhZScMMeNMHhDjWHkqncSforbqwukUBiMPtxhxUEdlokCMIwmdaanOxCWCAyKCwPeZypkbesEoOoMTXWRrHGBbcNwrekSQYzhIxGgRCxoPoJSevIAjqFQEefbhuBVMShsUDjeVjtuICKhhQQsSUFzTcVmKlForicdXOSkEiBimQLlMuulGcjvDjIihPODbsZvzYrGFJmUApZhnPejumSGGeSVwVsIYiiwsHQZFZYoyNnXtgOPwBUYrkSGPUsqTzHVQzoBJgjxTJLwFOMPVxExQYNBmxqqnzNdsqAEkxdbGzuKseZFrGXbLlVXiNPbrxSrDsbaQtXIlQUfuQkbYEFnyhgpYGKIcyINYJwimwjWIOLPrRjrXRGAFrICjmTQyPYnkCBBHSiAuYoZicYOxNiEIhWASAAEUfgfxBrIrAiRWehiPHYWUUvFowxrBHNHovixesSqGrMxiBHAphuHkYkkCZrnzjHgNFNoIUnOXpxlSuexGIqSXXawYqCvauPPyuDRybWvNbnRYwNrOoCWKgHAveKLBoNBTrxLGlLfYFeZOTvoOoguimMbonBuEdPXZNZsRZEqxwnkxFdQyrYfdQJWSEQvjHIuXRFKIbUUmIDswbXaIZuBsvsNTSxrSqgiemBFJUAhwRIeJFtlPbkTDAZErcXmkoAQAROjOJGzoOxStAoqEYGNMDvWnyhPNsnkFdGoAfSagBwzJyVeUDiIdrKDfcbUfjuADzHYofrsjYeaQVwZMiTMOSEiVQzRbwJSlLHhujuDtorpFgUwwMFXjvkRxKKqvoMLsJwXLuaRzNVNdXisKoPqvfZnKpIxAelooUUCWcOJOjjzxUZUbVahMAhcHEgIVemJMoRpDgpQIFsLQBWkbmqkclwRtEPTQyaQUekqqmUKcnrWIvlyGgWgSVebFnVgeRvXhfiJNAmgklWxzywStIVrWJodUNXiqSJsRNdzCtYNGlVHhEEGLrIJGCjVVdGKxQdqXQVdswovopgKDRxUaVzZFNQfNKyCYUmXZMISoqeTVZmjnzgVUdjeYFXlNXgijNiefqQxlIfXLlVqaoCLJWHhbzeejVDLqxFCMbDSsFNjedIlxxZtGmVDGwHaLVbTctSbpsuAwerKTgtqoFSMnEKppRGrYbrcYPUtWCPIvFRzItGOuTMwLThtynWmKWjpqLrsytidAmurqFPslvfPLmWNsLlwrUfkXTVTwPcYbzMqAhPEbuiySoQxkuTnuqcNHYJGqURBypHERdZbdDgcJvNQWXsXSrJpJxkoRAbHGyJoqvcRrlDvstYZTahRfZFxEHNdmRKwQEnPuKSwjtyzjmaVmWHUSJMweOcdvYsIuuIHUFxIeRfwCaDAtdllPMDwvKCmuOpGtGnivZXyGdTWazaojfmhmxYuQnXltwFBGWfUmnzxihdMjPBorZquHpIuLdSOTLNZuinheGdcsYYBhxQsSLEzSAYFcFYBjURJDGgOVMNHxvSbPOiEMSgKmtTstpDGPlDECHNLWBAeikbfRgKciLCvQIYeRFFPZNPcOTjMlnXGnXFFIycYblpoimlcxIEKywDcZrpSHPSJaOrvIRNMDzpUiASipoSMexENjFPyVsxVOuzbfEIGVfiukCzvVZVErCPKJnnPumYbDwHuWFGCUTvycUbCkKBlZEJyDwxBQFPwQAxkyyJrwHUjXVfNXYGlZyoiiHuQpXJhOGvKRKSpfLkVPlcwDtkQGxUAWIfWOLtnovHzSoekRdJblwjpQFRigRNhayjsOtFMJuypuWrilqmFLOWBEKihTClyHvqzBBawmNJHDiHWAYTGeQQLefZaFalesBNPwFzaEXMabPtDEamTjqVoaLeWosjhdSIxbNhkNqpqNSvwOsafHZkDUAlhUHtqIMudsGVLLEfdPGBSywdDwbyxZEevlLfZAZdjCXzsWXFYbZJHXCxTsWmOuEqQhxaFZOsXwmMPQqUiQNrdpgRxEZbYBxBvGqEwsQdGQyXNVdLKojorcDGVDRTKoqSjsFdAJzcbshOfVAzuklJfQahIIGQNEhGNwadoRMtnwuEdfaCyWrHgfAJgjKQosIEpqfTCsnVcBHFvSSjrzmcOCYJfYgIYEytWGhPuhOPNNOXNFCelbMeHBAFemaTlONSsQurhGHqoLlTXuJIqOCjYZJeYEipHnBrLDBeQJjzJbVUmTEYevyMQdWJFDKTZVXNVwYEahZulqCVolpiToOnhnbIYhBRQpDMprrwMeyLlyZfeEFQktqQwIzBIHYBEXREYYpGjxlehTDevBxxTrQMitKHIAcQXyjhsYNRWdKYcAkzIIEuORSTnrzYyyxVyXTOTQiXLOzXeXiohUwJYhwmeBcYeziiOrCnysihgjvFFmCpYZsWIVCMCmNAbwLhJHWVMlcSUGoKrUEUavUlGPFiMzESSyETQHlHlfLPvOZdtBwBQjzkKuGdThtkeimpkIjunebkZtBwraqNrjgACUzsoQQiiefiEVxarjJroPikSVhKgxPzRYsrVmFymqWutTOaMNrTSXrRCNmWmaSikuVkWvQcmUuBoRsraoiyOpBjPRVlyreFjGYRfkXuWMbsDYGMWrTKuZYKejesxBhJnNSmOFiZgoTVUEZueYrzrFcmxHgvWhmzHQTLsNWQuJxukLMOPALZvtSzfUJlqvrrylexWBywNZVdliRDzfsmeGvgMVsRiAoDDaXBqVusBmnfYBSIEmSXEZSKEzZpOmcWTeImfDfQJhmeVqonzvOZjQTarepJdHbKbUerZQBFuFbTZcfxSyEskDrEkMvpKPBmWDpqlttyVkooGRCbnMhpYexSKioYIXIbrCSnVdWHLTrIlTIsuKvYmTksCVLmEAHgnpjKglzOcuAxnoPpBAQqtCtNWVOayXyoZKLNythQXrizOjDQWyCJcmnEdCSdwprLmUyaVCpmZyCzFjqsEJPxbpAdeNrcUHymAvMICTvbbghAenphsSIrYUmQrBuoAyoTmppviqBVVneXkJryoYnRUIIntuqnGYkWWneazPOuOHZefTPKDrEfIflxryULlpMrQiVXBeOOQNZGjHewtJnfgrsErlzuHTWApFaFCRirSGnvwBvbxicleBifYlsPYlpleIvvgPCkElixWzGcxqAHaZJDWaEZjaGnHZcydyPKQzMquffalzQNkseMDQNaAVVZTyZCdzWyXyOnhSUwnLvGgLGTJsiCoFkLOeYNfjjEEDvmdUnbvyTGKfkIfiFaUEWdToGrqJRmgYXOjNCEDFfdFTQCwOjniKtxUCRNQxktGsRYAUbtQYWQpnjBNZrjlObcZkJHdDrwROxOTeuCEcfNkAtKWPQSqeMACvOpLtsaxqrodTXEtPVNhTDMlVjUnbFBbAbUxXnEksWBcwHZoqoejoQlLrdQYNMqjBYjbowztjiCStXNaDBDpeSOHDlvAzhbvFYuNbdRTlkYwsmHzakFLtjCFZozIjgNYYVzccyjvcjRsNYwtTlCtGROVJuoieprWZFMOLxIJHwngbDqNOaLnWQviPXPysCOfUqiufphotLCBCFTPgTSNukVDhmXNOVNgblMACNBxUkiybYNHiNhYbaxpWrSTJKAaxORAlVvnYqHMdSHXPRytnGAeTXNmTmmHyBBeGULCescmoMpLgBivmCHUdpUjUsDFtEZULZaRXBEHPPAtknUYtyDNCUvOUMSZAdUAVswKMrUGdxKHthriDyDgGUGVbFlNsiLBRdYeyLCDFnXAzYqkhSCAiUsWlybgHbtEOFRRsMGwRERXQEKZRyrbyHUEWMOVTRzDVuFxrSgHIMNvPbUEzgTVXghEJUxMySenWMLPqHtXUnGenRSymJhisLqBpuecNVruJeeAszdpxeRjsQmowDtNhfUxlLaIDTBCzYhKzTwnschoPqNtkBptbEogoTZivGxCPicwPeyPayIqMHlfwlYKgxhVkFlTNCPhPVthdubmYBucRWWXBeoORAUpvElByELRBmxfuPYSuMlIeVeOtUKbyBiLvooQRBPrVbsFdegYCEDIhjuCfCJwDQJQPIeeGfbtglFdNEDUzajFtikYaVwPDoQDgwZlvVMSXckjzHsryRbcrwXpkCltntrKfnGuVvtTCNJheyLdiMAngQgwKuXEMtthwDzmGdNuzqqFWjDBEhuYwwzZdgWFwwmEkxesOfpqWFSLlihKqjNFzsrbDKRFKGPUcDjdIAmZgwdqLsJyncnmIspikUfkPdwoNjfjPRmLgtymmpFLRqOyQCqvbtnScPkgKOsRAfIHHeFifJyzszBjQGEROgEZHKAlkMndBgQIykyaaFDXelXNTIVuKytoEVgQsQqTJmiQftQzjEqHIgMehMwXWlasJlxaSzqUkwqNsljTVXsrfcaILVNuguagEMIrfJCKLIptzUWPAVbxdqCPhouwrVVZDkbPkuRQGGUIctsuHSgLKfIjIkIwTyqPGYEPvriDKPNTOsQpquNrhvuFSsaloqhotxpOYVIXifYKrtpCWXffZdgiyHbmrrAjamtvvAeuAwsjBwfCIpgFemLxMNcwzcWZUcXqtWdPCdCqxONvKvKZshhbxdjnGYOTrVHCJcUVlyPXopCqdkaxbVUVALDJGNOXpCShFzKTXrPeryORwSOAwFXcUwhWioUQCGRUvXlUmsgqFTRasRNOWoMoBfGsYkNJWOatbCQoFaaozrxMniQYiETDgSmWgyuJpimiMrqXAnKmuYHDzPTSqejWFAffcJwDKaOPxhATXdIWSEBQLYwwGHfsWGtgeqtObVgaQFbGwzjIqXDDtkvxZowBAhDVsgXGhKnQwlIjoFSPJbsfsizouTAlTNhdmAkqTVjKUrhUWHPjZBCShCiokrGWDLkpjLApZfebOOItAdqHlxNZtKTTosdMwPPEXkxRfJSpFsNONXOfwKtOAyHIJzrkMSSzkTZZqHYluhVHUbvUFhfFBrUPPTvNzKZHBXVqejQgGVjLxOXljqhjfdVsJKzlfKGoUIbjKCQhaWsFTaFOWdLlUDrZaOrOegydRAgElrAxwyFvAdnqsAOlYZlWJpJQVjPfrmyBnRIXofKQdPxMJrPETexscMVqpMjFHrbJTMoQLOVvbiMyukfacPWnOUpZYQUkQFnZnDviUjDrlvHOXrlGUbAHIzBCsOczSdRNcWrzsECPagATeCsNKheDYUeFgcQDNFxyxDKmjRDvEtleABiEprmxLPxJNnNOzmcheUDTEzKxoeIKBQOWrCoRIFiQQdyNgizDswzkWftkohdplmLudZeEkXWdIyovtjChEGPpkXHftgNdreVqyeeBDKbtIXnqdVmkIeRpguTVbZveKvRwMjEXRBgmjgPMwwEODVoVDuIbHlPoPquEJWSAoZPUDyLxCMOMYqYXPdahcnfEOJDoWrKwTFeSgHOTlXXXUnqrIAwvWHEOwDsKVNHGrPJfDwKgZpUdWUehNzZnuXrLoiXsGSCMrNmeNMFPdOebQWmUAqWCOIuenlHyZRFhqosXHIPUcOyxIsqqavAfTbtOJyXVxcwqQJasBgfiZCCUnHbFUkDIAbRPOdvjwSeUhZbcChPBmshlUtyTxwIkSpWmUIdFbIaSjWRMSwIlruvINFlEAUnDYDADKxrvmahtnhHEtZsayebevSsbXEdhUsNRACDYeCYsIffDVNOhkmdaRnJcyAiwPZxykMszpXHXMdcgsMcvlvLOUCtyrxQHRJcXEdUPPGlOxfmNaGZtejajrylcJqgNSZJthZSDiQwmqklnmxXtLosICOGSEskKNIPPjMkXvYufXtfPmrHJaXusoSOWECbxskIqrzNtutqSziIWYNnXVlLWWqBWWbWvveqxooEMHFMXbVjYzStchXRqhxorAhwSuyxxvPXrzhDuJoBLnuBJQqOAtSgpcDemWLYgXULQJpaHUvBhyGpCIQQluShrsKteiQvozTJaalGkPgwPeuXXDsbTePTKgxQrDVtZbPfklrJKKLMglDvQqtcSWuaAYsOHLFzEJzNrNCHblPZgayIdDsJUalJDwAQVSFuRygbJLXVdOKfYlVuiZLQmQXxleDcyFzuXLQjTZurHBFqLUVqBKRABleRywBJewbRuvpQvXSyexLVxOnZLWdnQtvIuKHChFaTYgWnQMkuikKjKyifIkKDwPOqayAFCEeYtZIEsJgjnKoPpfohIVttKBbNfqZUiQevIWOUNbGfIyXOnvhaqYgqGnkfRbaCxqXetMGQuKdHUcHaDAgxxDBoYjfntHLOGjRoaebiYqvSivAdXuPTQIteuvpblUxHacPIjJjFxIiaVPChOcbOhbGkrKNpGlKuguJSMpgQcVoIQqONyYEOMNDqjPQIWyzPCPCIoAaPfXwegSqKqWSSNKjBBXzDEERmSFbBareZNhMFWupVQfncWWQGphgnuTEhnhiAVVaRqBnQvcWbZKztstcAnleMQSOoOFTlTOpttvknNopUOKqiwJScOHJaekExAhFeIIJaORwCOzMqsXjSAXZNvyfPmNNXMAEgHvTHpITvTpoyhBRcaMFHEpVGzoiYfFydtHVyqXhguJpYxYTtUpRIoYJZFrerFHIdoVSlnjBUIyccTBqtYaVPxjhaVAHwksHZEnUIMidpwCiPXlBLAODNBCnTHAFLlzpYBsxoUgTyfaRCiYguOwANomTUaeoqoAhZbPHBIXCIffBCnghfXwfpzLiGSmLSrYQPKRJJApPplcvBIoWYPyPeSiYTEOpdcfnoDzpVHsojRxKDkufimGqDqoxNMmOYcAHItwcsqFYdbZVmVrnUEYnNgjFrZteGQJJCyHAEOCrLXgqLJeJZMRlyuAjZULDHuydVNxjJWydorVuOAsqENJlfXjJNXSucEpJnbMxlcyUXLthzcLFJGMmjteWMdkFWZuYMXpnEYaLDsNYtaIKfFijeJTcmiJNFBAKjzegREQQvNjHAUYdliwJcJIIfRpHxsbQmfVPQvjDZGmnCmiYvDlidPWbgTeUPnPCmcXRWgezYVqJXaneJknOJAvzyrCJWsauViHKZhhaGhHZEJqdVZCcmnUhVOHtpoqZOdwLzRRxBWqfBoMrxhnomATqPCrodKpUBdLrKtciRACxqomrSEAAuiBYadjyZWPzfZslXlkejBdQYFqzShRiysIzTkLoMIrhcSsXxTRpRLQzureHnTdoGeUwmPSZXhDYZKNUbWUXqRKyyDccBmIcJZeJGbwgvnzdCLXLvAPmZIgZBSmWJNkRvUnmJbzxiwQbfqHifykfzIAADmYfnrDXzTDkJChXgUHOZqLcOnfvhSAmGPcxbqDTxYcSODpUsZfAMBNShGtOIbIebhHHLvmqIgfKhYUlzuJLfliwpelexGgCDciZyeOpUOloWlPWtpEGaOADIJCZlCOkzeSjCByEOZcqOFidCATOeYbycOpTARHuCOPamIdsgKswSaMvAgPvBTjUfaXPFpFeCoketJvncdugPOPiuboTLNPqUVFQTFRLKyNioNLLDIkJJMMyNyJOwSaybQGqlEKhthHkPHaNbRuyrTFejmbSXihUcuTLYbAGiwYpYgnOWGPNXurgeDYoiuekfCXTeCGTVUdqVMryupJPJMbmrnCpdldpDZWFYSptMYkNlMRBjCWnOaTeNkajsvubIvQTAUsWrRNzmtSyIVaIuosIcriXVeLyCHzBrDANJYBKvTAOzojnzZmMDBnuLVmmnSgbmmyMFZFVJHSuwDYCiNRAZBdRMQUULdJLYIkNMzdnHqkqGeILnZciGYPaWgviImdJzXVHQUnbEYulfbqXWAsEPsmkTsdSoztFulacKWCyXGpaCOQlFcqMsfQqTmVFvQSwzHDvXLPgSzbpbAulnwSuuyxagLEHFWUTQHHQXWdOSHTchrTOIsXcZCEDXswyWXRkLYEoBtlnCtoaPKWfVMHsPzQnfOKlLyTLOPjwVBMNIeaCiaUUfezUirYeLpsfQUQIByMEHNPnWMnZoGBPgaynAOUVAnNVxbuLvZiXHmGtqAHXtOfCKVbIHKxvHRlIGsDitEGfYFqGbnApUrBooSKWnQtgjvgVwXMwKEEssghTeOWSTBWVTAlgeqkQVvHjcOpKiNNsTDrTplrTgkgMnTMSujAhboDuehYbDADmoBXBJJYLoORdygXEDDxIODiwzRcgcRniDZkwocTglrwTtQSHykrnYrxHqwUbVUSlEuuLoQSbyASmWlOipBluiWswsnyfJDXjsReBsHkPcbhnFnBJlHydcTNKtgFtrVLYLbIxDCkuMVsqFReYyEWTuAwjctdkvxrgWRPbxoWVqgiOWbVZbsblNLgciHmGjATIfLNAaKlSwTjfhrUOshcLSJAinpYrQLNvuPwmXKwzOKsVLTMNDJoLSlmQAgBsaZFpHYGGcrdcTSvvPqPRtmgDCzHNGFrPPcrzpdwZgZKhqelvtPnGFsVmNwiCuhrRmfDGwQNuYIGJDKfhqWVaZEvcUXYDskURNGFBDJTqIbrsJrrgoxgffejXNhEDhtIQITtBXzSufSdnDCJOMfbHNcRTNhxtJexqqRNHpYGOwsCXXTvOKaEdDyNxxLPdrTjaQaZCNSTCgjwZswKhENagUHdIzsqkpJqxImzTUnwLJrghJwaCgbvWEOWouPBOuYKWHZOxyildCebrhMVdqIjzwSDYHmWvMYJGWKORuMcSSfwRbAsMSEPYGqdNcEAnWhUIyDzFrgtMqWAVsspKftWtpOETZBqeJzCcKPbCYGhOsKCcXxJbwWUwekZaAPEPjjqnflSFbiIWLIlZQOmtMRsxquZaHqLqksfNWoIDDTzecSFPQldaiTseUniBHMRfansBSCgdqXYqekwSxRuHGOEIOQUVKOGprUwhtPVhFXgNnITVSnPMTYxIoSrAIeWgwynQdBIIxjGihusoupIPLJhyfigbmTPPuQUqZNcSmrLKbSPtiUvVLAOfGydYpvcSxWpBcXJPuFjBqVQTQerYekaendruYGuxNLlbaekOitGnJqSebjAMahPlmASidjIarxPItyfMbjuWhTBReJtLoFYtdRXDpDfnutpRmiZoKYJPyQUWhvLhUKhYpXuzJKLzofNyHTISVFMYMrXzzOCaZfMLujucNuUMgtNrdGppIqqKSPVqdYGSyKKpkXREbpvdDToIqSpArvFgyEkrqAUnViYBaucrdRTOfjLEfyRYSNviGDUHAgQJPStGgyzHDQXYCkyYsdaydwmIzZTTbvrjvpfRQDwmTgftjgsgqyIsxAHszbiEKdqQRaBvoaKjwRcvHePAYHYPQZGoozBWsihOQBFYNQdvxrrEYecutvrjCXCTUpMzAczBzQSrlovnklzNregKQAHLONKBOMhxuTRkFIGeXCNkjrjIOBFlNjXzyvCemOVqoJgiUrWPTzGpwSFudWuOFzxiuGFbBFCfNwcSGoaZUXmsuRShZcjPxDHYqdqAJTXJWXMiQsZnZIrCYSTJDgZeVFLbRpHkJnyEsqumBEAeFZUeNmXWnYdxPmVrrIArJVRZwDwtmZUYoVWKEKinzgweJNjcmIWtfwBOsUNZoduSEyWzdQJZhygprMFuPpNIFqnaHazesEYIFffvFEKMswsDseobWbmriAdTacrwPXqKnMbrNVAgOwfJWSMhJfhOtXsdYtLAJUTWfbtDXWfMimGclGDCXDlPoKRjhqDUwNmZfAaDVLMidtXuikboQlOkXIjeCyrFXtYNYpIiemiEUZvNncFOvZBepIfpPEMLlKtmOdWHTentSLKqSMihHEQNzcIuwyDDsETSWDrlnwJDUVABIABxTjVPkkWjyKysdtqVDgtRWWZUonklVqHoAQQujpbyIzSgkDcIEJJpEKtGsaMbdxgZbzxQXXqzuyYiLcuFdCxdiRYMCGrRmKVQsldastbMEXTmuLDyDtLjOdTYaMKRbwJutIcvsdGcrRfQmZeCZEkfjQYFceyRUiIGXkIhOEKHJJHGobvWxQuOepwhDvoZZOGWmvaojAjFPDpDnseWPOufLSDqWwmYbMzCGnGgTClMjicyKBbPSUzoLeKTdMovkcuUGWByRYTBDwMZHBaEtIJxrBbzDYGFqrzSvTZYhxjPySvyaiCDsTkBcfyVHugyNWFxGQukmWuZPQBskgANncTfArXGsNwiFdKtdjbWNUTZTCbInplfhwBGgOswMpDXbaQhTuGYDTNhgjvnSsKLGShBTZEUyRPQUmZKoxrCKLxEKntCMmhqolPOHObpzmPQmAzIOxhpIEmxnnCmeKeaMZlQEbjMozWFavMXZbjzEGohUBjTlOYZdZQBqqxKrOyMbaZjCTxkvERPeGBZeTGTqYFmmDAbaFfmCBfaxCxTibEguUIInXvBeLATYfgwygWruksSlnKziFfveQMoOXtyJxsaDPvxZZSClZtlQIraXDoqpWdzFsewkHGnhLhFEiFAuKgTQaFXSCcYEFoYLLolEoNFvwivSUpQNNxrPzVuFgagkDhNzcFCaqjtbvLabpuqUbltEeIyGIjLCyUbNoOkCLSEGkAsrpEKiyABCaTtfqjAzwWWspLvdwjidmlCAItSpQgqySGrIHYpIhCTcCRtmeZGNPclgVWczGZyaeyrzlUsDhIJsvdYKgaPFXKYXpHfUjkJbnrdJkSjkAqWBEbvPBoQwoLzmfUyjuJOujLPEAVsmRfGyiPiyqTHgRiSUfYZWumuFJzySjxKLhbysAOmyeTwuAhTmbwOgzTEgtAYafEfkCrjZXZFwxrYOPdDLMmxNTYeuNUmbEhCcuaFplQwiSFIqSyhTsOmjvZVshoaVwBreZRrVXYCNVrKfBhfXJemGZXQGtfkZUAMgqMicJdzTAUXtnzAmFcRrMcbSPNUcKmNnjZRcNbbbmBMmNvbQwxjxsofFCXNaPDJwsRHEhdUkKjSEfkTJAknTkWWfERexrUUMbHgDryYMHLfQVFRQOCfbjCpSrCXPRVkrGsocbpEedghjwdXdwHPprrtPoZaMbAhFdEfwVJVBAMDyBelvpCthoQjbdjGdkOYkuJBxgBLMSbixKXNzJhlLtVQvXLpdLkPrKjkpryzZsvxSlyteZgqEhFmCyzKUZxVqwKCkEdHlUQVXAOwwayJzLygDdHptmVBeSeuiIHNEpVayIlSQPETlNAVKonhwkQwCVZRmeOKbpbFEfrwaieYJNcAqhbthbAURdhByGskmzMXUPeRymHccHxEHDFVHSTXJhddBfkKEvEZOCnhQktQBFjgTZEwPYBkzobWWAshPgcEHFGaTYJqTMPihvTVPDvvkdJIguePCeEkhMAENtKMSIKtlMlqixUjzaveiQBtjcdWWPqONTxFzrAKtBXhZTXfCdtgYrliFRynHTznbxHebBzVkQAZPtvKyMtqfMUaAQMBsNzGbYhmYrkioenXCfFiJBPgjYXXmnrmypUuzLfRPhrjdKssRFSmtgiDnRFkwCcIUSIEtxbWYoPrKfxGIVkAQLGkUcUAdiEzcNvDEyVERYTyWmtaxxLkDpWfifgYKGsmvNnUdCGWuAhLkqjFyXRyjMNjliSAQVmZsugUQHFsLqpvsZCvsnkGmqLKiAkjrtoyNcunrUbDOzFRMGPKnbCqDYPbkQncFvjftRbJEegHvnAgFRlnztwscKRprRNNLfZPtwbJpiYjlJRkKUXCuIVyVQWeNBwhVVwJWZFMFuVpTpmthekydXmnHqczkwtNfkAVUlSrdGhstIEiNfGZaknLfKcdZpKHDygZYdXFQtSEqiKBODdXxYGDpbrjtIyuuigHSIBjcUzVOmIqMRNTjZUROjiqyDMjDKHZmnPgZnaXnvxeoSZyblabYlGuDgPbcPCudfLnbuATpWMJtrUgSkQNTdjJMYQywwSGpKBAHTtzsHreHdzYewFonCxSqJZcAyURbZHZBFsyyMNjMPhUChdAoMdxEjKmwzDHwJXSVVWxrZfotWfUnzYtnFVNJfnMijXhRUzareMubKOtSWlxVjeudCSyqORSMgkboKAhYhJuWiIMxXSCjjKIjsTcqfnFGsypixwhpswJaPtypCfDtawhdrwsGmVynehWvqrTqcgzvXaMbVpRIKuXAHfOJgxwpFPoYhAcefgtCinQQKUmRhXOOZDQlHsnAEiobcXlTIplJUgSlmjhFnTONMgTxBBMvrdyNeyNzzDNuReAgsNdBjzdtnuUKzcEXjccKTDkvBBESILUTTjvSOrrbqjmnFUmgdVUnJSUYkManRerdzYraJWUtuZWSzXWEZEOtIoTefYbWNCJMNyszPQpSqwfkiFVZAwTQlRtAAUjBPtnAzHeoMVAScXuIRUZdwcBYeAqsdvOWKhuQjeLALRARxmAzNrjygIfbXmOqMajgeeTqgCvunUHCVjNRspLNGfVNpXuWBQqeyFhufiNeRVvypyPHCoYNeAJziJNIGIwmCcgJnLvwtjYjZOlDyaMqPvTVNUZmomPxAjkNVDohpDpHLTUfjPSrfilnRgMVMpCNfvVKUjjwaoCKlHHHdHZgmlJVYaoOMBIrEAZAPYJMRXLtuekzZIEIwdLxZwNJesHQJLsGMOgGZoCXWeuvyIxbQGwJsOWbmxXwUlhvliENtwHTBUsrPBbeyXvZhyyrsltNUWNzTgcuQprafqzZYDMxAKNKJRwmrihUTaZLjavZcUqNSJpwtQSEnuwUHVdBDormdxGVNRKqlyHbzBVSUyFJmjcKzWIwQTlARZMyMWCZtoyZTGnExUCRhyGwhOTnularBaYxlCnYgVcJFgttONavaGTiRynAjUvUbgdqCIPAtdhQoaTySMRXJTQrjujuYXVRPddUpFmkglocaOHKBngYreHwYSCXjZhwxhxzeXBIzPOSGmjwSSoleYswtuoCNHBKnCvwMRiRBvOrTJxoklwVhZdRdcvDJlMBWDfUWcvLoiHQzZRLqNWUFGySlkqrkMKmzJcLkItjeBIwGBupZLJzPphDFBjMkJMIkarCmYfLtZjtIlUMOLyiQFVSXkAMvhJKQbIamSLqXNvjJpwYUtSUSwMySwIDOrlSbGvxmpuePSNKwYiOIMRktzPMWdbRzkzfEhKWHuodIFrdxoZdscIFaMKRPxcWegfcFmNiURgnVsRmgYxhHgdrlhgEWHQKRBVLCavkpRjoySdnOkZGYTUKwbbOgREcdMgRDyDIHafSGlSjmdwmywjDiwfHYlqDPpDYYeJyccuKUscZkSMfxDaXQBXQBjabIYGOODlxCxmcJtagmfHwVbACmDTEOgZnDupnweLPQCHmlaBUZPAXhVroTIUkVeQAVsswXRKwishnwTrZMTTmkEVFhtCNMrycotxdMJjEKcVSaWLPhLLwHIdKKbtRfhDMtmDsChLPBVoCIdRbwHdzQoboeOpipzmFKUuUIDTsihckbbIpbZOtrstTZEHCFIpCLjftATnoLrTVkIAlbQYRTkOsSBCJyEFOiFsFmjbMgZtsnEBJVulqkHvcCGAPwjSaqKyYVgZLlzFKGafXjzFwmcUWYPtBpjLPNJhsGZNWlwukCslZPnajEPxwxXDEvSinRanEmaFfnjpcAXamWrazRAWNXlnVWFZQQyDslHTsJVyiTozQawVeOvWfVKCuRuuHTijYGTWUjDaasuBuRinlLIOxsPEgmstkoAxTFYjjrYZGnNGqmlRPULbArzNddTFXBEYqXMUfBrhuKqTfzZThnrpyChEFfFMtmBjyyfAenGvspXSFLGznjVTKvNObgrCIesGkOwCCjabuijnjeLeUTmOykIdZNDONiFtrQUzGvesRBISOqtVoSiBcHqlzEhfhJTmHtphuhjcbpkqKTLLXMLnRcvVLetsoctqtfHouoCQZzrqhkGmnQTOxDZlMkEGYdXFQAZPfAcpLnlqEqQKrXGwsUOPWcyywQfKAfsXxytkNredxTcqMnZeMdbftPQXSSjErtNbSumMMtTFvBtSwjZdHmhxGdELluNYxiJnSwkMJpwUKlsELhfqbkLfmqGzLKSAlVswLqiSkzaCRkHLiOOCLccGUfIMmMrJhEFPopjJqPsZjdmyYvoyZqkrgckBcVVzdpdeSnUMdbsiehtjxFfUFMkGYRcByhosnizpfVVdtoKVhFZgcMuEBwyLzZESpyjjAJpmqvtaaSBZBggSbzlpMBSvIIktdSmOByDLZcXWbNleqTMLHeACRdJWPweYKHPGxabfbWANSIQVaEjtFXAUlQjSvglgcljTXJXReiQRRbVbAyPJWpwFhGYzUtiNYtClkGfentxekyXXKapHDhGziinOnUGambjUdoOAUwsexFgqwOGvBiXjsfwqMDOLJpcwkdzlrniFPzsIvgjrCqnukigPIevpFTgmWmLaYREqzGgMUfCTSPtfGvjSaDLHhAvwpUmoETaRAblvdcVhGoyyDbjvfWAuIfEOFZslpUkFXbPoLNVnxUphzjBAeiVKvPJxtzjOcSoULuZjbymPipkWGrCjPKpfHppAlDzwDRrwHtHyGOKNpjirxStiJWPTPjELMGpSeujNConRrdEdljfWugparCzebdtZGSPinVHsDSfKtegQVlUfclNWfoWtaGuRUHDhDWZvpeVxWHUkuWSeSYRLbPPEvgwAdoCrRxBjvsHSQqSXthyJqzbyWWpXnOrFpbspffAclqlZJbyYUmfPpEYRqkTmZmfAMnXDuRdPlysHtHeRJaQdOIuRSBSNldkdzfHTKthuvHYNTyJiHWARIJgTieFWWXKEeJelZVZKSKBxwRdMweAnbKltOZUmZFbWzAaqvhIXqNxHRdCuGgoEhtGhUFeOjffGuXLblQucqCaycXFVPvPPJROFgMBfaSfXHxeEjCnaLZvYSFzrzljVxpFZeowUwebNRYIQWkPtNEdWOIiFjLrfNMEkeKZzIyQMPTEfQAgCGcDExoYnktvfMdRPidrBcVYJujNFsBKniZoiFvcaftzLJeVGKOGPkcKJoBRZPCXYQDtPZGWpyGbXsOJRXElDCNQTJtayAdlbaCSpqdLHseuEiooQykpcIesheREGRFQXpAHtioYvaPaOJPfPWRkqhgjTzzsnjJEgllGzmmmSczsdrDPiSaQVRAcTRCCmrwzPNCJKUUZHOeusbcXLjfGPldeIyLZaTMpOgTxQkbWiiVEMzvuzzcJAAEszAApDnGAAYUOgXKQWIvVODvzlJruZJTZhjaJxNpCvRpvQMpPDuOAfSIfwkGxablbBwgzYBYZztBTrswVGlmMycesunJiDmlmqEvLFptsTJppDsSjRKxTgKkzLegMviteErWtxvJbXiMwzGpVVVHNFqphoFqEuvwDTpgMNJLCtrUbXJczaPZkRvMXMZGRWhCfCmiydeMoEpkfgMTiAfvdMcQgtYDHMDsGFkUVTOyFTtOUHpmRisgPkBMgDfHhDMtaiDJFmjgpLHOlhsnDipaXhzyWEjaaWvuTySrailCaaNDxNomKGNnPzfEObuTcwxwYwdzUIbpoSJFcqTOjnxysyuwKEJfIMrECNyeNijWLuhNhuzqlNaOnVNJywYRmccTzMcIYAJnbUYkZbgpbFeXtoPJBfcTOHsHSJobKQHzjZSftSrIFBMZnHCneZmaSCfTKwcSkBanbWlsCyUofdQwNKkFPnkNCpBGKnMsNgjNAzqxXIyNUqMkIeyfzMWItfTsbJqzcmhRLPoItapSaogjoBcDtthUObsdLHpJXjEoLeAtmnDMresVPPhHcoOJeKGGKLsiiNFYkwiuYkqWENEeMZCKymXSxzaeNLCskQJDBXoGqJspdyNAheZWcIhkAXfIyUJxZttUvgXpeECcXkQfhbQVaMUtUOmMZIkDqyyHPPOCfhoWEmVOOUBEkpnYmNwJJvPCAFgnNNyANUVtnSSCwhtULHQbcfuifaMGIyBMiOKipNXXGosakZqGulpamkaXwoNCZybkkwvZZHOYROcaVKTRuQsHIYnSgPvsyecOcQCVmtRluUaBsAKWosqnndLZgPRjHRHndMuYEOzypktJvyoKhnXiAXZrsoHaHkttVltYJtBzubDBkrACbzppqWmCOrPyVLjFkNGGNPGBkCfOQDcakAsBBOwwMTjtgUprnIIckfiJAwOYYgFZOGkoSiAHWxrOTgYXvhAJoQMIKQpqFXYPtWCrIugYRgaNFLAKUXeWIYRDdwHUcNAiHGTccGcTuwvUGxdJyaJqxYFWUuhTWeiCGqaXEvBEscWFRBUOFVynbBfuHUSEJrkbcNHbQvJEUiMbgPVuISgxTKJumnHhjIHtwNoSkOxZduRsRdNHLQtFnDueKForVuhKLpSgFxelVDXEEDXJmpCOivqIlyGpERVHNxLFGKKbvKaWrvaIxbfEqFFQbtWiwqYMLIuXrbgGxGDnvinsoqiLuLDdsUNwOiBeIuTqdxNULTyWOaShEONFpUSAeayHxPwlzYGblGiOBreqTfVQtvJIrfuBuNibaCXNxGJBFyYeaaKRVaOOTcQhKfICyaGiTXsBMzlgVaPMVcDMxmxodgRYNvZljWdVOCDTwjwXgXmVwgBJHRMlyWUjVrbKnaJWusPGukixODsaVFNIkOzDVDBvkadaJrDbOEYgnQBZIErnWHXtNydBuKcmSAckeqSbAopxcluAZjlRbXlhSiDdoUokWlMDvsDoenQeqBblvBjJBMpXphmarFjdXcsxPGGadaNZLbtLNTpWWbDyIRHAVfMecRgGiWpsVqRFCoUWhkWATmpvmUUDqSHeqeDytYmtMGYAlYHvcIiQERokFXbGTHErJnACgdGotsAqyHowuRKhtCDYecWKpZebuPHEdNjciYSVSyVsZNwwgQAyWXGohKWXhUhbuAOLwkLaxyDgRZVbxtTcCFxGXoYldjtAbTbBGvyIyaHRLVUCfZIGGWQxVCHJwUpzrWmEaoUiHOvyGGphIEqQgpdlTPrnkNXbbOznLWRutwMGHhryHwCBGrcjSgRYznduhkwSjFcebtrxCpeqbzkXnPJlRBEZOWTDJOWYtYxXcamGkVSCveRntOQvIfPefNBliMnpkEGmHLuVkrEjpVzWPfTAdgNmTyeMZAcPthungJmgvNYVksOOjHGbZMtkJbdUUUgcxHOtQXDzdtVJVmjYrXNxARkuBILflvBhjDlcCsGieHFeqQTicZCTQjGCmLMlwQJjfnmIsGjOXKjAnmpyCZUTTAdiKdXBTdwpyAvtTKpvivcLRfqsyTrFrBznWIYtaLuZGOnlozYkfSxxeFmgdXfibFKMbRkMdSCTxxZkvfnoMThYXpzKqlEVwKBNfYnEAMjWcSMzYORjfgAqKiozWEoqMHlKTSKWBUoDhWTOLMmwjNnzlAfdKCgLxxFBTUNQtiVViyOTLDjvdOpRUiQelVnlmOdYqwBLcMAaglHsJWweWoQknWmSFwYIfCLOQtpCywaKDGaRczJaEWbiRKzSXYTYeQuXyecOXBldagFYmWrHeSVgfllGJDStQMifJCQRkrUXsmXCAqoQujvLstRFaiLXvHMCkpQVcuqLJVnggKwRzalzqXLesEbZwuTEasqtGZOpebcZRiPcoecefKUQaRFxbShjMjrzEUWiuXtDmTGVfiPBrCxeUfpRFBOWeruUxsvHeJOxlouGmwPtPCwnqvQYFKKgOReLrHptmKQOoThJsrAAuIJGujReQlzZdTTvrCrmFyZPdklXxwjVWBSZaOzQaWqXJsKSqlmxXqfzmowzcRiNVTbxhxglgLHgsWDDkRqvLJcnZsnnfpJDeuQBJTDDsVRhapfEUeCxQufchCDQoQycHFoeanCDzxCIPhOtgXmYchJkUGBtmlITUeBTqMaunwWfiGpwOsjdFakWuHWSZevtZTwrwWOvumIVoAgjkTzRIAxHfVNEvLuphaCWLdqojIicRhdTOSgQuPOqImBNmxcgtQDZhSYiCYAGbkHXjULdzRatEpPBiHpqhXPpCBfcZLrCbrFyumsIIysYMfVhULQRvKFtsDxhzndeDHDOpWlboYNbJINgEPfWnTreHdFBVVOyYYTyilGxvLFhEjFDqYUgCwQVtMrSHqJGfkOprUAAZYWoCRMpWVuLRvTNuodNOiPqWJVyvZlnyQkBAqKZloNSiazMRkELoQaZpHcMjNrfZRsAnEiJzTUAAcnIyVYvaTiHvibolPSHaLbNaWvbZuDOCuyFSAEGvVftsWqMGZbVVOXvjOavowgtAjRbhdDhSZIDmXpbOrcfDrRcMwvDeanGLlGJvCVfloyxVMaTRZRFpqGVnZnaVazxwQaVjRhhaQWjzcLDrSJbRQpQshpkWSnZnjbJUhcqmopCqVmScmInHyQqSWanwYaNhIvMfjJgCsambXGAFbepccgvTHxeOXniKzbCPqhxhyPYwItDPfgcPKUzBWuOqLktFSBNnUURMfWiOeZiWEItcBetSlKenSExOeLffPZYkfuGHILhpZjiTEIneulNcvEnkoxrhYjHxvIGqwieKTCDovqKZdxgHYnXFWSWrIbglCvLrKKKouFTpmcfORhmpEXxHIBxuQmeVVjEONvjBYoBxqluBfXrjppzsfgoLZbifdbMNxbVWfPqRBgGJDYjYxxnpBtVmqNaOVTaOtUzsCOXAyPFBPZqEJJfNrrFBwZzndQBBAOqdJcLZOAGDAkWMvTnylwTvcFWvgSQYpUlzKIqEXsPVmJYXlOXfKadiURVMtqroRzHaCILhiTAAFOLkAlcdkuxxYuIrxvXJzAEMbaIrUMuMjpSLvkTxEkUCuNgzriiVAURgkqiYMffZtvWtmkiDpiaWNmwRlzjeIvpQkWeVuQrpfmhOmYCwGLRdzVoysNFszQQEvmtrRGtOaZHlWKfSwrGTloavaWVQuwJKgAWzmcPrZyAUhSgYbgEwSiieFAiEzakbslGZZfrQusPCkgWIfrnzUMhyJOxArPpJUNhdgSLPfxFmjuGkuOuDxIfBvSCTIsPaCAuZMoRfEgUwEQppsjfhIqYqmncYhhGlvFJqszwBgZGkWxkZCjjOdAqPVJtyptQVXXAcuYtdrxGVrkVuDTUUCvPrkgFJFMgBPquHnGYQvBPfwHviQBsDnzXrVwjNiTVtgXfAqrtMMIUGLbnCjAPNzReOhoBFWlsjeILJMseHRwNGriWLXTiIsqEJDfXcVuMjBIrceNhBwtFbvizvnFmeiyxUOuxWhJNpAdQZbBBTTsOMChtpTkTYiaDzDBwHPBGaGtjqhpNzTYWvKqJcNlPvDyhqoqfDIMJhYtufGtUgYKjJpYgyzzzFdLFgZvhzSDJnRbQQtYGywYfWEEfDlxFwDjWkEpwCAPtNiXWWWGwSYuUCoJKXrUJqIFFnvBSADjaqfjHsXmYehNanRurpAFvcoltCTGbueftwYvlDkwOeFWLwtAUBlhQpeLKzmAXHuwZOWmrNYUtYpvrefFzOyyfzURTigbbVpVcsgnvzkeBrXaaHssjuFikisydMvfyxTXHGqqmaLlZmmJqxjCinDhmNDWuJXvTdIJYWCfqxXkOCwpJbmNmLLLYvhhtFmyKbEuKqcMQjemohNmpLOATKKozANJoIJnvnSpyfZcGJYCNURPMBFEqxfUZhFJJIcIAzFsKQdcbylcuYslhKbNMgeqnswNTMtslacrIJopdJNemZTFJcvPmJKeYPkfVuXAaPguWjzxOmXYWveKhkVCXmYUBOUHqitabWWmkqFBsGIhbaciDBzbZzKhQaZgXfJKTSPNlZQkGJMaAPOaeEwwyBztTTBXRCYmjWsciYhSDSnCRooViayZnYUeSRSLatRvTjTyDhMZEXEWYpiJFsqbySAvppdxzNUeWluBGZQoxHkeKarRfgnBCKXbAkvehwVAjBoCIBDszzfeuLCNWtgtzoJMHUkvlvGSBqdQGDUJrMDhgQqZcuKJKtnSosDIUjUNtJgUSKHxjFOpGxMvimIAmrpdCNfIRXSSTCzafdzTVBRnIBdDBUGCfzIeRNfmNbCXDsKubBSwEkhQVDFiGDRpdawUWJDSWnAQLywopWuvmExYOyrPqoCDSslbrKFwhzofXxygvZmSlCddgITYNmtGGjZrCEhzfmznthbbdSxDTZQtrXugNbGMImitLmvsmFHcVivwabeizsLDstpgSfPHAZYOswXZmwISCUKnofkJzFVEYtiEEgEhFpXKiKuqKuilHAvFxVWioFcVDYExsmXgDhFCQKwIyDrZJqEAAxSYtrxmpMssBOWixzGViAclCxcNvQKZAWiFPKbGmHmZtCqZjvlellFjvMNPDPaMmzoxLpyUPwOazMEESbIVPZnpFzPJSNdrVDiPHiBCLetQUEgrkVWOrEuJbmqlVzZRMjlDPHQdMRhfXBHVdQxQJBjzlXIpsQeIedNiyRNWEhWpSRjPXtUapSvaFzIfkJAWjOTdxsJsMPXwUQtDrEDPkMeRnnFkRoIBXLEidgOfgnFhsheJKndcRLLxgvcOnnPleXDbISaXQVLrSlqOHDZKofucbcJxeqSonAyDoVVDwjSNOZOzlWVaJvgQaNmeOdHSsafmBBNAeYPRATVfLbPlpKvkScveAYismIwAgvNJqUYlhIEjmqIwXriBgoUzlnLWkZtssAyiSdRXtCGJciKXGdVsbKfnTlhnsAndCMKansxjNzpGOBJrkaKiEYeHTLdOokSSgNgNMvUWzLcKkIbDoIDVtAnEAxomilWPbdnTbsFZYEqQdobLEpLIQAPgeNeZjIvbhgkRROQhpLLyZjyhbGRKLYLoABLSaIBQaIyypcNrfmhmtkRGZQoKgXUJNZAEedANrIgNgXhzLOEICUHDnwpZkHQOLcBTeefhscAzZtgwgTldJSWCnrhJIMypuzdshoEqwFXRxFGektBxAGsVQhSNvJTDbYjhlVedBERvhmzjJLJMXSCRjVGRLcebiZzOKNCTDYZUHgASnLkaoQJreWlshEDJJgySAsHjKDivEuKTmyTlrpejZcQUwVhUjCZMzfQWnxQWfAcXTsbcwmGYSHUspZTDPgqvGPHbHfMcVFVnYlzaqmFDbmfKTOrECMHdutNApyxpFiDdWOlRzvFKkGXVUWghCvNPwrhIahzskMaaLnuEhKEwZsVsNZnnSTVnPRBcCljrdWxubPnEFBoufQhXgJvzWfmRqqHHvxgOHgbECLBOgqhXMoJQixDisSKjcbYkQpGsyWwTdjQHZaqrDusZvBnvOcUSscvifdSTNpNyDuLnfdBrirCItJSxmjcAuPVQAbTyArXQIMAkyfsJElKpjmyEOyNnvoTjMUjVQnxiBrOzmgEpeuUhfoDuGRaVAgGhJviuRCnWKZUPSjIBKPYeyjOLQCnFEdqWZBHdwTOFoDpkoCirmZYHsXHbtYairCYTYutlOrjLRkNzclwxuShDMUkwCWdHvgqJlTkfobvmYIjsSiIFqdZdBHjZcJZDjTeaxKGcwGTsFnILGVcGZnrYJtJLSwqgrNYkUlzOveTWDsGAQtMDYqcVogDQOvvSbELahbVuYabbyxMiqrLxysEGeyWFWDjKLBXsPMRsCFWXvawshXNiEyfHRbRFrNpCeUINfQuJGCFdXSIORumZwOIlRUHSJQQFeRLoqNYKPFbAOwSstjrGKMochIsDmHVttZyABtywJzLOpyAKqStBBMDBmRdCwTOXqVhCbzCewnHPuOaWDoHsZWrbsMrZcRZjNHaNapSnOEWwxfLsOIfrUZflbBjTRYcOPyOJKqcPcRwzwOKERpXLvKNWaHzAQahCWLGyotUuLvjaKrnCHjVmCstfeejAOgbDPpxKYTvZgaaJVmCrAycBfBFfGMukUPxltMuCWkKwSFoqGZuGMFaRwPGYKWDSXAawMniWtqnurUxBTHvJmvnretvpdsVHdwVumSMykFOxQJzFMCrXJGJFlAmmZOQTEXwNoKWcpmOeZXigCwwaxiWNifupmqPsotVpuBgKoKVJIyxQFcZJaJnQzviBJCkyeqcPaoEGwpAkWMhetjosqjPDMvOMZniREIOOeahbKghlSuFGyjPgITGmdjXQduBlqwRTQGFKTVRqktuaEfLhhszoEvNRnjfkBzTrRQwfNpGVbBROZHApqcKVbPUqYOvnsHXvRlazzwQlHpfbFzmuBSKYYxkibwMKBluTOobnMjzYjkAxNMFEICjBbDIcirDVhwHjwqniNYlAtyVADTDNNeUGsdqsJWPwmbLOnbtGXmTSKTuFaGISFSgnRIkuNvcpRADabbrAqMwlxmFQkyCaWaZivpCHesmTXhrURAXpVtiMaTicSCmbQDVIHLyxCjuZJjsSsvvbupCJTSpyTNHBTIUXowWJfAQzFDrixPVOLuMayVDhjaNvaLeOUfSOEnJcGnpHYAzjdGcOVsWVpQaJEVybvPshBSdWIWuFWBYKZBXLRYDxjMjQsTGjUFHonSDKUySxkQQKSkwqSQZSkFczjcGxwNvhIlmArzXeipWQqcZPFRzpbzzMqgZxbsJnyCECDUssVsroZLoNXBbstxTAwwqjcGBPZMLvWuYEmmioXqVFQXRjzQuCmeLgubHTVjFBsQfPWRCIKfudhlJlLRylOHonyICEePRHNNKbknicVvFVKqhUKOGpWKGoxsOWDjDzXWrKhxRoEWDVJQtICTtnyYQodLqOBHXaMHtHwCcHkpuzhDMuyKDTtNJCPBeQIYGvxuTrFOMEIWgowOAcyLiNUrfmpvKKYnNnQnVAJBfFWBPvwGCnhTzoLPkstKzYgWnRdtzqKTWwcOnLAuPWpMLgLgjdFqqzsEzDJsMVdPRvbTGArRDqjtRAGtBRIhtRXQeZtxNzzlzDaNClyQzdKcDHhAePKrembgucOiaaICEYXnDtutqKZPMlLwOFufmLvDvAHJIhlnWbheDFKzupfiNuCvkSKGCeQNLEGpJXVGwVtWpXwNUvKIQSTAOdhMiQzyoAeqTmpqBabdNJaKlHMJQKGYQthNKoLmuIfBveKGGsTJboHrKiXHGXUGoQHMkQfVSKvYdQwslFiWlTLaoFCdytIuIVFcEjabtvhwqvsBRLiAXEmNPkEdRtKMMFYiFEOOlOwYhZFSmazTAYRGXOjQjeuIQinvLXOYpjZCQj
+ connection:
+ isAutorun: 1
+ IP: 127.0.0.1
+ IPHeader: '>tcp://127.0.0.1:'
+ PORT: 50020
+ subport: 49778
+ isLocal: 1
+ topicList:
+ - gaze
+ - pupil.
+ pupilServiceApp:
+ servicePath: C:/Program Files/Pupil Service/pupil_service.exe
+ calibration:
+ initialized: 0
+ customGUIVariables:
+ tabs:
+ mainTab: 1
+ bools:
+ isAdvanced: 1
+ debugView:
+ active: 0
+ framePublishing:
+ targetFPS: 20
+ eye0Image: {fileID: 0}
+ eye1Image: {fileID: 0}
+ raw0:
+ raw1:
+ StreamCameraImages: 0
+ eye0ImageMaterial: {fileID: 0}
+ eye1ImageMaterial: {fileID: 0}
+ visualizeGaze: 1
+ GUIStyles:
+ - m_Name: Pupil Labs Logo
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Border:
+ m_Left: 458
+ m_Right: 0
+ m_Top: 249
+ m_Bottom: 182
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 93
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 1
+ m_FontStyle: 0
+ m_Alignment: 4
+ m_WordWrap: 0
+ m_RichText: 0
+ m_TextClipping: 0
+ m_ImagePosition: 2
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 1
+ - m_Name: Connect text
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 10
+ m_FontStyle: 0
+ m_Alignment: 3
+ m_WordWrap: 1
+ m_RichText: 1
+ m_TextClipping: 0
+ m_ImagePosition: 3
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 1
+ - m_Name: Eye Icons
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 0
+ m_FontStyle: 0
+ m_Alignment: 5
+ m_WordWrap: 0
+ m_RichText: 0
+ m_TextClipping: 0
+ m_ImagePosition: 2
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 1
+ m_StretchHeight: 0
+ - m_Name:
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 12
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 0
+ m_TextClipping: 0
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 0
+ m_StretchHeight: 0
+ - m_Name:
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 12
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 0
+ m_TextClipping: 0
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 0
+ m_StretchHeight: 0
+ - m_Name:
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 12
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 0
+ m_TextClipping: 0
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 0
+ m_StretchHeight: 0
+ - m_Name:
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 12
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 0
+ m_TextClipping: 0
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 0
+ m_StretchHeight: 0
+ - m_Name:
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 12
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 0
+ m_TextClipping: 0
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 0
+ m_StretchHeight: 0
+ - m_Name:
+ m_Normal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 1}
+ m_Hover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Active:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Focused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnNormal:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnHover:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnActive:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_OnFocused:
+ m_Background: {fileID: 0}
+ m_ScaledBackgrounds: []
+ m_TextColor: {r: 0, g: 0, b: 0, a: 0}
+ m_Border:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Margin:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Padding:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Overflow:
+ m_Left: 0
+ m_Right: 0
+ m_Top: 0
+ m_Bottom: 0
+ m_Font: {fileID: 0}
+ m_FontSize: 12
+ m_FontStyle: 0
+ m_Alignment: 0
+ m_WordWrap: 0
+ m_RichText: 0
+ m_TextClipping: 0
+ m_ImagePosition: 0
+ m_ContentOffset: {x: 0, y: 0}
+ m_FixedWidth: 0
+ m_FixedHeight: 0
+ m_StretchWidth: 0
+ m_StretchHeight: 0
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilSettings.asset.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilSettings.asset.meta
new file mode 100644
index 00000000..d4387a34
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/PupilSettings.asset.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 19e52fef3bed37e4f9089d08d7c1773e
+timeCreated: 1497029004
+licenseType: Free
+NativeFormatImporter:
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/RecordTexture.renderTexture b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/RecordTexture.renderTexture
new file mode 100644
index 00000000..ca974416
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/RecordTexture.renderTexture
@@ -0,0 +1,29 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!84 &8400000
+RenderTexture:
+ m_ObjectHideFlags: 0
+ m_PrefabParentObject: {fileID: 0}
+ m_PrefabInternal: {fileID: 0}
+ m_Name: RecordTexture
+ m_ImageContentsHash:
+ serializedVersion: 2
+ Hash: 00000000000000000000000000000000
+ m_Width: 256
+ m_Height: 256
+ m_AntiAliasing: 1
+ m_DepthFormat: 2
+ m_ColorFormat: 0
+ m_MipMap: 0
+ m_GenerateMips: 1
+ m_SRGB: 0
+ m_TextureSettings:
+ serializedVersion: 2
+ m_FilterMode: 1
+ m_Aniso: 0
+ m_MipBias: 0
+ m_WrapU: 1
+ m_WrapV: 1
+ m_WrapW: 1
+ m_Dimension: 2
+ m_VolumeDepth: 1
diff --git a/unity_pupil_plugin/Assets/Resources/RecordTexture.renderTexture.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/RecordTexture.renderTexture.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/RecordTexture.renderTexture.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/RecordTexture.renderTexture.meta
diff --git a/unity_pupil_plugin/Assets/Resources/convergence-medium-1024x768.jpg b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/convergence-medium-1024x768.jpg
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/convergence-medium-1024x768.jpg
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/convergence-medium-1024x768.jpg
diff --git a/unity_pupil_plugin/Assets/Resources/convergence-medium-1024x768.jpg.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/convergence-medium-1024x768.jpg.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/convergence-medium-1024x768.jpg.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/convergence-medium-1024x768.jpg.meta
diff --git a/unity_pupil_plugin/Assets/Resources/eye.png b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/eye.png
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/eye.png
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/eye.png
diff --git a/unity_pupil_plugin/Assets/Resources/eye.png.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/eye.png.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/eye.png.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/eye.png.meta
diff --git a/unity_pupil_plugin/Assets/Resources/pupil_labs_logotype.png b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/pupil_labs_logotype.png
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/pupil_labs_logotype.png
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/pupil_labs_logotype.png
diff --git a/unity_pupil_plugin/Assets/Resources/pupil_labs_logotype.png.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/pupil_labs_logotype.png.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/pupil_labs_logotype.png.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/pupil_labs_logotype.png.meta
diff --git a/unity_pupil_plugin/Assets/Resources/rec.png b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/rec.png
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/rec.png
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/rec.png
diff --git a/unity_pupil_plugin/Assets/Resources/rec.png.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/rec.png.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/rec.png.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/rec.png.meta
diff --git a/unity_pupil_plugin/Assets/Resources/recorder_bck.png b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/recorder_bck.png
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/recorder_bck.png
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/recorder_bck.png
diff --git a/unity_pupil_plugin/Assets/Resources/recorder_bck.png.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Resources/recorder_bck.png.meta
similarity index 100%
rename from unity_pupil_plugin/Assets/Resources/recorder_bck.png.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Resources/recorder_bck.png.meta
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts.meta
new file mode 100644
index 00000000..b757695d
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 47e3733bcb41bfa49b88f9e068e01e40
+folderAsset: yes
+timeCreated: 1507126444
+licenseType: Free
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/CalibrationDemo.cs b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/CalibrationDemo.cs
new file mode 100644
index 00000000..ec6bd82b
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/CalibrationDemo.cs
@@ -0,0 +1,23 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class CalibrationDemo : MonoBehaviour
+{
+ void OnEnable()
+ {
+ if (PupilSettings.Instance.connection.isConnected)
+ {
+ PupilGazeTracker.Instance.StartVisualizingGaze ();
+ print ("We are gazing");
+ }
+ }
+ void OnDisable()
+ {
+ if (PupilSettings.Instance.connection.isConnected && PupilSettings.Instance.dataProcess.state == PupilSettings.EStatus.ProcessingGaze)
+ {
+ PupilGazeTracker.Instance.StopVisualizingGaze ();
+ print ("We stopped gazing");
+ }
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/CalibrationDemo.cs.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/CalibrationDemo.cs.meta
new file mode 100644
index 00000000..f1c15ffa
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/CalibrationDemo.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: c2f0a0cc2a470c9489642b0aa47db38a
+timeCreated: 1507192136
+licenseType: Free
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/unity_pupil_plugin/Assets/FFmpegOut/Internal/Shader.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack.meta
similarity index 67%
rename from unity_pupil_plugin/Assets/FFmpegOut/Internal/Shader.meta
rename to dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack.meta
index 95570368..53acfe04 100644
--- a/unity_pupil_plugin/Assets/FFmpegOut/Internal/Shader.meta
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack.meta
@@ -1,7 +1,7 @@
fileFormatVersion: 2
-guid: 94d51138e9973da439cac668b0a35d72
+guid: 9d38f752c6f5c12408d9b2382535de58
folderAsset: yes
-timeCreated: 1488902130
+timeCreated: 1487501809
licenseType: Pro
DefaultImporter:
userData:
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/Attributes.cs b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/Attributes.cs
new file mode 100644
index 00000000..79051f79
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/Attributes.cs
@@ -0,0 +1,76 @@
+using System;
+
+namespace MessagePack
+{
+ [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = false, Inherited = true)]
+ public class MessagePackObjectAttribute : Attribute
+ {
+ public bool KeyAsPropertyName { get; private set; }
+
+ public MessagePackObjectAttribute(bool keyAsPropertyName = false)
+ {
+ this.KeyAsPropertyName = keyAsPropertyName;
+ }
+ }
+
+ [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
+ public class KeyAttribute : Attribute
+ {
+ public int? IntKey { get; private set; }
+ public string StringKey { get; private set; }
+
+ public KeyAttribute(int x)
+ {
+ this.IntKey = x;
+ }
+
+ public KeyAttribute(string x)
+ {
+ this.StringKey = x;
+ }
+ }
+
+ [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
+ public class IgnoreMemberAttribute : Attribute
+ {
+ }
+
+ [AttributeUsage(AttributeTargets.Interface | AttributeTargets.Class, AllowMultiple = true, Inherited = false)]
+ public class UnionAttribute : Attribute
+ {
+ public int Key { get; private set; }
+ public Type SubType { get; private set; }
+
+ public UnionAttribute(int key, Type subType)
+ {
+ this.Key = key;
+ this.SubType = subType;
+ }
+ }
+
+ [AttributeUsage(AttributeTargets.Constructor, AllowMultiple = false, Inherited = true)]
+ public class SerializationConstructorAttribute : Attribute
+ {
+
+ }
+
+
+ // [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface | AttributeTargets.Enum | AttributeTargets.Field | AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
+ [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface | AttributeTargets.Enum, AllowMultiple = false, Inherited = true)]
+ public class MessagePackFormatterAttribute : Attribute
+ {
+ public Type FormatterType { get; private set; }
+ public object[] Arguments { get; private set; }
+
+ public MessagePackFormatterAttribute(Type formatterType)
+ {
+ this.FormatterType = formatterType;
+ }
+
+ public MessagePackFormatterAttribute(Type formatterType, params object[] arguments)
+ {
+ this.FormatterType = formatterType;
+ this.Arguments = arguments;
+ }
+ }
+}
\ No newline at end of file
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/Attributes.cs.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/Attributes.cs.meta
new file mode 100644
index 00000000..17e54b62
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/Attributes.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 2c523d28e0e7e4f44842116a01f36ae3
+timeCreated: 1489131596
+licenseType: Pro
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/FloatBits.cs b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/FloatBits.cs
new file mode 100644
index 00000000..46dee4dd
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/FloatBits.cs
@@ -0,0 +1,118 @@
+using System;
+using System.Runtime.InteropServices;
+
+namespace MessagePack
+{
+ // safe accessor of Single/Double's underlying byte.
+ // This code is borrowed from MsgPack-Cli https://github.com/msgpack/msgpack-cli
+
+ [StructLayout(LayoutKind.Explicit)]
+ internal struct Float32Bits
+ {
+ [FieldOffset(0)]
+ public readonly float Value;
+
+ [FieldOffset(0)]
+ public readonly Byte Byte0;
+
+ [FieldOffset(1)]
+ public readonly Byte Byte1;
+
+ [FieldOffset(2)]
+ public readonly Byte Byte2;
+
+ [FieldOffset(3)]
+ public readonly Byte Byte3;
+
+ public Float32Bits(float value)
+ {
+ this = default(Float32Bits);
+ this.Value = value;
+ }
+
+ public Float32Bits(byte[] bigEndianBytes, int offset)
+ {
+ this = default(Float32Bits);
+
+ if (BitConverter.IsLittleEndian)
+ {
+ this.Byte0 = bigEndianBytes[offset + 3];
+ this.Byte1 = bigEndianBytes[offset + 2];
+ this.Byte2 = bigEndianBytes[offset + 1];
+ this.Byte3 = bigEndianBytes[offset];
+ }
+ else
+ {
+ this.Byte0 = bigEndianBytes[offset];
+ this.Byte1 = bigEndianBytes[offset + 1];
+ this.Byte2 = bigEndianBytes[offset + 2];
+ this.Byte3 = bigEndianBytes[offset + 3];
+ }
+ }
+ }
+
+ [StructLayout(LayoutKind.Explicit)]
+ internal struct Float64Bits
+ {
+ [FieldOffset(0)]
+ public readonly double Value;
+
+ [FieldOffset(0)]
+ public readonly Byte Byte0;
+
+ [FieldOffset(1)]
+ public readonly Byte Byte1;
+
+ [FieldOffset(2)]
+ public readonly Byte Byte2;
+
+ [FieldOffset(3)]
+ public readonly Byte Byte3;
+
+ [FieldOffset(4)]
+ public readonly Byte Byte4;
+
+ [FieldOffset(5)]
+ public readonly Byte Byte5;
+
+ [FieldOffset(6)]
+ public readonly Byte Byte6;
+
+ [FieldOffset(7)]
+ public readonly Byte Byte7;
+
+ public Float64Bits(double value)
+ {
+ this = default(Float64Bits);
+ this.Value = value;
+ }
+
+ public Float64Bits(byte[] bigEndianBytes, int offset)
+ {
+ this = default(Float64Bits);
+
+ if (BitConverter.IsLittleEndian)
+ {
+ this.Byte0 = bigEndianBytes[offset + 7];
+ this.Byte1 = bigEndianBytes[offset + 6];
+ this.Byte2 = bigEndianBytes[offset + 5];
+ this.Byte3 = bigEndianBytes[offset + 4];
+ this.Byte4 = bigEndianBytes[offset + 3];
+ this.Byte5 = bigEndianBytes[offset + 2];
+ this.Byte6 = bigEndianBytes[offset + 1];
+ this.Byte7 = bigEndianBytes[offset];
+ }
+ else
+ {
+ this.Byte0 = bigEndianBytes[offset];
+ this.Byte1 = bigEndianBytes[offset + 1];
+ this.Byte2 = bigEndianBytes[offset + 2];
+ this.Byte3 = bigEndianBytes[offset + 3];
+ this.Byte4 = bigEndianBytes[offset + 4];
+ this.Byte5 = bigEndianBytes[offset + 5];
+ this.Byte6 = bigEndianBytes[offset + 6];
+ this.Byte7 = bigEndianBytes[offset + 7];
+ }
+ }
+ }
+}
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/FloatBits.cs.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/FloatBits.cs.meta
new file mode 100644
index 00000000..0771c230
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/FloatBits.cs.meta
@@ -0,0 +1,12 @@
+fileFormatVersion: 2
+guid: 345a76b4016103543ab8445c750365c4
+timeCreated: 1489131596
+licenseType: Pro
+MonoImporter:
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/Formatters.meta b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/Formatters.meta
new file mode 100644
index 00000000..bdf35e03
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/Formatters.meta
@@ -0,0 +1,9 @@
+fileFormatVersion: 2
+guid: 419e470fd6919bd468e25bcf581e081b
+folderAsset: yes
+timeCreated: 1487501809
+licenseType: Pro
+DefaultImporter:
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/Formatters/CollectionFormatter.cs b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/Formatters/CollectionFormatter.cs
new file mode 100644
index 00000000..0dc6bd55
--- /dev/null
+++ b/dev_Refactor-and-demos/Assets/pupil_plugin/Scripts/MessagePack/Formatters/CollectionFormatter.cs
@@ -0,0 +1,1072 @@
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.Linq;
+
+#if NETSTANDARD1_4
+using System.Collections.Concurrent;
+#endif
+
+namespace MessagePack.Formatters
+{
+ public sealed class ArrayFormatter : IMessagePackFormatter
+ {
+ public int Serialize(ref byte[] bytes, int offset, T[] value, IFormatterResolver formatterResolver)
+ {
+ if (value == null)
+ {
+ return MessagePackBinary.WriteNil(ref bytes, offset);
+ }
+ else
+ {
+ var startOffset = offset;
+ var formatter = formatterResolver.GetFormatterWithVerify();
+
+ offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, value.Length);
+
+ for (int i = 0; i < value.Length; i++)
+ {
+ offset += formatter.Serialize(ref bytes, offset, value[i], formatterResolver);
+ }
+
+ return offset - startOffset;
+ }
+ }
+
+ public T[] Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
+ {
+ if (MessagePackBinary.IsNil(bytes, offset))
+ {
+ readSize = 1;
+ return null;
+ }
+ else
+ {
+ var startOffset = offset;
+ var formatter = formatterResolver.GetFormatterWithVerify();
+
+ var len = MessagePackBinary.ReadArrayHeader(bytes, offset, out readSize);
+ offset += readSize;
+ var array = new T[len];
+ for (int i = 0; i < array.Length; i++)
+ {
+ array[i] = formatter.Deserialize(bytes, offset, formatterResolver, out readSize);
+ offset += readSize;
+ }
+ readSize = offset - startOffset;
+ return array;
+ }
+ }
+ }
+
+ public sealed class ByteArraySegmentFormatter : IMessagePackFormatter>
+ {
+ public static readonly ByteArraySegmentFormatter Instance = new ByteArraySegmentFormatter();
+
+ ByteArraySegmentFormatter()
+ {
+
+ }
+
+ public int Serialize(ref byte[] bytes, int offset, ArraySegment value, IFormatterResolver formatterResolver)
+ {
+ if (value.Array == null)
+ {
+ return MessagePackBinary.WriteNil(ref bytes, offset);
+ }
+ else
+ {
+ return MessagePackBinary.WriteBytes(ref bytes, offset, value.Array, value.Offset, value.Count);
+ }
+ }
+
+ public ArraySegment Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
+ {
+ if (MessagePackBinary.IsNil(bytes, offset))
+ {
+ readSize = 1;
+ return default(ArraySegment);
+ }
+ else
+ {
+ // use ReadBytesSegment? But currently straem api uses memory pool so can't save arraysegment...
+ var binary = MessagePackBinary.ReadBytes(bytes, offset, out readSize);
+ return new ArraySegment(binary, 0, binary.Length);
+ }
+ }
+ }
+
+ public sealed class ArraySegmentFormatter : IMessagePackFormatter>
+ {
+ public int Serialize(ref byte[] bytes, int offset, ArraySegment value, IFormatterResolver formatterResolver)
+ {
+ if (value.Array == null)
+ {
+ return MessagePackBinary.WriteNil(ref bytes, offset);
+ }
+ else
+ {
+ var startOffset = offset;
+ var formatter = formatterResolver.GetFormatterWithVerify();
+
+ offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, value.Count);
+
+ var array = value.Array;
+ for (int i = 0; i < value.Count; i++)
+ {
+ var item = array[value.Offset + i];
+ offset += formatter.Serialize(ref bytes, offset, item, formatterResolver);
+ }
+
+ return offset - startOffset;
+ }
+ }
+
+ public ArraySegment Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
+ {
+ if (MessagePackBinary.IsNil(bytes, offset))
+ {
+ readSize = 1;
+ return default(ArraySegment);
+ }
+ else
+ {
+ var array = formatterResolver.GetFormatterWithVerify().Deserialize(bytes, offset, formatterResolver, out readSize);
+ return new ArraySegment(array, 0, array.Length);
+ }
+ }
+ }
+
+ // List is popular format, should avoid abstraction.
+ public sealed class ListFormatter : IMessagePackFormatter>
+ {
+ public int Serialize(ref byte[] bytes, int offset, List value, IFormatterResolver formatterResolver)
+ {
+ if (value == null)
+ {
+ return MessagePackBinary.WriteNil(ref bytes, offset);
+ }
+ else
+ {
+ var startOffset = offset;
+ var formatter = formatterResolver.GetFormatterWithVerify();
+
+ var c = value.Count;
+ offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, c);
+
+ for (int i = 0; i < c; i++)
+ {
+ offset += formatter.Serialize(ref bytes, offset, value[i], formatterResolver);
+ }
+
+ return offset - startOffset;
+ }
+ }
+
+ public List Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
+ {
+ if (MessagePackBinary.IsNil(bytes, offset))
+ {
+ readSize = 1;
+ return null;
+ }
+ else
+ {
+ var startOffset = offset;
+ var formatter = formatterResolver.GetFormatterWithVerify();
+
+ var len = MessagePackBinary.ReadArrayHeader(bytes, offset, out readSize);
+ offset += readSize;
+ var list = new List(len);
+ for (int i = 0; i < len; i++)
+ {
+ list.Add(formatter.Deserialize(bytes, offset, formatterResolver, out readSize));
+ offset += readSize;
+ }
+ readSize = offset - startOffset;
+ return list;
+ }
+ }
+ }
+
+ public abstract class CollectionFormatterBase : IMessagePackFormatter
+ where TCollection : IEnumerable
+ where TEnumerator : IEnumerator
+ {
+ public int Serialize(ref byte[] bytes, int offset, TCollection value, IFormatterResolver formatterResolver)
+ {
+ if (value == null)
+ {
+ return MessagePackBinary.WriteNil(ref bytes, offset);
+ }
+ else
+ {
+ // Optimize iteration(array is fastest)
+ var array = value as TElement[];
+ if (array != null)
+ {
+ var startOffset = offset;
+ var formatter = formatterResolver.GetFormatterWithVerify();
+
+ offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, array.Length);
+
+ foreach (var item in array)
+ {
+ offset += formatter.Serialize(ref bytes, offset, item, formatterResolver);
+ }
+
+ return offset - startOffset;
+ }
+ else
+ {
+ var startOffset = offset;
+ var formatter = formatterResolver.GetFormatterWithVerify();
+
+ // knows count or not.
+ var seqCount = GetCount(value);
+ if (seqCount != null)
+ {
+ offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, seqCount.Value);
+
+ // Unity's foreach struct enumerator causes boxing so iterate manually.
+ var e = GetSourceEnumerator(value);
+ try
+ {
+ while (e.MoveNext())
+ {
+#if NETSTANDARD1_4
+ offset += formatter.Serialize(ref bytes, offset, e.Current, formatterResolver);
+#else
+ offset += formatter.Serialize(ref bytes, (int)offset, (TElement)e.Current, (IFormatterResolver)formatterResolver);
+#endif
+ }
+ }
+ finally
+ {
+ e.Dispose();
+ }
+
+ return offset - startOffset;
+ }
+ else
+ {
+ // write message first -> open header space -> write header
+ var writeStarOffset = offset;
+
+ var count = 0;
+ var moveCount = 0;
+
+ // count = 16 <= 65535, header len is "3" so choose default space.
+ offset += 3;
+
+ var e = GetSourceEnumerator(value);
+ try
+ {
+ while (e.MoveNext())
+ {
+ count++;
+#if NETSTANDARD1_4
+ var writeSize = formatter.Serialize(ref bytes, offset, e.Current, formatterResolver);
+#else
+ var writeSize = formatter.Serialize(ref bytes, (int)offset, (TElement)e.Current, (IFormatterResolver)formatterResolver);
+#endif
+ moveCount += writeSize;
+ offset += writeSize;
+ }
+ }
+ finally
+ {
+ e.Dispose();
+ }
+
+ var headerLength = MessagePackBinary.GetArrayHeaderLength(count);
+ if (headerLength != 3)
+ {
+ if (headerLength == 1) offset -= 2; // 1
+ else offset += 2; // 5
+
+ MessagePackBinary.EnsureCapacity(ref bytes, offset, headerLength);
+ Buffer.BlockCopy(bytes, writeStarOffset + 3, bytes, writeStarOffset + headerLength, moveCount);
+ }
+ MessagePackBinary.WriteArrayHeader(ref bytes, writeStarOffset, count);
+
+ return offset - startOffset;
+ }
+ }
+ }
+ }
+
+ public TCollection Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
+ {
+ if (MessagePackBinary.IsNil(bytes, offset))
+ {
+ readSize = 1;
+ return default(TCollection);
+ }
+ else
+ {
+ var startOffset = offset;
+ var formatter = formatterResolver.GetFormatterWithVerify();
+
+ var len = MessagePackBinary.ReadArrayHeader(bytes, offset, out readSize);
+ offset += readSize;
+
+ var list = Create(len);
+ for (int i = 0; i < len; i++)
+ {
+ Add(list, i, formatter.Deserialize(bytes, offset, formatterResolver, out readSize));
+ offset += readSize;
+ }
+ readSize = offset - startOffset;
+
+ return Complete(list);
+ }
+ }
+
+ // abstraction for serialize
+ protected virtual int? GetCount(TCollection sequence)
+ {
+ var collection = sequence as ICollection;
+ if (collection != null)
+ {
+ return collection.Count;
+ }
+#if NETSTANDARD1_4
+ else
+ {
+ var c2 = sequence as IReadOnlyCollection;
+ if (c2 != null)
+ {
+ return c2.Count;
+ }
+ }
+#endif
+
+ return null;
+ }
+
+ // Some collections can use struct iterator, this is optimization path
+ protected abstract TEnumerator GetSourceEnumerator(TCollection source);
+
+ // abstraction for deserialize
+ protected abstract TIntermediate Create(int count);
+ protected abstract void Add(TIntermediate collection, int index, TElement value);
+ protected abstract TCollection Complete(TIntermediate intermediateCollection);
+ }
+
+ public abstract class CollectionFormatterBase : CollectionFormatterBase, TCollection>
+ where TCollection : IEnumerable
+ {
+ protected override IEnumerator GetSourceEnumerator(TCollection source)
+ {
+ return source.GetEnumerator();
+ }
+ }
+
+ public abstract class CollectionFormatterBase : CollectionFormatterBase
+ where TCollection : IEnumerable
+ {
+ protected sealed override TCollection Complete(TCollection intermediateCollection)
+ {
+ return intermediateCollection;
+ }
+ }
+
+ public sealed class GenericCollectionFormatter : CollectionFormatterBase
+ where TCollection : ICollection, new()
+ {
+ protected override TCollection Create(int count)
+ {
+ return new TCollection();
+ }
+
+ protected override void Add(TCollection collection, int index, TElement value)
+ {
+ collection.Add(value);
+ }
+ }
+
+ public sealed class LinkedListFormatter : CollectionFormatterBase, LinkedList.Enumerator, LinkedList>
+ {
+ protected override void Add(LinkedList collection, int index, T value)
+ {
+ collection.AddLast(value);
+ }
+
+ protected override LinkedList Complete(LinkedList intermediateCollection)
+ {
+ return intermediateCollection;
+ }
+
+ protected override LinkedList Create(int count)
+ {
+ return new LinkedList();
+ }
+
+ protected override LinkedList.Enumerator GetSourceEnumerator(LinkedList source)
+ {
+ return source.GetEnumerator();
+ }
+ }
+
+ public sealed class QeueueFormatter : CollectionFormatterBase, Queue.Enumerator, Queue>
+ {
+ protected override int? GetCount(Queue sequence)
+ {
+ return sequence.Count;
+ }
+
+ protected override void Add(Queue collection, int index, T value)
+ {
+ collection.Enqueue(value);
+ }
+
+ protected override Queue Create(int count)
+ {
+ return new Queue(count);
+ }
+
+ protected override Queue.Enumerator GetSourceEnumerator(Queue source)
+ {
+ return source.GetEnumerator();
+ }
+
+ protected override Queue Complete(Queue intermediateCollection)
+ {
+ return intermediateCollection;
+ }
+ }
+
+ // should deserialize reverse order.
+ public sealed class StackFormatter : CollectionFormatterBase.Enumerator, Stack>
+ {
+ protected override int? GetCount(Stack sequence)
+ {
+ return sequence.Count;
+ }
+
+ protected override void Add(T[] collection, int index, T value)
+ {
+ // add reverse
+ collection[collection.Length - 1 - index] = value;
+ }
+
+ protected override T[] Create(int count)
+ {
+ return new T[count];
+ }
+
+ protected override Stack.Enumerator GetSourceEnumerator(Stack source)
+ {
+ return source.GetEnumerator();
+ }
+
+ protected override Stack Complete(T[] intermediateCollection)
+ {
+ return new Stack(intermediateCollection);
+ }
+ }
+
+ public sealed class HashSetFormatter : CollectionFormatterBase, HashSet.Enumerator, HashSet>
+ {
+ protected override int? GetCount(HashSet sequence)
+ {
+ return sequence.Count;
+ }
+
+ protected override void Add(HashSet collection, int index, T value)
+ {
+ collection.Add(value);
+ }
+
+ protected override HashSet Complete(HashSet intermediateCollection)
+ {
+ return intermediateCollection;
+ }
+
+ protected override HashSet Create(int count)
+ {
+ return new HashSet();
+ }
+
+ protected override HashSet.Enumerator GetSourceEnumerator(HashSet source)
+ {
+ return source.GetEnumerator();
+ }
+ }
+
+ public sealed class ReadOnlyCollectionFormatter : CollectionFormatterBase>
+ {
+ protected override void Add(T[] collection, int index, T value)
+ {
+ collection[index] = value;
+ }
+
+ protected override ReadOnlyCollection Complete(T[] intermediateCollection)
+ {
+ return new ReadOnlyCollection(intermediateCollection);
+ }
+
+ protected override T[] Create(int count)
+ {
+ return new T[count];
+ }
+ }
+
+ public sealed class InterfaceListFormatter : CollectionFormatterBase>
+ {
+ protected override void Add(T[] collection, int index, T value)
+ {
+ collection[index] = value;
+ }
+
+ protected override T[] Create(int count)
+ {
+ return new T[count];
+ }
+
+ protected override IList Complete(T[] intermediateCollection)
+ {
+ return intermediateCollection;
+ }
+ }
+
+ public sealed class InterfaceCollectionFormatter : CollectionFormatterBase>
+ {
+ protected override void Add(T[] collection, int index, T value)
+ {
+ collection[index] = value;
+ }
+
+ protected override T[] Create(int count)
+ {
+ return new T[count];
+ }
+
+ protected override ICollection Complete(T[] intermediateCollection)
+ {
+ return intermediateCollection;
+ }
+ }
+
+ public sealed class InterfaceEnumerableFormatter : CollectionFormatterBase>
+ {
+ protected override void Add(T[] collection, int index, T value)
+ {
+ collection[index] = value;
+ }
+
+ protected override T[] Create(int count)
+ {
+ return new T[count];
+ }
+
+ protected override IEnumerable Complete(T[] intermediateCollection)
+ {
+ return intermediateCollection;
+ }
+ }
+
+ // [Key, [Array]]
+ public sealed class InterfaceGroupingFormatter : IMessagePackFormatter>
+ {
+ public int Serialize(ref byte[] bytes, int offset, IGrouping value, IFormatterResolver formatterResolver)
+ {
+ if (value == null)
+ {
+ return MessagePackBinary.WriteNil(ref bytes, offset);
+ }
+ else
+ {
+ var startOffset = offset;
+ offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, 2);
+ offset += formatterResolver.GetFormatterWithVerify().Serialize(ref bytes, offset, value.Key, formatterResolver);
+ offset += formatterResolver.GetFormatterWithVerify>().Serialize(ref bytes, offset, value, formatterResolver);
+ return offset - startOffset;
+ }
+ }
+
+ public IGrouping Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
+ {
+ if (MessagePackBinary.IsNil(bytes, offset))
+ {
+ readSize = 1;
+ return null;
+ }
+ else
+ {
+ var startOffset = offset;
+ var count = MessagePackBinary.ReadArrayHeader(bytes, offset, out readSize);
+ offset += readSize;
+
+ if (count != 2) throw new InvalidOperationException("Invalid Grouping format.");
+
+ var key = formatterResolver.GetFormatterWithVerify().Deserialize(bytes, offset, formatterResolver, out readSize);
+ offset += readSize;
+
+ var value = formatterResolver.GetFormatterWithVerify>().Deserialize(bytes, offset, formatterResolver, out readSize);
+ offset += readSize;
+
+ readSize = offset - startOffset;
+ return new Grouping(key, value);
+ }
+ }
+ }
+
+ public sealed class InterfaceLookupFormatter : CollectionFormatterBase, Dictionary>, ILookup>
+ {
+ protected override void Add(Dictionary> collection, int index, IGrouping value)
+ {
+ collection.Add(value.Key, value);
+ }
+
+ protected override ILookup Complete(Dictionary> intermediateCollection)
+ {
+ return new Lookup(intermediateCollection);
+ }
+
+ protected override Dictionary> Create(int count)
+ {
+ return new Dictionary>(count);
+ }
+ }
+
+ class Grouping : IGrouping
+ {
+ readonly TKey key;
+ readonly IEnumerable elements;
+
+ public Grouping(TKey key, IEnumerable elements)
+ {
+ this.key = key;
+ this.elements = elements;
+ }
+
+ public TKey Key
+ {
+ get
+ {
+ return key;
+ }
+ }
+
+ public IEnumerator GetEnumerator()
+ {
+ return elements.GetEnumerator();
+ }
+
+ IEnumerator IEnumerable.GetEnumerator()
+ {
+ return elements.GetEnumerator();
+ }
+ }
+
+ class Lookup : ILookup
+ {
+ readonly Dictionary> groupings;
+
+ public Lookup(Dictionary> groupings)
+ {
+ this.groupings = groupings;
+ }
+
+ public IEnumerable this[TKey key]
+ {
+ get
+ {
+ return groupings[key];
+ }
+ }
+
+ public int Count
+ {
+ get
+ {
+ return groupings.Count;
+ }
+ }
+
+ public bool Contains(TKey key)
+ {
+ return groupings.ContainsKey(key);
+ }
+
+ public IEnumerator> GetEnumerator()
+ {
+ return groupings.Values.GetEnumerator();
+ }
+
+ IEnumerator IEnumerable.GetEnumerator()
+ {
+ return groupings.Values.GetEnumerator();
+ }
+ }
+
+ // NonGenerics
+
+ public sealed class NonGenericListFormatter : IMessagePackFormatter
+ where T : class, IList, new()
+ {
+ public int Serialize(ref byte[] bytes, int offset, T value, IFormatterResolver formatterResolver)
+ {
+ if (value == null)
+ {
+ MessagePackBinary.WriteNil(ref bytes, offset);
+ return 1;
+ }
+
+ var formatter = formatterResolver.GetFormatterWithVerify();
+ var startOffset = offset;
+
+ offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, value.Count);
+ foreach (var item in value)
+ {
+ offset += formatter.Serialize(ref bytes, offset, item, formatterResolver);
+ }
+
+ return offset - startOffset;
+ }
+
+ public T Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
+ {
+ if (MessagePackBinary.IsNil(bytes, offset))
+ {
+ readSize = 1;
+ return default(T);
+ }
+
+ var formatter = formatterResolver.GetFormatterWithVerify();
+ var startOffset = offset;
+
+ var count = MessagePackBinary.ReadArrayHeader(bytes, offset, out readSize);
+ offset += readSize;
+
+ var list = new T();
+ for (int i = 0; i < count; i++)
+ {
+ list.Add(formatter.Deserialize(bytes, offset, formatterResolver, out readSize));
+ offset += readSize;
+ }
+
+ readSize = offset - startOffset;
+ return list;
+ }
+ }
+
+ public sealed class NonGenericInterfaceListFormatter : IMessagePackFormatter
+ {
+ public static readonly IMessagePackFormatter Instance = new NonGenericInterfaceListFormatter();
+
+ NonGenericInterfaceListFormatter()
+ {
+
+ }
+
+ public int Serialize(ref byte[] bytes, int offset, IList value, IFormatterResolver formatterResolver)
+ {
+ if (value == null)
+ {
+ MessagePackBinary.WriteNil(ref bytes, offset);
+ return 1;
+ }
+
+ var formatter = formatterResolver.GetFormatterWithVerify();
+ var startOffset = offset;
+
+ offset += MessagePackBinary.WriteArrayHeader(ref bytes, offset, value.Count);
+ foreach (var item in value)
+ {
+ offset += formatter.Serialize(ref bytes, offset, item, formatterResolver);
+ }
+
+ return offset - startOffset;
+ }
+
+ public IList Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
+ {
+ if (MessagePackBinary.IsNil(bytes, offset))
+ {
+ readSize = 1;
+ return default(IList);
+ }
+
+ var formatter = formatterResolver.GetFormatterWithVerify();
+ var startOffset = offset;
+
+ var count = MessagePackBinary.ReadArrayHeader(bytes, offset, out readSize);
+ offset += readSize;
+
+ var list = new object[count];
+ for (int i = 0; i < count; i++)
+ {
+ list[i] = formatter.Deserialize(bytes, offset, formatterResolver, out readSize);
+ offset += readSize;
+ }
+
+ readSize = offset - startOffset;
+ return list;
+ }
+ }
+
+ public sealed class NonGenericDictionaryFormatter : IMessagePackFormatter
+ where T : class, IDictionary, new()
+ {
+ public int Serialize(ref byte[] bytes, int offset, T value, IFormatterResolver formatterResolver)
+ {
+ if (value == null)
+ {
+ MessagePackBinary.WriteNil(ref bytes, offset);
+ return 1;
+ }
+
+ var formatter = formatterResolver.GetFormatterWithVerify();
+ var startOffset = offset;
+
+ offset += MessagePackBinary.WriteMapHeader(ref bytes, offset, value.Count);
+ foreach (DictionaryEntry item in value)
+ {
+ offset += formatter.Serialize(ref bytes, offset, item.Key, formatterResolver);
+ offset += formatter.Serialize(ref bytes, offset, item.Value, formatterResolver);
+ }
+
+ return offset - startOffset;
+ }
+
+ public T Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
+ {
+ if (MessagePackBinary.IsNil(bytes, offset))
+ {
+ readSize = 1;
+ return null;
+ }
+
+ var formatter = formatterResolver.GetFormatterWithVerify();
+ var startOffset = offset;
+
+ var count = MessagePackBinary.ReadMapHeader(bytes, offset, out readSize);
+ offset += readSize;
+
+ var dict = new T();
+ for (int i = 0; i < count; i++)
+ {
+ var key = formatter.Deserialize(bytes, offset, formatterResolver, out readSize);
+ offset += readSize;
+ var value = formatter.Deserialize(bytes, offset, formatterResolver, out readSize);
+ offset += readSize;
+ dict.Add(key, value);
+ }
+
+ readSize = offset - startOffset;
+ return dict;
+ }
+ }
+
+ public sealed class NonGenericInterfaceDictionaryFormatter : IMessagePackFormatter
+ {
+ public static readonly IMessagePackFormatter Instance = new NonGenericInterfaceDictionaryFormatter();
+
+ NonGenericInterfaceDictionaryFormatter()
+ {
+
+ }
+
+ public int Serialize(ref byte[] bytes, int offset, IDictionary value, IFormatterResolver formatterResolver)
+ {
+ if (value == null)
+ {
+ MessagePackBinary.WriteNil(ref bytes, offset);
+ return 1;
+ }
+
+ var formatter = formatterResolver.GetFormatterWithVerify();
+ var startOffset = offset;
+
+ offset += MessagePackBinary.WriteMapHeader(ref bytes, offset, value.Count);
+ foreach (DictionaryEntry item in value)
+ {
+ offset += formatter.Serialize(ref bytes, offset, item.Key, formatterResolver);
+ offset += formatter.Serialize(ref bytes, offset, item.Value, formatterResolver);
+ }
+
+ return offset - startOffset;
+ }
+
+ public IDictionary Deserialize(byte[] bytes, int offset, IFormatterResolver formatterResolver, out int readSize)
+ {
+ if (MessagePackBinary.IsNil(bytes, offset))
+ {
+ readSize = 1;
+ return null;
+ }
+
+ var formatter = formatterResolver.GetFormatterWithVerify();
+ var startOffset = offset;
+
+ var count = MessagePackBinary.ReadMapHeader(bytes, offset, out readSize);
+ offset += readSize;
+
+ var dict = new Dictionary(count);
+ for (int i = 0; i < count; i++)
+ {
+ var key = formatter.Deserialize(bytes, offset, formatterResolver, out readSize);
+ offset += readSize;
+ var value = formatter.Deserialize(bytes, offset, formatterResolver, out readSize);
+ offset += readSize;
+ dict.Add(key, value);
+ }
+
+ readSize = offset - startOffset;
+ return dict;
+ }
+ }
+
+#if NETSTANDARD1_4
+
+ public sealed class ObservableCollectionFormatter : CollectionFormatterBase>
+ {
+ protected override void Add(ObservableCollection collection, int index, T value)
+ {
+ collection.Add(value);
+ }
+
+ protected override ObservableCollection Create(int count)
+ {
+ return new ObservableCollection();
+ }
+ }
+
+ public sealed class ReadOnlyObservableCollectionFormatter : CollectionFormatterBase, ReadOnlyObservableCollection>
+ {
+ protected override void Add(ObservableCollection collection, int index, T value)
+ {
+ collection.Add(value);
+ }
+
+ protected override ObservableCollection Create(int count)
+ {
+ return new ObservableCollection();
+ }
+
+ protected override ReadOnlyObservableCollection Complete(ObservableCollection intermediateCollection)
+ {
+ return new ReadOnlyObservableCollection(intermediateCollection);
+ }
+ }
+
+ public sealed class InterfaceReadOnlyListFormatter : CollectionFormatterBase>
+ {
+ protected override void Add(T[] collection, int index, T value)
+ {
+ collection[index] = value;
+ }
+
+ protected override T[] Create(int count)
+ {
+ return new T[count];
+ }
+
+ protected override IReadOnlyList Complete(T[] intermediateCollection)
+ {
+ return intermediateCollection;
+ }
+ }
+
+ public sealed class InterfaceReadOnlyCollectionFormatter : CollectionFormatterBase>
+ {
+ protected override void Add(T[] collection, int index, T value)
+ {
+ collection[index] = value;
+ }
+
+ protected override T[] Create(int count)
+ {
+ return new T[count];
+ }
+
+ protected override IReadOnlyCollection Complete(T[] intermediateCollection)
+ {
+ return intermediateCollection;
+ }
+ }
+
+ public sealed class InterfaceSetFormatter : CollectionFormatterBase, ISet>
+ {
+ protected override void Add(HashSet collection, int index, T value)
+ {
+ collection.Add(value);
+ }
+
+ protected override ISet Complete(HashSet intermediateCollection)
+ {
+ return intermediateCollection;
+ }
+
+ protected override HashSet Create(int count)
+ {
+ return new HashSet();
+ }
+ }
+
+ public sealed class ConcurrentBagFormatter : CollectionFormatterBase>
+ {
+ protected override int? GetCount(ConcurrentBag sequence)
+ {
+ return sequence.Count;
+ }
+
+ protected override void Add(ConcurrentBag collection, int index, T value)
+ {
+ collection.Add(value);
+ }
+
+ protected override ConcurrentBag Create(int count)
+ {
+ return new ConcurrentBag();
+ }
+ }
+
+ public sealed class ConcurrentQueueFormatter : CollectionFormatterBase