23 lines
835 B
C#
23 lines
835 B
C#
//------------------------------------
|
|
// OmniShade
|
|
// Copyright© 2025 OmniShade
|
|
//------------------------------------
|
|
|
|
using UnityEngine;
|
|
|
|
/**
|
|
* This class contains shader constants and utility functions.
|
|
**/
|
|
public static class OmniShade {
|
|
public const string NAME = "OmniShade";
|
|
public const string STANDARD_SHADER = NAME + "/Standard";
|
|
public const string STANDARD_URP_SHADER = NAME + "/Standard URP";
|
|
public const string TRIPLANAR_SHADER = NAME + "/Triplanar";
|
|
public const string TRIPLANAR_URP_SHADER = NAME + "/Triplanar URP";
|
|
public const string DOCS_URL = "https://www.omnishade.io/documentation/features";
|
|
public const string PRO_URL = "https://assetstore.unity.com/packages/vfx/shaders/omnishade-mobile-optimized-shader-213594";
|
|
|
|
public const int TRIPLANAR_UV_SCALE = 32;
|
|
|
|
}
|