Skip to content

Instantly share code, notes, and snippets.

View SanketRJDave's full-sized avatar
🏠
Working from home

Sanket Dave SanketRJDave

🏠
Working from home
  • India
View GitHub Profile
@mstevenson
mstevenson / Fps.cs
Last active July 22, 2025 18:26
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;