https://github.com/vars1ty/fps-counter
A FPS Counter for Unity games with memory efficiency in mind.
https://github.com/vars1ty/fps-counter
unity unity2d unity3d
Last synced: 2 months ago
JSON representation
A FPS Counter for Unity games with memory efficiency in mind.
- Host: GitHub
- URL: https://github.com/vars1ty/fps-counter
- Owner: vars1ty
- License: unlicense
- Created: 2022-04-29T12:14:37.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-29T12:21:22.000Z (about 4 years ago)
- Last Synced: 2025-03-31T00:44:06.801Z (over 1 year ago)
- Topics: unity, unity2d, unity3d
- Language: C#
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FPS-Counter
A FPS Counter for Unity games with memory efficiency in mind.
## What's so different?
Rather than directly appending the integer FPS value to your UI Text, this instead creates 999 strings which counts the value upwards.
This means that you can display your games FPS without generating any garbage, resulting in better performance.