using Godot; namespace Rokojori { // Generated by ShaderClassGenerator public class QuadBillboardShader { public static readonly CachedResource shader = new CachedResource( "res://addons/rokojori_action_library/Runtime/Shading/Shaders/Billboards/QuadBillboard/QuadBillboard.gdshader" ); public static readonly FloatPropertyName size = FloatPropertyName.Create( "size" ); public static readonly FloatPropertyName randomPosition = FloatPropertyName.Create( "randomPosition" ); public static readonly ColorPropertyName albedo = ColorPropertyName.Create( "albedo" ); public static readonly FloatPropertyName rotation = FloatPropertyName.Create( "rotation" ); public static readonly FloatPropertyName rotationNoiseAmount = FloatPropertyName.Create( "rotationNoiseAmount" ); public static readonly FloatPropertyName rotationNoiseScale = FloatPropertyName.Create( "rotationNoiseScale" ); public static readonly FloatPropertyName normalBlendAmount = FloatPropertyName.Create( "normalBlendAmount" ); public static readonly Vector3PropertyName normalBlendDirection = Vector3PropertyName.Create( "normalBlendDirection" ); public static readonly FloatPropertyName roughness = FloatPropertyName.Create( "roughness" ); public static readonly FloatPropertyName metalness = FloatPropertyName.Create( "metalness" ); public static readonly FloatPropertyName specular = FloatPropertyName.Create( "specular" ); public static readonly FloatPropertyName alphaScissorThreshold = FloatPropertyName.Create( "alpha_scissor_threshold" ); public static readonly FloatPropertyName alphaAntialiasingEdge = FloatPropertyName.Create( "alpha_antialiasing_edge" ); public static readonly Vector2IPropertyName albedoTextureSize = Vector2IPropertyName.Create( "albedo_texture_size" ); public static readonly Vector4PropertyName aoTextureChannel = Vector4PropertyName.Create( "ao_texture_channel" ); public static readonly FloatPropertyName aoLightAffect = FloatPropertyName.Create( "ao_light_affect" ); public static readonly FloatPropertyName yMapStart = FloatPropertyName.Create( "yMapStart" ); public static readonly FloatPropertyName yMapEnd = FloatPropertyName.Create( "yMapEnd" ); public static readonly FloatPropertyName yMapNoiseAmount = FloatPropertyName.Create( "yMapNoiseAmount" ); public static readonly FloatPropertyName yMapNoiseScale = FloatPropertyName.Create( "yMapNoiseScale" ); public static readonly FloatPropertyName discardNoiseScale = FloatPropertyName.Create( "discardNoiseScale" ); public static readonly FloatPropertyName discardThreshold = FloatPropertyName.Create( "discardThreshold" ); public static readonly FloatPropertyName fresnelNormalSource = FloatPropertyName.Create( "fresnelNormalSource" ); public static readonly ColorPropertyName fresnelColor = ColorPropertyName.Create( "fresnelColor" ); public static readonly FloatPropertyName fresnelSharpness = FloatPropertyName.Create( "fresnelSharpness" ); public static readonly FloatPropertyName fresnelScale = FloatPropertyName.Create( "fresnelScale" ); public static readonly FloatPropertyName windAmount = FloatPropertyName.Create( "windAmount" ); public static readonly Vector2PropertyName windSpeed = Vector2PropertyName.Create( "windSpeed" ); public static readonly FloatPropertyName windNoiseScale = FloatPropertyName.Create( "windNoiseScale" ); public static readonly FloatPropertyName windStart = FloatPropertyName.Create( "windStart" ); public static readonly FloatPropertyName windEnd = FloatPropertyName.Create( "windEnd" ); public static readonly Texture2DPropertyName textureAlbedo = Texture2DPropertyName.Create( "texture_albedo" ); public static readonly Texture2DPropertyName textureNormals = Texture2DPropertyName.Create( "texture_normals" ); public static readonly Texture2DPropertyName textureAmbientOcclusion = Texture2DPropertyName.Create( "texture_ambient_occlusion" ); public static readonly Texture2DPropertyName textureYMapGradient = Texture2DPropertyName.Create( "texture_yMapGradient" ); } [Tool] [GlobalClass] public partial class QuadBillboardMaterial:CustomMaterial { public readonly CustomMaterialProperty size; public readonly CustomMaterialProperty randomPosition; public readonly CustomMaterialProperty albedo; public readonly CustomMaterialProperty rotation; public readonly CustomMaterialProperty rotationNoiseAmount; public readonly CustomMaterialProperty rotationNoiseScale; public readonly CustomMaterialProperty normalBlendAmount; public readonly CustomMaterialProperty normalBlendDirection; public readonly CustomMaterialProperty roughness; public readonly CustomMaterialProperty metalness; public readonly CustomMaterialProperty specular; public readonly CustomMaterialProperty alphaScissorThreshold; public readonly CustomMaterialProperty alphaAntialiasingEdge; public readonly CustomMaterialProperty albedoTextureSize; public readonly CustomMaterialProperty aoTextureChannel; public readonly CustomMaterialProperty aoLightAffect; public readonly CustomMaterialProperty yMapStart; public readonly CustomMaterialProperty yMapEnd; public readonly CustomMaterialProperty yMapNoiseAmount; public readonly CustomMaterialProperty yMapNoiseScale; public readonly CustomMaterialProperty discardNoiseScale; public readonly CustomMaterialProperty discardThreshold; public readonly CustomMaterialProperty fresnelNormalSource; public readonly CustomMaterialProperty fresnelColor; public readonly CustomMaterialProperty fresnelSharpness; public readonly CustomMaterialProperty fresnelScale; public readonly CustomMaterialProperty windAmount; public readonly CustomMaterialProperty windSpeed; public readonly CustomMaterialProperty windNoiseScale; public readonly CustomMaterialProperty windStart; public readonly CustomMaterialProperty windEnd; public readonly CustomMaterialProperty textureAlbedo; public readonly CustomMaterialProperty textureNormals; public readonly CustomMaterialProperty textureAmbientOcclusion; public readonly CustomMaterialProperty textureYMapGradient; public QuadBillboardMaterial() { Shader = QuadBillboardShader.shader.Get(); size = new CustomMaterialProperty( this, QuadBillboardShader.size ); randomPosition = new CustomMaterialProperty( this, QuadBillboardShader.randomPosition ); albedo = new CustomMaterialProperty( this, QuadBillboardShader.albedo ); rotation = new CustomMaterialProperty( this, QuadBillboardShader.rotation ); rotationNoiseAmount = new CustomMaterialProperty( this, QuadBillboardShader.rotationNoiseAmount ); rotationNoiseScale = new CustomMaterialProperty( this, QuadBillboardShader.rotationNoiseScale ); normalBlendAmount = new CustomMaterialProperty( this, QuadBillboardShader.normalBlendAmount ); normalBlendDirection = new CustomMaterialProperty( this, QuadBillboardShader.normalBlendDirection ); roughness = new CustomMaterialProperty( this, QuadBillboardShader.roughness ); metalness = new CustomMaterialProperty( this, QuadBillboardShader.metalness ); specular = new CustomMaterialProperty( this, QuadBillboardShader.specular ); alphaScissorThreshold = new CustomMaterialProperty( this, QuadBillboardShader.alphaScissorThreshold ); alphaAntialiasingEdge = new CustomMaterialProperty( this, QuadBillboardShader.alphaAntialiasingEdge ); albedoTextureSize = new CustomMaterialProperty( this, QuadBillboardShader.albedoTextureSize ); aoTextureChannel = new CustomMaterialProperty( this, QuadBillboardShader.aoTextureChannel ); aoLightAffect = new CustomMaterialProperty( this, QuadBillboardShader.aoLightAffect ); yMapStart = new CustomMaterialProperty( this, QuadBillboardShader.yMapStart ); yMapEnd = new CustomMaterialProperty( this, QuadBillboardShader.yMapEnd ); yMapNoiseAmount = new CustomMaterialProperty( this, QuadBillboardShader.yMapNoiseAmount ); yMapNoiseScale = new CustomMaterialProperty( this, QuadBillboardShader.yMapNoiseScale ); discardNoiseScale = new CustomMaterialProperty( this, QuadBillboardShader.discardNoiseScale ); discardThreshold = new CustomMaterialProperty( this, QuadBillboardShader.discardThreshold ); fresnelNormalSource = new CustomMaterialProperty( this, QuadBillboardShader.fresnelNormalSource ); fresnelColor = new CustomMaterialProperty( this, QuadBillboardShader.fresnelColor ); fresnelSharpness = new CustomMaterialProperty( this, QuadBillboardShader.fresnelSharpness ); fresnelScale = new CustomMaterialProperty( this, QuadBillboardShader.fresnelScale ); windAmount = new CustomMaterialProperty( this, QuadBillboardShader.windAmount ); windSpeed = new CustomMaterialProperty( this, QuadBillboardShader.windSpeed ); windNoiseScale = new CustomMaterialProperty( this, QuadBillboardShader.windNoiseScale ); windStart = new CustomMaterialProperty( this, QuadBillboardShader.windStart ); windEnd = new CustomMaterialProperty( this, QuadBillboardShader.windEnd ); textureAlbedo = new CustomMaterialProperty( this, QuadBillboardShader.textureAlbedo ); textureNormals = new CustomMaterialProperty( this, QuadBillboardShader.textureNormals ); textureAmbientOcclusion = new CustomMaterialProperty( this, QuadBillboardShader.textureAmbientOcclusion ); textureYMapGradient = new CustomMaterialProperty( this, QuadBillboardShader.textureYMapGradient ); } } }