diff options
author | clayjohn <claynjohn@gmail.com> | 2021-04-13 20:45:16 -0700 |
---|---|---|
committer | clayjohn <claynjohn@gmail.com> | 2021-04-14 20:24:03 -0700 |
commit | 92731d292c66be637b837653044273c7000f63a3 (patch) | |
tree | 0b03005c4150a89e09ea49ec64c51662c89a0267 /doc/classes/MeshInstance3D.xml | |
parent | b4b7c97d3839170180e4f3f7c2bd3179b374057a (diff) | |
download | redot-engine-92731d292c66be637b837653044273c7000f63a3.tar.gz |
Rename get_surface_material to get_surface_override_material
Diffstat (limited to 'doc/classes/MeshInstance3D.xml')
-rw-r--r-- | doc/classes/MeshInstance3D.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/classes/MeshInstance3D.xml b/doc/classes/MeshInstance3D.xml index 82cd392cd3..e1a6cf44a7 100644 --- a/doc/classes/MeshInstance3D.xml +++ b/doc/classes/MeshInstance3D.xml @@ -43,7 +43,7 @@ Returns the [Material] that will be used by the [Mesh] when drawing. This can return the [member GeometryInstance3D.material_override], the surface override [Material] defined in this [MeshInstance3D], or the surface [Material] defined in the [Mesh]. For example, if [member GeometryInstance3D.material_override] is used, all surfaces will return the override material. </description> </method> - <method name="get_surface_material" qualifiers="const"> + <method name="get_surface_override_material" qualifiers="const"> <return type="Material"> </return> <argument index="0" name="surface" type="int"> @@ -52,14 +52,14 @@ Returns the override [Material] for the specified surface of the [Mesh] resource. </description> </method> - <method name="get_surface_material_count" qualifiers="const"> + <method name="get_surface_override_material_count" qualifiers="const"> <return type="int"> </return> <description> - Returns the number of surface materials. + Returns the number of surface override materials. This is equivalent to [method Mesh.get_surface_count]. </description> </method> - <method name="set_surface_material"> + <method name="set_surface_override_material"> <return type="void"> </return> <argument index="0" name="surface" type="int"> |