2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name= "PrimitiveMesh" inherits= "Mesh" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
Base class for all primitive meshes. Handles applying a [Material] to a primitive mesh.
</brief_description>
<description >
2020-12-04 16:39:45 +01:00
Base class for all primitive meshes. Handles applying a [Material] to a primitive mesh. Examples include [BoxMesh], [CapsuleMesh], [CylinderMesh], [PlaneMesh], [PrismMesh], [QuadMesh], and [SphereMesh].
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
2022-03-10 08:17:38 +01:00
<method name= "_create_mesh_array" qualifiers= "virtual const" >
<return type= "Array" />
<description >
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_mesh_arrays" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Array" />
2017-09-12 22:42:36 +02:00
<description >
2020-07-15 14:09:27 +02:00
Returns mesh arrays used to constitute surface of [Mesh]. The result can be passed to [method ArrayMesh.add_surface_from_arrays] to create a new surface. For example:
2020-10-31 18:54:17 +01:00
[codeblocks]
[gdscript]
var c = CylinderMesh.new()
var arr_mesh = ArrayMesh.new()
2020-07-15 14:09:27 +02:00
arr_mesh.add_surface_from_arrays(Mesh.PRIMITIVE_TRIANGLES, c.get_mesh_arrays())
2020-10-31 18:54:17 +01:00
[/gdscript]
[csharp]
var c = new CylinderMesh();
var arrMesh = new ArrayMesh();
arrMesh.AddSurfaceFromArrays(Mesh.PrimitiveType.Triangles, c.GetMeshArrays());
[/csharp]
[/codeblocks]
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<members >
2022-03-14 15:52:03 +01:00
<member name= "custom_aabb" type= "AABB" setter= "set_custom_aabb" getter= "get_custom_aabb" >
2021-06-07 10:17:32 +02:00
Overrides the [AABB] with one defined by user for use with frustum culling. Especially useful to avoid unexpected culling when using a shader to offset vertices.
2018-05-12 09:38:00 +02:00
</member>
2022-03-14 15:52:03 +01:00
<member name= "flip_faces" type= "bool" setter= "set_flip_faces" getter= "get_flip_faces" >
2019-12-06 23:09:20 +01:00
If set, the order of the vertices in each triangle are reversed resulting in the backside of the mesh being drawn.
2021-12-28 03:29:18 +01:00
This gives the same result as using [constant BaseMaterial3D.CULL_FRONT] in [member BaseMaterial3D.cull_mode].
2018-05-12 09:38:00 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "material" type= "Material" setter= "set_material" getter= "get_material" >
2017-09-12 22:42:36 +02:00
The current [Material] of the primitive mesh.
</member>
</members>
</class>