【Unity】Unity 2020.2b 新機能 - Profiler の情報をランタイムで取得できる「ProfilerRecorder」

使用例 using System.Text; using Unity.Profiling; using UnityEngine; public class Example : MonoBehaviour { private string m_text; private ProfilerRecorder m_totalUsedMemoryRecorder; private ProfilerRecorder m_totalReservedMemoryRecorder; private ProfilerRecorder m_gcUsedMemoryRecorder; private Prof…