WuhuIslandTesting/Library/PackageCache/com.unity.addressables@1.21.12/Tests/Editor/DocExampleCode/ScriptReference/UsingLog.cs
2025-01-07 02:06:59 +01:00

20 lines
398 B
C#

namespace AddressableAssets.DocExampleCode
{
using System;
using UnityEngine;
using UnityEngine.AddressableAssets;
internal class UsingLog
{
public void UsingLogSample()
{
#region SAMPLE
Addressables.Log("Unloading bundle");
Addressables.Log("<color=red>Unloading bundle</color> ");
#endregion
}
}
}