이력 | 보기 | 이력해설 | 다운로드 (219 Bytes)
using UnityEngine;
using System.Collections;
public class BallMover : MonoBehaviour
{
void Update ()
if (transform.position.y < -2f)
Destroy(gameObject);
}