Rasagar/Assets/Flooded_Grounds/Scripts/DisableRenderer.cs

18 lines
295 B
C#
Raw Permalink Normal View History

2024-08-26 13:07:20 -07:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DisableRenderer : MonoBehaviour {
// Use this for initialization
void Start () {
GetComponent<Renderer> ().enabled = false;
}
// Update is called once per frame
void Update () {
}
}