21 lines
345 B
C#

using UnityEngine;
using System.Collections;
public class Pillow : MonoBehaviour {
public bool IsThrown = false;
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
if (transform.position.y < -10) {
Destroy(this.gameObject);
}
}
}