Releases: SimpleDevs-Tools/UnityUtils
Releases · SimpleDevs-Tools/UnityUtils
V1.2 - Frame Counting & FPS Update
The UnityUtils package now features a Frame Count system. A singleton can be added to any Unity Scene that, when added, starts to count three elements of the scene:
- Frame Count: The frame number of the current frame
- FPS: The number of frames per second
- Smoothed FPS: The average between the previous frame's FPS and the current frame's FPS.
Since this is a singleton, all you need is to add one component to the scene.
V1.1 - Minor Changes
Very minor changes from V1.0.0! Renamed from "HelpAttribute" to "HelpBox" and fixed some issues with the CSV Writer not properly serializing certain variable types.
V1.0.0 Release
This is the first official release of UnityUtils, which contains some helper files that may streamline workflows and add some unique elements to the Inspector.
Features:
- CSV Writer - easily write CSV files during Unity runtime.
- HelpAttribute - an Inspector-specific add-on that allows users to print short, textbox-esque descriptions inside component objects in the Inspector.
- Serializables - a collection of JSON-friendly versions of basic variable types in Unity, such as Vector3, Vector2, Vector4, Quaternion.
Minimal Unity Version:
2019.1.0b1
Required Dependencies:
- Unity Mathematics