Firstborn/Library/PackageCache/com.unity.terrain-tools@4.0.5/Editor/TerrainTools/Compute/ComputeUtility.cs
Schaken-Mods 4ff395c862 Finished the NPC Creator tool
Finished the NPC Creator tool
2023-04-27 18:37:28 -05:00

14 lines
484 B
C#

using UnityEditor;
using UnityEngine;
internal static class ComputeUtility
{
internal static ComputeShader GetShader(string name) {
var computeShader = AssetDatabase.LoadAssetAtPath<ComputeShader>("Packages/com.unity.terrain-tools/Editor/TerrainTools/Compute/" + name + ".compute");
if (computeShader == null) {
throw new MissingReferenceException("Could not find compute shader with name " + name);
}
return computeShader;
}
}