14 lines
688 B
C#
14 lines
688 B
C#
namespace Needle.Engine.Samples
|
|
{
|
|
internal class Constants
|
|
{
|
|
public const string SamplesPackageName = "com.needle.engine-samples";
|
|
public const string ExporterPackageName = "com.needle.engine-exporter";
|
|
public const string SamplesDirectory = "Packages/" + SamplesPackageName + "/Runtime";
|
|
public const string ScreenshotsDirectory = "Packages/" + SamplesPackageName + "/Editor/Screenshots";
|
|
public const string RemoteSampleJsonPath = "https://fwd.needle.tools/needle-engine/samples-json";
|
|
|
|
internal const string CacheRoot = "Temp/Needle/SamplesCache/";
|
|
internal const string RepoRoot = "https://raw.githubusercontent.com/needle-tools/needle-engine-samples/main/";
|
|
}
|
|
} |