rimworld-animation-studio/Library/PackageCache/com.unity.2d.animation@3.2.6/Editor/ResourceLoader.cs

19 lines
465 B
C#
Raw Normal View History

2022-09-13 05:36:34 +00:00
using System.IO;
using UnityEngine;
namespace UnityEditor.U2D.Animation
{
internal static class ResourceLoader
{
const string k_ResourcePath = "Packages/com.unity.2d.animation/Editor/Assets";
internal static T Load<T>(string path) where T : Object
{
var assetPath = Path.Combine(k_ResourcePath, path);
var asset = AssetDatabase.LoadAssetAtPath<T>(assetPath);
return asset;
}
}
}