UnityEditor.HeapshotWindow.EventHeapShotReceived C# (CSharp) Méthode

EventHeapShotReceived() private static méthode

private static EventHeapShotReceived ( string name ) : void
name string
Résultat void
        private static void EventHeapShotReceived(string name)
        {
            Debug.Log("Received " + name);
            if (onReceivedHeapshot != null)
            {
                onReceivedHeapshot(name);
            }
        }