Skip to content

Instantly share code, notes, and snippets.

View ethanedits's full-sized avatar

ethanedits

View GitHub Profile
@ethanedits
ethanedits / Render.cs
Created July 13, 2021 06:36
Render Class for GUI methods in Unity
using System;
using UnityEngine;
public class Render : MonoBehaviour
{
public static GUIStyle StringStyle { get; set; } = new GUIStyle(GUI.skin.label);
public static Color Color
{
get { return GUI.color; }