|
@@ -16,22 +16,26 @@
|
|
|
<method name="_get_aabb" qualifiers="virtual const">
|
|
|
<return type="AABB" />
|
|
|
<description>
|
|
|
+ Virtual method to override the [AABB] for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="_get_blend_shape_count" qualifiers="virtual const">
|
|
|
<return type="int" />
|
|
|
<description>
|
|
|
+ Virtual method to override the number of blend shapes for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="_get_blend_shape_name" qualifiers="virtual const">
|
|
|
<return type="StringName" />
|
|
|
<param index="0" name="index" type="int" />
|
|
|
<description>
|
|
|
+ Virtual method to override the retrieval of blend shape names for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="_get_surface_count" qualifiers="virtual const">
|
|
|
<return type="int" />
|
|
|
<description>
|
|
|
+ Virtual method to override the surface count for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="_set_blend_shape_name" qualifiers="virtual">
|
|
@@ -39,54 +43,63 @@
|
|
|
<param index="0" name="index" type="int" />
|
|
|
<param index="1" name="name" type="StringName" />
|
|
|
<description>
|
|
|
+ Virtual method to override the names of blend shapes for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="_surface_get_array_index_len" qualifiers="virtual const">
|
|
|
<return type="int" />
|
|
|
<param index="0" name="index" type="int" />
|
|
|
<description>
|
|
|
+ Virtual method to override the surface array index length for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="_surface_get_array_len" qualifiers="virtual const">
|
|
|
<return type="int" />
|
|
|
<param index="0" name="index" type="int" />
|
|
|
<description>
|
|
|
+ Virtual method to override the surface array length for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="_surface_get_arrays" qualifiers="virtual const">
|
|
|
<return type="Array" />
|
|
|
<param index="0" name="index" type="int" />
|
|
|
<description>
|
|
|
+ Virtual method to override the surface arrays for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="_surface_get_blend_shape_arrays" qualifiers="virtual const">
|
|
|
<return type="Array[]" />
|
|
|
<param index="0" name="index" type="int" />
|
|
|
<description>
|
|
|
+ Virtual method to override the blend shape arrays for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="_surface_get_format" qualifiers="virtual const">
|
|
|
<return type="int" />
|
|
|
<param index="0" name="index" type="int" />
|
|
|
<description>
|
|
|
+ Virtual method to override the surface format for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="_surface_get_lods" qualifiers="virtual const">
|
|
|
<return type="Dictionary" />
|
|
|
<param index="0" name="index" type="int" />
|
|
|
<description>
|
|
|
+ Virtual method to override the surface LODs for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="_surface_get_material" qualifiers="virtual const">
|
|
|
<return type="Material" />
|
|
|
<param index="0" name="index" type="int" />
|
|
|
<description>
|
|
|
+ Virtual method to override the surface material for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="_surface_get_primitive_type" qualifiers="virtual const">
|
|
|
<return type="int" />
|
|
|
<param index="0" name="index" type="int" />
|
|
|
<description>
|
|
|
+ Virtual method to override the surface primitive type for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="_surface_set_material" qualifiers="virtual">
|
|
@@ -94,6 +107,7 @@
|
|
|
<param index="0" name="index" type="int" />
|
|
|
<param index="1" name="material" type="Material" />
|
|
|
<description>
|
|
|
+ Virtual method to override the setting of a [param material] at the given [param index] for a custom class extending [Mesh].
|
|
|
</description>
|
|
|
</method>
|
|
|
<method name="create_convex_shape" qualifiers="const">
|