├── .gitignore ├── .gitmodules ├── Assets ├── Examples.meta ├── Examples │ ├── 2D.meta │ ├── 2D │ │ ├── 01 - Basic.meta │ │ ├── 01 - Basic │ │ │ ├── GoForPoint.unity │ │ │ ├── GoForPoint.unity.meta │ │ │ ├── GoForPointController2D.cs │ │ │ ├── GoForPointController2D.cs.meta │ │ │ ├── Neighbor examples.meta │ │ │ ├── Neighbor examples │ │ │ │ ├── Neighbors-Alignment-Cohesion.prefab │ │ │ │ ├── Neighbors-Alignment-Cohesion.prefab.meta │ │ │ │ ├── Neighbors-Alignment-Cohesion.unity │ │ │ │ ├── Neighbors-Alignment-Cohesion.unity.meta │ │ │ │ ├── Neighbors-Alignment-Seperation.prefab │ │ │ │ ├── Neighbors-Alignment-Seperation.prefab.meta │ │ │ │ ├── Neighbors-Alignment-Seperation.unity │ │ │ │ ├── Neighbors-Alignment-Seperation.unity.meta │ │ │ │ ├── Neighbors-Alignment.prefab │ │ │ │ ├── Neighbors-Alignment.prefab.meta │ │ │ │ ├── Neighbors-Alignment.unity │ │ │ │ ├── Neighbors-Alignment.unity.meta │ │ │ │ ├── Neighbors-Cohesion.prefab │ │ │ │ ├── Neighbors-Cohesion.prefab.meta │ │ │ │ ├── Neighbors-Cohesion.unity │ │ │ │ ├── Neighbors-Cohesion.unity.meta │ │ │ │ ├── Neighbors-Seperation.prefab │ │ │ │ ├── Neighbors-Seperation.prefab.meta │ │ │ │ ├── Neighbors-Seperation.unity │ │ │ │ └── Neighbors-Seperation.unity.meta │ │ │ ├── PathFollowing-WithSpline.unity │ │ │ ├── PathFollowing-WithSpline.unity.meta │ │ │ ├── PathFollowing.unity │ │ │ ├── PathFollowing.unity.meta │ │ │ ├── PathFollowingController2D.cs │ │ │ ├── PathFollowingController2D.cs.meta │ │ │ ├── Wandering.unity │ │ │ └── Wandering.unity.meta │ │ ├── 02 - Intermediate.meta │ │ ├── 02 - Intermediate │ │ │ ├── Evasion-Pursuit-1.unity │ │ │ ├── Evasion-Pursuit-1.unity.meta │ │ │ ├── Evasion-Pursuit-2.unity │ │ │ ├── Evasion-Pursuit-2.unity.meta │ │ │ ├── Pursuit-vs-Follow.unity │ │ │ └── Pursuit-vs-Follow.unity.meta │ │ ├── 03 - Advanced.meta │ │ ├── 03 - Advanced │ │ │ ├── ObstacleAvoidance.meta │ │ │ └── ObstacleAvoidance │ │ │ │ ├── DestroyOnCollision2D.cs │ │ │ │ ├── DestroyOnCollision2D.cs.meta │ │ │ │ ├── Obstacle.prefab │ │ │ │ ├── Obstacle.prefab.meta │ │ │ │ ├── ObstacleAvoidance.unity │ │ │ │ ├── ObstacleAvoidance.unity.meta │ │ │ │ ├── ObstacleAvoidanceBoid.prefab │ │ │ │ └── ObstacleAvoidanceBoid.prefab.meta │ │ ├── 2DMainCamera.prefab │ │ ├── 2DMainCamera.prefab.meta │ │ ├── 2dVehicleBase.prefab │ │ ├── 2dVehicleBase.prefab.meta │ │ ├── 2d_boid.png │ │ └── 2d_boid.png.meta │ ├── 3D.meta │ └── 3D │ │ ├── 01 - Basic.meta │ │ ├── 01 - Basic │ │ ├── GoForPoint.unity │ │ ├── GoForPoint.unity.meta │ │ ├── GoForPointController.cs │ │ ├── GoForPointController.cs.meta │ │ ├── Neighbor examples.meta │ │ ├── Neighbor examples │ │ │ ├── Neighbors-Alignment-Cohesion.prefab │ │ │ ├── Neighbors-Alignment-Cohesion.prefab.meta │ │ │ ├── Neighbors-Alignment-Cohesion.unity │ │ │ ├── Neighbors-Alignment-Cohesion.unity.meta │ │ │ ├── Neighbors-Alignment-Separation.prefab │ │ │ ├── Neighbors-Alignment-Separation.prefab.meta │ │ │ ├── Neighbors-Alignment-Separation.unity │ │ │ ├── Neighbors-Alignment-Separation.unity.meta │ │ │ ├── Neighbors-Alignment.prefab │ │ │ ├── Neighbors-Alignment.prefab.meta │ │ │ ├── Neighbors-Alignment.unity │ │ │ ├── Neighbors-Alignment.unity.meta │ │ │ ├── Neighbors-Cohesion.prefab │ │ │ ├── Neighbors-Cohesion.prefab.meta │ │ │ ├── Neighbors-Cohesion.unity │ │ │ ├── Neighbors-Cohesion.unity.meta │ │ │ ├── Neighbors-Separation.prefab │ │ │ ├── Neighbors-Separation.prefab.meta │ │ │ ├── Neighbors-Separation.unity │ │ │ └── Neighbors-Separation.unity.meta │ │ ├── PathFollowing-WithSpline.unity │ │ ├── PathFollowing-WithSpline.unity.meta │ │ ├── PathFollowing.unity │ │ ├── PathFollowing.unity.meta │ │ ├── PathFollowingController.cs │ │ ├── PathFollowingController.cs.meta │ │ ├── Wandering.unity │ │ └── Wandering.unity.meta │ │ ├── 02 - Intermediate.meta │ │ ├── 02 - Intermediate │ │ ├── Evasion-Pursuit-1.unity │ │ ├── Evasion-Pursuit-1.unity.meta │ │ ├── Evasion-Pursuit-2.unity │ │ ├── Evasion-Pursuit-2.unity.meta │ │ ├── Pursuit-vs-Follow.unity │ │ └── Pursuit-vs-Follow.unity.meta │ │ ├── 03 - Advanced.meta │ │ └── 03 - Advanced │ │ ├── ObstacleAvoidance.meta │ │ ├── ObstacleAvoidance │ │ ├── DestroyOnCollision.cs │ │ ├── DestroyOnCollision.cs.meta │ │ ├── Obstacle.prefab │ │ ├── Obstacle.prefab.meta │ │ ├── ObstacleAvoidance.unity │ │ ├── ObstacleAvoidance.unity.meta │ │ ├── ObstacleAvoidanceBoid.prefab │ │ ├── ObstacleAvoidanceBoid.prefab.meta │ │ ├── PrefabInstantiator.cs │ │ └── PrefabInstantiator.cs.meta │ │ ├── PlayingTag-PlanarX.meta │ │ ├── PlayingTag-PlanarX │ │ ├── Tag-PlanarX.unity │ │ ├── Tag-PlanarX.unity.meta │ │ ├── TagPlayerPlanarX.prefab │ │ └── TagPlayerPlanarX.prefab.meta │ │ ├── PlayingTag-PlanarY.meta │ │ ├── PlayingTag-PlanarY │ │ ├── Tag-PlanarY.unity │ │ ├── Tag-PlanarY.unity.meta │ │ ├── TagPlayerPlanarY.prefab │ │ └── TagPlayerPlanarY.prefab.meta │ │ ├── PlayingTag-PlanarZ.meta │ │ ├── PlayingTag-PlanarZ │ │ ├── Tag-PlanarZ.unity │ │ ├── Tag-PlanarZ.unity.meta │ │ ├── TagPlayerPlanarZ.prefab │ │ └── TagPlayerPlanarZ.prefab.meta │ │ ├── PlayingTag-With Obstacles.meta │ │ ├── PlayingTag-With Obstacles │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── PreyMaterial.mat │ │ │ ├── PreyMaterial.mat.meta │ │ │ ├── SuccessMaterial.mat │ │ │ ├── SuccessMaterial.mat.meta │ │ │ ├── Trail.mat │ │ │ └── Trail.mat.meta │ │ ├── TagPlayerAvoider.prefab │ │ ├── TagPlayerAvoider.prefab.meta │ │ ├── TagWithObstacles.unity │ │ └── TagWithObstacles.unity.meta │ │ ├── PlayingTag.meta │ │ └── PlayingTag │ │ ├── Behaviors.meta │ │ ├── Behaviors │ │ ├── TagPlayer.cs │ │ ├── TagPlayer.cs.meta │ │ ├── TagPlayerManager.cs │ │ └── TagPlayerManager.cs.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ ├── PreyMaterial.mat │ │ ├── PreyMaterial.mat.meta │ │ ├── SuccessMaterial.mat │ │ ├── SuccessMaterial.mat.meta │ │ ├── Trail.mat │ │ └── Trail.mat.meta │ │ ├── Tag.unity │ │ ├── Tag.unity.meta │ │ ├── TagPlayer.prefab │ │ └── TagPlayer.prefab.meta ├── Light.prefab ├── Light.prefab.meta ├── Materials.meta ├── Materials │ ├── Green.mat │ ├── Green.mat.meta │ ├── Grid.mat │ ├── Grid.mat.meta │ ├── Red.mat │ ├── Red.mat.meta │ ├── Yellow.mat │ └── Yellow.mat.meta ├── Plugins.meta ├── Plugins │ ├── GoKit.meta │ └── GoKit │ │ ├── Go.cs │ │ ├── Go.cs.meta │ │ ├── GoDummyPath.cs │ │ ├── GoDummyPath.cs.meta │ │ ├── GoTween.cs │ │ ├── GoTween.cs.meta │ │ ├── GoTweenChain.cs │ │ ├── GoTweenChain.cs.meta │ │ ├── GoTweenCollectionConfig.cs │ │ ├── GoTweenCollectionConfig.cs.meta │ │ ├── GoTweenConfig.cs │ │ ├── GoTweenConfig.cs.meta │ │ ├── GoTweenFlow.cs │ │ ├── GoTweenFlow.cs.meta │ │ ├── base.meta │ │ ├── base │ │ ├── AbstractGoTween.cs │ │ ├── AbstractGoTween.cs.meta │ │ ├── AbstractGoTweenCollection.cs │ │ └── AbstractGoTweenCollection.cs.meta │ │ ├── easing.meta │ │ ├── easing │ │ ├── GoEaseBack.cs │ │ ├── GoEaseBack.cs.meta │ │ ├── GoEaseBounce.cs │ │ ├── GoEaseBounce.cs.meta │ │ ├── GoEaseCircular.cs │ │ ├── GoEaseCircular.cs.meta │ │ ├── GoEaseCubic.cs │ │ ├── GoEaseCubic.cs.meta │ │ ├── GoEaseElastic.cs │ │ ├── GoEaseElastic.cs.meta │ │ ├── GoEaseExponential.cs │ │ ├── GoEaseExponential.cs.meta │ │ ├── GoEaseLinear.cs │ │ ├── GoEaseLinear.cs.meta │ │ ├── GoEaseQuadratic.cs │ │ ├── GoEaseQuadratic.cs.meta │ │ ├── GoEaseQuartic.cs │ │ ├── GoEaseQuartic.cs.meta │ │ ├── GoEaseQuintic.cs │ │ ├── GoEaseQuintic.cs.meta │ │ ├── GoEaseSinusoidal.cs │ │ ├── GoEaseSinusoidal.cs.meta │ │ ├── easeEquationsLicense.txt │ │ └── easeEquationsLicense.txt.meta │ │ ├── enums.meta │ │ ├── enums │ │ ├── GoDuplicatePropertyRuleType.cs │ │ ├── GoDuplicatePropertyRuleType.cs.meta │ │ ├── GoEaseType.cs │ │ ├── GoEaseType.cs.meta │ │ ├── GoLogLevel.cs │ │ ├── GoLogLevel.cs.meta │ │ ├── GoLookAtType.cs │ │ ├── GoLookAtType.cs.meta │ │ ├── GoLoopType.cs │ │ ├── GoLoopType.cs.meta │ │ ├── GoShakeType.cs │ │ ├── GoShakeType.cs.meta │ │ ├── GoSplineType.cs │ │ ├── GoSplineType.cs.meta │ │ ├── GoTweenState.cs │ │ ├── GoTweenState.cs.meta │ │ ├── GoUpdateType.cs │ │ └── GoUpdateType.cs.meta │ │ ├── extensions.meta │ │ ├── extensions │ │ ├── GoKitTweenExtensions.cs │ │ └── GoKitTweenExtensions.cs.meta │ │ ├── properties.meta │ │ └── properties │ │ ├── GoTweenUtils.cs │ │ ├── GoTweenUtils.cs.meta │ │ ├── abstracts.meta │ │ ├── abstracts │ │ ├── AbstractColorTweenProperty.cs │ │ ├── AbstractColorTweenProperty.cs.meta │ │ ├── AbstractQuaternionTweenProperty.cs │ │ ├── AbstractQuaternionTweenProperty.cs.meta │ │ ├── AbstractTweenProperty.cs │ │ ├── AbstractTweenProperty.cs.meta │ │ ├── AbstractVector3TweenProperty.cs │ │ └── AbstractVector3TweenProperty.cs.meta │ │ ├── genericTypes.meta │ │ ├── genericTypes │ │ ├── ColorTweenProperty.cs │ │ ├── ColorTweenProperty.cs.meta │ │ ├── FloatTweenProperty.cs │ │ ├── FloatTweenProperty.cs.meta │ │ ├── IGenericProperty.cs │ │ ├── IGenericProperty.cs.meta │ │ ├── IntTweenProperty.cs │ │ ├── IntTweenProperty.cs.meta │ │ ├── Vector2TweenProperty.cs │ │ ├── Vector2TweenProperty.cs.meta │ │ ├── Vector3PathTweenProperty.cs │ │ ├── Vector3PathTweenProperty.cs.meta │ │ ├── Vector3TweenProperty.cs │ │ ├── Vector3TweenProperty.cs.meta │ │ ├── Vector3XTweenProperty.cs │ │ ├── Vector3XTweenProperty.cs.meta │ │ ├── Vector3YTweenProperty.cs │ │ ├── Vector3YTweenProperty.cs.meta │ │ ├── Vector3ZTweenProperty.cs │ │ ├── Vector3ZTweenProperty.cs.meta │ │ ├── Vector4TweenProperty.cs │ │ └── Vector4TweenProperty.cs.meta │ │ ├── smoothing.meta │ │ ├── smoothing │ │ ├── GoSmoothedQuaternion.cs │ │ ├── GoSmoothedQuaternion.cs.meta │ │ ├── GoSmoothedVector3.cs │ │ ├── GoSmoothedVector3.cs.meta │ │ ├── GoSmoothingType.cs │ │ └── GoSmoothingType.cs.meta │ │ ├── specificTypes.meta │ │ ├── specificTypes │ │ ├── EulerAnglesTweenProperty.cs │ │ ├── EulerAnglesTweenProperty.cs.meta │ │ ├── MaterialColorTweenProperty.cs │ │ ├── MaterialColorTweenProperty.cs.meta │ │ ├── PositionPathTweenProperty.cs │ │ ├── PositionPathTweenProperty.cs.meta │ │ ├── PositionTweenProperty.cs │ │ ├── PositionTweenProperty.cs.meta │ │ ├── RotationQuaternionTweenProperty.cs │ │ ├── RotationQuaternionTweenProperty.cs.meta │ │ ├── RotationTweenProperty.cs │ │ ├── RotationTweenProperty.cs.meta │ │ ├── ScalePathTweenProperty.cs │ │ ├── ScalePathTweenProperty.cs.meta │ │ ├── ScaleTweenProperty.cs │ │ ├── ScaleTweenProperty.cs.meta │ │ ├── ShakeTweenProperty.cs │ │ └── ShakeTweenProperty.cs.meta │ │ ├── splines.meta │ │ └── splines │ │ ├── AbstractGoSplineSolver.cs │ │ ├── AbstractGoSplineSolver.cs.meta │ │ ├── GoSpline.cs │ │ ├── GoSpline.cs.meta │ │ ├── GoSplineCatmullRomSolver.cs │ │ ├── GoSplineCatmullRomSolver.cs.meta │ │ ├── GoSplineCubicBezierSolver.cs │ │ ├── GoSplineCubicBezierSolver.cs.meta │ │ ├── GoSplineQuadraticBezierSolver.cs │ │ ├── GoSplineQuadraticBezierSolver.cs.meta │ │ ├── GoSplineStraightLineSolver.cs │ │ └── GoSplineStraightLineSolver.cs.meta ├── Standard Assets (Mobile).meta ├── Standard Assets (Mobile) │ ├── Textures.meta │ └── Textures │ │ ├── grid.psd │ │ └── grid.psd.meta ├── UnitySteer.meta ├── Utils.meta └── Utils │ ├── SingletonPerLevel.cs │ └── SingletonPerLevel.cs.meta ├── License.txt ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityAdsSettings.asset └── UnityConnectSettings.asset ├── README.md └── SampleList.md /.gitignore: -------------------------------------------------------------------------------- 1 | Temp/* 2 | Assembly* 3 | *.sln 4 | *.userprefs 5 | /Library 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/.gitmodules -------------------------------------------------------------------------------- /Assets/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples.meta -------------------------------------------------------------------------------- /Assets/Examples/2D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/GoForPoint.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/GoForPoint.unity -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/GoForPoint.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/GoForPoint.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/GoForPointController2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/GoForPointController2D.cs -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/GoForPointController2D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/GoForPointController2D.cs.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.prefab -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.unity -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Seperation.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Seperation.prefab -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Seperation.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Seperation.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Seperation.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Seperation.unity -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Seperation.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment-Seperation.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment.prefab -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment.unity -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Alignment.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Cohesion.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Cohesion.prefab -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Cohesion.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Cohesion.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Cohesion.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Cohesion.unity -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Cohesion.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Cohesion.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Seperation.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Seperation.prefab -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Seperation.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Seperation.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Seperation.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Seperation.unity -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Seperation.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Neighbor examples/Neighbors-Seperation.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/PathFollowing-WithSpline.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/PathFollowing-WithSpline.unity -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/PathFollowing-WithSpline.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/PathFollowing-WithSpline.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/PathFollowing.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/PathFollowing.unity -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/PathFollowing.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/PathFollowing.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/PathFollowingController2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/PathFollowingController2D.cs -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/PathFollowingController2D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/PathFollowingController2D.cs.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Wandering.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Wandering.unity -------------------------------------------------------------------------------- /Assets/Examples/2D/01 - Basic/Wandering.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/01 - Basic/Wandering.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/02 - Intermediate.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/02 - Intermediate.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/02 - Intermediate/Evasion-Pursuit-1.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/02 - Intermediate/Evasion-Pursuit-1.unity -------------------------------------------------------------------------------- /Assets/Examples/2D/02 - Intermediate/Evasion-Pursuit-1.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/02 - Intermediate/Evasion-Pursuit-1.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/02 - Intermediate/Evasion-Pursuit-2.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/02 - Intermediate/Evasion-Pursuit-2.unity -------------------------------------------------------------------------------- /Assets/Examples/2D/02 - Intermediate/Evasion-Pursuit-2.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/02 - Intermediate/Evasion-Pursuit-2.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/02 - Intermediate/Pursuit-vs-Follow.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/02 - Intermediate/Pursuit-vs-Follow.unity -------------------------------------------------------------------------------- /Assets/Examples/2D/02 - Intermediate/Pursuit-vs-Follow.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/02 - Intermediate/Pursuit-vs-Follow.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/03 - Advanced.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/03 - Advanced.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/03 - Advanced/ObstacleAvoidance.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/03 - Advanced/ObstacleAvoidance.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/DestroyOnCollision2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/DestroyOnCollision2D.cs -------------------------------------------------------------------------------- /Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/DestroyOnCollision2D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/DestroyOnCollision2D.cs.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/Obstacle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/Obstacle.prefab -------------------------------------------------------------------------------- /Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/Obstacle.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/Obstacle.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidance.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidance.unity -------------------------------------------------------------------------------- /Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidance.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidance.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidanceBoid.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidanceBoid.prefab -------------------------------------------------------------------------------- /Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidanceBoid.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidanceBoid.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/2DMainCamera.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/2DMainCamera.prefab -------------------------------------------------------------------------------- /Assets/Examples/2D/2DMainCamera.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/2DMainCamera.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/2dVehicleBase.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/2dVehicleBase.prefab -------------------------------------------------------------------------------- /Assets/Examples/2D/2dVehicleBase.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/2dVehicleBase.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/2D/2d_boid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/2d_boid.png -------------------------------------------------------------------------------- /Assets/Examples/2D/2d_boid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/2D/2d_boid.png.meta -------------------------------------------------------------------------------- /Assets/Examples/3D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/GoForPoint.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/GoForPoint.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/GoForPoint.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/GoForPoint.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/GoForPointController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/GoForPointController.cs -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/GoForPointController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/GoForPointController.cs.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.prefab -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Cohesion.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Separation.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Separation.prefab -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Separation.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Separation.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Separation.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Separation.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Separation.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment-Separation.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment.prefab -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Alignment.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Cohesion.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Cohesion.prefab -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Cohesion.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Cohesion.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Cohesion.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Cohesion.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Cohesion.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Cohesion.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Separation.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Separation.prefab -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Separation.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Separation.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Separation.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Separation.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Separation.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Neighbor examples/Neighbors-Separation.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/PathFollowing-WithSpline.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/PathFollowing-WithSpline.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/PathFollowing-WithSpline.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/PathFollowing-WithSpline.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/PathFollowing.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/PathFollowing.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/PathFollowing.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/PathFollowing.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/PathFollowingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/PathFollowingController.cs -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/PathFollowingController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/PathFollowingController.cs.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Wandering.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Wandering.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/01 - Basic/Wandering.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/01 - Basic/Wandering.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/02 - Intermediate.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/02 - Intermediate.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/02 - Intermediate/Evasion-Pursuit-1.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/02 - Intermediate/Evasion-Pursuit-1.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/02 - Intermediate/Evasion-Pursuit-1.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/02 - Intermediate/Evasion-Pursuit-1.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/02 - Intermediate/Evasion-Pursuit-2.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/02 - Intermediate/Evasion-Pursuit-2.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/02 - Intermediate/Evasion-Pursuit-2.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/02 - Intermediate/Evasion-Pursuit-2.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/02 - Intermediate/Pursuit-vs-Follow.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/02 - Intermediate/Pursuit-vs-Follow.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/02 - Intermediate/Pursuit-vs-Follow.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/02 - Intermediate/Pursuit-vs-Follow.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/ObstacleAvoidance.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/ObstacleAvoidance.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/DestroyOnCollision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/DestroyOnCollision.cs -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/DestroyOnCollision.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/DestroyOnCollision.cs.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/Obstacle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/Obstacle.prefab -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/Obstacle.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/Obstacle.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidance.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidance.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidance.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidance.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidanceBoid.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidanceBoid.prefab -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidanceBoid.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/ObstacleAvoidanceBoid.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/PrefabInstantiator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/PrefabInstantiator.cs -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/PrefabInstantiator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/ObstacleAvoidance/PrefabInstantiator.cs.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarX.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarX/Tag-PlanarX.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarX/Tag-PlanarX.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarX/Tag-PlanarX.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarX/Tag-PlanarX.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarX/TagPlayerPlanarX.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarX/TagPlayerPlanarX.prefab -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarX/TagPlayerPlanarX.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarX/TagPlayerPlanarX.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarY.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarY.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarY/Tag-PlanarY.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarY/Tag-PlanarY.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarY/Tag-PlanarY.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarY/Tag-PlanarY.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarY/TagPlayerPlanarY.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarY/TagPlayerPlanarY.prefab -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarY/TagPlayerPlanarY.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarY/TagPlayerPlanarY.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarZ.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarZ.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarZ/Tag-PlanarZ.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarZ/Tag-PlanarZ.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarZ/Tag-PlanarZ.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarZ/Tag-PlanarZ.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarZ/TagPlayerPlanarZ.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarZ/TagPlayerPlanarZ.prefab -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarZ/TagPlayerPlanarZ.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-PlanarZ/TagPlayerPlanarZ.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials/PreyMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials/PreyMaterial.mat -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials/PreyMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials/PreyMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials/SuccessMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials/SuccessMaterial.mat -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials/SuccessMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials/SuccessMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials/Trail.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials/Trail.mat -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials/Trail.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/Materials/Trail.mat.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/TagPlayerAvoider.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/TagPlayerAvoider.prefab -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/TagPlayerAvoider.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/TagPlayerAvoider.prefab.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/TagWithObstacles.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/TagWithObstacles.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/TagWithObstacles.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag-With Obstacles/TagWithObstacles.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Behaviors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Behaviors.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Behaviors/TagPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Behaviors/TagPlayer.cs -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Behaviors/TagPlayer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Behaviors/TagPlayer.cs.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Behaviors/TagPlayerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Behaviors/TagPlayerManager.cs -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Behaviors/TagPlayerManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Behaviors/TagPlayerManager.cs.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Materials.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Materials/PreyMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Materials/PreyMaterial.mat -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Materials/PreyMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Materials/PreyMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Materials/SuccessMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Materials/SuccessMaterial.mat -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Materials/SuccessMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Materials/SuccessMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Materials/Trail.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Materials/Trail.mat -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Materials/Trail.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Materials/Trail.mat.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Tag.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Tag.unity -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/Tag.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/Tag.unity.meta -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/TagPlayer.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/TagPlayer.prefab -------------------------------------------------------------------------------- /Assets/Examples/3D/03 - Advanced/PlayingTag/TagPlayer.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Examples/3D/03 - Advanced/PlayingTag/TagPlayer.prefab.meta -------------------------------------------------------------------------------- /Assets/Light.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Light.prefab -------------------------------------------------------------------------------- /Assets/Light.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Light.prefab.meta -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/Green.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Materials/Green.mat -------------------------------------------------------------------------------- /Assets/Materials/Green.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Materials/Green.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Grid.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Materials/Grid.mat -------------------------------------------------------------------------------- /Assets/Materials/Grid.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Materials/Grid.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Red.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Materials/Red.mat -------------------------------------------------------------------------------- /Assets/Materials/Red.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Materials/Red.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Yellow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Materials/Yellow.mat -------------------------------------------------------------------------------- /Assets/Materials/Yellow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Materials/Yellow.mat.meta -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7ff989c2c0c94b49837991ec02ca433 3 | -------------------------------------------------------------------------------- /Assets/Plugins/GoKit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c5cefa129e0c4945acf6eb49a983eae 3 | -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/Go.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/Go.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/Go.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/Go.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/GoDummyPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/GoDummyPath.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/GoDummyPath.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/GoDummyPath.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/GoTween.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/GoTween.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/GoTween.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/GoTween.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/GoTweenChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/GoTweenChain.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/GoTweenChain.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/GoTweenChain.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/GoTweenCollectionConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/GoTweenCollectionConfig.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/GoTweenCollectionConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/GoTweenCollectionConfig.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/GoTweenConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/GoTweenConfig.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/GoTweenConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/GoTweenConfig.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/GoTweenFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/GoTweenFlow.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/GoTweenFlow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/GoTweenFlow.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/base.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a0650221f37549c4988877fdaa5e4bb 3 | -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/base/AbstractGoTween.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/base/AbstractGoTween.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/base/AbstractGoTween.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/base/AbstractGoTween.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/base/AbstractGoTweenCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/base/AbstractGoTweenCollection.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/base/AbstractGoTweenCollection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/base/AbstractGoTweenCollection.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34b16834b4ced4d9a9b03c6d00303ad5 3 | -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseBack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseBack.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseBack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseBack.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseBounce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseBounce.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseBounce.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseBounce.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseCircular.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseCircular.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseCircular.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseCircular.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseCubic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseCubic.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseCubic.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseCubic.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseElastic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseElastic.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseElastic.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseElastic.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseExponential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseExponential.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseExponential.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseExponential.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseLinear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseLinear.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseLinear.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseLinear.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseQuadratic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseQuadratic.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseQuadratic.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseQuadratic.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseQuartic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseQuartic.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseQuartic.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseQuartic.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseQuintic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseQuintic.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseQuintic.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseQuintic.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseSinusoidal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseSinusoidal.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/GoEaseSinusoidal.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/GoEaseSinusoidal.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/easeEquationsLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/easing/easeEquationsLicense.txt -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/easing/easeEquationsLicense.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 098d0b0599d2b4fcc8c8f24379e8bf90 3 | -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fdf9641baedb40338ca9a110aa99706 3 | -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoDuplicatePropertyRuleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoDuplicatePropertyRuleType.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoDuplicatePropertyRuleType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoDuplicatePropertyRuleType.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoEaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoEaseType.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoEaseType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoEaseType.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoLogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoLogLevel.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoLogLevel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoLogLevel.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoLookAtType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoLookAtType.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoLookAtType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoLookAtType.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoLoopType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoLoopType.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoLoopType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoLoopType.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoShakeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoShakeType.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoShakeType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoShakeType.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoSplineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoSplineType.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoSplineType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoSplineType.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoTweenState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoTweenState.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoTweenState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoTweenState.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoUpdateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoUpdateType.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/enums/GoUpdateType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/enums/GoUpdateType.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb14c988d1865428599a6a5bc46a79e5 3 | -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/extensions/GoKitTweenExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/extensions/GoKitTweenExtensions.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/extensions/GoKitTweenExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/extensions/GoKitTweenExtensions.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4204282772fc1408da934f8775d6da4f 3 | -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/GoTweenUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/GoTweenUtils.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/GoTweenUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/GoTweenUtils.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/abstracts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b015a50b4ac6b4515bd5116d6da7ff5d 3 | -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/abstracts/AbstractColorTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/abstracts/AbstractColorTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/abstracts/AbstractColorTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/abstracts/AbstractColorTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/abstracts/AbstractQuaternionTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/abstracts/AbstractQuaternionTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/abstracts/AbstractQuaternionTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/abstracts/AbstractQuaternionTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/abstracts/AbstractTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/abstracts/AbstractTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/abstracts/AbstractTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/abstracts/AbstractTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/abstracts/AbstractVector3TweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/abstracts/AbstractVector3TweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/abstracts/AbstractVector3TweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/abstracts/AbstractVector3TweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 568b4e56e499a47b6b1edebd41563940 3 | -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/ColorTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/ColorTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/ColorTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/ColorTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/FloatTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/FloatTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/FloatTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/FloatTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/IGenericProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/IGenericProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/IGenericProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/IGenericProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/IntTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/IntTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/IntTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/IntTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector2TweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector2TweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector2TweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector2TweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector3PathTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector3PathTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector3PathTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector3PathTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector3TweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector3TweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector3TweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector3TweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector3XTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector3XTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector3XTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector3XTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector3YTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector3YTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector3YTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector3YTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector3ZTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector3ZTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector3ZTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector3ZTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector4TweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector4TweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/genericTypes/Vector4TweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/genericTypes/Vector4TweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/smoothing.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c076f7b25e9c4c27b52cc7847d14056 3 | -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/smoothing/GoSmoothedQuaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/smoothing/GoSmoothedQuaternion.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/smoothing/GoSmoothedQuaternion.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/smoothing/GoSmoothedQuaternion.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/smoothing/GoSmoothedVector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/smoothing/GoSmoothedVector3.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/smoothing/GoSmoothedVector3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/smoothing/GoSmoothedVector3.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/smoothing/GoSmoothingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/smoothing/GoSmoothingType.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/smoothing/GoSmoothingType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/smoothing/GoSmoothingType.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ad9b033696fb463ea98ab0fb95a3deb 3 | -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/EulerAnglesTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/EulerAnglesTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/EulerAnglesTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/EulerAnglesTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/MaterialColorTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/MaterialColorTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/MaterialColorTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/MaterialColorTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/PositionPathTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/PositionPathTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/PositionPathTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/PositionPathTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/PositionTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/PositionTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/PositionTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/PositionTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/RotationQuaternionTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/RotationQuaternionTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/RotationQuaternionTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/RotationQuaternionTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/RotationTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/RotationTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/RotationTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/RotationTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/ScalePathTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/ScalePathTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/ScalePathTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/ScalePathTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/ScaleTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/ScaleTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/ScaleTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/ScaleTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/ShakeTweenProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/ShakeTweenProperty.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/specificTypes/ShakeTweenProperty.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/specificTypes/ShakeTweenProperty.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/splines.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82ff7a332193a46a0aed718a4d6af4ba 3 | -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/splines/AbstractGoSplineSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/splines/AbstractGoSplineSolver.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/splines/AbstractGoSplineSolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/splines/AbstractGoSplineSolver.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/splines/GoSpline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/splines/GoSpline.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/splines/GoSpline.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/splines/GoSpline.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/splines/GoSplineCatmullRomSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/splines/GoSplineCatmullRomSolver.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/splines/GoSplineCatmullRomSolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/splines/GoSplineCatmullRomSolver.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/splines/GoSplineCubicBezierSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/splines/GoSplineCubicBezierSolver.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/splines/GoSplineCubicBezierSolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/splines/GoSplineCubicBezierSolver.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/splines/GoSplineQuadraticBezierSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/splines/GoSplineQuadraticBezierSolver.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/splines/GoSplineQuadraticBezierSolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/splines/GoSplineQuadraticBezierSolver.cs.meta -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/splines/GoSplineStraightLineSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/splines/GoSplineStraightLineSolver.cs -------------------------------------------------------------------------------- /Assets/Plugins/GoKit/properties/splines/GoSplineStraightLineSolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Plugins/GoKit/properties/splines/GoSplineStraightLineSolver.cs.meta -------------------------------------------------------------------------------- /Assets/Standard Assets (Mobile).meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Standard Assets (Mobile).meta -------------------------------------------------------------------------------- /Assets/Standard Assets (Mobile)/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Standard Assets (Mobile)/Textures.meta -------------------------------------------------------------------------------- /Assets/Standard Assets (Mobile)/Textures/grid.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Standard Assets (Mobile)/Textures/grid.psd -------------------------------------------------------------------------------- /Assets/Standard Assets (Mobile)/Textures/grid.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Standard Assets (Mobile)/Textures/grid.psd.meta -------------------------------------------------------------------------------- /Assets/UnitySteer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/UnitySteer.meta -------------------------------------------------------------------------------- /Assets/Utils.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Utils.meta -------------------------------------------------------------------------------- /Assets/Utils/SingletonPerLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Utils/SingletonPerLevel.cs -------------------------------------------------------------------------------- /Assets/Utils/SingletonPerLevel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/Assets/Utils/SingletonPerLevel.cs.meta -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/License.txt -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/README.md -------------------------------------------------------------------------------- /SampleList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardojmendez/UnitySteerExamples/HEAD/SampleList.md --------------------------------------------------------------------------------