mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-06-23 05:13:42 +00:00
19 lines
513 B
C#
19 lines
513 B
C#
using System;
|
|
using UnityEngine;
|
|
using YooAsset;
|
|
|
|
public static class OperationMonitor
|
|
{
|
|
public static void RegisterOperationCallback()
|
|
{
|
|
}
|
|
|
|
private static void OperationStartCallback(string packageName, AsyncOperationBase operation)
|
|
{
|
|
Debug.Log($"Operation start : {operation.GetType().Name}");
|
|
}
|
|
private static void OperationFinishCallback(string packageName, AsyncOperationBase operation)
|
|
{
|
|
Debug.Log($"Operation finish : {operation.GetType().Name}");
|
|
}
|
|
} |