2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "PrimitiveMesh" inherits= "Mesh" version= "4.0" >
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 >
<method name= "get_mesh_arrays" qualifiers= "const" >
<return type= "Array" >
</return>
<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 >
2019-06-29 12:38:01 +02:00
<member name= "custom_aabb" type= "AABB" setter= "set_custom_aabb" getter= "get_custom_aabb" default= "AABB( 0, 0, 0, 0, 0, 0 )" >
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>
2019-06-29 12:38:01 +02:00
<member name= "flip_faces" type= "bool" setter= "set_flip_faces" getter= "get_flip_faces" default= "false" >
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.
2020-02-12 09:59:06 +01:00
This gives the same result as using [constant BaseMaterial3D.CULL_BACK] 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>
<constants >
</constants>
</class>