Added assembly definitions

This commit is contained in:
Pascal Serrarens 2026-05-29 14:59:22 +02:00
parent 1578da9107
commit 1f54b81048
38 changed files with 4289 additions and 57311 deletions

85
Editor/Neuron_Drawer.cs Normal file
View File

@ -0,0 +1,85 @@
using UnityEngine;
using UnityEditor;
using Unity.Mathematics;
using System;
using System.Reflection;
using System.Collections;
namespace NanoBrain.Unity {
[CustomPropertyDrawer(typeof(Neuron))]
class Neuron_Drawer : PropertyDrawer {
public static void Insepctor(SerializedObject serializedObject, string propertyName ) {
EditorGUILayout.PropertyField(serializedObject.FindProperty(propertyName));
}
public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) {
// Draw foldout + properties
label = EditorGUI.BeginProperty(position, label, property);
// Begin indent block
int indent = EditorGUI.indentLevel;
EditorGUI.indentLevel = 0;
object instance = GetTargetObjectOfProperty(property);
float lineHeight = EditorGUIUtility.singleLineHeight;
Rect r = new(position.x, position.y, position.width, lineHeight);
if (instance != null) {
FieldInfo field = typeof(Neuron).GetField("_outputValue", BindingFlags.NonPublic | BindingFlags.Instance);
if (field != null) {
float3 val = (float3)field.GetValue(instance);
EditorGUI.Vector3Field(r, $"Neuron: {label}", val);
}
}
EditorGUI.indentLevel = indent;
EditorGUI.EndProperty();
}
public override float GetPropertyHeight(SerializedProperty property, GUIContent label) {
// height for 1 line
return (EditorGUIUtility.singleLineHeight * 1) + (EditorGUIUtility.standardVerticalSpacing * 0);
}
public static object GetTargetObjectOfProperty(SerializedProperty prop) {
var path = prop.propertyPath.Replace(".Array.data[", "[");
object obj = prop.serializedObject.targetObject;
var elements = path.Split('.');
foreach (var element in elements) {
if (element.Contains("[")) {
var elementName = element.Substring(0, element.IndexOf("["));
var index = Convert.ToInt32(element.Substring(element.IndexOf("[")).Replace("[", "").Replace("]", ""));
obj = GetValue_Imp(obj, elementName, index);
}
else {
obj = GetValue_Imp(obj, element);
}
}
return obj;
}
static object GetValue_Imp(object source, string name) {
if (source == null)
return null;
Type t = source.GetType();
FieldInfo f = t.GetField(name, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance);
if (f != null)
return f.GetValue(source);
PropertyInfo p = t.GetProperty(name, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance);
return p?.GetValue(source, null);
}
static object GetValue_Imp(object source, string name, int index) {
if (GetValue_Imp(source, name) is not IEnumerable enumerable)
return null;
IEnumerator en = enumerable.GetEnumerator();
for (int i = 0; i <= index; i++) {
if (!en.MoveNext())
return null;
}
return en.Current;
}
}
}

View File

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: ecce20d60829feced84788f7f9dcfe08

View File

@ -0,0 +1,17 @@
{
"name": "Passer.NanoBrain.Editor",
"rootNamespace": "",
"references": [
"NanoBrain",
"Unity.Mathematics"
],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": [],
"noEngineReferences": false
}

View File

@ -1,7 +1,6 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: c95a1d65d635791c3b05c8fa281b4b94 guid: 5c053c505a4127e4cb0a042c1fc1f1dd
folderAsset: yes AssemblyDefinitionImporter:
DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:
assetBundleName: assetBundleName:

View File

@ -0,0 +1,16 @@
{
"name": "NanoBrain",
"rootNamespace": "",
"references": [
"Unity.Mathematics"
],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": [],
"noEngineReferences": false
}

View File

@ -1,7 +1,6 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: d0b4c54c77965af548ac2664adfbe9b0 guid: 5e22d5139c60b8f8f86da023bf9a1166
folderAsset: yes AssemblyDefinitionImporter:
DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:
assetBundleName: assetBundleName:

View File

@ -401,7 +401,7 @@ namespace NanoBrain {
/// <param name="synapses">The synapses of the neuron</param> /// <param name="synapses">The synapses of the neuron</param>
/// <returns></returns> /// <returns></returns>
public static Vector3 CombinatorSum(Vector3 bias, List<Synapse> synapses) { public static Vector3 CombinatorSum(Vector3 bias, List<Synapse> synapses) {
float3 sum = bias; Vector3 sum = bias;
foreach (Synapse synapse in synapses) { foreach (Synapse synapse in synapses) {
synapse.neuron.SleepCheck(); synapse.neuron.SleepCheck();
sum += synapse.weight * synapse.neuron.outputValue; sum += synapse.weight * synapse.neuron.outputValue;
@ -416,10 +416,10 @@ namespace NanoBrain {
/// <param name="synapses">The synapses of the neuron</param> /// <param name="synapses">The synapses of the neuron</param>
/// <returns>The result of the multiplication</returns> /// <returns>The result of the multiplication</returns>
public static Vector3 CombinatorProduct(Vector3 bias, List<Synapse> synapses) { public static Vector3 CombinatorProduct(Vector3 bias, List<Synapse> synapses) {
float3 product = bias; Vector3 product = bias;
foreach (Synapse synapse in synapses) { foreach (Synapse synapse in synapses) {
synapse.neuron.SleepCheck(); synapse.neuron.SleepCheck();
product *= synapse.weight * synapse.neuron.outputValue; product = Vector3.Scale(product, synapse.weight * synapse.neuron.outputValue);
} }
return product; return product;
} }

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: a33b116a64615b40b876a83d58dadf5f guid: 72f51e4e6a771de1b9456c031670f9f1
folderAsset: yes folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}

View File

@ -11,66 +11,66 @@ MonoBehaviour:
m_EditorHideFlags: 0 m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3} m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3}
m_Name: Braitenberg 1 m_Name: Braitenberg 1
m_EditorClassIdentifier: Assembly-CSharp::NanoBrain.Unity.ClusterPrefab m_EditorClassIdentifier: NanoBrain::NanoBrain.Unity.ClusterPrefab
cluster: cluster:
name: Braitenberg 1 name: Empty Cluster
parent: parent:
rid: -2 rid: -2
prefab: {fileID: 11400000} prefab: {fileID: 0}
version: 65 version: 0
instances: [] instances: []
instanceCount: 1 instanceCount: 1
nuclei: nuclei:
- rid: 4201950332465446972 - rid: 4201950379912462336
- rid: 4201950332465446973 - rid: 4201950379912462338
version: 510 version: 19
references: references:
version: 2 version: 2
RefIds: RefIds:
- rid: -2 - rid: -2
type: {class: , ns: , asm: } type: {class: , ns: , asm: }
- rid: 4201950332465446972 - rid: 4201950379912462336
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data: data:
name: Output name: Output
parent: parent:
rid: 4201950332465446974 rid: 4201950379912462337
bias: {x: 0, y: 0, z: 1} bias: {x: 0, y: 0, z: 2}
_synapses: _synapses:
- neuron: - neuron:
rid: 4201950332465446973 rid: 4201950379912462338
weight: 2 weight: 4
combinator: 0 combinator: 0
_activator: 0 _activator: 0
persistOutput: 0 persistOutput: 0
lastUpdate: 35.320103 lastUpdate: 0
breakOnUpdate: 0 breakOnUpdate: 0
_receivers: [] _receivers: []
- rid: 4201950332465446973 - rid: 4201950379912462337
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Cluster, ns: NanoBrain, asm: NanoBrain}
data:
name: Empty Cluster
parent:
rid: -2
prefab: {fileID: 0}
version: 0
instances: []
instanceCount: 1
nuclei:
- rid: 4201950379912462336
- rid: 4201950379912462338
- rid: 4201950379912462338
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data: data:
name: Sensor name: Sensor
parent: parent:
rid: 4201950332465446974 rid: 4201950379912462337
bias: {x: 0, y: 0, z: 0} bias: {x: 0, y: 0, z: 0}
_synapses: [] _synapses: []
combinator: 0 combinator: 0
_activator: 0 _activator: 0
persistOutput: 0 persistOutput: 0
lastUpdate: 35.320103 lastUpdate: 0
breakOnUpdate: 0 breakOnUpdate: 0
_receivers: _receivers:
- rid: 4201950332465446972 - rid: 4201950379912462336
- rid: 4201950332465446974
type: {class: Cluster, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Braitenberg 1
parent:
rid: -2
prefab: {fileID: 11400000}
version: 65
instances: []
instanceCount: 1
nuclei:
- rid: 4201950332465446972
- rid: 4201950332465446973

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: c2d142058a073d6fdba2c8fab05834e3 guid: 0d5887a562c639c539f2dda41452acb1
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 11400000 mainObjectFileID: 11400000

View File

@ -11,102 +11,102 @@ MonoBehaviour:
m_EditorHideFlags: 0 m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3} m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3}
m_Name: Braitenberg 2a m_Name: Braitenberg 2a
m_EditorClassIdentifier: Assembly-CSharp::NanoBrain.Unity.ClusterPrefab m_EditorClassIdentifier: NanoBrain::NanoBrain.Unity.ClusterPrefab
cluster: cluster:
name: Braitenberg 2a name: Empty Cluster
parent: parent:
rid: -2 rid: -2
prefab: {fileID: 11400000} prefab: {fileID: 0}
version: 0 version: 0
instances: [] instances: []
instanceCount: 1 instanceCount: 1
nuclei: nuclei:
- rid: 4201949899492425781 - rid: 4201950380202393681
- rid: 4201949899492425817 - rid: 4201950380202393683
- rid: 4201950127862317404 - rid: 4201950380202393684
- rid: 4201950127862317405 - rid: 4201950380202393685
version: 30 version: 205
references: references:
version: 2 version: 2
RefIds: RefIds:
- rid: -2 - rid: -2
type: {class: , ns: , asm: } type: {class: , ns: , asm: }
- rid: 4201949899492425781 - rid: 4201950380202393681
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data: data:
name: LeftOutput name: Left Output
parent: parent:
rid: 4201950130928877722 rid: 4201950380202393682
bias: {x: 0, y: 0, z: 1} bias: {x: 0, y: 0, z: 2}
_synapses: _synapses:
- neuron: - neuron:
rid: 4201949899492425817 rid: 4201950380202393685
weight: 2 weight: 4
combinator: 0 combinator: 0
_activator: 0 _activator: 0
persistOutput: 0 persistOutput: 0
lastUpdate: 4.0097623 lastUpdate: 0
breakOnUpdate: 0 breakOnUpdate: 0
_receivers: [] _receivers: []
- rid: 4201949899492425817 - rid: 4201950380202393682
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Cluster, ns: NanoBrain, asm: NanoBrain}
data: data:
name: LeftSensor name: Empty Cluster
parent:
rid: 4201950130928877722
bias: {x: 0.25581878, y: 0.25581878, z: 0.25581878}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 4.0097623
breakOnUpdate: 0
_receivers:
- rid: 4201949899492425781
- rid: 4201950127862317404
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: RightOutput
parent:
rid: 4201950130928877722
bias: {x: 0, y: 0, z: 1}
_synapses:
- neuron:
rid: 4201950127862317405
weight: 2
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 4.0097623
breakOnUpdate: 0
_receivers: []
- rid: 4201950127862317405
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: RightSensor
parent:
rid: 4201950130928877722
bias: {x: 0.29787737, y: 0.29787737, z: 0.29787737}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 4.0097623
breakOnUpdate: 0
_receivers:
- rid: 4201950127862317404
- rid: 4201950130928877722
type: {class: Cluster, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Braitenberg 2a
parent: parent:
rid: -2 rid: -2
prefab: {fileID: 11400000} prefab: {fileID: 0}
version: 0 version: 0
instances: [] instances: []
instanceCount: 1 instanceCount: 1
nuclei: nuclei:
- rid: 4201949899492425781 - rid: 4201950380202393681
- rid: 4201949899492425817 - rid: 4201950380202393683
- rid: 4201950127862317404 - rid: 4201950380202393684
- rid: 4201950127862317405 - rid: 4201950380202393685
- rid: 4201950380202393683
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Right Output
parent:
rid: 4201950380202393682
bias: {x: 0, y: 0, z: 2}
_synapses:
- neuron:
rid: 4201950380202393684
weight: 4
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers: []
- rid: 4201950380202393684
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Right Sensor
parent:
rid: 4201950380202393682
bias: {x: 0, y: 0, z: 0}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers:
- rid: 4201950380202393683
- rid: 4201950380202393685
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Left Sensor
parent:
rid: 4201950380202393682
bias: {x: 0, y: 0, z: 0}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers:
- rid: 4201950380202393681

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 0eb04b52fd6d2ec0e96f259ad822aef3 guid: ad252b7f7490a41038c51c23d32ea6c4
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 11400000 mainObjectFileID: 11400000

View File

@ -11,102 +11,102 @@ MonoBehaviour:
m_EditorHideFlags: 0 m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3} m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3}
m_Name: Braitenberg 2b m_Name: Braitenberg 2b
m_EditorClassIdentifier: Assembly-CSharp::NanoBrain.Unity.ClusterPrefab m_EditorClassIdentifier: NanoBrain::NanoBrain.Unity.ClusterPrefab
cluster: cluster:
name: Braitenberg 2b name: Empty Cluster
parent: parent:
rid: -2 rid: -2
prefab: {fileID: 11400000} prefab: {fileID: 0}
version: 1 version: 0
instances: [] instances: []
instanceCount: 1 instanceCount: 1
nuclei: nuclei:
- rid: 4201949899492425781 - rid: 4201950380202393681
- rid: 4201949899492425817 - rid: 4201950380202393683
- rid: 4201950127862317404 - rid: 4201950380202393684
- rid: 4201950127862317405 - rid: 4201950380202393685
version: 28 version: 245
references: references:
version: 2 version: 2
RefIds: RefIds:
- rid: -2 - rid: -2
type: {class: , ns: , asm: } type: {class: , ns: , asm: }
- rid: 4201949899492425781 - rid: 4201950380202393681
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data: data:
name: LeftOutput name: Left Output
parent: parent:
rid: 4201950130928877721 rid: 4201950380202393682
bias: {x: 0, y: 0, z: 1} bias: {x: 0, y: 0, z: 2}
_synapses: _synapses:
- neuron: - neuron:
rid: 4201950127862317405 rid: 4201950380202393685
weight: 2 weight: 4
combinator: 0 combinator: 0
_activator: 0 _activator: 0
persistOutput: 0 persistOutput: 0
lastUpdate: 4.0097623 lastUpdate: 0
breakOnUpdate: 0 breakOnUpdate: 0
_receivers: [] _receivers: []
- rid: 4201949899492425817 - rid: 4201950380202393682
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Cluster, ns: NanoBrain, asm: NanoBrain}
data: data:
name: LeftSensor name: Empty Cluster
parent:
rid: 4201950130928877721
bias: {x: 0.42901132, y: 0.42901132, z: 0.42901132}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 4.0097623
breakOnUpdate: 0
_receivers:
- rid: 4201950127862317404
- rid: 4201950127862317404
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: RightOutput
parent:
rid: 4201950130928877721
bias: {x: 0, y: 0, z: 1}
_synapses:
- neuron:
rid: 4201949899492425817
weight: 2
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 4.0097623
breakOnUpdate: 0
_receivers: []
- rid: 4201950127862317405
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: RightSensor
parent:
rid: 4201950130928877721
bias: {x: 0.47389132, y: 0.47389132, z: 0.47389132}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 4.0097623
breakOnUpdate: 0
_receivers:
- rid: 4201949899492425781
- rid: 4201950130928877721
type: {class: Cluster, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Braitenberg 2b
parent: parent:
rid: -2 rid: -2
prefab: {fileID: 11400000} prefab: {fileID: 0}
version: 0 version: 0
instances: [] instances: []
instanceCount: 1 instanceCount: 1
nuclei: nuclei:
- rid: 4201949899492425781 - rid: 4201950380202393681
- rid: 4201949899492425817 - rid: 4201950380202393683
- rid: 4201950127862317404 - rid: 4201950380202393684
- rid: 4201950127862317405 - rid: 4201950380202393685
- rid: 4201950380202393683
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Right Output
parent:
rid: 4201950380202393682
bias: {x: 0, y: 0, z: 2}
_synapses:
- neuron:
rid: 4201950380202393684
weight: 4
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers: []
- rid: 4201950380202393684
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Left Sensor
parent:
rid: 4201950380202393682
bias: {x: 0, y: 0, z: 0}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers:
- rid: 4201950380202393683
- rid: 4201950380202393685
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Right Sensor
parent:
rid: 4201950380202393682
bias: {x: 0, y: 0, z: 0}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers:
- rid: 4201950380202393681

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 69660e1b1c5899b669ed84256a6ba9ea guid: 7c70ff58a4d982376aef8caeae7d10c4
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 11400000 mainObjectFileID: 11400000

View File

@ -11,102 +11,102 @@ MonoBehaviour:
m_EditorHideFlags: 0 m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3} m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3}
m_Name: Braitenberg 3a m_Name: Braitenberg 3a
m_EditorClassIdentifier: Assembly-CSharp::NanoBrain.Unity.ClusterPrefab m_EditorClassIdentifier: NanoBrain::NanoBrain.Unity.ClusterPrefab
cluster: cluster:
name: Braitenberg 3a name: Empty Cluster
parent: parent:
rid: -2 rid: -2
prefab: {fileID: 11400000} prefab: {fileID: 0}
version: 1 version: 0
instances: [] instances: []
instanceCount: 1 instanceCount: 1
nuclei: nuclei:
- rid: 4201949899492425781 - rid: 4201950380202393681
- rid: 4201949899492425817 - rid: 4201950380202393683
- rid: 4201950127862317404 - rid: 4201950380202393684
- rid: 4201950127862317405 - rid: 4201950380202393685
version: 53 version: 207
references: references:
version: 2 version: 2
RefIds: RefIds:
- rid: -2 - rid: -2
type: {class: , ns: , asm: } type: {class: , ns: , asm: }
- rid: 4201949899492425781 - rid: 4201950380202393681
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data: data:
name: LeftOutput name: Left Output
parent: parent:
rid: 4201950130928877727 rid: 4201950380202393682
bias: {x: 0, y: 0, z: 1} bias: {x: 0, y: 0, z: 2}
_synapses: _synapses:
- neuron: - neuron:
rid: 4201949899492425817 rid: 4201950380202393685
weight: -2 weight: -4
combinator: 0 combinator: 0
_activator: 0 _activator: 0
persistOutput: 0 persistOutput: 0
lastUpdate: 4.0097623 lastUpdate: 0
breakOnUpdate: 0 breakOnUpdate: 0
_receivers: [] _receivers: []
- rid: 4201949899492425817 - rid: 4201950380202393682
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Cluster, ns: NanoBrain, asm: NanoBrain}
data: data:
name: LeftSensor name: Empty Cluster
parent:
rid: 4201950130928877727
bias: {x: 0.25581878, y: 0.25581878, z: 0.25581878}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 4.0097623
breakOnUpdate: 0
_receivers:
- rid: 4201949899492425781
- rid: 4201950127862317404
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: RightOutput
parent:
rid: 4201950130928877727
bias: {x: 0, y: 0, z: 1}
_synapses:
- neuron:
rid: 4201950127862317405
weight: -2
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 4.0097623
breakOnUpdate: 0
_receivers: []
- rid: 4201950127862317405
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: RightSensor
parent:
rid: 4201950130928877727
bias: {x: 0.29787737, y: 0.29787737, z: 0.29787737}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 4.0097623
breakOnUpdate: 0
_receivers:
- rid: 4201950127862317404
- rid: 4201950130928877727
type: {class: Cluster, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Braitenberg 3a
parent: parent:
rid: -2 rid: -2
prefab: {fileID: 11400000} prefab: {fileID: 0}
version: 0 version: 0
instances: [] instances: []
instanceCount: 1 instanceCount: 1
nuclei: nuclei:
- rid: 4201949899492425781 - rid: 4201950380202393681
- rid: 4201949899492425817 - rid: 4201950380202393683
- rid: 4201950127862317404 - rid: 4201950380202393684
- rid: 4201950127862317405 - rid: 4201950380202393685
- rid: 4201950380202393683
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Right Output
parent:
rid: 4201950380202393682
bias: {x: 0, y: 0, z: 2}
_synapses:
- neuron:
rid: 4201950380202393684
weight: -4
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers: []
- rid: 4201950380202393684
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Right Sensor
parent:
rid: 4201950380202393682
bias: {x: 0, y: 0, z: 0}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers:
- rid: 4201950380202393683
- rid: 4201950380202393685
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Left Sensor
parent:
rid: 4201950380202393682
bias: {x: 0, y: 0, z: 0}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers:
- rid: 4201950380202393681

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: aff4dfe5b3d8a1d5c83d6a1e3b49515a guid: 14e320f73f1aa3550b2f165832b336bf
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 11400000 mainObjectFileID: 11400000

View File

@ -11,102 +11,102 @@ MonoBehaviour:
m_EditorHideFlags: 0 m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3} m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3}
m_Name: Braitenberg 3b m_Name: Braitenberg 3b
m_EditorClassIdentifier: Assembly-CSharp::NanoBrain.Unity.ClusterPrefab m_EditorClassIdentifier: NanoBrain::NanoBrain.Unity.ClusterPrefab
cluster: cluster:
name: Braitenberg 3b name: Empty Cluster
parent: parent:
rid: -2 rid: -2
prefab: {fileID: 11400000} prefab: {fileID: 0}
version: 1 version: 0
instances: [] instances: []
instanceCount: 1 instanceCount: 1
nuclei: nuclei:
- rid: 4201949899492425781 - rid: 4201950380202393681
- rid: 4201949899492425817 - rid: 4201950380202393683
- rid: 4201950127862317404 - rid: 4201950380202393684
- rid: 4201950127862317405 - rid: 4201950380202393685
version: 54 version: 247
references: references:
version: 2 version: 2
RefIds: RefIds:
- rid: -2 - rid: -2
type: {class: , ns: , asm: } type: {class: , ns: , asm: }
- rid: 4201949899492425781 - rid: 4201950380202393681
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data: data:
name: LeftOutput name: Left Output
parent: parent:
rid: 4201950130928877728 rid: 4201950380202393682
bias: {x: 0, y: 0, z: 1} bias: {x: 0, y: 0, z: 2}
_synapses: _synapses:
- neuron: - neuron:
rid: 4201950127862317405 rid: 4201950380202393685
weight: -2 weight: 4
combinator: 0 combinator: 0
_activator: 0 _activator: 0
persistOutput: 0 persistOutput: 0
lastUpdate: 4.0097623 lastUpdate: 0
breakOnUpdate: 0 breakOnUpdate: 0
_receivers: [] _receivers: []
- rid: 4201949899492425817 - rid: 4201950380202393682
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Cluster, ns: NanoBrain, asm: NanoBrain}
data: data:
name: LeftSensor name: Empty Cluster
parent:
rid: 4201950130928877728
bias: {x: 0.42901132, y: 0.42901132, z: 0.42901132}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 4.0097623
breakOnUpdate: 0
_receivers:
- rid: 4201950127862317404
- rid: 4201950127862317404
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: RightOutput
parent:
rid: 4201950130928877728
bias: {x: 0, y: 0, z: 1}
_synapses:
- neuron:
rid: 4201949899492425817
weight: -2
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 4.0097623
breakOnUpdate: 0
_receivers: []
- rid: 4201950127862317405
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: RightSensor
parent:
rid: 4201950130928877728
bias: {x: 0.47389132, y: 0.47389132, z: 0.47389132}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 4.0097623
breakOnUpdate: 0
_receivers:
- rid: 4201949899492425781
- rid: 4201950130928877728
type: {class: Cluster, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Braitenberg 3b
parent: parent:
rid: -2 rid: -2
prefab: {fileID: 11400000} prefab: {fileID: 0}
version: 0 version: 0
instances: [] instances: []
instanceCount: 1 instanceCount: 1
nuclei: nuclei:
- rid: 4201949899492425781 - rid: 4201950380202393681
- rid: 4201949899492425817 - rid: 4201950380202393683
- rid: 4201950127862317404 - rid: 4201950380202393684
- rid: 4201950127862317405 - rid: 4201950380202393685
- rid: 4201950380202393683
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Right Output
parent:
rid: 4201950380202393682
bias: {x: 0, y: 0, z: 2}
_synapses:
- neuron:
rid: 4201950380202393684
weight: -4
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers: []
- rid: 4201950380202393684
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Left Sensor
parent:
rid: 4201950380202393682
bias: {x: 0, y: 0, z: 0}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers:
- rid: 4201950380202393683
- rid: 4201950380202393685
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Right Sensor
parent:
rid: 4201950380202393682
bias: {x: 0, y: 0, z: 0}
_synapses: []
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers:
- rid: 4201950380202393681

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 0fbaa602b4694471bb8f94330675c873 guid: 9a5c0426df5b011029a37f760f34e248
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 11400000 mainObjectFileID: 11400000

View File

@ -11,190 +11,190 @@ MonoBehaviour:
m_EditorHideFlags: 0 m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3} m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3}
m_Name: Braitenberg 4a m_Name: Braitenberg 4a
m_EditorClassIdentifier: Assembly-CSharp::NanoBrain.Unity.ClusterPrefab m_EditorClassIdentifier: NanoBrain::NanoBrain.Unity.ClusterPrefab
cluster: cluster:
name: Braitenberg 4a name: Empty Cluster
parent: parent:
rid: -2 rid: -2
prefab: {fileID: 11400000} prefab: {fileID: 0}
version: 1 version: 0
instances: [] instances: []
instanceCount: 1 instanceCount: 1
nuclei: nuclei:
- rid: 4201949899492425781 - rid: 4201950380202393681
- rid: 4201949899492425817 - rid: 4201950380202393683
- rid: 4201950127862317404 - rid: 4201950380202393684
- rid: 4201950127862317405 - rid: 4201950380202393685
- rid: 4201950130928877958 - rid: 4201950380202393745
- rid: 4201950130928877961 - rid: 4201950380202393747
- rid: 4201950130928878008 - rid: 4201950380202393748
- rid: 4201950130928878009 - rid: 4201950380202393749
version: 23 version: 348
references: references:
version: 2 version: 2
RefIds: RefIds:
- rid: -2 - rid: -2
type: {class: , ns: , asm: } type: {class: , ns: , asm: }
- rid: 4201949899492425781 - rid: 4201950380202393681
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data: data:
name: LeftOutput name: Left Output
parent: parent:
rid: 4201950130928878096 rid: 4201950380202393746
bias: {x: 0, y: 0, z: 1} bias: {x: 0, y: 0, z: 2}
_synapses: _synapses:
- neuron: - neuron:
rid: 4201950130928878008 rid: 4201950380202393745
weight: 2 weight: 4
combinator: 0 combinator: 0
_activator: 0 _activator: 0
persistOutput: 0 persistOutput: 0
lastUpdate: 16.974697 lastUpdate: 0
breakOnUpdate: 0 breakOnUpdate: 0
_receivers: [] _receivers: []
- rid: 4201949899492425817 - rid: 4201950380202393683
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data: data:
name: LeftSensor name: Right Output
parent: parent:
rid: 4201950130928878096 rid: 4201950380202393746
bias: {x: 0.16047569, y: 0.16047569, z: 0.16047569} bias: {x: 0, y: 0, z: 2}
_synapses:
- neuron:
rid: 4201950380202393748
weight: 4
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers: []
- rid: 4201950380202393684
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Left Sensor
parent:
rid: 4201950380202393746
bias: {x: 0, y: 0, z: 0}
_synapses: [] _synapses: []
combinator: 0 combinator: 0
_activator: 0 _activator: 0
persistOutput: 0 persistOutput: 0
lastUpdate: 16.974697 lastUpdate: 0
breakOnUpdate: 0 breakOnUpdate: 0
_receivers: _receivers:
- rid: 4201950130928877961 - rid: 4201950380202393748
- rid: 4201950130928878009 - rid: 4201950380202393749
- rid: 4201950127862317404 - rid: 4201950380202393685
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data: data:
name: RightOutput name: Right Sensor
parent: parent:
rid: 4201950130928878096 rid: 4201950380202393746
bias: {x: 0, y: 0, z: 1} bias: {x: 0, y: 0, z: 0}
_synapses:
- neuron:
rid: 4201950130928878009
weight: 2
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 16.974697
breakOnUpdate: 0
_receivers: []
- rid: 4201950127862317405
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: RightSensor
parent:
rid: 4201950130928878096
bias: {x: 0.20599352, y: 0.20599352, z: 0.20599352}
_synapses: [] _synapses: []
combinator: 0 combinator: 0
_activator: 0 _activator: 0
persistOutput: 0 persistOutput: 0
lastUpdate: 16.974697 lastUpdate: 0
breakOnUpdate: 0 breakOnUpdate: 0
_receivers: _receivers:
- rid: 4201950130928877958 - rid: 4201950380202393745
- rid: 4201950130928878008 - rid: 4201950380202393747
- rid: 4201950130928877958 - rid: 4201950380202393745
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data: data:
name: InvRightSensor name: Right input
parent: parent:
rid: 4201950130928878096 rid: 4201950380202393746
bias: {x: 1, y: 1, z: 1} bias: {x: 1, y: 1, z: 1}
_synapses: _synapses:
- neuron: - neuron:
rid: 4201950127862317405 rid: 4201950380202393685
weight: -1 weight: 2
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 16.974697
breakOnUpdate: 0
_receivers:
- rid: 4201950130928878008
- rid: 4201950130928877961
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: InvLeftSensor
parent:
rid: 4201950130928878096
bias: {x: 1, y: 1, z: 1}
_synapses:
- neuron: - neuron:
rid: 4201949899492425817 rid: 4201950380202393747
weight: -1 weight: 2
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 16.974697
breakOnUpdate: 0
_receivers:
- rid: 4201950130928878009
- rid: 4201950130928878008
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: MaxedRight
parent:
rid: 4201950130928878096
bias: {x: 1, y: 1, z: 1}
_synapses:
- neuron:
rid: 4201950127862317405
weight: 1
- neuron:
rid: 4201950130928877958
weight: 1
combinator: 1 combinator: 1
_activator: 0 _activator: 0
persistOutput: 0 persistOutput: 0
lastUpdate: 16.974697 lastUpdate: 0
breakOnUpdate: 0 breakOnUpdate: 0
_receivers: _receivers:
- rid: 4201949899492425781 - rid: 4201950380202393681
- rid: 4201950130928878009 - rid: 4201950380202393746
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp} type: {class: Cluster, ns: NanoBrain, asm: NanoBrain}
data: data:
name: MaxedLeftSensor name: Empty Cluster
parent:
rid: 4201950130928878096
bias: {x: 1, y: 1, z: 1}
_synapses:
- neuron:
rid: 4201949899492425817
weight: 1
- neuron:
rid: 4201950130928877961
weight: 1
combinator: 1
_activator: 0
persistOutput: 0
lastUpdate: 16.974697
breakOnUpdate: 0
_receivers:
- rid: 4201950127862317404
- rid: 4201950130928878096
type: {class: Cluster, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Braitenberg 4a
parent: parent:
rid: -2 rid: -2
prefab: {fileID: 11400000} prefab: {fileID: 0}
version: 0 version: 0
instances: [] instances: []
instanceCount: 1 instanceCount: 1
nuclei: nuclei:
- rid: 4201949899492425781 - rid: 4201950380202393681
- rid: 4201949899492425817 - rid: 4201950380202393683
- rid: 4201950127862317404 - rid: 4201950380202393684
- rid: 4201950127862317405 - rid: 4201950380202393685
- rid: 4201950130928877958 - rid: 4201950380202393745
- rid: 4201950130928877961 - rid: 4201950380202393747
- rid: 4201950130928878008 - rid: 4201950380202393748
- rid: 4201950130928878009 - rid: 4201950380202393749
- rid: 4201950380202393747
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Inv. Right Sensor
parent:
rid: 4201950380202393746
bias: {x: 1, y: 1, z: 1}
_synapses:
- neuron:
rid: 4201950380202393685
weight: -1
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers:
- rid: 4201950380202393745
- rid: 4201950380202393748
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Left Input
parent:
rid: 4201950380202393746
bias: {x: 1, y: 1, z: 1}
_synapses:
- neuron:
rid: 4201950380202393684
weight: 2
- neuron:
rid: 4201950380202393749
weight: 2
combinator: 1
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers:
- rid: 4201950380202393683
- rid: 4201950380202393749
type: {class: Neuron, ns: NanoBrain, asm: NanoBrain}
data:
name: Inv. Left Sensor
parent:
rid: 4201950380202393746
bias: {x: 1, y: 1, z: 1}
_synapses:
- neuron:
rid: 4201950380202393684
weight: -1
combinator: 0
_activator: 0
persistOutput: 0
lastUpdate: 0
breakOnUpdate: 0
_receivers:
- rid: 4201950380202393748

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 9e5c2ff000eca6fb4b04bebff15f48c0 guid: 883224efe6d0e95d6be6ab0aa89f5d52
NativeFormatImporter: NativeFormatImporter:
externalObjects: {} externalObjects: {}
mainObjectFileID: 11400000 mainObjectFileID: 11400000

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,3 @@
{
"reference": "GUID:5e22d5139c60b8f8f86da023bf9a1166"
}

View File

@ -1,7 +1,6 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: bfabad5d9a017e3a1beff266e1c3154c guid: 96b376c40594c29e09902dd6c1b8c01c
folderAsset: yes AssemblyDefinitionReferenceImporter:
DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:
assetBundleName: assetBundleName:

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
value: -0.3 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.y propertyPath: m_LocalPosition.y
@ -22,7 +22,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.z propertyPath: m_LocalPosition.z
value: -2 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalRotation.w propertyPath: m_LocalRotation.w
@ -52,13 +52,17 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 449746320909641321, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_Name
value: Right Sensor
objectReference: {fileID: 0}
- target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: maxTorque propertyPath: maxTorque
value: 10 value: 10
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: outputNeuronName propertyPath: outputNeuronName
value: LeftOutput value: Left Output
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 3243811853767288093, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 3243811853767288093, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalRotation.w propertyPath: m_LocalRotation.w
@ -72,6 +76,10 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 5526084556521277228, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_Name
value: Left Sensor
objectReference: {fileID: 0}
- target: {fileID: 6470252300495393990, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 6470252300495393990, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: sensitivityAngle propertyPath: sensitivityAngle
value: 180 value: 180
@ -86,7 +94,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 7548586118443431667, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 7548586118443431667, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: outputNeuronName propertyPath: outputNeuronName
value: RightOutput value: Right Output
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8033821533423679009, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 8033821533423679009, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalRotation.w propertyPath: m_LocalRotation.w
@ -100,6 +108,598 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.name
value: Braitenberg 2a
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.prefab
value:
objectReference: {fileID: 11400000, guid: ad252b7f7490a41038c51c23d32ea6c4, type: 2}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.version
value: 205
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.nuclei.Array.size
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[0]'
value: 4201950380202393691
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[1]'
value: 4201950380202393692
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[2]'
value: 4201950380202393693
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[3]'
value: 4201950380202393694
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393686]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393687]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393688]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393689]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393690]'
value: NanoBrain NanoBrain.Cluster
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393691]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393692]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393693]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393694]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393695]'
value: NanoBrain NanoBrain.Cluster
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686].name
value: Left Output
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687].name
value: Right Output
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393688].name
value: Left Sensor
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393689].name
value: Right Sensor
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393690].name
value: Braitenberg 2a
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691].name
value: Left Output
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692].name
value: Right Output
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393693].name
value: Right Sensor
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393694].name
value: Left Sensor
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393695].name
value: Braitenberg 2a
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686].bias.z
value: 2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686].parent
value: 4201950380202393690
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687].bias.z
value: 2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687].parent
value: 4201950380202393690
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393688].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393688].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393688].bias.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393688].parent
value: 4201950380202393690
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393689].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393689].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393689].bias.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393689].parent
value: 4201950380202393690
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393690].parent
value: -2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393690].prefab
value:
objectReference: {fileID: 11400000, guid: ad252b7f7490a41038c51c23d32ea6c4, type: 2}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691].bias.z
value: 2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691].parent
value: 4201950380202393695
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692].bias.z
value: 2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692].parent
value: 4201950380202393695
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393693].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393693].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393693].bias.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393693].parent
value: 4201950380202393695
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393694].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393694].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393694].bias.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393694].parent
value: 4201950380202393695
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393695].parent
value: -2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393695].prefab
value:
objectReference: {fileID: 11400000, guid: ad252b7f7490a41038c51c23d32ea6c4, type: 2}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393690].version
value: 186
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393695].version
value: 205
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686].lastUpdate
value: 60.089603
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687].lastUpdate
value: 60.089603
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393688]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393688].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393688].lastUpdate
value: 60.089603
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393689]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393689].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393689].lastUpdate
value: 60.089603
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691].lastUpdate
value: 73.88493
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692].lastUpdate
value: 73.88493
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393693]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393693].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393693].lastUpdate
value: 73.88493
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393694]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393694].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393694].lastUpdate
value: 73.88493
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393688].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393688].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393689].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393689].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393690].instanceCount
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393693].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393693].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393694].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393694].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393695].instanceCount
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393690].nuclei.Array.size
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393695].nuclei.Array.size
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686]._synapses.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687]._synapses.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393688]._synapses.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393689]._synapses.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393690].instances.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393690].nuclei.Array.data[0]'
value: 4201950380202393686
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393690].nuclei.Array.data[1]'
value: 4201950380202393687
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393690].nuclei.Array.data[2]'
value: 4201950380202393688
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393690].nuclei.Array.data[3]'
value: 4201950380202393689
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691]._synapses.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692]._synapses.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393693]._synapses.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393694]._synapses.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393695].instances.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393695].nuclei.Array.data[0]'
value: 4201950380202393691
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393695].nuclei.Array.data[1]'
value: 4201950380202393692
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393695].nuclei.Array.data[2]'
value: 4201950380202393693
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393695].nuclei.Array.data[3]'
value: 4201950380202393694
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686]._receivers.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687]._receivers.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393688]._receivers.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393689]._receivers.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691]._receivers.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692]._receivers.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393693]._receivers.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393694]._receivers.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393688]._receivers.Array.data[0]'
value: 4201950380202393687
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393689]._receivers.Array.data[0]'
value: 4201950380202393686
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393693]._receivers.Array.data[0]'
value: 4201950380202393692
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393694]._receivers.Array.data[0]'
value: 4201950380202393691
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686]._synapses.Array.data[0].neuron
value: 4201950380202393689
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393686]._synapses.Array.data[0].weight
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687]._synapses.Array.data[0].neuron
value: 4201950380202393688
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393687]._synapses.Array.data[0].weight
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691]._synapses.Array.data[0].neuron
value: 4201950380202393694
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393691]._synapses.Array.data[0].weight
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692]._synapses.Array.data[0].neuron
value: 4201950380202393693
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393692]._synapses.Array.data[0].weight
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8280937452374640854, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 8280937452374640854, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain propertyPath: brain
value: value:

View File

@ -14,7 +14,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
value: -0.3 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.y propertyPath: m_LocalPosition.y
@ -22,7 +22,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.z propertyPath: m_LocalPosition.z
value: -2 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalRotation.w propertyPath: m_LocalRotation.w
@ -52,13 +52,17 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 449746320909641321, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_Name
value: Right Sensor
objectReference: {fileID: 0}
- target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: maxTorque propertyPath: maxTorque
value: 10 value: 10
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: outputNeuronName propertyPath: outputNeuronName
value: LeftOutput value: Left Output
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 3243811853767288093, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 3243811853767288093, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalRotation.w propertyPath: m_LocalRotation.w
@ -76,6 +80,10 @@ PrefabInstance:
propertyPath: m_Constraints propertyPath: m_Constraints
value: 64 value: 64
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 5526084556521277228, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_Name
value: Left Sensor
objectReference: {fileID: 0}
- target: {fileID: 6470252300495393990, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 6470252300495393990, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: sensitivityAngle propertyPath: sensitivityAngle
value: 180 value: 180
@ -90,7 +98,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 7548586118443431667, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 7548586118443431667, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: outputNeuronName propertyPath: outputNeuronName
value: RightOutput value: Right Output
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8033821533423679009, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 8033821533423679009, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalRotation.w propertyPath: m_LocalRotation.w
@ -104,6 +112,318 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.name
value: Braitenberg 2b
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.prefab
value:
objectReference: {fileID: 11400000, guid: 7c70ff58a4d982376aef8caeae7d10c4, type: 2}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.version
value: 245
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.nuclei.Array.size
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[0]'
value: 4201950380202393712
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[1]'
value: 4201950380202393713
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[2]'
value: 4201950380202393714
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[3]'
value: 4201950380202393715
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393712]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393713]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393714]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393715]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393716]'
value: NanoBrain NanoBrain.Cluster
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712].name
value: Left Output
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713].name
value: Right Output
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393714].name
value: Left Sensor
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393715].name
value: Right Sensor
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393716].name
value: Braitenberg 2b
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712].bias.z
value: 2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712].parent
value: 4201950380202393716
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713].bias.z
value: 2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713].parent
value: 4201950380202393716
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393714].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393714].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393714].bias.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393714].parent
value: 4201950380202393716
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393715].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393715].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393715].bias.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393715].parent
value: 4201950380202393716
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393716].parent
value: -2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393716].prefab
value:
objectReference: {fileID: 11400000, guid: 7c70ff58a4d982376aef8caeae7d10c4, type: 2}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393716].version
value: 245
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712].lastUpdate
value: 28.075897
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713].lastUpdate
value: 28.075897
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393714]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393714].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393714].lastUpdate
value: 28.075897
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393715]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393715].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393715].lastUpdate
value: 28.075897
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393714].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393714].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393715].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393715].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393716].instanceCount
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393716].nuclei.Array.size
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712]._synapses.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713]._synapses.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393714]._synapses.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393715]._synapses.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393716].instances.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393716].nuclei.Array.data[0]'
value: 4201950380202393712
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393716].nuclei.Array.data[1]'
value: 4201950380202393713
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393716].nuclei.Array.data[2]'
value: 4201950380202393714
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393716].nuclei.Array.data[3]'
value: 4201950380202393715
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712]._receivers.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713]._receivers.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393714]._receivers.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393715]._receivers.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393714]._receivers.Array.data[0]'
value: 4201950380202393713
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393715]._receivers.Array.data[0]'
value: 4201950380202393712
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712]._synapses.Array.data[0].neuron
value: 4201950380202393715
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393712]._synapses.Array.data[0].weight
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713]._synapses.Array.data[0].neuron
value: 4201950380202393714
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393713]._synapses.Array.data[0].weight
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8280937452374640854, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 8280937452374640854, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain propertyPath: brain
value: value:

View File

@ -14,7 +14,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
value: -0.3 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.y propertyPath: m_LocalPosition.y
@ -22,7 +22,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.z propertyPath: m_LocalPosition.z
value: -2 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalRotation.w propertyPath: m_LocalRotation.w
@ -52,13 +52,17 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 449746320909641321, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_Name
value: Right Sensor
objectReference: {fileID: 0}
- target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: maxTorque propertyPath: maxTorque
value: 10 value: 10
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: outputNeuronName propertyPath: outputNeuronName
value: LeftOutput value: Left Output
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 3243811853767288093, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 3243811853767288093, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalRotation.w propertyPath: m_LocalRotation.w
@ -76,6 +80,10 @@ PrefabInstance:
propertyPath: m_Constraints propertyPath: m_Constraints
value: 64 value: 64
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 5526084556521277228, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_Name
value: Left Sensor
objectReference: {fileID: 0}
- target: {fileID: 6470252300495393990, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 6470252300495393990, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: sensitivityAngle propertyPath: sensitivityAngle
value: 180 value: 180
@ -90,7 +98,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 7548586118443431667, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 7548586118443431667, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: outputNeuronName propertyPath: outputNeuronName
value: RightOutput value: Right Output
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8033821533423679009, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 8033821533423679009, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalRotation.w propertyPath: m_LocalRotation.w
@ -104,6 +112,318 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.name
value: Braitenberg 3a
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.prefab
value:
objectReference: {fileID: 11400000, guid: 14e320f73f1aa3550b2f165832b336bf, type: 2}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.version
value: 207
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.nuclei.Array.size
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[0]'
value: 4201950380202393719
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[1]'
value: 4201950380202393720
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[2]'
value: 4201950380202393721
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[3]'
value: 4201950380202393722
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393719]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393720]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393721]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393722]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393723]'
value: NanoBrain NanoBrain.Cluster
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719].name
value: Left Output
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720].name
value: Right Output
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393721].name
value: Right Sensor
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393722].name
value: Left Sensor
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393723].name
value: Braitenberg 3a
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719].bias.z
value: 2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719].parent
value: 4201950380202393723
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720].bias.z
value: 2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720].parent
value: 4201950380202393723
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393721].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393721].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393721].bias.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393721].parent
value: 4201950380202393723
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393722].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393722].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393722].bias.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393722].parent
value: 4201950380202393723
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393723].parent
value: -2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393723].prefab
value:
objectReference: {fileID: 11400000, guid: 14e320f73f1aa3550b2f165832b336bf, type: 2}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393723].version
value: 207
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719].lastUpdate
value: 139.58458
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720].lastUpdate
value: 139.58458
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393721]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393721].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393721].lastUpdate
value: 139.58458
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393722]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393722].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393722].lastUpdate
value: 139.58458
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393721].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393721].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393722].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393722].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393723].instanceCount
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393723].nuclei.Array.size
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719]._synapses.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720]._synapses.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393721]._synapses.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393722]._synapses.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393723].instances.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393723].nuclei.Array.data[0]'
value: 4201950380202393719
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393723].nuclei.Array.data[1]'
value: 4201950380202393720
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393723].nuclei.Array.data[2]'
value: 4201950380202393721
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393723].nuclei.Array.data[3]'
value: 4201950380202393722
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719]._receivers.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720]._receivers.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393721]._receivers.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393722]._receivers.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393721]._receivers.Array.data[0]'
value: 4201950380202393720
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393722]._receivers.Array.data[0]'
value: 4201950380202393719
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719]._synapses.Array.data[0].neuron
value: 4201950380202393722
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393719]._synapses.Array.data[0].weight
value: -4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720]._synapses.Array.data[0].neuron
value: 4201950380202393721
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393720]._synapses.Array.data[0].weight
value: -4
objectReference: {fileID: 0}
- target: {fileID: 8280937452374640854, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 8280937452374640854, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain propertyPath: brain
value: value:

View File

@ -14,7 +14,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
value: -0.3 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.y propertyPath: m_LocalPosition.y
@ -22,7 +22,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.z propertyPath: m_LocalPosition.z
value: -2 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalRotation.w propertyPath: m_LocalRotation.w
@ -52,13 +52,17 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 449746320909641321, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_Name
value: Right Sensor
objectReference: {fileID: 0}
- target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: maxTorque propertyPath: maxTorque
value: 10 value: 10
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 2164057505425015568, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: outputNeuronName propertyPath: outputNeuronName
value: LeftOutput value: Left Output
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 3243811853767288093, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 3243811853767288093, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalRotation.w propertyPath: m_LocalRotation.w
@ -76,6 +80,10 @@ PrefabInstance:
propertyPath: m_Constraints propertyPath: m_Constraints
value: 64 value: 64
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 5526084556521277228, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_Name
value: Left Sensor
objectReference: {fileID: 0}
- target: {fileID: 6470252300495393990, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 6470252300495393990, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: sensitivityAngle propertyPath: sensitivityAngle
value: 180 value: 180
@ -90,7 +98,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 7548586118443431667, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 7548586118443431667, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: outputNeuronName propertyPath: outputNeuronName
value: RightOutput value: Right Output
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8033821533423679009, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 8033821533423679009, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalRotation.w propertyPath: m_LocalRotation.w
@ -104,6 +112,318 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.name
value: Braitenberg 3b
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.prefab
value:
objectReference: {fileID: 11400000, guid: 9a5c0426df5b011029a37f760f34e248, type: 2}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.version
value: 247
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.nuclei.Array.size
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[0]'
value: 4201950380202393730
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[1]'
value: 4201950380202393731
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[2]'
value: 4201950380202393732
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'brain.nuclei.Array.data[3]'
value: 4201950380202393733
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393730]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393731]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393732]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393733]'
value: NanoBrain NanoBrain.Neuron
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393734]'
value: NanoBrain NanoBrain.Cluster
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730].name
value: Left Output
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731].name
value: Right Output
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393732].name
value: Left Sensor
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393733].name
value: Right Sensor
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393734].name
value: Braitenberg 3b
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730].bias.z
value: 2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730].parent
value: 4201950380202393734
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731].bias.z
value: 2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731].parent
value: 4201950380202393734
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393732].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393732].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393732].bias.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393732].parent
value: 4201950380202393734
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393733].bias.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393733].bias.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393733].bias.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393733].parent
value: 4201950380202393734
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393734].parent
value: -2
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393734].prefab
value:
objectReference: {fileID: 11400000, guid: 9a5c0426df5b011029a37f760f34e248, type: 2}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393734].version
value: 247
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730].lastUpdate
value: 24.107925
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731].lastUpdate
value: 24.107925
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393732]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393732].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393732].lastUpdate
value: 24.107925
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393733]._activator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393733].combinator
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393733].lastUpdate
value: 24.107925
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393732].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393732].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393733].breakOnUpdate
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393733].persistOutput
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393734].instanceCount
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393734].nuclei.Array.size
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730]._synapses.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731]._synapses.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393732]._synapses.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393733]._synapses.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393734].instances.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393734].nuclei.Array.data[0]'
value: 4201950380202393730
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393734].nuclei.Array.data[1]'
value: 4201950380202393731
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393734].nuclei.Array.data[2]'
value: 4201950380202393732
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393734].nuclei.Array.data[3]'
value: 4201950380202393733
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730]._receivers.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731]._receivers.Array.size
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393732]._receivers.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393733]._receivers.Array.size
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393732]._receivers.Array.data[0]'
value: 4201950380202393731
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: 'managedReferences[4201950380202393733]._receivers.Array.data[0]'
value: 4201950380202393730
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730]._synapses.Array.data[0].neuron
value: 4201950380202393733
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393730]._synapses.Array.data[0].weight
value: 4
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731]._synapses.Array.data[0].neuron
value: 4201950380202393732
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: managedReferences[4201950380202393731]._synapses.Array.data[0].weight
value: -4
objectReference: {fileID: 0}
- target: {fileID: 8280937452374640854, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 8280937452374640854, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain propertyPath: brain
value: value:

File diff suppressed because it is too large Load Diff

View File

@ -10,15 +10,15 @@ PrefabInstance:
m_Modifications: m_Modifications:
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
value: 0.90579
objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.y
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.y
value: 0.05
objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalPosition.z propertyPath: m_LocalPosition.z
value: -0.89558 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 316960764248479223, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: m_LocalRotation.w propertyPath: m_LocalRotation.w
@ -60,6 +60,14 @@ PrefabInstance:
propertyPath: outputNeuronName propertyPath: outputNeuronName
value: RightOutput value: RightOutput
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: sensorLeft
value:
objectReference: {fileID: 0}
- target: {fileID: 8270881318108795354, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: sensorRight
value:
objectReference: {fileID: 0}
- target: {fileID: 8280937452374640854, guid: c0398fc7a48853d47acb42e4e3498383, type: 3} - target: {fileID: 8280937452374640854, guid: c0398fc7a48853d47acb42e4e3498383, type: 3}
propertyPath: brain.name propertyPath: brain.name
value: Braitenberg 3b value: Braitenberg 3b
@ -1265,7 +1273,6 @@ MonoBehaviour:
senseLayer: senseLayer:
serializedVersion: 2 serializedVersion: 2
m_Bits: 0 m_Bits: 0
_output: 0
sensoryNeuron: sensoryNeuron:
name: name:
parent: parent:
@ -1278,7 +1285,6 @@ MonoBehaviour:
lastUpdate: 0 lastUpdate: 0
breakOnUpdate: 0 breakOnUpdate: 0
_receivers: [] _receivers: []
touching: 0
references: references:
version: 2 version: 2
RefIds: RefIds:
@ -1353,7 +1359,6 @@ MonoBehaviour:
senseLayer: senseLayer:
serializedVersion: 2 serializedVersion: 2
m_Bits: 0 m_Bits: 0
_output: 0
sensoryNeuron: sensoryNeuron:
name: name:
parent: parent:
@ -1366,7 +1371,6 @@ MonoBehaviour:
lastUpdate: 0 lastUpdate: 0
breakOnUpdate: 0 breakOnUpdate: 0
_receivers: [] _receivers: []
touching: 0
references: references:
version: 2 version: 2
RefIds: RefIds:

View File

@ -50,7 +50,6 @@ MonoBehaviour:
senseLayer: senseLayer:
serializedVersion: 2 serializedVersion: 2
m_Bits: 4294967295 m_Bits: 4294967295
_output: 0
sensoryNeuron: sensoryNeuron:
name: name:
parent: parent:
@ -65,7 +64,6 @@ MonoBehaviour:
_receivers: [] _receivers: []
useOcclusion: 1 useOcclusion: 1
sensitivityAngle: 90 sensitivityAngle: 90
multiplier: 1
references: references:
version: 2 version: 2
RefIds: RefIds:
@ -208,7 +206,6 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: Assembly-CSharp::Motor m_EditorClassIdentifier: Assembly-CSharp::Motor
outputNeuronName: Output outputNeuronName: Output
speed: 0
maxTorque: 10 maxTorque: 10
wheelCollider: {fileID: 0} wheelCollider: {fileID: 0}
motorNeuron: motorNeuron:
@ -404,7 +401,6 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: Assembly-CSharp::Motor m_EditorClassIdentifier: Assembly-CSharp::Motor
outputNeuronName: Output outputNeuronName: Output
speed: 0
maxTorque: 10 maxTorque: 10
wheelCollider: {fileID: 0} wheelCollider: {fileID: 0}
motorNeuron: motorNeuron:
@ -513,7 +509,6 @@ MonoBehaviour:
senseLayer: senseLayer:
serializedVersion: 2 serializedVersion: 2
m_Bits: 4294967295 m_Bits: 4294967295
_output: 0
sensoryNeuron: sensoryNeuron:
name: name:
parent: parent:
@ -528,7 +523,6 @@ MonoBehaviour:
_receivers: [] _receivers: []
useOcclusion: 1 useOcclusion: 1
sensitivityAngle: 90 sensitivityAngle: 90
multiplier: 1
references: references:
version: 2 version: 2
RefIds: RefIds:
@ -656,7 +650,7 @@ GameObject:
m_Component: m_Component:
- component: {fileID: 316960764248479223} - component: {fileID: 316960764248479223}
- component: {fileID: 4375230766388568734} - component: {fileID: 4375230766388568734}
- component: {fileID: 8280937452374640854} - component: {fileID: 8270881318108795354}
m_Layer: 0 m_Layer: 0
m_Name: Vehicle m_Name: Vehicle
m_TagString: Untagged m_TagString: Untagged
@ -713,7 +707,7 @@ Rigidbody:
m_Interpolate: 0 m_Interpolate: 0
m_Constraints: 64 m_Constraints: 64
m_CollisionDetection: 0 m_CollisionDetection: 0
--- !u!114 &8280937452374640854 --- !u!114 &8270881318108795354
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
@ -724,15 +718,15 @@ MonoBehaviour:
m_EditorHideFlags: 0 m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: a8d53357b6673864d91bbc5c595d48b9, type: 3} m_Script: {fileID: 11500000, guid: a8d53357b6673864d91bbc5c595d48b9, type: 3}
m_Name: m_Name:
m_EditorClassIdentifier: Assembly-CSharp::Breitenberg.Vehicle m_EditorClassIdentifier: NanoBrain::NanoBrain.Unity.Braitenberg.Vehicle
brain: brain:
name: name: Empty Cluster
parent: parent:
rid: -2 rid: -2
prefab: {fileID: 0} prefab: {fileID: 0}
version: 0 version: 0
instances: [] instances: []
instanceCount: 0 instanceCount: 1
nuclei: [] nuclei: []
motorLeft: {fileID: 2164057505425015568} motorLeft: {fileID: 2164057505425015568}
motorRight: {fileID: 7548586118443431667} motorRight: {fileID: 7548586118443431667}

View File

@ -49,9 +49,6 @@ namespace NanoBrain.Unity.Braitenberg {
/// Retrieve the motor neuron from the outputNeuronName; /// Retrieve the motor neuron from the outputNeuronName;
/// </summary> /// </summary>
private void GetMotorNeuron() { private void GetMotorNeuron() {
if (motorNeuron != null)
return;
Vehicle vehicle = GetComponentInParent<Vehicle>(); Vehicle vehicle = GetComponentInParent<Vehicle>();
if (vehicle == null) if (vehicle == null)
return; return;

View File

@ -1,802 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3}
m_Name: Identity
m_EditorClassIdentifier: Assembly-CSharp::ClusterPrefab
nuclei:
- rid: 2262690531574022216
- rid: 2642584026360840247
- rid: 2642584026360840250
- rid: 2642584026360840251
- rid: 2642584026360840252
- rid: 2642584026360840253
- rid: 2642584026360840256
- rid: 2642584026360840264
- rid: 2642584026360840265
- rid: 2642584026360840266
- rid: 2642584026360840267
references:
version: 2
RefIds:
- rid: -2
type: {class: , ns: , asm: }
- rid: 2262690531574022216
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Output
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
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
_receivers: []
- rid: 2642584026360840247
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
bias: {x: 0, y: 0, z: 0}
_synapses:
- neuron:
rid: 2642584026360840250
weight: 1
- neuron:
rid: 2642584026360840251
weight: 1
- neuron:
rid: 2642584026360840252
weight: 1
- neuron:
rid: 2642584026360840253
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
_receivers:
- rid: 2642584026360840248
- rid: 2642584026360840248
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Output
clusterPrefab: {fileID: 11400000}
parent:
rid: 2642584026360840249
trace: 0
bias: {x: 0, y: 0, z: 0}
_synapses:
- neuron:
rid: 2642584026360840247
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
_receivers: []
- rid: 2642584026360840249
type: {class: Cluster, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Identity (Instance)
clusterPrefab: {fileID: 0}
parent:
rid: -2
trace: 0
bias: {x: 0, y: 0, z: 0}
_synapses: []
prefab: {fileID: 11400000}
clusterNuclei:
- rid: 2642584026360840248
- rid: 2642584026360840250
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
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
_receivers:
- rid: 2642584026360840247
- rid: 2642584026360840251
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
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
_receivers:
- rid: 2642584026360840247
- rid: 2642584026360840252
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
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
_receivers:
- rid: 2642584026360840247
- rid: 2642584026360840253
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
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
_receivers:
- rid: 2642584026360840247
- rid: 2642584026360840256
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
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
_receivers:
- rid: 2642584026360840257
- rid: 2642584026360840257
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Output
clusterPrefab: {fileID: 11400000}
parent:
rid: 2642584026360840258
trace: 0
bias: {x: 0, y: 0, z: 0}
_synapses:
- neuron:
rid: 2642584026360840256
weight: 1
- neuron:
rid: 2642584026360840264
weight: 1
- neuron:
rid: 2642584026360840265
weight: 1
- neuron:
rid: 2642584026360840266
weight: 1
- neuron:
rid: 2642584026360840267
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
_receivers: []
- rid: 2642584026360840258
type: {class: Cluster, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Identity (Instance)
clusterPrefab: {fileID: 0}
parent:
rid: -2
trace: 0
bias: {x: 0, y: 0, z: 0}
_synapses: []
prefab: {fileID: 11400000}
clusterNuclei:
- rid: 2642584026360840257
- rid: 2642584026360840259
- rid: 2642584026360840260
- rid: 2642584026360840261
- rid: 2642584026360840262
- rid: 2642584026360840263
- rid: 2642584026360840259
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: 2642584026360840258
trace: 0
bias: {x: 0, y: 0, z: 0}
_synapses:
- neuron:
rid: 2642584026360840260
weight: 1
- neuron:
rid: 2642584026360840261
weight: 1
- neuron:
rid: 2642584026360840262
weight: 1
- neuron:
rid: 2642584026360840263
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
_receivers: []
- rid: 2642584026360840260
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: 2642584026360840258
trace: 0
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
_receivers:
- rid: 2642584026360840259
- rid: 2642584026360840261
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: 2642584026360840258
trace: 0
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
_receivers:
- rid: 2642584026360840259
- rid: 2642584026360840262
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: 2642584026360840258
trace: 0
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
_receivers:
- rid: 2642584026360840259
- rid: 2642584026360840263
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: 2642584026360840258
trace: 0
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
_receivers:
- rid: 2642584026360840259
- rid: 2642584026360840264
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
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
_receivers:
- rid: 2642584026360840257
- rid: 2642584026360840265
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
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
_receivers:
- rid: 2642584026360840257
- rid: 2642584026360840266
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
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
_receivers:
- rid: 2642584026360840257
- rid: 2642584026360840267
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: New neuron
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
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
_receivers:
- rid: 2642584026360840257

View File

@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 5f4d2ea0d0115b3549f8e9aa5e669163
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -1,132 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 60a957541c24c57e78018c202ebb1d9b, type: 3}
m_Name: Velocity
m_EditorClassIdentifier: Assembly-CSharp::NanoBrain.ClusterPrefab
nuclei:
- rid: 2642584026360840192
- rid: 2642584026360840193
- rid: 2642584026360840194
references:
version: 2
RefIds:
- rid: -2
type: {class: , ns: , asm: }
- rid: 2642584026360840192
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Velocity
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
bias: {x: 0, y: 0, z: 0}
_synapses:
- neuron:
rid: 2642584026360840193
weight: 1
- neuron:
rid: 2642584026360840194
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
_receivers: []
- rid: 2642584026360840193
type: {class: Neuron, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Position
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
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
_receivers:
- rid: 2642584026360840192
- rid: 2642584026360840194
- rid: 2642584026360840194
type: {class: MemoryCell, ns: NanoBrain, asm: Assembly-CSharp}
data:
name: Last Position
clusterPrefab: {fileID: 11400000}
parent:
rid: -2
trace: 0
bias: {x: 0, y: 0, z: 0}
_synapses:
- neuron:
rid: 2642584026360840193
weight: 1
combinator: 0
_curvePreset: 0
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
curveMax: 1
_receivers:
- rid: 2642584026360840192
staticMemory: 0

View File

@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 61354a7773d5f24439c8ab5622728094
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -1,7 +1,6 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 7899cbd2693a6295c96724901087cd7f guid: 2910743b7bd7ec9978dc15c15f29649f
folderAsset: yes TextScriptImporter:
DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:
assetBundleName: assetBundleName: