diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2023-09-28 23:18:26 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2023-09-28 23:18:26 +0200 |
commit | f4fd6d0d99938c55ea22282f5a189f0e67ab0163 (patch) | |
tree | f0e1d483974f71fbc0b066e0ffcc4a81260e26f1 /doc/classes/MeshInstance3D.xml | |
parent | fbe611e45eebe48e2fdf4065fc70acad1cca2e0e (diff) | |
download | redot-engine-f4fd6d0d99938c55ea22282f5a189f0e67ab0163.tar.gz |
Clarify difference between surface material and surface override material
Diffstat (limited to 'doc/classes/MeshInstance3D.xml')
-rw-r--r-- | doc/classes/MeshInstance3D.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/classes/MeshInstance3D.xml b/doc/classes/MeshInstance3D.xml index 37947b4add..4645435f55 100644 --- a/doc/classes/MeshInstance3D.xml +++ b/doc/classes/MeshInstance3D.xml @@ -74,13 +74,14 @@ <return type="Material" /> <param index="0" name="surface" type="int" /> <description> - Returns the override [Material] for the specified [param surface] of the [Mesh] resource. + Returns the override [Material] for the specified [param surface] of the [Mesh] resource. See also [method get_surface_override_material_count]. + [b]Note:[/b] This returns the [Material] associated to the [MeshInstance3D]'s Surface Material Override properties, not the material within the [Mesh] resource. To get the material within the [Mesh] resource, use [method Mesh.surface_get_material] instead. </description> </method> <method name="get_surface_override_material_count" qualifiers="const"> <return type="int" /> <description> - Returns the number of surface override materials. This is equivalent to [method Mesh.get_surface_count]. + Returns the number of surface override materials. This is equivalent to [method Mesh.get_surface_count]. See also [method get_surface_override_material]. </description> </method> <method name="set_blend_shape_value"> @@ -97,6 +98,7 @@ <param index="1" name="material" type="Material" /> <description> Sets the override [param material] for the specified [param surface] of the [Mesh] resource. This material is associated with this [MeshInstance3D] rather than with [member mesh]. + [b]Note:[/b] This assigns the [Material] associated to the [MeshInstance3D]'s Surface Material Override properties, not the material within the [Mesh] resource. To set the material within the [Mesh] resource, use [method Mesh.surface_get_material] instead. </description> </method> </methods> |