Version: 2017.1

Profiler.GetMonoUsedSizeLong

매뉴얼로 전환
public static long GetMonoUsedSizeLong ();

반환

long A long integer value of the memory in use. This returns 0 if the Profiler is not available.

설명

The allocated managed-memory for live objects and non-collected objects.

This function returns the amount of allocated managed-memory for all objects, both live and non-collected. Always call GC.Collect() before calling this function as non-referenced objects will still take up space until they are collected by the garbage collector (GC). Note that this will return an ever increasing value until GC.Collect() is called.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Update() { System.GC.Collect(); Debug.Log("Mono used size" + Profiling.Profiler.GetMonoUsedSizeLong() + "Bytes"); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961