Version: 2021.1
언어: 한국어

Profiler.AddFramesFromFile

매뉴얼로 전환
public static void AddFramesFromFile (string file);

파라미터

file The name of the file containing the frame data, including extension.

설명

Displays the recorded profile data in the profiler.

The Profiler appends the loaded data after the last frame in its buffer.

using UnityEngine;
using System.Collections;
using UnityEngine.Profiling;

public class ExampleClass : MonoBehaviour { void Example() { Profiler.AddFramesFromFile("mylog.raw"); // or mylog.data } }

See Also: Profiler.