1234567891011121314151617 |
- using UnityEngine;
- using System.Collections;
- public class MovePlane : MonoBehaviour
- {
- public Transform Player;
- // Use this for initialization
- void Start () {
-
- }
-
- // Update is called once per frame
- void Update ()
- {
- //transform.position = new Vector3(transform.position.x + offset, transform.position.y, transform.position.z);
- }
- }
|