No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FrametimeMeasurement.cs 298B

1234567891011121314
  1. using UnityEngine;
  2. namespace Unity.PerformanceTesting.Measurements
  3. {
  4. internal class FrameTimeMeasurement : MonoBehaviour
  5. {
  6. public SampleGroup SampleGroup;
  7. void Update()
  8. {
  9. Measure.Custom(SampleGroup, Time.unscaledDeltaTime * 1000);
  10. }
  11. }
  12. }