Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/Unity/Testproject/Library/PackageCache/com.unity.2d.animation@6.0.4/Editor/ResourceLoader.cs
2022-11-12 13:10:03 +01:00

19 lines
465 B
C#

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;
}
}
}