using System.Collections;using System.Collections.Generic;using UnityEngine;//한글public class shot_UP : MonoBehaviour{ Transform tr; Transform tr2; // Start is called before the first frame update void Start() { tr = this.GetComponent(); } // Update is called once per frame void Update() { transform.Translate(Vector3.up * Time.deltaTime); transform...