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

16 lines
352 B
C#

namespace AddressableAssets.DocExampleCode
{
using System;
using UnityEngine;
using UnityEngine.AddressableAssets;
internal class UsingLogWarning
{
public void UsingLogWarningSample()
{
#region SAMPLE
Addressables.LogWarning("Operation took longer than 1 minute");
#endregion
}
}
}