WIP: Live mixing support.

checkpoint: StreamingAsset Loader.
This commit is contained in:
2026-05-18 19:25:09 +08:00
parent 3190802bd2
commit 3c2558f5e7
7 changed files with 237 additions and 22 deletions
@@ -6,6 +6,6 @@ namespace OCES
public interface IAssetProvider
{
T Load<T>(string path) where T : UnityEngine.Object;
ResourceRequest LoadAsync<T>(string path) where T : UnityEngine.Object;
void LoadAsync<T>(string path, MonoBehaviour coroutineHost, Action<T> onComplete) where T : UnityEngine.Object;
}
}