Click or drag to resize

SpatialMaterialFlags Enumeration

[Missing <summary> documentation for "T:Godot.SpatialMaterial.Flags"]

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public enum Flags
Members
  Member nameValueDescription
Unshaded0

No lighting is used on the object. Color comes directly from ALBEDO.

UseVertexLighting1

Lighting is calculated per-vertex rather than per-pixel. This can be used to increase the speed of the shader at the cost of quality.

DisableDepthTest2

Disables the depth test, so this object is drawn on top of all others. However, objects drawn after it in the draw order may cover it.

AlbedoFromVertexColor3

Set ALBEDO to the per-vertex color specified in the mesh.

SrgbVertexColor4

Vertex color is in sRGB space and needs to be converted to linear. Only applies in the GLES3 renderer.

UsePointSize5

Uses point size to alter the size of primitive points. Also changes the albedo texture lookup to use POINT_COORD instead of UV.

FixedSize6

Object is scaled by depth so that it always appears the same size on screen.

BillboardKeepScale7

Shader will keep the scale set for the mesh. Otherwise the scale is lost when billboarding. Only applies when ParamsBillboardMode is .

Uv1UseTriplanar8

Use triplanar texture lookup for all texture lookups that would normally use UV.

Uv2UseTriplanar9

Use triplanar texture lookup for all texture lookups that would normally use UV2.

AoOnUv211

Use UV2 coordinates to look up from the AoTexture.

EmissionOnUv212

Use UV2 coordinates to look up from the EmissionTexture.

UseAlphaScissor13

Use alpha scissor. Set by ParamsUseAlphaScissor.

TriplanarUseWorld10

Use world coordinates in the triplanar texture lookup instead of local coordinates.

AlbedoTextureForceSrgb14

Forces the shader to convert albedo from sRGB space to linear space.

DontReceiveShadows15

Disables receiving shadows from other objects.

DisableAmbientLight17

Disables receiving ambient light.

EnsureCorrectNormals16

Ensures that normals appear correct, even with non-uniform scaling.

UseShadowToOpacity18

Enables the shadow to opacity feature.

Max19

Represents the size of the SpatialMaterialFlags enum.

See Also