- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class WayPoint : MonoBehaviour {
- // Use this for initialization
- void Start () {
- this.gameObject.GetComponentInChildren<Renderer>().gameObject.SetActive(false);
- }
-
- // Update is called once per frame
- void Update () {
-
- }
- }
|