diff --git a/Documentation.meta b/Documentation.meta
new file mode 100644
index 0000000..47df66c
--- /dev/null
+++ b/Documentation.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: c2c74f5b3b38f630c9211ae171b6c481
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Documentation/Ant2.md b/Documentation/Ant2.md
new file mode 100644
index 0000000..90be602
--- /dev/null
+++ b/Documentation/Ant2.md
@@ -0,0 +1,14 @@
+Lorum ipsum
+
+Heading level 1
+===============
+
+Lorum ipsum
+
+Heading Level 2
+---------------
+
+Lorum ipsum
+
+here is a an image:
+
\ No newline at end of file
diff --git a/Documentation/Ant2.md.meta b/Documentation/Ant2.md.meta
new file mode 100644
index 0000000..fe53eae
--- /dev/null
+++ b/Documentation/Ant2.md.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: e216f4e0f4902417980c167612b0e0c1
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Documentation/GettingStarted.md b/Documentation/GettingStarted.md
new file mode 100644
index 0000000..f94617e
--- /dev/null
+++ b/Documentation/GettingStarted.md
@@ -0,0 +1,2 @@
+/// \page GettingStarted Getttting Started
+Getting starttted
\ No newline at end of file
diff --git a/Documentation/GettingStarted.md.meta b/Documentation/GettingStarted.md.meta
new file mode 100644
index 0000000..4da78ea
--- /dev/null
+++ b/Documentation/GettingStarted.md.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 02f2904aebc8f9475b2ab67bc25205f8
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Documentation/Installation.md b/Documentation/Installation.md
new file mode 100644
index 0000000..210c5dc
--- /dev/null
+++ b/Documentation/Installation.md
@@ -0,0 +1,9 @@
+/// \page Installation Installation
+
+You can import the NanoBrain Ant package in Unity directly with the Package Manager git package importer.
+
+See Unity: [Installing from a Git URL](https://docs.unity3d.com/Manual/upm-ui-giturl.html)
+
+Use the link from 'Clone with HTTP' (for example: https://git.passer.life/CreatureControl/Ant.git) In this way you can always retrieve the latest version by pressing the Update button in the Package Manager.
+
+Optionally, you can use a tag to retrieve a specific version. For example: https://git.passer.life/CreatureControl/Ant.git#0.1.0. This will give you a stable version which does not change. Updating can be done by retrieving the package with a link to a new release.
\ No newline at end of file
diff --git a/Documentation/Installation.md.meta b/Documentation/Installation.md.meta
new file mode 100644
index 0000000..853edc0
--- /dev/null
+++ b/Documentation/Installation.md.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: c97243ffb6244df0d9470dd96c86f8fc
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/README.md b/README.md
index c0eb862..4b15254 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,6 @@
-# Ant
-
+# %NanoBrain Ant
+
+Table of Contents
+-----------------
+- [Installation](\ref Installation)
+- [Getting started](\ref GettingStarted)
\ No newline at end of file
diff --git a/Runtime/Scripts/Ant.cs b/Runtime/Scripts/Ant.cs
index 5bf6784..6c9f875 100644
--- a/Runtime/Scripts/Ant.cs
+++ b/Runtime/Scripts/Ant.cs
@@ -1,13 +1,28 @@
+using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using NanoBrain;
namespace Passer.CreatureControl {
+ ///
+ /// Simulated ant using a NanoBrain
+ ///
[RequireComponent(typeof(Brain))]
public class Ant : Insect {
+ ///
+ /// inertia controls how quickly the ant can change it direction
+ ///
private readonly float inertia = 0.2f;
+ ///
+ /// The maximum distance at which the ant can smell things
+ ///
+ /// The strength of the smell decreases with the inverse square law
+ /// to zero at this distance
private readonly float smellRadius = 0.2f;
+ ///
+ /// The angle to the left and right within the ant can smell things
+ ///
private readonly float smellAngle = 80.0f;
public GameObject homePheromonePrefab;
@@ -18,16 +33,25 @@ namespace Passer.CreatureControl {
public Brain nanoBrain;
// brain output
+ public Neuron targetDirection;
public Neuron hasFood;
+
// brain input
+
+ ///
+ /// The (heart) beat for the brain
+ ///
+ /// It is used by the brain to do things periodically
+ /// like placing pheromones
+ public Nucleus beat;
+
public Nucleus pheromoneSteering;
public Nucleus hitLeft;
public Nucleus hitRight;
- public Nucleus beat;
public Receptor foodReceptor;
public Receptor homeReceptor;
- public Vector3 linearVelocity;
+ public Vector3 linearVelocity = Vector3.forward;
public Vector3 angularVelocity;
#region Init
@@ -49,30 +73,37 @@ namespace Passer.CreatureControl {
Cluster brain = this.nanoBrain.brain;
if (brain != null) {
- // brain outputs
- this.pheromoneSteering = brain.GetNucleus("Pheromone Steering");
+ //--- brain inputs
- if (brain.GetNucleus("Home Pheromones") is Neuron homePheromones)
- homePheromones.WhenFiring += PlaceHomePheromone;
- if (brain.GetNucleus("Food Pheromones") is Neuron foodPheromones)
- foodPheromones.WhenFiring += PlaceFoodPheromone;
-
- this.hasFood = brain.GetNucleus("Having Food") as Neuron;
- // brain inputs
this.beat = brain.GetNucleus("Beat");
this.hitLeft = brain.GetNucleus("Hit Left");
this.hitRight = brain.GetNucleus("Hit Right");
this.foodReceptor = brain.GetNucleus("Food Receptor") as Receptor;
this.homeReceptor = brain.GetNucleus("Home Receptor") as Receptor;
+ this.pheromoneSteering = brain.GetNucleus("Pheromone Steering");
+
+ //--- brain outputs
+ this.targetDirection = brain.defaultOutput;
+
+ // Try to find the Home Pheromones Neuron
+ if (brain.GetNucleus("Home Pheromones") is Neuron homePheromones)
+ // and call PlaceHomePheromone when it is firing
+ homePheromones.WhenFiring += PlaceHomePheromone;
+ // Try to find the Food Pheromones Neuron
+ if (brain.GetNucleus("Food Pheromones") is Neuron foodPheromones)
+ // and call PlaceFoodPheromone when it is firing
+ foodPheromones.WhenFiring += PlaceFoodPheromone;
+
+ this.hasFood = brain.GetNucleus("Having Food") as Neuron;
}
- this.linearVelocity = Vector3.forward;
-
+ // Initialize the callbacks for the antenna colliders
if (touchLeft != null)
touchLeft.touched += OnAntennaTouchLeft;
if (touchRight != null)
touchRight.touched += OnAntennaTouchRight;
+ StartCoroutine(Beat());
}
#endregion Start
@@ -88,86 +119,56 @@ namespace Passer.CreatureControl {
pheromoneObj.transform.position = this.model.position;
}
- // Update is called once per frame
public override void Update() {
base.Update();
- UpdateBeat();
UpdateSmell();
-
- if (this.nanoBrain == null || this.nanoBrain.brain == null || this.animator == null)
- return;
-
- Vector3 localForce = nanoBrain.brain.defaultOutput.outputValue;
- //Vector3 localForce = this.transform.InverseTransformDirection(worldForce);
-
- this.linearVelocity = (1 - inertia) * (Time.deltaTime * localForce.normalized) + inertia * this.linearVelocity;
- this.linearVelocity = this.linearVelocity.normalized; // * this.forwardSpeed;
-
- //this.animator.SetFloat("Forward", this.forwardSpeed); //this.linearVelocity.z * this.forwardSpeed);
- float forwardParam = Mathf.Clamp01(this.linearVelocity.z); // / this.forwardSpeed);
- float angleDeg = 0;
- if (this.linearVelocity.magnitude > 1e-5f)
- angleDeg = Mathf.Atan2(this.linearVelocity.x, this.linearVelocity.z) * Mathf.Rad2Deg;
-
- // base turn in -1..1
- float baseTurn = Mathf.Clamp(angleDeg / 45, -1f, 1f);
- float turnParam = baseTurn; // * Mathf.Max(0.6f, 1 - forwardParam);
-
- // Rotate towards the movement direction
- // if (this.linearVelocity != Vector3.zero) {
- // Quaternion targetRotation = Quaternion.LookRotation(this.linearVelocity);
- // Quaternion worldRotation = transform.rotation * targetRotation;
- // Quaternion deltaRotation = worldRotation * Quaternion.Inverse(transform.rotation);
-
- // Vector3 eulerAngleChange = deltaRotation.eulerAngles;
- // // Normalize the Euler angles to avoid unexpected jumps due to 360-degree rotations
- // eulerAngleChange = new Vector3(
- // LinearAlgebra.Angles.Normalize(eulerAngleChange.x),
- // LinearAlgebra.Angles.Normalize(eulerAngleChange.y),
- // LinearAlgebra.Angles.Normalize(eulerAngleChange.z)
- // );
-
- // float rotSpeed = (eulerAngleChange.y / 45) * this.rotationSpeed;
- // this.animator.SetFloat("Rotate", rotSpeed);
- // Debug.Log($"fw {this.forwardSpeed} ang {rotSpeed}");
- // }
-
- // Smooth against current animator values
- // float curF = animator.GetFloat("Forward");
- // float curT = animator.GetFloat("Turn");
- // forwardParam = Mathf.Lerp(curF, forwardParam, 1f - Mathf.Exp(-10 * Time.deltaTime));
- // turnParam = Mathf.Lerp(curT, turnParam, 1f - Mathf.Exp(-10 * Time.deltaTime));
-
-
- this.animator.SetFloat("Forward", forwardParam);
- this.animator.SetFloat("Rotate", turnParam);
+ UpdateMovement();
}
public virtual void FixedUpdate() {
CheckGrounded();
}
- public float beatInterval = 3;
- float lastBeatTime = 0;
- void UpdateBeat() {
- if (lastBeatTime == 0) {
- ulong delay = (ulong)(Random.value * beatInterval);
- lastBeatTime = Time.time - delay;
- }
- if (Time.time - lastBeatTime >= beatInterval) {
- lastBeatTime = Time.time;
- beat?.SetBias(Vector3.one); //, 0);
+ protected void UpdateMovement() {
+ if (this.targetDirection == null || this.animator == null)
+ return;
+ Vector3 movementDir = this.targetDirection.outputValue;
+ this.linearVelocity =
+ (1 - this.inertia) * (Time.deltaTime * movementDir.normalized) +
+ this.inertia * this.linearVelocity;
+ this.linearVelocity = this.linearVelocity.normalized;
+
+ float forwardParam = this.linearVelocity.z;
+
+ float angleRad = this.linearVelocity.sqrMagnitude > 1e-10f ?
+ Mathf.Atan2(this.linearVelocity.x, this.linearVelocity.z) :
+ 0;
+ // map -20..20 degrees to -1..1
+ float rotateParam = Mathf.Clamp(angleRad * 3, -1f, 1f);
+
+ this.animator.SetFloat("Forward", forwardParam);
+ this.animator.SetFloat("Rotate", rotateParam);
+ }
+
+ private static readonly WaitForSeconds _waitForSeconds3 = new(3);
+ IEnumerator Beat() {
+ while (Application.isPlaying) {
+ // Beat signal to the brain
+ beat?.SetBias(Vector3.one);
+
+ // Set random direction to simulate noisy smells perception
+ // which will result in a bit of random walking when no clear
+ // smells are received
float randomAngle = Random.Range(-smellAngle, smellAngle);
- Vector3 randomDirection = Quaternion.AngleAxis(randomAngle, Vector3.up) * Vector3.forward * 1.01f;
- pheromoneSteering?.SetBias(randomDirection); //, 0, "random");
+ Vector3 randomDirection = Quaternion.AngleAxis(randomAngle, Vector3.up) * Vector3.forward;
+ pheromoneSteering?.SetBias(randomDirection);
+ yield return _waitForSeconds3;
}
}
void UpdateSmell() {
- // To generate random basic movement, we add a small with a random direction with low intensity
-
Collider[] colliders = Physics.OverlapSphere(this.transform.position, smellRadius);
foreach (Collider collider in colliders) {
SmellPheromones(collider);
@@ -199,7 +200,6 @@ namespace Passer.CreatureControl {
}
//Debug.DrawLine(this.transform.position, pheromone.transform.position, Color.magenta);
}
-
}
void SmellFood(Collider thing) {
diff --git a/Runtime/Scripts/Odorant.cs b/Runtime/Scripts/Odorant.cs
index 7e4b8f3..3008e0d 100644
--- a/Runtime/Scripts/Odorant.cs
+++ b/Runtime/Scripts/Odorant.cs
@@ -6,7 +6,10 @@ namespace Passer.CreatureControl {
public float strength = 1;
public float StrengthAt(float distance) {
- float intensity = this.strength * (1 / distance);
+ if (distance <= 0)
+ return this.strength;
+
+ float intensity = this.strength / (4.0f * Mathf.PI * distance * distance);
return intensity;
}
}
diff --git a/Samples/Animation/AntAnimator.controller b/Samples/Animation/AntAnimator.controller
index 1c64d3e..47a6742 100644
--- a/Samples/Animation/AntAnimator.controller
+++ b/Samples/Animation/AntAnimator.controller
@@ -28,7 +28,7 @@ BlendTree:
m_Motion: {fileID: 7400000, guid: ab82ff68e62ea3b1c8e6523f8d46c142, type: 2}
m_Threshold: 0.19200002
m_Position: {x: -1, y: 0}
- m_TimeScale: 2
+ m_TimeScale: 5
m_CycleOffset: 0
m_DirectBlendParameter: Forward
m_Mirror: 0
@@ -36,7 +36,7 @@ BlendTree:
m_Motion: {fileID: 7400000, guid: 91229db5e929c379bbfd5bf417848488, type: 2}
m_Threshold: 0.28800002
m_Position: {x: 1, y: 0}
- m_TimeScale: 2
+ m_TimeScale: 1
m_CycleOffset: 0
m_DirectBlendParameter: Forward
m_Mirror: 0
diff --git a/Samples/Foraging.unity b/Samples/Foraging.unity
index 6082a7c..1d4b56b 100644
--- a/Samples/Foraging.unity
+++ b/Samples/Foraging.unity
@@ -1218,7 +1218,7 @@ GameObject:
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 2147483647
- m_IsActive: 1
+ m_IsActive: 0
--- !u!65 &1131923923
BoxCollider:
m_ObjectHideFlags: 0
@@ -1402,19 +1402,19 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 150961482459879826, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.95134753
+ value: 0.9513476
objectReference: {fileID: 0}
- target: {fileID: 150961482459879826, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: -0.16772129
+ value: -0.16772108
objectReference: {fileID: 0}
- target: {fileID: 150961482459879826, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: -0.25454587
+ value: -0.2545458
objectReference: {fileID: 0}
- target: {fileID: 150961482459879826, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.04487608
+ value: -0.044876024
objectReference: {fileID: 0}
- target: {fileID: 234321254904069504, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_Enabled
@@ -1438,27 +1438,27 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 534893054875158022, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.33182317
+ value: 0.3318227
objectReference: {fileID: 0}
- target: {fileID: 534893054875158022, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: -0.49444517
+ value: -0.4944449
objectReference: {fileID: 0}
- target: {fileID: 534893054875158022, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: -0.5847297
+ value: -0.58473
objectReference: {fileID: 0}
- target: {fileID: 534893054875158022, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.5509161
+ value: 0.5509164
objectReference: {fileID: 0}
- target: {fileID: 1095306108603189499, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: -1.1641532e-10
+ value: 6.9849193e-10
objectReference: {fileID: 0}
- target: {fileID: 1095306108603189499, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
- value: 6.9849193e-10
+ value: 1.1641532e-10
objectReference: {fileID: 0}
- target: {fileID: 1095306108603189499, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
@@ -1466,19 +1466,19 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 1095306108603189499, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.6889715
+ value: 0.68897164
objectReference: {fileID: 0}
- target: {fileID: 1095306108603189499, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.7247884
+ value: 0.72478837
objectReference: {fileID: 0}
- target: {fileID: 1095306108603189499, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.00000011920929
+ value: -0.00000016391277
objectReference: {fileID: 0}
- target: {fileID: 1095306108603189499, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.000000048428774
+ value: 0.000000033527613
objectReference: {fileID: 0}
- target: {fileID: 1203350180057270885, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: length
@@ -1558,107 +1558,107 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 1327310794183198169, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: -0.27289423
+ value: -0.272894
objectReference: {fileID: 0}
- target: {fileID: 1327310794183198169, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.07145224
+ value: 0.07145218
objectReference: {fileID: 0}
- target: {fileID: 1327310794183198169, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.92810106
+ value: 0.9281011
objectReference: {fileID: 0}
- target: {fileID: 1327310794183198169, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.24300586
+ value: 0.24300589
objectReference: {fileID: 0}
- target: {fileID: 1711874384539071963, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: 0.0000000013203623
+ value: 0.0000000022237239
objectReference: {fileID: 0}
- target: {fileID: 1711874384539071963, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: 4.656613e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 1711874384539071963, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.0041295583
+ objectReference: {fileID: 0}
+ - target: {fileID: 1711874384539071963, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.96224797
+ objectReference: {fileID: 0}
+ - target: {fileID: 1711874384539071963, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.27217463
+ objectReference: {fileID: 0}
+ - target: {fileID: 1711874384539071963, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.00000006898425
+ objectReference: {fileID: 0}
+ - target: {fileID: 1711874384539071963, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -9.073631e-11
+ objectReference: {fileID: 0}
+ - target: {fileID: 1958841765505811662, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.45984083
+ objectReference: {fileID: 0}
+ - target: {fileID: 1958841765505811662, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.68778163
+ objectReference: {fileID: 0}
+ - target: {fileID: 1958841765505811662, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.500828
+ objectReference: {fileID: 0}
+ - target: {fileID: 1958841765505811662, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.25431123
+ objectReference: {fileID: 0}
+ - target: {fileID: 2005934180743361291, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.769217
+ objectReference: {fileID: 0}
+ - target: {fileID: 2005934180743361291, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.4836072
+ objectReference: {fileID: 0}
+ - target: {fileID: 2005934180743361291, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.17796797
+ objectReference: {fileID: 0}
+ - target: {fileID: 2005934180743361291, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.37783155
+ objectReference: {fileID: 0}
+ - target: {fileID: 2681310150771510278, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: -0.0000000014405929
+ objectReference: {fileID: 0}
+ - target: {fileID: 2681310150771510278, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
value: -4.656613e-10
objectReference: {fileID: 0}
- - target: {fileID: 1711874384539071963, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalPosition.z
- value: 0.0041295574
- objectReference: {fileID: 0}
- - target: {fileID: 1711874384539071963, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalRotation.w
- value: 0.9622479
- objectReference: {fileID: 0}
- - target: {fileID: 1711874384539071963, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalRotation.x
- value: -0.27217472
- objectReference: {fileID: 0}
- - target: {fileID: 1711874384539071963, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalRotation.y
- value: 0.000000040577216
- objectReference: {fileID: 0}
- - target: {fileID: 1711874384539071963, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalRotation.z
- value: -0.000000053103072
- objectReference: {fileID: 0}
- - target: {fileID: 1958841765505811662, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalRotation.w
- value: 0.45984164
- objectReference: {fileID: 0}
- - target: {fileID: 1958841765505811662, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalRotation.x
- value: -0.68778104
- objectReference: {fileID: 0}
- - target: {fileID: 1958841765505811662, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalRotation.y
- value: -0.5008279
- objectReference: {fileID: 0}
- - target: {fileID: 1958841765505811662, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalRotation.z
- value: -0.25431153
- objectReference: {fileID: 0}
- - target: {fileID: 2005934180743361291, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalRotation.w
- value: 0.7692176
- objectReference: {fileID: 0}
- - target: {fileID: 2005934180743361291, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalRotation.x
- value: -0.4836071
- objectReference: {fileID: 0}
- - target: {fileID: 2005934180743361291, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalRotation.y
- value: 0.17796785
- objectReference: {fileID: 0}
- - target: {fileID: 2005934180743361291, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalRotation.z
- value: -0.3778305
- objectReference: {fileID: 0}
- - target: {fileID: 2681310150771510278, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalPosition.x
- value: 3.4668957e-10
- objectReference: {fileID: 0}
- - target: {fileID: 2681310150771510278, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalPosition.y
- value: 0.0000000023283064
- objectReference: {fileID: 0}
- target: {fileID: 2681310150771510278, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: 0.0041061183
+ value: 0.0041061174
objectReference: {fileID: 0}
- target: {fileID: 2681310150771510278, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.948097
+ value: 0.94809705
objectReference: {fileID: 0}
- target: {fileID: 2681310150771510278, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: -0.31798124
+ value: -0.31798112
objectReference: {fileID: 0}
- target: {fileID: 2681310150771510278, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: -0.000000027814497
+ value: -0.00000009805181
objectReference: {fileID: 0}
- target: {fileID: 2681310150771510278, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.000000041375255
+ value: 0.000000096782095
objectReference: {fileID: 0}
- target: {fileID: 2828406421342858178, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: length
@@ -1694,7 +1694,7 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 2977042892368063048, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: 0.0048809904
+ value: 0.004880991
objectReference: {fileID: 0}
- target: {fileID: 2977042892368063048, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
@@ -1702,71 +1702,71 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 2977042892368063048, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: -0.0005492179
+ value: -0.00054922234
objectReference: {fileID: 0}
- target: {fileID: 2977042892368063048, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.7481476
+ value: 0.74814737
objectReference: {fileID: 0}
- target: {fileID: 2977042892368063048, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.17950979
+ value: 0.17950949
objectReference: {fileID: 0}
- target: {fileID: 2977042892368063048, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.6211589
+ value: 0.6211594
objectReference: {fileID: 0}
- target: {fileID: 2977042892368063048, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.14904024
+ value: -0.14904016
objectReference: {fileID: 0}
- target: {fileID: 3129944562958416866, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: -0.33122343
+ value: -0.3312234
objectReference: {fileID: 0}
- target: {fileID: 3129944562958416866, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.9063613
+ value: 0.9063612
objectReference: {fileID: 0}
- target: {fileID: 3129944562958416866, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.2601305
+ value: 0.26013055
objectReference: {fileID: 0}
- target: {fileID: 3129944562958416866, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.03365275
+ value: 0.033653017
objectReference: {fileID: 0}
- target: {fileID: 3205175265109727877, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.06440168
+ value: 0.06440171
objectReference: {fileID: 0}
- target: {fileID: 3205175265109727877, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.059745185
+ value: 0.059745155
objectReference: {fileID: 0}
- target: {fileID: 3205175265109727877, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.85543114
+ value: 0.855431
objectReference: {fileID: 0}
- target: {fileID: 3205175265109727877, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.5104121
+ value: -0.5104123
objectReference: {fileID: 0}
- target: {fileID: 3285577884221125498, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.8352102
+ value: 0.8352103
objectReference: {fileID: 0}
- target: {fileID: 3285577884221125498, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: -0.17726342
+ value: -0.17726402
objectReference: {fileID: 0}
- target: {fileID: 3285577884221125498, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.19850585
+ value: 0.19850641
objectReference: {fileID: 0}
- target: {fileID: 3285577884221125498, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.48124528
+ value: 0.48124456
objectReference: {fileID: 0}
- target: {fileID: 3356290378512291932, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
@@ -1778,23 +1778,23 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 3356290378512291932, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: 0.0012553625
+ value: 0.0012553632
objectReference: {fileID: 0}
- target: {fileID: 3356290378512291932, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.9065212
+ value: 0.9065213
objectReference: {fileID: 0}
- target: {fileID: 3356290378512291932, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.33378425
+ value: 0.33378392
objectReference: {fileID: 0}
- target: {fileID: 3356290378512291932, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: -0.24255198
+ value: -0.24255197
objectReference: {fileID: 0}
- target: {fileID: 3356290378512291932, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.08930847
+ value: 0.08930837
objectReference: {fileID: 0}
- target: {fileID: 3372983822486805436, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
@@ -1802,23 +1802,23 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 3372983822486805436, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.7287944
+ value: 0.7287941
objectReference: {fileID: 0}
- target: {fileID: 3372983822486805436, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: -0.24659169
+ value: -0.24659131
objectReference: {fileID: 0}
- target: {fileID: 3372983822486805436, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.6050906
+ value: 0.60509104
objectReference: {fileID: 0}
- target: {fileID: 3372983822486805436, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.2047358
+ value: 0.20473573
objectReference: {fileID: 0}
- target: {fileID: 3569754655958120677, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: 0.0022482676
+ value: 0.0022482648
objectReference: {fileID: 0}
- target: {fileID: 3569754655958120677, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
@@ -1826,51 +1826,51 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 3569754655958120677, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: 0.0015912962
+ value: 0.0015912973
objectReference: {fileID: 0}
- target: {fileID: 3569754655958120677, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.91944474
+ value: 0.9194448
objectReference: {fileID: 0}
- target: {fileID: 3569754655958120677, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.33498555
+ value: 0.33498567
objectReference: {fileID: 0}
- target: {fileID: 3569754655958120677, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.1934857
+ value: 0.19348523
objectReference: {fileID: 0}
- target: {fileID: 3569754655958120677, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.07049354
+ value: -0.070493385
objectReference: {fileID: 0}
- target: {fileID: 3666013087391118676, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: -0.0000000024213385
+ value: 0.0000000018912174
objectReference: {fileID: 0}
- target: {fileID: 3666013087391118676, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
- value: -9.3132246e-10
+ value: 0
objectReference: {fileID: 0}
- target: {fileID: 3666013087391118676, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: 0.0041765147
+ value: 0.0041765133
objectReference: {fileID: 0}
- target: {fileID: 3666013087391118676, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.96286833
+ value: 0.9628682
objectReference: {fileID: 0}
- target: {fileID: 3666013087391118676, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: -0.26997173
+ value: -0.2699721
objectReference: {fileID: 0}
- target: {fileID: 3666013087391118676, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.000000042094776
+ value: -0.00000005668256
objectReference: {fileID: 0}
- target: {fileID: 3666013087391118676, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.000000002094536
+ value: 0.00000007023554
objectReference: {fileID: 0}
- target: {fileID: 4121123608317626207, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
@@ -1878,51 +1878,51 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 4121123608317626207, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.7331393
+ value: 0.7331392
objectReference: {fileID: 0}
- target: {fileID: 4121123608317626207, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: -0.24335077
+ value: -0.24335083
objectReference: {fileID: 0}
- target: {fileID: 4121123608317626207, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: -0.6027137
+ value: -0.60271376
objectReference: {fileID: 0}
- target: {fileID: 4121123608317626207, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.20005867
+ value: -0.20005876
objectReference: {fileID: 0}
- target: {fileID: 4257347763753830756, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: 4.3655746e-10
+ value: 3.783498e-10
objectReference: {fileID: 0}
- target: {fileID: 4257347763753830756, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
- value: -2.910383e-10
+ value: -1.4551915e-10
objectReference: {fileID: 0}
- target: {fileID: 4257347763753830756, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: 0.0024082726
+ value: 0.0024082728
objectReference: {fileID: 0}
- target: {fileID: 4257347763753830756, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.6723209
+ value: 0.672321
objectReference: {fileID: 0}
- target: {fileID: 4257347763753830756, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.7402599
+ value: 0.74025977
objectReference: {fileID: 0}
- target: {fileID: 4257347763753830756, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: -0.000000029802322
+ value: 0.000000029802319
objectReference: {fileID: 0}
- target: {fileID: 4257347763753830756, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.000000029802322
+ value: 0.00000004470348
objectReference: {fileID: 0}
- target: {fileID: 4460867367699750457, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: 0.003254891
+ value: 0.003254884
objectReference: {fileID: 0}
- target: {fileID: 4460867367699750457, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
@@ -1930,55 +1930,55 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 4460867367699750457, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: -0.006092595
+ value: -0.006092598
objectReference: {fileID: 0}
- target: {fileID: 4460867367699750457, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.2638258
+ value: 0.26382497
objectReference: {fileID: 0}
- target: {fileID: 4460867367699750457, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.06890166
+ value: 0.068901405
objectReference: {fileID: 0}
- target: {fileID: 4460867367699750457, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.9308838
+ value: 0.9308841
objectReference: {fileID: 0}
- target: {fileID: 4460867367699750457, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.24311285
+ value: -0.24311279
objectReference: {fileID: 0}
- target: {fileID: 4465520568132267032, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: 2.6061558e-10
+ value: -0.0000000022489963
objectReference: {fileID: 0}
- target: {fileID: 4465520568132267032, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
- value: 0
+ value: -0.0000000023283062
objectReference: {fileID: 0}
- target: {fileID: 4465520568132267032, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: 0.004241223
+ value: 0.0042412207
objectReference: {fileID: 0}
- target: {fileID: 4465520568132267032, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.9503331
+ value: 0.950333
objectReference: {fileID: 0}
- target: {fileID: 4465520568132267032, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: -0.31123468
+ value: -0.31123504
objectReference: {fileID: 0}
- target: {fileID: 4465520568132267032, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: -0.00000014193735
+ value: 0.0000001429927
objectReference: {fileID: 0}
- target: {fileID: 4465520568132267032, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.00000012441576
+ value: -0.00000015506907
objectReference: {fileID: 0}
- target: {fileID: 4619691744559750327, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: -0.0027482398
+ value: -0.002748237
objectReference: {fileID: 0}
- target: {fileID: 4619691744559750327, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
@@ -1990,11 +1990,11 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 4619691744559750327, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: -0.27477518
+ value: -0.2747748
objectReference: {fileID: 0}
- target: {fileID: 4619691744559750327, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: -0.06383811
+ value: -0.06383809
objectReference: {fileID: 0}
- target: {fileID: 4619691744559750327, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
@@ -2002,19 +2002,19 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 4619691744559750327, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.21711054
+ value: -0.21711075
objectReference: {fileID: 0}
- target: {fileID: 4697254007644123733, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: 9.05997e-10
+ value: -8.8455504e-10
objectReference: {fileID: 0}
- target: {fileID: 4697254007644123733, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
- value: 2.3283064e-10
+ value: -2.3283064e-10
objectReference: {fileID: 0}
- target: {fileID: 4697254007644123733, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: 0.0030214668
+ value: 0.003021467
objectReference: {fileID: 0}
- target: {fileID: 4697254007644123733, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
@@ -2022,59 +2022,59 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 4697254007644123733, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: -0.2873953
+ value: -0.28739524
objectReference: {fileID: 0}
- target: {fileID: 4697254007644123733, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: -0.00000023597144
+ value: 0.0000001529377
objectReference: {fileID: 0}
- target: {fileID: 4697254007644123733, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.00000035965832
+ value: -0.00000023046644
objectReference: {fileID: 0}
- target: {fileID: 4825372182573643071, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: -4.0745363e-10
+ value: 3.4924597e-10
objectReference: {fileID: 0}
- target: {fileID: 4825372182573643071, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
- value: 5.820766e-11
+ value: -1.1641532e-10
objectReference: {fileID: 0}
- target: {fileID: 4825372182573643071, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: 0.00190334
+ value: 0.0019033393
objectReference: {fileID: 0}
- target: {fileID: 4825372182573643071, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.68107736
+ value: 0.68107766
objectReference: {fileID: 0}
- target: {fileID: 4825372182573643071, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.73221153
+ value: 0.73221123
objectReference: {fileID: 0}
- target: {fileID: 4825372182573643071, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.00000026822093
+ value: -0.00000013411045
objectReference: {fileID: 0}
- target: {fileID: 4825372182573643071, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.00000014901163
+ value: 0.00000008568168
objectReference: {fileID: 0}
- target: {fileID: 5281922441378744651, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.4081217
+ value: 0.40812165
objectReference: {fileID: 0}
- target: {fileID: 5281922441378744651, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.271471
+ value: 0.27147096
objectReference: {fileID: 0}
- target: {fileID: 5281922441378744651, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.85242313
+ value: 0.8524232
objectReference: {fileID: 0}
- target: {fileID: 5281922441378744651, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.181975
+ value: -0.18197511
objectReference: {fileID: 0}
- target: {fileID: 5388736343723676868, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
@@ -2086,23 +2086,23 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 5388736343723676868, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.96235925
+ value: 0.96235937
objectReference: {fileID: 0}
- target: {fileID: 5388736343723676868, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: -0.17736576
+ value: -0.177366
objectReference: {fileID: 0}
- target: {fileID: 5388736343723676868, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.20251656
+ value: 0.20251597
objectReference: {fileID: 0}
- target: {fileID: 5388736343723676868, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.03732442
+ value: 0.037324358
objectReference: {fileID: 0}
- target: {fileID: 5485567755949912416, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: -0.0042337617
+ value: -0.0042337636
objectReference: {fileID: 0}
- target: {fileID: 5485567755949912416, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
@@ -2110,39 +2110,39 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 5485567755949912416, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: -0.0006929245
+ value: -0.0006929247
objectReference: {fileID: 0}
- target: {fileID: 5485567755949912416, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.7508211
+ value: 0.75082105
objectReference: {fileID: 0}
- target: {fileID: 5485567755949912416, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.18160522
+ value: 0.1816051
objectReference: {fileID: 0}
- target: {fileID: 5485567755949912416, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: -0.6172499
+ value: -0.61725
objectReference: {fileID: 0}
- target: {fileID: 5485567755949912416, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.14929762
+ value: 0.14929754
objectReference: {fileID: 0}
- target: {fileID: 5809107228299138557, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.34205857
+ value: 0.34205794
objectReference: {fileID: 0}
- target: {fileID: 5809107228299138557, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.92279077
+ value: 0.9227911
objectReference: {fileID: 0}
- target: {fileID: 5809107228299138557, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.1756375
+ value: 0.17563729
objectReference: {fileID: 0}
- target: {fileID: 5809107228299138557, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.024586199
+ value: -0.024586415
objectReference: {fileID: 0}
- target: {fileID: 6049855982455691338, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_Name
@@ -2182,55 +2182,55 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 6508993773649296106, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: 1.1641532e-10
- objectReference: {fileID: 0}
- - target: {fileID: 6508993773649296106, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalPosition.y
value: -1.1641532e-10
objectReference: {fileID: 0}
+ - target: {fileID: 6508993773649296106, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: -8.1490725e-10
+ objectReference: {fileID: 0}
- target: {fileID: 6508993773649296106, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: 0.0030040166
+ value: 0.0030040161
objectReference: {fileID: 0}
- target: {fileID: 6508993773649296106, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.690974
+ value: 0.6909739
objectReference: {fileID: 0}
- target: {fileID: 6508993773649296106, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.72287965
+ value: 0.72287977
objectReference: {fileID: 0}
- target: {fileID: 6508993773649296106, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.000000074505806
+ value: 0.000000044703484
objectReference: {fileID: 0}
- target: {fileID: 6508993773649296106, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.000000026077032
+ value: -0.000000018626451
objectReference: {fileID: 0}
- target: {fileID: 6651475039257777810, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.6889251
+ value: 0.68892515
objectReference: {fileID: 0}
- target: {fileID: 6651475039257777810, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.63667446
+ value: 0.6366751
objectReference: {fileID: 0}
- target: {fileID: 6651475039257777810, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: -0.007984279
+ value: -0.007983622
objectReference: {fileID: 0}
- target: {fileID: 6651475039257777810, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.34635833
+ value: -0.34635717
objectReference: {fileID: 0}
- target: {fileID: 6689676706817588414, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: 8.731149e-11
+ value: 2.910383e-11
objectReference: {fileID: 0}
- target: {fileID: 6689676706817588414, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
- value: -2.0372681e-10
+ value: 6.1118044e-10
objectReference: {fileID: 0}
- target: {fileID: 6689676706817588414, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
@@ -2238,95 +2238,95 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 6689676706817588414, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.6710926
+ value: 0.6710928
objectReference: {fileID: 0}
- target: {fileID: 6689676706817588414, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.7413736
+ value: 0.74137336
objectReference: {fileID: 0}
- target: {fileID: 6689676706817588414, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: -0
+ value: 0.00000008940696
objectReference: {fileID: 0}
- target: {fileID: 6689676706817588414, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0
+ value: -0.000000014901159
objectReference: {fileID: 0}
- target: {fileID: 7045014934404856493, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.5119411
+ value: 0.51194155
objectReference: {fileID: 0}
- target: {fileID: 7045014934404856493, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.32878852
+ value: 0.32878798
objectReference: {fileID: 0}
- target: {fileID: 7045014934404856493, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.46407023
+ value: 0.4640696
objectReference: {fileID: 0}
- target: {fileID: 7045014934404856493, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.64378047
+ value: -0.6437807
objectReference: {fileID: 0}
- target: {fileID: 7208198274800747088, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: -9.895302e-10
- objectReference: {fileID: 0}
- - target: {fileID: 7208198274800747088, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
- propertyPath: m_LocalPosition.y
value: 6.4028427e-10
objectReference: {fileID: 0}
+ - target: {fileID: 7208198274800747088, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: 2.3283064e-10
+ objectReference: {fileID: 0}
- target: {fileID: 7208198274800747088, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: 0.0019033401
+ value: 0.00190334
objectReference: {fileID: 0}
- target: {fileID: 7208198274800747088, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.6799134
+ value: 0.67991334
objectReference: {fileID: 0}
- target: {fileID: 7208198274800747088, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.7332924
+ value: 0.7332926
objectReference: {fileID: 0}
- target: {fileID: 7208198274800747088, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.00000037252903
+ value: -0.0000001937151
objectReference: {fileID: 0}
- target: {fileID: 7208198274800747088, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.00000018253922
+ value: 0.00000009685755
objectReference: {fileID: 0}
- target: {fileID: 8032286693086551754, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.6510879
+ value: 0.6510881
objectReference: {fileID: 0}
- target: {fileID: 8032286693086551754, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.41958752
+ value: 0.41958794
objectReference: {fileID: 0}
- target: {fileID: 8032286693086551754, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: -0.16263409
+ value: -0.16263422
objectReference: {fileID: 0}
- target: {fileID: 8032286693086551754, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: -0.6112128
+ value: -0.61121225
objectReference: {fileID: 0}
- target: {fileID: 8123136597867026454, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: -0.02707527
+ value: -0.02707541
objectReference: {fileID: 0}
- target: {fileID: 8123136597867026454, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: 0.7134899
+ value: 0.71348983
objectReference: {fileID: 0}
- target: {fileID: 8123136597867026454, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.6805392
+ value: 0.68053913
objectReference: {fileID: 0}
- target: {fileID: 8123136597867026454, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.16451626
+ value: 0.1645168
objectReference: {fileID: 0}
- target: {fileID: 8412519912061285269, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: femurLength
@@ -2366,31 +2366,31 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 8736634913202717324, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
- value: 0.26493827
+ value: 0.26493755
objectReference: {fileID: 0}
- target: {fileID: 8736634913202717324, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: -0.06449169
+ value: -0.064491406
objectReference: {fileID: 0}
- target: {fileID: 8736634913202717324, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: 0.9348092
+ value: 0.93480957
objectReference: {fileID: 0}
- target: {fileID: 8736634913202717324, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.22755282
+ value: 0.22755253
objectReference: {fileID: 0}
- target: {fileID: 8974688457054953145, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.x
- value: -7.273371e-10
+ value: 3.2407493e-10
objectReference: {fileID: 0}
- target: {fileID: 8974688457054953145, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.y
- value: -0.0000000016298145
+ value: 0.0000000016298145
objectReference: {fileID: 0}
- target: {fileID: 8974688457054953145, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalPosition.z
- value: 0.0029819133
+ value: 0.0029819123
objectReference: {fileID: 0}
- target: {fileID: 8974688457054953145, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.w
@@ -2398,15 +2398,15 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: 8974688457054953145, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.x
- value: -0.2900309
+ value: -0.29003108
objectReference: {fileID: 0}
- target: {fileID: 8974688457054953145, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.y
- value: -0.00000017317032
+ value: 0.00000005248068
objectReference: {fileID: 0}
- target: {fileID: 8974688457054953145, guid: a792a0d33cab158bd9eb15179d15267f, type: 3}
propertyPath: m_LocalRotation.z
- value: 0.0000002485179
+ value: -0.00000011970675
objectReference: {fileID: 0}
m_RemovedComponents: []
m_RemovedGameObjects: