using UnityEngine; using System.Collections; public class Stage : MonoBehaviour { public Type Attribute; public enum Type { SAND, WOOD, GRASS }; public void SetPosition (Vector3 pos) { this.transform.position = pos; print ("Set (" + pos.x + ", " + pos.y + ", " + pos.z + ")"); } public void Delete() { Destroy (this.gameObject); } }