diff --git a/Platformer/Assets/Scripts/Controller2D.cs b/Platformer/Assets/Scripts/Controller2D.cs deleted file mode 100644 index f299239..0000000 --- a/Platformer/Assets/Scripts/Controller2D.cs +++ /dev/null @@ -1,134 +0,0 @@ -using UnityEngine; -using System.Collections; - -[RequireComponent(typeof(BoxCollider2D))] //Require BoxCollider -public class Controller2D : MonoBehaviour -{ - public LayerMask collisionMask; //Objects we collide with - - const float skinWidth = .25f; //const so you cant change the value, and width - public int horizontalRayCount = 4; //Amount of rays shooting horizontally - public int verticalRayCount = 4;//Amount of rays shooting Vertically - - float horizontalRaySpacing; //Spacing between each horizontal ray - float verticalRaySpacing; //Spacing between each vertical ray - - BoxCollider2D collider; //Reference - RaycastOrigins raycastOrigins; //Reference to raycastorigins - public CollisionInfo collisions; //Reference to Collison Info - - void Start() - { - collider = GetComponent(); - CalculateRaySpacing(); //never changes - } - - public void Move(Vector3 velocity) //Actually Moving - { - UpdateRaycastOrigins(); //Everytime we move - collisions.Reset(); //Blank Slate - - if (velocity.x != 0)//Horizontal Axis - { - HorizontalCollisions(ref velocity); - } - if (velocity.y != 0) //Vertical Axis - { - VerticalCollisions(ref velocity); - } - - transform.Translate(velocity); //Actually modifies the velocity - } - - void HorizontalCollisions(ref Vector3 velocity) //reference to velocity vector (dont make a copy) - { - float directionX = Mathf.Sign(velocity.x); //depending on moving left or right - float rayLength = Mathf.Abs(velocity.x) + skinWidth; //length of the ray (always positve) - - for (int i = 0; i < horizontalRayCount; i++) - { - Vector2 rayOrigin = (directionX == -1) ? raycastOrigins.bottomLeft : raycastOrigins.bottomRight;// See if moving up or down, then choose corresponding - rayOrigin += Vector2.up * (horizontalRaySpacing * i);//cast rays from where we will be once moving - RaycastHit2D hit = Physics2D.Raycast(rayOrigin, Vector2.right * directionX, rayLength, collisionMask);//raycast from origin and have it go up, length of the ray, layer mask - - Debug.DrawRay(rayOrigin, Vector2.right * directionX * rayLength, Color.red);//multiply to maintain direction - - if (hit) - { - velocity.x = (hit.distance - skinWidth) * directionX; //Multiply to maintain direction - rayLength = hit.distance; //length of ray is now the distance to hit - - collisions.left = directionX == -1; //if hit and going left, collison left is true - collisions.right = directionX == 1; //if hit and going right, collision right is true - } - } - } - - void VerticalCollisions(ref Vector3 velocity) //reference to velocity vector (dont make a copy) - { - float directionY = Mathf.Sign(velocity.y); //depending on moving up or done - float rayLength = Mathf.Abs(velocity.y) + skinWidth; //length of the ray (always positve) - - for (int i = 0; i < verticalRayCount; i++) - { - Vector2 rayOrigin = (directionY == -1) ? raycastOrigins.bottomLeft : raycastOrigins.topLeft; // See if moving up or down, then choose corresponding - rayOrigin += Vector2.right * (verticalRaySpacing * i + velocity.x); //cast rays from where we will be once moving - RaycastHit2D hit = Physics2D.Raycast(rayOrigin, Vector2.up * directionY, rayLength, collisionMask); //raycast from origin and have it go up, length of the ray, layer mask - - Debug.DrawRay(rayOrigin, Vector2.up * directionY * rayLength, Color.red); - - if (hit) //if it hits - { - velocity.y = (hit.distance - skinWidth) * directionY; //multiply to maintain direction - rayLength = hit.distance; //length of ray is now the distance to hit - collisions.below = directionY == -1; //if hit and going down, below is true - collisions.above = directionY == 1; //if hit and going up, above is true - } - } - } - - - - void UpdateRaycastOrigins() //Update raycast origins - { - Bounds bounds = collider.bounds; //Getting bounds from the collider - bounds.Expand(skinWidth * -2); //Shrinks - - raycastOrigins.bottomLeft = new Vector2(bounds.min.x, bounds.min.y); //Bottom Left corner - raycastOrigins.bottomRight = new Vector2(bounds.max.x, bounds.min.y);//Bottom Right corner - raycastOrigins.topLeft = new Vector2(bounds.min.x, bounds.max.y); //Top Left corner - raycastOrigins.topRight = new Vector2(bounds.max.x, bounds.max.y);//Top Right corner - } - - void CalculateRaySpacing() //Calculates space between rays - { - Bounds bounds = collider.bounds; //set bounds - bounds.Expand(skinWidth * -2); //Shrink - - horizontalRayCount = Mathf.Clamp(horizontalRayCount, 2, int.MaxValue); //Need 1 in each corner - verticalRayCount = Mathf.Clamp(verticalRayCount, 2, int.MaxValue); //1 in each corner (vertical) - - horizontalRaySpacing = bounds.size.y / (horizontalRayCount - 1); //The size of bounds / n - 1 - verticalRaySpacing = bounds.size.x / (verticalRayCount - 1);//The size of bounds / n - 1 - } - - struct RaycastOrigins //Holds Vector 2's - { - public Vector2 topLeft, topRight; - public Vector2 bottomLeft, bottomRight; - } - - public struct CollisionInfo - { - public bool above, below; - public bool left, right; - - public void Reset() //Reset the Bools - { - above = below = false; - left = right = false; - } - } - -} - diff --git a/Platformer/Assets/Scripts/Items&HUD.meta b/Platformer/Assets/Scripts/Items&HUD.meta new file mode 100644 index 0000000..9580f91 --- /dev/null +++ b/Platformer/Assets/Scripts/Items&HUD.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 55c80d7b3b79aba4b83d1d9ea347884e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Platformer/Assets/Scripts/Level 1/Door.cs b/Platformer/Assets/Scripts/Items&HUD/Door.cs similarity index 100% rename from Platformer/Assets/Scripts/Level 1/Door.cs rename to Platformer/Assets/Scripts/Items&HUD/Door.cs diff --git a/Platformer/Assets/Scripts/Level 1/Door.cs.meta b/Platformer/Assets/Scripts/Items&HUD/Door.cs.meta similarity index 100% rename from Platformer/Assets/Scripts/Level 1/Door.cs.meta rename to Platformer/Assets/Scripts/Items&HUD/Door.cs.meta diff --git a/Platformer/Assets/Scripts/HealthBar.cs b/Platformer/Assets/Scripts/Items&HUD/HealthBar.cs similarity index 100% rename from Platformer/Assets/Scripts/HealthBar.cs rename to Platformer/Assets/Scripts/Items&HUD/HealthBar.cs diff --git a/Platformer/Assets/Scripts/HealthBar.cs.meta b/Platformer/Assets/Scripts/Items&HUD/HealthBar.cs.meta similarity index 100% rename from Platformer/Assets/Scripts/HealthBar.cs.meta rename to Platformer/Assets/Scripts/Items&HUD/HealthBar.cs.meta diff --git a/Platformer/Assets/Scripts/Menus&Camera.meta b/Platformer/Assets/Scripts/Menus&Camera.meta new file mode 100644 index 0000000..0c59c5e --- /dev/null +++ b/Platformer/Assets/Scripts/Menus&Camera.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6c257225f395a074f95e8ead43326aaa +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Platformer/Assets/Scripts/Level 1/Camera_Controller.cs b/Platformer/Assets/Scripts/Menus&Camera/Camera_Controller.cs similarity index 100% rename from Platformer/Assets/Scripts/Level 1/Camera_Controller.cs rename to Platformer/Assets/Scripts/Menus&Camera/Camera_Controller.cs diff --git a/Platformer/Assets/Scripts/Level 1/Camera_Controller.cs.meta b/Platformer/Assets/Scripts/Menus&Camera/Camera_Controller.cs.meta similarity index 100% rename from Platformer/Assets/Scripts/Level 1/Camera_Controller.cs.meta rename to Platformer/Assets/Scripts/Menus&Camera/Camera_Controller.cs.meta diff --git a/Platformer/Assets/Scripts/MainMenu.cs b/Platformer/Assets/Scripts/Menus&Camera/MainMenu.cs similarity index 100% rename from Platformer/Assets/Scripts/MainMenu.cs rename to Platformer/Assets/Scripts/Menus&Camera/MainMenu.cs diff --git a/Platformer/Assets/Scripts/MainMenu.cs.meta b/Platformer/Assets/Scripts/Menus&Camera/MainMenu.cs.meta similarity index 100% rename from Platformer/Assets/Scripts/MainMenu.cs.meta rename to Platformer/Assets/Scripts/Menus&Camera/MainMenu.cs.meta diff --git a/Platformer/Assets/Scripts/Level 1.meta b/Platformer/Assets/Scripts/Player&Enemy.meta similarity index 100% rename from Platformer/Assets/Scripts/Level 1.meta rename to Platformer/Assets/Scripts/Player&Enemy.meta diff --git a/Platformer/Assets/Scripts/Level 1/Bullet.cs b/Platformer/Assets/Scripts/Player&Enemy/Bullet.cs similarity index 100% rename from Platformer/Assets/Scripts/Level 1/Bullet.cs rename to Platformer/Assets/Scripts/Player&Enemy/Bullet.cs diff --git a/Platformer/Assets/Scripts/Level 1/Bullet.cs.meta b/Platformer/Assets/Scripts/Player&Enemy/Bullet.cs.meta similarity index 100% rename from Platformer/Assets/Scripts/Level 1/Bullet.cs.meta rename to Platformer/Assets/Scripts/Player&Enemy/Bullet.cs.meta diff --git a/Platformer/Assets/Scripts/Level 1/Enemy.cs b/Platformer/Assets/Scripts/Player&Enemy/Enemy.cs similarity index 100% rename from Platformer/Assets/Scripts/Level 1/Enemy.cs rename to Platformer/Assets/Scripts/Player&Enemy/Enemy.cs diff --git a/Platformer/Assets/Scripts/Level 1/Enemy.cs.meta b/Platformer/Assets/Scripts/Player&Enemy/Enemy.cs.meta similarity index 100% rename from Platformer/Assets/Scripts/Level 1/Enemy.cs.meta rename to Platformer/Assets/Scripts/Player&Enemy/Enemy.cs.meta diff --git a/Platformer/Assets/Scripts/Level 1/Player_Controller.cs b/Platformer/Assets/Scripts/Player&Enemy/Player_Controller.cs similarity index 96% rename from Platformer/Assets/Scripts/Level 1/Player_Controller.cs rename to Platformer/Assets/Scripts/Player&Enemy/Player_Controller.cs index 12b2137..2b20062 100644 --- a/Platformer/Assets/Scripts/Level 1/Player_Controller.cs +++ b/Platformer/Assets/Scripts/Player&Enemy/Player_Controller.cs @@ -3,14 +3,12 @@ using UnityEngine; using UnityEngine.UI; -[RequireComponent(typeof(Controller2D))] +[RequireComponent(typeof(Controller2D))] public class Player_Controller : MonoBehaviour { - Controller2D controller; //controller float moveSpeed = 10; //How Fast He moves - float gravity; //Gravity (No Rigid Body) float jumpVelocity; Vector3 velocity; //Velocity (Again since using raycasting need to create alll this) @@ -20,7 +18,9 @@ public class Player_Controller : MonoBehaviour public float jumpHeight = 4; //height public float timeToJumpApex = .4f; //time to get there float accelerationTimeAirborne = .2f; //acceleration time - float accelerationTimeGrounded = .05f; //time to ground + float accelerationTimeGrounded = .15f; //time to + + Controller2D controller; //controller public int currentHealth; //health diff --git a/Platformer/Assets/Scripts/Player&Enemy/Player_Controller.cs.meta b/Platformer/Assets/Scripts/Player&Enemy/Player_Controller.cs.meta new file mode 100644 index 0000000..95e769a --- /dev/null +++ b/Platformer/Assets/Scripts/Player&Enemy/Player_Controller.cs.meta @@ -0,0 +1,106 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; + +[RequireComponent(typeof(Controller2D))] +public class Player_Controller : MonoBehaviour +{ + Controller2D controller; //controller + + float moveSpeed = 10; //How Fast He moves + + + float gravity; //Gravity (No Rigid Body) + float jumpVelocity; + Vector3 velocity; //Velocity (Again since using raycasting need to create alll this) + float velocityXSmoothing; + + //Jumping + public float jumpHeight = 4; //height + public float timeToJumpApex = .4f; //time to get there + float accelerationTimeAirborne = .2f; //acceleration time + float accelerationTimeGrounded = .15f; //time to + + + public int currentHealth; //health + private int maxHealth = 100; //max health + public HealthBar healthbar; //Healthbar + + public GameObject door; //Public so I could drag door in + + void Start() + { + controller = GetComponent(); //Get Components controller2d + + gravity = -(2 * jumpHeight) / Mathf.Pow(timeToJumpApex, 2); //Derived from equation + jumpVelocity = Mathf.Abs(gravity) * timeToJumpApex; //Derived from equation + print("Gravity: " + gravity + " Jump Velocity: " + jumpVelocity); + + door.SetActive(false); // Turn off the door + currentHealth = maxHealth; //Reset to max health + healthbar.SetMaxHealth(maxHealth); //Health bar to max + } + + void Update() + { + if (controller.collisions.above || controller.collisions.below) //if true reset y + { + velocity.y = 0; + } + + Vector2 input = new Vector2(Input.GetAxisRaw("Horizontal"), Input.GetAxisRaw("Vertical")); + + if (Input.GetKeyDown(KeyCode.Space) && controller.collisions.below) //Jumping (and on something) + { + velocity.y = jumpVelocity; + } + + float targetVelocityX = input.x * moveSpeed; + + velocity.x = Mathf.SmoothDamp(velocity.x, targetVelocityX, ref velocityXSmoothing, (controller.collisions.below) ? accelerationTimeGrounded : accelerationTimeAirborne); //Movement in the x direction + velocity.y += gravity * Time.deltaTime; //Movement in the y Direction + controller.Move(velocity * Time.deltaTime); //How to actually move, in controller script + } + + + //Damage Function + void TakeDamage(int damage) + { + currentHealth -= damage; //take damage + healthbar.SetHealth(currentHealth); //modify health bar + if (currentHealth < 1) + { + Time.timeScale = 0f; + } + } + + + + //Ontrigger Enter (AKA TAGS) + void OnTriggerEnter2D(Collider2D other) //Pickups + { + if (other.gameObject.CompareTag("Key")) //If you got the key + { + other.gameObject.SetActive(false); //key is not actice + door.SetActive(true); // Door is accessible + } + + if (other.gameObject.CompareTag("Heart")) + { + other.gameObject.SetActive(false); // heart dissapears + currentHealth = maxHealth; // Full Health + healthbar.SetHealth(currentHealth); //Full HealthBar + } + + if (other.gameObject.CompareTag("Enemy")) + { + TakeDamage(20); + } + + //Ninja star is in the weapon script (easier that way for some reason ) + } + + + +} diff --git a/Platformer/Assets/Scripts/Level 1/Spawner1.cs b/Platformer/Assets/Scripts/Player&Enemy/Spawner1.cs similarity index 100% rename from Platformer/Assets/Scripts/Level 1/Spawner1.cs rename to Platformer/Assets/Scripts/Player&Enemy/Spawner1.cs diff --git a/Platformer/Assets/Scripts/Level 1/Spawner1.cs.meta b/Platformer/Assets/Scripts/Player&Enemy/Spawner1.cs.meta similarity index 100% rename from Platformer/Assets/Scripts/Level 1/Spawner1.cs.meta rename to Platformer/Assets/Scripts/Player&Enemy/Spawner1.cs.meta diff --git a/Platformer/Assets/Scripts/Level 1/Weapon.cs b/Platformer/Assets/Scripts/Player&Enemy/Weapon.cs similarity index 100% rename from Platformer/Assets/Scripts/Level 1/Weapon.cs rename to Platformer/Assets/Scripts/Player&Enemy/Weapon.cs diff --git a/Platformer/Assets/Scripts/Level 1/Weapon.cs.meta b/Platformer/Assets/Scripts/Player&Enemy/Weapon.cs.meta similarity index 100% rename from Platformer/Assets/Scripts/Level 1/Weapon.cs.meta rename to Platformer/Assets/Scripts/Player&Enemy/Weapon.cs.meta diff --git a/Platformer/Assets/Scripts/Raycast.meta b/Platformer/Assets/Scripts/Raycast.meta new file mode 100644 index 0000000..bca0175 --- /dev/null +++ b/Platformer/Assets/Scripts/Raycast.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 76ecf0fbc7f95e64eb715b2f13ee9ab3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Platformer/Assets/Scripts/Raycast/Controller2D.cs b/Platformer/Assets/Scripts/Raycast/Controller2D.cs new file mode 100644 index 0000000..880006f --- /dev/null +++ b/Platformer/Assets/Scripts/Raycast/Controller2D.cs @@ -0,0 +1,222 @@ +using UnityEngine; +using System.Collections; + + +public class Controller2D : RaycastController +{ + //derives from raycast controller + float maxClimbAngle = 80; //Highest angle to climb at + float maxDescendAngle = 80; //descend angle + + public CollisionInfo collisions; //Reference to Collison Info + + public override void Start() + { + base.Start(); //calls raycast controller start method + } + + public void Move(Vector3 velocity, bool standingOnPlatform = false) //Actually Moving + { + UpdateRaycastOrigins(); //Everytime we move + collisions.Reset(); //Blank Slate + + collisions.velocityOld = velocity; // + + if (velocity.y < 0) + { + DescendSlope(ref velocity); + } + + if (velocity.x != 0)//Horizontal Axis + { + HorizontalCollisions(ref velocity); + } + if (velocity.y != 0) //Vertical Axis + { + VerticalCollisions(ref velocity); + } + + transform.Translate(velocity); //Actually modifies the velocity + if (standingOnPlatform) + { + collisions.below = true; + } + + } + + void HorizontalCollisions(ref Vector3 velocity) //reference to velocity vector (dont make a copy) + { + float directionX = Mathf.Sign(velocity.x); //depending on moving left or right + float rayLength = Mathf.Abs(velocity.x) + skinWidth; //length of the ray (always positve) + + for (int i = 0; i < horizontalRayCount; i++) + { + Vector2 rayOrigin = (directionX == -1) ? raycastOrigins.bottomLeft : raycastOrigins.bottomRight;// See if moving up or down, then choose corresponding + rayOrigin += Vector2.up * (horizontalRaySpacing * i);//cast rays from where we will be once moving + RaycastHit2D hit = Physics2D.Raycast(rayOrigin, Vector2.right * directionX, rayLength, collisionMask);//raycast from origin and have it go up, length of the ray, layer mask + + Debug.DrawRay(rayOrigin, Vector2.right * directionX * rayLength, Color.red);//multiply to maintain direction + + if (hit) + { + if(hit.distance == 0) + { + continue; //next ray determines collisions + } + float slopeAngle = Vector2.Angle(hit.normal, Vector2.up); + + if (i == 0 && slopeAngle <= maxClimbAngle) + { + if (collisions.descendingSlope) + { + collisions.descendingSlope = false; + velocity = collisions.velocityOld; //velocity is what it was before + } + + float distanceToSlopeStart = 0; //at the slope + + if (slopeAngle != collisions.slopeAngleOld) + { + distanceToSlopeStart = hit.distance - skinWidth; + velocity.x -= distanceToSlopeStart * directionX; // + } + ClimbSlope(ref velocity, slopeAngle); + velocity.x += distanceToSlopeStart * directionX; + } + + if (!collisions.climbingSlope || slopeAngle > maxClimbAngle) + { + velocity.x = (hit.distance - skinWidth) * directionX; //Multiply to maintain direction + rayLength = hit.distance; //length of ray is now the distance to hit + + if (collisions.climbingSlope) + { + velocity.y = Mathf.Tan(collisions.slopeAngle * Mathf.Deg2Rad) * Mathf.Abs(velocity.x); + } + + collisions.left = directionX == -1;//if hit and going left, collison left is true + collisions.right = directionX == 1;//if hit and going right, collision right is true + } + } + + } + } + + void VerticalCollisions(ref Vector3 velocity) //reference to velocity vector (dont make a copy) + { + float directionY = Mathf.Sign(velocity.y); //depending on moving up or done + float rayLength = Mathf.Abs(velocity.y) + skinWidth; //length of the ray (always positve) + + for (int i = 0; i < verticalRayCount; i++) + { + Vector2 rayOrigin = (directionY == -1) ? raycastOrigins.bottomLeft : raycastOrigins.topLeft; // See if moving up or down, then choose corresponding + rayOrigin += Vector2.right * (verticalRaySpacing * i + velocity.x); //cast rays from where we will be once moving + RaycastHit2D hit = Physics2D.Raycast(rayOrigin, Vector2.up * directionY, rayLength, collisionMask); //raycast from origin and have it go up, length of the ray, layer mask + + Debug.DrawRay(rayOrigin, Vector2.up * directionY * rayLength, Color.red); + + if (hit) //if it hits + { + velocity.y = (hit.distance - skinWidth) * directionY; //multiply to maintain direction + rayLength = hit.distance; //length of ray is now the distance to hit + + if (collisions.climbingSlope) //if climbing the slope + { + velocity.x = velocity.y / Mathf.Tan(collisions.slopeAngle * Mathf.Deg2Rad) * Mathf.Sign(velocity.x); + } + collisions.below = directionY == -1; //if hit and going down, below is true + collisions.above = directionY == 1; //if hit and going up, above is true + } + } + //here fir curved slopes + if (collisions.climbingSlope) + { + float directionX = Mathf.Sign(velocity.x); + rayLength = Mathf.Abs(velocity.x) + skinWidth; //length of ray + Vector2 rayOrigin = ((directionX == -1) ? raycastOrigins.bottomLeft : raycastOrigins.bottomRight) + Vector2.up * velocity.y; //casting from new height + RaycastHit2D hit = Physics2D.Raycast(rayOrigin, Vector2.right * directionX, rayLength, collisionMask); //hit + + if (hit) + { + float slopeAngle = Vector2.Angle(hit.normal, Vector2.up); //get angle + if (slopeAngle != collisions.slopeAngle) //collided with new slope + { + velocity.x = (hit.distance - skinWidth) * directionX; + collisions.slopeAngle = slopeAngle; + } + } + } + } + + void ClimbSlope(ref Vector3 velocity, float slopeAngle) //Climb that slope + { + float moveDistance = Mathf.Abs(velocity.x); //new values + float climbVelocityY = Mathf.Sin(slopeAngle * Mathf.Deg2Rad) * moveDistance; //new values (trig) + + if (velocity.y <= climbVelocityY) + { + velocity.y = climbVelocityY; //up + velocity.x = Mathf.Cos(slopeAngle * Mathf.Deg2Rad) * moveDistance * Mathf.Sign(velocity.x); //side + collisions.below = true; //on a slope + collisions.climbingSlope = true; //true + collisions.slopeAngle = slopeAngle; // + } + } + + void DescendSlope(ref Vector3 velocity) + { + float directionX = Mathf.Sign(velocity.x); + Vector2 rayOrigin = (directionX == -1) ? raycastOrigins.bottomRight : raycastOrigins.bottomLeft; //cast downwards + RaycastHit2D hit = Physics2D.Raycast(rayOrigin, -Vector2.up, Mathf.Infinity, collisionMask); //hit, infinty because we dint know distance + + if (hit) + { + float slopeAngle = Vector2.Angle(hit.normal, Vector2.up); //get angle + if (slopeAngle != 0 && slopeAngle <= maxDescendAngle) //not flat surface + { + if (Mathf.Sign(hit.normal.x) == directionX) //going down the slope + { + if (hit.distance - skinWidth <= Mathf.Tan(slopeAngle * Mathf.Deg2Rad) * Mathf.Abs(velocity.x)) //how far we have to move based on velocity x + { + float moveDistance = Mathf.Abs(velocity.x); //distance to move + float descendVelocityY = Mathf.Sin(slopeAngle * Mathf.Deg2Rad) * moveDistance; + velocity.x = Mathf.Cos(slopeAngle * Mathf.Deg2Rad) * moveDistance * Mathf.Sign(velocity.x); + velocity.y -= descendVelocityY; + + collisions.slopeAngle = slopeAngle; + collisions.descendingSlope = true; //descending the slope + collisions.below = true; //something is below + } + } + } + } + } + + + + public struct CollisionInfo + { + public bool above, below; //aboce and below bools + public bool left, right; //left and right bools + + public bool climbingSlope; //are you climbing + public bool descendingSlope; + public float slopeAngle, slopeAngleOld; //angle and old angle + public Vector3 velocityOld; + + public void Reset() //Reset the Bools + { + above = below = false; + left = right = false; + + climbingSlope = false; + descendingSlope = false; + + slopeAngleOld = slopeAngle; + slopeAngle = 0; + } + } + + +} + diff --git a/Platformer/Assets/Scripts/Controller2D.cs.meta b/Platformer/Assets/Scripts/Raycast/Controller2D.cs.meta similarity index 83% rename from Platformer/Assets/Scripts/Controller2D.cs.meta rename to Platformer/Assets/Scripts/Raycast/Controller2D.cs.meta index 788446b..763c066 100644 --- a/Platformer/Assets/Scripts/Controller2D.cs.meta +++ b/Platformer/Assets/Scripts/Raycast/Controller2D.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 36a1c430d51a93146afc47044561b487 +guid: 286b6eb439ce6f64eb66300c4a4fade8 MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Platformer/Assets/Scripts/Raycast/PlatformController.cs b/Platformer/Assets/Scripts/Raycast/PlatformController.cs new file mode 100644 index 0000000..ad87b46 --- /dev/null +++ b/Platformer/Assets/Scripts/Raycast/PlatformController.cs @@ -0,0 +1,171 @@ +using UnityEngine; +using System.Collections; +using System.Collections.Generic; + +public class PlatformController : RaycastController +{ + + public LayerMask passengerMask; //layer used for passengers + public Vector3 move; + + public Vector3[] localWaypoints;//relative to platform + Vector3[] globalWaypoints; + + List passengerMovement; //store all the bools + Dictionary passengerDictionary = new Dictionary(); //to be able to jump + + public override void Start() + { + base.Start(); + + globalWaypoints = new Vector3[localWaypoints.Length]; //set global waypoints so you actually go between + for (int i = 0; i < localWaypoints.Length; i++) //every local way point must be changed + { + globalWaypoints[i] = localWaypoints[i] + transform.position; + } + } + + void Update() + { + + UpdateRaycastOrigins(); //never changes + Vector3 velocity = move * Time.deltaTime; + + CalculatePassengerMovement(velocity); //Move the passangers + + MovePassengers(true);//Move + transform.Translate(velocity);//Trasnform + MovePassengers(false);//Dont move + } + + void MovePassengers(bool beforeMovePlatform) //before we move the platform + { + foreach (PassengerMovement passenger in passengerMovement) //for every movement + { + if (!passengerDictionary.ContainsKey(passenger.transform)) //if passanger not on + { + passengerDictionary.Add(passenger.transform, passenger.transform.GetComponent()); + } + + if (passenger.moveBeforePlatform == beforeMovePlatform) //we on + { + passengerDictionary[passenger.transform].Move(passenger.velocity, passenger.standingOnPlatform); + } + } + } + + void CalculatePassengerMovement(Vector3 velocity) //Refers to any controller 2d affected by the platform + { + HashSet movedPassengers = new HashSet(); //use because fast at adding things and checking whats contained + passengerMovement = new List(); + + float directionX = Mathf.Sign(velocity.x); //left/right + float directionY = Mathf.Sign(velocity.y); //up + + // Vertically moving platform + if (velocity.y != 0) + { + float rayLength = Mathf.Abs(velocity.y) + skinWidth; //ray length + + for (int i = 0; i < verticalRayCount; i++) //similar to controller2D + { + Vector2 rayOrigin = (directionY == -1) ? raycastOrigins.bottomLeft : raycastOrigins.topLeft; + rayOrigin += Vector2.right * (verticalRaySpacing * i); + RaycastHit2D hit = Physics2D.Raycast(rayOrigin, Vector2.up * directionY, rayLength, passengerMask); + + if (hit) //there is a passenger on + { + if (!movedPassengers.Contains(hit.transform)) //if it doesnt contain hit. transform + { + movedPassengers.Add(hit.transform); //add to list so moved once per frame + float pushX = (directionY == 1) ? velocity.x : 0; //if its moving up, otherwise set to 0 + float pushY = velocity.y - (hit.distance - skinWidth) * directionY; //close distance + + passengerMovement.Add(new PassengerMovement(hit.transform, new Vector3(pushX, pushY), directionY == 1, true)); //update list + } + } + } + } + + // Horizontally moving platform + if (velocity.x != 0) + { + float rayLength = Mathf.Abs(velocity.x) + skinWidth; + + for (int i = 0; i < horizontalRayCount; i++) + { + Vector2 rayOrigin = (directionX == -1) ? raycastOrigins.bottomLeft : raycastOrigins.bottomRight; + rayOrigin += Vector2.up * (horizontalRaySpacing * i); + RaycastHit2D hit = Physics2D.Raycast(rayOrigin, Vector2.right * directionX, rayLength, passengerMask); + + if (hit) + { + if (!movedPassengers.Contains(hit.transform)) + { + movedPassengers.Add(hit.transform); + float pushX = velocity.x - (hit.distance - skinWidth) * directionX; + float pushY = -skinWidth; + + passengerMovement.Add(new PassengerMovement(hit.transform, new Vector3(pushX, pushY), false, true)); //update list + } + } + } + } + + // Passenger on top of a horizontally or downward moving platform + if (directionY == -1 || velocity.y == 0 && velocity.x != 0) + { + float rayLength = skinWidth * 2; + + for (int i = 0; i < verticalRayCount; i++) + { + Vector2 rayOrigin = raycastOrigins.topLeft + Vector2.right * (verticalRaySpacing * i); //origin of rays + RaycastHit2D hit = Physics2D.Raycast(rayOrigin, Vector2.up, rayLength, passengerMask); //raycast hit + + if (hit) + { + if (!movedPassengers.Contains(hit.transform)) //passanger is on + { + movedPassengers.Add(hit.transform); + float pushX = velocity.x; + float pushY = velocity.y; + + passengerMovement.Add(new PassengerMovement(hit.transform, new Vector3(pushX, pushY),true , false)); //update list + } + } + } + } + } + + struct PassengerMovement //relevent info + { + public Transform transform; //transform of passenger + public Vector3 velocity; //desired velocity + public bool standingOnPlatform; //is he on plantform + public bool moveBeforePlatform; //move before platform? + + public PassengerMovement(Transform _transform, Vector3 _velocity, bool _standingOnPlatform, bool _moveBeforePlatform) + { + transform = _transform; + velocity = _velocity; + standingOnPlatform = _standingOnPlatform; + moveBeforePlatform = _moveBeforePlatform; + } + } + + void OnDrawGizmos() + { + if (localWaypoints != null) //only if its not equal to null + { + Gizmos.color = Color.red; + float size = .3f; //size we want to draw "gizmos" at + + for (int i = 0; i < localWaypoints.Length; i++) //iterate through each waypoints + { + Vector3 globalWaypointPos = (Application.isPlaying) ? globalWaypoints[i] : localWaypoints[i] + transform.position; //check if the games on first + Gizmos.DrawLine(globalWaypointPos - Vector3.up * size, globalWaypointPos + Vector3.up * size); + Gizmos.DrawLine(globalWaypointPos - Vector3.left * size, globalWaypointPos + Vector3.left * size); + } + } + } +} \ No newline at end of file diff --git a/Platformer/Assets/Scripts/Level 1/Player_Controller.cs.meta b/Platformer/Assets/Scripts/Raycast/PlatformController.cs.meta similarity index 83% rename from Platformer/Assets/Scripts/Level 1/Player_Controller.cs.meta rename to Platformer/Assets/Scripts/Raycast/PlatformController.cs.meta index 8dc9d13..e25595e 100644 --- a/Platformer/Assets/Scripts/Level 1/Player_Controller.cs.meta +++ b/Platformer/Assets/Scripts/Raycast/PlatformController.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b742c51ec22ca1d44b0b78d4bf07cd32 +guid: 2972f97baab0e18479470d5746e83b25 MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Platformer/Assets/Scripts/Raycast/RaycastController.cs b/Platformer/Assets/Scripts/Raycast/RaycastController.cs new file mode 100644 index 0000000..35ba521 --- /dev/null +++ b/Platformer/Assets/Scripts/Raycast/RaycastController.cs @@ -0,0 +1,57 @@ +using UnityEngine; +using System.Collections; + +[RequireComponent(typeof(BoxCollider2D))] +public class RaycastController : MonoBehaviour +{ + + public LayerMask collisionMask; //collison mask + + public const float skinWidth = .015f; //width + public int horizontalRayCount = 4; //how many rays horizontally + public int verticalRayCount = 4; //how many rays vertically + + [HideInInspector] + public float horizontalRaySpacing; //spacing horizontally + [HideInInspector] + public float verticalRaySpacing; //spacing vertically + + [HideInInspector] + public BoxCollider2D collider; //reference + public RaycastOrigins raycastOrigins; //reference + + public virtual void Start() + { + collider = GetComponent(); //get component + CalculateRaySpacing(); //never changes + } + + public void UpdateRaycastOrigins() + { + Bounds bounds = collider.bounds; //bounds reference + bounds.Expand(skinWidth * -2); //shrink + + raycastOrigins.bottomLeft = new Vector2(bounds.min.x, bounds.min.y); //bottom left + raycastOrigins.bottomRight = new Vector2(bounds.max.x, bounds.min.y); //bottom right + raycastOrigins.topLeft = new Vector2(bounds.min.x, bounds.max.y); //top left + raycastOrigins.topRight = new Vector2(bounds.max.x, bounds.max.y); //top right + } + + public void CalculateRaySpacing() //calculate space between rays + { + Bounds bounds = collider.bounds; //bounds + bounds.Expand(skinWidth * -2); //shrink + + horizontalRayCount = Mathf.Clamp(horizontalRayCount, 2, int.MaxValue); //horizontal count + verticalRayCount = Mathf.Clamp(verticalRayCount, 2, int.MaxValue); //vertical # + + horizontalRaySpacing = bounds.size.y / (horizontalRayCount - 1); //spacing + verticalRaySpacing = bounds.size.x / (verticalRayCount - 1);//spacing + } + + public struct RaycastOrigins //Vector twos + { + public Vector2 topLeft, topRight; + public Vector2 bottomLeft, bottomRight; + } +} \ No newline at end of file diff --git a/Platformer/Assets/Scripts/Raycast/RaycastController.cs.meta b/Platformer/Assets/Scripts/Raycast/RaycastController.cs.meta new file mode 100644 index 0000000..97b5360 --- /dev/null +++ b/Platformer/Assets/Scripts/Raycast/RaycastController.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2036d71f98be0534286b0c8c9bad0b45 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard.meta b/Platformer/Assets/World Build/Enemies/Evil Wizard.meta new file mode 100644 index 0000000..3a72249 --- /dev/null +++ b/Platformer/Assets/World Build/Enemies/Evil Wizard.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 296b2f9b3859e4a4c99a662124a5ea64 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard/License.txt b/Platformer/Assets/World Build/Enemies/Evil Wizard/License.txt new file mode 100644 index 0000000..b0fffee --- /dev/null +++ b/Platformer/Assets/World Build/Enemies/Evil Wizard/License.txt @@ -0,0 +1,2 @@ +This pack - Evil Wizard Asset Pack is Creative Commons Zero (CC-0). +Can be used in commercial and non-commercial projects. \ No newline at end of file diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard/License.txt.meta b/Platformer/Assets/World Build/Enemies/Evil Wizard/License.txt.meta new file mode 100644 index 0000000..7d9a13b --- /dev/null +++ b/Platformer/Assets/World Build/Enemies/Evil Wizard/License.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4a3459dca327009459f8b86494ee7645 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites.meta b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites.meta new file mode 100644 index 0000000..b40bb84 --- /dev/null +++ b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e2f42ff5c03e4c24f8b8c8b3b563281b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Attack.png b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Attack.png new file mode 100644 index 0000000..533fe37 Binary files /dev/null and b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Attack.png differ diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Attack.png.meta b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Attack.png.meta new file mode 100644 index 0000000..93a1d68 --- /dev/null +++ b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Attack.png.meta @@ -0,0 +1,719 @@ +fileFormatVersion: 2 +guid: f3fc7c9f5caae194892a86a73873fee8 +TextureImporter: + fileIDToRecycleName: + 21300000: Attack_0 + 21300002: Attack_1 + 21300004: Attack_2 + 21300006: Attack_3 + 21300008: Attack_4 + 21300010: Attack_5 + 21300012: Attack_6 + 21300014: Attack_7 + 21300016: Attack_8 + 21300018: Attack_9 + 21300020: Attack_10 + 21300022: Attack_11 + 21300024: Attack_12 + 21300026: Attack_13 + 21300028: Attack_14 + 21300030: Attack_15 + 21300032: Attack_16 + 21300034: Attack_17 + 21300036: Attack_18 + 21300038: Attack_19 + 21300040: Attack_20 + 21300042: Attack_21 + 21300044: Attack_22 + 21300046: Attack_23 + 21300048: Attack_24 + 21300050: Attack_25 + 21300052: Attack_26 + 21300054: Attack_27 + 21300056: Attack_28 + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + 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: 8 + 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 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: Attack_0 + rect: + serializedVersion: 2 + x: 59 + y: 48 + width: 95 + height: 51 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cbd933befba3a744198aed6aad7f44ec + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_1 + rect: + serializedVersion: 2 + x: 86 + y: 59 + width: 40 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7c2ba22de7333f9498c8e8a80bde6e54 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_2 + rect: + serializedVersion: 2 + x: 121 + y: 76 + width: 15 + height: 14 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9e464b1026e36d9439aa2a9909b4d9c5 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_3 + rect: + serializedVersion: 2 + x: 125 + y: 86 + width: 13 + height: 10 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f49e55fcb01848b4fa1851b38ea30964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_4 + rect: + serializedVersion: 2 + x: 209 + y: 49 + width: 80 + height: 50 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: df6936d97a2aafc49bd0831feade70f4 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_5 + rect: + serializedVersion: 2 + x: 359 + y: 49 + width: 90 + height: 50 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0f783b9169092204596a5a54498e3ba2 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_6 + rect: + serializedVersion: 2 + x: 386 + y: 62 + width: 51 + height: 26 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bf4eb6207a7593c43828505b29826425 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_7 + rect: + serializedVersion: 2 + x: 509 + y: 49 + width: 76 + height: 50 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 89826e1a114e4ba49a53ee840d0527e4 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_8 + rect: + serializedVersion: 2 + x: 659 + y: 50 + width: 92 + height: 49 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8e1f865cbb92d76418e498f0f21f0a7b + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_9 + rect: + serializedVersion: 2 + x: 686 + y: 59 + width: 40 + height: 29 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 81ad8e56433f1624e85093eeca498239 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_10 + rect: + serializedVersion: 2 + x: 721 + y: 76 + width: 15 + height: 14 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e0ff14dc4072b724cac496e900807a0a + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_11 + rect: + serializedVersion: 2 + x: 725 + y: 86 + width: 13 + height: 10 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3cf24d8a34ee3ca48aba96080492785a + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_12 + rect: + serializedVersion: 2 + x: 809 + y: 49 + width: 80 + height: 50 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3a46ed515939f8e4fb388025e030de17 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_13 + rect: + serializedVersion: 2 + x: 959 + y: 49 + width: 90 + height: 50 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1e1c8aef18e29204590a5b58909888cb + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_14 + rect: + serializedVersion: 2 + x: 986 + y: 62 + width: 51 + height: 26 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: db5d27f85df18924d8217f377c32d4f4 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_15 + rect: + serializedVersion: 2 + x: 1109 + y: 49 + width: 76 + height: 50 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 972ae3ed308e7b4419f90dad0504299d + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_16 + rect: + serializedVersion: 2 + x: 122 + y: 58 + width: 10 + height: 19 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 787ee18401e56354abe9c8ab4367e14c + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_17 + rect: + serializedVersion: 2 + x: 136 + y: 75 + width: 4 + height: 8 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8b76a5ef12d85574fbb44143ac82e1bd + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_18 + rect: + serializedVersion: 2 + x: 281 + y: 73 + width: 8 + height: 12 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ced86c60beb6fbd4399fe55d392a3bd3 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_19 + rect: + serializedVersion: 2 + x: 578 + y: 71 + width: 5 + height: 7 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6aaea8b6465942e48ad971cdc1954052 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_20 + rect: + serializedVersion: 2 + x: 722 + y: 58 + width: 10 + height: 19 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e0acd702bd6cb9e45afd36a0a184e280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_21 + rect: + serializedVersion: 2 + x: 736 + y: 75 + width: 4 + height: 8 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a5396111b08e2f949aabb5c32da1213a + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_22 + rect: + serializedVersion: 2 + x: 881 + y: 73 + width: 8 + height: 12 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 22d0bc4ed9ba8834481fcff2f4f74c43 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_23 + rect: + serializedVersion: 2 + x: 1178 + y: 71 + width: 5 + height: 7 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f0a3c682eaff90c4db3e942acdeb797b + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_24 + rect: + serializedVersion: 2 + x: 280 + y: 56 + width: 9 + height: 11 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e7bf8e18d0f25b345a39cb8879730ff9 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_25 + rect: + serializedVersion: 2 + x: 418 + y: 59 + width: 10 + height: 10 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4df760bc5851ffe45b702209af0220a7 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_26 + rect: + serializedVersion: 2 + x: 880 + y: 56 + width: 9 + height: 11 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 586fd9b2a8266184e860b902b05b73f2 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_27 + rect: + serializedVersion: 2 + x: 1018 + y: 59 + width: 10 + height: 10 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b3e953fae9afa6943866fa825caa8a1c + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Attack_28 + rect: + serializedVersion: 2 + x: 617 + y: 16 + width: 98 + height: 15 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 405c6dcbbdb305642a1e31f4f3a78280 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: b99ef71aa3a478648880f6bfeca543a6 + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Death.png b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Death.png new file mode 100644 index 0000000..1b9ab69 Binary files /dev/null and b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Death.png differ diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Death.png.meta b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Death.png.meta new file mode 100644 index 0000000..da69f91 --- /dev/null +++ b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Death.png.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: e1fc17c7cfcc876478a46dbe411a96d0 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 8 + 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: ca38b21ebe4de27478fde1075fa72ee2 + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Idle.png b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Idle.png new file mode 100644 index 0000000..0abf636 Binary files /dev/null and b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Idle.png differ diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Idle.png.meta b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Idle.png.meta new file mode 100644 index 0000000..21bf9bd --- /dev/null +++ b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Idle.png.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 2c293c531536e2e46bd1438b15dffb7d +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 8 + 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: 6a6b0de2ee206b24e9978dd721cf0acd + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Move.png b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Move.png new file mode 100644 index 0000000..9998ea0 Binary files /dev/null and b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Move.png differ diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Move.png.meta b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Move.png.meta new file mode 100644 index 0000000..ea52b71 --- /dev/null +++ b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Move.png.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 580254f1ce4e0564aad001162229a2e3 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 8 + 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: d470e25361f5f2043a52d720fadee3ff + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Take Hit.png b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Take Hit.png new file mode 100644 index 0000000..1b48cee Binary files /dev/null and b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Take Hit.png differ diff --git a/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Take Hit.png.meta b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Take Hit.png.meta new file mode 100644 index 0000000..21fa4c7 --- /dev/null +++ b/Platformer/Assets/World Build/Enemies/Evil Wizard/Sprites/Take Hit.png.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 5d8f16aa16637cd4e955597591d9c4c1 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 8 + 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: 4604b13f9fd71614995e78b60e109e01 + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Platformer/Assets/_Scenes/Level1.unity b/Platformer/Assets/_Scenes/Level1.unity index c22fb9f..7ff1f1e 100644 --- a/Platformer/Assets/_Scenes/Level1.unity +++ b/Platformer/Assets/_Scenes/Level1.unity @@ -210,8 +210,8 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 47975117} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -18.4853, y: -1.562, z: 0.28108972} - m_LocalScale: {x: 3.179269, y: 3.1408656, z: 1} + m_LocalPosition: {x: -18.524, y: -1.551, z: 0.28108972} + m_LocalScale: {x: 3.3445911, y: 3.287858, z: 1} m_Children: [] m_Father: {fileID: 2065312515} m_RootOrder: 1 @@ -900,8 +900,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 1, y: -18, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -909,8 +909,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 2, y: -18, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -918,8 +918,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 3, y: -18, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -927,8 +927,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 4, y: -18, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -936,8 +936,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 5, y: -18, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -945,8 +945,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 6, y: -18, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -954,8 +954,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 7, y: -18, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -963,8 +963,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 8, y: -18, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -972,8 +972,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 9, y: -18, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -981,8 +981,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 10, y: -18, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -990,8 +990,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 11, y: -18, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -999,8 +999,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 12, y: -18, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1008,8 +1008,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 13, y: -18, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1017,8 +1017,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 14, y: -18, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1026,8 +1026,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 15, y: -18, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1035,8 +1035,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 16, y: -18, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1044,8 +1044,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 17, y: -18, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1053,8 +1053,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 18, y: -18, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1062,8 +1062,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 19, y: -18, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1071,8 +1071,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 20, y: -18, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1080,8 +1080,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 21, y: -18, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1530,8 +1530,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 1, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1539,8 +1539,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 2, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1548,8 +1548,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 3, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1557,8 +1557,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 4, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1566,8 +1566,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 5, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1575,8 +1575,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 6, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1584,8 +1584,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 7, y: -17, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1593,8 +1593,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 8, y: -17, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1602,8 +1602,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 9, y: -17, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1611,8 +1611,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 10, y: -17, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1620,8 +1620,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 11, y: -17, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1629,8 +1629,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 12, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1638,8 +1638,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 13, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1647,8 +1647,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 14, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1656,8 +1656,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 15, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1665,8 +1665,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 16, y: -17, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1674,8 +1674,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 17, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1683,8 +1683,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 18, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1692,8 +1692,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 19, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1701,8 +1701,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 20, y: -17, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -1710,8 +1710,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 21, y: -17, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2160,8 +2160,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 1, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2169,8 +2169,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 2, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2178,8 +2178,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 3, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 29 + m_TileSpriteIndex: 20 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2187,8 +2187,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 4, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2196,8 +2196,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 5, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2205,8 +2205,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 6, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 29 + m_TileSpriteIndex: 20 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2214,8 +2214,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 7, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2223,8 +2223,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 8, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2232,8 +2232,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 9, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 29 + m_TileSpriteIndex: 20 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2241,8 +2241,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 10, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2250,8 +2250,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 11, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 27 + m_TileSpriteIndex: 21 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2259,8 +2259,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 12, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2268,8 +2268,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 13, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 28 + m_TileSpriteIndex: 16 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2277,8 +2277,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 14, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2286,8 +2286,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 15, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2295,8 +2295,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 16, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 28 + m_TileSpriteIndex: 16 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2304,8 +2304,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 17, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2313,8 +2313,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 18, y: -16, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2322,8 +2322,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 19, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 28 + m_TileSpriteIndex: 16 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2331,8 +2331,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 20, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2340,8 +2340,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 21, y: -16, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2790,8 +2790,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 1, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2799,8 +2799,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 2, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2808,8 +2808,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 3, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2817,8 +2817,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 4, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2826,8 +2826,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 5, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2835,8 +2835,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 6, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2844,8 +2844,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 7, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2853,8 +2853,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 8, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2862,8 +2862,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 9, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2871,8 +2871,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 10, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2880,8 +2880,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 11, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2889,8 +2889,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 12, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2898,8 +2898,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 13, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2907,8 +2907,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 14, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2916,8 +2916,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 15, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2925,8 +2925,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 16, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2934,8 +2934,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 17, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2943,8 +2943,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 18, y: -15, z: 0} second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2952,8 +2952,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 19, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2961,8 +2961,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 20, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -2970,8 +2970,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 21, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 1 + m_TileSpriteIndex: 1 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3015,8 +3015,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 26, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3024,8 +3024,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 27, y: -15, z: 0} second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3609,8 +3609,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 22, y: -14, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3618,8 +3618,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 23, y: -14, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3627,8 +3627,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 24, y: -14, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3636,8 +3636,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 25, y: -14, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3645,8 +3645,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 26, y: -14, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3654,8 +3654,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 27, y: -14, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3663,8 +3663,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 28, y: -14, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3672,8 +3672,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 29, y: -14, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3681,8 +3681,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 30, y: -14, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3690,8 +3690,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 31, y: -14, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3699,8 +3699,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 32, y: -14, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3708,8 +3708,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 33, y: -14, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -3717,8 +3717,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 34, y: -14, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4230,8 +4230,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 21, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 2 + m_TileSpriteIndex: 2 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4239,8 +4239,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 22, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4248,8 +4248,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 23, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4257,8 +4257,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 24, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4266,8 +4266,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 25, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4275,8 +4275,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 26, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4284,8 +4284,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 27, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4293,8 +4293,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 28, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4302,8 +4302,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 29, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4311,8 +4311,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 30, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4320,8 +4320,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 31, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4329,8 +4329,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 32, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4338,8 +4338,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 33, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 12 + m_TileSpriteIndex: 12 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4347,8 +4347,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 34, y: -13, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 13 + m_TileSpriteIndex: 13 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -4687,6 +4687,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: -12, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: -12, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: -12, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: -12, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: -12, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: -12, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: -12, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: -12, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: -12, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: -12, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: -12, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: -12, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: -12, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: -12, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -35, y: -11, z: 0} second: m_TileIndex: 12 @@ -5020,6 +5146,168 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 2, y: -11, z: 0} + second: + m_TileIndex: 26 + m_TileSpriteIndex: 33 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 3, y: -11, z: 0} + second: + m_TileIndex: 25 + m_TileSpriteIndex: 32 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 4, y: -11, z: 0} + second: + m_TileIndex: 16 + m_TileSpriteIndex: 31 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 5, y: -11, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: -11, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: -11, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: -11, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: -11, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: -11, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: -11, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: -11, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: -11, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: -11, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: -11, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: -11, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: -11, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: -11, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: -11, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: -10, z: 0} second: m_TileIndex: 12 @@ -5362,6 +5650,168 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 2, y: -10, z: 0} + second: + m_TileIndex: 17 + m_TileSpriteIndex: 17 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 3, y: -10, z: 0} + second: + m_TileIndex: 18 + m_TileSpriteIndex: 18 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 4, y: -10, z: 0} + second: + m_TileIndex: 19 + m_TileSpriteIndex: 19 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 5, y: -10, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: -10, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: -10, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: -10, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: -10, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: -10, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: -10, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: -10, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: -10, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: -10, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: -10, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: -10, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: -10, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: -10, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: -10, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: -9, z: 0} second: m_TileIndex: 12 @@ -5704,6 +6154,168 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 2, y: -9, z: 0} + second: + m_TileIndex: 17 + m_TileSpriteIndex: 17 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 3, y: -9, z: 0} + second: + m_TileIndex: 18 + m_TileSpriteIndex: 18 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 4, y: -9, z: 0} + second: + m_TileIndex: 19 + m_TileSpriteIndex: 19 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 5, y: -9, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: -9, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: -9, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: -9, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: -9, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: -9, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: -9, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: -9, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: -9, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: -9, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: -9, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: -9, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: -9, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: -9, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: -9, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: -8, z: 0} second: m_TileIndex: 12 @@ -6046,6 +6658,168 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 2, y: -8, z: 0} + second: + m_TileIndex: 17 + m_TileSpriteIndex: 17 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 3, y: -8, z: 0} + second: + m_TileIndex: 18 + m_TileSpriteIndex: 18 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 4, y: -8, z: 0} + second: + m_TileIndex: 19 + m_TileSpriteIndex: 19 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 5, y: -8, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: -8, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: -8, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: -8, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: -8, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: -8, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: -8, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: -8, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: -8, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: -8, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: -8, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: -8, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: -8, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: -8, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: -8, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: -7, z: 0} second: m_TileIndex: 12 @@ -6390,8 +7164,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 2, y: -7, z: 0} second: - m_TileIndex: 16 - m_TileSpriteIndex: 33 + m_TileIndex: 17 + m_TileSpriteIndex: 17 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -6399,8 +7173,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 3, y: -7, z: 0} second: - m_TileIndex: 15 - m_TileSpriteIndex: 32 + m_TileIndex: 18 + m_TileSpriteIndex: 18 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -6408,8 +7182,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 4, y: -7, z: 0} second: - m_TileIndex: 9 - m_TileSpriteIndex: 31 + m_TileIndex: 19 + m_TileSpriteIndex: 19 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -6424,6 +7198,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: -7, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: -7, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: -7, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: -7, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: -7, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: -7, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: -7, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: -7, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: -7, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: -7, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: -7, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: -7, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: -7, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: -7, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: -6, z: 0} second: m_TileIndex: 12 @@ -6802,6 +7702,141 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: -6, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: -6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: -6, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: -6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: -6, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: -6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: -6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: -6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: -6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: -6, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: -6, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: -6, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: -6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: -6, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 35, y: -6, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -38, y: -5, z: 0} second: m_TileIndex: 12 @@ -7198,6 +8233,141 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: -5, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: -5, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: -5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: -5, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: -5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: -5, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: -5, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: -5, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: -5, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: -5, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: -5, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: -5, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: -5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: -5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 35, y: -5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -38, y: -4, z: 0} second: m_TileIndex: 12 @@ -7594,6 +8764,141 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: -4, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: -4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: -4, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: -4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: -4, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: -4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: -4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: -4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: -4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: -4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: -4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: -4, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: -4, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: -4, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 35, y: -4, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: -3, z: 0} second: m_TileIndex: 12 @@ -7972,6 +9277,141 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: -3, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: -3, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: -3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: -3, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: -3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: -3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: -3, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: -3, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: -3, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: -3, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: -3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: -3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: -3, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: -3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 35, y: -3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: -2, z: 0} second: m_TileIndex: 12 @@ -8278,6 +9718,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: -2, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: -2, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: -2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: -2, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: -2, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: -2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: -2, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: -2, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: -2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: -2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: -2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: -2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: -2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: -2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: -1, z: 0} second: m_TileIndex: 12 @@ -8611,6 +10177,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: -1, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: -1, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: -1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: -1, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: -1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: -1, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: -1, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: -1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: -1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: -1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: -1, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: -1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: -1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: -1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: 0, z: 0} second: m_TileIndex: 12 @@ -8944,6 +10636,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: 0, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: 0, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: 0, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: 0, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: 0, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: 0, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: 0, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: 0, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: 0, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: 0, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: 0, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: 0, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: 0, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: 0, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: 1, z: 0} second: m_TileIndex: 12 @@ -9277,6 +11095,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: 1, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: 1, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: 1, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: 1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: 1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: 1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: 1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: 1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: 1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: 1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: 1, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: 1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: 1, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: 1, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: 2, z: 0} second: m_TileIndex: 12 @@ -9610,6 +11554,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: 2, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: 2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: 2, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: 2, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: 2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: 2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: 2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: 2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: 2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: 2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: 2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: 2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: 2, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: 2, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: 3, z: 0} second: m_TileIndex: 12 @@ -9934,6 +12004,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: 3, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: 3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: 3, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: 3, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: 3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: 3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: 3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: 3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: 3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: 3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: 3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: 3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: 3, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: 3, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: 4, z: 0} second: m_TileIndex: 12 @@ -10258,6 +12454,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: 4, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: 4, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: 4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: 4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: 4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: 4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: 4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: 4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: 4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: 4, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: 4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: 4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: 4, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: 4, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: 5, z: 0} second: m_TileIndex: 12 @@ -10564,6 +12886,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: 5, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: 5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: 5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: 5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: 5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: 5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: 5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: 5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: 5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: 5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: 5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: 5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: 5, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: 5, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: 6, z: 0} second: m_TileIndex: 12 @@ -10870,6 +13318,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 21, y: 6, z: 0} + second: + m_TileIndex: 2 + m_TileSpriteIndex: 2 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 22, y: 6, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 23, y: 6, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 24, y: 6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 25, y: 6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 26, y: 6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 27, y: 6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 28, y: 6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 29, y: 6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 30, y: 6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 31, y: 6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 32, y: 6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 33, y: 6, z: 0} + second: + m_TileIndex: 12 + m_TileSpriteIndex: 12 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 34, y: 6, z: 0} + second: + m_TileIndex: 13 + m_TileSpriteIndex: 13 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: 7, z: 0} second: m_TileIndex: 12 @@ -10962,8 +13536,8 @@ Tilemap: m_ColliderType: 1 - first: {x: -26, y: 7, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 33 + m_TileSpriteIndex: 24 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -10971,8 +13545,8 @@ Tilemap: m_ColliderType: 1 - first: {x: -25, y: 7, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -10980,8 +13554,8 @@ Tilemap: m_ColliderType: 1 - first: {x: -24, y: 7, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -10989,8 +13563,8 @@ Tilemap: m_ColliderType: 1 - first: {x: -23, y: 7, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 31 + m_TileSpriteIndex: 22 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -11266,51 +13840,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 12, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 13, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 14, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 15, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 16, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: 17, y: 7, z: 0} second: m_TileIndex: 0 @@ -11349,152 +13878,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 21, y: 7, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 2 + m_TileSpriteIndex: 2 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -11887,42 +14272,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 12, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 13, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 14, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 15, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: 16, y: 8, z: 0} second: m_TileIndex: 10 @@ -11986,141 +14335,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 23, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 9, z: 0} second: m_TileIndex: 12 @@ -12574,16 +14788,7 @@ Tilemap: - first: {x: -26, y: 13, z: 0} second: m_TileIndex: 8 - m_TileSpriteIndex: 8 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: -19, y: 13, z: 0} - second: - m_TileIndex: 8 - m_TileSpriteIndex: 8 + m_TileSpriteIndex: 15 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -14146,15 +16351,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 7, y: 21, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 22, z: 0} second: m_TileIndex: 12 @@ -14326,15 +16522,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 7, y: 22, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 23, z: 0} second: m_TileIndex: 12 @@ -14506,15 +16693,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 7, y: 23, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 24, z: 0} second: m_TileIndex: 12 @@ -14686,238 +16864,13 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 7, y: 24, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 7, y: 25, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 7, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 8, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 9, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 10, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 11, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 12, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 13, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 14, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 15, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 16, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 17, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 18, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 19, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 20, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 21, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 m_AnimatedTiles: {} m_TileAssetArray: - - m_RefCount: 157 + - m_RefCount: 90 m_Data: {fileID: 11400000, guid: ca91fd5a42f687b478b84ef596a827a0, type: 2} - - m_RefCount: 52 + - m_RefCount: 129 m_Data: {fileID: 11400000, guid: 130ed88ee3648824fa768b217083c920, type: 2} - - m_RefCount: 43 + - m_RefCount: 68 m_Data: {fileID: 11400000, guid: 2de7b0f0733e48b4e9edc42c2615b655, type: 2} - m_RefCount: 17 m_Data: {fileID: 11400000, guid: b57ce351ab1dc7444b4c867eb6efaed7, type: 2} @@ -14929,29 +16882,29 @@ Tilemap: m_Data: {fileID: 11400000, guid: 94354de278be79f46abbc01acd6ef75b, type: 2} - m_RefCount: 8 m_Data: {fileID: 11400000, guid: 5adb3225d120a054fbf81bb5a404c4ce, type: 2} - - m_RefCount: 2 - m_Data: {fileID: 11400000, guid: 2b65a0e55fbcea044bfeaafaa58fc12e, type: 2} - m_RefCount: 1 - m_Data: {fileID: 11400000, guid: d99bffda89e998f44a528736afeba506, type: 2} - - m_RefCount: 89 + m_Data: {fileID: 11400000, guid: 2b65a0e55fbcea044bfeaafaa58fc12e, type: 2} + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 56 m_Data: {fileID: 11400000, guid: 3dbd90533ef15db4587b15844371a1a0, type: 2} - m_RefCount: 1 m_Data: {fileID: 11400000, guid: 44c4901211c570a40a539f328a3548f7, type: 2} - - m_RefCount: 623 + - m_RefCount: 706 m_Data: {fileID: 11400000, guid: d1b1f72ef6c03124398362c5190e4331, type: 2} - - m_RefCount: 540 + - m_RefCount: 650 m_Data: {fileID: 11400000, guid: fe870f9ec6f4ae34e8e9a8f6b0ebee0f, type: 2} - m_RefCount: 2 m_Data: {fileID: 11400000, guid: e0fa89356dab8214bba5bb45e5006442, type: 2} + - m_RefCount: 0 + m_Data: {fileID: 0} - m_RefCount: 1 - m_Data: {fileID: 11400000, guid: 990d24b733d95814b9ef71943ff14b91, type: 2} - - m_RefCount: 1 - m_Data: {fileID: 11400000, guid: 9053aca0fd8fe9a45b4176b178b58d98, type: 2} - - m_RefCount: 13 + m_Data: {fileID: 11400000, guid: d99bffda89e998f44a528736afeba506, type: 2} + - m_RefCount: 17 m_Data: {fileID: 11400000, guid: 86df53fa343039246aacddb6f1fff3fc, type: 2} - - m_RefCount: 13 + - m_RefCount: 17 m_Data: {fileID: 11400000, guid: f4bf9be29b9d8444f89c8d2fc4b8ab52, type: 2} - - m_RefCount: 13 + - m_RefCount: 17 m_Data: {fileID: 11400000, guid: 85cc5aefc5354fa4897166207293ebfd, type: 2} - m_RefCount: 1 m_Data: {fileID: 11400000, guid: 1ba1c88770c380047a4a94433f0d23b8, type: 2} @@ -14963,30 +16916,30 @@ Tilemap: m_Data: {fileID: 11400000, guid: ee7639369e67faf499acd5a2035fc14b, type: 2} - m_RefCount: 1 m_Data: {fileID: 11400000, guid: bdd8728452b40404686bf2f2cbc85fef, type: 2} + - m_RefCount: 1 + m_Data: {fileID: 11400000, guid: 990d24b733d95814b9ef71943ff14b91, type: 2} + - m_RefCount: 1 + m_Data: {fileID: 11400000, guid: 9053aca0fd8fe9a45b4176b178b58d98, type: 2} + - m_RefCount: 1 + m_Data: {fileID: 11400000, guid: 34e0b1cbe776f0c4c9e14b7bc93a97c4, type: 2} + - m_RefCount: 3 + m_Data: {fileID: 11400000, guid: 860ec7105ceaa0f45856d5887a200c2b, type: 2} + - m_RefCount: 3 + m_Data: {fileID: 11400000, guid: d23a1770e4bc0d644925bf2944720e19, type: 2} - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} + - m_RefCount: 1 + m_Data: {fileID: 11400000, guid: 4d048bd84c35d974d8a332ac696a6de6, type: 2} + - m_RefCount: 2 + m_Data: {fileID: 11400000, guid: 29c751ee65b3aa14eb300e78fc91333a, type: 2} + - m_RefCount: 1 + m_Data: {fileID: 11400000, guid: c3131e196f0ddfc44af49738f064fcb1, type: 2} m_TileSpriteArray: - - m_RefCount: 157 + - m_RefCount: 90 m_Data: {fileID: 21300028, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - - m_RefCount: 52 + - m_RefCount: 129 m_Data: {fileID: 21300056, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - - m_RefCount: 43 + - m_RefCount: 68 m_Data: {fileID: 21300058, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - m_RefCount: 17 m_Data: {fileID: 21300026, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} @@ -14998,40 +16951,40 @@ Tilemap: m_Data: {fileID: 21300330, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - m_RefCount: 8 m_Data: {fileID: 21300306, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - - m_RefCount: 2 - m_Data: {fileID: 21300376, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 89 + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 56 m_Data: {fileID: 21300002, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 623 + - m_RefCount: 706 m_Data: {fileID: 21300250, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - - m_RefCount: 540 + - m_RefCount: 650 m_Data: {fileID: 21300252, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - m_RefCount: 2 m_Data: {fileID: 21300274, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 13 + - m_RefCount: 1 + m_Data: {fileID: 21300376, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} + - m_RefCount: 3 + m_Data: {fileID: 21300276, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} + - m_RefCount: 17 m_Data: {fileID: 21300238, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - - m_RefCount: 13 + - m_RefCount: 17 m_Data: {fileID: 21300240, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - - m_RefCount: 13 + - m_RefCount: 17 m_Data: {fileID: 21300242, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} - - m_RefCount: 0 - m_Data: {fileID: 0} + - m_RefCount: 3 + m_Data: {fileID: 21300284, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 21300280, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 21300012, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} + - m_RefCount: 2 + m_Data: {fileID: 21300010, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} + - m_RefCount: 1 + m_Data: {fileID: 21300008, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - m_RefCount: 1 m_Data: {fileID: 21300188, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - m_RefCount: 1 @@ -15051,7 +17004,7 @@ Tilemap: - m_RefCount: 1 m_Data: {fileID: 21300264, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} m_TileMatrixArray: - - m_RefCount: 1607 + - m_RefCount: 1824 m_Data: e00: 1 e01: 0 @@ -15070,12 +17023,12 @@ Tilemap: e32: 0 e33: 1 m_TileColorArray: - - m_RefCount: 1607 + - m_RefCount: 1824 m_Data: {r: 1, g: 1, b: 1, a: 1} m_AnimationFrameRate: 1 m_Color: {r: 1, g: 1, b: 1, a: 1} m_Origin: {x: -38, y: -19, z: 0} - m_Size: {x: 84, y: 46, z: 1} + m_Size: {x: 84, y: 48, z: 1} m_TileAnchor: {x: 0.5, y: 0.5, z: 0} m_TileOrientation: 0 m_TileOrientationMatrix: @@ -15122,7 +17075,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 102694163} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 31.5, y: -12.04, z: 0} + m_LocalPosition: {x: 17.6, y: -12.04, z: 0} m_LocalScale: {x: 1.5, y: 1.35, z: 1} m_Children: [] m_Father: {fileID: 2065312515} @@ -15141,7 +17094,7 @@ BoxCollider2D: m_IsTrigger: 1 m_UsedByEffector: 0 m_UsedByComposite: 0 - m_Offset: {x: 0.10917696, y: -0.051176988} + m_Offset: {x: -0.0030189902, y: -0.016548455} m_SpriteTilingProperty: border: {x: 0, y: 0, z: 0, w: 0} pivot: {x: 0.5, y: 0.5} @@ -15152,7 +17105,7 @@ BoxCollider2D: adaptiveTiling: 0 m_AutoTiling: 0 serializedVersion: 2 - m_Size: {x: 0.22375947, y: 0.22376029} + m_Size: {x: 0.44815138, y: 0.2930174} m_EdgeRadius: 0 --- !u!58 &102694166 CircleCollider2D: @@ -15551,11 +17504,11 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 393209932} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -7.94, y: 8.42, z: 0} + m_LocalPosition: {x: -12.77, y: 8.42, z: 0} m_LocalScale: {x: 3, y: 5, z: 1} m_Children: [] - m_Father: {fileID: 2065312515} - m_RootOrder: 11 + m_Father: {fileID: 676123013} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!50 &393209934 Rigidbody2D: @@ -15877,7 +17830,7 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 519420028} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -18.93, y: 0.91, z: -10} + m_LocalPosition: {x: 15.53, y: -7.3, z: -10} m_LocalScale: {x: 2.72, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} @@ -16193,6 +18146,43 @@ BoxCollider2D: serializedVersion: 2 m_Size: {x: 2.9584332, y: 0.41242218} m_EdgeRadius: 0 +--- !u!1 &676123012 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 676123013} + m_Layer: 8 + m_Name: Spikes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &676123013 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 676123012} + 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: 393209933} + - {fileID: 1730180298} + - {fileID: 1628328974} + - {fileID: 1278801702} + - {fileID: 1923052907} + - {fileID: 1676631303} + - {fileID: 1208994406} + m_Father: {fileID: 2065312515} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &697734696 GameObject: m_ObjectHideFlags: 0 @@ -17372,87 +19362,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 26, y: -18, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -18, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -18, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -18, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -18, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -18, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -18, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -18, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -18, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -35, y: -17, z: 0} second: m_TileIndex: 12 @@ -18002,87 +19911,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 26, y: -17, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -17, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -17, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -17, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -17, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -17, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -17, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -17, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -17, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -35, y: -16, z: 0} second: m_TileIndex: 12 @@ -18632,87 +20460,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 26, y: -16, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -16, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -16, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -16, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -16, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -16, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -16, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -16, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -16, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -35, y: -15, z: 0} second: m_TileIndex: 12 @@ -19262,87 +21009,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 26, y: -15, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -15, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -15, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -15, z: 0} - second: - m_TileIndex: 12 - m_TileSpriteIndex: 12 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -15, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -15, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -15, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -15, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -15, z: 0} - second: - m_TileIndex: 13 - m_TileSpriteIndex: 13 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -35, y: -14, z: 0} second: m_TileIndex: 12 @@ -19847,132 +21513,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -14, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -35, y: -13, z: 0} second: m_TileIndex: 12 @@ -20477,168 +22017,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: -13, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: -13, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: -13, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -35, y: -12, z: 0} second: m_TileIndex: 12 @@ -21143,168 +22521,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -12, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -12, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -12, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -12, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -12, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -12, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -12, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -12, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -12, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -12, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -12, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -12, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -12, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -12, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: -12, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: -12, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: -12, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: -12, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -35, y: -11, z: 0} second: m_TileIndex: 12 @@ -21809,168 +23025,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -11, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -11, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -11, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -11, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -11, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -11, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -11, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -11, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -11, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -11, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -11, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -11, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -11, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -11, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: -11, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: -11, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: -11, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: -11, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: -10, z: 0} second: m_TileIndex: 12 @@ -22484,168 +23538,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -10, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -10, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -10, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -10, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -10, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -10, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -10, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -10, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -10, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -10, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -10, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -10, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -10, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -10, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: -10, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: -10, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: -10, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: -10, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: -9, z: 0} second: m_TileIndex: 12 @@ -23159,168 +24051,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -9, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -9, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -9, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -9, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -9, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -9, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -9, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -9, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -9, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -9, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -9, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -9, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -9, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -9, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: -9, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: -9, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: -9, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: -9, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: -8, z: 0} second: m_TileIndex: 12 @@ -23834,168 +24564,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -8, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -8, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -8, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -8, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -8, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -8, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -8, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -8, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -8, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -8, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -8, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -8, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -8, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -8, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: -8, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: -8, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: -8, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: -8, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: -7, z: 0} second: m_TileIndex: 12 @@ -24509,168 +25077,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -7, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -7, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -7, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -7, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -7, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -7, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -7, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -7, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -7, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -7, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -7, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -7, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -7, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -7, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: -7, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: -7, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: -7, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: -7, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: -6, z: 0} second: m_TileIndex: 12 @@ -25184,168 +25590,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: -6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: -6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: -6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: -6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -38, y: -5, z: 0} second: m_TileIndex: 12 @@ -25877,168 +26121,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: -5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: -5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: -5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: -5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -38, y: -4, z: 0} second: m_TileIndex: 12 @@ -26570,168 +26652,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -4, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -4, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -4, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -4, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -4, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -4, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: -4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: -4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: -4, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: -4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: -3, z: 0} second: m_TileIndex: 12 @@ -27245,168 +27165,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: -3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: -3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: -3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: -3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: -2, z: 0} second: m_TileIndex: 12 @@ -27920,168 +27678,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -2, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -2, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -2, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -2, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -2, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -2, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: -2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: -2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: -2, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: -2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: -1, z: 0} second: m_TileIndex: 12 @@ -28595,168 +28191,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: -1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: -1, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: -1, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: -1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: -1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: -1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: -1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: -1, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: -1, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: -1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: -1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: -1, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: -1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: -1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: -1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: -1, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: -1, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: -1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 0, z: 0} second: m_TileIndex: 12 @@ -29270,168 +28704,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: 0, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: 0, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: 0, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: 0, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: 0, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: 0, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: 0, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: 0, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: 0, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: 0, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: 0, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: 0, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: 0, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: 0, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: 0, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: 0, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: 0, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: 0, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 1, z: 0} second: m_TileIndex: 12 @@ -29945,168 +29217,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: 1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: 1, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: 1, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: 1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: 1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: 1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: 1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: 1, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: 1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: 1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: 1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: 1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: 1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: 1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: 1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: 1, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: 1, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: 1, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 2, z: 0} second: m_TileIndex: 12 @@ -30620,168 +29730,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: 2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: 2, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: 2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: 2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: 2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: 2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: 2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: 2, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: 2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: 2, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: 2, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: 2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: 2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: 2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: 2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: 2, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: 2, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: 2, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 3, z: 0} second: m_TileIndex: 12 @@ -31295,168 +30243,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: 3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: 3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: 3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: 3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: 3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: 3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: 3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: 3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: 3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: 3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: 3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: 3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: 3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: 3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: 3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: 3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: 3, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: 3, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 4, z: 0} second: m_TileIndex: 12 @@ -31970,168 +30756,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: 4, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: 4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: 4, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: 4, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: 4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: 4, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: 4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: 4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: 4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: 4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: 4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: 4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: 4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: 4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: 4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: 4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: 4, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: 4, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 5, z: 0} second: m_TileIndex: 12 @@ -32645,168 +31269,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: 5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: 5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: 5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: 5, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: 5, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 6, z: 0} second: m_TileIndex: 12 @@ -33259,8 +31721,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 14, y: 6, z: 0} second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -33320,168 +31782,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: 6, z: 0} - second: - m_TileIndex: 33 - m_TileSpriteIndex: 24 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 38, y: 6, z: 0} - second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 7, z: 0} second: m_TileIndex: 12 @@ -33572,42 +31872,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: -26, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: -25, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: -24, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: -23, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -22, y: 7, z: 0} second: m_TileIndex: 33 @@ -33896,28 +32160,10 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 10, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 11, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: 12, y: 7, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 33 + m_TileSpriteIndex: 24 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -33925,8 +32171,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 13, y: 7, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 33 + m_TileSpriteIndex: 24 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -33934,8 +32180,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 14, y: 7, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -33943,8 +32189,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 15, y: 7, z: 0} second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -33995,159 +32241,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 21, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: 7, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 8, z: 0} second: m_TileIndex: 12 @@ -34249,8 +32342,8 @@ Tilemap: m_ColliderType: 1 - first: {x: -25, y: 8, z: 0} second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 + m_TileIndex: 33 + m_TileSpriteIndex: 24 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34537,8 +32630,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 7, y: 8, z: 0} second: - m_TileIndex: 32 - m_TileSpriteIndex: 23 + m_TileIndex: 33 + m_TileSpriteIndex: 24 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34546,8 +32639,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 8, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34555,8 +32648,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 9, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34564,8 +32657,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 10, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34573,8 +32666,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 11, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34582,8 +32675,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 12, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 33 + m_TileSpriteIndex: 24 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34591,8 +32684,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 13, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 33 + m_TileSpriteIndex: 24 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34600,8 +32693,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 14, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34609,8 +32702,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 15, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 33 + m_TileSpriteIndex: 24 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34618,8 +32711,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 16, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 33 + m_TileSpriteIndex: 24 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34627,8 +32720,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 17, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 33 + m_TileSpriteIndex: 24 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34636,8 +32729,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 18, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34645,8 +32738,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 19, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34654,8 +32747,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 20, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -34663,152 +32756,8 @@ Tilemap: m_ColliderType: 1 - first: {x: 21, y: 8, z: 0} second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 30, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 31, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 32, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 33, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 34, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 35, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 36, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 37, y: 8, z: 0} - second: - m_TileIndex: 10 - m_TileSpriteIndex: 10 + m_TileIndex: 32 + m_TileSpriteIndex: 23 m_TileMatrixIndex: 0 m_TileColorIndex: 0 m_ObjectToInstantiate: {fileID: 0} @@ -35202,6 +33151,132 @@ Tilemap: m_TileFlags: 1 m_ColliderType: 1 - first: {x: 7, y: 9, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 8, y: 9, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 9, y: 9, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 10, y: 9, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 11, y: 9, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 12, y: 9, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 13, y: 9, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 14, y: 9, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 15, y: 9, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 16, y: 9, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 17, y: 9, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 18, y: 9, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 19, y: 9, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 20, y: 9, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: 9, z: 0} second: m_TileIndex: 32 m_TileSpriteIndex: 23 @@ -35606,6 +33681,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 8, y: 10, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 9, y: 10, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 10, y: 10, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 11, y: 10, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 12, y: 10, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 13, y: 10, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 14, y: 10, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 15, y: 10, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 16, y: 10, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 17, y: 10, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 18, y: 10, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 19, y: 10, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 20, y: 10, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: 10, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: 11, z: 0} second: m_TileIndex: 12 @@ -35994,6 +34195,132 @@ Tilemap: m_TileFlags: 1 m_ColliderType: 1 - first: {x: 7, y: 11, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 8, y: 11, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 9, y: 11, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 10, y: 11, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 11, y: 11, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 12, y: 11, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 13, y: 11, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 14, y: 11, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 15, y: 11, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 16, y: 11, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 17, y: 11, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 18, y: 11, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 19, y: 11, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 20, y: 11, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: 11, z: 0} second: m_TileIndex: 32 m_TileSpriteIndex: 23 @@ -36390,6 +34717,132 @@ Tilemap: m_TileFlags: 1 m_ColliderType: 1 - first: {x: 7, y: 12, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 8, y: 12, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 9, y: 12, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 10, y: 12, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 11, y: 12, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 12, y: 12, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 13, y: 12, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 14, y: 12, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 15, y: 12, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 16, y: 12, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 17, y: 12, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 18, y: 12, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 19, y: 12, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 20, y: 12, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: 12, z: 0} second: m_TileIndex: 32 m_TileSpriteIndex: 23 @@ -36786,6 +35239,132 @@ Tilemap: m_TileFlags: 1 m_ColliderType: 1 - first: {x: 7, y: 13, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 8, y: 13, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 9, y: 13, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 10, y: 13, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 11, y: 13, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 12, y: 13, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 13, y: 13, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 14, y: 13, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 15, y: 13, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 16, y: 13, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 17, y: 13, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 18, y: 13, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 19, y: 13, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 20, y: 13, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: 13, z: 0} second: m_TileIndex: 32 m_TileSpriteIndex: 23 @@ -37182,6 +35761,132 @@ Tilemap: m_TileFlags: 1 m_ColliderType: 1 - first: {x: 7, y: 14, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 8, y: 14, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 9, y: 14, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 10, y: 14, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 11, y: 14, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 12, y: 14, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 13, y: 14, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 14, y: 14, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 15, y: 14, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 16, y: 14, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 17, y: 14, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 18, y: 14, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 19, y: 14, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 20, y: 14, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: 14, z: 0} second: m_TileIndex: 32 m_TileSpriteIndex: 23 @@ -37586,6 +36291,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 8, y: 15, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 9, y: 15, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 10, y: 15, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 11, y: 15, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 12, y: 15, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 13, y: 15, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 14, y: 15, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 15, y: 15, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 16, y: 15, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 17, y: 15, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 18, y: 15, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 19, y: 15, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 20, y: 15, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: 15, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: 16, z: 0} second: m_TileIndex: 12 @@ -37982,6 +36813,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 8, y: 16, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 9, y: 16, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 10, y: 16, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 11, y: 16, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 12, y: 16, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 13, y: 16, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 14, y: 16, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 15, y: 16, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 16, y: 16, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 17, y: 16, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 18, y: 16, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 19, y: 16, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 20, y: 16, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: 16, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: 17, z: 0} second: m_TileIndex: 12 @@ -38370,6 +37327,132 @@ Tilemap: m_TileFlags: 1 m_ColliderType: 1 - first: {x: 7, y: 17, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 8, y: 17, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 9, y: 17, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 10, y: 17, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 11, y: 17, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 12, y: 17, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 13, y: 17, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 14, y: 17, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 15, y: 17, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 16, y: 17, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 17, y: 17, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 18, y: 17, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 19, y: 17, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 20, y: 17, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: 17, z: 0} second: m_TileIndex: 32 m_TileSpriteIndex: 23 @@ -38766,6 +37849,132 @@ Tilemap: m_TileFlags: 1 m_ColliderType: 1 - first: {x: 7, y: 18, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 8, y: 18, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 9, y: 18, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 10, y: 18, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 11, y: 18, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 12, y: 18, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 13, y: 18, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 14, y: 18, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 15, y: 18, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 16, y: 18, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 17, y: 18, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 18, y: 18, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 19, y: 18, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 20, y: 18, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: 18, z: 0} second: m_TileIndex: 32 m_TileSpriteIndex: 23 @@ -39170,6 +38379,132 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 + - first: {x: 8, y: 19, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 9, y: 19, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 10, y: 19, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 11, y: 19, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 12, y: 19, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 13, y: 19, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 14, y: 19, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 15, y: 19, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 16, y: 19, z: 0} + second: + m_TileIndex: 33 + m_TileSpriteIndex: 24 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 17, y: 19, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 18, y: 19, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 19, y: 19, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 20, y: 19, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 + - first: {x: 21, y: 19, z: 0} + second: + m_TileIndex: 32 + m_TileSpriteIndex: 23 + m_TileMatrixIndex: 0 + m_TileColorIndex: 0 + m_ObjectToInstantiate: {fileID: 0} + m_TileFlags: 1 + m_ColliderType: 1 - first: {x: -36, y: 20, z: 0} second: m_TileIndex: 12 @@ -39737,15 +39072,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 7, y: 21, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 22, z: 0} second: m_TileIndex: 12 @@ -39917,15 +39243,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 7, y: 22, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 23, z: 0} second: m_TileIndex: 12 @@ -40097,15 +39414,6 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 7, y: 23, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - first: {x: -36, y: 24, z: 0} second: m_TileIndex: 12 @@ -40277,234 +39585,9 @@ Tilemap: m_ObjectToInstantiate: {fileID: 0} m_TileFlags: 1 m_ColliderType: 1 - - first: {x: 7, y: 24, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 7, y: 25, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 7, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 8, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 9, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 10, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 11, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 12, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 13, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 14, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 15, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 16, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 17, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 18, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 19, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 20, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 21, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 22, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 23, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 24, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 25, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 26, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 27, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 28, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 - - first: {x: 29, y: 26, z: 0} - second: - m_TileIndex: 0 - m_TileSpriteIndex: 0 - m_TileMatrixIndex: 0 - m_TileColorIndex: 0 - m_ObjectToInstantiate: {fileID: 0} - m_TileFlags: 1 - m_ColliderType: 1 m_AnimatedTiles: {} m_TileAssetArray: - - m_RefCount: 157 + - m_RefCount: 88 m_Data: {fileID: 11400000, guid: ca91fd5a42f687b478b84ef596a827a0, type: 2} - m_RefCount: 52 m_Data: {fileID: 11400000, guid: 130ed88ee3648824fa768b217083c920, type: 2} @@ -40524,13 +39607,13 @@ Tilemap: m_Data: {fileID: 0} - m_RefCount: 1 m_Data: {fileID: 11400000, guid: d99bffda89e998f44a528736afeba506, type: 2} - - m_RefCount: 30 - m_Data: {fileID: 11400000, guid: 3dbd90533ef15db4587b15844371a1a0, type: 2} - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 623 + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 609 m_Data: {fileID: 11400000, guid: d1b1f72ef6c03124398362c5190e4331, type: 2} - - m_RefCount: 540 + - m_RefCount: 518 m_Data: {fileID: 11400000, guid: fe870f9ec6f4ae34e8e9a8f6b0ebee0f, type: 2} - m_RefCount: 2 m_Data: {fileID: 11400000, guid: e0fa89356dab8214bba5bb45e5006442, type: 2} @@ -40568,12 +39651,12 @@ Tilemap: m_Data: {fileID: 0} - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 507 + - m_RefCount: 390 m_Data: {fileID: 11400000, guid: 2241d7c80c0c39041acd7163ef269991, type: 2} - - m_RefCount: 613 + - m_RefCount: 542 m_Data: {fileID: 11400000, guid: d51a21c25b37f0b43b83bff8c61c2f58, type: 2} m_TileSpriteArray: - - m_RefCount: 157 + - m_RefCount: 88 m_Data: {fileID: 21300028, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - m_RefCount: 52 m_Data: {fileID: 21300056, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} @@ -40593,13 +39676,13 @@ Tilemap: m_Data: {fileID: 0} - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 30 - m_Data: {fileID: 21300002, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 623 + - m_RefCount: 0 + m_Data: {fileID: 0} + - m_RefCount: 609 m_Data: {fileID: 21300250, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - - m_RefCount: 540 + - m_RefCount: 518 m_Data: {fileID: 21300252, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - m_RefCount: 2 m_Data: {fileID: 21300274, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} @@ -40619,9 +39702,9 @@ Tilemap: m_Data: {fileID: 0} - m_RefCount: 0 m_Data: {fileID: 0} - - m_RefCount: 507 + - m_RefCount: 390 m_Data: {fileID: 21300200, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - - m_RefCount: 613 + - m_RefCount: 542 m_Data: {fileID: 21300198, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} - m_RefCount: 0 m_Data: {fileID: 0} @@ -40642,7 +39725,7 @@ Tilemap: - m_RefCount: 1 m_Data: {fileID: 21300264, guid: c76f269a5db22564b9bffd16ff3b9a0d, type: 3} m_TileMatrixArray: - - m_RefCount: 2645 + - m_RefCount: 2322 m_Data: e00: 1 e01: 0 @@ -40661,12 +39744,12 @@ Tilemap: e32: 0 e33: 1 m_TileColorArray: - - m_RefCount: 2645 + - m_RefCount: 2322 m_Data: {r: 1, g: 1, b: 1, a: 1} m_AnimationFrameRate: 1 m_Color: {r: 1, g: 1, b: 1, a: 1} m_Origin: {x: -38, y: -19, z: 0} - m_Size: {x: 84, y: 46, z: 1} + m_Size: {x: 84, y: 47, z: 1} m_TileAnchor: {x: 0.5, y: 0.5, z: 0} m_TileOrientation: 0 m_TileOrientationMatrix: @@ -40713,11 +39796,11 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1208994405} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -8.42, y: 8.42, z: 0} + m_LocalPosition: {x: -13.22, y: 8.42, z: 0} m_LocalScale: {x: 3, y: 5, z: 1} m_Children: [] - m_Father: {fileID: 2065312515} - m_RootOrder: 10 + m_Father: {fileID: 676123013} + m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!61 &1208994407 BoxCollider2D: @@ -40846,6 +39929,134 @@ Transform: m_Father: {fileID: 0} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1278801701 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1278801702} + - component: {fileID: 1278801705} + - component: {fileID: 1278801704} + - component: {fileID: 1278801703} + m_Layer: 9 + m_Name: spikes-top + m_TagString: Enemy + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1278801702 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1278801701} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -22.55, y: 6.82, z: 0} + m_LocalScale: {x: 2.1625, y: 3.15, z: 1} + m_Children: [] + m_Father: {fileID: 676123013} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!61 &1278801703 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1278801701} + m_Enabled: 1 + m_Density: 1 + m_Material: {fileID: 0} + m_IsTrigger: 1 + m_UsedByEffector: 0 + m_UsedByComposite: 0 + m_Offset: {x: 0, y: 0} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0.5, y: 0.5} + oldSize: {x: 0.15, y: 0.09} + newSize: {x: 0.15, y: 0.09} + adaptiveTilingThreshold: 0.5 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + serializedVersion: 2 + m_Size: {x: 0.15, y: 0.09} + m_EdgeRadius: 0 +--- !u!50 &1278801704 +Rigidbody2D: + serializedVersion: 4 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1278801701} + m_BodyType: 2 + m_Simulated: 1 + m_UseFullKinematicContacts: 0 + m_UseAutoMass: 0 + m_Mass: 1 + m_LinearDrag: 0 + m_AngularDrag: 0.05 + m_GravityScale: 1 + m_Material: {fileID: 6200000, guid: 7b391298c96b4d146bc9552d744f9f8a, type: 2} + m_Interpolate: 0 + m_SleepingMode: 1 + m_CollisionDetection: 0 + m_Constraints: 0 +--- !u!212 &1278801705 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1278801701} + 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: 10754, guid: 0000000000000000f000000000000000, type: 0} + 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: -1143351675 + m_SortingLayer: 3 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: c6803a2a3fe7f45e786b788e8ddb6771, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.15, y: 0.09} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 --- !u!1 &1461942043 GameObject: m_ObjectHideFlags: 0 @@ -40950,164 +40161,426 @@ SpriteRenderer: m_SortingLayerID: -1143351675 m_SortingLayer: 3 m_SortingOrder: 0 - m_Sprite: {fileID: 21300000, guid: 07816604be5be104ba2d0abfbece5e70, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 0.64, y: 0.64} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!58 &1472312209 -CircleCollider2D: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1472312206} - m_Enabled: 1 - m_Density: 1 - m_Material: {fileID: 0} - m_IsTrigger: 1 - m_UsedByEffector: 0 - m_UsedByComposite: 0 - m_Offset: {x: 0.003745397, y: 0.0149811115} - serializedVersion: 2 - m_Radius: 0.15146191 ---- !u!1 &1546236267 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1546236268} - - component: {fileID: 1546236269} - m_Layer: 9 - m_Name: Floor - m_TagString: Wall - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1546236268 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1546236267} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -9.49, y: -4.56, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 460839038} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!61 &1546236269 -BoxCollider2D: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1546236267} - m_Enabled: 1 - m_Density: 1 - m_Material: {fileID: 0} - m_IsTrigger: 0 - m_UsedByEffector: 0 - m_UsedByComposite: 0 - m_Offset: {x: 4.4743023, y: 0.07351732} - m_SpriteTilingProperty: - border: {x: 0, y: 0, z: 0, w: 0} - pivot: {x: 0, y: 0} - oldSize: {x: 0, y: 0} - newSize: {x: 0, y: 0} - adaptiveTilingThreshold: 0 - drawMode: 0 - adaptiveTiling: 0 - m_AutoTiling: 0 - serializedVersion: 2 - m_Size: {x: 9.948605, y: 1.1470346} - m_EdgeRadius: 0 ---- !u!1 &1628328973 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1628328974} - - component: {fileID: 1628328975} - m_Layer: 0 - m_Name: spike-skull - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1628328974 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1628328973} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -9.213, y: 8.328, z: 0} - m_LocalScale: {x: 2.8259, y: 2.5723, z: 1} - m_Children: [] - m_Father: {fileID: 2065312515} - m_RootOrder: 13 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &1628328975 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1628328973} - 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: 10754, guid: 0000000000000000f000000000000000, type: 0} - 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: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 1914031289 - m_SortingLayer: 2 - m_SortingOrder: 0 - m_Sprite: {fileID: 21300000, guid: a225befe4953547da8c4133e5d585029, type: 3} + m_Sprite: {fileID: 21300000, guid: 07816604be5be104ba2d0abfbece5e70, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.64, y: 0.64} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!58 &1472312209 +CircleCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1472312206} + m_Enabled: 1 + m_Density: 1 + m_Material: {fileID: 0} + m_IsTrigger: 1 + m_UsedByEffector: 0 + m_UsedByComposite: 0 + m_Offset: {x: 0.003745397, y: 0.0149811115} + serializedVersion: 2 + m_Radius: 0.15146191 +--- !u!1 &1546236267 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1546236268} + - component: {fileID: 1546236269} + m_Layer: 9 + m_Name: Floor + m_TagString: Wall + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1546236268 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1546236267} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -9.49, y: -4.56, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 460839038} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!61 &1546236269 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1546236267} + m_Enabled: 1 + m_Density: 1 + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_UsedByEffector: 0 + m_UsedByComposite: 0 + m_Offset: {x: 4.4743023, y: 0.07351732} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0, y: 0} + oldSize: {x: 0, y: 0} + newSize: {x: 0, y: 0} + adaptiveTilingThreshold: 0 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + serializedVersion: 2 + m_Size: {x: 9.948605, y: 1.1470346} + m_EdgeRadius: 0 +--- !u!1 &1553272769 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1553272772} + - component: {fileID: 1553272771} + - component: {fileID: 1553272770} + - component: {fileID: 1553272774} + m_Layer: 9 + m_Name: Moving + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!61 &1553272770 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1553272769} + m_Enabled: 1 + m_Density: 1 + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_UsedByEffector: 0 + m_UsedByComposite: 0 + m_Offset: {x: -0.0011729673, y: 0.004400499} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0.5, y: 0.5} + oldSize: {x: 0.32, y: 0.16} + newSize: {x: 0.32, y: 0.16} + adaptiveTilingThreshold: 0.5 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + serializedVersion: 2 + m_Size: {x: 0.31765407, y: 0.151199} + m_EdgeRadius: 0 +--- !u!212 &1553272771 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1553272769} + 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: 10754, guid: 0000000000000000f000000000000000, type: 0} + 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: -1143351675 + m_SortingLayer: 3 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: 15fdc3c0ac15e4a62b3f968392db8b58, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.32, y: 0.16} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!4 &1553272772 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1553272769} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 14.02, y: -11.01, z: 0} + m_LocalScale: {x: 8.485134, y: 4.3964143, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1553272774 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1553272769} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2972f97baab0e18479470d5746e83b25, type: 3} + m_Name: + m_EditorClassIdentifier: + collisionMask: + serializedVersion: 2 + m_Bits: 0 + horizontalRayCount: 8 + verticalRayCount: 10 + horizontalRaySpacing: 0 + verticalRaySpacing: 0 + collider: {fileID: 0} + passengerMask: + serializedVersion: 2 + m_Bits: 256 + move: {x: 0, y: 1.5, z: 0} + localWaypoints: + - {x: 0, y: 18.61, z: 0} + - {x: 0, y: 0, z: 0} +--- !u!1 &1628328973 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1628328974} + - component: {fileID: 1628328975} + m_Layer: 0 + m_Name: spike-skull + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1628328974 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1628328973} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -11.4, y: 8.328, z: 0} + m_LocalScale: {x: 2.8259, y: 2.5723, z: 1} + m_Children: [] + m_Father: {fileID: 676123013} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &1628328975 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1628328973} + 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: 10754, guid: 0000000000000000f000000000000000, type: 0} + 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 1914031289 + m_SortingLayer: 2 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: a225befe4953547da8c4133e5d585029, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.17, y: 0.12} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!1 &1676631302 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1676631303} + - component: {fileID: 1676631306} + - component: {fileID: 1676631305} + - component: {fileID: 1676631304} + m_Layer: 9 + m_Name: spikes-top (2) + m_TagString: Enemy + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1676631303 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1676631302} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -22.9, y: 6.82, z: 0} + m_LocalScale: {x: 2.1625, y: 3.15, z: 1} + m_Children: [] + m_Father: {fileID: 676123013} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!61 &1676631304 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1676631302} + m_Enabled: 1 + m_Density: 1 + m_Material: {fileID: 0} + m_IsTrigger: 1 + m_UsedByEffector: 0 + m_UsedByComposite: 0 + m_Offset: {x: 0, y: 0} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0.5, y: 0.5} + oldSize: {x: 0.15, y: 0.09} + newSize: {x: 0.15, y: 0.09} + adaptiveTilingThreshold: 0.5 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + serializedVersion: 2 + m_Size: {x: 0.15, y: 0.09} + m_EdgeRadius: 0 +--- !u!50 &1676631305 +Rigidbody2D: + serializedVersion: 4 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1676631302} + m_BodyType: 2 + m_Simulated: 1 + m_UseFullKinematicContacts: 0 + m_UseAutoMass: 0 + m_Mass: 1 + m_LinearDrag: 0 + m_AngularDrag: 0.05 + m_GravityScale: 1 + m_Material: {fileID: 6200000, guid: 7b391298c96b4d146bc9552d744f9f8a, type: 2} + m_Interpolate: 0 + m_SleepingMode: 1 + m_CollisionDetection: 0 + m_Constraints: 0 +--- !u!212 &1676631306 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1676631302} + 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: 10754, guid: 0000000000000000f000000000000000, type: 0} + 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: -1143351675 + m_SortingLayer: 3 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: c6803a2a3fe7f45e786b788e8ddb6771, type: 3} m_Color: {r: 1, g: 1, b: 1, a: 1} m_FlipX: 0 m_FlipY: 0 m_DrawMode: 0 - m_Size: {x: 0.17, y: 0.12} + m_Size: {x: 0.15, y: 0.09} m_AdaptiveModeThreshold: 0.5 m_SpriteTileMode: 0 m_WasSpriteAssigned: 1 @@ -41170,11 +40643,11 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1730180297} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -7.5, y: 8.42, z: 0} + m_LocalPosition: {x: -12.3, y: 8.42, z: 0} m_LocalScale: {x: 3, y: 5, z: 1} m_Children: [] - m_Father: {fileID: 2065312515} - m_RootOrder: 12 + m_Father: {fileID: 676123013} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!50 &1730180299 Rigidbody2D: @@ -41576,11 +41049,11 @@ GameObject: - component: {fileID: 1919620928} - component: {fileID: 1919620930} - component: {fileID: 1919620927} + - component: {fileID: 1919620932} - component: {fileID: 1919620931} - component: {fileID: 1919620926} - - component: {fileID: 1919620932} - - component: {fileID: 1919620933} - component: {fileID: 1919620929} + - component: {fileID: 1919620934} m_Layer: 8 m_Name: Ninja m_TagString: Player @@ -41600,7 +41073,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: b742c51ec22ca1d44b0b78d4bf07cd32, type: 3} m_Name: m_EditorClassIdentifier: - jumpHeight: 4 + jumpHeight: 4.5 timeToJumpApex: 0.45 currentHealth: 0 healthbar: {fileID: 1935750961} @@ -41661,12 +41134,12 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1919620925} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -22.3, y: -1.15, z: 0} + m_LocalPosition: {x: 14.21, y: -9.47, z: 0} m_LocalScale: {x: 0.67200005, y: 0.75, z: 1} m_Children: - {fileID: 1729492402} m_Father: {fileID: 0} - m_RootOrder: 3 + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!58 &1919620929 CircleCollider2D: @@ -41678,7 +41151,7 @@ CircleCollider2D: m_Enabled: 1 m_Density: 1 m_Material: {fileID: 0} - m_IsTrigger: 0 + m_IsTrigger: 1 m_UsedByEffector: 0 m_UsedByComposite: 0 m_Offset: {x: -0.1625681, y: 0.44707108} @@ -41704,7 +41177,7 @@ Rigidbody2D: m_Interpolate: 0 m_SleepingMode: 1 m_CollisionDetection: 1 - m_Constraints: 4 + m_Constraints: 0 --- !u!61 &1919620931 BoxCollider2D: m_ObjectHideFlags: 0 @@ -41718,7 +41191,7 @@ BoxCollider2D: m_IsTrigger: 0 m_UsedByEffector: 0 m_UsedByComposite: 0 - m_Offset: {x: -0.038839445, y: -0.03564942} + m_Offset: {x: -0.03883946, y: -0.067617536} m_SpriteTilingProperty: border: {x: 0, y: 0, z: 0, w: 0} pivot: {x: 0.5, y: 0.5} @@ -41729,7 +41202,7 @@ BoxCollider2D: adaptiveTiling: 0 m_AutoTiling: 0 serializedVersion: 2 - m_Size: {x: 0.7028395, y: 1.8079524} + m_Size: {x: 0.7028395, y: 1.8718886} m_EdgeRadius: 0 --- !u!114 &1919620932 MonoBehaviour: @@ -41747,7 +41220,7 @@ MonoBehaviour: bulletPrefab: {fileID: 776097286453626797, guid: 8db08d1742a9c9845b440e2adcab3ca0, type: 3} shots: 0 ---- !u!114 &1919620933 +--- !u!114 &1919620934 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -41756,7 +41229,7 @@ MonoBehaviour: m_GameObject: {fileID: 1919620925} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 36a1c430d51a93146afc47044561b487, type: 3} + m_Script: {fileID: 11500000, guid: 286b6eb439ce6f64eb66300c4a4fade8, type: 3} m_Name: m_EditorClassIdentifier: collisionMask: @@ -41764,6 +41237,137 @@ MonoBehaviour: m_Bits: 512 horizontalRayCount: 4 verticalRayCount: 4 + horizontalRaySpacing: 0 + verticalRaySpacing: 0 + collider: {fileID: 0} +--- !u!1 &1923052906 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1923052907} + - component: {fileID: 1923052910} + - component: {fileID: 1923052909} + - component: {fileID: 1923052908} + m_Layer: 9 + m_Name: spikes-top (1) + m_TagString: Enemy + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1923052907 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1923052906} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -22.21, y: 6.82, z: 0} + m_LocalScale: {x: 2.1625, y: 3.15, z: 1} + m_Children: [] + m_Father: {fileID: 676123013} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!61 &1923052908 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1923052906} + m_Enabled: 1 + m_Density: 1 + m_Material: {fileID: 0} + m_IsTrigger: 1 + m_UsedByEffector: 0 + m_UsedByComposite: 0 + m_Offset: {x: 0, y: 0} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0.5, y: 0.5} + oldSize: {x: 0.15, y: 0.09} + newSize: {x: 0.15, y: 0.09} + adaptiveTilingThreshold: 0.5 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + serializedVersion: 2 + m_Size: {x: 0.15, y: 0.09} + m_EdgeRadius: 0 +--- !u!50 &1923052909 +Rigidbody2D: + serializedVersion: 4 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1923052906} + m_BodyType: 2 + m_Simulated: 1 + m_UseFullKinematicContacts: 0 + m_UseAutoMass: 0 + m_Mass: 1 + m_LinearDrag: 0 + m_AngularDrag: 0.05 + m_GravityScale: 1 + m_Material: {fileID: 6200000, guid: 7b391298c96b4d146bc9552d744f9f8a, type: 2} + m_Interpolate: 0 + m_SleepingMode: 1 + m_CollisionDetection: 0 + m_Constraints: 0 +--- !u!212 &1923052910 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1923052906} + 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: 10754, guid: 0000000000000000f000000000000000, type: 0} + 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: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: -1143351675 + m_SortingLayer: 3 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: c6803a2a3fe7f45e786b788e8ddb6771, type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.15, y: 0.09} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 --- !u!1 &1935750959 GameObject: m_ObjectHideFlags: 0 @@ -41936,7 +41540,7 @@ Transform: - {fileID: 97675201} - {fileID: 1032666312} m_Father: {fileID: 0} - m_RootOrder: 4 + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &2041487057 GameObject: @@ -42032,10 +41636,7 @@ Transform: - {fileID: 607876420} - {fileID: 697734697} - {fileID: 1472312207} - - {fileID: 1208994406} - - {fileID: 393209933} - - {fileID: 1730180298} - - {fileID: 1628328974} + - {fileID: 676123013} m_Father: {fileID: 0} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}