├── .gitignore ├── Assets ├── BTs.meta ├── BTs │ ├── BenchmarkBT.asset │ ├── BenchmarkBT.asset.meta │ ├── ExperimentalBT.asset │ ├── ExperimentalBT.asset.meta │ ├── ParallelsAndInterrupts.asset │ ├── ParallelsAndInterrupts.asset.meta │ ├── ReactiveExample.asset │ └── ReactiveExample.asset.meta ├── Plugins.meta └── Plugins │ ├── AutonomousAgents.meta │ ├── AutonomousAgents │ ├── Editor.meta │ ├── Editor │ │ ├── AgentMenuCreator.cs │ │ ├── AgentMenuCreator.cs.meta │ │ ├── Path2DEditor.cs │ │ └── Path2DEditor.cs.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Paths.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── Circle.png │ │ │ ├── Circle.png.meta │ │ │ ├── Large White Grid.png │ │ │ ├── Large White Grid.png.meta │ │ │ ├── Square.png │ │ │ ├── Square.png.meta │ │ │ ├── Triangle.png │ │ │ ├── Triangle.png.meta │ │ │ ├── Ultra White Grid.png │ │ │ ├── Ultra White Grid.png.meta │ │ │ ├── White Grid.png │ │ │ └── White Grid.png.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── AgentsDisplayScene.unity │ │ ├── AgentsDisplayScene.unity.meta │ │ ├── AgentsTestScene.unity │ │ └── AgentsTestScene.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Agent2D.cs │ │ ├── Agent2D.cs.meta │ │ ├── AreaWarp2D.cs │ │ ├── AreaWarp2D.cs.meta │ │ ├── AutonomousAgent2D.cs │ │ ├── AutonomousAgent2D.cs.meta │ │ ├── FlockGroup2D.cs │ │ ├── FlockGroup2D.cs.meta │ │ ├── Path2D.cs │ │ ├── Path2D.cs.meta │ │ ├── Sensors.meta │ │ ├── Sensors │ │ ├── AgentSensor2D.cs │ │ ├── AgentSensor2D.cs.meta │ │ ├── ArriveSensor2D.cs │ │ ├── ArriveSensor2D.cs.meta │ │ ├── EvadeSensor2D.cs │ │ ├── EvadeSensor2D.cs.meta │ │ ├── ObjectSensor2D.cs │ │ ├── ObjectSensor2D.cs.meta │ │ ├── ObstacleSensor2D.cs │ │ └── ObstacleSensor2D.cs.meta │ │ ├── Steering.meta │ │ ├── Steering │ │ ├── Alignment2D.cs │ │ ├── Alignment2D.cs.meta │ │ ├── Arrive2D.cs │ │ ├── Arrive2D.cs.meta │ │ ├── Cohesion2D.cs │ │ ├── Cohesion2D.cs.meta │ │ ├── Evade2D.cs │ │ ├── Evade2D.cs.meta │ │ ├── Flee2D.cs │ │ ├── Flee2D.cs.meta │ │ ├── Flocking2D.cs │ │ ├── Flocking2D.cs.meta │ │ ├── FollowMouse2D.cs │ │ ├── FollowMouse2D.cs.meta │ │ ├── FollowPath2D.cs │ │ ├── FollowPath2D.cs.meta │ │ ├── GroupSteering2D.cs │ │ ├── GroupSteering2D.cs.meta │ │ ├── Hide2D.cs │ │ ├── Hide2D.cs.meta │ │ ├── Homing2D.cs │ │ ├── Homing2D.cs.meta │ │ ├── Interpose2D.cs │ │ ├── Interpose2D.cs.meta │ │ ├── ObstacleAvoidance2D.cs │ │ ├── ObstacleAvoidance2D.cs.meta │ │ ├── OffsetPursuit2D.cs │ │ ├── OffsetPursuit2D.cs.meta │ │ ├── Pursuit2D.cs │ │ ├── Pursuit2D.cs.meta │ │ ├── Seek2D.cs │ │ ├── Seek2D.cs.meta │ │ ├── Separation2D.cs │ │ ├── Separation2D.cs.meta │ │ ├── SteeringBehavior2D.cs │ │ ├── SteeringBehavior2D.cs.meta │ │ ├── WallAvoidance2D.cs │ │ ├── WallAvoidance2D.cs.meta │ │ ├── Wander2D.cs │ │ └── Wander2D.cs.meta │ │ ├── Utilitiy.meta │ │ └── Utilitiy │ │ ├── DrawUtil.cs │ │ ├── DrawUtil.cs.meta │ │ ├── ExtensionMethods.cs │ │ └── ExtensionMethods.cs.meta │ ├── BonsaiBT.meta │ └── BonsaiBT │ ├── 3rdParty.meta │ ├── 3rdParty │ ├── NodeEditorFramework.meta │ ├── NodeEditorFramework │ │ ├── GUIScaleUtility.cs │ │ ├── GUIScaleUtility.cs.meta │ │ ├── License.txt │ │ └── License.txt.meta │ ├── Vexe.meta │ └── Vexe │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── Vexe.meta │ │ └── Vexe │ │ │ ├── Drawers.meta │ │ │ ├── Drawers │ │ │ ├── API.meta │ │ │ ├── API │ │ │ │ ├── Base.meta │ │ │ │ ├── Base │ │ │ │ │ ├── AttributeDrawer.cs │ │ │ │ │ ├── AttributeDrawer.cs.meta │ │ │ │ │ ├── BaseDrawer.cs │ │ │ │ │ ├── BaseDrawer.cs.meta │ │ │ │ │ ├── CompositeDrawer.cs │ │ │ │ │ ├── CompositeDrawer.cs.meta │ │ │ │ │ ├── ObjectDrawer.cs │ │ │ │ │ └── ObjectDrawer.cs.meta │ │ │ │ ├── Core.meta │ │ │ │ ├── Core │ │ │ │ │ ├── BasicDrawers.cs │ │ │ │ │ ├── BasicDrawers.cs.meta │ │ │ │ │ ├── DictionaryDrawer.cs │ │ │ │ │ ├── DictionaryDrawer.cs.meta │ │ │ │ │ ├── MethodDrawer.cs │ │ │ │ │ ├── MethodDrawer.cs.meta │ │ │ │ │ ├── NullableDrawer.cs │ │ │ │ │ ├── NullableDrawer.cs.meta │ │ │ │ │ ├── RecursiveDrawer.cs │ │ │ │ │ ├── RecursiveDrawer.cs.meta │ │ │ │ │ ├── SequenceDrawer.cs │ │ │ │ │ └── SequenceDrawer.cs.meta │ │ │ │ ├── MemberDrawersHandler.cs │ │ │ │ ├── MemberDrawersHandler.cs.meta │ │ │ │ ├── TypeDrawerMapper.cs │ │ │ │ └── TypeDrawerMapper.cs.meta │ │ │ ├── User.meta │ │ │ └── User │ │ │ │ ├── AnimVarDrawer.cs │ │ │ │ ├── AnimVarDrawer.cs.meta │ │ │ │ ├── AssignableDrawer.cs │ │ │ │ ├── AssignableDrawer.cs.meta │ │ │ │ ├── BetterVectorDrawer.cs │ │ │ │ ├── BetterVectorDrawer.cs.meta │ │ │ │ ├── ButtonDrawer.cs │ │ │ │ ├── ButtonDrawer.cs.meta │ │ │ │ ├── CommentDrawer.cs │ │ │ │ ├── CommentDrawer.cs.meta │ │ │ │ ├── ConstrainValueDrawers.cs │ │ │ │ ├── ConstrainValueDrawers.cs.meta │ │ │ │ ├── DraggableDrawer.cs │ │ │ │ ├── DraggableDrawer.cs.meta │ │ │ │ ├── EnumMaskDrawer.cs │ │ │ │ ├── EnumMaskDrawer.cs.meta │ │ │ │ ├── FilterDrawers.cs │ │ │ │ ├── FilterDrawers.cs.meta │ │ │ │ ├── InlineDrawer.cs │ │ │ │ ├── InlineDrawer.cs.meta │ │ │ │ ├── InputAxisDrawer.cs │ │ │ │ ├── InputAxisDrawer.cs.meta │ │ │ │ ├── OnChangedDrawer.cs │ │ │ │ ├── OnChangedDrawer.cs.meta │ │ │ │ ├── ParagraphDrawer.cs │ │ │ │ ├── ParagraphDrawer.cs.meta │ │ │ │ ├── PathDrawer.cs │ │ │ │ ├── PathDrawer.cs.meta │ │ │ │ ├── PopupDrawer.cs │ │ │ │ ├── PopupDrawer.cs.meta │ │ │ │ ├── RandomsDrawers.cs │ │ │ │ ├── RandomsDrawers.cs.meta │ │ │ │ ├── RegexDrawer.cs │ │ │ │ ├── RegexDrawer.cs.meta │ │ │ │ ├── ResourcePathDrawer.cs │ │ │ │ ├── ResourcePathDrawer.cs.meta │ │ │ │ ├── SelectEnumDrawer.cs │ │ │ │ ├── SelectEnumDrawer.cs.meta │ │ │ │ ├── SelectSceneDrawer.cs │ │ │ │ ├── SelectSceneDrawer.cs.meta │ │ │ │ ├── ShowTypeDrawer.cs │ │ │ │ ├── ShowTypeDrawer.cs.meta │ │ │ │ ├── SliderDrawers.cs │ │ │ │ ├── SliderDrawers.cs.meta │ │ │ │ ├── TagsDrawer.cs │ │ │ │ ├── TagsDrawer.cs.meta │ │ │ │ ├── WhiteSpaceDrawer.cs │ │ │ │ └── WhiteSpaceDrawer.cs.meta │ │ │ ├── Editors.meta │ │ │ ├── Editors │ │ │ ├── BaseBehaviourEditor.cs │ │ │ ├── BaseBehaviourEditor.cs.meta │ │ │ ├── BaseEditor.cs │ │ │ ├── BaseEditor.cs.meta │ │ │ ├── BaseScriptableObjectEditor.cs │ │ │ ├── BaseScriptableObjectEditor.cs.meta │ │ │ ├── Internal.meta │ │ │ └── Internal │ │ │ │ ├── CategoryDefinitionResolver.cs │ │ │ │ ├── CategoryDefinitionResolver.cs.meta │ │ │ │ ├── ConditionalVisibility.cs │ │ │ │ ├── ConditionalVisibility.cs.meta │ │ │ │ ├── MembersCategory.cs │ │ │ │ └── MembersCategory.cs.meta │ │ │ ├── GUIs.meta │ │ │ ├── GUIs │ │ │ ├── BaseGUI.meta │ │ │ ├── BaseGUI │ │ │ │ ├── BaseGUI.cs │ │ │ │ ├── BaseGUI.cs.meta │ │ │ │ ├── Controls.meta │ │ │ │ ├── Controls │ │ │ │ │ ├── Bounds.cs │ │ │ │ │ ├── Bounds.cs.meta │ │ │ │ │ ├── Boxes.cs │ │ │ │ │ ├── Boxes.cs.meta │ │ │ │ │ ├── Buttons.cs │ │ │ │ │ ├── Buttons.cs.meta │ │ │ │ │ ├── Colors.cs │ │ │ │ │ ├── Colors.cs.meta │ │ │ │ │ ├── Curves.cs │ │ │ │ │ ├── Curves.cs.meta │ │ │ │ │ ├── Doubles.cs │ │ │ │ │ ├── Doubles.cs.meta │ │ │ │ │ ├── DragDrop.cs │ │ │ │ │ ├── DragDrop.cs.meta │ │ │ │ │ ├── Enums.cs │ │ │ │ │ ├── Enums.cs.meta │ │ │ │ │ ├── Floats.cs │ │ │ │ │ ├── Floats.cs.meta │ │ │ │ │ ├── Foldouts.cs │ │ │ │ │ ├── Foldouts.cs.meta │ │ │ │ │ ├── Gradients.cs │ │ │ │ │ ├── Gradients.cs.meta │ │ │ │ │ ├── Ints.cs │ │ │ │ │ ├── Ints.cs.meta │ │ │ │ │ ├── Labels.cs │ │ │ │ │ ├── Labels.cs.meta │ │ │ │ │ ├── Layers.cs │ │ │ │ │ ├── Layers.cs.meta │ │ │ │ │ ├── Longs.cs │ │ │ │ │ ├── Longs.cs.meta │ │ │ │ │ ├── Masks.cs │ │ │ │ │ ├── Masks.cs.meta │ │ │ │ │ ├── Members.cs │ │ │ │ │ ├── Members.cs.meta │ │ │ │ │ ├── Objects.cs │ │ │ │ │ ├── Objects.cs.meta │ │ │ │ │ ├── Popups.cs │ │ │ │ │ ├── Popups.cs.meta │ │ │ │ │ ├── Quaternions.cs │ │ │ │ │ ├── Quaternions.cs.meta │ │ │ │ │ ├── Rects.cs │ │ │ │ │ ├── Rects.cs.meta │ │ │ │ │ ├── ScrollViews.cs │ │ │ │ │ ├── ScrollViews.cs.meta │ │ │ │ │ ├── Sliders.cs │ │ │ │ │ ├── Sliders.cs.meta │ │ │ │ │ ├── Spaces.cs │ │ │ │ │ ├── Spaces.cs.meta │ │ │ │ │ ├── Texts.cs │ │ │ │ │ ├── Texts.cs.meta │ │ │ │ │ ├── Toggles.cs │ │ │ │ │ ├── Toggles.cs.meta │ │ │ │ │ ├── Vectors.cs │ │ │ │ │ └── Vectors.cs.meta │ │ │ │ ├── GUIStyles.cs │ │ │ │ ├── GUIStyles.cs.meta │ │ │ │ ├── Layout.cs │ │ │ │ └── Layout.cs.meta │ │ │ ├── RabbitGUI.meta │ │ │ ├── RabbitGUI │ │ │ │ ├── Blocks.meta │ │ │ │ ├── Blocks │ │ │ │ │ ├── GUIBlock.cs │ │ │ │ │ ├── GUIBlock.cs.meta │ │ │ │ │ ├── HorizontalBlock.cs │ │ │ │ │ ├── HorizontalBlock.cs.meta │ │ │ │ │ ├── Others.cs │ │ │ │ │ ├── Others.cs.meta │ │ │ │ │ ├── VerticalBlock.cs │ │ │ │ │ └── VerticalBlock.cs.meta │ │ │ │ ├── GUIControl.cs │ │ │ │ ├── GUIControl.cs.meta │ │ │ │ ├── RabbitGUI.cs │ │ │ │ └── RabbitGUI.cs.meta │ │ │ ├── TurtleGUI.cs │ │ │ └── TurtleGUI.cs.meta │ │ │ ├── LICENSE.txt │ │ │ ├── LICENSE.txt.meta │ │ │ ├── Libs.meta │ │ │ ├── Libs │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ │ ├── EventExtensions.cs │ │ │ │ └── EventExtensions.cs.meta │ │ │ ├── Helpers.meta │ │ │ └── Helpers │ │ │ │ ├── DirectoryHelper.cs │ │ │ │ ├── DirectoryHelper.cs.meta │ │ │ │ ├── EditorHelper.cs │ │ │ │ ├── EditorHelper.cs.meta │ │ │ │ ├── GUIHelper.cs │ │ │ │ ├── GUIHelper.cs.meta │ │ │ │ ├── PrefabHelper.cs │ │ │ │ └── PrefabHelper.cs.meta │ │ │ ├── Types.meta │ │ │ ├── Types │ │ │ ├── BetterUndo.meta │ │ │ ├── BetterUndo │ │ │ │ ├── BetterUndo.cs │ │ │ │ ├── BetterUndo.cs.meta │ │ │ │ ├── Operations.meta │ │ │ │ └── Operations │ │ │ │ │ ├── BasicOp.cs │ │ │ │ │ ├── BasicOp.cs.meta │ │ │ │ │ ├── IUndoOp.cs │ │ │ │ │ ├── IUndoOp.cs.meta │ │ │ │ │ ├── ListOps.cs │ │ │ │ │ ├── ListOps.cs.meta │ │ │ │ │ ├── SelectionOp.cs │ │ │ │ │ ├── SelectionOp.cs.meta │ │ │ │ │ ├── SetVarOp.cs │ │ │ │ │ └── SetVarOp.cs.meta │ │ │ ├── EditorMember.cs │ │ │ ├── EditorMember.cs.meta │ │ │ ├── SelectionMemorizer.cs │ │ │ ├── SelectionMemorizer.cs.meta │ │ │ ├── VFWSettings.cs │ │ │ └── VFWSettings.cs.meta │ │ │ ├── Visibility.meta │ │ │ ├── Visibility │ │ │ ├── VisibilityAttributes.cs │ │ │ ├── VisibilityAttributes.cs.meta │ │ │ ├── VisibilityLogic.cs │ │ │ └── VisibilityLogic.cs.meta │ │ │ ├── Windows.meta │ │ │ └── Windows │ │ │ ├── BetterWindow.cs │ │ │ ├── BetterWindow.cs.meta │ │ │ ├── SelectionWindow.cs │ │ │ └── SelectionWindow.cs.meta │ │ ├── Vexe.meta │ │ └── Vexe │ │ ├── HISTORY.txt │ │ ├── HISTORY.txt.meta │ │ ├── LICENSE.txt │ │ ├── LICENSE.txt.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ ├── FastSave.meta │ │ ├── FastSave │ │ ├── Core.meta │ │ ├── Core │ │ │ ├── FSCommon.cs │ │ │ ├── FSCommon.cs.meta │ │ │ ├── Load.cs │ │ │ ├── Load.cs.meta │ │ │ ├── Save.cs │ │ │ └── Save.cs.meta │ │ ├── Other.meta │ │ ├── Other │ │ │ ├── FSAttributes.cs │ │ │ ├── FSAttributes.cs.meta │ │ │ ├── FSExtensions.cs │ │ │ ├── FSExtensions.cs.meta │ │ │ ├── FSMarker.cs │ │ │ ├── FSMarker.cs.meta │ │ │ ├── FSReference.cs │ │ │ └── FSReference.cs.meta │ │ ├── README.txt │ │ ├── README.txt.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── AssetStorage.asset │ │ │ ├── AssetStorage.asset.meta │ │ │ ├── PrefabStorage.asset │ │ │ └── PrefabStorage.asset.meta │ │ ├── Serializer.meta │ │ ├── Serializer │ │ │ ├── BasicSerializer.dll │ │ │ ├── BasicSerializer.dll.meta │ │ │ ├── BinaryX20.meta │ │ │ └── BinaryX20 │ │ │ │ ├── BinaryX20.cs │ │ │ │ ├── BinaryX20.cs.meta │ │ │ │ ├── Internal.meta │ │ │ │ ├── Internal │ │ │ │ ├── X20Logic.cs │ │ │ │ ├── X20Logic.cs.meta │ │ │ │ ├── X20Member.cs │ │ │ │ ├── X20Member.cs.meta │ │ │ │ ├── X20Reflection.cs │ │ │ │ └── X20Reflection.cs.meta │ │ │ │ ├── Serializers.meta │ │ │ │ └── Serializers │ │ │ │ ├── ArraySerializer.cs │ │ │ │ ├── ArraySerializer.cs.meta │ │ │ │ ├── BaseSerializer.cs │ │ │ │ ├── BaseSerializer.cs.meta │ │ │ │ ├── CollectionSerializer.cs │ │ │ │ ├── CollectionSerializer.cs.meta │ │ │ │ ├── DictionarySerializer.cs │ │ │ │ ├── DictionarySerializer.cs.meta │ │ │ │ ├── EnumSerializer.cs │ │ │ │ ├── EnumSerializer.cs.meta │ │ │ │ ├── ListSerializer.cs │ │ │ │ ├── ListSerializer.cs.meta │ │ │ │ ├── PrimitiveSerializer.cs │ │ │ │ ├── PrimitiveSerializer.cs.meta │ │ │ │ ├── ReflectiveSerializer.cs │ │ │ │ ├── ReflectiveSerializer.cs.meta │ │ │ │ ├── StrongSerializer.cs │ │ │ │ ├── StrongSerializer.cs.meta │ │ │ │ ├── TypeSerializer.cs │ │ │ │ ├── TypeSerializer.cs.meta │ │ │ │ ├── UnityStructs.cs │ │ │ │ └── UnityStructs.cs.meta │ │ ├── Serializers.meta │ │ ├── Serializers │ │ │ ├── AnimationSerializer.cs │ │ │ ├── AnimationSerializer.cs.meta │ │ │ ├── AssetReferenceSerializer.cs │ │ │ ├── AssetReferenceSerializer.cs.meta │ │ │ ├── ExplicitComponentSerializer.cs │ │ │ ├── ExplicitComponentSerializer.cs.meta │ │ │ ├── GameObjectSerializer.cs │ │ │ ├── GameObjectSerializer.cs.meta │ │ │ ├── LightSerializer.cs │ │ │ ├── LightSerializer.cs.meta │ │ │ ├── ReflectiveComponentSerializer.cs │ │ │ └── ReflectiveComponentSerializer.cs.meta │ │ ├── Storage.meta │ │ └── Storage │ │ │ ├── AssetStorage.cs │ │ │ ├── AssetStorage.cs.meta │ │ │ ├── PrefabStorage.cs │ │ │ └── PrefabStorage.cs.meta │ │ ├── Libs.meta │ │ ├── Libs │ │ ├── Extensions.meta │ │ ├── Extensions │ │ │ ├── AnimatorExtensions.cs │ │ │ ├── AnimatorExtensions.cs.meta │ │ │ ├── ComponentExtensions.cs │ │ │ ├── ComponentExtensions.cs.meta │ │ │ ├── DelegateExtensions.cs │ │ │ ├── DelegateExtensions.cs.meta │ │ │ ├── FastReflection.cs │ │ │ ├── FastReflection.cs.meta │ │ │ ├── Flags.cs │ │ │ ├── Flags.cs.meta │ │ │ ├── GameObjectExtensions.cs │ │ │ ├── GameObjectExtensions.cs.meta │ │ │ ├── GenericEnumerableExtensions.cs │ │ │ ├── GenericEnumerableExtensions.cs.meta │ │ │ ├── LayerMaskExtensions.cs │ │ │ ├── LayerMaskExtensions.cs.meta │ │ │ ├── MemberInfoExtensions.cs │ │ │ ├── MemberInfoExtensions.cs.meta │ │ │ ├── MethodInfoExtensions.cs │ │ │ ├── MethodInfoExtensions.cs.meta │ │ │ ├── OtherExtensions.cs │ │ │ ├── OtherExtensions.cs.meta │ │ │ ├── PropertyInfoExtensions.cs │ │ │ ├── PropertyInfoExtensions.cs.meta │ │ │ ├── RendererExtensions.cs │ │ │ ├── RendererExtensions.cs.meta │ │ │ ├── RigidbodyExtensions.cs │ │ │ ├── RigidbodyExtensions.cs.meta │ │ │ ├── StringExtensions.cs │ │ │ ├── StringExtensions.cs.meta │ │ │ ├── SystemObjectExtensions.cs │ │ │ ├── SystemObjectExtensions.cs.meta │ │ │ ├── TransformExtensions.cs │ │ │ ├── TransformExtensions.cs.meta │ │ │ ├── TypeExtensions.cs │ │ │ ├── TypeExtensions.cs.meta │ │ │ ├── UnityObjectExtensions.cs │ │ │ ├── UnityObjectExtensions.cs.meta │ │ │ ├── VectorExtensions.cs │ │ │ └── VectorExtensions.cs.meta │ │ ├── Helpers.meta │ │ └── Helpers │ │ │ ├── ErrorHelper.cs │ │ │ ├── ErrorHelper.cs.meta │ │ │ ├── EventsHelper.cs │ │ │ ├── EventsHelper.cs.meta │ │ │ ├── GizHelper.cs │ │ │ ├── GizHelper.cs.meta │ │ │ ├── ReflectionHelper.cs │ │ │ ├── ReflectionHelper.cs.meta │ │ │ ├── RuntimeHelper.cs │ │ │ └── RuntimeHelper.cs.meta │ │ ├── Types.meta │ │ └── Types │ │ ├── Attributes.meta │ │ ├── Attributes │ │ ├── API.meta │ │ ├── API │ │ │ ├── Categories.meta │ │ │ ├── Categories │ │ │ │ ├── CategoryAttribute.cs │ │ │ │ ├── CategoryAttribute.cs.meta │ │ │ │ ├── CategoryDisplay.cs │ │ │ │ ├── CategoryDisplay.cs.meta │ │ │ │ ├── CategoryMemberType.cs │ │ │ │ ├── CategoryMemberType.cs.meta │ │ │ │ ├── CategorySetOp.cs │ │ │ │ ├── CategorySetOp.cs.meta │ │ │ │ ├── DefineCategoriesAttribute.cs │ │ │ │ ├── DefineCategoriesAttribute.cs.meta │ │ │ │ ├── DefineCategoryAttribute.cs │ │ │ │ └── DefineCategoryAttribute.cs.meta │ │ │ ├── DisplayAttribute.cs │ │ │ ├── DisplayAttribute.cs.meta │ │ │ ├── DrawingAttributes.cs │ │ │ ├── DrawingAttributes.cs.meta │ │ │ ├── UsingAttribute.cs │ │ │ ├── UsingAttribute.cs.meta │ │ │ ├── VisibilityAttributes.cs │ │ │ └── VisibilityAttributes.cs.meta │ │ ├── User.meta │ │ └── User │ │ │ ├── AnimVarAttribute.cs │ │ │ ├── AnimVarAttribute.cs.meta │ │ │ ├── AssignableAttribute.cs │ │ │ ├── AssignableAttribute.cs.meta │ │ │ ├── BetterVectorAttribute.cs │ │ │ ├── BetterVectorAttribute.cs.meta │ │ │ ├── ButtonAttribute.cs │ │ │ ├── ButtonAttribute.cs.meta │ │ │ ├── ClampAttributes.cs │ │ │ ├── ClampAttributes.cs.meta │ │ │ ├── CommentAttribute.cs │ │ │ ├── CommentAttribute.cs.meta │ │ │ ├── ConstrainValueAttribute.cs │ │ │ ├── ConstrainValueAttribute.cs.meta │ │ │ ├── DraggableAttribute.cs │ │ │ ├── DraggableAttribute.cs.meta │ │ │ ├── EnumMaskAttribute.cs │ │ │ ├── EnumMaskAttribute.cs.meta │ │ │ ├── FilterEnumAttribute.cs │ │ │ ├── FilterEnumAttribute.cs.meta │ │ │ ├── FilterTagsAttribute.cs │ │ │ ├── FilterTagsAttribute.cs.meta │ │ │ ├── IPAttribute.cs │ │ │ ├── IPAttribute.cs.meta │ │ │ ├── InlineAttribute.cs │ │ │ ├── InlineAttribute.cs.meta │ │ │ ├── InputAxisAttribute.cs │ │ │ ├── InputAxisAttribute.cs.meta │ │ │ ├── MaxAttributes.cs │ │ │ ├── MaxAttributes.cs.meta │ │ │ ├── MinAttributes.cs │ │ │ ├── MinAttributes.cs.meta │ │ │ ├── OnChangedAttribute.cs │ │ │ ├── OnChangedAttribute.cs.meta │ │ │ ├── ParagraphAttribute.cs │ │ │ ├── ParagraphAttribute.cs.meta │ │ │ ├── PathAttribute.cs │ │ │ ├── PathAttribute.cs.meta │ │ │ ├── PopupAttribute.cs │ │ │ ├── PopupAttribute.cs.meta │ │ │ ├── RandAttributes.cs │ │ │ ├── RandAttributes.cs.meta │ │ │ ├── RegexAttribute.cs │ │ │ ├── RegexAttribute.cs.meta │ │ │ ├── ResourcePathAttribute.cs │ │ │ ├── ResourcePathAttribute.cs.meta │ │ │ ├── SelectEnumAttribute.cs │ │ │ ├── SelectEnumAttribute.cs.meta │ │ │ ├── SelectSceneAttribute.cs │ │ │ ├── SelectSceneAttribute.cs.meta │ │ │ ├── ShowTypeAttribute.cs │ │ │ ├── ShowTypeAttribute.cs.meta │ │ │ ├── SliderAttributes.cs │ │ │ ├── SliderAttributes.cs.meta │ │ │ ├── TagsAttribute.cs │ │ │ ├── TagsAttribute.cs.meta │ │ │ ├── WhiteSpaceAttribute.cs │ │ │ └── WhiteSpaceAttribute.cs.meta │ │ ├── Core.meta │ │ ├── Core │ │ ├── BaseBehaviour.cs │ │ ├── BaseBehaviour.cs.meta │ │ ├── BaseScriptableObject.cs │ │ └── BaseScriptableObject.cs.meta │ │ ├── Others.meta │ │ └── Others │ │ ├── DataRecord.cs │ │ ├── DataRecord.cs.meta │ │ ├── ItemTuple.cs │ │ ├── ItemTuple.cs.meta │ │ ├── KVPList.cs │ │ ├── KVPList.cs.meta │ │ ├── SerializableDictionary.cs │ │ └── SerializableDictionary.cs.meta │ ├── Core.meta │ ├── Core │ ├── BehaviourIterator.cs │ ├── BehaviourIterator.cs.meta │ ├── BehaviourNode.cs │ ├── BehaviourNode.cs.meta │ ├── BehaviourTree.cs │ ├── BehaviourTree.cs.meta │ ├── Blackboard.cs │ ├── Blackboard.cs.meta │ ├── BonsaiManager.cs │ ├── BonsaiManager.cs.meta │ ├── BonsaiTreeComponent.cs │ ├── BonsaiTreeComponent.cs.meta │ ├── Composite.cs │ ├── Composite.cs.meta │ ├── ConditionalAbort.cs │ ├── ConditionalAbort.cs.meta │ ├── ConditionalTask.cs │ ├── ConditionalTask.cs.meta │ ├── Decorator.cs │ ├── Decorator.cs.meta │ ├── Task.cs │ ├── Task.cs.meta │ ├── TreeIterator.cs │ └── TreeIterator.cs.meta │ ├── Designer.meta │ ├── Designer │ ├── Editor.meta │ ├── Editor │ │ ├── BonsaiCanvas.cs │ │ ├── BonsaiCanvas.cs.meta │ │ ├── BonsaiEditor.cs │ │ ├── BonsaiEditor.cs.meta │ │ ├── BonsaiInputHandler.cs │ │ ├── BonsaiInputHandler.cs.meta │ │ ├── BonsaiInputKnob.cs │ │ ├── BonsaiInputKnob.cs.meta │ │ ├── BonsaiKnob.cs │ │ ├── BonsaiKnob.cs.meta │ │ ├── BonsaiNode.cs │ │ ├── BonsaiNode.cs.meta │ │ ├── BonsaiOutputKnob.cs │ │ ├── BonsaiOutputKnob.cs.meta │ │ ├── BonsaiResources.cs │ │ ├── BonsaiResources.cs.meta │ │ ├── BonsaiSaveManager.cs │ │ ├── BonsaiSaveManager.cs.meta │ │ ├── BonsaiWindow.cs │ │ ├── BonsaiWindow.cs.meta │ │ ├── Inspectors.meta │ │ └── Inspectors │ │ │ ├── BonsaiTreeInspector.cs │ │ │ ├── BonsaiTreeInspector.cs.meta │ │ │ ├── GuardInspector.cs │ │ │ ├── GuardInspector.cs.meta │ │ │ ├── InterruptorInspector.cs │ │ │ ├── InterruptorInspector.cs.meta │ │ │ ├── IsValueOfTypeInspector.cs │ │ │ ├── IsValueOfTypeInspector.cs.meta │ │ │ ├── KeyCodeDrawer.cs │ │ │ └── KeyCodeDrawer.cs.meta │ ├── NodePropertiesAttribute.cs │ ├── NodePropertiesAttribute.cs.meta │ ├── Temp.meta │ ├── Textures.meta │ └── Textures │ │ ├── AbortHighlightGradient.png │ │ ├── AbortHighlightGradient.png.meta │ │ ├── Arrow.png │ │ ├── Arrow.png.meta │ │ ├── BottomChevron.png │ │ ├── BottomChevron.png.meta │ │ ├── Checkmark.png │ │ ├── Checkmark.png.meta │ │ ├── Condition.png │ │ ├── Condition.png.meta │ │ ├── Cross.png │ │ ├── Cross.png.meta │ │ ├── DarkGray.png │ │ ├── DarkGray.png.meta │ │ ├── DoubleChevron.png │ │ ├── DoubleChevron.png.meta │ │ ├── Exclamation.png │ │ ├── Exclamation.png.meta │ │ ├── GrayGradient.png │ │ ├── GrayGradient.png.meta │ │ ├── GrayGradientFresnel.png │ │ ├── GrayGradientFresnel.png.meta │ │ ├── GreenGradient.png │ │ ├── GreenGradient.png.meta │ │ ├── Grid.png │ │ ├── Grid.png.meta │ │ ├── Hourglass.png │ │ ├── Hourglass.png.meta │ │ ├── Interruptable.png │ │ ├── Interruptable.png.meta │ │ ├── Interruptor.png │ │ ├── Interruptor.png.meta │ │ ├── Keyboard.png │ │ ├── Keyboard.png.meta │ │ ├── LightGray.png │ │ ├── LightGray.png.meta │ │ ├── Log.png │ │ ├── Log.png.meta │ │ ├── Mouse.png │ │ ├── Mouse.png.meta │ │ ├── ParallelArrows.png │ │ ├── ParallelArrows.png.meta │ │ ├── ParallelQuestion.png │ │ ├── ParallelQuestion.png.meta │ │ ├── Play.png │ │ ├── Play.png.meta │ │ ├── Priority.png │ │ ├── Priority.png.meta │ │ ├── Question.png │ │ ├── Question.png.meta │ │ ├── Reactive.png │ │ ├── Reactive.png.meta │ │ ├── ReevaluateHighlightGradient.png │ │ ├── ReevaluateHighlightGradient.png.meta │ │ ├── ReferenceHighlightGradient.png │ │ ├── ReferenceHighlightGradient.png.meta │ │ ├── RepeatArrow.png │ │ ├── RepeatArrow.png.meta │ │ ├── RepeatCheckmark.png │ │ ├── RepeatCheckmark.png.meta │ │ ├── RepeatCross.png │ │ ├── RepeatCross.png.meta │ │ ├── RightChevron.png │ │ ├── RightChevron.png.meta │ │ ├── RootSymbol.png │ │ ├── RootSymbol.png.meta │ │ ├── Shield.png │ │ ├── Shield.png.meta │ │ ├── Shuffle.png │ │ ├── Shuffle.png.meta │ │ ├── ShuffleQuestion.png │ │ ├── ShuffleQuestion.png.meta │ │ ├── SmallCheckmark.png │ │ ├── SmallCheckmark.png.meta │ │ ├── SmallCross.png │ │ ├── SmallCross.png.meta │ │ ├── Timer.png │ │ ├── Timer.png.meta │ │ ├── TreeIcon.png │ │ └── TreeIcon.png.meta │ ├── Standard.meta │ ├── Standard │ ├── Composites.meta │ ├── Composites │ │ ├── Parallel.cs │ │ ├── Parallel.cs.meta │ │ ├── ParallelSelector.cs │ │ ├── ParallelSelector.cs.meta │ │ ├── PrioritySelector.cs │ │ ├── PrioritySelector.cs.meta │ │ ├── RandomSelector.cs │ │ ├── RandomSelector.cs.meta │ │ ├── RandomSequence.cs │ │ ├── RandomSequence.cs.meta │ │ ├── ReactiveSelector.cs │ │ ├── ReactiveSelector.cs.meta │ │ ├── Selector.cs │ │ ├── Selector.cs.meta │ │ ├── Sequence.cs │ │ ├── Sequence.cs.meta │ │ ├── UtilitySelector.cs │ │ └── UtilitySelector.cs.meta │ ├── ConditionalAborts.meta │ ├── ConditionalAborts │ │ ├── CompareEntries.cs │ │ ├── CompareEntries.cs.meta │ │ ├── Cooldown.cs │ │ ├── Cooldown.cs.meta │ │ ├── IsValueOfType.cs │ │ ├── IsValueOfType.cs.meta │ │ ├── IsValueSet.cs │ │ ├── IsValueSet.cs.meta │ │ ├── TimeLimit.cs │ │ └── TimeLimit.cs.meta │ ├── ConditionalTasks.meta │ ├── ConditionalTasks │ │ ├── Chance.cs │ │ └── Chance.cs.meta │ ├── Decorators.meta │ ├── Decorators │ │ ├── Failure.cs │ │ ├── Failure.cs.meta │ │ ├── Guard.cs │ │ ├── Guard.cs.meta │ │ ├── Interruptable.cs │ │ ├── Interruptable.cs.meta │ │ ├── Interruptor.cs │ │ ├── Interruptor.cs.meta │ │ ├── Inverter.cs │ │ ├── Inverter.cs.meta │ │ ├── Repeater.cs │ │ ├── Repeater.cs.meta │ │ ├── Success.cs │ │ ├── Success.cs.meta │ │ ├── UntilFailure.cs │ │ ├── UntilFailure.cs.meta │ │ ├── UntilSuccess.cs │ │ └── UntilSuccess.cs.meta │ ├── Input.meta │ ├── Input │ │ ├── GetKey.cs │ │ ├── GetKey.cs.meta │ │ ├── GetMouseButton.cs │ │ ├── GetMouseButton.cs.meta │ │ ├── IsKeyDown.cs │ │ ├── IsKeyDown.cs.meta │ │ ├── IsKeyUp.cs │ │ ├── IsKeyUp.cs.meta │ │ ├── IsMouseButtonDown.cs │ │ ├── IsMouseButtonDown.cs.meta │ │ ├── IsMouseButtonUp.cs │ │ └── IsMouseButtonUp.cs.meta │ ├── Tasks.meta │ └── Tasks │ │ ├── Idle.cs │ │ ├── Idle.cs.meta │ │ ├── Include.cs │ │ ├── Include.cs.meta │ │ ├── Print.cs │ │ ├── Print.cs.meta │ │ ├── Wait.cs │ │ └── Wait.cs.meta │ ├── TestScenes.meta │ ├── TestScenes │ ├── Behaviours.meta │ ├── Behaviours │ │ ├── FindTarget.cs │ │ ├── FindTarget.cs.meta │ │ ├── Fire.cs │ │ ├── Fire.cs.meta │ │ ├── Wander.cs │ │ └── Wander.cs.meta │ ├── NetScene.unity │ ├── NetScene.unity.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Player.prefab │ │ ├── Player.prefab.meta │ │ ├── Projectile.prefab │ │ ├── Projectile.prefab.meta │ │ ├── TurretAI.prefab │ │ └── TurretAI.prefab.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── Benchmark.cs │ │ ├── Benchmark.cs.meta │ │ ├── LifeTimer.cs │ │ ├── LifeTimer.cs.meta │ │ ├── PlayerControllerNet.cs │ │ ├── PlayerControllerNet.cs.meta │ │ ├── SpawerAI.cs │ │ ├── SpawerAI.cs.meta │ │ ├── TestInit.cs │ │ └── TestInit.cs.meta │ ├── TestScene.unity │ └── TestScene.unity.meta │ ├── Utility.meta │ └── Utility │ ├── StateMachine.cs │ └── StateMachine.cs.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset └── README.md /Assets/BTs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31db89d88e39d9e41b5d45d926882617 3 | folderAsset: yes 4 | timeCreated: 1495841812 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/BTs/BenchmarkBT.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/BTs/BenchmarkBT.asset -------------------------------------------------------------------------------- /Assets/BTs/BenchmarkBT.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8998794142194d34b866c2f1d68bc56c 3 | timeCreated: 1495961224 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 11400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/BTs/ExperimentalBT.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/BTs/ExperimentalBT.asset -------------------------------------------------------------------------------- /Assets/BTs/ExperimentalBT.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fa558e524b8dbb41923eaf26b942abe 3 | timeCreated: 1496005701 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 11400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/BTs/ParallelsAndInterrupts.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/BTs/ParallelsAndInterrupts.asset -------------------------------------------------------------------------------- /Assets/BTs/ParallelsAndInterrupts.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 156b2953a127b0a4ab6ac015426a9148 3 | timeCreated: 1495961342 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 11400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/BTs/ReactiveExample.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/BTs/ReactiveExample.asset -------------------------------------------------------------------------------- /Assets/BTs/ReactiveExample.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9793f03e8a5e56e48839018a8f96169a 3 | timeCreated: 1496008984 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 11400000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a97502aa9e746c4e9902b7e24ce4d47 3 | folderAsset: yes 4 | timeCreated: 1495841812 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 188a3e7ebb8f0214abea1d52b9e204f7 3 | folderAsset: yes 4 | timeCreated: 1488702009 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db94a481fbf3cf2478f92178db2f0ccf 3 | folderAsset: yes 4 | timeCreated: 1489278445 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Editor/AgentMenuCreator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e908729b230565a4e9ed89e6c2b746cc 3 | timeCreated: 1489278461 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Editor/Path2DEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac39117a04d851444a1b18780d177b20 3 | timeCreated: 1490145773 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 217499d7011d6ec499b3c76ca437312e 3 | folderAsset: yes 4 | timeCreated: 1488702223 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Resources/Paths.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 117fecbc87bc8684baa76188897ed3d6 3 | folderAsset: yes 4 | timeCreated: 1490136141 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Resources/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: baaa8003b3d4d1e468cdc38c1e149db2 3 | folderAsset: yes 4 | timeCreated: 1488702230 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Resources/Sprites/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/AutonomousAgents/Resources/Sprites/Circle.png -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Resources/Sprites/Large White Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/AutonomousAgents/Resources/Sprites/Large White Grid.png -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Resources/Sprites/Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/AutonomousAgents/Resources/Sprites/Square.png -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Resources/Sprites/Triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/AutonomousAgents/Resources/Sprites/Triangle.png -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Resources/Sprites/Ultra White Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/AutonomousAgents/Resources/Sprites/Ultra White Grid.png -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Resources/Sprites/White Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/AutonomousAgents/Resources/Sprites/White Grid.png -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6657d42907151754a9357b860357a958 3 | folderAsset: yes 4 | timeCreated: 1490139875 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scenes/AgentsDisplayScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/AutonomousAgents/Scenes/AgentsDisplayScene.unity -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scenes/AgentsDisplayScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12c9d4da0796e2043afc505ed8014600 3 | timeCreated: 1490139904 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scenes/AgentsTestScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/AutonomousAgents/Scenes/AgentsTestScene.unity -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scenes/AgentsTestScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f477136e9a50194b8311ad275e15d76 3 | timeCreated: 1488702022 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b14cc60c208c264e92ac0ff7bcb9c0f 3 | folderAsset: yes 4 | timeCreated: 1488702535 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Agent2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d903cae0938bbc54582e1ae01787cb41 3 | timeCreated: 1489646900 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/AreaWarp2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43871b78e051c43498689094fda0afc3 3 | timeCreated: 1490158735 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/AutonomousAgent2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17ce660d2e691434fb49c2b63de258e5 3 | timeCreated: 1488702545 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/FlockGroup2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44e7bebeaa224534faca7bd65b1e8f92 3 | timeCreated: 1489877160 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Path2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e0a2071aa4e3634286cc661f8b47d2f 3 | timeCreated: 1489526869 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Sensors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b45dab2a9f250a45a50114f7d2f809e 3 | folderAsset: yes 4 | timeCreated: 1489443661 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Sensors/AgentSensor2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11eea145b123f944c8fdac7eacfb3d13 3 | timeCreated: 1489659068 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Sensors/ArriveSensor2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0ca8bdf34935544387a55caeff31510 3 | timeCreated: 1489443631 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Sensors/EvadeSensor2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8e34c095dd8f60408c1f2c9811747c6 3 | timeCreated: 1489449285 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Sensors/ObjectSensor2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7113b1bfedeb1e40a36e832d97ad5a8 3 | timeCreated: 1489653566 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Sensors/ObstacleSensor2D.cs: -------------------------------------------------------------------------------- 1 | 2 | using UnityEngine; 3 | 4 | namespace AutonomousAgents 5 | { 6 | 7 | /// 8 | /// Detects 2D colliders. 9 | /// 10 | public class ObstacleSensor2D : ObjectSensor2D 11 | { 12 | 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Sensors/ObstacleSensor2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51dbb1279b10c1d45be72aedc2879fff 3 | timeCreated: 1489659058 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eafeb7e28d157d542b9244bc7d3fb062 3 | folderAsset: yes 4 | timeCreated: 1489443678 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/Alignment2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1aca141cae6699c418d8158c356547ef 3 | timeCreated: 1489735744 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/Arrive2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46777d01a7086134895e8f253a23aa54 3 | timeCreated: 1488711563 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/Cohesion2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e11ff76a14751f48bfc4774b7bb64d7 3 | timeCreated: 1489736515 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/Evade2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 319c070c04d7182458e32682eb0b8352 3 | timeCreated: 1488833013 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/Flee2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f4d9e2640cbd804aa5cbe8b8f441cd8 3 | timeCreated: 1488708037 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/Flocking2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e67ae7a49cd9cbe48b80496bb8b92824 3 | timeCreated: 1489871132 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/FollowMouse2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 418801c5d869d904b8437f52d267eba4 3 | timeCreated: 1489899265 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/FollowPath2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59fbbbf249a80e04abf5affed8c3ab93 3 | timeCreated: 1489525663 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/GroupSteering2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66c4f1419173d444e931a2b3ab7f3794 3 | timeCreated: 1489652940 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/Hide2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70edb54fd389509468f16bcad60ddc21 3 | timeCreated: 1489384587 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/Homing2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96abb35ea5135044d8e6f2b2df59ce55 3 | timeCreated: 1489447640 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/Interpose2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e76ec3ac3948c234580c9e51a5f3687c 3 | timeCreated: 1489381908 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/ObstacleAvoidance2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 136c65577f97e984682bd339e16d15aa 3 | timeCreated: 1488932187 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/OffsetPursuit2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 784ee8862179d984bb76be40d54da5b9 3 | timeCreated: 1489637631 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/Pursuit2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27764fa566578ce41bafd9bde93ca9de 3 | timeCreated: 1488757949 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/Seek2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 240e83c4d0853a04eacb779c6aa0a3b0 3 | timeCreated: 1488706637 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/Separation2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b03188dcf1195341bc8c8777d20b395 3 | timeCreated: 1489733076 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/SteeringBehavior2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a81d77c5e5dad543be46fd9904bd8ea 3 | timeCreated: 1488705113 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/WallAvoidance2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2788503fffecde34598c5de01e8850f5 3 | timeCreated: 1489279624 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Steering/Wander2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc0ffcda9d26fb746b1ce340263e471d 3 | timeCreated: 1488915793 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Utilitiy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1015a0e1e1239e44e9297df897dc762d 3 | folderAsset: yes 4 | timeCreated: 1489443721 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Utilitiy/DrawUtil.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb5462facd371a14482694ae333cd414 3 | timeCreated: 1488746352 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/AutonomousAgents/Scripts/Utilitiy/ExtensionMethods.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f289a45c333781499bf605d9f415cd0 3 | timeCreated: 1488716602 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a31051f5f70d9564e8eb495e935d8bbf 3 | folderAsset: yes 4 | timeCreated: 1491431034 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b09b5774e23f75a44b9b6eace612c86c 3 | folderAsset: yes 4 | timeCreated: 1491887619 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/NodeEditorFramework.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adab484ec4e6ab246be215991707122b 3 | folderAsset: yes 4 | timeCreated: 1491889781 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/NodeEditorFramework/GUIScaleUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1531560365f0bfb45881cc297952a854 3 | timeCreated: 1491887635 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/NodeEditorFramework/License.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3b89e570c0baf842b5ea1792547f91d 3 | timeCreated: 1491887832 4 | licenseType: Free 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b808398c12884c04fb7a2bb7a3b75660 3 | folderAsset: yes 4 | timeCreated: 1493669327 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97406d4148305fe4ca1b5ad1e00f14f0 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f73f3edda00ea634a85ab43d5f37dfc0 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 028b522b8f0fbc8408fd02786ca3510e 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2dc9c32b136aa445b434019736286b8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/Base.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e332d468634dfd442a52224a560c5424 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/Base/AttributeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4a1af46c40779c47b672b60c24570b4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/Base/BaseDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4929d083adec18e42a3e1b276935174e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/Base/CompositeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33ee5b78b6fe2a1488ccfc11a16faa81 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/Base/ObjectDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43d5edabb03e1a944980a06a40c6add6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbe2eb8231ae61d49a18c777aeff1c5c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/Core/BasicDrawers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdf286e80ffd4244aa99da7423d35b59 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/Core/DictionaryDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75d1fce7fcc47624dba00bcbdecfb227 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/Core/MethodDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c503be7a067b76748a7dcde5cdbbd75b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/Core/NullableDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8200f74539a06ef44b158fe214b3c5dc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/Core/RecursiveDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee9c8c9d7280e3a49894a063dda0f405 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/Core/SequenceDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8e2be9e6a65fba469a2b67ed7ec0cb7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/MemberDrawersHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8074784a394e36346b932330a0a0575f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/API/TypeDrawerMapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40b143bcaf25f39479ea48df05760417 3 | timeCreated: 1429926560 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce0b83ead20c0a0438745f766cd78b87 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/AnimVarDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71cd5b3df74e59f41b3d8248d15b5dc4 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/AssignableDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76a1ca0f843c62746ad14d8cf4a1e67c 3 | timeCreated: 1457156395 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/BetterVectorDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3576c831906f37c49a29d5c8ccfa4bb2 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/ButtonDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f4c70f24a77bef4895156173f8730f8 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/CommentDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13612e7b3c9458245b334d8a0a6d186c 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/ConstrainValueDrawers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a1f0f18cf2339a42a83a0fb25fbbe5e 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/DraggableDrawer.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using Vexe.Editor.Helpers; 3 | using Vexe.Runtime.Types; 4 | using UnityObject = UnityEngine.Object; 5 | 6 | namespace Vexe.Editor.Drawers 7 | { 8 | public class DraggableDrawer : CompositeDrawer 9 | { 10 | public override void OnMemberDrawn(Rect rect) 11 | { 12 | gui.RegisterFieldForDrag(rect, memberValue); 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/DraggableDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1759973a7c8db3541a38d2982a9bc07b 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/EnumMaskDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7162c983ab0936441b382e37146508d7 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/FilterDrawers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0347fa3de9c47384197cbd1a2d4994be 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/InlineDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99d4313f4ad74034e8f92cbc2f4c6b2b 3 | timeCreated: 1457156395 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/InputAxisDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 093f3f1ac77cfe947933f5f9d8432aa0 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/OnChangedDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7626a51a1248dfb4986290356feb9d4f 3 | timeCreated: 1457156395 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/ParagraphDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6df2e6f09119d64db54ef27b6cdd39f 3 | timeCreated: 1457156395 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/PathDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1014bb301937494f8ddbaec86a4b405 3 | timeCreated: 1457156395 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/PopupDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e57d980d9af58c44a26c99e52ce8c8d 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/RandomsDrawers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18b015647a40f3e49a501c75884cd9ec 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/RegexDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4e9857fbf9a84f42a70f4cad01629ce 3 | timeCreated: 1457156395 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/ResourcePathDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e83ce98a0990eb64ab3db0a4922bf95f 3 | timeCreated: 1457156395 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/SelectEnumDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee2d0d6417a98d64b96831fa5f5e8f10 3 | timeCreated: 1457156395 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/SelectSceneDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54e04fc79ee192e43801b1a9ade27f1d 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/ShowTypeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a866bf9586733a47a44ae4b3d105370 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/SliderDrawers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9d5d5bb5fdd9224f93ad167b9b47138 3 | timeCreated: 1457156395 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/TagsDrawer.cs: -------------------------------------------------------------------------------- 1 | using Vexe.Runtime.Types; 2 | 3 | namespace Vexe.Editor.Drawers 4 | { 5 | public class TagsDrawer : AttributeDrawer 6 | { 7 | public override void OnGUI() 8 | { 9 | memberValue = gui.Tag(displayText, memberValue); 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/TagsDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3abc52919e2775a459e8ab7140b6e7b7 3 | timeCreated: 1457156394 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Drawers/User/WhiteSpaceDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1747826aae151e4e8ca2ec7b373bee2 3 | timeCreated: 1457156395 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Editors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 435a3f029286164489cd9b6f49f21883 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Editors/BaseBehaviourEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 045a66da4c2389849ab2fe95eadb7208 3 | labels: 4 | - customeditor 5 | - custominspector 6 | - inspector 7 | - betterinspector 8 | MonoImporter: 9 | serializedVersion: 2 10 | defaultReferences: [] 11 | executionOrder: 0 12 | icon: {instanceID: 0} 13 | userData: 14 | assetBundleName: 15 | assetBundleVariant: 16 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Editors/BaseEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67683270ebe01f142bb4b5fc23907734 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Editors/BaseScriptableObjectEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3803341559daa74780ea15673109e1c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Editors/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fce412830f549c4d997fdce3312f290 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Editors/Internal/CategoryDefinitionResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cee76536c0f0514f9eb12fb73404ed1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Editors/Internal/ConditionalVisibility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e83a86bfd9e81a42b6b0640f816652e 3 | timeCreated: 1432442731 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Editors/Internal/MembersCategory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bca17dd8ca9fe14280f9b54e2070230 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 078902cf720dd5c49950ecd97230d6f3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a2fbd47755158544a83eac3fd4a3df3 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/BaseGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce4b49256f5fef8409c85470e0fa69b6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5d3ec242c4060b43bf16d47920b2106 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Bounds.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab7453ccbc95192458390aea503d2d8b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Boxes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aef3880aa09eadb44a4bacd051b157da 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Buttons.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31196c9fd112def48abea8c9e7dab61d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Colors.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b60305816d8653d4daee86d18e540632 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Curves.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15184cd868bd7f1498c509e573c486f2 3 | timeCreated: 1429564843 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Doubles.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69b6e979159c2454e980264b288e1013 3 | timeCreated: 1431583641 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/DragDrop.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcf7faecf91db1446a992943a2d860db 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Enums.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9f99d2e95d32c54aacc5dc2d42bdd91 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Floats.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3aa02518265f19847a45fa851ac07ce5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Foldouts.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37f9a115a4e54934782f029a6e4b6c69 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Gradients.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ecfec56704e16f349bd187526593e2e7 3 | timeCreated: 1429564844 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Ints.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 634f2df33eed82743a517ae9076284db 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Labels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f9677df58565d64891a1923e86b1948 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Layers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6496dc571308e944ebec89baca5ec4e0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Longs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f160c4d98709774797d06a4bacc30e9 3 | timeCreated: 1431583641 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Masks.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46a722dcefe930b49bd1d00ef1f82436 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Members.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b51e50a0bc4c84d438c2d0277dd65a52 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Objects.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fc3ca3a52ee61f4fad7045244e6e81e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Popups.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06e32c67907fd574aa27279b0f2da7e9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Quaternions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5074630fb568ddd48857a554864fe2f2 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Rects.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35ce56dbdf00364469d9e0680a605185 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/ScrollViews.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f6a524f79a1b024fb60042728e0a97a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Sliders.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da5fb869468b8a04d98e28818b9c7b03 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Spaces.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace Vexe.Editor.GUIs 3 | { 4 | public abstract partial class BaseGUI 5 | { 6 | public abstract void Space(float pixels); 7 | 8 | public abstract void FlexibleSpace(); 9 | 10 | public void Space(float? pixels) 11 | { 12 | if (pixels.HasValue) 13 | Space(pixels.Value); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Spaces.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9acef75f7078924aa78a571419f6f92 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Texts.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f1fd49aa0ed0db48841c9755b5c3b01 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Toggles.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 600debd12c241e347af04dc384dfad90 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Controls/Vectors.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df1e125457e797a46bb9ddd41c255e39 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/GUIStyles.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e39aa8134455ca74f887bd3cb8a3b07f 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/BaseGUI/Layout.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27efec0b60043c8489f45ceef290c93c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/RabbitGUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83bd5b66b43701b4ba528022b5e0ee39 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/RabbitGUI/Blocks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb9cecd52fb1f3f4e868fe3f3bf722ee 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/RabbitGUI/Blocks/GUIBlock.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dc358084e3dce041ab49db3b7c7e124 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/RabbitGUI/Blocks/HorizontalBlock.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79b07919098079848b2c0533331c8191 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/RabbitGUI/Blocks/Others.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f8cbe94ebb8bf54baab653cb4f9d61d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/RabbitGUI/Blocks/VerticalBlock.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2471fd073e17a15438da2c0cd0c688b8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/RabbitGUI/GUIControl.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6f08edaef1c8ef4390b0ed616da49c1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/RabbitGUI/RabbitGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 385679ecefe3bd2429c504a553711f38 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/GUIs/TurtleGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f76bdfdc593a994faadf070ea114d85 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 071da4512f5705349ba1f5051382eb6e 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f098b5a7401dd114f8e2415799f3b64a 3 | folderAsset: yes 4 | timeCreated: 1432449437 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Libs/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4d1a789d3167354887ff05fc2f96477 3 | folderAsset: yes 4 | timeCreated: 1432449442 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Libs/Extensions/EventExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 524cc8fa899e804459e5ae45bc06078f 3 | timeCreated: 1430286974 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Libs/Helpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 867585c1cb6b523478d1d9d118cf747a 3 | folderAsset: yes 4 | timeCreated: 1428455671 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Libs/Helpers/DirectoryHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f447cd41d199f2a499737b2eb121d6ef 3 | timeCreated: 1429383465 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Libs/Helpers/EditorHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64380dea15acf4b449ebe47097973687 3 | timeCreated: 1428452954 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Libs/Helpers/GUIHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edbb45b5548c8ad4589113363cb95c24 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Libs/Helpers/PrefabHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 973d7ab592999c6428956e26b2a09bdc 3 | timeCreated: 1428452954 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Types.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 664fde568b3039e428c085e3683484d2 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Types/BetterUndo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7c4445e2a68a8e4bbf86f03b2b4dbbd 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Types/BetterUndo/BetterUndo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26141e240380bd747bd53a1a44f47d56 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Types/BetterUndo/Operations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bc83a7ec0a6b94438316236ee82c1a7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Types/BetterUndo/Operations/BasicOp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14d94ae504cbd594b94f57d4ce6756a7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Types/BetterUndo/Operations/IUndoOp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e66a118f618b65e4a8f4bbeb46b8abb8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Types/BetterUndo/Operations/ListOps.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94c840281bad3634186b758b07f3fc60 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Types/BetterUndo/Operations/SelectionOp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 247f39d5203660c4ba21e60df5a01742 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Types/BetterUndo/Operations/SetVarOp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b3dc75c0b6a8e54392ff63861cd36c1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Types/EditorMember.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa089e85388d62f41b2b3a7e507ca4f4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Types/SelectionMemorizer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6b426577edc08e4daef74a7b796a206 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Types/VFWSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd76edddd05535e47b1e1b320d9a9be0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Visibility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d73a0a1d8e995943b9feacc0ae4a2d8 3 | folderAsset: yes 4 | timeCreated: 1428462928 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Visibility/VisibilityAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7afc32bf1ceaaf47978f94057f38be9 3 | timeCreated: 1428462861 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Visibility/VisibilityLogic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c61d9c9ae4aa9140857466058b6f038 3 | timeCreated: 1428462861 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 401b079aabdcb5746bd658639bb86bbc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Windows/BetterWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2f9a5d6347e01847aaced504a9031de 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Editor/Vexe/Windows/SelectionWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ae2caac6f2bb814e9dfcfaa3fb13fa5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b327c65f6c088e44aa6fb0f305a4e06 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/HISTORY.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 632ff1e1ada0271468075d14b8d04093 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a719f14cb5e8274792f297ef3134868 3 | TextScriptImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b98578f54c2788948b867db4612517aa 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04dab809484f7804a85bcfae63c9bdaf 3 | folderAsset: yes 4 | timeCreated: 1434700880 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2b4d9dca5782024a802a69da84ff4f0 3 | folderAsset: yes 4 | timeCreated: 1436620737 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Core/FSCommon.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 350593525f1638b4bbcc385223e01ecb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Core/Load.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bde646ba56e4ded46aa1202969c83af8 3 | timeCreated: 1436621125 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Core/Save.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60e74e746c690e24e8d1f5328b11034a 3 | timeCreated: 1436621125 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Other.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8282fb442f755764bb5e432da5ce54c7 3 | folderAsset: yes 4 | timeCreated: 1427900059 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Other/FSAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f62492be51df9a49a0a7befc5f8ee8a 3 | timeCreated: 1427791016 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Other/FSExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f39395ef16fee346b7be678fabd28cd 3 | timeCreated: 1436699600 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Other/FSMarker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 100e8ebedf872b54b93bc241c4dae51d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Other/FSReference.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5db7c82b72f30a44081b8ed7827d1c46 3 | timeCreated: 1436623795 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/README.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28a28c3b5afcbbc4d86229a2aee6313b 3 | timeCreated: 1436634949 4 | licenseType: Free 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9397fcbe0e2f06c4899e26f7256fdcd3 3 | folderAsset: yes 4 | timeCreated: 1427847050 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Resources/AssetStorage.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Resources/AssetStorage.asset -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Resources/AssetStorage.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e3ac4ca70cc1ec46bf2194c002bae85 3 | timeCreated: 1493673237 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Resources/PrefabStorage.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27821c709906fc9408990c2935d3e227 3 | timeCreated: 1436618199 4 | licenseType: Free 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5778b47557f26f145a77a24289fee77a 3 | folderAsset: yes 4 | timeCreated: 1433513905 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BasicSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BasicSerializer.dll -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14970d99ed7af094b980aac9141d8424 3 | folderAsset: yes 4 | timeCreated: 1433563718 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/BinaryX20.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc05bf0252c63464496f17b04d7d7581 3 | timeCreated: 1433651632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3688bebbaf12d774fac3fa513b50d6b0 3 | folderAsset: yes 4 | timeCreated: 1433563718 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Internal/X20Logic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89b675671a75647449d79a20a9045e33 3 | timeCreated: 1436615594 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Internal/X20Member.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca880b5ba27ec774b9f11b53d2d0629b 3 | timeCreated: 1433651632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Internal/X20Reflection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85c8d5dde46010947869d97d745509e5 3 | timeCreated: 1433651632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Serializers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e4ac6aa3eeda504fa19795d92945ed6 3 | folderAsset: yes 4 | timeCreated: 1433563718 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Serializers/ArraySerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c6945bc6fb964d4c897c2c8ff308648 3 | timeCreated: 1433651632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Serializers/BaseSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa26299fcd50b30489da37fccf86d1a2 3 | timeCreated: 1433651632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Serializers/CollectionSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bc0f93395952a24c855978801a18b2a 3 | timeCreated: 1433651632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Serializers/DictionarySerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96361edc7c89559458e979f64077ed14 3 | timeCreated: 1433651632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Serializers/EnumSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6df4b5d5c52dfd2468862a40a24a3c57 3 | timeCreated: 1433651632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Serializers/ListSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c9d7199efb572a428a5122dd43f1438 3 | timeCreated: 1433651632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Serializers/PrimitiveSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c34af9eec4f64c6438923071edee5873 3 | timeCreated: 1433651632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Serializers/ReflectiveSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 480738666e233b2489115c1af249fadc 3 | timeCreated: 1433651632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Serializers/StrongSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc67e1bcd3ba6b74e8e9e9e4ebb229d5 3 | timeCreated: 1433651632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Serializers/TypeSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29c5d91c42e256e41a86515291465f11 3 | timeCreated: 1433651632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializer/BinaryX20/Serializers/UnityStructs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bed869e138b42e9428b1907f019c6f84 3 | timeCreated: 1434630857 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 958544ed2686e7a44b685cc615207d31 3 | folderAsset: yes 4 | timeCreated: 1427899585 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializers/AnimationSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34312bcd92fbd9447814bb2706ce6e25 3 | timeCreated: 1427998442 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializers/AssetReferenceSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b553a3da413aac4d9c7d53e6270f68c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializers/ExplicitComponentSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7db3cfafd23d1b440a729d8b9074d837 3 | timeCreated: 1430772623 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializers/GameObjectSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6597a3a63a8e1804ea51007dc525a0a3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializers/LightSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 078ee0ba1b9cbeb4c8e59265ae67f99c 3 | timeCreated: 1427998442 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Serializers/ReflectiveComponentSerializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4028a28ab5b0be44bad16cbdd5cc0f4e 3 | timeCreated: 1427791017 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Storage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23de2bc837c54f041b241e8e8f064fa1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Storage/AssetStorage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 428e6e31139d86442996a24b17eb5f61 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/FastSave/Storage/PrefabStorage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51ff9abeff58b4c46968a7987aaa5ca4 3 | timeCreated: 1427845688 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6750666878359248849bbf34f00340b 3 | folderAsset: yes 4 | timeCreated: 1429383463 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 001fd2fd9fe46634ebae057a64476d0e 3 | folderAsset: yes 4 | timeCreated: 1430512637 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/AnimatorExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bfa18487f72a7642aa6636461ba341c 3 | timeCreated: 1435706892 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/ComponentExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2a9034a6a7514548bedc318476984d8 3 | timeCreated: 1429383465 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/DelegateExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93aa42298e02f874db65ec74c11dccb6 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/FastReflection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1d7a7b38671c1b4dacb9eb4f4aa626e 3 | timeCreated: 1431580272 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/Flags.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea57d741699032a4aa0d22bbe7dc0199 3 | timeCreated: 1429383465 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/GameObjectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5695f18854bd72c479e441171c38a524 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/GenericEnumerableExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 405f726e28deeb74ebf1bb1e906f8702 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/LayerMaskExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4350f6589d581c4e99213323ef2eff3 3 | timeCreated: 1429383465 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/MemberInfoExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17e94e9a4379dd5429e43a9fbbdaf2c7 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/MethodInfoExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c30723cf276575a4cb0dee18bd9fe12f 3 | timeCreated: 1429383465 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/OtherExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0cbdbd9f64cecb4088321c2859e583c 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/PropertyInfoExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 012e6c2bb23523146b15f030c5e8d0a6 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/RendererExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8011269c74005364fb54411a51b5723c 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/RigidbodyExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7caa10ae86f859f42a6beebf04f8b086 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/StringExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d44f3c60866ec745a65918a2f576136 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/SystemObjectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcc9333ca9cb3e242aa5306deaca13a3 3 | timeCreated: 1429383476 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/TransformExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cf919acaa10b9d4fbde1f04c6667f90 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/TypeExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9151ebaaa53112d47aed84781dc05e6c 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/UnityObjectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49515f0f270a3634fa2680639b548657 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Extensions/VectorExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ed6249b15d042848b4b27a50e35f5e8 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Helpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4269c1d177e44044a857a9478e4d446 3 | folderAsset: yes 4 | timeCreated: 1430512637 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Helpers/ErrorHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33b065d723f6efa46b5dc04237c31580 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Helpers/EventsHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4a5b8d831907364c8e2a8bbbc4e2e0f 3 | timeCreated: 1429383465 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Helpers/GizHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f93c907ec876a8a40879b62e705d3698 3 | timeCreated: 1429383465 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Helpers/ReflectionHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f014e375f33a1f340b05f384b4ce6b50 3 | timeCreated: 1429383465 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Libs/Helpers/RuntimeHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24c8d362c13bef548871f8e31ca575e3 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cc6955d23c98b245b84ab6decf44667 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61359d514db027243a04971e383b4406 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/API.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a805916f5eab9394da2b49884a344439 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/API/Categories.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0004f3ab572e7a46bb780deffb95b16 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/API/Categories/CategoryAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d39bf1f75390b344ca9557cd3d9d4423 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/API/Categories/CategoryDisplay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2c430b35f215dc4f80238a01e331404 3 | timeCreated: 1429658756 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/API/Categories/CategoryMemberType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1241114c65a59f4db909affad31f7f7 3 | timeCreated: 1429658756 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/API/Categories/CategorySetOp.cs: -------------------------------------------------------------------------------- 1 | namespace Vexe.Runtime.Types 2 | { 3 | /// 4 | /// Used in cateogry definitions to determine whether members matching the definintion 5 | /// are intersected (only the common results between filters are picked) or united (results are combined) 6 | /// 7 | public enum CategorySetOp 8 | { 9 | Union, 10 | Intersection 11 | }; 12 | } -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/API/Categories/CategorySetOp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1744b45d98de8e14c9365d9963a4c2e8 3 | timeCreated: 1429658755 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/API/Categories/DefineCategoriesAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75dd5b81336c6824e83441875029f024 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/API/Categories/DefineCategoryAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 536565938cc717644a693033b94ced2d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/API/DisplayAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cea094e818f6c7444b40798a30d349a9 3 | timeCreated: 1430115926 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/API/DrawingAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 439d14cd3d275a64dafbbaabb07a5ee4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/API/UsingAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c3252b4f553e374389bdb36787bc8e6 3 | timeCreated: 1432554474 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/API/VisibilityAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e64721bf448ec4642b0a7f1545ae21c6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03c25a8fa6d29494e93cc746d55eb059 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/AnimVarAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86e388559cf46594cb88998ba6ecfe83 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/AssignableAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40ef69e6aae9bbb44b87466d33845d4d 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/BetterVectorAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9ab346a008c86f4088a70432cdc9e01 3 | timeCreated: 1457156576 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/ButtonAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8ff74074db0c3048bb744401a844a25 3 | timeCreated: 1457156576 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/ClampAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4df61e423b175024c9c8f020ea5f0bbd 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/CommentAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e02b054615a6b4544b24e97e8dc65576 3 | timeCreated: 1457156576 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/ConstrainValueAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Vexe.Runtime.Types 4 | { 5 | public abstract class ConstrainValueAttribute : CompositeAttribute 6 | { 7 | public ConstrainValueAttribute() 8 | { 9 | } 10 | 11 | public ConstrainValueAttribute(int id) : base(id) 12 | { 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/ConstrainValueAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ffec2d9b79e38745977a1718f66229d 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/DraggableAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e13e7938efa2834fac6bc1f891b37f8 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/EnumMaskAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a39f051bd0d0a047a31cacb680531bc 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/FilterEnumAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1781e6c049f833242808875ca126724c 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/FilterTagsAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43b0c23da17b93a46b98f2da5c9b95bb 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/IPAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44d6a7f724f3bc94c8d1764b68f037c8 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/InlineAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d531f4e6aa30e044782639c582a7860e 3 | timeCreated: 1457156576 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/InputAxisAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Vexe.Runtime.Types 4 | { 5 | /// 6 | /// Annotate strings with it to have their values set from a popup of all the input axis in the project 7 | /// 8 | public class InputAxisAttribute : DrawnAttribute 9 | { 10 | } 11 | } -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/InputAxisAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e03182a0612a73c469dcab2e9127ab7c 3 | timeCreated: 1457156576 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/MaxAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e6bdb6bf99f9a444922ac068d53bc2d 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/MinAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88c8d3915113d904a8a3c412c18d4fd1 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/OnChangedAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b64f25a6678010444a2f834c3287343d 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/ParagraphAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e083b65cf67d064f9a2bfd82edd79d7 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/PathAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3450e7c865ad0c49b8d4faaa06814de 3 | timeCreated: 1457156576 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/PopupAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f824c51e46cb1ef4088ec3e0cf5f38bb 3 | timeCreated: 1457156576 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/RandAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8e98611144b11447b3e07884ebad5ce 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/RegexAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e9562728e3d867449af224f84decd2e 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/ResourcePathAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a74cd017f919c61468dc02f41447bc02 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/SelectEnumAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfa356a405be6354c8d7560cd7de9b6c 3 | timeCreated: 1457156576 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/SelectSceneAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a92a24edf250d984aa6d54499b2a67da 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/ShowTypeAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa981a1fa0fcad34ba6b5f8ff853c7aa 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/SliderAttributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 732d5ee96e66f14458b32a89081db182 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/TagsAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace Vexe.Runtime.Types 4 | { 5 | /// 6 | /// A very useful attribute - markup strings with it to have their values set from a popup of all the tags in the project 7 | /// 8 | public class TagsAttribute : DrawnAttribute 9 | { 10 | } 11 | } -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/TagsAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15a2f25261e1453459c444f3c7d1fc08 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Attributes/User/WhiteSpaceAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 430a20f041596294d8438f6edbcdc1f8 3 | timeCreated: 1457156575 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0deb9be7b635bac489cfcd58492085bd 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Core/BaseBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ea301b23040ec145bb860fa274bc6da 3 | timeCreated: 1434609532 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Core/BaseScriptableObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2878b9d3bc0d3e7428dc0a5224b0c234 3 | timeCreated: 1434609532 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Others.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bfaa02c725848c4a862d045a5187b34 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Others/DataRecord.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 516dc24b83558964faa2015f7af89da0 3 | timeCreated: 1457195745 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Others/ItemTuple.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f9e3d1d8a5ea1e4d9c594a0f588adc5 3 | timeCreated: 1457236920 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Others/KVPList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 985275559845b774f8e8b691a13c8b8e 3 | timeCreated: 1429383464 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/3rdParty/Vexe/Vexe/Runtime/Types/Others/SerializableDictionary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b825766dd3017ce4e8491e4a938d918d 3 | timeCreated: 1434700226 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2758aca9ba78d3b47a10d3107d9af7a3 3 | folderAsset: yes 4 | timeCreated: 1491187831 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Core/BehaviourIterator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bfc96b269cc9304c8f2132bb29dd1c9 3 | timeCreated: 1491185820 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Core/BehaviourNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2666d74530d23a849a53ae3324c5d6d1 3 | timeCreated: 1494629037 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Core/BehaviourTree.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e327cacc628d65b4faa51b0a82bf63c2 3 | timeCreated: 1490678918 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Core/Blackboard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09a07908f6a5fd44e906d041ac135bfc 3 | timeCreated: 1493668534 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Core/BonsaiManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce4f98f4cf5954b4986ba7ad837d871f 3 | timeCreated: 1495046417 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Core/BonsaiTreeComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6de49ee75718ef94398bd86a6a4f23fc 3 | timeCreated: 1493246724 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Core/Composite.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2d92df4d030f704f8686f308af4f022 3 | timeCreated: 1494629046 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Core/ConditionalAbort.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f707c9c2c3d10504fb59bfa137e9a36e 3 | timeCreated: 1494632172 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Core/ConditionalTask.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3009b7f4e17986c49a7c1e3c52392a29 3 | timeCreated: 1495242484 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Core/Decorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20fd494abb680394bba9adb15502cd5e 3 | timeCreated: 1494629053 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Core/Task.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb9c18ec610380045b667e218fabe03f 3 | timeCreated: 1494629057 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Core/TreeIterator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f85d6eac508dc144f94c648bdf338b43 3 | timeCreated: 1493940929 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4eab5577048e894793393248015fe9b 3 | folderAsset: yes 4 | timeCreated: 1490679109 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a03701c2aad8ca4d90ff3547cd0cf86 3 | folderAsset: yes 4 | timeCreated: 1491212928 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/BonsaiCanvas.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3ad5491ce18b4244840bd845a88d931 3 | timeCreated: 1491597645 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/BonsaiEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bf3305aff12a654b845542b54f76bb4 3 | timeCreated: 1491595845 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/BonsaiInputHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 367ae279a41375446af917eb1905fe9f 3 | timeCreated: 1491850616 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/BonsaiInputKnob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e4d1895561dad94db108cc59d607a24 3 | timeCreated: 1491762779 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/BonsaiKnob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c423c1319e31584cb94ae2658f96066 3 | timeCreated: 1491762768 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/BonsaiNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d6ab929a8f428f478ef028f1080d005 3 | timeCreated: 1491597857 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/BonsaiOutputKnob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de88bf8c10be58e4483af78854febbeb 3 | timeCreated: 1491762795 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/BonsaiResources.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 334277caec6b67c4aa487a323d67377e 3 | timeCreated: 1491598432 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/BonsaiSaveManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66e192159b88164469bc21558a3072fa 3 | timeCreated: 1492202492 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/BonsaiWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b2adc5bd130aeb439ae875a4b7c6d2f 3 | timeCreated: 1491213672 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/Inspectors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3642438e73c972347b1f82e06bfe0eea 3 | folderAsset: yes 4 | timeCreated: 1495247987 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/Inspectors/BonsaiTreeInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acdedc25a03736c418ac688d309c5c07 3 | timeCreated: 1493668546 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/Inspectors/GuardInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 503794f83420fec4fbcf01bdd86f9642 3 | timeCreated: 1495662527 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/Inspectors/InterruptorInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 143431ae2d44a394f8d4ee89acaf109b 3 | timeCreated: 1495595484 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/Inspectors/IsValueOfTypeInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5bfcc856814e4f4190834acf217873a 3 | timeCreated: 1496691606 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Editor/Inspectors/KeyCodeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9b5d00cbd9ffa64fa154429a5b3306d 3 | timeCreated: 1495248003 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/NodePropertiesAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa89e3069b1e20e4b92efb08a6c45aee 3 | timeCreated: 1491269342 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Temp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a764c25ad0cb884bac0d79443abacc3 3 | folderAsset: yes 4 | timeCreated: 1492846469 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46559490b0b0bac42807d08e41ef56ec 3 | folderAsset: yes 4 | timeCreated: 1491601536 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/AbortHighlightGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/AbortHighlightGradient.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Arrow.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/BottomChevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/BottomChevron.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Checkmark.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Condition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Condition.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Cross.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/DarkGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/DarkGray.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/DoubleChevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/DoubleChevron.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Exclamation.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/GrayGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/GrayGradient.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/GrayGradientFresnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/GrayGradientFresnel.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/GreenGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/GreenGradient.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Grid.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Hourglass.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Interruptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Interruptable.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Interruptor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Interruptor.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Keyboard.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/LightGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/LightGray.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Log.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Mouse.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/ParallelArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/ParallelArrows.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/ParallelQuestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/ParallelQuestion.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Play.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Priority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Priority.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Question.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Reactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Reactive.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/ReevaluateHighlightGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/ReevaluateHighlightGradient.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/ReferenceHighlightGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/ReferenceHighlightGradient.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/RepeatArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/RepeatArrow.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/RepeatCheckmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/RepeatCheckmark.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/RepeatCross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/RepeatCross.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/RightChevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/RightChevron.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/RootSymbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/RootSymbol.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Shield.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Shuffle.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/ShuffleQuestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/ShuffleQuestion.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/SmallCheckmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/SmallCheckmark.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/SmallCross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/SmallCross.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/Timer.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Designer/Textures/TreeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/Designer/Textures/TreeIcon.png -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2d346661a24fb34f8364f2d6d2d6cf1 3 | folderAsset: yes 4 | timeCreated: 1491197464 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Composites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbe78d3736a2dae468f729d1c4ce8526 3 | folderAsset: yes 4 | timeCreated: 1491197500 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Composites/Parallel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ffd532fcd28735448b5f84b50925241 3 | timeCreated: 1491197489 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Composites/ParallelSelector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9ed9224681fd2e4b81a6a1f1f647031 3 | timeCreated: 1495685120 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Composites/PrioritySelector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e058f722ffddcd44f887561d85c18e34 3 | timeCreated: 1495673364 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Composites/RandomSelector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97c8b5a76b97b5d41abfdb7543ef55ba 3 | timeCreated: 1496198808 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Composites/RandomSequence.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d920075c22928cd4c85854a38593d7c0 3 | timeCreated: 1496198800 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Composites/ReactiveSelector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34479e1890ff52a4a9876c771db563fe 3 | timeCreated: 1495851695 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Composites/Selector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b4d95aae8c1c7b478fe06adf233ef0c 3 | timeCreated: 1491197482 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Composites/Sequence.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f98e42124d794d24baddf03f67db4d0b 3 | timeCreated: 1491197472 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Composites/UtilitySelector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3125ae739752e504a9c041242db34aa8 3 | timeCreated: 1496267744 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/ConditionalAborts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff97073e535538240b43f523f6f45411 3 | folderAsset: yes 4 | timeCreated: 1496529318 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/ConditionalAborts/CompareEntries.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b873e1d94f4d443458297335ebc28434 3 | timeCreated: 1496529644 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/ConditionalAborts/Cooldown.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6e76179991b05745a52a828bd863822 3 | timeCreated: 1496682690 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/ConditionalAborts/IsValueOfType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a151186405f2444d96df2b0a098524c 3 | timeCreated: 1496690644 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/ConditionalAborts/IsValueSet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c296e9ede5f05c14da92067d4e3bfcac 3 | timeCreated: 1496727943 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/ConditionalAborts/TimeLimit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7a8c635ed7b619479ce11e7c5d08b92 3 | timeCreated: 1496629984 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/ConditionalTasks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4628ff283bcfca0468515d8a2f1972bc 3 | folderAsset: yes 4 | timeCreated: 1495242792 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/ConditionalTasks/Chance.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f9f88475f2b4d94b9fdbd96da5b4f1e 3 | timeCreated: 1495242830 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Decorators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b77f7f36b3124040a79eb1ac488d728 3 | folderAsset: yes 4 | timeCreated: 1491208282 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Decorators/Failure.cs: -------------------------------------------------------------------------------- 1 | 2 | using Bonsai.Core; 3 | using Bonsai.Designer; 4 | 5 | namespace Bonsai.Standard 6 | { 7 | /// 8 | /// Alaways returns failure. 9 | /// 10 | [NodeEditorProperties("Decorators/", "SmallCross")] 11 | public class Failure : Decorator 12 | { 13 | public override Status Run() 14 | { 15 | return Status.Failure; 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Decorators/Failure.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 903c1238508f3fd4d8fe428e1f0430e5 3 | timeCreated: 1496263992 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Decorators/Guard.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7b81050d4caace419c313dbf0d25f15 3 | timeCreated: 1495582713 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Decorators/Interruptable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8f69bc7bd609a045b4d326c41dfa200 3 | timeCreated: 1495582699 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Decorators/Interruptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23dc799858adc6f4cb56e9baf9090dc8 3 | timeCreated: 1495582676 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Decorators/Inverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00b18d73c6561f642899ae3fb7905122 3 | timeCreated: 1495582733 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Decorators/Repeater.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b5e4c7bb706ee14eae9c07a7644a37a 3 | timeCreated: 1491208364 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Decorators/Success.cs: -------------------------------------------------------------------------------- 1 | 2 | using Bonsai.Core; 3 | using Bonsai.Designer; 4 | 5 | namespace Bonsai.Standard 6 | { 7 | /// 8 | /// Always returns success. 9 | /// 10 | [NodeEditorProperties("Decorators/", "SmallCheckmark")] 11 | public class Success : Decorator 12 | { 13 | public override Status Run() 14 | { 15 | return Status.Success; 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Decorators/Success.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28e45fb0cab126d4780d7513a3a3a31b 3 | timeCreated: 1496263978 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Decorators/UntilFailure.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8476b8372ee87654bb16007e643395fc 3 | timeCreated: 1496264002 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Decorators/UntilSuccess.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f06453c5f447ee488239189521c5ea9 3 | timeCreated: 1496264012 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Input.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 076b31ffb1694254fb99bd0c9ff8c3aa 3 | folderAsset: yes 4 | timeCreated: 1495241549 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Input/GetKey.cs: -------------------------------------------------------------------------------- 1 | 2 | using UnityEngine; 3 | 4 | using Bonsai.Core; 5 | using Bonsai.Designer; 6 | 7 | namespace Bonsai.Standard 8 | { 9 | [NodeEditorProperties("Input/", "Keyboard")] 10 | public class GetKey : ConditionalAbort 11 | { 12 | public KeyCode key; 13 | 14 | public override bool Condition() 15 | { 16 | return Input.GetKey(key); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Input/GetKey.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74e9baf3482fd214a8ec167c383c6fd7 3 | timeCreated: 1495241651 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Input/GetMouseButton.cs: -------------------------------------------------------------------------------- 1 | 2 | using UnityEngine; 3 | 4 | using Bonsai.Core; 5 | using Bonsai.Designer; 6 | 7 | namespace Bonsai.Standard 8 | { 9 | [NodeEditorProperties("Input/", "Mouse")] 10 | public class GetMouseButton : ConditionalAbort 11 | { 12 | public int button = 0; 13 | 14 | public override bool Condition() 15 | { 16 | return Input.GetMouseButton(button); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Input/GetMouseButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b4201041b6d71b40a57709cd076f575 3 | timeCreated: 1495241629 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Input/IsKeyDown.cs: -------------------------------------------------------------------------------- 1 | 2 | using UnityEngine; 3 | 4 | using Bonsai.Core; 5 | using Bonsai.Designer; 6 | 7 | [NodeEditorProperties("Input/", "Keyboard")] 8 | public class IsKeyDown : ConditionalAbort { 9 | 10 | public KeyCode key; 11 | 12 | public override bool Condition() 13 | { 14 | return Input.GetKeyDown(key); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Input/IsKeyDown.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8fe625d77f4ea143bb2dd24c1bae059 3 | timeCreated: 1495421010 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Input/IsKeyUp.cs: -------------------------------------------------------------------------------- 1 | 2 | using UnityEngine; 3 | 4 | using Bonsai.Core; 5 | using Bonsai.Designer; 6 | 7 | namespace Bonsai.Standard 8 | { 9 | [NodeEditorProperties("Input/", "Keyboard")] 10 | public class IsKeyUp : ConditionalAbort 11 | { 12 | public KeyCode key; 13 | 14 | public override bool Condition() 15 | { 16 | return Input.GetKeyUp(key); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Input/IsKeyUp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c22294fdad12084f87eabf89e033e74 3 | timeCreated: 1495241669 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Input/IsMouseButtonDown.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d9a509b38ab9f840bb7d4f332bbcbec 3 | timeCreated: 1495241638 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Input/IsMouseButtonUp.cs: -------------------------------------------------------------------------------- 1 | 2 | using UnityEngine; 3 | 4 | using Bonsai.Core; 5 | using Bonsai.Designer; 6 | 7 | namespace Bonsai.Standard 8 | { 9 | [NodeEditorProperties("Input/", "Mouse")] 10 | public class IsMouseButtonUp : ConditionalAbort 11 | { 12 | public int button = 0; 13 | 14 | public override bool Condition() 15 | { 16 | return Input.GetMouseButtonUp(button); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Input/IsMouseButtonUp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7d65af852571bc4cbecfa8c695df054 3 | timeCreated: 1495241645 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Tasks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbca61c7dbbbe534d9e1e0e9f537ccb5 3 | folderAsset: yes 4 | timeCreated: 1491208288 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Tasks/Idle.cs: -------------------------------------------------------------------------------- 1 | 2 | using Bonsai.Core; 3 | using Bonsai.Designer; 4 | 5 | /// 6 | /// Always returns running. 7 | /// 8 | [NodeEditorProperties("Tasks/", "Hourglass")] 9 | public class Idle : Task { 10 | 11 | public override BehaviourNode.Status Run() 12 | { 13 | return Status.Running; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Tasks/Idle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3afafcb403fbb9147b2d5023e92d75b0 3 | timeCreated: 1495420797 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Tasks/Include.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ba134dfc50752547a552564711bee84 3 | timeCreated: 1496355674 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Tasks/Print.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 822914705e95c4f40b065b030dc4487d 3 | timeCreated: 1491432500 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Standard/Tasks/Wait.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6290070e5b743314084c4bf4d7201fe5 3 | timeCreated: 1493275138 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df946c617f2e646408f35ea37a80ee59 3 | folderAsset: yes 4 | timeCreated: 1491889803 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Behaviours.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a96ffd861a4d43c4ebab4d12f1acb506 3 | folderAsset: yes 4 | timeCreated: 1495141248 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Behaviours/FindTarget.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea93b2601a8b88b4da6130118186d8ce 3 | timeCreated: 1495138806 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Behaviours/Fire.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e33af732b2a49694790b72b68968991a 3 | timeCreated: 1495141238 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Behaviours/Wander.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 762ad167020f0bd498b52958bc96b9b1 3 | timeCreated: 1495141224 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/NetScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/TestScenes/NetScene.unity -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/NetScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6284def663385374cb36b9cf7b3929c9 3 | timeCreated: 1495133090 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef64758315db5884e93c2a61a7984bdd 3 | folderAsset: yes 4 | timeCreated: 1495141406 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Prefabs/Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/TestScenes/Prefabs/Player.prefab -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Prefabs/Player.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ceb8de70d361044eae7134a2e6ea87e 3 | timeCreated: 1495133174 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Prefabs/Projectile.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/TestScenes/Prefabs/Projectile.prefab -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Prefabs/Projectile.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37cb0456e01725f42bb2e3a0df86323c 3 | timeCreated: 1495145495 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Prefabs/TurretAI.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/TestScenes/Prefabs/TurretAI.prefab -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Prefabs/TurretAI.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4591cb916a46ca74faf03179d0f065ae 3 | timeCreated: 1495137533 4 | licenseType: Free 5 | NativeFormatImporter: 6 | mainObjectFileID: 100100000 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cddf41ea5893fc147938c7a367efa003 3 | folderAsset: yes 4 | timeCreated: 1495141418 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Scripts/Benchmark.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12515b1ce5a7f8f448e8ccf84e8a57ce 3 | timeCreated: 1494744767 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Scripts/LifeTimer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2053996d14c9c04c88ab38dac63609e 3 | timeCreated: 1495146872 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Scripts/PlayerControllerNet.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc650411583bcda408343b65b15fb43f 3 | timeCreated: 1495131614 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Scripts/SpawerAI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bf74f30f47c5e04ab6c0c9d5da18f59 3 | timeCreated: 1495137327 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/Scripts/TestInit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d66a9625b02b4a4bb31055d702a5350 3 | timeCreated: 1496624203 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/TestScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/Assets/Plugins/BonsaiBT/TestScenes/TestScene.unity -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/TestScenes/TestScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46a8369dbf585ad438c063f7231d4952 3 | timeCreated: 1495165152 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e2f21a406d9f784fab562d4f29d5cc3 3 | folderAsset: yes 4 | timeCreated: 1490389666 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/BonsaiBT/Utility/StateMachine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 673c803fff249354e83037dea46ff604 3 | timeCreated: 1489190632 4 | licenseType: Free 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.6.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-l/UnityAssets/HEAD/ProjectSettings/UnityConnectSettings.asset --------------------------------------------------------------------------------