Material¶
Inherits: Resource < RefCounted < Object
Inherited By: BaseMaterial3D, CanvasItemMaterial, FogMaterial, PanoramaSkyMaterial, ParticleProcessMaterial, PhysicalSkyMaterial, PlaceholderMaterial, ProceduralSkyMaterial, ShaderMaterial
Abstract base class for applying visual properties to an object, such as color and roughness.
Description¶
Material is a base resource used for coloring and shading geometry. All materials inherit from it and almost all VisualInstance3D derived nodes carry a Material. A few flags and parameters are shared between all material types and are configured here.
Tutorials¶
Properties¶
Methods¶
_can_do_next_pass ( ) virtual const |
|
_can_use_render_priority ( ) virtual const |
|
_get_shader_mode ( ) virtual const |
|
_get_shader_rid ( ) virtual const |
|
create_placeholder ( ) const |
|
void |
Constants¶
RENDER_PRIORITY_MAX = 127
Maximum value for the render_priority parameter.
RENDER_PRIORITY_MIN = -128
Minimum value for the render_priority parameter.
Property Descriptions¶
Material next_pass
Sets the Material to be used for the next pass. This renders the object again using a different material.
Note: This only applies to StandardMaterial3Ds and ShaderMaterials with type "Spatial".
int render_priority
Sets the render priority for transparent objects in 3D scenes. Higher priority objects will be sorted in front of lower priority objects.
Note: This only applies to StandardMaterial3Ds and ShaderMaterials with type "Spatial".
Note: This only applies to sorting of transparent objects. This will not impact how transparent objects are sorted relative to opaque objects. This is because opaque objects are not sorted, while transparent objects are sorted from back to front (subject to priority).
Method Descriptions¶
bool _can_do_next_pass ( ) virtual const
There is currently no description for this method. Please help us by contributing one!
bool _can_use_render_priority ( ) virtual const
There is currently no description for this method. Please help us by contributing one!
Mode _get_shader_mode ( ) virtual const
There is currently no description for this method. Please help us by contributing one!
RID _get_shader_rid ( ) virtual const
There is currently no description for this method. Please help us by contributing one!
Resource create_placeholder ( ) const
Creates a placeholder version of this resource (PlaceholderMaterial).
void inspect_native_shader_code ( )
There is currently no description for this method. Please help us by contributing one!