Version: 2018.1

Profiler.GetTotalUnusedReservedMemoryLong

マニュアルに切り替える
public static long GetTotalUnusedReservedMemoryLong ();

戻り値

long The amount of unused memory in the reserved pools. This returns 0 if the Profiler is not available.

説明

Unity allocates memory in pools for usage when unity needs to allocate memory. This function returns the amount of unused memory in these pools.

function Update() {
    Debug.Log("Total Reserved memory by Unity: " + Profiling.Profiler.GetTotalReservedSizeLong() + "Bytes");
    Debug.Log("- Allocated memory by Unity: " + Profiling.Profiler.GetTotalAllocatedSizeLong() + "Bytes");
    Debug.Log("- Reserved but not allocated: " + Profiling.Profiler.GetTotalUnusedReservedLong() + "Bytes");
}