版本:Unity 6 (6000.0)
语言英语
  • C#

Profiler.GetTotalUnusedReservedMemoryLong

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交的内容,但我们确实会阅读我们的用户每个建议的更改,并在适用情况下进行更新。

关闭

提交失败

由于某种原因,您建议的更改无法提交。请在几分钟后<a>重试</a>。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public static long GetTotalUnusedReservedMemoryLong();

返回

long 保留池中未使用的内存量。如果 Profiler 不可用,则返回 0。

描述

当需要分配内存时,Unity 会在池中分配内存供其使用。此函数会返回这些池中未使用的内存量。

using UnityEngine;
using UnityEngine.Profiling;

public class Example : MonoBehaviour { void Update() { Debug.Log("Total Reserved memory by Unity: " + Profiler.GetTotalReservedMemoryLong() + "Bytes"); Debug.Log("- Allocated memory by Unity: " + Profiler.GetTotalAllocatedMemoryLong() + "Bytes"); Debug.Log("- Reserved but not allocated: " + Profiler.GetTotalUnusedReservedMemoryLong() + "Bytes"); } }