Rasagar/Assets/Flooded_Grounds/Scripts/DisableRenderer.cs
2024-08-26 23:07:20 +03:00

18 lines
295 B
C#

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 () {
}
}