From ae8bfd4a235a5b71a1d02d3659af17704ca05024 Mon Sep 17 00:00:00 2001
From: Jordan <jordan.pereira@etu.unistra.fr>
Date: Sat, 4 Dec 2021 17:24:13 +0100
Subject: [PATCH] Opti map + placement waypoint

---
 .../Scripts/QuadTreeCameraMovement.cs         | 616 +++++++------
 T3-Unity/Assets/Prefabs/Waypoint.prefab       | 328 +++++++
 T3-Unity/Assets/Prefabs/Waypoint.prefab.meta  |   7 +
 T3-Unity/Assets/Scenes/Map_Tests.unity        | 152 +--
 T3-Unity/Assets/Scripts/WaypointSpawner.cs    |  52 ++
 .../Assets/Scripts/WaypointSpawner.cs.meta    |  11 +
 T3-Unity/Assets/Tree.prefab                   | 868 ++++++++++++++++++
 T3-Unity/Assets/Tree.prefab.meta              |   7 +
 T3-Unity/Assets/Tree_Textures.meta            |   8 +
 T3-Unity/Assets/Tree_Textures/diffuse.png     | Bin 0 -> 1755 bytes
 .../Assets/Tree_Textures/diffuse.png.meta     |  88 ++
 .../Assets/Tree_Textures/normal_specular.png  | Bin 0 -> 1757 bytes
 .../Tree_Textures/normal_specular.png.meta    |  88 ++
 T3-Unity/Assets/Tree_Textures/shadow.png      | Bin 0 -> 2330 bytes
 T3-Unity/Assets/Tree_Textures/shadow.png.meta |  88 ++
 .../Tree_Textures/translucency_gloss.png      | Bin 0 -> 1754 bytes
 .../Tree_Textures/translucency_gloss.png.meta |  88 ++
 .../ProjectSettings/GraphicsSettings.asset    |   1 +
 T3-Unity/ProjectSettings/InputManager.asset   |   4 +-
 .../ProjectSettings/ProjectSettings.asset     |  94 +-
 20 files changed, 2146 insertions(+), 354 deletions(-)
 create mode 100644 T3-Unity/Assets/Prefabs/Waypoint.prefab
 create mode 100644 T3-Unity/Assets/Prefabs/Waypoint.prefab.meta
 create mode 100644 T3-Unity/Assets/Scripts/WaypointSpawner.cs
 create mode 100644 T3-Unity/Assets/Scripts/WaypointSpawner.cs.meta
 create mode 100644 T3-Unity/Assets/Tree.prefab
 create mode 100644 T3-Unity/Assets/Tree.prefab.meta
 create mode 100644 T3-Unity/Assets/Tree_Textures.meta
 create mode 100644 T3-Unity/Assets/Tree_Textures/diffuse.png
 create mode 100644 T3-Unity/Assets/Tree_Textures/diffuse.png.meta
 create mode 100644 T3-Unity/Assets/Tree_Textures/normal_specular.png
 create mode 100644 T3-Unity/Assets/Tree_Textures/normal_specular.png.meta
 create mode 100644 T3-Unity/Assets/Tree_Textures/shadow.png
 create mode 100644 T3-Unity/Assets/Tree_Textures/shadow.png.meta
 create mode 100644 T3-Unity/Assets/Tree_Textures/translucency_gloss.png
 create mode 100644 T3-Unity/Assets/Tree_Textures/translucency_gloss.png.meta

diff --git a/T3-Unity/Assets/Mapbox/Examples/Scripts/QuadTreeCameraMovement.cs b/T3-Unity/Assets/Mapbox/Examples/Scripts/QuadTreeCameraMovement.cs
index 4933cf4..c47183f 100644
--- a/T3-Unity/Assets/Mapbox/Examples/Scripts/QuadTreeCameraMovement.cs
+++ b/T3-Unity/Assets/Mapbox/Examples/Scripts/QuadTreeCameraMovement.cs
@@ -1,301 +1,321 @@
 namespace Mapbox.Examples
 {
-	using Mapbox.Unity.Map;
-	using Mapbox.Unity.Utilities;
-	using Mapbox.Utils;
-	using UnityEngine;
-	using UnityEngine.EventSystems;
-	using System;
-
-	public class QuadTreeCameraMovement : MonoBehaviour
-	{
-		[SerializeField]
-		[Range(1, 20)]
-		public float _panSpeed = 1.0f;
-
-		[SerializeField]
-		float _zoomSpeed = 0.25f;
-
-		[SerializeField]
-		public Camera _referenceCamera;
-
-		[SerializeField]
-		AbstractMap _mapManager;
-
-		[SerializeField]
-		bool _useDegreeMethod;
-
-		private Vector3 _origin;
-		private Vector3 _mousePosition;
-		private Vector3 _mousePositionPrevious;
-		private bool _shouldDrag;
-		private bool _isInitialized = false;
-		private Plane _groundPlane = new Plane(Vector3.up, 0);
-		private bool _dragStartedOnUI = false;
-
-		void Awake()
-		{
-			if (null == _referenceCamera)
-			{
-				_referenceCamera = GetComponent<Camera>();
-				if (null == _referenceCamera) { Debug.LogErrorFormat("{0}: reference camera not set", this.GetType().Name); }
-			}
-			_mapManager.OnInitialized += () =>
-			{
-				_isInitialized = true;
-			};
-		}
-
-		public void Update()
-		{
-			if (Input.GetMouseButtonDown(0) && EventSystem.current.IsPointerOverGameObject())
-			{
-				_dragStartedOnUI = true;
-			}
-
-			if (Input.GetMouseButtonUp(0))
-			{
-				_dragStartedOnUI = false;
-			}
-		}
-
-
-		private void LateUpdate()
-		{
-			if (!_isInitialized) { return; }
-
-			if (!_dragStartedOnUI)
-			{
-				if (Input.touchSupported && Input.touchCount > 0)
-				{
-					HandleTouch();
-				}
-				else
-				{
-					HandleMouseAndKeyBoard();
-				}
-			}
-		}
-
-		void HandleMouseAndKeyBoard()
-		{
-			// zoom
-			float scrollDelta = 0.0f;
-			scrollDelta = Input.GetAxis("Mouse ScrollWheel");
-			ZoomMapUsingTouchOrMouse(scrollDelta);
-
-
-			//pan keyboard
-			float xMove = Input.GetAxis("Horizontal");
-			float zMove = Input.GetAxis("Vertical");
-
-			PanMapUsingKeyBoard(xMove, zMove);
-
-
-			//pan mouse
-			PanMapUsingTouchOrMouse();
-		}
-
-		void HandleTouch()
-		{
-			float zoomFactor = 0.0f;
-			//pinch to zoom.
-			switch (Input.touchCount)
-			{
-				case 1:
-					{
-						PanMapUsingTouchOrMouse();
-					}
-					break;
-				case 2:
-					{
-						// Store both touches.
-						Touch touchZero = Input.GetTouch(0);
-						Touch touchOne = Input.GetTouch(1);
-
-						// Find the position in the previous frame of each touch.
-						Vector2 touchZeroPrevPos = touchZero.position - touchZero.deltaPosition;
-						Vector2 touchOnePrevPos = touchOne.position - touchOne.deltaPosition;
-
-						// Find the magnitude of the vector (the distance) between the touches in each frame.
-						float prevTouchDeltaMag = (touchZeroPrevPos - touchOnePrevPos).magnitude;
-						float touchDeltaMag = (touchZero.position - touchOne.position).magnitude;
-
-						// Find the difference in the distances between each frame.
-						zoomFactor = 0.01f * (touchDeltaMag - prevTouchDeltaMag);
-					}
-					ZoomMapUsingTouchOrMouse(zoomFactor);
-					break;
-				default:
-					break;
-			}
-		}
-
-		void ZoomMapUsingTouchOrMouse(float zoomFactor)
-		{
-			var zoom = Mathf.Max(0.0f, Mathf.Min(_mapManager.Zoom + zoomFactor * _zoomSpeed, 21.0f));
-			if (Math.Abs(zoom - _mapManager.Zoom) > 0.0f)
-			{
-				_mapManager.UpdateMap(_mapManager.CenterLatitudeLongitude, zoom);
-			}
-		}
-
-		void PanMapUsingKeyBoard(float xMove, float zMove)
-		{
-			if (Math.Abs(xMove) > 0.0f || Math.Abs(zMove) > 0.0f)
-			{
-				// Get the number of degrees in a tile at the current zoom level.
-				// Divide it by the tile width in pixels ( 256 in our case)
-				// to get degrees represented by each pixel.
-				// Keyboard offset is in pixels, therefore multiply the factor with the offset to move the center.
-				float factor = _panSpeed * (Conversions.GetTileScaleInDegrees((float)_mapManager.CenterLatitudeLongitude.x, _mapManager.AbsoluteZoom));
-
-				var latitudeLongitude = new Vector2d(_mapManager.CenterLatitudeLongitude.x + zMove * factor * 2.0f, _mapManager.CenterLatitudeLongitude.y + xMove * factor * 4.0f);
-
-				_mapManager.UpdateMap(latitudeLongitude, _mapManager.Zoom);
-			}
-		}
-
-		void PanMapUsingTouchOrMouse()
-		{
-			if (_useDegreeMethod)
-			{
-				UseDegreeConversion();
-			}
-			else
-			{
-				UseMeterConversion();
-			}
-		}
-
-		void UseMeterConversion()
-		{
-			if (Input.GetMouseButtonUp(1))
-			{
-				var mousePosScreen = Input.mousePosition;
-				//assign distance of camera to ground plane to z, otherwise ScreenToWorldPoint() will always return the position of the camera
-				//http://answers.unity3d.com/answers/599100/view.html
-				mousePosScreen.z = _referenceCamera.transform.localPosition.y;
-				var pos = _referenceCamera.ScreenToWorldPoint(mousePosScreen);
-
-				var latlongDelta = _mapManager.WorldToGeoPosition(pos);
-				Debug.Log("Latitude: " + latlongDelta.x + " Longitude: " + latlongDelta.y);
-			}
-
-			if (Input.GetMouseButton(0) && !EventSystem.current.IsPointerOverGameObject())
-			{
-				var mousePosScreen = Input.mousePosition;
-				//assign distance of camera to ground plane to z, otherwise ScreenToWorldPoint() will always return the position of the camera
-				//http://answers.unity3d.com/answers/599100/view.html
-				mousePosScreen.z = _referenceCamera.transform.localPosition.y;
-				_mousePosition = _referenceCamera.ScreenToWorldPoint(mousePosScreen);
-
-				if (_shouldDrag == false)
-				{
-					_shouldDrag = true;
-					_origin = _referenceCamera.ScreenToWorldPoint(mousePosScreen);
-				}
-			}
-			else
-			{
-				_shouldDrag = false;
-			}
-
-			if (_shouldDrag == true)
-			{
-				var changeFromPreviousPosition = _mousePositionPrevious - _mousePosition;
-				if (Mathf.Abs(changeFromPreviousPosition.x) > 0.0f || Mathf.Abs(changeFromPreviousPosition.y) > 0.0f)
-				{
-					_mousePositionPrevious = _mousePosition;
-					var offset = _origin - _mousePosition;
-
-					if (Mathf.Abs(offset.x) > 0.0f || Mathf.Abs(offset.z) > 0.0f)
-					{
-						if (null != _mapManager)
-						{
-							float factor = _panSpeed * Conversions.GetTileScaleInMeters((float)0, _mapManager.AbsoluteZoom) / _mapManager.UnityTileSize;
-							var latlongDelta = Conversions.MetersToLatLon(new Vector2d(offset.x * factor, offset.z * factor));
-							var newLatLong = _mapManager.CenterLatitudeLongitude + latlongDelta;
-
-							_mapManager.UpdateMap(newLatLong, _mapManager.Zoom);
-						}
-					}
-					_origin = _mousePosition;
-				}
-				else
-				{
-					if (EventSystem.current.IsPointerOverGameObject())
-					{
-						return;
-					}
-					_mousePositionPrevious = _mousePosition;
-					_origin = _mousePosition;
-				}
-			}
-		}
-
-		void UseDegreeConversion()
-		{
-			if (Input.GetMouseButton(0) && !EventSystem.current.IsPointerOverGameObject())
-			{
-				var mousePosScreen = Input.mousePosition;
-				//assign distance of camera to ground plane to z, otherwise ScreenToWorldPoint() will always return the position of the camera
-				//http://answers.unity3d.com/answers/599100/view.html
-				mousePosScreen.z = _referenceCamera.transform.localPosition.y;
-				_mousePosition = _referenceCamera.ScreenToWorldPoint(mousePosScreen);
-
-				if (_shouldDrag == false)
-				{
-					_shouldDrag = true;
-					_origin = _referenceCamera.ScreenToWorldPoint(mousePosScreen);
-				}
-			}
-			else
-			{
-				_shouldDrag = false;
-			}
-
-			if (_shouldDrag == true)
-			{
-				var changeFromPreviousPosition = _mousePositionPrevious - _mousePosition;
-				if (Mathf.Abs(changeFromPreviousPosition.x) > 0.0f || Mathf.Abs(changeFromPreviousPosition.y) > 0.0f)
-				{
-					_mousePositionPrevious = _mousePosition;
-					var offset = _origin - _mousePosition;
-
-					if (Mathf.Abs(offset.x) > 0.0f || Mathf.Abs(offset.z) > 0.0f)
-					{
-						if (null != _mapManager)
-						{
-							// Get the number of degrees in a tile at the current zoom level.
-							// Divide it by the tile width in pixels ( 256 in our case)
-							// to get degrees represented by each pixel.
-							// Mouse offset is in pixels, therefore multiply the factor with the offset to move the center.
-							float factor = _panSpeed * Conversions.GetTileScaleInDegrees((float)_mapManager.CenterLatitudeLongitude.x, _mapManager.AbsoluteZoom) / _mapManager.UnityTileSize;
-
-							var latitudeLongitude = new Vector2d(_mapManager.CenterLatitudeLongitude.x + offset.z * factor, _mapManager.CenterLatitudeLongitude.y + offset.x * factor);
-							_mapManager.UpdateMap(latitudeLongitude, _mapManager.Zoom);
-						}
-					}
-					_origin = _mousePosition;
-				}
-				else
-				{
-					if (EventSystem.current.IsPointerOverGameObject())
-					{
-						return;
-					}
-					_mousePositionPrevious = _mousePosition;
-					_origin = _mousePosition;
-				}
-			}
-		}
-
-		private Vector3 getGroundPlaneHitPoint(Ray ray)
-		{
-			float distance;
-			if (!_groundPlane.Raycast(ray, out distance)) { return Vector3.zero; }
-			return ray.GetPoint(distance);
-		}
-	}
+    using Mapbox.Unity.Map;
+    using Mapbox.Unity.Utilities;
+    using Mapbox.Utils;
+    using UnityEngine;
+    using UnityEngine.EventSystems;
+    using System;
+
+    public class QuadTreeCameraMovement : MonoBehaviour
+    {
+        [SerializeField]
+        [Range(1, 20)]
+        public float _panSpeed = 1.0f;
+
+        [SerializeField]
+        float _zoomSpeed = 0.25f;
+
+        [SerializeField]
+        public Camera _referenceCamera;
+
+        [SerializeField]
+        AbstractMap _mapManager;
+
+        [SerializeField]
+        bool _useDegreeMethod;
+
+        private Vector3 _origin;
+        private Vector3 _mousePosition;
+        private Vector3 _mousePositionPrevious;
+        private bool _shouldDrag;
+        private bool _isInitialized = false;
+        private Plane _groundPlane = new Plane(Vector3.up, 0);
+        private bool _dragStartedOnUI = false;
+        private float _trueSpeed;
+
+        void Awake()
+        {
+            if (null == _referenceCamera)
+            {
+                _referenceCamera = GetComponent<Camera>();
+                if (null == _referenceCamera) { Debug.LogErrorFormat("{0}: reference camera not set", this.GetType().Name); }
+            }
+            _mapManager.OnInitialized += () =>
+            {
+                _isInitialized = true;
+            };
+        }
+
+        private void Start()
+        {
+            _trueSpeed = _panSpeed;
+        }
+
+        public void Update()
+        {
+            if (Input.GetKey(KeyCode.LeftShift))
+            {
+                _panSpeed = 2 * _trueSpeed;
+            }
+            else
+            {
+                _panSpeed = _trueSpeed;
+            }
+
+            if (Input.GetMouseButtonDown(0) && EventSystem.current.IsPointerOverGameObject())
+            {
+                _dragStartedOnUI = true;
+            }
+
+            if (Input.GetMouseButtonUp(0))
+            {
+                _dragStartedOnUI = false;
+            }
+        }
+
+
+        private void LateUpdate()
+        {
+            if (!_isInitialized) { return; }
+
+            if (!_dragStartedOnUI)
+            {
+                if (Input.touchSupported && Input.touchCount > 0)
+                {
+                    HandleTouch();
+                }
+                else
+                {
+                    HandleMouseAndKeyBoard();
+                }
+            }
+        }
+
+        void HandleMouseAndKeyBoard()
+        {
+            // zoom
+            float scrollDelta = 0.0f;
+            scrollDelta = Input.GetAxis("Mouse ScrollWheel");
+            ZoomMapUsingTouchOrMouse(scrollDelta);
+
+
+            //pan keyboard
+            float xMove = Input.GetAxis("Horizontal");
+            float zMove = Input.GetAxis("Vertical");
+
+            PanMapUsingKeyBoard(xMove, zMove);
+
+
+            //pan mouse
+            PanMapUsingTouchOrMouse();
+        }
+
+        void HandleTouch()
+        {
+            float zoomFactor = 0.0f;
+            //pinch to zoom.
+            switch (Input.touchCount)
+            {
+                case 1:
+                    {
+                        PanMapUsingTouchOrMouse();
+                    }
+                    break;
+                case 2:
+                    {
+                        // Store both touches.
+                        Touch touchZero = Input.GetTouch(0);
+                        Touch touchOne = Input.GetTouch(1);
+
+                        // Find the position in the previous frame of each touch.
+                        Vector2 touchZeroPrevPos = touchZero.position - touchZero.deltaPosition;
+                        Vector2 touchOnePrevPos = touchOne.position - touchOne.deltaPosition;
+
+                        // Find the magnitude of the vector (the distance) between the touches in each frame.
+                        float prevTouchDeltaMag = (touchZeroPrevPos - touchOnePrevPos).magnitude;
+                        float touchDeltaMag = (touchZero.position - touchOne.position).magnitude;
+
+                        // Find the difference in the distances between each frame.
+                        zoomFactor = 0.01f * (touchDeltaMag - prevTouchDeltaMag);
+                    }
+                    ZoomMapUsingTouchOrMouse(zoomFactor);
+                    break;
+                default:
+                    break;
+            }
+        }
+
+        void ZoomMapUsingTouchOrMouse(float zoomFactor)
+        {
+            //if ((this.transform.localScale.y.CompareTo(2.0f) < 0 && zoomFactor > 0) || (this.transform.localScale.y.CompareTo(1.0f) >= 0 && zoomFactor < 0))
+           // {
+                var zoom = Mathf.Max(0.0f, Mathf.Min(_mapManager.Zoom + zoomFactor * _zoomSpeed, 21.0f));
+                //Debug.Log("zoom = "+zoom);
+                if(14 < zoom && zoom < 16) {
+                if (Math.Abs(zoom - _mapManager.Zoom) > 0f)
+                {
+                    _mapManager.UpdateMap(_mapManager.CenterLatitudeLongitude, zoom);
+                } }
+            //}
+        }
+
+        void PanMapUsingKeyBoard(float xMove, float zMove)
+        {
+            if (Math.Abs(xMove) > 0.0f || Math.Abs(zMove) > 0.0f)
+            {
+                // Get the number of degrees in a tile at the current zoom level.
+                // Divide it by the tile width in pixels ( 256 in our case)
+                // to get degrees represented by each pixel.
+                // Keyboard offset is in pixels, therefore multiply the factor with the offset to move the center.
+                float factor = _panSpeed * (Conversions.GetTileScaleInDegrees((float)_mapManager.CenterLatitudeLongitude.x, _mapManager.AbsoluteZoom));
+
+                var latitudeLongitude = new Vector2d(_mapManager.CenterLatitudeLongitude.x + zMove * factor * 2.0f, _mapManager.CenterLatitudeLongitude.y + xMove * factor * 4.0f);
+
+                _mapManager.UpdateMap(latitudeLongitude, _mapManager.Zoom);
+            }
+        }
+
+        void PanMapUsingTouchOrMouse()
+        {
+            if (_useDegreeMethod)
+            {
+                UseDegreeConversion();
+            }
+            else
+            {
+                UseMeterConversion();
+            }
+        }
+
+        void UseMeterConversion()
+        {
+            if (Input.GetMouseButtonUp(1))
+            {
+                var mousePosScreen = Input.mousePosition;
+                //assign distance of camera to ground plane to z, otherwise ScreenToWorldPoint() will always return the position of the camera
+                //http://answers.unity3d.com/answers/599100/view.html
+                mousePosScreen.z = _referenceCamera.transform.localPosition.y;
+                var pos = _referenceCamera.ScreenToWorldPoint(mousePosScreen);
+
+                var latlongDelta = _mapManager.WorldToGeoPosition(pos);
+                Debug.Log("Latitude: " + latlongDelta.x + " Longitude: " + latlongDelta.y);
+            }
+
+            if (Input.GetMouseButton(0) && !EventSystem.current.IsPointerOverGameObject())
+            {
+                var mousePosScreen = Input.mousePosition;
+                //assign distance of camera to ground plane to z, otherwise ScreenToWorldPoint() will always return the position of the camera
+                //http://answers.unity3d.com/answers/599100/view.html
+                mousePosScreen.z = _referenceCamera.transform.localPosition.y;
+                _mousePosition = _referenceCamera.ScreenToWorldPoint(mousePosScreen);
+
+                if (_shouldDrag == false)
+                {
+                    _shouldDrag = true;
+                    _origin = _referenceCamera.ScreenToWorldPoint(mousePosScreen);
+                }
+            }
+            else
+            {
+                _shouldDrag = false;
+            }
+
+            if (_shouldDrag == true)
+            {
+                var changeFromPreviousPosition = _mousePositionPrevious - _mousePosition;
+                if (Mathf.Abs(changeFromPreviousPosition.x) > 0.0f || Mathf.Abs(changeFromPreviousPosition.y) > 0.0f)
+                {
+                    _mousePositionPrevious = _mousePosition;
+                    var offset = _origin - _mousePosition;
+
+                    if (Mathf.Abs(offset.x) > 0.0f || Mathf.Abs(offset.z) > 0.0f)
+                    {
+                        if (null != _mapManager)
+                        {
+                            float factor = _panSpeed * Conversions.GetTileScaleInMeters((float)0, _mapManager.AbsoluteZoom) / _mapManager.UnityTileSize;
+                            var latlongDelta = Conversions.MetersToLatLon(new Vector2d(offset.x * factor, offset.z * factor));
+                            var newLatLong = _mapManager.CenterLatitudeLongitude + latlongDelta;
+
+                            _mapManager.UpdateMap(newLatLong, _mapManager.Zoom);
+                        }
+                    }
+                    _origin = _mousePosition;
+                }
+                else
+                {
+                    if (EventSystem.current.IsPointerOverGameObject())
+                    {
+                        return;
+                    }
+                    _mousePositionPrevious = _mousePosition;
+                    _origin = _mousePosition;
+                }
+            }
+        }
+
+        void UseDegreeConversion()
+        {
+            if (Input.GetMouseButton(0) && !EventSystem.current.IsPointerOverGameObject())
+            {
+                var mousePosScreen = Input.mousePosition;
+                //assign distance of camera to ground plane to z, otherwise ScreenToWorldPoint() will always return the position of the camera
+                //http://answers.unity3d.com/answers/599100/view.html
+                mousePosScreen.z = _referenceCamera.transform.localPosition.y;
+                _mousePosition = _referenceCamera.ScreenToWorldPoint(mousePosScreen);
+
+                if (_shouldDrag == false)
+                {
+                    _shouldDrag = true;
+                    _origin = _referenceCamera.ScreenToWorldPoint(mousePosScreen);
+                }
+            }
+            else
+            {
+                _shouldDrag = false;
+            }
+
+            if (_shouldDrag == true)
+            {
+                var changeFromPreviousPosition = _mousePositionPrevious - _mousePosition;
+                if (Mathf.Abs(changeFromPreviousPosition.x) > 0.0f || Mathf.Abs(changeFromPreviousPosition.y) > 0.0f)
+                {
+                    _mousePositionPrevious = _mousePosition;
+                    var offset = _origin - _mousePosition;
+
+                    if (Mathf.Abs(offset.x) > 0.0f || Mathf.Abs(offset.z) > 0.0f)
+                    {
+                        if (null != _mapManager)
+                        {
+                            // Get the number of degrees in a tile at the current zoom level.
+                            // Divide it by the tile width in pixels ( 256 in our case)
+                            // to get degrees represented by each pixel.
+                            // Mouse offset is in pixels, therefore multiply the factor with the offset to move the center.
+                            float factor = _panSpeed * Conversions.GetTileScaleInDegrees((float)_mapManager.CenterLatitudeLongitude.x, _mapManager.AbsoluteZoom) / _mapManager.UnityTileSize;
+
+                            var latitudeLongitude = new Vector2d(_mapManager.CenterLatitudeLongitude.x + offset.z * factor, _mapManager.CenterLatitudeLongitude.y + offset.x * factor);
+                            _mapManager.UpdateMap(latitudeLongitude, _mapManager.Zoom);
+                        }
+                    }
+                    _origin = _mousePosition;
+                }
+                else
+                {
+                    if (EventSystem.current.IsPointerOverGameObject())
+                    {
+                        return;
+                    }
+                    _mousePositionPrevious = _mousePosition;
+                    _origin = _mousePosition;
+                }
+            }
+        }
+
+        private Vector3 getGroundPlaneHitPoint(Ray ray)
+        {
+            float distance;
+            if (!_groundPlane.Raycast(ray, out distance)) { return Vector3.zero; }
+            return ray.GetPoint(distance);
+        }
+    }
 }
\ No newline at end of file
diff --git a/T3-Unity/Assets/Prefabs/Waypoint.prefab b/T3-Unity/Assets/Prefabs/Waypoint.prefab
new file mode 100644
index 0000000..b74ca2c
--- /dev/null
+++ b/T3-Unity/Assets/Prefabs/Waypoint.prefab
@@ -0,0 +1,328 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1 &901362092215755285
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 901362092215755284}
+  m_Layer: 0
+  m_Name: Waypoint
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &901362092215755284
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 901362092215755285}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: 0, y: 0, z: 0}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children:
+  - {fileID: 901362092661596065}
+  - {fileID: 8516574415075833833}
+  m_Father: {fileID: 0}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &901362092661596070
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 901362092661596065}
+  - component: {fileID: 901362092661596066}
+  - component: {fileID: 901362092661596067}
+  - component: {fileID: 901362092661596064}
+  m_Layer: 0
+  m_Name: Cylinder
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &901362092661596065
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 901362092661596070}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: 0, y: 0, z: 0}
+  m_LocalScale: {x: 1, y: 0.1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 901362092215755284}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!33 &901362092661596066
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 901362092661596070}
+  m_Mesh: {fileID: 10206, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!23 &901362092661596067
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 901362092661596070}
+  m_Enabled: 1
+  m_CastShadows: 0
+  m_ReceiveShadows: 0
+  m_DynamicOccludee: 0
+  m_MotionVectors: 1
+  m_LightProbeUsage: 1
+  m_ReflectionProbeUsage: 1
+  m_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 2100000, guid: 27f1e34ec9273454ebc5ea9db98eb833, type: 2}
+  m_StaticBatchInfo:
+    firstSubMesh: 0
+    subMeshCount: 0
+  m_StaticBatchRoot: {fileID: 0}
+  m_ProbeAnchor: {fileID: 0}
+  m_LightProbeVolumeOverride: {fileID: 0}
+  m_ScaleInLightmap: 1
+  m_PreserveUVs: 0
+  m_IgnoreNormalsForChartDetection: 0
+  m_ImportantGI: 0
+  m_StitchLightmapSeams: 0
+  m_SelectedEditorRenderState: 3
+  m_MinimumChartSize: 4
+  m_AutoUVMaxDistance: 0.5
+  m_AutoUVMaxAngle: 89
+  m_LightmapParameters: {fileID: 0}
+  m_SortingLayerID: 0
+  m_SortingLayer: 0
+  m_SortingOrder: 0
+--- !u!136 &901362092661596064
+CapsuleCollider:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 901362092661596070}
+  m_Material: {fileID: 0}
+  m_IsTrigger: 0
+  m_Enabled: 1
+  m_Radius: 0.5000001
+  m_Height: 2
+  m_Direction: 1
+  m_Center: {x: 0.000000059604645, y: 0, z: -0.00000008940697}
+--- !u!1 &2063256574582092606
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 8516574415075833833}
+  - component: {fileID: 4913079151577576781}
+  - component: {fileID: 6805952121577456765}
+  - component: {fileID: 1618937404765229987}
+  - component: {fileID: 4496217386513608057}
+  m_Layer: 0
+  m_Name: Text (TMP)
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!224 &8516574415075833833
+RectTransform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2063256574582092606}
+  m_LocalRotation: {x: 0.70710677, y: 0, z: 0, w: 0.70710677}
+  m_LocalPosition: {x: 0, y: 0, z: -0}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 901362092215755284}
+  m_RootOrder: 1
+  m_LocalEulerAnglesHint: {x: 90, y: 90, z: 90}
+  m_AnchorMin: {x: 0.5, y: 0.5}
+  m_AnchorMax: {x: 0.5, y: 0.5}
+  m_AnchoredPosition: {x: 0, y: 0.59}
+  m_SizeDelta: {x: 20, y: 5}
+  m_Pivot: {x: 0.5, y: 0.5}
+--- !u!23 &4913079151577576781
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2063256574582092606}
+  m_Enabled: 1
+  m_CastShadows: 0
+  m_ReceiveShadows: 0
+  m_DynamicOccludee: 1
+  m_MotionVectors: 1
+  m_LightProbeUsage: 1
+  m_ReflectionProbeUsage: 1
+  m_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
+  m_StaticBatchInfo:
+    firstSubMesh: 0
+    subMeshCount: 0
+  m_StaticBatchRoot: {fileID: 0}
+  m_ProbeAnchor: {fileID: 0}
+  m_LightProbeVolumeOverride: {fileID: 0}
+  m_ScaleInLightmap: 1
+  m_PreserveUVs: 0
+  m_IgnoreNormalsForChartDetection: 0
+  m_ImportantGI: 0
+  m_StitchLightmapSeams: 0
+  m_SelectedEditorRenderState: 3
+  m_MinimumChartSize: 4
+  m_AutoUVMaxDistance: 0.5
+  m_AutoUVMaxAngle: 89
+  m_LightmapParameters: {fileID: 0}
+  m_SortingLayerID: 0
+  m_SortingLayer: 0
+  m_SortingOrder: 0
+--- !u!33 &6805952121577456765
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2063256574582092606}
+  m_Mesh: {fileID: 0}
+--- !u!222 &1618937404765229987
+CanvasRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2063256574582092606}
+  m_CullTransparentMesh: 0
+--- !u!114 &4496217386513608057
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 2063256574582092606}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 9541d86e2fd84c1d9990edf0852d74ab, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  m_Material: {fileID: 0}
+  m_Color: {r: 1, g: 1, b: 1, a: 1}
+  m_RaycastTarget: 1
+  m_OnCullStateChanged:
+    m_PersistentCalls:
+      m_Calls: []
+  m_text: START
+  m_isRightToLeft: 0
+  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
+  m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
+  m_fontSharedMaterials: []
+  m_fontMaterial: {fileID: 0}
+  m_fontMaterials: []
+  m_fontColor32:
+    serializedVersion: 2
+    rgba: 4278190080
+  m_fontColor: {r: 0, g: 0, b: 0, a: 1}
+  m_enableVertexGradient: 0
+  m_colorMode: 3
+  m_fontColorGradient:
+    topLeft: {r: 1, g: 1, b: 1, a: 1}
+    topRight: {r: 1, g: 1, b: 1, a: 1}
+    bottomLeft: {r: 1, g: 1, b: 1, a: 1}
+    bottomRight: {r: 1, g: 1, b: 1, a: 1}
+  m_fontColorGradientPreset: {fileID: 0}
+  m_spriteAsset: {fileID: 0}
+  m_tintAllSprites: 0
+  m_overrideHtmlColors: 0
+  m_faceColor:
+    serializedVersion: 2
+    rgba: 4294967295
+  m_outlineColor:
+    serializedVersion: 2
+    rgba: 4278190080
+  m_fontSize: 16
+  m_fontSizeBase: 16
+  m_fontWeight: 400
+  m_enableAutoSizing: 0
+  m_fontSizeMin: 18
+  m_fontSizeMax: 72
+  m_fontStyle: 0
+  m_textAlignment: 257
+  m_characterSpacing: 0
+  m_wordSpacing: 0
+  m_lineSpacing: 0
+  m_lineSpacingMax: 0
+  m_paragraphSpacing: 0
+  m_charWidthMaxAdj: 0
+  m_enableWordWrapping: 1
+  m_wordWrappingRatios: 0.4
+  m_overflowMode: 0
+  m_firstOverflowCharacterIndex: -1
+  m_linkedTextComponent: {fileID: 0}
+  m_isLinkedTextComponent: 0
+  m_isTextTruncated: 0
+  m_enableKerning: 1
+  m_enableExtraPadding: 0
+  checkPaddingRequired: 0
+  m_isRichText: 1
+  m_parseCtrlCharacters: 1
+  m_isOrthographic: 0
+  m_isCullingEnabled: 0
+  m_ignoreRectMaskCulling: 0
+  m_ignoreCulling: 1
+  m_horizontalMapping: 0
+  m_verticalMapping: 0
+  m_uvLineOffset: 0
+  m_geometrySortingOrder: 0
+  m_VertexBufferAutoSizeReduction: 1
+  m_firstVisibleCharacter: 0
+  m_useMaxVisibleDescender: 1
+  m_pageToDisplay: 1
+  m_margin: {x: 7.599061, y: 0.41759348, z: 7.2742157, w: 0}
+  m_textInfo:
+    textComponent: {fileID: 4496217386513608057}
+    characterCount: 5
+    spriteCount: 0
+    spaceCount: 0
+    wordCount: 1
+    linkCount: 0
+    lineCount: 1
+    pageCount: 1
+    materialCount: 1
+  m_isUsingLegacyAnimationComponent: 0
+  m_isVolumetricText: 0
+  m_spriteAnimator: {fileID: 0}
+  m_hasFontAssetChanged: 0
+  m_renderer: {fileID: 4913079151577576781}
+  m_subTextObjects:
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  - {fileID: 0}
+  m_maskType: 0
diff --git a/T3-Unity/Assets/Prefabs/Waypoint.prefab.meta b/T3-Unity/Assets/Prefabs/Waypoint.prefab.meta
new file mode 100644
index 0000000..74dc632
--- /dev/null
+++ b/T3-Unity/Assets/Prefabs/Waypoint.prefab.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 18761a72aa6233c4bb4bd29dd401981e
+PrefabImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/T3-Unity/Assets/Scenes/Map_Tests.unity b/T3-Unity/Assets/Scenes/Map_Tests.unity
index e2a3354..5321d58 100644
--- a/T3-Unity/Assets/Scenes/Map_Tests.unity
+++ b/T3-Unity/Assets/Scenes/Map_Tests.unity
@@ -276,8 +276,39 @@ Transform:
   m_LocalScale: {x: 1, y: 1, z: 1}
   m_Children: []
   m_Father: {fileID: 0}
-  m_RootOrder: 1
+  m_RootOrder: 2
   m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
+--- !u!1 &449615647
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 449615648}
+  m_Layer: 0
+  m_Name: Player
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &449615648
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 449615647}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: 450, y: 144.95001, z: 0}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children:
+  - {fileID: 534669905}
+  m_Father: {fileID: 0}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
 --- !u!1 &534669902
 GameObject:
   m_ObjectHideFlags: 0
@@ -353,11 +384,11 @@ Transform:
   m_PrefabInstance: {fileID: 0}
   m_PrefabAsset: {fileID: 0}
   m_GameObject: {fileID: 534669902}
-  m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068}
-  m_LocalPosition: {x: 0, y: 0, z: 0}
+  m_LocalRotation: {x: 0.7071068, y: -0, z: -0, w: 0.7071068}
+  m_LocalPosition: {x: -450, y: -34.950012, z: 0}
   m_LocalScale: {x: 1, y: 1, z: 1}
   m_Children: []
-  m_Father: {fileID: 1882738770}
+  m_Father: {fileID: 449615648}
   m_RootOrder: 0
   m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0}
 --- !u!1 &596864101
@@ -555,7 +586,7 @@ PrefabInstance:
       objectReference: {fileID: 0}
     - target: {fileID: 4867834046800562, guid: e6b749c6d877f4c19a5a5c3c0783d53b, type: 3}
       propertyPath: m_RootOrder
-      value: 0
+      value: 1
       objectReference: {fileID: 0}
     - target: {fileID: 4867834046800562, guid: e6b749c6d877f4c19a5a5c3c0783d53b, type: 3}
       propertyPath: m_LocalEulerAnglesHint.x
@@ -726,6 +757,68 @@ PrefabInstance:
       objectReference: {fileID: 0}
     m_RemovedComponents: []
   m_SourcePrefab: {fileID: 100100000, guid: e6b749c6d877f4c19a5a5c3c0783d53b, type: 3}
+--- !u!1 &703254551 stripped
+GameObject:
+  m_CorrespondingSourceObject: {fileID: 1257486800756004, guid: e6b749c6d877f4c19a5a5c3c0783d53b,
+    type: 3}
+  m_PrefabInstance: {fileID: 703254550}
+  m_PrefabAsset: {fileID: 0}
+--- !u!114 &703254552
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 703254551}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: 2c699b8e1864b4b248acb7a04ede9480, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  _panSpeed: 1
+  _zoomSpeed: 1
+  _referenceCamera: {fileID: 534669904}
+  _mapManager: {fileID: 703254553}
+  _useDegreeMethod: 0
+--- !u!114 &703254553 stripped
+MonoBehaviour:
+  m_CorrespondingSourceObject: {fileID: 114478715909612932, guid: e6b749c6d877f4c19a5a5c3c0783d53b,
+    type: 3}
+  m_PrefabInstance: {fileID: 703254550}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 703254551}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: cd961b1c9541a4cee99686069ecce852, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+--- !u!114 &703254554
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 703254551}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: cb9f22c201ea92c4ba4e0ccff8264b5b, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  _map: {fileID: 703254553}
+  _locationStrings:
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  - 0
+  _spawnScale: 2
+  _markerPrefab: {fileID: 901362092215755285, guid: 18761a72aa6233c4bb4bd29dd401981e,
+    type: 3}
 --- !u!1 &758898508
 GameObject:
   m_ObjectHideFlags: 0
@@ -1028,53 +1121,6 @@ CanvasRenderer:
   m_PrefabAsset: {fileID: 0}
   m_GameObject: {fileID: 1440548237}
   m_CullTransparentMesh: 0
---- !u!1 &1882738769
-GameObject:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  serializedVersion: 6
-  m_Component:
-  - component: {fileID: 1882738770}
-  - component: {fileID: 1882738771}
-  m_Layer: 0
-  m_Name: Player
-  m_TagString: Untagged
-  m_Icon: {fileID: 0}
-  m_NavMeshLayer: 0
-  m_StaticEditorFlags: 0
-  m_IsActive: 1
---- !u!4 &1882738770
-Transform:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_GameObject: {fileID: 1882738769}
-  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
-  m_LocalPosition: {x: 0, y: 110, z: 0}
-  m_LocalScale: {x: 1, y: 1, z: 1}
-  m_Children:
-  - {fileID: 534669905}
-  m_Father: {fileID: 0}
-  m_RootOrder: 2
-  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
---- !u!114 &1882738771
-MonoBehaviour:
-  m_ObjectHideFlags: 0
-  m_CorrespondingSourceObject: {fileID: 0}
-  m_PrefabInstance: {fileID: 0}
-  m_PrefabAsset: {fileID: 0}
-  m_GameObject: {fileID: 1882738769}
-  m_Enabled: 1
-  m_EditorHideFlags: 0
-  m_Script: {fileID: 11500000, guid: cdef371ec6aa3b04e81bb0d5c8dc4b15, type: 3}
-  m_Name: 
-  m_EditorClassIdentifier: 
-  speed: 1.5
-  maxY: 170
-  minY: 50
 --- !u!1 &2056313308
 GameObject:
   m_ObjectHideFlags: 0
@@ -1107,7 +1153,7 @@ MonoBehaviour:
   m_Script: {fileID: 11500000, guid: c00b1c78fb49f4ebd834aac587275216, type: 3}
   m_Name: 
   m_EditorClassIdentifier: 
-  _player: {fileID: 0}
+  _player: {fileID: 449615647}
   _playerStartPos: {x: 0, y: 0, z: 0}
   _forwardGeocoder: {fileID: 1255026302}
   _zoomSlider: {fileID: 0}
diff --git a/T3-Unity/Assets/Scripts/WaypointSpawner.cs b/T3-Unity/Assets/Scripts/WaypointSpawner.cs
new file mode 100644
index 0000000..fbce2cc
--- /dev/null
+++ b/T3-Unity/Assets/Scripts/WaypointSpawner.cs
@@ -0,0 +1,52 @@
+using UnityEngine;
+using Mapbox.Utils;
+using Mapbox.Unity.Map;
+using Mapbox.Unity.MeshGeneration.Factories;
+using Mapbox.Unity.Utilities;
+using System.Collections.Generic;
+
+public class WaypointSpawner : MonoBehaviour
+{
+    [SerializeField]
+    AbstractMap _map;
+
+    [SerializeField]
+    [Geocode]
+    string[] _locationStrings;
+    Vector2d[] _locations;
+
+    [SerializeField]
+    float _spawnScale = 100f;
+
+    [SerializeField]
+    GameObject _markerPrefab;
+
+    List<GameObject> _spawnedObjects;
+
+    void Start()
+    {
+        _locations = new Vector2d[_locationStrings.Length];
+        _spawnedObjects = new List<GameObject>();
+        for (int i = 0; i < _locationStrings.Length; i++)
+        {
+            var locationString = _locationStrings[i];
+            _locations[i] = Conversions.StringToLatLon(locationString);
+            var instance = Instantiate(_markerPrefab);
+            instance.transform.localPosition = _map.GeoToWorldPosition(_locations[i], true);
+            instance.transform.localScale = new Vector3(_spawnScale, _spawnScale, _spawnScale);
+            _spawnedObjects.Add(instance);
+        }
+    }
+
+    private void Update()
+    {
+        int count = _spawnedObjects.Count;
+        for (int i = 0; i < count; i++)
+        {
+            var spawnedObject = _spawnedObjects[i];
+            var location = _locations[i];
+            spawnedObject.transform.localPosition = _map.GeoToWorldPosition(location, true);
+            spawnedObject.transform.localScale = new Vector3(_spawnScale, _spawnScale, _spawnScale);
+        }
+    }
+}
diff --git a/T3-Unity/Assets/Scripts/WaypointSpawner.cs.meta b/T3-Unity/Assets/Scripts/WaypointSpawner.cs.meta
new file mode 100644
index 0000000..0d6f3ec
--- /dev/null
+++ b/T3-Unity/Assets/Scripts/WaypointSpawner.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: cb9f22c201ea92c4ba4e0ccff8264b5b
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/T3-Unity/Assets/Tree.prefab b/T3-Unity/Assets/Tree.prefab
new file mode 100644
index 0000000..fd53618
--- /dev/null
+++ b/T3-Unity/Assets/Tree.prefab
@@ -0,0 +1,868 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1 &6841884671796025046
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 2607426792231862992}
+  - component: {fileID: 1470544611184568821}
+  - component: {fileID: 572919843287477795}
+  - component: {fileID: 627994290992090968}
+  m_Layer: 0
+  m_Name: Tree
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &2607426792231862992
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6841884671796025046}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: 0, y: 0, z: 0}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_Children: []
+  m_Father: {fileID: 0}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!193 &1470544611184568821
+Tree:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6841884671796025046}
+  m_SpeedTreeWindAsset: {fileID: 0}
+  m_TreeData: {fileID: 114412932522947144}
+--- !u!33 &572919843287477795
+MeshFilter:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6841884671796025046}
+  m_Mesh: {fileID: 43274217643936046}
+--- !u!23 &627994290992090968
+MeshRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 6841884671796025046}
+  m_Enabled: 1
+  m_CastShadows: 1
+  m_ReceiveShadows: 1
+  m_DynamicOccludee: 1
+  m_MotionVectors: 1
+  m_LightProbeUsage: 1
+  m_ReflectionProbeUsage: 1
+  m_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 21642922241295098}
+  m_StaticBatchInfo:
+    firstSubMesh: 0
+    subMeshCount: 0
+  m_StaticBatchRoot: {fileID: 0}
+  m_ProbeAnchor: {fileID: 0}
+  m_LightProbeVolumeOverride: {fileID: 0}
+  m_ScaleInLightmap: 1
+  m_PreserveUVs: 0
+  m_IgnoreNormalsForChartDetection: 0
+  m_ImportantGI: 0
+  m_StitchLightmapSeams: 0
+  m_SelectedEditorRenderState: 3
+  m_MinimumChartSize: 4
+  m_AutoUVMaxDistance: 0.5
+  m_AutoUVMaxAngle: 89
+  m_LightmapParameters: {fileID: 0}
+  m_SortingLayerID: 0
+  m_SortingLayer: 0
+  m_SortingOrder: 0
+--- !u!21 &21027443205240300
+Material:
+  serializedVersion: 6
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: Optimized Leaf Material
+  m_Shader: {fileID: 10605, guid: 0000000000000000f000000000000000, type: 0}
+  m_ShaderKeywords: 
+  m_LightmapFlags: 4
+  m_EnableInstancingVariants: 0
+  m_DoubleSidedGI: 0
+  m_CustomRenderQueue: -1
+  stringTagMap: {}
+  disabledShaderPasses: []
+  m_SavedProperties:
+    serializedVersion: 3
+    m_TexEnvs:
+    - _BumpSpecMap:
+        m_Texture: {fileID: 2800000, guid: e8d812ef0f8e97541988acced374f732, type: 3}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _MainTex:
+        m_Texture: {fileID: 2800000, guid: 7ba50cf7d4a80a74fa2c2f8b166713a9, type: 3}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _ShadowTex:
+        m_Texture: {fileID: 2800000, guid: bc43e6a5ad5a6da47abd1f1161507813, type: 3}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _TranslucencyMap:
+        m_Texture: {fileID: 2800000, guid: 3082ee7b5bac87345a3f82d7389a51bb, type: 3}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    m_Floats:
+    - _Cutoff: 0.3
+    - _ShadowOffsetScale: 1
+    - _ShadowStrength: 0.8
+    - _SquashAmount: 1
+    - _TranslucencyViewDependency: 0.7
+    m_Colors:
+    - _Color: {r: 1, g: 1, b: 1, a: 1}
+    - _TranslucencyColor: {r: 0.73, g: 0.85, b: 0.41, a: 1}
+    - _TreeInstanceColor: {r: 1, g: 1, b: 1, a: 1}
+    - _TreeInstanceScale: {r: 1, g: 1, b: 1, a: 1}
+--- !u!21 &21642922241295098
+Material:
+  serializedVersion: 6
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: Optimized Bark Material
+  m_Shader: {fileID: 10604, guid: 0000000000000000f000000000000000, type: 0}
+  m_ShaderKeywords: 
+  m_LightmapFlags: 4
+  m_EnableInstancingVariants: 0
+  m_DoubleSidedGI: 0
+  m_CustomRenderQueue: -1
+  stringTagMap: {}
+  disabledShaderPasses: []
+  m_SavedProperties:
+    serializedVersion: 3
+    m_TexEnvs:
+    - _BumpSpecMap:
+        m_Texture: {fileID: 2800000, guid: e8d812ef0f8e97541988acced374f732, type: 3}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _MainTex:
+        m_Texture: {fileID: 2800000, guid: 7ba50cf7d4a80a74fa2c2f8b166713a9, type: 3}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    - _TranslucencyMap:
+        m_Texture: {fileID: 2800000, guid: 3082ee7b5bac87345a3f82d7389a51bb, type: 3}
+        m_Scale: {x: 1, y: 1}
+        m_Offset: {x: 0, y: 0}
+    m_Floats:
+    - _Cutoff: 0.3
+    - _SquashAmount: 1
+    m_Colors:
+    - _Color: {r: 1, g: 1, b: 1, a: 1}
+    - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+    - _TreeInstanceColor: {r: 1, g: 1, b: 1, a: 1}
+    - _TreeInstanceScale: {r: 1, g: 1, b: 1, a: 1}
+--- !u!43 &43274217643936046
+Mesh:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: Mesh
+  serializedVersion: 9
+  m_SubMeshes:
+  - serializedVersion: 2
+    firstByte: 0
+    indexCount: 420
+    topology: 0
+    baseVertex: 0
+    firstVertex: 0
+    vertexCount: 88
+    localAABB:
+      m_Center: {x: -0.07036564, y: 7.371292, z: -0.30755773}
+      m_Extent: {x: 0.57326114, y: 7.371292, z: 0.99303865}
+  m_Shapes:
+    vertices: []
+    shapes: []
+    channels: []
+    fullWeights: []
+  m_BindPose: []
+  m_BoneNameHashes: 
+  m_RootBoneNameHash: 0
+  m_MeshCompression: 0
+  m_IsReadable: 1
+  m_KeepVertices: 1
+  m_KeepIndices: 1
+  m_IndexFormat: 0
+  m_IndexBuffer: 090000000a00000001000a000a0001000b00010002000b000b0002000c00020003000c000c0003000d00030004000d000d0004000e00040005000e000e0005000f00050006000f000f000600100006000700100010000700110007000800110012000900130009000a00130013000a0014000a000b00140014000b0015000b000c00150015000c0016000c000d00160016000d0017000d000e00170017000e0018000e000f00180018000f0019000f0010001900190010001a00100011001a001b0012001c00120013001c001c0013001d00130014001d001d0014001d00140015001d001d0015001e00150016001e001e0016001f00160017001f001f0017001f00170018001f001f001800200018001900200020001900210019001a00210022001b0023001b001c00230023001c0024001c001d00240024001d0025001d001e00250025001e0026001e001f00260026001f0027001f0020002700270020002800200021002800290022002a00220023002a002a0023002b00230024002b002b0024002c00240025002c002c0025002d00250026002d002d0026002e00260027002e002e0027002f00270028002f0030002900310029002a00310031002a0031002a002b00310031002b0032002b002c00320032002c0033002c002d00330033002d0033002d002e00330033002e0034002e002f0034003500300036003000310036003600310037003100320037003700320038003200330038003800330039003300340039003a0035003b00350036003b003b0036003c00360037003c003c0037003d00370038003d003d0038003e00380039003e003f003a0040003a003b00400040003b0041003b003c00410041003c0042003c003d00420042003d0043003d003e00430044003f0045003f0040004500450040004600400041004600460041004700410042004700470042004800420043004800490044004a00440045004a004a0045004b00450046004b004b0046004c00460047004c004c0047004d00470048004d004e0049004f0049004a004f004f004a0050004a004b00500050004b0051004b004c00510051004c0052004c004d00520053004e0054004e004f00540054004f0055004f0050005500550050005600500051005600560051005700510052005700
+  m_VertexData:
+    serializedVersion: 2
+    m_VertexCount: 88
+    m_Channels:
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 3
+    - stream: 0
+      offset: 12
+      format: 0
+      dimension: 3
+    - stream: 0
+      offset: 24
+      format: 0
+      dimension: 4
+    - stream: 0
+      offset: 40
+      format: 0
+      dimension: 4
+    - stream: 0
+      offset: 56
+      format: 0
+      dimension: 2
+    - stream: 0
+      offset: 64
+      format: 0
+      dimension: 2
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    - stream: 0
+      offset: 0
+      format: 0
+      dimension: 0
+    m_DataSize: 6336
+    _typelessdata: 00000000000000007fd0ff3e4f8f51bc8d34553dcaa17f3fa0fa7fbf0000000022d851bc000080bf000000000000000000000000f2ff7f3f0000403f000000000000000000000000c79cb63e00000000c79cb63e802f343f8f34553d455c353f4b9b35bf000000001d6e343f000080bf0000000000000000000000000000803f0000303f000000000000000000000000c2bd003f0000000080d3bcb243a67f3f8e34553d862babbb0167ab3b000000001aff7f3f000080bf0000000000000000000000000000803f0000203f00000000000000000000000040b6b43e0000000040b6b4be7f2f343f8e34553d475c35bf4d9b353f000000001c6e343f000080bf000000000000000000000000cfff7f3f0000103f000000000000000000000000589a3bb3000000007fd0ffbe35ee57ba8e34553d23a77fbffaff7f3f000000003e3958ba000080bf0000000000000000000000002eff7f3f0000003f000000000000000000000000036ab4be00000000ff69b4be9e0f36bf8e34553d487a33bfa6b8333f00000000e24e36bf000080bf00000000000000000000000082fc7f3f0000e03e000000000000000000000000412ffcbe0000000086d0c931aaa57fbf8d34553d1305dd3be251ddbb0000000081fe7fbf000080bf000000000000000000000000cff87f3f0000c03e0000000000000000000000004afeb1be0000000052feb13e9c0f36bf8d34553d497a333fa8b833bf00000000e14e36bf000080bf000000000000000000000000e1f97f3f0000a03e000000000000000000000000589abb33000000007fd0ff3e4f8f51bc8d34553dcaa17f3fa0fa7fbf0000000022d851bc000080bf000000000000000000000000f2ff7f3f0000803e00000000000000000000000093d18bbdd3636e3fe637173f33c080bc8451bbbd2ce57e3f5cf47fbf9a39413c6fd270bc000080bf0000000000000000000000000000803f0000403f93b8a83eee911b39000000007f1f873e4bcd713faabfea3ee83e343faa647fbd6816353f90c135bf27c7a5bdab15333f000080bf0000000000000000000000000000803f0000303f93b8a83eee911b3900000000f415cd3ed7127c3f4ed9033e6fed7f3f34e8c23c748540ba0082723b93b5ffbdb4fe7d3f000080bf0000000000000000000000000000803f0000203f93b8a83eee911b39000000007fde853e717a833fb4e94abeb2d4343ffa7cea3d43d232bf712c353f73cac2bdef37333f000080bf00000000000000000000000059f87f3f0000103f93b8a83eee911b39000000007a928bbd8c19863ff476abbecda6953a53a6213e39ca7cbfc9fc7f3ff21222bc73f1deb9000080bf000000000000000000000000a7d27f3f0000003f93b8a83eee911b390000000089e7cbbe4c50843f29a04abe406e36bfbc94023ee49a30bfd263333fac50a83d176b35bf000080bf000000000000000000000000b9dd7f3f0000e03e93b8a83eee911b3900000000c41207bf6a677e3fdfe5043e77bd7fbffb40293d9501933cb94f4fbccbdeff3d38f97dbf000080bf000000000000000000000000a9fb7f3f0000c03e93b8a83eee911b390000000056aec7becbc6733fa0d3e53eb3f135bf8fea42bd62ad333f55e233bf80f8c33d247e34bf000080bf0000000000000000000000000000803f0000a03e93b8a83eee911b390000000088d18bbdd2636e3fe637173f33c080bc8451bbbd2ce57e3f5cf47fbf9a39413c6fd270bc000080bf0000000000000000000000000000803f0000803e93b8a83eee911b39000000004b7fa43c3732fb3fad7b2f3f102b0bbca03eebba88fd7f3f54587fbfd267913dc1ba08bc000080bf0000000000000000000000000000803f0000403f96f92e3fee919b3a00000000796ba93edaf4f83fab2e0f3f09e3343f37c12bbd59d5343f24c034bf41acc93c9a2d353f000080bf0000000000000000000000000000803f0000303f96f92e3fee919b3a000000001a11ea3ed63ef93f5f4d7d3ef8d07f3f8b9717bdf43e04bc8059dc3b1a0315bd22d37f3f000080bf0000000000000000000000000000803f0000203f96f92e3fee919b3a000000002f49a73eb6d7fb3fbc0976bd50e2343f424f113ced2335bfdfc0343fe14d9abd8241343f000080bf000000000000000000000000f2ff7f3f0000103f96f92e3fee919b3a000000003c269e3cdd39ff3f1fd441be21a9e33b5a108d3dc5627fbf825b7f3f47f390bdad03073b000080bf00000000000000000000000077f77f3f0000003f96f92e3fee919b3a00000000112395be4fba004025447bbdcd9b34bf7c9cde3d544833bff3d0333fcd7bc6bce31b36bf000080bf000000000000000000000000cbcd7f3f0000e03e96f92e3fee919b3a000000002861d4be45920040fa2e803ef6977ebf08dbd33d2933833c88fc48bca09c163dbfce7fbf000080bf0000000000000000000000003bd57f3f0000c03e96f92e3fee919b3a00000000a74491be708efe3fa8dd0d3feaf833bfc9216d3dc374353fb57434bfb1389a3d098e34bf000080bf0000000000000000000000001dfd7f3f0000a03e96f92e3fee919b3a00000000747fa43c3732fb3fad7b2f3f102b0bbca03eebba88fd7f3f54587fbfd267913dc1ba08bc000080bf0000000000000000000000000000803f0000803e96f92e3fee919b3a00000000d8fa963d233d3e40d8fd183fdb980d3b55dcd03c8bea7f3ff9e87fbfe2ccd83c2bb8c23a000080bf0000000000000000000000000000803f0000403f256c883f2243833b000000007c9dd63ea7c03d402280cc3e033f5e3f7201d53bf115fe3eb41afebed608d03bba3d5e3f000080bf0000000000000000000000000000803faaaa2a3f256c883f2243833b000000007a1bd43ec3f53d402188fc3ac8335d3f7e766c3c41cf00bf73dc003ff19da4bcad245d3f000080bf0000000000000000000000000000803f5655153f256c883f2243833b000000006450923d17a43e40c1114abef2f2303b6277283d4fc87fbfece87f3f22ffd8bc2427d33a000080bf00000000000000000000000055fd7f3f0000003f256c883f2243833b00000000093c8dbe60213f40d384553ae0af5dbfb095763d1231febe497afe3ef7c3d0bb5d225ebf000080bf000000000000000000000000d8da7f3f5655d53e256c883f2243833b00000000bbbb8abe00ec3e409006cd3e75755cbf48ee553d0f71013f145c01bf04f7a43c0cda5cbf000080bf0000000000000000000000008bf07f3fabaaaa3e256c883f2243833b00000000e1fa963d223d3e40d8fd183fdb980d3b55dcd03c8bea7f3ff9e87fbfe2ccd83c2bb8c23a000080bf0000000000000000000000000000803f0000803e256c883f2243833b000000005b81963d07037e4006331d3f8440663c82c7a63cf2eb7f3fc7e37fbf45add0bc0ab96e3c000080bf0000000000000000000000000000803f0000403fdc9dbd3fee911b3c0000000072cebf3e56a67e401a3ae03e781a5d3f32a4463df96e003f5d4900bf9d74c6bc32735d3f000080bf0000000000000000000000000000803faaaa2a3fdc9dbd3fee911b3c000000007520c23e21f57e4056fbb03da7eb5e3f1d807d3d2fbbf9bef430fa3e9b1d393aa75a5f3f000080bf000000000000000000000000a0ff7f3f5655153fdc9dbd3fee911b3c00000000e687923d299f7e408452d3bdc62a2c3c1c58403d15b47fbfd5e67f3f76d0cd3c14a73f3c000080bf000000000000000000000000dff87f3f0000003fdc9dbd3fee911b3c00000000443380bee4f17d40ede4a13d887f5ebf253f933c740efdbe7637fd3e4c82c53c206a5ebf000080bf00000000000000000000000042e07f3f5655d53edc9dbd3fee911b3c00000000ce6577be0ba57d4075d3e43ef9fe5abfce6a9d3b5992043f249304bffa34dbba43ff5abf000080bf0000000000000000000000000000803fabaaaa3edc9dbd3fee911b3c000000006381963d07037e4006331d3f8440663c82c7a63cf2eb7f3fc7e37fbf45add0bc0ab96e3c000080bf0000000000000000000000000000803f0000803edc9dbd3fee911b3c000000003bc4b73ccdac9f404eb10e3ff863a23c06a5b93d44e57e3f4a717ebf455ad9bdae40f13c000080bf0000000000000000000000000000803f0000403fd9e1f73f83ec973c00000000dc91973e8f51a040a2adc43e8fb15c3fd2611d3e343ef73e1ae1f9be2d569dbb25705f3f000080bf000000000000000000000000eaff7f3faaaa2a3fd9e1f73f83ec973c000000004f43983ef6c29f402c7e863d2e1d5d3f18dccc3de9e4fcbe6161f83e80c4cd3d56605e3f000080bf0000000000000000000000002ffe7f3f5655153fd9e1f73f83ec973c00000000eb60b23c3d809e408f0bdbbdf017943cadf09fbccce87fbfe3737e3f9779de3dbfde813c000080bf000000000000000000000000bffe7f3f0000003fd9e1f73f83ec973c0000000055658dbe74c19d40fe83673d82595cbfb0dfb2bdf56100bf19bd003fb75ee13b72445dbf000080bf000000000000000000000000e3d37f3f5655d53ed9e1f73f83ec973c00000000a52c8cbe205f9e409952cd3e005e5bbfd74dfdbc82b9033f8f6602bf628cd1bd7fbc5abf000080bf0000000000000000000000000000803fabaaaa3ed9e1f73f83ec973c000000005ac4b73ccdac9f404eb10e3ff863a23c06a5b93d44e57e3f4a717ebf455ad9bdae40f13c000080bf0000000000000000000000000000803f0000803ed9e1f73f83ec973c00000000a200d4beac1cfe40c07c953e7d12363bf17e853d5f747f3f72a77fbfc75c53bdc78fc93b000080bf0000000000000000000000000000803f0000403f1cee6740ee919b3d00000000323e40be5740fe401c0e713dcb117f3ff9d4ad3d8f05ecbb1cb9933b89a5023dfddd7f3f000080bf00000000000000000000000028fd7f3f0000203f1cee6740ee919b3d000000004e0fd5befba4fd404ad929be133fccbb3403bb3aa9fe7fbf72a77f3fc75c533dc78fc9bb000080bf0000000000000000000000007bf57f3f0000003f1cee6740ee919b3d00000000b9c424bf5d7ffd40908e7c3d37f47fbfeda795bc97e1a63b34ba93bb89a502bdfddd7fbf000080bf0000000000000000000000000000803f0000c03e1cee6740ee919b3d00000000a000d4beac1cfe40c07c953e7d12363bf17e853d5f747f3f72a77fbfc75c53bdc78fc93b000080bf0000000000000000000000000000803f0000803e1cee6740ee919b3d000000007b1ad1be7e230f41a5a9803ebe9b1e3b1835c53d44cf7e3f29f97fbf5a6764bc5cb7773b000080bf0000000000000000000000000000803f0000403fab828b404a81dd3d00000000091055be4afb0e41371c503dc4b57f3fd168413d72a4c0bb1fa63d3b791b813d5f7d7f3f000080bf000000000000000000000000f0f87f3f0000203fab828b404a81dd3d0000000072b2d1be0abc0e41ca1e18bea9795cbb5e74f3bcafe27fbf29f97f3f5a67643c5cb777bb000080bf00000000000000000000000056ea7f3f0000003fab828b404a81dd3d00000000d15b19bff6e40e410b2a563da2f37fbf628e9e3cffbedb3a5ea73dbb791b81bd5f7d7fbf000080bf0000000000000000000000000000803f0000c03eab828b404a81dd3d000000007a1ad1be7e230f41a5a9803ebe9b1e3b1835c53d44cf7e3f29f97fbf5a6764bc5cb7773b000080bf0000000000000000000000000000803f0000803eab828b404a81dd3d00000000e5e5e2be2c4b1f4152b4ca3d54b0193ad1e5573ed03e7a3fc2f37fbfdbae99bc4f3d983b000080bf0000000000000000000000000000803f0000403f6058a74083ec173e0000000054358dbe15de1e41bbc987bd25a57f3f4e34533d81612dbc513ba13a0266363ee8e77b3f000080bf0000000000000000000000006cf97f3f0000203f6058a74083ec173e00000000d71be3be10571e41f4c76bbe9a7cf5ba74b214be3e497dbfc2f37f3fdbae993c4f3d98bb000080bf00000000000000000000000031817f3f0000003f6058a74083ec173e00000000ff871cbf49c41e41fc9784bd77f97fbfa464663c1ecca9ba4e3ea1ba026636bee8e77bbf000080bf0000000000000000000000000000803f0000c03e6058a74083ec173e00000000e4e5e2be2c4b1f4151b4ca3d54b0193ad1e5573ed03e7a3fc2f37fbfdbae99bc4f3d983b000080bf0000000000000000000000000000803f0000803e6058a74083ec173e00000000a61fe5be4fe42e4101bb30beb50ff03ad4048f3e2acf753f1c8e7fbfe0be693d6fcd70bc000080bf0000000000000000000000000000803f0000403f6861c940ee354a3e00000000adea9fbe7f3b2e41a08d9abe86ea7f3f63eecabc4d9fd33b839a0cb9a7237d3ef40d783f000080bf0000000000000000000000007fb07f3f0000203f6861c940ee354a3e00000000e81ae5be1ad32d418f39debe4599093b66f65bbe03067abf1c8e7f3fe0be69bd6fcd703c000080bf00000000000000000000000009517f3f0000003f6861c940ee354a3e00000000bab914bf657a2e4101949cbee5e87ebf22e2b63db5c2bbbcdd7c0c39a7237dbef40d78bf000080bf00000000000000000000000097ff7f3f0000c03e6861c940ee354a3e00000000a51fe5be4fe42e4101bb30beb50ff03ad4048f3e2acf753f1c8e7fbfe0be693d6fcd70bc000080bf0000000000000000000000000000803f0000803e6861c940ee354a3e000000002faba6bec2283e41fb4fedbe8239703b03d4a23e16b5723fecc47fbf0102293dab7a23bc000080bf000000000000000000000000f9ff7f3f0000403fa52bf5402243833e000000001a8167be36a43d41fe9b0ebf33fd7f3f766317bc3428d839336b133b2e87923eb24a753f000080bf000000000000000000000000a6e27f3f0000203fa52bf5402243833e0000000088e5a6bec7403d41ea3227bf58175aba721082be219a77bfecc47f3f010229bdab7a233c000080bf000000000000000000000000ee5b7f3f0000003fa52bf5402243833e000000000750d9bec4c53d41d21d0fbf7f437fbfb7fa953ded01a0bc326b13bb2c8792beb24a75bf000080bf0000000000000000000000007bfb7f3f0000c03ea52bf5402243833e000000002faba6bec2283e41fa4fedbe8239703b03d4a23e16b5723fecc47fbf0102293dab7a23bc000080bf000000000000000000000000f9ff7f3f0000803ea52bf5402243833e000000003fcdb9be362d4d41fe264fbfbf8d5e3949be9e3e7f62733fa7ab7fbf013e45bd4979823c000080bf000000000000000000000000acff7f3f0000403fc64619416ce3a63e00000000889096be28ee4c41bcf95fbfb2187f3f2a01a43da034cebc9448f93af8768e3ec0e3753f000080bf000000000000000000000000f2ff7f3f0000203fc64619416ce3a63e0000000001efb9bedf924c41567370bf5f306bbbab0b7cbe551f78bfa7ab7f3f013e453d497982bc000080bf000000000000000000000000d09d7f3f0000003fc64619416ce3a63e00000000ca41dcbe46d34c41796b5fbff9f57fbf4f7d84bc6969da3bf74ff9baf8768ebec0e375bf000080bf0000000000000000000000001df37f3f0000c03ec64619416ce3a63e000000003ecdb9be362d4d41fe264fbfbf8d5e3949be9e3e7f62733fa7ab7fbf013e45bd4979823c000080bf000000000000000000000000acff7f3f0000803ec64619416ce3a63e000000005b8cdabe3c7e5c41174f8abfc53aac3b857f7d3e2707783f09ff7fbf5223273b6a669c3b000080bf0000000000000000000000000efc7f3f0000403fef934c418570d03e00000000cbc8c9be79605c418e818ebf76dd7f3ff62cf73c942f44bc01c4aa3bd2185c3e5c037a3f000080bf000000000000000000000000a9fa7f3f0000203fef934c418570d03e00000000f7b9dabe73435c41e7a792bf6afea8bb61773abe67b77bbf09ff7f3f522327bb6a669cbb000080bf000000000000000000000000d2e27f3f0000003fef934c418570d03e00000000100eecbe2c615c4116778ebffdd67fbf188a103d70811fbb01c4aabbd2185cbe5c037abf000080bf0000000000000000000000000000803f0000c03eef934c418570d03e000000005b8cdabe3c7e5c41174f8abfc53aac3b857f7d3e2707783f09ff7fbf5223273b6a669c3b000080bf0000000000000000000000000efc7f3f0000803eef934c418570d03e00000000f2bab8bea0e16b41f179a6bf537b0d3c6306763edd7d783f126c7fbf6ea2883d3942fabb000080bf0000000000000000000000004efe7f3f0000403fedaeb2417fd0ff3e00000000f2bab8bea0e16b41f179a6bfc9f77f3f5d7080bcc90112bb1517a93b221e423ec95a7b3f000080bf00000000000000000000000050e67f3f0000203fedaeb2417fd0ff3e00000000f2bab8bea0e16b41f179a6bf580cdbba60af0dbe8b897dbf126c7f3f70a288bd8141fa3b000080bf00000000000000000000000026f97f3f0000003fedaeb2417fd0ff3e00000000f2bab8bea0e16b41f179a6bf602f7ebf1ccaf03db0358fbcd115a9bb231e42bec95a7bbf000080bf0000000000000000000000000000803f0000c03eedaeb2417fd0ff3e00000000f2bab8bea0e16b41f179a6bf0e7c0d3c6206763edd7d783f126c7fbf6fa2883dc441fabb000080bf0000000000000000000000004efe7f3f0000803eedaeb2417fd0ff3e00000000
+  m_CompressedMesh:
+    m_Vertices:
+      m_NumItems: 0
+      m_Range: 0
+      m_Start: 0
+      m_Data: 
+      m_BitSize: 0
+    m_UV:
+      m_NumItems: 0
+      m_Range: 0
+      m_Start: 0
+      m_Data: 
+      m_BitSize: 0
+    m_Normals:
+      m_NumItems: 0
+      m_Range: 0
+      m_Start: 0
+      m_Data: 
+      m_BitSize: 0
+    m_Tangents:
+      m_NumItems: 0
+      m_Range: 0
+      m_Start: 0
+      m_Data: 
+      m_BitSize: 0
+    m_Weights:
+      m_NumItems: 0
+      m_Data: 
+      m_BitSize: 0
+    m_NormalSigns:
+      m_NumItems: 0
+      m_Data: 
+      m_BitSize: 0
+    m_TangentSigns:
+      m_NumItems: 0
+      m_Data: 
+      m_BitSize: 0
+    m_FloatColors:
+      m_NumItems: 0
+      m_Range: 0
+      m_Start: 0
+      m_Data: 
+      m_BitSize: 0
+    m_BoneIndices:
+      m_NumItems: 0
+      m_Data: 
+      m_BitSize: 0
+    m_Triangles:
+      m_NumItems: 0
+      m_Data: 
+      m_BitSize: 0
+    m_UVInfo: 0
+  m_LocalAABB:
+    m_Center: {x: -0.07036564, y: 7.371292, z: -0.30755773}
+    m_Extent: {x: 0.57326114, y: 7.371292, z: 0.99303865}
+  m_MeshUsageFlags: 0
+  m_BakedConvexCollisionMesh: 
+  m_BakedTriangleCollisionMesh: 
+  m_MeshMetrics[0]: 1
+  m_MeshMetrics[1]: 1
+  m_MeshOptimized: 0
+  m_StreamData:
+    offset: 0
+    size: 0
+    path: 
+--- !u!114 &114412932522947144
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 0}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 12106, guid: 0000000000000000e000000000000000, type: 0}
+  m_Name: Tree Data
+  m_EditorClassIdentifier: 
+  _uniqueID: 5
+  materialHash: 31d6cfe0d16ae931b73c59d7e0c089c0-583008256
+  root:
+    _uniqueID: 1
+    seed: 1234
+    _internalSeed: 2727
+    m_Hash: 
+    distributionFrequency: 1
+    distributionMode: 0
+    distributionCurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      - serializedVersion: 3
+        time: 1
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+    distributionNodes: 5
+    distributionTwirl: 0
+    distributionPitch: 0
+    distributionPitchCurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      - serializedVersion: 3
+        time: 1
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+    distributionScale: 1
+    distributionScaleCurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      - serializedVersion: 3
+        time: 1
+        value: 0.3
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+    showAnimationProps: 1
+    animationPrimary: 0.5
+    animationSecondary: 0.5
+    animationEdge: 1
+    visible: 1
+    lockFlags: 0
+    nodeIDs: 02000000
+    parentGroupID: -1
+    childGroupIDs: 03000000
+    adaptiveLODQuality: 0.8
+    shadowTextureQuality: 3
+    enableWelding: 1
+    enableAmbientOcclusion: 1
+    enableMaterialOptimize: 1
+    aoDensity: 1
+    rootSpread: 5
+    groundOffset: 0
+    rootMatrix:
+      e00: 1
+      e01: 0
+      e02: 0
+      e03: 0
+      e10: 0
+      e11: 1
+      e12: 0
+      e13: 0
+      e20: 0
+      e21: 0
+      e22: 1
+      e23: 0
+      e30: 0
+      e31: 0
+      e32: 0
+      e33: 1
+  branchGroups:
+  - _uniqueID: 3
+    seed: 1234
+    _internalSeed: 2727
+    m_Hash: 
+    distributionFrequency: 1
+    distributionMode: 0
+    distributionCurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      - serializedVersion: 3
+        time: 1
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+    distributionNodes: 5
+    distributionTwirl: 0
+    distributionPitch: 0
+    distributionPitchCurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      - serializedVersion: 3
+        time: 1
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+    distributionScale: 1
+    distributionScaleCurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      - serializedVersion: 3
+        time: 1
+        value: 0.3
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+    showAnimationProps: 1
+    animationPrimary: 0.5
+    animationSecondary: 0
+    animationEdge: 1
+    visible: 1
+    lockFlags: 0
+    nodeIDs: 04000000
+    parentGroupID: 1
+    childGroupIDs: 
+    lodQualityMultiplier: 1
+    geometryMode: 0
+    materialBranch: {fileID: 0}
+    materialBreak: {fileID: 0}
+    materialFrond: {fileID: 0}
+    height: {x: 10, y: 15}
+    radius: 0.5
+    radiusCurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0
+        value: 1
+        inSlope: -1
+        outSlope: -1
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      - serializedVersion: 3
+        time: 1
+        value: 0
+        inSlope: -1
+        outSlope: -1
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+    radiusMode: 1
+    capSmoothing: 0
+    crinklyness: 0.1
+    crinkCurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      - serializedVersion: 3
+        time: 1
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+    seekBlend: 0
+    seekCurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      - serializedVersion: 3
+        time: 1
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+    noise: 0.1
+    noiseCurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      - serializedVersion: 3
+        time: 1
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+    noiseScaleU: 0.2
+    noiseScaleV: 0.1
+    flareSize: 0
+    flareHeight: 0.1
+    flareNoise: 0.3
+    weldHeight: 0.1
+    weldSpreadTop: 0
+    weldSpreadBottom: 0
+    breakingChance: 0
+    breakingSpot: {x: 0.4, y: 0.6}
+    frondCount: 1
+    frondWidth: 1
+    frondCurve:
+      serializedVersion: 2
+      m_Curve:
+      - serializedVersion: 3
+        time: 0
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      - serializedVersion: 3
+        time: 1
+        value: 1
+        inSlope: 0
+        outSlope: 0
+        tangentMode: 0
+        weightedMode: 0
+        inWeight: 0
+        outWeight: 0
+      m_PreInfinity: 2
+      m_PostInfinity: 2
+      m_RotationOrder: 4
+    frondRange: {x: 0.1, y: 1}
+    frondRotation: 0
+    frondCrease: 0
+  leafGroups: []
+  nodes:
+  - spline:
+      nodes: []
+      tension: 0.5
+    seed: 3961
+    animSeed: 0
+    visible: 1
+    triStart: 0
+    triEnd: 0
+    vertStart: 0
+    vertEnd: 0
+    capRange: 0
+    breakOffset: 1
+    size: 5
+    scale: 1
+    offset: 0
+    baseAngle: 0
+    angle: 0
+    pitch: -0
+    rotation: {x: 0, y: 0, z: 0, w: 1}
+    matrix:
+      e00: 1
+      e01: 0
+      e02: 0
+      e03: 0
+      e10: 0
+      e11: 1
+      e12: 0
+      e13: 0
+      e20: 0
+      e21: 0
+      e22: 1
+      e23: 0
+      e30: 0
+      e31: 0
+      e32: 0
+      e33: 1
+    parentID: 0
+    groupID: 1
+    _uniqueID: 2
+  - spline:
+      nodes:
+      - point: {x: 0, y: 0, z: 0}
+        rot: {x: 0, y: 0, z: 0, w: 1}
+        normal: {x: 0, y: 0, z: 1}
+        tangent: {x: 0, y: 1, z: 0}
+        time: 0
+      - point: {x: -0.06821081, y: 0.98925984, z: 0.12927605}
+        rot: {x: 0.062532656, y: 0.00024414062, z: -0.004928376, w: 0.9980307}
+        normal: {x: 0, y: -0.1248219, z: 0.9921792}
+        tangent: {x: 0.009876995, y: 0.99213076, z: 0.12481581}
+        time: 0.066715024
+      - point: {x: 0.019693486, y: 1.978184, z: 0.24886703}
+        rot: {x: 0.017959693, y: 0.0010780959, z: -0.0353372, w: 0.9992136}
+        normal: {x: 0.0008796333, y: -0.03596793, z: 0.9993526}
+        tangent: {x: 0.070657566, y: 0.99685746, z: 0.035815936}
+        time: 0.13343005
+      - point: {x: 0.07258296, y: 2.9756193, z: 0.20064364}
+        rot: {x: 0.003932862, y: 0.0014850495, z: -0.013233232, w: 0.9999036}
+        normal: {x: 0.0028675725, y: -0.007902348, z: 0.99996465}
+        tangent: {x: 0.026475683, y: 0.9996188, z: 0.007823692}
+        time: 0.20014508
+      - point: {x: 0.072543085, y: 3.9735794, z: 0.26448435}
+        rot: {x: 0.0066592684, y: 0.0012685918, z: 0.012649453, w: 0.999897}
+        normal: {x: 0.0027249986, y: -0.013283712, z: 0.9999081}
+        tangent: {x: -0.025278963, y: 0.9995913, z: 0.013348394}
+        time: 0.2668601
+      - point: {x: 0.022105657, y: 4.971614, z: 0.22729787}
+        rot: {x: -0.027515147, y: 0.001979648, z: 0.053853765, w: 0.9981677}
+        normal: {x: 0.0009889281, y: 0.055143304, z: 0.998478}
+        tangent: {x: -0.10761923, y: 0.9926854, z: -0.054716803}
+        time: 0.33357513
+      - point: {x: -0.14230731, y: 5.9553704, z: 0.15524805}
+        rot: {x: -0.02848871, y: 0.002735029, z: 0.08218043, w: 0.99620646}
+        normal: {x: 0.0007647876, y: 0.057210647, z: 0.9983618}
+        tangent: {x: -0.16389336, y: 0.98486954, z: -0.056311928}
+        time: 0.40029016
+      - point: {x: -0.30564016, y: 6.9411073, z: 0.11468807}
+        rot: {x: -0.024010954, y: 0.0027729045, z: 0.06834106, w: 0.99736917}
+        normal: {x: 0.0022513506, y: 0.048275046, z: 0.99883157}
+        tangent: {x: -0.13645616, y: 0.98950595, z: -0.047516756}
+        time: 0.46700516
+      - point: {x: -0.41511247, y: 7.933605, z: 0.060251866}
+        rot: {x: -0.015886502, y: 0.002666056, z: 0.025855577, w: 0.9995359}
+        normal: {x: 0.0045086714, y: 0.031897344, z: 0.999481}
+        tangent: {x: -0.05177256, y: 0.9981582, z: -0.031621583}
+        time: 0.5337202
+      - point: {x: -0.40898427, y: 8.933549, z: 0.05156767}
+        rot: {x: -0.03152512, y: 0.0016692866, z: 0.0070262053, w: 0.99947697}
+        normal: {x: 0.0028903158, y: 0.0630408, z: 0.99800676}
+        tangent: {x: -0.014150493, y: 0.9979136, z: -0.062993936}
+        time: 0.60043526
+      - point: {x: -0.44336584, y: 9.926075, z: -0.06552407}
+        rot: {x: -0.08941015, y: 0.0014749812, z: 0.009551173, w: 0.995948}
+        normal: {x: 0.0012329905, y: 0.17812407, z: 0.9840073}
+        tangent: {x: -0.0192911, y: 0.9838292, z: -0.17806765}
+        time: 0.66715026
+      - point: {x: -0.4474889, y: 10.897251, z: -0.3038516}
+        rot: {x: -0.12451831, y: -0.0037386217, z: -0.029239347, w: 0.99177945}
+        normal: {x: -0.00013343591, y: 0.247208, z: 0.96896243}
+        tangent: {x: 0.05892924, y: 0.9672805, z: -0.24677078}
+        time: 0.73386526
+      - point: {x: -0.32574677, y: 11.856707, z: -0.55806315}
+        rot: {x: -0.14460535, y: -0.001953125, z: -0.02113897, w: 0.9892617}
+        normal: {x: 0.0022537734, y: 0.28618762, z: 0.95817095}
+        tangent: {x: 0.04238849, y: 0.95728487, z: -0.2860227}
+        time: 0.8005803
+      - point: {x: -0.36302197, y: 12.804819, z: -0.8738048}
+        rot: {x: -0.14044851, y: 0.0045033856, z: 0.024964796, w: 0.98976296}
+        normal: {x: 0.0019024905, y: 0.2782463, z: 0.96050787}
+        tangent: {x: -0.05068393, y: 0.95930195, z: -0.2777966}
+        time: 0.8672953
+      - point: {x: -0.4270262, y: 13.773637, z: -1.1131716}
+        rot: {x: -0.108110145, y: 0.0025106159, z: -0.0010139922, w: 0.9941353}
+        normal: {x: 0.005211346, y: 0.21494707, z: 0.9766118}
+        tangent: {x: 0.0014779901, y: 0.97662234, z: -0.21495728}
+        time: 0.9340103
+      - point: {x: -0.36080128, y: 14.742584, z: -1.3005964}
+        rot: {x: -0.095250204, y: -0.0006224389, z: -0.033589084, w: 0.99488634}
+        normal: {x: 0.0051712976, y: 0.18956788, z: 0.981854}
+        tangent: {x: 0.0669529, y: 0.97959834, z: -0.189485}
+        time: 1
+      tension: 0.5
+    seed: 3961
+    animSeed: 0
+    visible: 1
+    triStart: 0
+    triEnd: 140
+    vertStart: 0
+    vertEnd: 88
+    capRange: 0
+    breakOffset: 1
+    size: 0.49963757
+    scale: 0.99927515
+    offset: 0
+    baseAngle: 0
+    angle: 0
+    pitch: -0
+    rotation: {x: 0, y: 0, z: 0, w: 1}
+    matrix:
+      e00: 1
+      e01: 0
+      e02: 0
+      e03: 0
+      e10: 0
+      e11: 1
+      e12: 0
+      e13: -0
+      e20: 0
+      e21: 0
+      e22: 1
+      e23: 0
+      e30: 0
+      e31: 0
+      e32: 0
+      e33: 1
+    parentID: 2
+    groupID: 3
+    _uniqueID: 4
+  mesh: {fileID: 43274217643936046}
+  optimizedSolidMaterial: {fileID: 21642922241295098}
+  optimizedCutoutMaterial: {fileID: 21027443205240300}
+  isInPreviewMode: 0
diff --git a/T3-Unity/Assets/Tree.prefab.meta b/T3-Unity/Assets/Tree.prefab.meta
new file mode 100644
index 0000000..e523b6d
--- /dev/null
+++ b/T3-Unity/Assets/Tree.prefab.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: c94783d4ff0c15e41a7b69c0cffc93ab
+PrefabImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/T3-Unity/Assets/Tree_Textures.meta b/T3-Unity/Assets/Tree_Textures.meta
new file mode 100644
index 0000000..d896515
--- /dev/null
+++ b/T3-Unity/Assets/Tree_Textures.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 73ffeedf81428724b941d1990962987a
+folderAsset: yes
+DefaultImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/T3-Unity/Assets/Tree_Textures/diffuse.png b/T3-Unity/Assets/Tree_Textures/diffuse.png
new file mode 100644
index 0000000000000000000000000000000000000000..117626112efe405a9873eb6c05ef4d81bf446e84
GIT binary patch
literal 1755
zcmeAS@N?(olHy`uVBq!ia0vp^4h#$|3><7gR$yKHLIwu5MV>B>Ar*{ouQCcUDDW_E
zY^*<jAn|c?^H-@|=c<M4tZRPT$1+F>_%k$CFuF0DD9mGE`pEQyMbH7lieO|B=umHP
z*uxOUz{v85Q$aw#LDT`Ln2F;EcLJ-xsIt)j8BHOhd11700F|4gr6uY0!U5LPuH1iS
Uo(*0Gth5+BUHx3vIVCg!05}7wA^-pY

literal 0
HcmV?d00001

diff --git a/T3-Unity/Assets/Tree_Textures/diffuse.png.meta b/T3-Unity/Assets/Tree_Textures/diffuse.png.meta
new file mode 100644
index 0000000..8fbd355
--- /dev/null
+++ b/T3-Unity/Assets/Tree_Textures/diffuse.png.meta
@@ -0,0 +1,88 @@
+fileFormatVersion: 2
+guid: 7ba50cf7d4a80a74fa2c2f8b166713a9
+TextureImporter:
+  fileIDToRecycleName: {}
+  externalObjects: {}
+  serializedVersion: 9
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 1
+    sRGBTexture: 1
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: -1
+    aniso: -1
+    mipBias: -100
+    wrapU: -1
+    wrapV: -1
+    wrapW: -1
+  nPOTScale: 1
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 0
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 100
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 1
+  spriteTessellationDetail: -1
+  textureType: 0
+  textureShape: 1
+  singleChannelComponent: 0
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  platformSettings:
+  - serializedVersion: 2
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/T3-Unity/Assets/Tree_Textures/normal_specular.png b/T3-Unity/Assets/Tree_Textures/normal_specular.png
new file mode 100644
index 0000000000000000000000000000000000000000..349f841d75f55d673227add0a92318def286ce04
GIT binary patch
literal 1757
zcmeAS@N?(olHy`uVBq!ia0vp^4h#$|3><7gR$yKHLIwu5C7v#hAr*{ouO8$*pdfJM
zK(lyiu$545#U(~<|Gc@@<%jO`?f+|kmw~H8zrn$#A+Ukz5x0T>{{epiMivN5)PbS#
z2NTB;<^om$2ZenMOdlCy7+D0s>KVcrMwN{Q$Y=@y=AF^JFj_e99~dnyLG=h}dBG;Y
XpOeG*^O9x2YKy_s)z4*}Q$iB}057+2

literal 0
HcmV?d00001

diff --git a/T3-Unity/Assets/Tree_Textures/normal_specular.png.meta b/T3-Unity/Assets/Tree_Textures/normal_specular.png.meta
new file mode 100644
index 0000000..91d0258
--- /dev/null
+++ b/T3-Unity/Assets/Tree_Textures/normal_specular.png.meta
@@ -0,0 +1,88 @@
+fileFormatVersion: 2
+guid: e8d812ef0f8e97541988acced374f732
+TextureImporter:
+  fileIDToRecycleName: {}
+  externalObjects: {}
+  serializedVersion: 9
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 1
+    sRGBTexture: 0
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: -1
+    aniso: -1
+    mipBias: -100
+    wrapU: -1
+    wrapV: -1
+    wrapW: -1
+  nPOTScale: 1
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 0
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 100
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 0
+  spriteTessellationDetail: -1
+  textureType: 0
+  textureShape: 1
+  singleChannelComponent: 0
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  platformSettings:
+  - serializedVersion: 2
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/T3-Unity/Assets/Tree_Textures/shadow.png b/T3-Unity/Assets/Tree_Textures/shadow.png
new file mode 100644
index 0000000000000000000000000000000000000000..b34d31f01ab3f68a666e44917564b973f247baa7
GIT binary patch
literal 2330
zcmeAS@N?(olHy`uVBq!ia0vp^4h#$|3>-{A);*aM-xwG;9(uYshEy=Vy>yWGfP%o0
z0~7vL@9U6yCO9|cUtHtanKRQrSDMHFySJD9PwWOJQ3vK)MUfK~tPzTQAq=cWag1Rd
z%%TpBJ>d<aj~rM76dsEvv|0o(jw%@qm(j#9nn^}WhSB11w3-;L8wajI@S3|uFP`hK
UdtggDu+78Z>FVdQ&MBb@0IEKno&W#<

literal 0
HcmV?d00001

diff --git a/T3-Unity/Assets/Tree_Textures/shadow.png.meta b/T3-Unity/Assets/Tree_Textures/shadow.png.meta
new file mode 100644
index 0000000..d6102af
--- /dev/null
+++ b/T3-Unity/Assets/Tree_Textures/shadow.png.meta
@@ -0,0 +1,88 @@
+fileFormatVersion: 2
+guid: bc43e6a5ad5a6da47abd1f1161507813
+TextureImporter:
+  fileIDToRecycleName: {}
+  externalObjects: {}
+  serializedVersion: 9
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 1
+    sRGBTexture: 0
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: -1
+    aniso: -1
+    mipBias: -100
+    wrapU: -1
+    wrapV: -1
+    wrapW: -1
+  nPOTScale: 1
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 0
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 100
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 0
+  spriteTessellationDetail: -1
+  textureType: 0
+  textureShape: 1
+  singleChannelComponent: 0
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  platformSettings:
+  - serializedVersion: 2
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 8
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/T3-Unity/Assets/Tree_Textures/translucency_gloss.png b/T3-Unity/Assets/Tree_Textures/translucency_gloss.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b1fbc30015c44b290b3ff968d963074e8927465
GIT binary patch
literal 1754
zcmeAS@N?(olHy`uVBq!ia0vp^4h#$|3><7gR$yKHLIwu5g`O^sAr*{ouQCcUDDW_E
zY^*>3_`=772dj8(jjf-SpFaNoHtPb$k1PTm;s?|_7?>a|E`<gM8%CB#tQ(j(6a@Sk
z8Y>vrFfef(5q40BW6*9GRW=$RqbX!GFN_ur;Bs@cv?RA)2vGmPpk>GL|N1TI`@lMj
N!PC{xWt~$(698GuxfuWe

literal 0
HcmV?d00001

diff --git a/T3-Unity/Assets/Tree_Textures/translucency_gloss.png.meta b/T3-Unity/Assets/Tree_Textures/translucency_gloss.png.meta
new file mode 100644
index 0000000..10c2bdc
--- /dev/null
+++ b/T3-Unity/Assets/Tree_Textures/translucency_gloss.png.meta
@@ -0,0 +1,88 @@
+fileFormatVersion: 2
+guid: 3082ee7b5bac87345a3f82d7389a51bb
+TextureImporter:
+  fileIDToRecycleName: {}
+  externalObjects: {}
+  serializedVersion: 9
+  mipmaps:
+    mipMapMode: 0
+    enableMipMap: 1
+    sRGBTexture: 0
+    linearTexture: 0
+    fadeOut: 0
+    borderMipMap: 0
+    mipMapsPreserveCoverage: 0
+    alphaTestReferenceValue: 0.5
+    mipMapFadeDistanceStart: 1
+    mipMapFadeDistanceEnd: 3
+  bumpmap:
+    convertToNormalMap: 0
+    externalNormalMap: 0
+    heightScale: 0.25
+    normalMapFilter: 0
+  isReadable: 0
+  streamingMipmaps: 0
+  streamingMipmapsPriority: 0
+  grayScaleToAlpha: 0
+  generateCubemap: 6
+  cubemapConvolution: 0
+  seamlessCubemap: 0
+  textureFormat: 1
+  maxTextureSize: 2048
+  textureSettings:
+    serializedVersion: 2
+    filterMode: -1
+    aniso: -1
+    mipBias: -100
+    wrapU: -1
+    wrapV: -1
+    wrapW: -1
+  nPOTScale: 1
+  lightmap: 0
+  compressionQuality: 50
+  spriteMode: 0
+  spriteExtrude: 1
+  spriteMeshType: 1
+  alignment: 0
+  spritePivot: {x: 0.5, y: 0.5}
+  spritePixelsToUnits: 100
+  spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+  spriteGenerateFallbackPhysicsShape: 1
+  alphaUsage: 1
+  alphaIsTransparency: 0
+  spriteTessellationDetail: -1
+  textureType: 0
+  textureShape: 1
+  singleChannelComponent: 0
+  maxTextureSizeSet: 0
+  compressionQualitySet: 0
+  textureFormatSet: 0
+  platformSettings:
+  - serializedVersion: 2
+    buildTarget: DefaultTexturePlatform
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+  spriteSheet:
+    serializedVersion: 2
+    sprites: []
+    outline: []
+    physicsShape: []
+    bones: []
+    spriteID: 
+    vertices: []
+    indices: 
+    edges: []
+    weights: []
+  spritePackingTag: 
+  pSDRemoveMatte: 0
+  pSDShowRemoveMatteOption: 0
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/T3-Unity/ProjectSettings/GraphicsSettings.asset b/T3-Unity/ProjectSettings/GraphicsSettings.asset
index 7997460..283d5a6 100644
--- a/T3-Unity/ProjectSettings/GraphicsSettings.asset
+++ b/T3-Unity/ProjectSettings/GraphicsSettings.asset
@@ -38,6 +38,7 @@ GraphicsSettings:
   - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0}
   - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0}
   - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0}
+  - {fileID: 16002, guid: 0000000000000000f000000000000000, type: 0}
   m_PreloadedShaders: []
   m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000,
     type: 0}
diff --git a/T3-Unity/ProjectSettings/InputManager.asset b/T3-Unity/ProjectSettings/InputManager.asset
index 17c8f53..810a5c4 100644
--- a/T3-Unity/ProjectSettings/InputManager.asset
+++ b/T3-Unity/ProjectSettings/InputManager.asset
@@ -11,7 +11,7 @@ InputManager:
     descriptiveNegativeName: 
     negativeButton: left
     positiveButton: right
-    altNegativeButton: a
+    altNegativeButton: q
     altPositiveButton: d
     gravity: 3
     dead: 0.001
@@ -28,7 +28,7 @@ InputManager:
     negativeButton: down
     positiveButton: up
     altNegativeButton: s
-    altPositiveButton: w
+    altPositiveButton: z
     gravity: 3
     dead: 0.001
     sensitivity: 3
diff --git a/T3-Unity/ProjectSettings/ProjectSettings.asset b/T3-Unity/ProjectSettings/ProjectSettings.asset
index 7c86c7a..772b0c3 100644
--- a/T3-Unity/ProjectSettings/ProjectSettings.asset
+++ b/T3-Unity/ProjectSettings/ProjectSettings.asset
@@ -265,7 +265,99 @@ PlayerSettings:
   androidGamepadSupportLevel: 0
   resolutionDialogBanner: {fileID: 0}
   m_BuildTargetIcons: []
-  m_BuildTargetPlatformIcons: []
+  m_BuildTargetPlatformIcons:
+  - m_BuildTarget: Android
+    m_Icons:
+    - m_Textures: []
+      m_Width: 432
+      m_Height: 432
+      m_Kind: 2
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 324
+      m_Height: 324
+      m_Kind: 2
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 216
+      m_Height: 216
+      m_Kind: 2
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 162
+      m_Height: 162
+      m_Kind: 2
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 108
+      m_Height: 108
+      m_Kind: 2
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 81
+      m_Height: 81
+      m_Kind: 2
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 192
+      m_Height: 192
+      m_Kind: 0
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 144
+      m_Height: 144
+      m_Kind: 0
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 96
+      m_Height: 96
+      m_Kind: 0
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 72
+      m_Height: 72
+      m_Kind: 0
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 48
+      m_Height: 48
+      m_Kind: 0
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 36
+      m_Height: 36
+      m_Kind: 0
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 192
+      m_Height: 192
+      m_Kind: 1
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 144
+      m_Height: 144
+      m_Kind: 1
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 96
+      m_Height: 96
+      m_Kind: 1
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 72
+      m_Height: 72
+      m_Kind: 1
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 48
+      m_Height: 48
+      m_Kind: 1
+      m_SubKind: 
+    - m_Textures: []
+      m_Width: 36
+      m_Height: 36
+      m_Kind: 1
+      m_SubKind: 
   m_BuildTargetBatching:
   - m_BuildTarget: Standalone
     m_StaticBatching: 1
-- 
GitLab