mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-06 05:07:47 -05:00
13 lines
353 B
C#
13 lines
353 B
C#
using System.Collections.Generic;
|
|
|
|
namespace UniVRM10
|
|
{
|
|
public interface IExternalUnityObject
|
|
{
|
|
Dictionary<string, T> GetExternalUnityObjects<T>() where T : UnityEngine.Object;
|
|
void SetExternalUnityObject<T>(UnityEditor.AssetImporter.SourceAssetIdentifier sourceAssetIdentifier, T obj) where T : UnityEngine.Object;
|
|
}
|
|
}
|
|
|
|
|