├── .gitignore ├── Assets ├── Automation.meta ├── Automation │ ├── Editor.meta │ └── Editor │ │ ├── SwizzleGenerator.cs │ │ └── SwizzleGenerator.cs.meta ├── Examples.meta ├── Examples │ ├── AnimationParameters.meta │ ├── AnimationParameters │ │ ├── Animation.meta │ │ ├── Animation │ │ │ ├── Catapult.controller │ │ │ ├── Catapult.controller.meta │ │ │ ├── Catapult_Broken.anim │ │ │ ├── Catapult_Broken.anim.meta │ │ │ ├── Catapult_Idle.anim │ │ │ ├── Catapult_Idle.anim.meta │ │ │ ├── Catapult_Launch.anim │ │ │ ├── Catapult_Launch.anim.meta │ │ │ ├── Catapult_MoveIn.anim │ │ │ └── Catapult_MoveIn.anim.meta │ │ ├── AnimationParameters.unity │ │ ├── AnimationParameters.unity.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Grass.mat │ │ │ └── Grass.mat.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── CatapultAnimation.cs │ │ │ └── CatapultAnimation.cs.meta │ ├── Easing.meta │ ├── Easing │ │ ├── Animation.meta │ │ ├── Animation │ │ │ ├── Flappy.controller │ │ │ ├── Flappy.controller.meta │ │ │ ├── Flappy_Fly.anim │ │ │ └── Flappy_Fly.anim.meta │ │ ├── Easing_1.unity │ │ ├── Easing_1.unity.meta │ │ ├── Easing_2.unity │ │ ├── Easing_2.unity.meta │ │ ├── Easing_3.unity │ │ ├── Easing_3.unity.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ │ ├── Example_Ease.cs │ │ │ └── Example_Ease.cs.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── AStar.unity │ │ ├── AStar.unity.meta │ │ ├── ActionList.unity │ │ ├── ActionList.unity.meta │ │ ├── Attributes.unity │ │ ├── Attributes.unity.meta │ │ ├── DebugDraw.unity │ │ ├── DebugDraw.unity.meta │ │ ├── Pooling.unity │ │ ├── Pooling.unity.meta │ │ ├── Scopes.unity │ │ └── Scopes.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Runtime.meta │ │ └── Runtime │ │ ├── AI.meta │ │ ├── AI │ │ ├── Example_AStar.cs │ │ ├── Example_AStar.cs.meta │ │ ├── Example_GraphNode.cs │ │ └── Example_GraphNode.cs.meta │ │ ├── Collections.meta │ │ ├── Collections │ │ ├── ActionList.meta │ │ └── ActionList │ │ │ ├── Example_ActionList.cs │ │ │ └── Example_ActionList.cs.meta │ │ ├── Debug.meta │ │ ├── Debug │ │ ├── DebugDraw.meta │ │ └── DebugDraw │ │ │ ├── Example_DebugDraw.cs │ │ │ └── Example_DebugDraw.cs.meta │ │ ├── Framework.meta │ │ ├── Framework │ │ ├── Command.meta │ │ ├── Command │ │ │ ├── Example_Command.cs │ │ │ └── Example_Command.cs.meta │ │ ├── Example_SingletonBehavior.cs │ │ ├── Example_SingletonBehavior.cs.meta │ │ ├── Signal.meta │ │ └── Signal │ │ │ ├── Example_Signal.cs │ │ │ └── Example_Signal.cs.meta │ │ ├── Math.meta │ │ ├── Math │ │ ├── Example_Range.cs │ │ └── Example_Range.cs.meta │ │ ├── Pooling.meta │ │ ├── Pooling │ │ ├── Example_Poolable.cs │ │ ├── Example_Poolable.cs.meta │ │ ├── Example_Poolable.prefab │ │ ├── Example_Poolable.prefab.meta │ │ ├── Example_PrefabPool.cs │ │ └── Example_PrefabPool.cs.meta │ │ ├── Utility.meta │ │ └── Utility │ │ ├── Attributes.meta │ │ ├── Attributes │ │ ├── Example_InspectorButton.cs │ │ ├── Example_InspectorButton.cs.meta │ │ ├── Example_MaxValueAttribute.cs │ │ ├── Example_MaxValueAttribute.cs.meta │ │ ├── Example_MinValueAttribute.cs │ │ ├── Example_MinValueAttribute.cs.meta │ │ ├── Example_PathAttribute.cs │ │ ├── Example_PathAttribute.cs.meta │ │ ├── Example_PreventEditInInspectorAttribute.cs │ │ ├── Example_PreventEditInInspectorAttribute.cs.meta │ │ ├── Example_ScenePathAttribute.cs │ │ └── Example_ScenePathAttribute.cs.meta │ │ ├── Example_BitField.cs │ │ ├── Example_BitField.cs.meta │ │ ├── Example_Timer.cs │ │ ├── Example_Timer.cs.meta │ │ ├── Scopes.meta │ │ └── Scopes │ │ ├── Example_GUIColorScope.cs │ │ ├── Example_GUIColorScope.cs.meta │ │ ├── Example_ProfilerScope.cs │ │ └── Example_ProfilerScope.cs.meta ├── Scripts.meta ├── Scripts │ ├── Editor.meta │ ├── Editor │ │ ├── Animation.meta │ │ ├── Animation │ │ │ ├── Easing.meta │ │ │ ├── Easing │ │ │ │ ├── EaseComponentEditor.cs │ │ │ │ ├── EaseComponentEditor.cs.meta │ │ │ │ ├── EasePropertyDrawer.cs │ │ │ │ └── EasePropertyDrawer.cs.meta │ │ │ ├── ParameterHandles.meta │ │ │ └── ParameterHandles │ │ │ │ ├── AnimatorBoolHandlePropertyDrawer.cs │ │ │ │ ├── AnimatorBoolHandlePropertyDrawer.cs.meta │ │ │ │ ├── AnimatorFloatHandlePropertyDrawer.cs │ │ │ │ ├── AnimatorFloatHandlePropertyDrawer.cs.meta │ │ │ │ ├── AnimatorIntHandlePropertyDrawer.cs │ │ │ │ ├── AnimatorIntHandlePropertyDrawer.cs.meta │ │ │ │ ├── AnimatorParameterHandlePropertyDrawerBase.cs │ │ │ │ ├── AnimatorParameterHandlePropertyDrawerBase.cs.meta │ │ │ │ ├── AnimatorTriggerHandlePropertyDrawer.cs │ │ │ │ └── AnimatorTriggerHandlePropertyDrawer.cs.meta │ │ ├── Atlas.Editor.asmdef │ │ ├── Atlas.Editor.asmdef.meta │ │ ├── Debug.meta │ │ ├── Debug │ │ │ ├── TimeScaleDebugWindow.cs │ │ │ └── TimeScaleDebugWindow.cs.meta │ │ ├── Effects.meta │ │ ├── Effects │ │ │ ├── EffectEditor.cs │ │ │ └── EffectEditor.cs.meta │ │ ├── Internal.meta │ │ ├── Internal │ │ │ ├── Layer.meta │ │ │ ├── Layer │ │ │ │ ├── LayerFileGenerator.cs │ │ │ │ ├── LayerFileGenerator.cs.meta │ │ │ │ ├── LayerFileModificationProcessor.cs │ │ │ │ └── LayerFileModificationProcessor.cs.meta │ │ │ ├── Preferences.meta │ │ │ ├── Preferences │ │ │ │ ├── AtlasSettingsProvider.cs │ │ │ │ ├── AtlasSettingsProvider.cs.meta │ │ │ │ ├── Preferences.cs │ │ │ │ ├── Preferences.cs.meta │ │ │ │ ├── SettingsItems.meta │ │ │ │ └── SettingsItems │ │ │ │ │ ├── DebugDrawSettings.cs │ │ │ │ │ ├── DebugDrawSettings.cs.meta │ │ │ │ │ ├── ISettingsItem.cs │ │ │ │ │ ├── ISettingsItem.cs.meta │ │ │ │ │ ├── MonoBehaviourEditorSettings.cs │ │ │ │ │ ├── MonoBehaviourEditorSettings.cs.meta │ │ │ │ │ ├── ScenePathSettings.cs │ │ │ │ │ ├── ScenePathSettings.cs.meta │ │ │ │ │ ├── ScriptingSettings.cs │ │ │ │ │ ├── ScriptingSettings.cs.meta │ │ │ │ │ ├── TransformEditorSettings.cs │ │ │ │ │ └── TransformEditorSettings.cs.meta │ │ │ ├── Version.cs │ │ │ └── Version.cs.meta │ │ ├── Math.meta │ │ ├── Math │ │ │ ├── Range.meta │ │ │ └── Range │ │ │ │ ├── RangeIntPropertyDrawer.cs │ │ │ │ ├── RangeIntPropertyDrawer.cs.meta │ │ │ │ ├── RangePropertyDrawer.cs │ │ │ │ └── RangePropertyDrawer.cs.meta │ │ ├── Utility.meta │ │ └── Utility │ │ │ ├── Attributes.meta │ │ │ ├── Attributes │ │ │ ├── AnimatorParameterNamePropertyDrawer.cs │ │ │ ├── AnimatorParameterNamePropertyDrawer.cs.meta │ │ │ ├── MaxValuePropertyDrawer.cs │ │ │ ├── MaxValuePropertyDrawer.cs.meta │ │ │ ├── MinValuePropertyDrawer.cs │ │ │ ├── MinValuePropertyDrawer.cs.meta │ │ │ ├── PathPropertyDrawer.cs │ │ │ ├── PathPropertyDrawer.cs.meta │ │ │ ├── PreventEditInEditModePropertyDrawer.cs │ │ │ ├── PreventEditInEditModePropertyDrawer.cs.meta │ │ │ ├── PreventEditInInspectorPropertyDrawer.cs │ │ │ ├── PreventEditInInspectorPropertyDrawer.cs.meta │ │ │ ├── PreventEditInPlayModePropertyDrawer.cs │ │ │ ├── PreventEditInPlayModePropertyDrawer.cs.meta │ │ │ ├── ScenePathPropertyDrawer.cs │ │ │ └── ScenePathPropertyDrawer.cs.meta │ │ │ ├── EditorGUILayoutUtility.cs │ │ │ ├── EditorGUILayoutUtility.cs.meta │ │ │ ├── EditorTools.cs │ │ │ ├── EditorTools.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ ├── SerializedObject.meta │ │ │ ├── SerializedObject │ │ │ │ ├── SerializedObjectExtensions.cs │ │ │ │ └── SerializedObjectExtensions.cs.meta │ │ │ ├── SerializedProperty.meta │ │ │ ├── SerializedProperty │ │ │ │ ├── SerializedPropertyExtensions.cs │ │ │ │ └── SerializedPropertyExtensions.cs.meta │ │ │ ├── System.meta │ │ │ └── System │ │ │ │ ├── EnumExtensions.cs │ │ │ │ ├── EnumExtensions.cs.meta │ │ │ │ ├── TypeExtensions.cs │ │ │ │ └── TypeExtensions.cs.meta │ │ │ ├── GUID.meta │ │ │ ├── GUID │ │ │ ├── GUIDPropertyDrawer.cs │ │ │ └── GUIDPropertyDrawer.cs.meta │ │ │ ├── MonoBehaviourEditor.cs │ │ │ ├── MonoBehaviourEditor.cs.meta │ │ │ ├── ScriptingDefines.cs │ │ │ ├── ScriptingDefines.cs.meta │ │ │ ├── TextIndentHelper.cs │ │ │ ├── TextIndentHelper.cs.meta │ │ │ ├── TransformEditor.cs │ │ │ └── TransformEditor.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── AI.meta │ │ ├── AI │ │ ├── Pathfinding.meta │ │ ├── Pathfinding │ │ │ ├── AStar.cs │ │ │ └── AStar.cs.meta │ │ ├── StateMachine.meta │ │ └── StateMachine │ │ │ ├── IStateLink.cs │ │ │ ├── IStateLink.cs.meta │ │ │ ├── IStateMachine.cs │ │ │ ├── IStateMachine.cs.meta │ │ │ ├── State.cs │ │ │ ├── State.cs.meta │ │ │ ├── StateLink.cs │ │ │ ├── StateLink.cs.meta │ │ │ ├── StateMachine.cs │ │ │ ├── StateMachine.cs.meta │ │ │ ├── StateMachineBehavior.cs │ │ │ └── StateMachineBehavior.cs.meta │ │ ├── Animation.meta │ │ ├── Animation │ │ ├── Easing.meta │ │ ├── Easing │ │ │ ├── Components.meta │ │ │ ├── Components │ │ │ │ ├── EaseComponent.cs │ │ │ │ ├── EaseComponent.cs.meta │ │ │ │ ├── EaseEulerRotationTo.cs │ │ │ │ ├── EaseEulerRotationTo.cs.meta │ │ │ │ ├── EasePositionTo.cs │ │ │ │ ├── EasePositionTo.cs.meta │ │ │ │ ├── EaseRotationTo.cs │ │ │ │ ├── EaseRotationTo.cs.meta │ │ │ │ ├── EaseScaleTo.cs │ │ │ │ ├── EaseScaleTo.cs.meta │ │ │ │ ├── EaseSpriteColorTo.cs │ │ │ │ └── EaseSpriteColorTo.cs.meta │ │ │ ├── Ease.cs │ │ │ ├── Ease.cs.meta │ │ │ ├── EaseFunctions.meta │ │ │ ├── EaseFunctions │ │ │ │ ├── BackEase.cs │ │ │ │ ├── BackEase.cs.meta │ │ │ │ ├── BounceEase.cs │ │ │ │ ├── BounceEase.cs.meta │ │ │ │ ├── CircularEase.cs │ │ │ │ ├── CircularEase.cs.meta │ │ │ │ ├── CubicEase.cs │ │ │ │ ├── CubicEase.cs.meta │ │ │ │ ├── ElasticEase.cs │ │ │ │ ├── ElasticEase.cs.meta │ │ │ │ ├── ExponentialEase.cs │ │ │ │ ├── ExponentialEase.cs.meta │ │ │ │ ├── LinearEase.cs │ │ │ │ ├── LinearEase.cs.meta │ │ │ │ ├── QuadraticEase.cs │ │ │ │ ├── QuadraticEase.cs.meta │ │ │ │ ├── QuarticEase.cs │ │ │ │ ├── QuarticEase.cs.meta │ │ │ │ ├── QuinticEase.cs │ │ │ │ ├── QuinticEase.cs.meta │ │ │ │ ├── SineEase.cs │ │ │ │ └── SineEase.cs.meta │ │ │ ├── EaseType.cs │ │ │ └── EaseType.cs.meta │ │ ├── ParameterHandles.meta │ │ └── ParameterHandles │ │ │ ├── AnimatorBoolHandle.cs │ │ │ ├── AnimatorBoolHandle.cs.meta │ │ │ ├── AnimatorExtensions.cs │ │ │ ├── AnimatorExtensions.cs.meta │ │ │ ├── AnimatorFloatHandle.cs │ │ │ ├── AnimatorFloatHandle.cs.meta │ │ │ ├── AnimatorIntHandle.cs │ │ │ ├── AnimatorIntHandle.cs.meta │ │ │ ├── AnimatorTriggerHandle.cs │ │ │ └── AnimatorTriggerHandle.cs.meta │ │ ├── Atlas.Runtime.asmdef │ │ ├── Atlas.Runtime.asmdef.meta │ │ ├── Collections.meta │ │ ├── Collections │ │ ├── ActionList.meta │ │ ├── ActionList │ │ │ ├── ActionList.cs │ │ │ ├── ActionList.cs.meta │ │ │ ├── Actions.meta │ │ │ └── Actions │ │ │ │ ├── IAction.cs │ │ │ │ ├── IAction.cs.meta │ │ │ │ ├── InterpolatedAction.cs │ │ │ │ ├── InterpolatedAction.cs.meta │ │ │ │ ├── TransientAction.cs │ │ │ │ └── TransientAction.cs.meta │ │ ├── CircularQueue.cs │ │ ├── CircularQueue.cs.meta │ │ ├── Extensions.meta │ │ ├── Extensions │ │ │ ├── ListExtensions.cs │ │ │ └── ListExtensions.cs.meta │ │ ├── Heap.meta │ │ ├── Heap │ │ │ ├── BinaryHeap.cs │ │ │ ├── BinaryHeap.cs.meta │ │ │ ├── MaxHeap.cs │ │ │ ├── MaxHeap.cs.meta │ │ │ ├── MinHeap.cs │ │ │ └── MinHeap.cs.meta │ │ ├── PriorityQueue.meta │ │ └── PriorityQueue │ │ │ ├── IndexedPriorityQueue.cs │ │ │ ├── IndexedPriorityQueue.cs.meta │ │ │ ├── PriorityQueue.cs │ │ │ └── PriorityQueue.cs.meta │ │ ├── Debug.meta │ │ ├── Debug │ │ ├── DebugDraw.meta │ │ └── DebugDraw │ │ │ ├── DebugDraw.cs │ │ │ ├── DebugDraw.cs.meta │ │ │ ├── Drawers.meta │ │ │ ├── Drawers │ │ │ ├── CircleDebugDrawer.cs │ │ │ ├── CircleDebugDrawer.cs.meta │ │ │ ├── CrossDebugDrawer.cs │ │ │ ├── CrossDebugDrawer.cs.meta │ │ │ ├── IDebugDrawer.cs │ │ │ ├── IDebugDrawer.cs.meta │ │ │ ├── LineDebugDrawer.cs │ │ │ ├── LineDebugDrawer.cs.meta │ │ │ ├── RectangleDebugDrawer.cs │ │ │ ├── RectangleDebugDrawer.cs.meta │ │ │ ├── TextDebugDrawer.cs │ │ │ └── TextDebugDrawer.cs.meta │ │ │ ├── Modifiers.meta │ │ │ └── Modifiers │ │ │ ├── BillboardDebugDrawModifier.cs │ │ │ ├── BillboardDebugDrawModifier.cs.meta │ │ │ ├── DebugDrawModifierExtensions.cs │ │ │ ├── DebugDrawModifierExtensions.cs.meta │ │ │ ├── TimedDebugDrawModifier.cs │ │ │ ├── TimedDebugDrawModifier.cs.meta │ │ │ ├── TransformDebugDrawModifier.cs │ │ │ └── TransformDebugDrawModifier.cs.meta │ │ ├── Effects.meta │ │ ├── Effects │ │ ├── Effect.cs │ │ ├── Effect.cs.meta │ │ ├── Emitters.meta │ │ └── Emitters │ │ │ ├── AudioEffectEmitter.cs │ │ │ ├── AudioEffectEmitter.cs.meta │ │ │ ├── EffectEmitterBase.cs │ │ │ ├── EffectEmitterBase.cs.meta │ │ │ ├── ParticleEffectEmitter.cs │ │ │ ├── ParticleEffectEmitter.cs.meta │ │ │ ├── PlayableEffectEmitter.cs │ │ │ └── PlayableEffectEmitter.cs.meta │ │ ├── Framework.meta │ │ ├── Framework │ │ ├── Command.meta │ │ ├── Command │ │ │ ├── ICommand.cs │ │ │ └── ICommand.cs.meta │ │ ├── Signal.meta │ │ ├── Signal │ │ │ ├── ISignal.cs │ │ │ ├── ISignal.cs.meta │ │ │ ├── Signal.cs │ │ │ ├── Signal.cs.meta │ │ │ ├── SignalBase.cs │ │ │ ├── SignalBase.cs.meta │ │ │ ├── SignalManager.cs │ │ │ └── SignalManager.cs.meta │ │ ├── SingletonBehavior.cs │ │ └── SingletonBehavior.cs.meta │ │ ├── Math.meta │ │ ├── Math │ │ ├── Graph.meta │ │ ├── Graph │ │ │ ├── DirectedGraph.cs │ │ │ ├── DirectedGraph.cs.meta │ │ │ ├── DirectedGraphExtensions.cs │ │ │ ├── DirectedGraphExtensions.cs.meta │ │ │ ├── GraphConnection.cs │ │ │ ├── GraphConnection.cs.meta │ │ │ ├── IGraphConnection.cs │ │ │ ├── IGraphConnection.cs.meta │ │ │ ├── IGraphNode.cs │ │ │ └── IGraphNode.cs.meta │ │ ├── Range.meta │ │ ├── Range │ │ │ ├── Range.cs │ │ │ ├── Range.cs.meta │ │ │ ├── RangeInt.cs │ │ │ └── RangeInt.cs.meta │ │ ├── Vector.meta │ │ └── Vector │ │ │ ├── Swizzle.cs │ │ │ ├── Swizzle.cs.meta │ │ │ ├── VectorExtensions.cs │ │ │ └── VectorExtensions.cs.meta │ │ ├── Pooling.meta │ │ ├── Pooling │ │ ├── IPoolable.cs │ │ ├── IPoolable.cs.meta │ │ ├── PrefabPool.cs │ │ └── PrefabPool.cs.meta │ │ ├── TaskScheduler.meta │ │ ├── TaskScheduler │ │ ├── IScheduledTask.cs │ │ ├── IScheduledTask.cs.meta │ │ ├── TaskScheduler.cs │ │ └── TaskScheduler.cs.meta │ │ ├── UI.meta │ │ ├── UI │ │ ├── AnchorPosition.cs │ │ ├── AnchorPosition.cs.meta │ │ ├── IMGUI.meta │ │ ├── IMGUI │ │ │ ├── GUIListener.cs │ │ │ └── GUIListener.cs.meta │ │ ├── IUIPanel.cs │ │ ├── IUIPanel.cs.meta │ │ ├── UIStack.cs │ │ └── UIStack.cs.meta │ │ ├── Utility.meta │ │ └── Utility │ │ ├── Attributes.meta │ │ ├── Attributes │ │ ├── AnimatorParameterNameAttribute.cs │ │ ├── AnimatorParameterNameAttribute.cs.meta │ │ ├── InspectorButtonAttribute.cs │ │ ├── InspectorButtonAttribute.cs.meta │ │ ├── MaxValueAttribute.cs │ │ ├── MaxValueAttribute.cs.meta │ │ ├── MinValueAttribute.cs │ │ ├── MinValueAttribute.cs.meta │ │ ├── PathAttribute.cs │ │ ├── PathAttribute.cs.meta │ │ ├── PreventEditInEditModeAttribute.cs │ │ ├── PreventEditInEditModeAttribute.cs.meta │ │ ├── PreventEditInInspectorAttribute.cs │ │ ├── PreventEditInInspectorAttribute.cs.meta │ │ ├── PreventEditInPlayModeAttribute.cs │ │ ├── PreventEditInPlayModeAttribute.cs.meta │ │ ├── ScenePathAttribute.cs │ │ └── ScenePathAttribute.cs.meta │ │ ├── BitField.cs │ │ ├── BitField.cs.meta │ │ ├── Extensions.meta │ │ ├── Extensions │ │ ├── Debug.meta │ │ ├── Debug │ │ │ ├── DebugExtensions.cs │ │ │ └── DebugExtensions.cs.meta │ │ ├── IntExtensions.cs │ │ ├── IntExtensions.cs.meta │ │ ├── KeyValuePairExtensions.cs │ │ └── KeyValuePairExtensions.cs.meta │ │ ├── GUID.meta │ │ ├── GUID │ │ ├── GUID.cs │ │ └── GUID.cs.meta │ │ ├── GizmoUtility.cs │ │ ├── GizmoUtility.cs.meta │ │ ├── Hashing.meta │ │ ├── Hashing │ │ ├── HashCode.cs │ │ └── HashCode.cs.meta │ │ ├── Scopes.meta │ │ ├── Scopes │ │ ├── GUIBackgroundColorScope.cs │ │ ├── GUIBackgroundColorScope.cs.meta │ │ ├── GUIColorScope.cs │ │ ├── GUIColorScope.cs.meta │ │ ├── GUIContentColorScope.cs │ │ ├── GUIContentColorScope.cs.meta │ │ ├── ProfilerScope.cs │ │ └── ProfilerScope.cs.meta │ │ ├── StringUtility.cs │ │ ├── StringUtility.cs.meta │ │ ├── Timer.meta │ │ ├── Timer │ │ ├── TimeScale.cs │ │ ├── TimeScale.cs.meta │ │ ├── Timer.cs │ │ └── Timer.cs.meta │ │ ├── Utility.cs │ │ └── Utility.cs.meta ├── Test.meta ├── Test │ ├── Animation.meta │ ├── Animation │ │ ├── Test_Animator1.controller │ │ ├── Test_Animator1.controller.meta │ │ ├── Test_Animator2.controller │ │ └── Test_Animator2.controller.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── Test_AnimatorParameters.unity │ │ ├── Test_AnimatorParameters.unity.meta │ │ ├── Test_Attributes.unity │ │ ├── Test_Attributes.unity.meta │ │ ├── Test_AttributesSettings.lighting │ │ ├── Test_AttributesSettings.lighting.meta │ │ ├── Test_DebugDraw.unity │ │ ├── Test_DebugDraw.unity.meta │ │ ├── Test_Effect.unity │ │ ├── Test_Effect.unity.meta │ │ ├── Test_Tween.unity │ │ └── Test_Tween.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── Unit.meta │ │ └── Unit │ │ │ ├── Collections.meta │ │ │ ├── Collections │ │ │ ├── BinaryHeapTests.cs │ │ │ └── BinaryHeapTests.cs.meta │ │ │ ├── Pooling.meta │ │ │ ├── Pooling │ │ │ ├── PrefabPoolTests.cs │ │ │ └── PrefabPoolTests.cs.meta │ │ │ ├── Signal.meta │ │ │ └── Signal │ │ │ ├── SignalManagerTests.cs │ │ │ └── SignalManagerTests.cs.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ ├── Demo.meta │ │ ├── Demo │ │ ├── Animation.meta │ │ ├── Animation │ │ │ ├── AnimatorParameterTest.cs │ │ │ └── AnimatorParameterTest.cs.meta │ │ ├── Debug.meta │ │ ├── Debug │ │ │ ├── DebugDrawTest.cs │ │ │ └── DebugDrawTest.cs.meta │ │ ├── Utility.meta │ │ └── Utility │ │ │ ├── Attributes.meta │ │ │ ├── Attributes │ │ │ ├── AttributesTest.cs │ │ │ └── AttributesTest.cs.meta │ │ │ ├── SimpleOrbit.cs │ │ │ └── SimpleOrbit.cs.meta │ │ ├── Math.meta │ │ └── Math │ │ ├── EasingTests.cs │ │ └── EasingTests.cs.meta ├── ThirdParty.meta ├── ThirdParty │ ├── Kenney Assets.meta │ └── Kenney Assets │ │ ├── Castle Kit.meta │ │ ├── Castle Kit │ │ ├── License.txt │ │ ├── License.txt.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── _defaultMat.mat │ │ │ │ ├── _defaultMat.mat.meta │ │ │ │ ├── astronaut.mat │ │ │ │ ├── astronaut.mat.meta │ │ │ │ ├── cotton.mat │ │ │ │ ├── cotton.mat.meta │ │ │ │ ├── dark.mat │ │ │ │ ├── dark.mat.meta │ │ │ │ ├── king.mat │ │ │ │ ├── king.mat.meta │ │ │ │ ├── knightBlue.mat │ │ │ │ ├── knightBlue.mat.meta │ │ │ │ ├── knightRed.mat │ │ │ │ ├── knightRed.mat.meta │ │ │ │ ├── roof.mat │ │ │ │ ├── roof.mat.meta │ │ │ │ ├── roofRed.mat │ │ │ │ ├── roofRed.mat.meta │ │ │ │ ├── wall.mat │ │ │ │ ├── wall.mat.meta │ │ │ │ ├── wallDark.mat │ │ │ │ ├── wallDark.mat.meta │ │ │ │ ├── wood.mat │ │ │ │ └── wood.mat.meta │ │ │ ├── Textures.meta │ │ │ ├── Textures │ │ │ │ ├── astronaut.png │ │ │ │ ├── astronaut.png.meta │ │ │ │ ├── king.png │ │ │ │ ├── king.png.meta │ │ │ │ ├── knightBlue.png │ │ │ │ ├── knightBlue.png.meta │ │ │ │ ├── knightRed.png │ │ │ │ └── knightRed.png.meta │ │ │ ├── bridge.fbx │ │ │ ├── bridge.fbx.meta │ │ │ ├── door.fbx │ │ │ ├── door.fbx.meta │ │ │ ├── flagBannerLong.fbx │ │ │ ├── flagBannerLong.fbx.meta │ │ │ ├── flagBannerShort.fbx │ │ │ ├── flagBannerShort.fbx.meta │ │ │ ├── flagBlue.fbx │ │ │ ├── flagBlue.fbx.meta │ │ │ ├── flagBlueWide.fbx │ │ │ ├── flagBlueWide.fbx.meta │ │ │ ├── flagWhite.fbx │ │ │ ├── flagWhite.fbx.meta │ │ │ ├── flagWhiteWide.fbx │ │ │ ├── flagWhiteWide.fbx.meta │ │ │ ├── gate.fbx │ │ │ ├── gate.fbx.meta │ │ │ ├── king.fbx │ │ │ ├── king.fbx.meta │ │ │ ├── knightBlue.fbx │ │ │ ├── knightBlue.fbx.meta │ │ │ ├── knightRed.fbx │ │ │ ├── knightRed.fbx.meta │ │ │ ├── metalGate.fbx │ │ │ ├── metalGate.fbx.meta │ │ │ ├── shieldBlue.fbx │ │ │ ├── shieldBlue.fbx.meta │ │ │ ├── shieldRed.fbx │ │ │ ├── shieldRed.fbx.meta │ │ │ ├── siegeBallista.fbx │ │ │ ├── siegeBallista.fbx.meta │ │ │ ├── siegeCatapult.fbx │ │ │ ├── siegeCatapult.fbx.meta │ │ │ ├── siegeRam.fbx │ │ │ ├── siegeRam.fbx.meta │ │ │ ├── siegeTower.fbx │ │ │ ├── siegeTower.fbx.meta │ │ │ ├── siegeTrebuchet.fbx │ │ │ ├── siegeTrebuchet.fbx.meta │ │ │ ├── stairsStone.fbx │ │ │ ├── stairsStone.fbx.meta │ │ │ ├── stairsStoneSlant.fbx │ │ │ ├── stairsStoneSlant.fbx.meta │ │ │ ├── sword.fbx │ │ │ ├── sword.fbx.meta │ │ │ ├── towerBalcony.fbx │ │ │ ├── towerBalcony.fbx.meta │ │ │ ├── towerBase.fbx │ │ │ ├── towerBase.fbx.meta │ │ │ ├── towerSquare.fbx │ │ │ ├── towerSquare.fbx.meta │ │ │ ├── towerSquareArch.fbx │ │ │ ├── towerSquareArch.fbx.meta │ │ │ ├── towerSquareBase.fbx │ │ │ ├── towerSquareBase.fbx.meta │ │ │ ├── towerSquareBaseBorder.fbx │ │ │ ├── towerSquareBaseBorder.fbx.meta │ │ │ ├── towerSquareBaseColor.fbx │ │ │ ├── towerSquareBaseColor.fbx.meta │ │ │ ├── towerSquareMid.fbx │ │ │ ├── towerSquareMid.fbx.meta │ │ │ ├── towerSquareMidColor.fbx │ │ │ ├── towerSquareMidColor.fbx.meta │ │ │ ├── towerSquareMidOpen.fbx │ │ │ ├── towerSquareMidOpen.fbx.meta │ │ │ ├── towerSquareMidOpenHalf.fbx │ │ │ ├── towerSquareMidOpenHalf.fbx.meta │ │ │ ├── towerSquareMidWindows.fbx │ │ │ ├── towerSquareMidWindows.fbx.meta │ │ │ ├── towerSquarePoles.fbx │ │ │ ├── towerSquarePoles.fbx.meta │ │ │ ├── towerSquareRoof.fbx │ │ │ ├── towerSquareRoof.fbx.meta │ │ │ ├── towerSquareTop.fbx │ │ │ ├── towerSquareTop.fbx.meta │ │ │ ├── towerSquareTopColor.fbx │ │ │ ├── towerSquareTopColor.fbx.meta │ │ │ ├── towerSquareTopRoof.fbx │ │ │ ├── towerSquareTopRoof.fbx.meta │ │ │ ├── towerSquareTopRoofHigh.fbx │ │ │ ├── towerSquareTopRoofHigh.fbx.meta │ │ │ ├── towerTop.fbx │ │ │ ├── towerTop.fbx.meta │ │ │ ├── towerTopCorner.fbx │ │ │ ├── towerTopCorner.fbx.meta │ │ │ ├── towerTopRoof.fbx │ │ │ ├── towerTopRoof.fbx.meta │ │ │ ├── wall.fbx │ │ │ ├── wall.fbx.meta │ │ │ ├── wallCorner.fbx │ │ │ ├── wallCorner.fbx.meta │ │ │ ├── wallCornerHalf.fbx │ │ │ ├── wallCornerHalf.fbx.meta │ │ │ ├── wallCornerHalfTower.fbx │ │ │ ├── wallCornerHalfTower.fbx.meta │ │ │ ├── wallDoor.fbx │ │ │ ├── wallDoor.fbx.meta │ │ │ ├── wallHalf.fbx │ │ │ ├── wallHalf.fbx.meta │ │ │ ├── wallNarrow.fbx │ │ │ ├── wallNarrow.fbx.meta │ │ │ ├── wallNarrowCorner.fbx │ │ │ ├── wallNarrowCorner.fbx.meta │ │ │ ├── wallNarrowGate.fbx │ │ │ ├── wallNarrowGate.fbx.meta │ │ │ ├── wallNarrowStairs.fbx │ │ │ ├── wallNarrowStairs.fbx.meta │ │ │ ├── wallNarrowStairsFence.fbx │ │ │ ├── wallNarrowStairsFence.fbx.meta │ │ │ ├── wallNarrowWood.fbx │ │ │ ├── wallNarrowWood.fbx.meta │ │ │ ├── wallNarrowWoodFence.fbx │ │ │ ├── wallNarrowWoodFence.fbx.meta │ │ │ ├── wallPillar.fbx │ │ │ ├── wallPillar.fbx.meta │ │ │ ├── wallStud.fbx │ │ │ ├── wallStud.fbx.meta │ │ │ ├── wallToNarrow.fbx │ │ │ └── wallToNarrow.fbx.meta │ │ ├── Preview.png │ │ └── Preview.png.meta │ │ ├── Pixel Platformer.meta │ │ ├── Pixel Platformer │ │ ├── Background.meta │ │ ├── Background │ │ │ ├── Tiles.meta │ │ │ ├── Tiles │ │ │ │ ├── tilemap_packed_0.asset │ │ │ │ ├── tilemap_packed_0.asset.meta │ │ │ │ ├── tilemap_packed_1.asset │ │ │ │ ├── tilemap_packed_1.asset.meta │ │ │ │ ├── tilemap_packed_10.asset │ │ │ │ ├── tilemap_packed_10.asset.meta │ │ │ │ ├── tilemap_packed_11.asset │ │ │ │ ├── tilemap_packed_11.asset.meta │ │ │ │ ├── tilemap_packed_2.asset │ │ │ │ ├── tilemap_packed_2.asset.meta │ │ │ │ ├── tilemap_packed_3.asset │ │ │ │ ├── tilemap_packed_3.asset.meta │ │ │ │ ├── tilemap_packed_4.asset │ │ │ │ ├── tilemap_packed_4.asset.meta │ │ │ │ ├── tilemap_packed_5.asset │ │ │ │ ├── tilemap_packed_5.asset.meta │ │ │ │ ├── tilemap_packed_6.asset │ │ │ │ ├── tilemap_packed_6.asset.meta │ │ │ │ ├── tilemap_packed_7.asset │ │ │ │ ├── tilemap_packed_7.asset.meta │ │ │ │ ├── tilemap_packed_8.asset │ │ │ │ ├── tilemap_packed_8.asset.meta │ │ │ │ ├── tilemap_packed_9.asset │ │ │ │ └── tilemap_packed_9.asset.meta │ │ │ ├── background_0000.png │ │ │ ├── background_0000.png.meta │ │ │ ├── background_0001.png │ │ │ ├── background_0001.png.meta │ │ │ ├── background_0002.png │ │ │ ├── background_0002.png.meta │ │ │ ├── background_0003.png │ │ │ ├── background_0003.png.meta │ │ │ ├── background_0004.png │ │ │ ├── background_0004.png.meta │ │ │ ├── background_0005.png │ │ │ ├── background_0005.png.meta │ │ │ ├── background_0006.png │ │ │ ├── background_0006.png.meta │ │ │ ├── background_0007.png │ │ │ ├── background_0007.png.meta │ │ │ ├── background_0008.png │ │ │ ├── background_0008.png.meta │ │ │ ├── background_0009.png │ │ │ ├── background_0009.png.meta │ │ │ ├── background_0010.png │ │ │ ├── background_0010.png.meta │ │ │ ├── background_0011.png │ │ │ ├── background_0011.png.meta │ │ │ ├── tilemap.png │ │ │ ├── tilemap.png.meta │ │ │ ├── tilemap_packed.png │ │ │ └── tilemap_packed.png.meta │ │ ├── Characters.meta │ │ ├── Characters │ │ │ ├── character_0000.png │ │ │ ├── character_0000.png.meta │ │ │ ├── character_0001.png │ │ │ ├── character_0001.png.meta │ │ │ ├── character_0002.png │ │ │ ├── character_0002.png.meta │ │ │ ├── character_0003.png │ │ │ ├── character_0003.png.meta │ │ │ ├── character_0004.png │ │ │ ├── character_0004.png.meta │ │ │ ├── character_0005.png │ │ │ ├── character_0005.png.meta │ │ │ ├── character_0006.png │ │ │ ├── character_0006.png.meta │ │ │ ├── character_0007.png │ │ │ ├── character_0007.png.meta │ │ │ ├── character_0008.png │ │ │ ├── character_0008.png.meta │ │ │ ├── character_0009.png │ │ │ ├── character_0009.png.meta │ │ │ ├── character_0010.png │ │ │ ├── character_0010.png.meta │ │ │ ├── character_0011.png │ │ │ ├── character_0011.png.meta │ │ │ ├── character_0012.png │ │ │ ├── character_0012.png.meta │ │ │ ├── character_0013.png │ │ │ ├── character_0013.png.meta │ │ │ ├── character_0014.png │ │ │ ├── character_0014.png.meta │ │ │ ├── character_0015.png │ │ │ ├── character_0015.png.meta │ │ │ ├── character_0016.png │ │ │ ├── character_0016.png.meta │ │ │ ├── character_0017.png │ │ │ ├── character_0017.png.meta │ │ │ ├── character_0018.png │ │ │ ├── character_0018.png.meta │ │ │ ├── character_0019.png │ │ │ ├── character_0019.png.meta │ │ │ ├── character_0020.png │ │ │ ├── character_0020.png.meta │ │ │ ├── character_0021.png │ │ │ ├── character_0021.png.meta │ │ │ ├── character_0022.png │ │ │ ├── character_0022.png.meta │ │ │ ├── character_0023.png │ │ │ ├── character_0023.png.meta │ │ │ ├── character_0024.png │ │ │ ├── character_0024.png.meta │ │ │ ├── character_0025.png │ │ │ ├── character_0025.png.meta │ │ │ ├── character_0026.png │ │ │ └── character_0026.png.meta │ │ ├── License.txt │ │ ├── License.txt.meta │ │ ├── Preview.png │ │ ├── Preview.png.meta │ │ ├── SampleA.png │ │ ├── SampleA.png.meta │ │ ├── SampleB.png │ │ ├── SampleB.png.meta │ │ ├── Tilemap.meta │ │ ├── Tilemap │ │ │ ├── Kenney Pixel Platformer.prefab │ │ │ ├── Kenney Pixel Platformer.prefab.meta │ │ │ ├── Tiles.meta │ │ │ ├── Tiles │ │ │ │ ├── tiles_packed_0.asset │ │ │ │ ├── tiles_packed_0.asset.meta │ │ │ │ ├── tiles_packed_1.asset │ │ │ │ ├── tiles_packed_1.asset.meta │ │ │ │ ├── tiles_packed_10.asset │ │ │ │ ├── tiles_packed_10.asset.meta │ │ │ │ ├── tiles_packed_100.asset │ │ │ │ ├── tiles_packed_100.asset.meta │ │ │ │ ├── tiles_packed_101.asset │ │ │ │ ├── tiles_packed_101.asset.meta │ │ │ │ ├── tiles_packed_102.asset │ │ │ │ ├── tiles_packed_102.asset.meta │ │ │ │ ├── tiles_packed_103.asset │ │ │ │ ├── tiles_packed_103.asset.meta │ │ │ │ ├── tiles_packed_104.asset │ │ │ │ ├── tiles_packed_104.asset.meta │ │ │ │ ├── tiles_packed_105.asset │ │ │ │ ├── tiles_packed_105.asset.meta │ │ │ │ ├── tiles_packed_106.asset │ │ │ │ ├── tiles_packed_106.asset.meta │ │ │ │ ├── tiles_packed_107.asset │ │ │ │ ├── tiles_packed_107.asset.meta │ │ │ │ ├── tiles_packed_108.asset │ │ │ │ ├── tiles_packed_108.asset.meta │ │ │ │ ├── tiles_packed_109.asset │ │ │ │ ├── tiles_packed_109.asset.meta │ │ │ │ ├── tiles_packed_11.asset │ │ │ │ ├── tiles_packed_11.asset.meta │ │ │ │ ├── tiles_packed_110.asset │ │ │ │ ├── tiles_packed_110.asset.meta │ │ │ │ ├── tiles_packed_111.asset │ │ │ │ ├── tiles_packed_111.asset.meta │ │ │ │ ├── tiles_packed_112.asset │ │ │ │ ├── tiles_packed_112.asset.meta │ │ │ │ ├── tiles_packed_113.asset │ │ │ │ ├── tiles_packed_113.asset.meta │ │ │ │ ├── tiles_packed_114.asset │ │ │ │ ├── tiles_packed_114.asset.meta │ │ │ │ ├── tiles_packed_115.asset │ │ │ │ ├── tiles_packed_115.asset.meta │ │ │ │ ├── tiles_packed_116.asset │ │ │ │ ├── tiles_packed_116.asset.meta │ │ │ │ ├── tiles_packed_117.asset │ │ │ │ ├── tiles_packed_117.asset.meta │ │ │ │ ├── tiles_packed_118.asset │ │ │ │ ├── tiles_packed_118.asset.meta │ │ │ │ ├── tiles_packed_119.asset │ │ │ │ ├── tiles_packed_119.asset.meta │ │ │ │ ├── tiles_packed_12.asset │ │ │ │ ├── tiles_packed_12.asset.meta │ │ │ │ ├── tiles_packed_120.asset │ │ │ │ ├── tiles_packed_120.asset.meta │ │ │ │ ├── tiles_packed_121.asset │ │ │ │ ├── tiles_packed_121.asset.meta │ │ │ │ ├── tiles_packed_122.asset │ │ │ │ ├── tiles_packed_122.asset.meta │ │ │ │ ├── tiles_packed_123.asset │ │ │ │ ├── tiles_packed_123.asset.meta │ │ │ │ ├── tiles_packed_124.asset │ │ │ │ ├── tiles_packed_124.asset.meta │ │ │ │ ├── tiles_packed_125.asset │ │ │ │ ├── tiles_packed_125.asset.meta │ │ │ │ ├── tiles_packed_126.asset │ │ │ │ ├── tiles_packed_126.asset.meta │ │ │ │ ├── tiles_packed_127.asset │ │ │ │ ├── tiles_packed_127.asset.meta │ │ │ │ ├── tiles_packed_128.asset │ │ │ │ ├── tiles_packed_128.asset.meta │ │ │ │ ├── tiles_packed_129.asset │ │ │ │ ├── tiles_packed_129.asset.meta │ │ │ │ ├── tiles_packed_13.asset │ │ │ │ ├── tiles_packed_13.asset.meta │ │ │ │ ├── tiles_packed_130.asset │ │ │ │ ├── tiles_packed_130.asset.meta │ │ │ │ ├── tiles_packed_131.asset │ │ │ │ ├── tiles_packed_131.asset.meta │ │ │ │ ├── tiles_packed_132.asset │ │ │ │ ├── tiles_packed_132.asset.meta │ │ │ │ ├── tiles_packed_133.asset │ │ │ │ ├── tiles_packed_133.asset.meta │ │ │ │ ├── tiles_packed_134.asset │ │ │ │ ├── tiles_packed_134.asset.meta │ │ │ │ ├── tiles_packed_135.asset │ │ │ │ ├── tiles_packed_135.asset.meta │ │ │ │ ├── tiles_packed_136.asset │ │ │ │ ├── tiles_packed_136.asset.meta │ │ │ │ ├── tiles_packed_137.asset │ │ │ │ ├── tiles_packed_137.asset.meta │ │ │ │ ├── tiles_packed_138.asset │ │ │ │ ├── tiles_packed_138.asset.meta │ │ │ │ ├── tiles_packed_139.asset │ │ │ │ ├── tiles_packed_139.asset.meta │ │ │ │ ├── tiles_packed_14.asset │ │ │ │ ├── tiles_packed_14.asset.meta │ │ │ │ ├── tiles_packed_140.asset │ │ │ │ ├── tiles_packed_140.asset.meta │ │ │ │ ├── tiles_packed_141.asset │ │ │ │ ├── tiles_packed_141.asset.meta │ │ │ │ ├── tiles_packed_142.asset │ │ │ │ ├── tiles_packed_142.asset.meta │ │ │ │ ├── tiles_packed_143.asset │ │ │ │ ├── tiles_packed_143.asset.meta │ │ │ │ ├── tiles_packed_144.asset │ │ │ │ ├── tiles_packed_144.asset.meta │ │ │ │ ├── tiles_packed_145.asset │ │ │ │ ├── tiles_packed_145.asset.meta │ │ │ │ ├── tiles_packed_146.asset │ │ │ │ ├── tiles_packed_146.asset.meta │ │ │ │ ├── tiles_packed_147.asset │ │ │ │ ├── tiles_packed_147.asset.meta │ │ │ │ ├── tiles_packed_148.asset │ │ │ │ ├── tiles_packed_148.asset.meta │ │ │ │ ├── tiles_packed_149.asset │ │ │ │ ├── tiles_packed_149.asset.meta │ │ │ │ ├── tiles_packed_15.asset │ │ │ │ ├── tiles_packed_15.asset.meta │ │ │ │ ├── tiles_packed_150.asset │ │ │ │ ├── tiles_packed_150.asset.meta │ │ │ │ ├── tiles_packed_151.asset │ │ │ │ ├── tiles_packed_151.asset.meta │ │ │ │ ├── tiles_packed_152.asset │ │ │ │ ├── tiles_packed_152.asset.meta │ │ │ │ ├── tiles_packed_153.asset │ │ │ │ ├── tiles_packed_153.asset.meta │ │ │ │ ├── tiles_packed_154.asset │ │ │ │ ├── tiles_packed_154.asset.meta │ │ │ │ ├── tiles_packed_155.asset │ │ │ │ ├── tiles_packed_155.asset.meta │ │ │ │ ├── tiles_packed_156.asset │ │ │ │ ├── tiles_packed_156.asset.meta │ │ │ │ ├── tiles_packed_157.asset │ │ │ │ ├── tiles_packed_157.asset.meta │ │ │ │ ├── tiles_packed_158.asset │ │ │ │ ├── tiles_packed_158.asset.meta │ │ │ │ ├── tiles_packed_159.asset │ │ │ │ ├── tiles_packed_159.asset.meta │ │ │ │ ├── tiles_packed_16.asset │ │ │ │ ├── tiles_packed_16.asset.meta │ │ │ │ ├── tiles_packed_160.asset │ │ │ │ ├── tiles_packed_160.asset.meta │ │ │ │ ├── tiles_packed_161.asset │ │ │ │ ├── tiles_packed_161.asset.meta │ │ │ │ ├── tiles_packed_162.asset │ │ │ │ ├── tiles_packed_162.asset.meta │ │ │ │ ├── tiles_packed_163.asset │ │ │ │ ├── tiles_packed_163.asset.meta │ │ │ │ ├── tiles_packed_164.asset │ │ │ │ ├── tiles_packed_164.asset.meta │ │ │ │ ├── tiles_packed_165.asset │ │ │ │ ├── tiles_packed_165.asset.meta │ │ │ │ ├── tiles_packed_166.asset │ │ │ │ ├── tiles_packed_166.asset.meta │ │ │ │ ├── tiles_packed_167.asset │ │ │ │ ├── tiles_packed_167.asset.meta │ │ │ │ ├── tiles_packed_168.asset │ │ │ │ ├── tiles_packed_168.asset.meta │ │ │ │ ├── tiles_packed_169.asset │ │ │ │ ├── tiles_packed_169.asset.meta │ │ │ │ ├── tiles_packed_17.asset │ │ │ │ ├── tiles_packed_17.asset.meta │ │ │ │ ├── tiles_packed_170.asset │ │ │ │ ├── tiles_packed_170.asset.meta │ │ │ │ ├── tiles_packed_171.asset │ │ │ │ ├── tiles_packed_171.asset.meta │ │ │ │ ├── tiles_packed_172.asset │ │ │ │ ├── tiles_packed_172.asset.meta │ │ │ │ ├── tiles_packed_173.asset │ │ │ │ ├── tiles_packed_173.asset.meta │ │ │ │ ├── tiles_packed_174.asset │ │ │ │ ├── tiles_packed_174.asset.meta │ │ │ │ ├── tiles_packed_175.asset │ │ │ │ ├── tiles_packed_175.asset.meta │ │ │ │ ├── tiles_packed_176.asset │ │ │ │ ├── tiles_packed_176.asset.meta │ │ │ │ ├── tiles_packed_177.asset │ │ │ │ ├── tiles_packed_177.asset.meta │ │ │ │ ├── tiles_packed_178.asset │ │ │ │ ├── tiles_packed_178.asset.meta │ │ │ │ ├── tiles_packed_179.asset │ │ │ │ ├── tiles_packed_179.asset.meta │ │ │ │ ├── tiles_packed_18.asset │ │ │ │ ├── tiles_packed_18.asset.meta │ │ │ │ ├── tiles_packed_19.asset │ │ │ │ ├── tiles_packed_19.asset.meta │ │ │ │ ├── tiles_packed_2.asset │ │ │ │ ├── tiles_packed_2.asset.meta │ │ │ │ ├── tiles_packed_20.asset │ │ │ │ ├── tiles_packed_20.asset.meta │ │ │ │ ├── tiles_packed_21.asset │ │ │ │ ├── tiles_packed_21.asset.meta │ │ │ │ ├── tiles_packed_22.asset │ │ │ │ ├── tiles_packed_22.asset.meta │ │ │ │ ├── tiles_packed_23.asset │ │ │ │ ├── tiles_packed_23.asset.meta │ │ │ │ ├── tiles_packed_24.asset │ │ │ │ ├── tiles_packed_24.asset.meta │ │ │ │ ├── tiles_packed_25.asset │ │ │ │ ├── tiles_packed_25.asset.meta │ │ │ │ ├── tiles_packed_26.asset │ │ │ │ ├── tiles_packed_26.asset.meta │ │ │ │ ├── tiles_packed_27.asset │ │ │ │ ├── tiles_packed_27.asset.meta │ │ │ │ ├── tiles_packed_28.asset │ │ │ │ ├── tiles_packed_28.asset.meta │ │ │ │ ├── tiles_packed_29.asset │ │ │ │ ├── tiles_packed_29.asset.meta │ │ │ │ ├── tiles_packed_3.asset │ │ │ │ ├── tiles_packed_3.asset.meta │ │ │ │ ├── tiles_packed_30.asset │ │ │ │ ├── tiles_packed_30.asset.meta │ │ │ │ ├── tiles_packed_31.asset │ │ │ │ ├── tiles_packed_31.asset.meta │ │ │ │ ├── tiles_packed_32.asset │ │ │ │ ├── tiles_packed_32.asset.meta │ │ │ │ ├── tiles_packed_33.asset │ │ │ │ ├── tiles_packed_33.asset.meta │ │ │ │ ├── tiles_packed_34.asset │ │ │ │ ├── tiles_packed_34.asset.meta │ │ │ │ ├── tiles_packed_35.asset │ │ │ │ ├── tiles_packed_35.asset.meta │ │ │ │ ├── tiles_packed_36.asset │ │ │ │ ├── tiles_packed_36.asset.meta │ │ │ │ ├── tiles_packed_37.asset │ │ │ │ ├── tiles_packed_37.asset.meta │ │ │ │ ├── tiles_packed_38.asset │ │ │ │ ├── tiles_packed_38.asset.meta │ │ │ │ ├── tiles_packed_39.asset │ │ │ │ ├── tiles_packed_39.asset.meta │ │ │ │ ├── tiles_packed_4.asset │ │ │ │ ├── tiles_packed_4.asset.meta │ │ │ │ ├── tiles_packed_40.asset │ │ │ │ ├── tiles_packed_40.asset.meta │ │ │ │ ├── tiles_packed_41.asset │ │ │ │ ├── tiles_packed_41.asset.meta │ │ │ │ ├── tiles_packed_42.asset │ │ │ │ ├── tiles_packed_42.asset.meta │ │ │ │ ├── tiles_packed_43.asset │ │ │ │ ├── tiles_packed_43.asset.meta │ │ │ │ ├── tiles_packed_44.asset │ │ │ │ ├── tiles_packed_44.asset.meta │ │ │ │ ├── tiles_packed_45.asset │ │ │ │ ├── tiles_packed_45.asset.meta │ │ │ │ ├── tiles_packed_46.asset │ │ │ │ ├── tiles_packed_46.asset.meta │ │ │ │ ├── tiles_packed_47.asset │ │ │ │ ├── tiles_packed_47.asset.meta │ │ │ │ ├── tiles_packed_48.asset │ │ │ │ ├── tiles_packed_48.asset.meta │ │ │ │ ├── tiles_packed_49.asset │ │ │ │ ├── tiles_packed_49.asset.meta │ │ │ │ ├── tiles_packed_5.asset │ │ │ │ ├── tiles_packed_5.asset.meta │ │ │ │ ├── tiles_packed_50.asset │ │ │ │ ├── tiles_packed_50.asset.meta │ │ │ │ ├── tiles_packed_51.asset │ │ │ │ ├── tiles_packed_51.asset.meta │ │ │ │ ├── tiles_packed_52.asset │ │ │ │ ├── tiles_packed_52.asset.meta │ │ │ │ ├── tiles_packed_53.asset │ │ │ │ ├── tiles_packed_53.asset.meta │ │ │ │ ├── tiles_packed_54.asset │ │ │ │ ├── tiles_packed_54.asset.meta │ │ │ │ ├── tiles_packed_55.asset │ │ │ │ ├── tiles_packed_55.asset.meta │ │ │ │ ├── tiles_packed_56.asset │ │ │ │ ├── tiles_packed_56.asset.meta │ │ │ │ ├── tiles_packed_57.asset │ │ │ │ ├── tiles_packed_57.asset.meta │ │ │ │ ├── tiles_packed_58.asset │ │ │ │ ├── tiles_packed_58.asset.meta │ │ │ │ ├── tiles_packed_59.asset │ │ │ │ ├── tiles_packed_59.asset.meta │ │ │ │ ├── tiles_packed_6.asset │ │ │ │ ├── tiles_packed_6.asset.meta │ │ │ │ ├── tiles_packed_60.asset │ │ │ │ ├── tiles_packed_60.asset.meta │ │ │ │ ├── tiles_packed_61.asset │ │ │ │ ├── tiles_packed_61.asset.meta │ │ │ │ ├── tiles_packed_62.asset │ │ │ │ ├── tiles_packed_62.asset.meta │ │ │ │ ├── tiles_packed_63.asset │ │ │ │ ├── tiles_packed_63.asset.meta │ │ │ │ ├── tiles_packed_64.asset │ │ │ │ ├── tiles_packed_64.asset.meta │ │ │ │ ├── tiles_packed_65.asset │ │ │ │ ├── tiles_packed_65.asset.meta │ │ │ │ ├── tiles_packed_66.asset │ │ │ │ ├── tiles_packed_66.asset.meta │ │ │ │ ├── tiles_packed_67.asset │ │ │ │ ├── tiles_packed_67.asset.meta │ │ │ │ ├── tiles_packed_68.asset │ │ │ │ ├── tiles_packed_68.asset.meta │ │ │ │ ├── tiles_packed_69.asset │ │ │ │ ├── tiles_packed_69.asset.meta │ │ │ │ ├── tiles_packed_7.asset │ │ │ │ ├── tiles_packed_7.asset.meta │ │ │ │ ├── tiles_packed_70.asset │ │ │ │ ├── tiles_packed_70.asset.meta │ │ │ │ ├── tiles_packed_71.asset │ │ │ │ ├── tiles_packed_71.asset.meta │ │ │ │ ├── tiles_packed_72.asset │ │ │ │ ├── tiles_packed_72.asset.meta │ │ │ │ ├── tiles_packed_73.asset │ │ │ │ ├── tiles_packed_73.asset.meta │ │ │ │ ├── tiles_packed_74.asset │ │ │ │ ├── tiles_packed_74.asset.meta │ │ │ │ ├── tiles_packed_75.asset │ │ │ │ ├── tiles_packed_75.asset.meta │ │ │ │ ├── tiles_packed_76.asset │ │ │ │ ├── tiles_packed_76.asset.meta │ │ │ │ ├── tiles_packed_77.asset │ │ │ │ ├── tiles_packed_77.asset.meta │ │ │ │ ├── tiles_packed_78.asset │ │ │ │ ├── tiles_packed_78.asset.meta │ │ │ │ ├── tiles_packed_79.asset │ │ │ │ ├── tiles_packed_79.asset.meta │ │ │ │ ├── tiles_packed_8.asset │ │ │ │ ├── tiles_packed_8.asset.meta │ │ │ │ ├── tiles_packed_80.asset │ │ │ │ ├── tiles_packed_80.asset.meta │ │ │ │ ├── tiles_packed_81.asset │ │ │ │ ├── tiles_packed_81.asset.meta │ │ │ │ ├── tiles_packed_82.asset │ │ │ │ ├── tiles_packed_82.asset.meta │ │ │ │ ├── tiles_packed_83.asset │ │ │ │ ├── tiles_packed_83.asset.meta │ │ │ │ ├── tiles_packed_84.asset │ │ │ │ ├── tiles_packed_84.asset.meta │ │ │ │ ├── tiles_packed_85.asset │ │ │ │ ├── tiles_packed_85.asset.meta │ │ │ │ ├── tiles_packed_86.asset │ │ │ │ ├── tiles_packed_86.asset.meta │ │ │ │ ├── tiles_packed_87.asset │ │ │ │ ├── tiles_packed_87.asset.meta │ │ │ │ ├── tiles_packed_88.asset │ │ │ │ ├── tiles_packed_88.asset.meta │ │ │ │ ├── tiles_packed_89.asset │ │ │ │ ├── tiles_packed_89.asset.meta │ │ │ │ ├── tiles_packed_9.asset │ │ │ │ ├── tiles_packed_9.asset.meta │ │ │ │ ├── tiles_packed_90.asset │ │ │ │ ├── tiles_packed_90.asset.meta │ │ │ │ ├── tiles_packed_91.asset │ │ │ │ ├── tiles_packed_91.asset.meta │ │ │ │ ├── tiles_packed_92.asset │ │ │ │ ├── tiles_packed_92.asset.meta │ │ │ │ ├── tiles_packed_93.asset │ │ │ │ ├── tiles_packed_93.asset.meta │ │ │ │ ├── tiles_packed_94.asset │ │ │ │ ├── tiles_packed_94.asset.meta │ │ │ │ ├── tiles_packed_95.asset │ │ │ │ ├── tiles_packed_95.asset.meta │ │ │ │ ├── tiles_packed_96.asset │ │ │ │ ├── tiles_packed_96.asset.meta │ │ │ │ ├── tiles_packed_97.asset │ │ │ │ ├── tiles_packed_97.asset.meta │ │ │ │ ├── tiles_packed_98.asset │ │ │ │ ├── tiles_packed_98.asset.meta │ │ │ │ ├── tiles_packed_99.asset │ │ │ │ └── tiles_packed_99.asset.meta │ │ │ ├── characters.png │ │ │ ├── characters.png.meta │ │ │ ├── characters_packed.png │ │ │ ├── characters_packed.png.meta │ │ │ ├── tiles.png │ │ │ ├── tiles.png.meta │ │ │ ├── tiles_packed.png │ │ │ └── tiles_packed.png.meta │ │ ├── Tiles.meta │ │ ├── Tiles │ │ │ ├── tile_0000.png │ │ │ ├── tile_0000.png.meta │ │ │ ├── tile_0001.png │ │ │ ├── tile_0001.png.meta │ │ │ ├── tile_0002.png │ │ │ ├── tile_0002.png.meta │ │ │ ├── tile_0003.png │ │ │ ├── tile_0003.png.meta │ │ │ ├── tile_0004.png │ │ │ ├── tile_0004.png.meta │ │ │ ├── tile_0005.png │ │ │ ├── tile_0005.png.meta │ │ │ ├── tile_0006.png │ │ │ ├── tile_0006.png.meta │ │ │ ├── tile_0007.png │ │ │ ├── tile_0007.png.meta │ │ │ ├── tile_0008.png │ │ │ ├── tile_0008.png.meta │ │ │ ├── tile_0009.png │ │ │ ├── tile_0009.png.meta │ │ │ ├── tile_0010.png │ │ │ ├── tile_0010.png.meta │ │ │ ├── tile_0011.png │ │ │ ├── tile_0011.png.meta │ │ │ ├── tile_0012.png │ │ │ ├── tile_0012.png.meta │ │ │ ├── tile_0013.png │ │ │ ├── tile_0013.png.meta │ │ │ ├── tile_0014.png │ │ │ ├── tile_0014.png.meta │ │ │ ├── tile_0015.png │ │ │ ├── tile_0015.png.meta │ │ │ ├── tile_0016.png │ │ │ ├── tile_0016.png.meta │ │ │ ├── tile_0017.png │ │ │ ├── tile_0017.png.meta │ │ │ ├── tile_0018.png │ │ │ ├── tile_0018.png.meta │ │ │ ├── tile_0019.png │ │ │ ├── tile_0019.png.meta │ │ │ ├── tile_0020.png │ │ │ ├── tile_0020.png.meta │ │ │ ├── tile_0021.png │ │ │ ├── tile_0021.png.meta │ │ │ ├── tile_0022.png │ │ │ ├── tile_0022.png.meta │ │ │ ├── tile_0023.png │ │ │ ├── tile_0023.png.meta │ │ │ ├── tile_0024.png │ │ │ ├── tile_0024.png.meta │ │ │ ├── tile_0025.png │ │ │ ├── tile_0025.png.meta │ │ │ ├── tile_0026.png │ │ │ ├── tile_0026.png.meta │ │ │ ├── tile_0027.png │ │ │ ├── tile_0027.png.meta │ │ │ ├── tile_0028.png │ │ │ ├── tile_0028.png.meta │ │ │ ├── tile_0029.png │ │ │ ├── tile_0029.png.meta │ │ │ ├── tile_0030.png │ │ │ ├── tile_0030.png.meta │ │ │ ├── tile_0031.png │ │ │ ├── tile_0031.png.meta │ │ │ ├── tile_0032.png │ │ │ ├── tile_0032.png.meta │ │ │ ├── tile_0033.png │ │ │ ├── tile_0033.png.meta │ │ │ ├── tile_0034.png │ │ │ ├── tile_0034.png.meta │ │ │ ├── tile_0035.png │ │ │ ├── tile_0035.png.meta │ │ │ ├── tile_0036.png │ │ │ ├── tile_0036.png.meta │ │ │ ├── tile_0037.png │ │ │ ├── tile_0037.png.meta │ │ │ ├── tile_0038.png │ │ │ ├── tile_0038.png.meta │ │ │ ├── tile_0039.png │ │ │ ├── tile_0039.png.meta │ │ │ ├── tile_0040.png │ │ │ ├── tile_0040.png.meta │ │ │ ├── tile_0041.png │ │ │ ├── tile_0041.png.meta │ │ │ ├── tile_0042.png │ │ │ ├── tile_0042.png.meta │ │ │ ├── tile_0043.png │ │ │ ├── tile_0043.png.meta │ │ │ ├── tile_0044.png │ │ │ ├── tile_0044.png.meta │ │ │ ├── tile_0045.png │ │ │ ├── tile_0045.png.meta │ │ │ ├── tile_0046.png │ │ │ ├── tile_0046.png.meta │ │ │ ├── tile_0047.png │ │ │ ├── tile_0047.png.meta │ │ │ ├── tile_0048.png │ │ │ ├── tile_0048.png.meta │ │ │ ├── tile_0049.png │ │ │ ├── tile_0049.png.meta │ │ │ ├── tile_0050.png │ │ │ ├── tile_0050.png.meta │ │ │ ├── tile_0051.png │ │ │ ├── tile_0051.png.meta │ │ │ ├── tile_0052.png │ │ │ ├── tile_0052.png.meta │ │ │ ├── tile_0053.png │ │ │ ├── tile_0053.png.meta │ │ │ ├── tile_0054.png │ │ │ ├── tile_0054.png.meta │ │ │ ├── tile_0055.png │ │ │ ├── tile_0055.png.meta │ │ │ ├── tile_0056.png │ │ │ ├── tile_0056.png.meta │ │ │ ├── tile_0057.png │ │ │ ├── tile_0057.png.meta │ │ │ ├── tile_0058.png │ │ │ ├── tile_0058.png.meta │ │ │ ├── tile_0059.png │ │ │ ├── tile_0059.png.meta │ │ │ ├── tile_0060.png │ │ │ ├── tile_0060.png.meta │ │ │ ├── tile_0061.png │ │ │ ├── tile_0061.png.meta │ │ │ ├── tile_0062.png │ │ │ ├── tile_0062.png.meta │ │ │ ├── tile_0063.png │ │ │ ├── tile_0063.png.meta │ │ │ ├── tile_0064.png │ │ │ ├── tile_0064.png.meta │ │ │ ├── tile_0065.png │ │ │ ├── tile_0065.png.meta │ │ │ ├── tile_0066.png │ │ │ ├── tile_0066.png.meta │ │ │ ├── tile_0067.png │ │ │ ├── tile_0067.png.meta │ │ │ ├── tile_0068.png │ │ │ ├── tile_0068.png.meta │ │ │ ├── tile_0069.png │ │ │ ├── tile_0069.png.meta │ │ │ ├── tile_0070.png │ │ │ ├── tile_0070.png.meta │ │ │ ├── tile_0071.png │ │ │ ├── tile_0071.png.meta │ │ │ ├── tile_0072.png │ │ │ ├── tile_0072.png.meta │ │ │ ├── tile_0073.png │ │ │ ├── tile_0073.png.meta │ │ │ ├── tile_0074.png │ │ │ ├── tile_0074.png.meta │ │ │ ├── tile_0075.png │ │ │ ├── tile_0075.png.meta │ │ │ ├── tile_0076.png │ │ │ ├── tile_0076.png.meta │ │ │ ├── tile_0077.png │ │ │ ├── tile_0077.png.meta │ │ │ ├── tile_0078.png │ │ │ ├── tile_0078.png.meta │ │ │ ├── tile_0079.png │ │ │ ├── tile_0079.png.meta │ │ │ ├── tile_0080.png │ │ │ ├── tile_0080.png.meta │ │ │ ├── tile_0081.png │ │ │ ├── tile_0081.png.meta │ │ │ ├── tile_0082.png │ │ │ ├── tile_0082.png.meta │ │ │ ├── tile_0083.png │ │ │ ├── tile_0083.png.meta │ │ │ ├── tile_0084.png │ │ │ ├── tile_0084.png.meta │ │ │ ├── tile_0085.png │ │ │ ├── tile_0085.png.meta │ │ │ ├── tile_0086.png │ │ │ ├── tile_0086.png.meta │ │ │ ├── tile_0087.png │ │ │ ├── tile_0087.png.meta │ │ │ ├── tile_0088.png │ │ │ ├── tile_0088.png.meta │ │ │ ├── tile_0089.png │ │ │ ├── tile_0089.png.meta │ │ │ ├── tile_0090.png │ │ │ ├── tile_0090.png.meta │ │ │ ├── tile_0091.png │ │ │ ├── tile_0091.png.meta │ │ │ ├── tile_0092.png │ │ │ ├── tile_0092.png.meta │ │ │ ├── tile_0093.png │ │ │ ├── tile_0093.png.meta │ │ │ ├── tile_0094.png │ │ │ ├── tile_0094.png.meta │ │ │ ├── tile_0095.png │ │ │ ├── tile_0095.png.meta │ │ │ ├── tile_0096.png │ │ │ ├── tile_0096.png.meta │ │ │ ├── tile_0097.png │ │ │ ├── tile_0097.png.meta │ │ │ ├── tile_0098.png │ │ │ ├── tile_0098.png.meta │ │ │ ├── tile_0099.png │ │ │ ├── tile_0099.png.meta │ │ │ ├── tile_0100.png │ │ │ ├── tile_0100.png.meta │ │ │ ├── tile_0101.png │ │ │ ├── tile_0101.png.meta │ │ │ ├── tile_0102.png │ │ │ ├── tile_0102.png.meta │ │ │ ├── tile_0103.png │ │ │ ├── tile_0103.png.meta │ │ │ ├── tile_0104.png │ │ │ ├── tile_0104.png.meta │ │ │ ├── tile_0105.png │ │ │ ├── tile_0105.png.meta │ │ │ ├── tile_0106.png │ │ │ ├── tile_0106.png.meta │ │ │ ├── tile_0107.png │ │ │ ├── tile_0107.png.meta │ │ │ ├── tile_0108.png │ │ │ ├── tile_0108.png.meta │ │ │ ├── tile_0109.png │ │ │ ├── tile_0109.png.meta │ │ │ ├── tile_0110.png │ │ │ ├── tile_0110.png.meta │ │ │ ├── tile_0111.png │ │ │ ├── tile_0111.png.meta │ │ │ ├── tile_0112.png │ │ │ ├── tile_0112.png.meta │ │ │ ├── tile_0113.png │ │ │ ├── tile_0113.png.meta │ │ │ ├── tile_0114.png │ │ │ ├── tile_0114.png.meta │ │ │ ├── tile_0115.png │ │ │ ├── tile_0115.png.meta │ │ │ ├── tile_0116.png │ │ │ ├── tile_0116.png.meta │ │ │ ├── tile_0117.png │ │ │ ├── tile_0117.png.meta │ │ │ ├── tile_0118.png │ │ │ ├── tile_0118.png.meta │ │ │ ├── tile_0119.png │ │ │ ├── tile_0119.png.meta │ │ │ ├── tile_0120.png │ │ │ ├── tile_0120.png.meta │ │ │ ├── tile_0121.png │ │ │ ├── tile_0121.png.meta │ │ │ ├── tile_0122.png │ │ │ ├── tile_0122.png.meta │ │ │ ├── tile_0123.png │ │ │ ├── tile_0123.png.meta │ │ │ ├── tile_0124.png │ │ │ ├── tile_0124.png.meta │ │ │ ├── tile_0125.png │ │ │ ├── tile_0125.png.meta │ │ │ ├── tile_0126.png │ │ │ ├── tile_0126.png.meta │ │ │ ├── tile_0127.png │ │ │ ├── tile_0127.png.meta │ │ │ ├── tile_0128.png │ │ │ ├── tile_0128.png.meta │ │ │ ├── tile_0129.png │ │ │ ├── tile_0129.png.meta │ │ │ ├── tile_0130.png │ │ │ ├── tile_0130.png.meta │ │ │ ├── tile_0131.png │ │ │ ├── tile_0131.png.meta │ │ │ ├── tile_0132.png │ │ │ ├── tile_0132.png.meta │ │ │ ├── tile_0133.png │ │ │ ├── tile_0133.png.meta │ │ │ ├── tile_0134.png │ │ │ ├── tile_0134.png.meta │ │ │ ├── tile_0135.png │ │ │ ├── tile_0135.png.meta │ │ │ ├── tile_0136.png │ │ │ ├── tile_0136.png.meta │ │ │ ├── tile_0137.png │ │ │ ├── tile_0137.png.meta │ │ │ ├── tile_0138.png │ │ │ ├── tile_0138.png.meta │ │ │ ├── tile_0139.png │ │ │ ├── tile_0139.png.meta │ │ │ ├── tile_0140.png │ │ │ ├── tile_0140.png.meta │ │ │ ├── tile_0141.png │ │ │ ├── tile_0141.png.meta │ │ │ ├── tile_0142.png │ │ │ ├── tile_0142.png.meta │ │ │ ├── tile_0143.png │ │ │ ├── tile_0143.png.meta │ │ │ ├── tile_0144.png │ │ │ ├── tile_0144.png.meta │ │ │ ├── tile_0145.png │ │ │ ├── tile_0145.png.meta │ │ │ ├── tile_0146.png │ │ │ ├── tile_0146.png.meta │ │ │ ├── tile_0147.png │ │ │ ├── tile_0147.png.meta │ │ │ ├── tile_0148.png │ │ │ ├── tile_0148.png.meta │ │ │ ├── tile_0149.png │ │ │ ├── tile_0149.png.meta │ │ │ ├── tile_0150.png │ │ │ ├── tile_0150.png.meta │ │ │ ├── tile_0151.png │ │ │ ├── tile_0151.png.meta │ │ │ ├── tile_0152.png │ │ │ ├── tile_0152.png.meta │ │ │ ├── tile_0153.png │ │ │ ├── tile_0153.png.meta │ │ │ ├── tile_0154.png │ │ │ ├── tile_0154.png.meta │ │ │ ├── tile_0155.png │ │ │ ├── tile_0155.png.meta │ │ │ ├── tile_0156.png │ │ │ ├── tile_0156.png.meta │ │ │ ├── tile_0157.png │ │ │ ├── tile_0157.png.meta │ │ │ ├── tile_0158.png │ │ │ ├── tile_0158.png.meta │ │ │ ├── tile_0159.png │ │ │ ├── tile_0159.png.meta │ │ │ ├── tile_0160.png │ │ │ ├── tile_0160.png.meta │ │ │ ├── tile_0161.png │ │ │ ├── tile_0161.png.meta │ │ │ ├── tile_0162.png │ │ │ ├── tile_0162.png.meta │ │ │ ├── tile_0163.png │ │ │ ├── tile_0163.png.meta │ │ │ ├── tile_0164.png │ │ │ ├── tile_0164.png.meta │ │ │ ├── tile_0165.png │ │ │ ├── tile_0165.png.meta │ │ │ ├── tile_0166.png │ │ │ ├── tile_0166.png.meta │ │ │ ├── tile_0167.png │ │ │ ├── tile_0167.png.meta │ │ │ ├── tile_0168.png │ │ │ ├── tile_0168.png.meta │ │ │ ├── tile_0169.png │ │ │ ├── tile_0169.png.meta │ │ │ ├── tile_0170.png │ │ │ ├── tile_0170.png.meta │ │ │ ├── tile_0171.png │ │ │ ├── tile_0171.png.meta │ │ │ ├── tile_0172.png │ │ │ ├── tile_0172.png.meta │ │ │ ├── tile_0173.png │ │ │ ├── tile_0173.png.meta │ │ │ ├── tile_0174.png │ │ │ ├── tile_0174.png.meta │ │ │ ├── tile_0175.png │ │ │ ├── tile_0175.png.meta │ │ │ ├── tile_0176.png │ │ │ ├── tile_0176.png.meta │ │ │ ├── tile_0177.png │ │ │ ├── tile_0177.png.meta │ │ │ ├── tile_0178.png │ │ │ ├── tile_0178.png.meta │ │ │ ├── tile_0179.png │ │ │ └── tile_0179.png.meta │ │ ├── Visit Kenney.url │ │ ├── Visit Kenney.url.meta │ │ ├── Visit Patreon.url │ │ └── Visit Patreon.url.meta │ │ ├── Pixel UI.meta │ │ └── Pixel UI │ │ ├── 9-Slice.meta │ │ ├── 9-Slice │ │ ├── Ancient.meta │ │ ├── Ancient │ │ │ ├── brown.png │ │ │ ├── brown.png.meta │ │ │ ├── brown_inlay.png │ │ │ ├── brown_inlay.png.meta │ │ │ ├── brown_pressed.png │ │ │ ├── brown_pressed.png.meta │ │ │ ├── grey.png │ │ │ ├── grey.png.meta │ │ │ ├── grey_inlay.png │ │ │ ├── grey_inlay.png.meta │ │ │ ├── grey_pressed.png │ │ │ ├── grey_pressed.png.meta │ │ │ ├── tan.png │ │ │ ├── tan.png.meta │ │ │ ├── tan_inlay.png │ │ │ ├── tan_inlay.png.meta │ │ │ ├── tan_pressed.png │ │ │ ├── tan_pressed.png.meta │ │ │ ├── white.png │ │ │ ├── white.png.meta │ │ │ ├── white_inlay.png │ │ │ ├── white_inlay.png.meta │ │ │ ├── white_pressed.png │ │ │ └── white_pressed.png.meta │ │ ├── Colored.meta │ │ ├── Colored │ │ │ ├── blue.png │ │ │ ├── blue.png.meta │ │ │ ├── blue_pressed.png │ │ │ ├── blue_pressed.png.meta │ │ │ ├── green.png │ │ │ ├── green.png.meta │ │ │ ├── green_pressed.png │ │ │ ├── green_pressed.png.meta │ │ │ ├── grey.png │ │ │ ├── grey.png.meta │ │ │ ├── grey_pressed.png │ │ │ ├── grey_pressed.png.meta │ │ │ ├── red.png │ │ │ ├── red.png.meta │ │ │ ├── red_pressed.png │ │ │ ├── red_pressed.png.meta │ │ │ ├── yellow.png │ │ │ ├── yellow.png.meta │ │ │ ├── yellow_pressed.png │ │ │ └── yellow_pressed.png.meta │ │ ├── Outline.meta │ │ ├── Outline │ │ │ ├── blue.png │ │ │ ├── blue.png.meta │ │ │ ├── blue_pressed.png │ │ │ ├── blue_pressed.png.meta │ │ │ ├── green.png │ │ │ ├── green.png.meta │ │ │ ├── green_pressed.png │ │ │ ├── green_pressed.png.meta │ │ │ ├── red.png │ │ │ ├── red.png.meta │ │ │ ├── red_pressed.png │ │ │ ├── red_pressed.png.meta │ │ │ ├── yellow.png │ │ │ ├── yellow.png.meta │ │ │ ├── yellow_pressed.png │ │ │ └── yellow_pressed.png.meta │ │ ├── list.png │ │ ├── list.png.meta │ │ ├── space.png │ │ ├── space.png.meta │ │ ├── space_inlay.png │ │ └── space_inlay.png.meta │ │ ├── Donate.url │ │ ├── Donate.url.meta │ │ ├── Facebook.url │ │ ├── Facebook.url.meta │ │ ├── License.txt │ │ ├── License.txt.meta │ │ ├── Preview.png │ │ ├── Preview.png.meta │ │ ├── Spritesheet.meta │ │ └── Spritesheet │ │ ├── UIpackSheet_magenta.png │ │ ├── UIpackSheet_magenta.png.meta │ │ ├── UIpackSheet_transparent.png │ │ ├── UIpackSheet_transparent.png.meta │ │ ├── spritesheetInfo.txt │ │ └── spritesheetInfo.txt.meta ├── csc.rsp └── csc.rsp.meta ├── LICENSE ├── Packages ├── manifest.json ├── manifest.json.meta └── packages-lock.json ├── ProjectSettings ├── AtlasPreferences.asset ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset └── docs ├── README.md └── docfx ├── .gitignore ├── api ├── .manifest ├── Atlas.AnchorPosition.yml ├── Atlas.BackEase.yml ├── Atlas.BillboardDebugDrawModifier.yml ├── Atlas.BitField.yml ├── Atlas.BounceEase.yml ├── Atlas.CircleDebugDrawer.yml ├── Atlas.CircularEase.yml ├── Atlas.CrossDebugDrawer.yml ├── Atlas.CubicEase.yml ├── Atlas.DebugDraw.yml ├── Atlas.DebugDrawModifierExtensions.yml ├── Atlas.DebugExtensions.yml ├── Atlas.Ease.yml ├── Atlas.EaseType.yml ├── Atlas.EditorGUILayoutUtils.yml ├── Atlas.EditorUtils.yml ├── Atlas.Effect.ActivationEventType.yml ├── Atlas.Effect.DestructionEventType.yml ├── Atlas.Effect.yml ├── Atlas.EffectEmitterBase.yml ├── Atlas.ElasticEase.yml ├── Atlas.EnumExtensions.yml ├── Atlas.Example_InspectorButton.yml ├── Atlas.ExponentialEase.yml ├── Atlas.GUIBackgroundColorScope.yml ├── Atlas.GUIColorScope.yml ├── Atlas.GUIContentColorScope.yml ├── Atlas.GUIListener.yml ├── Atlas.GizmoUtils.yml ├── Atlas.HashCode.yml ├── Atlas.ICommand-1.yml ├── Atlas.ICommand-2.yml ├── Atlas.ICommand-3.yml ├── Atlas.ICommand-4.yml ├── Atlas.ICommand.yml ├── Atlas.IDebugDrawer.yml ├── Atlas.IFixedTickable.yml ├── Atlas.ILateTickable.yml ├── Atlas.IPoolable.yml ├── Atlas.IScheduledTask.yml ├── Atlas.ISignal.yml ├── Atlas.IStateLink.yml ├── Atlas.IStateMachine.yml ├── Atlas.ITickable.yml ├── Atlas.IUIPanel.yml ├── Atlas.IndexedPriorityQueue-1.yml ├── Atlas.InspectorButtonAttribute.yml ├── Atlas.LineDebugDrawer.yml ├── Atlas.LinearEase.yml ├── Atlas.MaxValueAttribute.yml ├── Atlas.MaxValuePropertyDrawer.yml ├── Atlas.MinValueAttribute.yml ├── Atlas.MinValuePropertyDrawer.yml ├── Atlas.MonoBehaviourEditor.yml ├── Atlas.ParticleEffectEmitter.yml ├── Atlas.PathAttribute.Path.yml ├── Atlas.PathAttribute.Relativity.yml ├── Atlas.PathAttribute.yml ├── Atlas.PathAttributePropertyDrawer.yml ├── Atlas.PrefabPool.yml ├── Atlas.PreventEditInInspectorAttribute.yml ├── Atlas.PreventEditInInspectorPropertyDrawer.yml ├── Atlas.ProfilerScope.yml ├── Atlas.QuadraticEase.yml ├── Atlas.QuarticEase.yml ├── Atlas.QuinticEase.yml ├── Atlas.Range.yml ├── Atlas.RangeDrawer.yml ├── Atlas.RectangleDebugDrawer.yml ├── Atlas.ScenePathAttribute.yml ├── Atlas.ScenePathAttributePropertyDrawer.yml ├── Atlas.ScriptingDefines.yml ├── Atlas.Signal-1.yml ├── Atlas.Signal-2.yml ├── Atlas.Signal-3.yml ├── Atlas.Signal-4.yml ├── Atlas.Signal.yml ├── Atlas.SignalBase-2.yml ├── Atlas.SignalManager-1.yml ├── Atlas.SineEase.yml ├── Atlas.SingletonBehavior-1.yml ├── Atlas.State.yml ├── Atlas.StateLink.TransitionCondition.yml ├── Atlas.StateLink.yml ├── Atlas.StateMachine.yml ├── Atlas.StateMachineBehavior.yml ├── Atlas.Swizzle.yml ├── Atlas.TaskScheduler.yml ├── Atlas.TextDebugDrawer.yml ├── Atlas.TextIndentHelper.yml ├── Atlas.TimeScale.yml ├── Atlas.TimedDebugDrawModifier.yml ├── Atlas.Timer.yml ├── Atlas.TransformDebugDrawModifier.yml ├── Atlas.TransformEditor.yml ├── Atlas.TypeExtensions.yml ├── Atlas.UIStack.Transition.yml ├── Atlas.UIStack.yml ├── Atlas.VectorExtensions.yml ├── Atlas.yml ├── index.md └── toc.yml ├── apispec ├── BitField.md ├── DebugDraw.md ├── Ease.md ├── GUIColorScope.md ├── ICommand-1.md ├── ICommand-2.md ├── ICommand-3.md ├── ICommand-4.md ├── ICommand.md ├── MaxValueAttribute.md ├── MinValueAttribute.md ├── PathAttribute.md ├── PreventEditInInspectorAttribute.md ├── ProfilerScope.md ├── Range.md ├── ScenePathAttribute.md ├── Signal-1.md ├── Signal-2.md ├── Signal-3.md ├── Signal-4.md ├── Signal.md ├── SingletonBehavior.md └── Timer.md ├── build.bat ├── docfx.json ├── filterConfig.yml ├── images ├── Examples_AnimatorParameters.gif ├── Examples_DebugDraw.PNG ├── Examples_Ease.gif ├── Examples_Ease2.gif ├── Examples_Ease3.gif ├── Examples_Ease4.gif ├── Examples_Ease5.gif ├── Examples_EaseRotationTo.png ├── Examples_InspectorButton.gif ├── Examples_PathAttribute.gif ├── Examples_PreventEditInInspectorAttribute.PNG ├── Examples_ScenePathAttribute.gif ├── Examples_TimeScaleWindow.gif └── Examples_TransformEditor.gif ├── index.md ├── toc.yml └── user-manual ├── Easing.md ├── intro.md └── toc.yml /.gitignore: -------------------------------------------------------------------------------- 1 | *.sln 2 | *.csproj 3 | Assets/ConsoleE.meta 4 | Assets/ConsoleE/ 5 | Library/ 6 | Temp/ 7 | Logs/ 8 | .vs/ 9 | obj/ 10 | Assets/Plugins/ConsoleE/ 11 | Assets/Plugins/ConsoleE.meta 12 | *.user 13 | .vscode/ 14 | Assets/ThirdParty/ConsoleE* 15 | .vsconfig 16 | UserSettings/ 17 | -------------------------------------------------------------------------------- /Assets/Automation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c012c9ba0a98c0a488fcc7596a428b1f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Automation/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c1e0b6b56a67ae4097d48917a65bf8b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 406dad2e4ef99bc4185517a20a5e13fe 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/AnimationParameters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0406df4fa2b51be40a8fa31fff4257fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/AnimationParameters/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11fe001285082304ea4852b342925d97 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/AnimationParameters/Animation/Catapult.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9716f5614d606b649b9ab0100d6ed5b1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/AnimationParameters/Animation/Catapult_Broken.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5ad3a7c81a12dd4b9af28ea74df6e14 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/AnimationParameters/Animation/Catapult_Idle.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d89aac12ebfb721448027292166359d1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/AnimationParameters/Animation/Catapult_Launch.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5f1261ee3aa16b40a2e4efe7f147baf 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/AnimationParameters/Animation/Catapult_MoveIn.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdd7abc36c5692c4585175fcc0b3ec76 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/AnimationParameters/AnimationParameters.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2e3f88f4e40dd149a40b12c695481e7 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/AnimationParameters/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8698caf0ef5cb9488215582c03ce47d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/AnimationParameters/Materials/Grass.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87fe957b2a8efab438add0fc963c1aee 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/AnimationParameters/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5037f1f1bc6dfa34aa1e34156d3aa01e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Easing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 528944805e09425409881a64a64fc821 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Easing/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a555515536c6c90489b4a3ab39d90045 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Easing/Animation/Flappy.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a479031d4a065e447bbcb3df855ff3ab 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Easing/Animation/Flappy_Fly.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c185953f0e311d5419592d3dcbfaf74d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Easing/Easing_1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab859a8e8006733439c6e7adadae831b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Easing/Easing_2.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbcec9bff4eb28c46a023cf21dfaa11f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Easing/Easing_3.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1752d490697c5844890940edc5a89acc 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Easing/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61f9d2ca18b890a4094b04bb75e1dd88 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44be9c69f856b9f409544158ee9f3035 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes/AStar.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 906f95de913c56342b083a97b446d326 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes/ActionList.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e60385ea6f42095478d62b33e92c0a65 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes/Attributes.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acd9426f1017cf74b80f54f483552d73 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes/DebugDraw.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a844d581466c0134287f1673ed054ac6 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes/Pooling.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 720106556676c2c4cbed6a2b81d24d3b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Scenes/Scopes.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba9c9d2ca8720a7458762b60b1c64d91 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 788b56470443e3445a21417fbfec1b85 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 354211abbebeef44da035715e76a1bf2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/AI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61c925f7791d41746ae75003428d182d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/Collections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e0d68eddabfd9f4e87da36eca3a3799 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/Collections/ActionList.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e5f921b88b9af84bb45687f0c95b860 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/Debug.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92c8eb1b2b23d144d8a9368a19b8feeb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/Debug/DebugDraw.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e0c0faa3e882a74f813a8c62c5a37f9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/Framework.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e4b6b6f890986744bd65e29be5cc434 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/Framework/Command.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c724fc56239a29c4481b9d3f88391059 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/Framework/Signal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 435dd2fcae6997245a75c0547707cf07 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/Math.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e5f1396088a0694e8040999d3d59935 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/Pooling.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 451f9ef7ab5692d46b0e629f70d851bd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/Pooling/Example_Poolable.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5844d90026e2af44ea5f7f50246f36ff 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe344e80b154177498e66cfaf2b87c9d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/Utility/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 153c71d1c22df314d99281999badc010 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Examples/Scripts/Runtime/Utility/Scopes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 507b152714c222546ade18e1e690f9b4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd30ab425e1c76c478ea47c482bec12d 3 | folderAsset: yes 4 | timeCreated: 1502769134 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36473605aeffd404a9d2af454128bde4 3 | folderAsset: yes 4 | timeCreated: 1499748339 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ac9a935681c8b34cb7eb3bcfe867508 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Animation/Easing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60ed15438ae0a4f4396fc32decdc5764 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Animation/ParameterHandles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 369c9e27cec2fad4492afaf9f0505c78 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Atlas.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e237d1031f7f55478313524f20b5019 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Debug.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 565b792086838df429a4c48fff7d3906 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Effects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9529cb5854328940923a87fb9bc0f65 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d27a73ed61e94e49934179a73ca7bc1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Internal/Layer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db22b2e5149e4ff4ea752b867af12ee1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Internal/Preferences.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32634e280886b2b4bb4f70308d94379b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Internal/Preferences/SettingsItems.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5aefaf8f46a1dd442934748ad3905f08 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Math.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d92e1a9a1f715cd4c884561e82fc5d93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Math/Range.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae9394d5786eee34d8a5845630933aa0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69e695b3146e1834783714589df7ca39 3 | folderAsset: yes 4 | timeCreated: 1503469528 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Utility/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2389a9657d5b60448afb4ba8d32d566 3 | folderAsset: yes 4 | timeCreated: 1506324489 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Utility/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09cba9391ca6195489df1a8ac694f9cf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Utility/Extensions/SerializedObject.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fb61bb3b293e554fb27693b02f6804e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Utility/Extensions/SerializedProperty.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1141d4774348bf40a1f88aa17fb9c98 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Utility/Extensions/System.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12dd4206f949a88458e76f712488110a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Editor/Utility/GUID.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28937ac5f93ba634d89c17f87b92e14c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1269851172864a748a89e60550639bde 3 | folderAsset: yes 4 | timeCreated: 1499748334 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/AI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ac21f1250a4ece4e87060ecb6869289 3 | folderAsset: yes 4 | timeCreated: 1499752846 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/AI/Pathfinding.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d10c45fd08048947bd66ebe5f142825 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/AI/StateMachine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c84b26cba2ce194a8399c03f60e4507 3 | folderAsset: yes 4 | timeCreated: 1494990037 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e1613160668c2642af65d57b1637498 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Animation/Easing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00ae483ce91ba9348a6094a9ded05a4c 3 | folderAsset: yes 4 | timeCreated: 1503382192 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Animation/Easing/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a649ff43f733b5142b8361c482e2aa06 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Animation/Easing/EaseFunctions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f313d47f3196950409ef25532c9fb766 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Animation/ParameterHandles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76cf04b1bae9cb443a87df8eef21d715 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Atlas.Runtime.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f12cdb9181a8cd4b86d0521f266c82a 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Collections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6bc153b871df2c499bd7c33eba4bee0 3 | folderAsset: yes 4 | timeCreated: 1479187212 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Collections/ActionList.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cc206221c171344b8ef656bffe6c288 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Collections/ActionList/Actions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f1e461563b85f345b53cdcc65564f5e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Collections/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8d3ce150e0cba6488bd2bb0b3c2ad77 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Collections/Heap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3a5139df789ab74f8458abf2596cfd4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Collections/PriorityQueue.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14954e8a61880c646b179bdc96bcba6c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Debug.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34d1a9a0d8be2fe4cbb73293308a1cfd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Debug/DebugDraw.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f83eae311cbd9140a6e420ede43e270 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Debug/DebugDraw/Drawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a3fa3f0f5e87f142b08d53080dc872c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Debug/DebugDraw/Modifiers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57af181aeea587f4e95a2eda0163cdd1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Effects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 055740efab058724186d92febba70ae0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Effects/Emitters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bde81cd0244af142962676735b9c57f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Framework.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a8c242a56e1b964ea1708d136d3047c 3 | folderAsset: yes 4 | timeCreated: 1494990036 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Framework/Command.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e69064900a0ce594eb639889349680e3 3 | folderAsset: yes 4 | timeCreated: 1494990037 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Framework/Signal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dedc252fd65610843a3d43da80aaae94 3 | folderAsset: yes 4 | timeCreated: 1494990037 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Framework/Signal/ISignal.cs: -------------------------------------------------------------------------------- 1 | namespace Atlas 2 | { 3 | public interface ISignal 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Math.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 399b048bd4db9a3458815255e7dd7da3 3 | folderAsset: yes 4 | timeCreated: 1503382192 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Math/Graph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9db2cb03320b08f4e84cc4cbdc31b98f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Math/Range.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7d7b8001b12b0a4ea5f27f16d7e1e00 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Math/Vector.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 815c418333e5261409bd3ab800067965 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Pooling.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ff71878089d75741ab01693595bac95 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/TaskScheduler.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 415df80be0f31a4418f071342abd5e22 3 | folderAsset: yes 4 | timeCreated: 1501017803 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4986dd495d7156847930d3c229487c07 3 | folderAsset: yes 4 | timeCreated: 1497507538 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/UI/IMGUI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: beeac4035ec40784eb3c8cd09f0b7ba9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cb3d065f353d23428f48b85716f099b 3 | folderAsset: yes 4 | timeCreated: 1494990037 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Utility/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd963baa21927f446a66341ec9105ecf 3 | folderAsset: yes 4 | timeCreated: 1506324489 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Utility/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24d549e7b47795040b86d8041c959c6d 3 | folderAsset: yes 4 | timeCreated: 1484988060 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Utility/Extensions/Debug.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5be0a22110491264399c5778ef5becbe 3 | folderAsset: yes 4 | timeCreated: 1488614162 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Utility/GUID.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0a8bb15bdf669c458e7479e9b64a065 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Utility/Hashing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c4339ed649d8ed479be33c23bc813fa 3 | folderAsset: yes 4 | timeCreated: 1501018971 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Utility/Scopes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2417dd70df1621f449a35d1b32788d2b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/Runtime/Utility/Timer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56d2ebcd2ce83eb45b5272abcfe4493c 3 | folderAsset: yes 4 | timeCreated: 1490074590 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Test.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81f159f34aab81f4ba4d9cf90ec8b01a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a28e3b72eaf8e9342b3c40240493800b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Animation/Test_Animator1.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa688cc629e342a4399817144f0c00c3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Animation/Test_Animator2.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87704758a52926d4f8e0998c7e763bc7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14ec8b8744981ad45ade0a97dbb2e5a2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Scenes/Test_AnimatorParameters.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16b75dffdd75d6347bb7b83e633b20fa 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test/Scenes/Test_Attributes.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67c3b39f7e5cdb146ae0ad60192df520 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test/Scenes/Test_AttributesSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b9a1b557f22210242803070109aa7181 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4890085278179872738 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Scenes/Test_DebugDraw.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1eabcd3e266e354dbb3457b089653f8 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test/Scenes/Test_Effect.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5acec2392c443ef419be6118b16df4bc 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Test/Scenes/Test_Tween.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dca427452c65d7c4fae84ea9123faf0b 3 | timeCreated: 1506492066 4 | licenseType: Pro 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Test/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad37056e9d9cafb48b4ad8b917bc147d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Scripts/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e9ca6995ce1b2d49973456f67e6cc29 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Scripts/Editor/Unit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fa5f0ea4cba9fe4a83b353c64a06026 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Scripts/Editor/Unit/Collections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08eadb88d448e3d4d9766dc17f06ff82 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Scripts/Editor/Unit/Pooling.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 476cfad94ffdc474b92a6df676d643b4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Scripts/Editor/Unit/Signal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c2b67cbbec98484092c4685a5195fb8 3 | folderAsset: yes 4 | timeCreated: 1525671098 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Test/Scripts/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74f09374886586449ba9b22272f996d5 3 | folderAsset: yes 4 | timeCreated: 1525671091 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Test/Scripts/Runtime/Demo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d54400e49623bed47af201a9b81bf751 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Scripts/Runtime/Demo/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccb7adbe180ade3479b07fe9014965d8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Scripts/Runtime/Demo/Debug.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72ef417e292b3f14f85299b8530eea2a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Scripts/Runtime/Demo/Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3dedba9a96e4f1b44b210e8e91e3f8e3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Scripts/Runtime/Demo/Utility/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf35f0f023e41914b85a697392d454d7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Test/Scripts/Runtime/Math.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db1656e8d74816844a060fd7f8829d69 3 | folderAsset: yes 4 | timeCreated: 1506493720 5 | licenseType: Pro 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/ThirdParty.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c73c9dcc869a67343852c25498159237 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c887dc46e4c451345a93ccc6a640634b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Castle Kit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d207991d4150e6498503403a052db32 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Castle Kit/License.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31e17791d74ef114486b7be1b4ebc427 3 | timeCreated: 1501093996 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Castle Kit/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a108420d9d6acb4bb02cfa6cb01005a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Castle Kit/Models/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21279005e506cee488fff3d47713a05c 3 | folderAsset: yes 4 | timeCreated: 1501093671 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Castle Kit/Models/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac583671b0529e849aa821d379ccdfd8 3 | folderAsset: yes 4 | timeCreated: 1501093671 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Castle Kit/Models/Textures/astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Castle Kit/Models/Textures/astronaut.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Castle Kit/Models/Textures/king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Castle Kit/Models/Textures/king.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Castle Kit/Models/Textures/knightBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Castle Kit/Models/Textures/knightBlue.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Castle Kit/Models/Textures/knightRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Castle Kit/Models/Textures/knightRed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Castle Kit/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Castle Kit/Preview.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8866e29e932ff6845968a283ab3f4807 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9d29c138e7c63244a682f6e89a250fc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/Tiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70d72722f4b3b5c4686cd84c45631a54 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0000.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0001.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0002.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0003.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0004.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0005.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0006.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0007.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0008.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0009.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0010.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/background_0011.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/tilemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/tilemap.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/tilemap_packed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Background/tilemap_packed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1435540920ea54c409fda059229f2d7b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0000.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0001.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0002.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0003.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0004.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0005.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0006.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0007.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0008.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0009.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0010.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0011.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0012.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0013.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0014.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0015.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0016.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0017.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0018.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0019.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0020.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0021.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0022.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0023.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0024.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0025.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Characters/character_0026.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/License.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb92299f5a1e4c04ca617b95ee9a2064 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Preview.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/SampleA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/SampleA.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/SampleB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/SampleB.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba881699f480312468c75a64eac1edde 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Kenney Pixel Platformer.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1710e1df64b4a746a3b0017287bd533 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbebf2092bcaf334595f14e5954ce92b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_0.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ff1649c0eff09d4bb539043d55d02ae 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_1.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 406150e34a5bd974d9c6cb19fa7b6e06 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_10.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c5734c7fe426ef4982d7bc7a83d39f7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_100.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f39242298d471644690fb6ede63acb21 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_101.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7e79f95c7657d54e839053aae678f3f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_102.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3faff01f57c21ea42b8245c3c787a2a9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_103.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7f55b2b4004e0b4691143a3f21e2d98 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_104.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b10b791c714a024d96054935e390d59 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_105.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e0d1a580d62c974d85a50f2e2e8f571 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_106.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3cf8973c3258584485f2018a87acd68 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_107.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8d903670d7fa9947907c8089afecd4f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_108.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af3f429eb00d6944eb687f5c479e61b2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_109.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57f9e2e28f31a0d4a864498f45606ead 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_11.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18d60c192a0f7124eb43d9a0b8cf273f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_110.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d97dd24d2dcf798428bd0cd9b1f8b2c4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_111.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c38934b68956224c8d13d4732934778 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_112.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1de874ecda0ceb45b6c44c149725687 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_113.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 837f8a9081dc99a469a029cc7e569cd6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_114.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33ec7f19974eebb4caafa1c67a1fb22e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_115.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2408469eba567dc4c9783c9a4c8d729a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_116.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d874fcdc22157af4e9982b4516d02227 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_117.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9167ffd8b79fa424eabca94af434fa38 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_118.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74cf5fb63a776d34ea79d047119acd3f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_119.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d59353910a719b844b7081ce289d959c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_12.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 886667ee0268737439805af552df3b3a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_120.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe1bcbae95877f94e9ec487149387559 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_121.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09410bf248edfff468837b66eb30037a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_122.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79d8040af26bb98489ca912b58b3263d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_123.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d566379ca9dcf440a2fd5e61a4f52c0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_124.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06347b67f03ee314dba2fb229741a071 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_125.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9aba7289e76fbf1429e69fc746d0bb2d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_126.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2780442faa1f8d545a25ded8e2e67985 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_127.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fedd20ac14bea045bac9ca44eabbf19 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_128.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c5d3bf3e59e2fc468eab4e5c1605ae2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_129.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f4aa280a6391bf4d9cc5f9d3c151cef 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_13.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adeaee95828a3c146bf7815272ac8bc0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_130.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5960fd852dbea834fa0ddcec9feea5ef 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_131.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a9e6610a41ada1428f4af5768614029 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_132.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f86ceb8c43251fd4795394afca12f42d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_133.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e01efd23e8e669e4bbc17fabb2d650c6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_134.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3887d9d77e8483438dfe1bef9aa11df 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_135.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b2faaac2c54be345b6a0f75180a5a6c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_136.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1d4be68aa89d3945906f25e2528ef0b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_137.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 485ccfd7e80422545af46ca66d9878bf 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_138.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 766c4123f1de7c846a48eef28329bbb9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_139.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fc6f3a6a7d868344a0984e5b67a9b82 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_14.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 551fa5bc05debe844a7f9ae56b132414 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_140.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b143277aab717404ea2d7c0ace2e4bfc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_141.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd6318ea2b817734194fefff1bf75db0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_142.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f59d43608936dde4a9b3d450dec7a676 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_143.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bff82497eba2cb545b8870d5bf06b84a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_144.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 340ce42e348d8344482d8d4aaaa1bb14 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_145.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 920e6a6996d36b749af3d89dd54801d5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_146.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f94c6320e6b141419fb94048f62a5fc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_147.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6791b374c446d114787acb458a25cddf 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_148.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00ae2917c5abd464eb63b9c1087a5319 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_149.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 760c830c3c3271b4fabe2a8b2b9b9605 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_15.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ecb96c520fcf51498c75674a4d3450e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_150.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7586139f26b0f54a88064ac91f5744b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_151.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85836a1c1dc0c3947bb61e5f31e115af 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_152.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4acf86d04c461ab4d82148513953300b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_153.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fcb7d7f75e99da4b91717014e46bcee 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_154.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c817a71021ffb9468f919255f0d8f00 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_155.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a27554205945474daa0f54ed27edc9c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_156.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4e9cf0724f86df4791e6a35dbf7ec38 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_157.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07e5b736f6ac37d43bda7ea6cdd56a7d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_158.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fc4ad1519ddf7a47b391f4e698a507f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_159.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10d1869e60896064e9e0ce9122e627cb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30756586f7f17c241b1b00342e5ff5d4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_160.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65a049ebc1437ca49ac2a87c52bbc1f9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_161.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bd87d516770bea4a880a9b223d2de5e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_162.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8c5f424c31d1a5489eb64732527248d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_163.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 816f3e8b508442340b50d860c3198904 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_164.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fa6f9725e22c7641b830f1bef89374f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_165.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14d132bb4d01fa74380e20e73f5b2322 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_166.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ab68cf7343625a4889c0d9bf680e93c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_167.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31df20e3465113b4abd0ede8352ca98f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_168.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0337b39b92569c44dbc9c78604f57bc0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_169.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0469944a711a6854f878e910c6c19faa 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_17.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ef57782787962240a4a6d2fda76a361 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_170.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c4cc87fc126a644691385c99adf9cc0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_171.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9659bc55ab595843994d9fb91111206 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_172.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b23e4abf0fa78834fb37fe30322ca0a9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_173.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df23ead0a21023541ad3a2e84391a966 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_174.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 331f672e1852fa04b9ffb50625ceabe2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_175.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25263c8d89994c341ad1bc8184615bef 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_176.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1a2c406e5a9b174ca37cf1f98fd75a5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_177.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 508c4b4ccc79e9c4c9ca89c52ddf61a9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_178.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49b7be2b5ba08a247993b562c66e15b0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_179.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8b10e2a23d33fb469271a5b94fb8cae 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_18.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33740277a4cf8c84286cbf80bf645f07 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_19.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92bf2e7969fc9774ba4592f2046fcd53 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_2.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8586a5dc9259e6e4ca02e111f19fc608 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_20.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3881dfc8c8ab069498167c968834e278 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_21.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 233efa694e3cb7943ae2975df48fa189 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_22.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd85a61e5043c0d4aa0a849d3e6cc2e1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_23.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1b635200eae34b4caf8ed2b99ed378a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_24.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c2be57d5b12dc24bbda1f201ee09bb7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_25.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6cde8928f345a464db3cefd26c18596d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_26.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 058b8334efd06a9409fef9872f616689 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_27.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e1f38a6f457d9744bf5f41fe0dd5f82 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_28.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adc791bc823358c4c8a5fb65a3d7b04c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_29.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e08ba5128dd3504795d2f50c1757a1f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_3.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f258603c7703054cb2588fbf0c0124e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_30.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04bb572320d1fc843be673388cc86f24 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/Tiles/tiles_packed_31.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c569d52dd173d884198e2032288e9f2e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/characters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/characters.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/characters_packed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/characters_packed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/tiles.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/tiles_packed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tilemap/tiles_packed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1196551c2f2b10e42ae599bace7ac1b1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0000.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0001.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0002.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0003.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0004.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0005.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0006.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0007.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0008.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0009.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0010.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0011.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0012.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0013.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0014.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0015.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0016.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0017.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0018.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0019.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0020.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0021.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0022.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0023.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0024.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0025.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0026.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0027.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0028.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0029.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0030.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0031.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0032.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0033.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0034.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0035.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0036.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0037.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0038.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0039.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0040.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0041.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0042.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0043.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0044.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0045.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0046.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0047.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0048.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0049.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0050.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0051.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0052.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0053.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0054.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0055.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0056.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0057.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0058.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0059.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0060.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0061.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0062.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0063.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0064.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0065.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0066.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0067.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0068.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0069.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0070.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0071.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0072.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0073.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0074.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0075.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0076.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0077.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0078.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0079.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0080.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0081.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0082.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0083.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0084.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0085.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0085.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0086.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0087.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0088.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0089.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0090.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0091.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0091.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0092.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0093.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0093.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0094.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0094.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0095.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0096.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0097.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0098.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0098.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0099.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0100.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0101.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0102.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0103.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0104.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0105.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0106.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0107.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0108.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0109.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0110.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0111.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0112.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0113.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0114.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0115.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0116.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0117.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0118.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0119.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0120.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0121.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0122.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0123.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0124.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0125.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0126.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0127.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0128.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0129.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0130.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0131.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0132.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0133.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0134.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0135.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0136.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0137.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0138.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0139.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0140.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0141.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0142.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0143.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0144.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0145.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0146.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0147.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0148.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0149.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0150.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0151.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0152.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0153.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0154.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0155.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0156.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0157.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0158.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0159.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0160.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0161.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0162.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0163.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0164.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0165.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0166.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0167.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0168.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0169.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0170.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0171.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0172.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0173.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0174.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0175.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0176.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0177.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0178.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel Platformer/Tiles/tile_0179.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Visit Kenney.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://www.kenney.nl/ -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Visit Kenney.url.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f89be10ca8abd7f418dfd41ef0c53f0e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Visit Patreon.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.patreon.com/kenney/ -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel Platformer/Visit Patreon.url.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 001f4ced89d8b5b4a94eaf4de77cdce0 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61bc7b40f32554949b80dfa1ed36b376 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f59eed7bf9d82514ebc5411be7711c1f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf14dcebbbc3b1f4781fff746d44e45b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/brown.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/brown_inlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/brown_inlay.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/brown_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/brown_pressed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/grey.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/grey_inlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/grey_inlay.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/grey_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/grey_pressed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/tan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/tan.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/tan_inlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/tan_inlay.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/tan_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/tan_pressed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/white.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/white_inlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/white_inlay.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/white_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Ancient/white_pressed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75063ad48be37d143ad8f33c30875d3b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/blue.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/blue_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/blue_pressed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/green.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/green_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/green_pressed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/grey.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/grey_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/grey_pressed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/red.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/red_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/red_pressed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/yellow.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/yellow_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Colored/yellow_pressed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5aea0ca1767c0d429150a3b75e215f3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/blue.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/blue_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/blue_pressed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/green.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/green_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/green_pressed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/red.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/red_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/red_pressed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/yellow.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/yellow_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/Outline/yellow_pressed.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/list.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/space.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/space_inlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/9-Slice/space_inlay.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/Donate.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://donate.kenney.nl/ -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/Donate.url.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e509a26f2e5585148ac511ba258db86b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/Facebook.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.facebook.com/KenneyNL -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/Facebook.url.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a038370df203a0f448e2d8252cde94dc 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/License.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41970da0400aa4743af347b534659926 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/Preview.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/Spritesheet.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 245106acf471f5e4fb200affa5c5b51b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/Spritesheet/UIpackSheet_magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/Spritesheet/UIpackSheet_magenta.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/Spritesheet/UIpackSheet_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/Assets/ThirdParty/Kenney Assets/Pixel UI/Spritesheet/UIpackSheet_transparent.png -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/Spritesheet/spritesheetInfo.txt: -------------------------------------------------------------------------------- 1 | The tiles are 16 x 16px and have a 2px margin between them. 2 | 3 | --- 4 | 5 | TILE SIZE: 16 x 16 6 | MARGIN: 2 -------------------------------------------------------------------------------- /Assets/ThirdParty/Kenney Assets/Pixel UI/Spritesheet/spritesheetInfo.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2162d7a0961df604f9dd880aa0791125 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/csc.rsp: -------------------------------------------------------------------------------- 1 | -nowarn:0649 -------------------------------------------------------------------------------- /Assets/csc.rsp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9748ab74308c55d44b5e5e3f7e94f636 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/manifest.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c29ba7c9609b0047a77c0fb5764739f 3 | timeCreated: 1506409741 4 | licenseType: Pro 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | m_DefaultList: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2022.2.1f1 2 | m_EditorVersionWithRevision: 2022.2.1f1 (4fead5835099) 3 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /docs/docfx/.gitignore: -------------------------------------------------------------------------------- 1 | ############### 2 | # folder # 3 | ############### 4 | /**/DROP/ 5 | /**/TEMP/ 6 | /**/packages/ 7 | /**/bin/ 8 | /**/obj/ 9 | _site 10 | -------------------------------------------------------------------------------- /docs/docfx/api/index.md: -------------------------------------------------------------------------------- 1 | # This is the **API HOMEPAGE**. 2 | Refer to [Markdown](http://daringfireball.net/projects/markdown/) for how to write markdown files. 3 | ## Quick Start Notes: 4 | 1. Add images to the *images* folder if the file is referencing an image. 5 | -------------------------------------------------------------------------------- /docs/docfx/apispec/BitField.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.BitField 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[BitField](../../../Assets/Examples/Scripts/Runtime/Utils/Example_BitField.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/DebugDraw.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.DebugDraw 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | ![Inspector Demo](../images/Examples_DebugDraw.png) 7 | [!code-csharp[DebugDraw](../../../Assets/Examples/Scripts/Runtime/Debug/DebugDraw/Example_DebugDraw.cs)] 8 | -------------------------------------------------------------------------------- /docs/docfx/apispec/Ease.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.Ease 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | ![Demo](../images/Examples_Ease.gif) 7 | [!code-csharp[Ease](../../../Assets/Examples/Scripts/Runtime/Math/Easing/Example_Ease.cs)] 8 | -------------------------------------------------------------------------------- /docs/docfx/apispec/GUIColorScope.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.GUIColorScope 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[GUIColorScope](../../../Assets/Examples/Scripts/Runtime/Utils/Scopes/Example_GUIColorScope.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/ICommand-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.ICommand`1 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[ICommand](../../../Assets/Examples/Scripts/Runtime/Framework/Command/Example_Command.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/ICommand-2.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.ICommand`2 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[ICommand](../../../Assets/Examples/Scripts/Runtime/Framework/Command/Example_Command.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/ICommand-3.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.ICommand`3 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[ICommand](../../../Assets/Examples/Scripts/Runtime/Framework/Command/Example_Command.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/ICommand-4.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.ICommand`4 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[ICommand](../../../Assets/Examples/Scripts/Runtime/Framework/Command/Example_Command.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/ICommand.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.ICommand 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[ICommand](../../../Assets/Examples/Scripts/Runtime/Framework/Command/Example_Command.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/MaxValueAttribute.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.MaxValueAttribute 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[MaxValueAttribute](../../../Assets/Examples/Scripts/Runtime/Utils/Attributes/Example_MaxValueAttribute.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/MinValueAttribute.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.MinValueAttribute 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[MinValueAttribute](../../../Assets/Examples/Scripts/Runtime/Utils/Attributes/Example_MinValueAttribute.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/PathAttribute.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.PathAttribute 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | ![Inspector Demo](../images/Examples_PathAttribute.gif) 7 | [!code-csharp[PathAttribute](../../../Assets/Examples/Scripts/Runtime/Utils/Attributes/Example_PathAttribute.cs)] 8 | -------------------------------------------------------------------------------- /docs/docfx/apispec/ProfilerScope.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.ProfilerScope 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[ProfilerScope](../../../Assets/Examples/Scripts/Runtime/Utils/Scopes/Example_ProfilerScope.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/Range.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.Range 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[Range](../../../Assets/Examples/Scripts/Runtime/Math/Example_Range.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/Signal-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.Signal`1 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[Signal](../../../Assets/Examples/Scripts/Runtime/Framework/Signal/Example_Signal.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/Signal-2.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.Signal`2 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[Signal](../../../Assets/Examples/Scripts/Runtime/Framework/Signal/Example_Signal.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/Signal-3.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.Signal`3 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[Signal](../../../Assets/Examples/Scripts/Runtime/Framework/Signal/Example_Signal.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/Signal-4.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.Signal`4 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[Signal](../../../Assets/Examples/Scripts/Runtime/Framework/Signal/Example_Signal.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/Signal.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.Signal 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[Signal](../../../Assets/Examples/Scripts/Runtime/Framework/Signal/Example_Signal.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/SingletonBehavior.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.SingletonBehavior`1 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[SingletonBehavior](../../../Assets/Examples/Scripts/Runtime/Framework/Example_SingletonBehavior.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/apispec/Timer.md: -------------------------------------------------------------------------------- 1 | --- 2 | uid: Atlas.Timer 3 | #remarks: *content 4 | example: [*content] 5 | --- 6 | [!code-csharp[Timer](../../../Assets/Examples/Scripts/Runtime/Utils/Example_Timer.cs)] 7 | -------------------------------------------------------------------------------- /docs/docfx/build.bat: -------------------------------------------------------------------------------- 1 | docfx 2 | pause -------------------------------------------------------------------------------- /docs/docfx/images/Examples_AnimatorParameters.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_AnimatorParameters.gif -------------------------------------------------------------------------------- /docs/docfx/images/Examples_DebugDraw.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_DebugDraw.PNG -------------------------------------------------------------------------------- /docs/docfx/images/Examples_Ease.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_Ease.gif -------------------------------------------------------------------------------- /docs/docfx/images/Examples_Ease2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_Ease2.gif -------------------------------------------------------------------------------- /docs/docfx/images/Examples_Ease3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_Ease3.gif -------------------------------------------------------------------------------- /docs/docfx/images/Examples_Ease4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_Ease4.gif -------------------------------------------------------------------------------- /docs/docfx/images/Examples_Ease5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_Ease5.gif -------------------------------------------------------------------------------- /docs/docfx/images/Examples_EaseRotationTo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_EaseRotationTo.png -------------------------------------------------------------------------------- /docs/docfx/images/Examples_InspectorButton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_InspectorButton.gif -------------------------------------------------------------------------------- /docs/docfx/images/Examples_PathAttribute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_PathAttribute.gif -------------------------------------------------------------------------------- /docs/docfx/images/Examples_PreventEditInInspectorAttribute.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_PreventEditInInspectorAttribute.PNG -------------------------------------------------------------------------------- /docs/docfx/images/Examples_ScenePathAttribute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_ScenePathAttribute.gif -------------------------------------------------------------------------------- /docs/docfx/images/Examples_TimeScaleWindow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_TimeScaleWindow.gif -------------------------------------------------------------------------------- /docs/docfx/images/Examples_TransformEditor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-knopp/Atlas/82f6df3ca758eaa8b87ad353288e6294513fdc8e/docs/docfx/images/Examples_TransformEditor.gif -------------------------------------------------------------------------------- /docs/docfx/toc.yml: -------------------------------------------------------------------------------- 1 | - name: User Manual 2 | href: user-manual/ 3 | - name: Api Documentation 4 | href: api/ 5 | -------------------------------------------------------------------------------- /docs/docfx/user-manual/Easing.md: -------------------------------------------------------------------------------- 1 | # Easing 2 | 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /docs/docfx/user-manual/toc.yml: -------------------------------------------------------------------------------- 1 | - name: Introduction 2 | href: Intro.md 3 | - name: Math 4 | items: 5 | - name: Easing 6 | href: Easing.md --------------------------------------------------------------------------------