Update EnemyReturn Script for New Handle on Pasty

This commit is contained in:
Philip W 2021-11-14 14:48:16 +00:00
parent 1de99959ec
commit 5820b9c9bd

View File

@ -83,7 +83,7 @@ public class EnemyReturn : Physics2DObject
if (hasDroppableObject)
{
GameObject newDroppedObject = Instantiate<GameObject>(droppedObject);
newDroppedObject.transform.position = new Vector2(Random.Range(0, 2) + this.transform.position.x, Random.Range(0, 2) + this.transform.position.y);
newDroppedObject.transform.position = new Vector2(this.transform.position.x, this.transform.position.y);
}
Destroy(gameObject);
}