Skip to content

Instantly share code, notes, and snippets.

View Gerald-Jinx-Mouse's full-sized avatar

Jerry Mouse Gerald-Jinx-Mouse

View GitHub Profile
@mstevenson
mstevenson / Fps.cs
Last active December 28, 2025 08:43
An accurate FPS counter for Unity. Works in builds.
using UnityEngine;
using System.Collections;
public class Fps : MonoBehaviour
{
private float count;
private IEnumerator Start()
{
GUI.depth = 2;