diff --git a/CreatureControl/Runtime/Scripts/Creature.cs b/CreatureControl/Runtime/Scripts/Creature.cs
index 2d67f04..62214bc 100644
--- a/CreatureControl/Runtime/Scripts/Creature.cs
+++ b/CreatureControl/Runtime/Scripts/Creature.cs
@@ -256,9 +256,9 @@ namespace CreatureControl {
}
public float GetDistanceToGround(float maxDistance, out Transform ground, out Vector3 normal) {
- normal = Physics.gravity.normalized;
+ normal = -Physics.gravity.normalized;
- Vector3 rayDirection = -normal;
+ Vector3 rayDirection = normal;
int layerMask = Physics.DefaultRaycastLayers;
float distance = maxDistance;
@@ -275,8 +275,8 @@ namespace CreatureControl {
1 => transform.TransformDirection(Vector3.up),
_ => transform.TransformDirection(Vector3.forward),
};
- Vector3 p1 = centerWorld + up * half - normal * maxDistance; // top point
- Vector3 p2 = centerWorld - up * half - normal * maxDistance; // bottom point
+ Vector3 p1 = centerWorld + up * half + normal * maxDistance; // top point
+ Vector3 p2 = centerWorld - up * half + normal * maxDistance; // bottom point
// Debug.DrawRay(p1, 2 * maxDistance * -rayDirection, Color.magenta);
// Debug.DrawRay(p2, 2 * maxDistance * -rayDirection, Color.magenta);
@@ -284,7 +284,7 @@ namespace CreatureControl {
maxDistance += colliderToGround;
}
else {
- Vector3 rayStart = this.transform.position + normal * maxDistance;
+ Vector3 rayStart = this.transform.position - normal * maxDistance;
// Debug.DrawRay(rayStart, 2 * maxDistance * rayDirection, Color.magenta);
hits = Physics.RaycastAll(rayStart, rayDirection, maxDistance * 2, layerMask, QueryTriggerInteraction.Ignore);
}
diff --git a/NanoBrain/Editor/ClusterEditor.cs b/NanoBrain/Editor/ClusterEditor.cs
index ce75239..868297d 100644
--- a/NanoBrain/Editor/ClusterEditor.cs
+++ b/NanoBrain/Editor/ClusterEditor.cs
@@ -88,7 +88,7 @@ namespace NanoBrain {
if (Application.isPlaying == false)
this.serializedBrain = new SerializedObject(this.prefab);
- this.selectedOutput = this.currentCluster.outputs[0];
+ this.selectedOutput = this.currentCluster.defaultOutput;
this.currentNucleus = this.selectedOutput;
//this.currentCluster = this.currentNucleus.parent;
Rebuild(inspectorContainer);
@@ -375,7 +375,7 @@ namespace NanoBrain {
bool disconnecting = GUILayout.Button("Disconnect", GUILayout.Width(80));
if (disconnecting) {
synapse.neuron.RemoveReceiver(this.currentNucleus);
- this.prefab.GarbageCollection();
+ this.currentCluster.Refresh();
anythingChanged = true;
}
EditorGUILayout.EndHorizontal();
@@ -517,35 +517,32 @@ namespace NanoBrain {
EditorGUILayout.EndHorizontal();
if (connecting) {
Nucleus nucleus = nuclei.ElementAt(selectedConnectNucleus);
- // Nucleus prefabNucleus = this.prefab.cluster.nuclei.ElementAt(selectedConnectNucleus);
if (nucleus is Cluster subCluster) {
subCluster.AddArrayReceiver(this.currentNucleus);
- // Cluster prefabSubCluster = prefabNucleus as Cluster;
}
else if (nucleus is Neuron neuron) {
neuron.AddReceiver(this.currentNucleus);
- // if (prefabNucleus is Neuron prefabNeuron)
- // prefabNeuron.AddReceiver(this.currentPrefabNucleus);
}
+ this.currentCluster.Refresh();
}
return connecting;
}
- protected virtual void DisconnectNucleus(Neuron nucleus) {
- if (this.currentNucleus.parent.prefab == null)
- return;
- Neuron currentNeuron = this.currentNucleus as Neuron;
- string[] names = currentNeuron.synapses.Select(synapse => synapse.neuron.name).ToArray();
- int selectedIndex = -1;
- selectedIndex = EditorGUILayout.Popup("Disconnect from", selectedIndex, names);
- if (selectedIndex >= 0 && selectedIndex < this.currentNucleus.parent.prefab.cluster.nuclei.Count) {
- Synapse synapse = currentNeuron.synapses[selectedIndex];
- synapse.neuron.RemoveReceiver(this.currentNucleus);
+ // protected virtual void DisconnectNucleus(Neuron nucleus) {
+ // if (this.currentNucleus.parent.prefab == null)
+ // return;
+ // Neuron currentNeuron = this.currentNucleus as Neuron;
+ // string[] names = currentNeuron.synapses.Select(synapse => synapse.neuron.name).ToArray();
+ // int selectedIndex = -1;
+ // selectedIndex = EditorGUILayout.Popup("Disconnect from", selectedIndex, names);
+ // if (selectedIndex >= 0 && selectedIndex < this.currentNucleus.parent.prefab.cluster.nuclei.Count) {
+ // Synapse synapse = currentNeuron.synapses[selectedIndex];
+ // synapse.neuron.RemoveReceiver(this.currentNucleus);
- // synapse = currentNeuron.synapses[selectedIndex];
- // synapse.neuron.RemoveReceiver(this.currentPrefabNucleus);
- }
- }
+ // // synapse = currentNeuron.synapses[selectedIndex];
+ // // synapse.neuron.RemoveReceiver(this.currentPrefabNucleus);
+ // }
+ // }
protected virtual void DeleteNucleus(Nucleus nucleus) {
if (nucleus == null)
diff --git a/NanoBrain/Runtime/Scripts/Core/Cluster.cs b/NanoBrain/Runtime/Scripts/Core/Cluster.cs
index 7dcf31c..b25222c 100644
--- a/NanoBrain/Runtime/Scripts/Core/Cluster.cs
+++ b/NanoBrain/Runtime/Scripts/Core/Cluster.cs
@@ -72,10 +72,11 @@ namespace NanoBrain {
public Cluster(ClusterPrefab prefab, ClusterPrefab parent = null) {
this.prefab = prefab;
this.name = prefab.name;
- this.parent.prefab = parent;
+ if (parent != null)
+ this.parent = parent.cluster;
- if (this.parent.prefab != null)
- this.parent.prefab.cluster.nuclei.Add(this);
+ // if (this.parent.prefab != null)
+ // this.parent.prefab.cluster.nuclei.Add(this);
ClonePrefab();
_ = this.inputs;
@@ -773,9 +774,9 @@ namespace NanoBrain {
}
Neuron.Delete(nucleus);
- int nucleusIx = this.nuclei.IndexOf(nucleus);
+ //int nucleusIx = this.nuclei.IndexOf(nucleus);
this.nuclei.Remove(nucleus);
- this.prefab.cluster.nuclei.RemoveAt(nucleusIx);
+ //this.prefab.cluster.nuclei.RemoveAt(nucleusIx);
RefreshOutputs();
return true;
@@ -908,6 +909,10 @@ namespace NanoBrain {
#endregion Update
+ public void Refresh() {
+ RefreshOutputs();
+ }
+
}
}
\ No newline at end of file
diff --git a/NanoBrain/Runtime/Scripts/Core/Neuron.cs b/NanoBrain/Runtime/Scripts/Core/Neuron.cs
index 1dd884f..1c2144f 100644
--- a/NanoBrain/Runtime/Scripts/Core/Neuron.cs
+++ b/NanoBrain/Runtime/Scripts/Core/Neuron.cs
@@ -105,7 +105,7 @@ namespace NanoBrain {
///
public virtual void SetBias(Vector3 inputValue) {
this.bias = inputValue;
- this.parent.UpdateFromNucleus(this);
+ this.parent?.UpdateFromNucleus(this);
}
///
@@ -623,10 +623,9 @@ namespace NanoBrain {
#endregion Receivers
public override void ProcessStimulus(Vector3 inputValue) {
- ;
this.lastUpdate = Time.time;
this.bias = inputValue;
- this.parent.UpdateFromNucleus(this);
+ this.parent?.UpdateFromNucleus(this);
}
}
diff --git a/NanoBrain/Runtime/Scripts/ScriptableObjects/ClusterPrefab.cs b/NanoBrain/Runtime/Scripts/ScriptableObjects/ClusterPrefab.cs
index 574552d..c00f234 100644
--- a/NanoBrain/Runtime/Scripts/ScriptableObjects/ClusterPrefab.cs
+++ b/NanoBrain/Runtime/Scripts/ScriptableObjects/ClusterPrefab.cs
@@ -101,38 +101,38 @@ namespace NanoBrain {
// this.nuclei.RemoveAll(nucleus => visitedNuclei.Contains(nucleus) == false);
}
- public void MarkNuclei(HashSet visitedNuclei, Nucleus nucleus) {
- if (nucleus is null)
- return;
+ // public void MarkNuclei(HashSet visitedNuclei, Nucleus nucleus) {
+ // if (nucleus is null)
+ // return;
- if (nucleus.parent != null && nucleus.parent.prefab != this)
- visitedNuclei.Add(nucleus.parent);
- else
- visitedNuclei.Add(nucleus);
- if (nucleus is Neuron neuron) {
- if (neuron.synapses != null) {
- HashSet visitedSynapses = new();
- foreach (Synapse synapse in neuron.synapses) {
- if (synapse != null && synapse.neuron != null) {
- visitedSynapses.Add(synapse);
- if (synapse.neuron is Nucleus synapse_nucleus)
- MarkNuclei(visitedNuclei, synapse_nucleus);
- }
- }
- neuron.synapses.RemoveAll(synapse => visitedSynapses.Contains(synapse) == false);
- }
- if (neuron.receivers != null) {
- HashSet visitedReceivers = new();
- foreach (Nucleus receiver in neuron.receivers) {
- if (receiver != null && receiver != null) {
- visitedReceivers.Add(receiver);
- visitedNuclei.Add(receiver);
- }
- }
- neuron.receivers.RemoveAll(receiver => visitedReceivers.Contains(receiver) == false);
- }
- }
- }
+ // if (nucleus.parent != null && nucleus.parent.prefab != this)
+ // visitedNuclei.Add(nucleus.parent);
+ // else
+ // visitedNuclei.Add(nucleus);
+ // if (nucleus is Neuron neuron) {
+ // if (neuron.synapses != null) {
+ // HashSet visitedSynapses = new();
+ // foreach (Synapse synapse in neuron.synapses) {
+ // if (synapse != null && synapse.neuron != null) {
+ // visitedSynapses.Add(synapse);
+ // if (synapse.neuron is Nucleus synapse_nucleus)
+ // MarkNuclei(visitedNuclei, synapse_nucleus);
+ // }
+ // }
+ // neuron.synapses.RemoveAll(synapse => visitedSynapses.Contains(synapse) == false);
+ // }
+ // if (neuron.receivers != null) {
+ // HashSet visitedReceivers = new();
+ // foreach (Nucleus receiver in neuron.receivers) {
+ // if (receiver != null && receiver != null) {
+ // visitedReceivers.Add(receiver);
+ // visitedNuclei.Add(receiver);
+ // }
+ // }
+ // neuron.receivers.RemoveAll(receiver => visitedReceivers.Contains(receiver) == false);
+ // }
+ // }
+ // }
// public virtual void UpdateNuclei() {
// foreach (Nucleus nucleus in this.nuclei)
diff --git a/Runtime/Scripts/Ant.cs b/Runtime/Scripts/Ant.cs
index 5049d38..219d5c8 100644
--- a/Runtime/Scripts/Ant.cs
+++ b/Runtime/Scripts/Ant.cs
@@ -51,7 +51,7 @@ namespace CreatureControl {
public Neuron foodReceptor;
public Neuron homeReceptor;
- public Vector3 linearVelocity = Vector3.forward;
+ public Vector3 linearVelocity; // = Vector3.forward;
public Vector3 angularVelocity;
#region Init
@@ -124,7 +124,7 @@ namespace CreatureControl {
public override void Update() {
base.Update();
- UpdateSmell();
+ //UpdateSmell();
UpdateMovement();
}
diff --git a/Samples/Brain/New Cluster Prefab.asset b/Samples/Brain/New Cluster Prefab.asset
index 5640dec..92a02db 100644
--- a/Samples/Brain/New Cluster Prefab.asset
+++ b/Samples/Brain/New Cluster Prefab.asset
@@ -19,23 +19,25 @@ MonoBehaviour:
prefab: {fileID: 11400000}
instanceCount: 1
nuclei:
- - rid: 4201949831649034317
- - rid: 4201949831649034319
+ - rid: 4201949831649034325
+ - rid: 4201949831649034327
+ - rid: 4201949831649034328
+ - rid: 4201949831649034329
references:
version: 2
RefIds:
- rid: -2
type: {class: , ns: , asm: }
- - rid: 4201949831649034317
+ - rid: 4201949831649034325
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Output
parent:
- rid: 4201949831649034318
- bias: {x: 0, y: 0, z: 0}
+ rid: 4201949831649034326
+ bias: {x: 0, y: 0, z: 1}
_synapses:
- neuron:
- rid: 4201949831649034319
+ rid: 4201949831649034327
weight: 1
combinator: 0
_curvePreset: 0
@@ -66,7 +68,7 @@ MonoBehaviour:
curveMax: 1
trace: 0
_receivers: []
- - rid: 4201949831649034318
+ - rid: 4201949831649034326
type: {class: Cluster, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New Cluster Prefab
@@ -75,14 +77,60 @@ MonoBehaviour:
prefab: {fileID: 11400000}
instanceCount: 1
nuclei:
- - rid: 4201949831649034317
- - rid: 4201949831649034319
- - rid: 4201949831649034319
+ - rid: 4201949831649034325
+ - rid: 4201949831649034327
+ - rid: 4201949831649034328
+ - rid: 4201949831649034329
+ - rid: 4201949831649034327
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
- name: New Neuron
+ name: Collision
parent:
- rid: 4201949831649034318
+ rid: 4201949831649034326
+ bias: {x: 0, y: 0, z: 0}
+ _synapses:
+ - neuron:
+ rid: 4201949831649034328
+ weight: 1
+ - neuron:
+ rid: 4201949831649034329
+ weight: 1
+ combinator: 0
+ _curvePreset: 0
+ curve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 3
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ - serializedVersion: 3
+ time: 1000
+ value: 1000
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ curveMax: 1
+ trace: 0
+ _receivers:
+ - rid: 4201949831649034325
+ - rid: 4201949831649034328
+ type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
+ data:
+ name: Hit Left
+ parent:
+ rid: 4201949831649034326
bias: {x: 0, y: 0, z: 0}
_synapses: []
combinator: 0
@@ -114,4 +162,42 @@ MonoBehaviour:
curveMax: 1
trace: 0
_receivers:
- - rid: 4201949831649034317
+ - rid: 4201949831649034327
+ - rid: 4201949831649034329
+ type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
+ data:
+ name: Hit Right
+ parent:
+ rid: 4201949831649034326
+ bias: {x: 0, y: 0, z: 0}
+ _synapses: []
+ combinator: 0
+ _curvePreset: 0
+ curve:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 3
+ time: 0
+ value: 0
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ - serializedVersion: 3
+ time: 1000
+ value: 1000
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ curveMax: 1
+ trace: 0
+ _receivers:
+ - rid: 4201949831649034327
diff --git a/Samples/Foraging.unity b/Samples/Foraging.unity
index 02e9183..b18dbe1 100644
--- a/Samples/Foraging.unity
+++ b/Samples/Foraging.unity
@@ -5243,6 +5243,618 @@ PrefabInstance:
serializedVersion: 3
m_TransformParent: {fileID: 0}
m_Modifications:
+ - target: {fileID: 695389755773980816, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: -0.0040905434
+ objectReference: {fileID: 0}
+ - target: {fileID: 695389755773980816, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.0061656996
+ objectReference: {fileID: 0}
+ - target: {fileID: 695389755773980816, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.9162944
+ objectReference: {fileID: 0}
+ - target: {fileID: 695389755773980816, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.21589416
+ objectReference: {fileID: 0}
+ - target: {fileID: 695389755773980816, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.32834327
+ objectReference: {fileID: 0}
+ - target: {fileID: 695389755773980816, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.07736312
+ objectReference: {fileID: 0}
+ - target: {fileID: 1004982706826917178, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: -0.02829995
+ objectReference: {fileID: 0}
+ - target: {fileID: 1004982706826917178, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.6843936
+ objectReference: {fileID: 0}
+ - target: {fileID: 1004982706826917178, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.71126705
+ objectReference: {fileID: 0}
+ - target: {fileID: 1004982706826917178, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.15780915
+ objectReference: {fileID: 0}
+ - target: {fileID: 1035200439474759374, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: forwardSpeed
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 1035200439474759374, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: rotationSpeed
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 1060641200493147314, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: 1.7462298e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 1060641200493147314, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: 5.820766e-11
+ objectReference: {fileID: 0}
+ - target: {fileID: 1060641200493147314, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.0024082724
+ objectReference: {fileID: 0}
+ - target: {fileID: 1060641200493147314, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.58369815
+ objectReference: {fileID: 0}
+ - target: {fileID: 1060641200493147314, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.8119708
+ objectReference: {fileID: 0}
+ - target: {fileID: 1060641200493147314, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.00000032782555
+ objectReference: {fileID: 0}
+ - target: {fileID: 1060641200493147314, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.000000059604645
+ objectReference: {fileID: 0}
+ - target: {fileID: 1310879476154348518, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.70777005
+ objectReference: {fileID: 0}
+ - target: {fileID: 1310879476154348518, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.38709375
+ objectReference: {fileID: 0}
+ - target: {fileID: 1310879476154348518, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.17679271
+ objectReference: {fileID: 0}
+ - target: {fileID: 1310879476154348518, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.56388324
+ objectReference: {fileID: 0}
+ - target: {fileID: 1815117023348536243, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: 8.489559e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 1815117023348536243, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: 4.6566123e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 1815117023348536243, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.0042412244
+ objectReference: {fileID: 0}
+ - target: {fileID: 1815117023348536243, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.96049416
+ objectReference: {fileID: 0}
+ - target: {fileID: 1815117023348536243, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.27830014
+ objectReference: {fileID: 0}
+ - target: {fileID: 1815117023348536243, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.000000049062358
+ objectReference: {fileID: 0}
+ - target: {fileID: 1815117023348536243, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.00000003573343
+ objectReference: {fileID: 0}
+ - target: {fileID: 2057489726524823425, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.61066824
+ objectReference: {fileID: 0}
+ - target: {fileID: 2057489726524823425, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.25755236
+ objectReference: {fileID: 0}
+ - target: {fileID: 2057489726524823425, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.5535674
+ objectReference: {fileID: 0}
+ - target: {fileID: 2057489726524823425, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.5042959
+ objectReference: {fileID: 0}
+ - target: {fileID: 2100924547480595579, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: -8.458901e-12
+ objectReference: {fileID: 0}
+ - target: {fileID: 2100924547480595579, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: 9.313226e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 2100924547480595579, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.0030214668
+ objectReference: {fileID: 0}
+ - target: {fileID: 2100924547480595579, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.9807038
+ objectReference: {fileID: 0}
+ - target: {fileID: 2100924547480595579, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.19549987
+ objectReference: {fileID: 0}
+ - target: {fileID: 2100924547480595579, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.000000048625225
+ objectReference: {fileID: 0}
+ - target: {fileID: 2100924547480595579, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.000000041054268
+ objectReference: {fileID: 0}
+ - target: {fileID: 2149330539247012361, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.75097865
+ objectReference: {fileID: 0}
+ - target: {fileID: 2149330539247012361, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.2175455
+ objectReference: {fileID: 0}
+ - target: {fileID: 2149330539247012361, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.5988421
+ objectReference: {fileID: 0}
+ - target: {fileID: 2149330539247012361, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.1734742
+ objectReference: {fileID: 0}
+ - target: {fileID: 2380027669956049854, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.75851125
+ objectReference: {fileID: 0}
+ - target: {fileID: 2380027669956049854, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.5723842
+ objectReference: {fileID: 0}
+ - target: {fileID: 2380027669956049854, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.00878774
+ objectReference: {fileID: 0}
+ - target: {fileID: 2380027669956049854, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.31138372
+ objectReference: {fileID: 0}
+ - target: {fileID: 2569903554710171135, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: 0
+ objectReference: {fileID: 0}
+ - target: {fileID: 2569903554710171135, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: 5.820766e-11
+ objectReference: {fileID: 0}
+ - target: {fileID: 2569903554710171135, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.003004016
+ objectReference: {fileID: 0}
+ - target: {fileID: 2569903554710171135, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.8242286
+ objectReference: {fileID: 0}
+ - target: {fileID: 2569903554710171135, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.56625736
+ objectReference: {fileID: 0}
+ - target: {fileID: 2569903554710171135, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.000000014901161
+ objectReference: {fileID: 0}
+ - target: {fileID: 2569903554710171135, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.0000000055879354
+ objectReference: {fileID: 0}
+ - target: {fileID: 2994943864588667712, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: -0.005221289
+ objectReference: {fileID: 0}
+ - target: {fileID: 2994943864588667712, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.0023040995
+ objectReference: {fileID: 0}
+ - target: {fileID: 2994943864588667712, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.76335764
+ objectReference: {fileID: 0}
+ - target: {fileID: 2994943864588667712, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.1690564
+ objectReference: {fileID: 0}
+ - target: {fileID: 2994943864588667712, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.6087132
+ objectReference: {fileID: 0}
+ - target: {fileID: 2994943864588667712, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.13480821
+ objectReference: {fileID: 0}
+ - target: {fileID: 3025673039819971543, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.9646967
+ objectReference: {fileID: 0}
+ - target: {fileID: 3025673039819971543, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.158927
+ objectReference: {fileID: 0}
+ - target: {fileID: 3025673039819971543, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.20721303
+ objectReference: {fileID: 0}
+ - target: {fileID: 3025673039819971543, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.034136884
+ objectReference: {fileID: 0}
+ - target: {fileID: 3274992126458333413, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: 3.4924597e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 3274992126458333413, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: -1.7462298e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 3274992126458333413, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.003004015
+ objectReference: {fileID: 0}
+ - target: {fileID: 3274992126458333413, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.7585622
+ objectReference: {fileID: 0}
+ - target: {fileID: 3274992126458333413, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.6516007
+ objectReference: {fileID: 0}
+ - target: {fileID: 3274992126458333413, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.000000029802322
+ objectReference: {fileID: 0}
+ - target: {fileID: 3274992126458333413, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.000000007450581
+ objectReference: {fileID: 0}
+ - target: {fileID: 3303214404428789969, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.32846013
+ objectReference: {fileID: 0}
+ - target: {fileID: 3303214404428789969, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.8921972
+ objectReference: {fileID: 0}
+ - target: {fileID: 3303214404428789969, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.29727954
+ objectReference: {fileID: 0}
+ - target: {fileID: 3303214404428789969, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.087881245
+ objectReference: {fileID: 0}
+ - target: {fileID: 3735440054552339591, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: brainPrefab
+ value:
+ objectReference: {fileID: 11400000, guid: c8e4b0990eb7dbbc4bee34addd9cd2b8, type: 2}
+ - target: {fileID: 3748243631002723431, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.47020024
+ objectReference: {fileID: 0}
+ - target: {fileID: 3748243631002723431, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.13349901
+ objectReference: {fileID: 0}
+ - target: {fileID: 3748243631002723431, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.7921706
+ objectReference: {fileID: 0}
+ - target: {fileID: 3748243631002723431, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.36545247
+ objectReference: {fileID: 0}
+ - target: {fileID: 4543089944971148809, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: -2.0372681e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 4543089944971148809, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: -5.820766e-11
+ objectReference: {fileID: 0}
+ - target: {fileID: 4543089944971148809, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.0024082726
+ objectReference: {fileID: 0}
+ - target: {fileID: 4543089944971148809, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.72951615
+ objectReference: {fileID: 0}
+ - target: {fileID: 4543089944971148809, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.68396366
+ objectReference: {fileID: 0}
+ - target: {fileID: 4543089944971148809, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.00000017881393
+ objectReference: {fileID: 0}
+ - target: {fileID: 4543089944971148809, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.000000007450581
+ objectReference: {fileID: 0}
+ - target: {fileID: 5108746397492641501, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: -0.14248966
+ objectReference: {fileID: 0}
+ - target: {fileID: 5108746397492641501, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.00803566
+ objectReference: {fileID: 0}
+ - target: {fileID: 5108746397492641501, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.9881935
+ objectReference: {fileID: 0}
+ - target: {fileID: 5108746397492641501, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.055728883
+ objectReference: {fileID: 0}
+ - target: {fileID: 5257551609953188724, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: 4.4745083e-11
+ objectReference: {fileID: 0}
+ - target: {fileID: 5257551609953188724, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: 4.6566123e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 5257551609953188724, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.0041765133
+ objectReference: {fileID: 0}
+ - target: {fileID: 5257551609953188724, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.96809804
+ objectReference: {fileID: 0}
+ - target: {fileID: 5257551609953188724, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.2505719
+ objectReference: {fileID: 0}
+ - target: {fileID: 5257551609953188724, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.00000009663677
+ objectReference: {fileID: 0}
+ - target: {fileID: 5257551609953188724, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.00000006014907
+ objectReference: {fileID: 0}
+ - target: {fileID: 5432151846474450495, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: 0.0025763595
+ objectReference: {fileID: 0}
+ - target: {fileID: 5432151846474450495, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.0072106724
+ objectReference: {fileID: 0}
+ - target: {fileID: 5432151846474450495, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.95996726
+ objectReference: {fileID: 0}
+ - target: {fileID: 5432151846474450495, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.18536535
+ objectReference: {fileID: 0}
+ - target: {fileID: 5432151846474450495, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.20619719
+ objectReference: {fileID: 0}
+ - target: {fileID: 5432151846474450495, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.039815746
+ objectReference: {fileID: 0}
+ - target: {fileID: 5685316299564663885, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: 1.1641532e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 5685316299564663885, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: -2.910383e-11
+ objectReference: {fileID: 0}
+ - target: {fileID: 5685316299564663885, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.00190334
+ objectReference: {fileID: 0}
+ - target: {fileID: 5685316299564663885, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.86583054
+ objectReference: {fileID: 0}
+ - target: {fileID: 5685316299564663885, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.50033724
+ objectReference: {fileID: 0}
+ - target: {fileID: 5685316299564663885, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.000000059604638
+ objectReference: {fileID: 0}
+ - target: {fileID: 5685316299564663885, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.000000021420417
+ objectReference: {fileID: 0}
+ - target: {fileID: 5823700145767964246, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.85402167
+ objectReference: {fileID: 0}
+ - target: {fileID: 5823700145767964246, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.32501373
+ objectReference: {fileID: 0}
+ - target: {fileID: 5823700145767964246, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.22636825
+ objectReference: {fileID: 0}
+ - target: {fileID: 5823700145767964246, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.33729884
+ objectReference: {fileID: 0}
+ - target: {fileID: 5850833608922183593, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.032780167
+ objectReference: {fileID: 0}
+ - target: {fileID: 5850833608922183593, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.044935193
+ objectReference: {fileID: 0}
+ - target: {fileID: 5850833608922183593, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.8327052
+ objectReference: {fileID: 0}
+ - target: {fileID: 5850833608922183593, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.5509159
+ objectReference: {fileID: 0}
+ - target: {fileID: 6207803342309021390, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: -0.5112795
+ objectReference: {fileID: 0}
+ - target: {fileID: 6207803342309021390, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.8116232
+ objectReference: {fileID: 0}
+ - target: {fileID: 6207803342309021390, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.25970182
+ objectReference: {fileID: 0}
+ - target: {fileID: 6207803342309021390, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.11142756
+ objectReference: {fileID: 0}
+ - target: {fileID: 6513804325188258242, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.7431155
+ objectReference: {fileID: 0}
+ - target: {fileID: 6513804325188258242, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.29594904
+ objectReference: {fileID: 0}
+ - target: {fileID: 6513804325188258242, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.55757076
+ objectReference: {fileID: 0}
+ - target: {fileID: 6513804325188258242, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.2220551
+ objectReference: {fileID: 0}
+ - target: {fileID: 6524871249661584575, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: 0.0035855488
+ objectReference: {fileID: 0}
+ - target: {fileID: 6524871249661584575, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.002454592
+ objectReference: {fileID: 0}
+ - target: {fileID: 6524871249661584575, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.770837
+ objectReference: {fileID: 0}
+ - target: {fileID: 6524871249661584575, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.21358104
+ objectReference: {fileID: 0}
+ - target: {fileID: 6524871249661584575, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.5783706
+ objectReference: {fileID: 0}
+ - target: {fileID: 6524871249661584575, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.16025306
+ objectReference: {fileID: 0}
+ - target: {fileID: 6535965612457355736, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: 1.2718623e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 6535965612457355736, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: 4.656613e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 6535965612457355736, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.0041295583
+ objectReference: {fileID: 0}
+ - target: {fileID: 6535965612457355736, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.9558599
+ objectReference: {fileID: 0}
+ - target: {fileID: 6535965612457355736, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.29382288
+ objectReference: {fileID: 0}
+ - target: {fileID: 6535965612457355736, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.00000020186695
+ objectReference: {fileID: 0}
+ - target: {fileID: 6535965612457355736, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.000000145828
+ objectReference: {fileID: 0}
+ - target: {fileID: 6572398933426288654, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: 3.9170928e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 6572398933426288654, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: -2.3283064e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 6572398933426288654, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.00410612
+ objectReference: {fileID: 0}
+ - target: {fileID: 6572398933426288654, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.96942157
+ objectReference: {fileID: 0}
+ - target: {fileID: 6572398933426288654, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.24540132
+ objectReference: {fileID: 0}
+ - target: {fileID: 6572398933426288654, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.000000010759126
+ objectReference: {fileID: 0}
+ - target: {fileID: 6572398933426288654, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.000000013880826
+ objectReference: {fileID: 0}
+ - target: {fileID: 6620083584134435749, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.92331064
+ objectReference: {fileID: 0}
+ - target: {fileID: 6620083584134435749, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.18358408
+ objectReference: {fileID: 0}
+ - target: {fileID: 6620083584134435749, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.33085752
+ objectReference: {fileID: 0}
+ - target: {fileID: 6620083584134435749, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.06578521
+ objectReference: {fileID: 0}
- target: {fileID: 7021329035324230484, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
propertyPath: m_LocalPosition.x
value: 0
@@ -5283,10 +5895,178 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
+ - target: {fileID: 7313217641663358484, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: 5.820766e-11
+ objectReference: {fileID: 0}
+ - target: {fileID: 7313217641663358484, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: -1.4551915e-11
+ objectReference: {fileID: 0}
+ - target: {fileID: 7313217641663358484, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.0019033395
+ objectReference: {fileID: 0}
+ - target: {fileID: 7313217641663358484, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.7118299
+ objectReference: {fileID: 0}
+ - target: {fileID: 7313217641663358484, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.702352
+ objectReference: {fileID: 0}
+ - target: {fileID: 7313217641663358484, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.00000017881392
+ objectReference: {fileID: 0}
+ - target: {fileID: 7313217641663358484, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.000000048428767
+ objectReference: {fileID: 0}
+ - target: {fileID: 7378712539761125858, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.58558106
+ objectReference: {fileID: 0}
+ - target: {fileID: 7378712539761125858, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.4692841
+ objectReference: {fileID: 0}
+ - target: {fileID: 7378712539761125858, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.6377756
+ objectReference: {fileID: 0}
+ - target: {fileID: 7378712539761125858, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.17352132
+ objectReference: {fileID: 0}
+ - target: {fileID: 7394846002605678119, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.81694216
+ objectReference: {fileID: 0}
+ - target: {fileID: 7394846002605678119, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.43574914
+ objectReference: {fileID: 0}
+ - target: {fileID: 7394846002605678119, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.14708121
+ objectReference: {fileID: 0}
+ - target: {fileID: 7394846002605678119, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.34798768
+ objectReference: {fileID: 0}
+ - target: {fileID: 7400717801484663767, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.48328745
+ objectReference: {fileID: 0}
+ - target: {fileID: 7400717801484663767, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.07811397
+ objectReference: {fileID: 0}
+ - target: {fileID: 7400717801484663767, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.8607985
+ objectReference: {fileID: 0}
+ - target: {fileID: 7400717801484663767, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.13913132
+ objectReference: {fileID: 0}
+ - target: {fileID: 7535818317971162736, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: -0.0022254882
+ objectReference: {fileID: 0}
+ - target: {fileID: 7535818317971162736, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: -0.002710371
+ objectReference: {fileID: 0}
+ - target: {fileID: 7535818317971162736, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: -0.13751179
+ objectReference: {fileID: 0}
+ - target: {fileID: 7535818317971162736, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.038188737
+ objectReference: {fileID: 0}
+ - target: {fileID: 7535818317971162736, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.9536711
+ objectReference: {fileID: 0}
+ - target: {fileID: 7535818317971162736, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.2648463
+ objectReference: {fileID: 0}
- target: {fileID: 7654735227470959086, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
propertyPath: m_Name
value: LowPolyAntRigged
objectReference: {fileID: 0}
+ - target: {fileID: 8598108513644155435, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: 0.0029576183
+ objectReference: {fileID: 0}
+ - target: {fileID: 8598108513644155435, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: -0.0004493922
+ objectReference: {fileID: 0}
+ - target: {fileID: 8598108513644155435, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.4621276
+ objectReference: {fileID: 0}
+ - target: {fileID: 8598108513644155435, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: 0.16157556
+ objectReference: {fileID: 0}
+ - target: {fileID: 8598108513644155435, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.8231099
+ objectReference: {fileID: 0}
+ - target: {fileID: 8598108513644155435, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.28778726
+ objectReference: {fileID: 0}
+ - target: {fileID: 8801464852371122986, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.28808263
+ objectReference: {fileID: 0}
+ - target: {fileID: 8801464852371122986, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.5423468
+ objectReference: {fileID: 0}
+ - target: {fileID: 8801464852371122986, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: -0.5076533
+ objectReference: {fileID: 0}
+ - target: {fileID: 8801464852371122986, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: 0.60428184
+ objectReference: {fileID: 0}
+ - target: {fileID: 8921816082228033372, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.x
+ value: 1.7680413e-11
+ objectReference: {fileID: 0}
+ - target: {fileID: 8921816082228033372, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.y
+ value: 6.9849193e-10
+ objectReference: {fileID: 0}
+ - target: {fileID: 8921816082228033372, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalPosition.z
+ value: 0.0029819128
+ objectReference: {fileID: 0}
+ - target: {fileID: 8921816082228033372, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.w
+ value: 0.9604722
+ objectReference: {fileID: 0}
+ - target: {fileID: 8921816082228033372, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.x
+ value: -0.2783759
+ objectReference: {fileID: 0}
+ - target: {fileID: 8921816082228033372, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.y
+ value: 0.00000008648073
+ objectReference: {fileID: 0}
+ - target: {fileID: 8921816082228033372, guid: 49b4f3c47b71346f2be821320af94de8, type: 3}
+ propertyPath: m_LocalRotation.z
+ value: -0.00000009121207
+ objectReference: {fileID: 0}
m_RemovedComponents: []
m_RemovedGameObjects: []
m_AddedGameObjects: []