17 lines
352 B
C#
Raw Normal View History

2025-05-18 01:04:31 +08:00
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
}
}
}