1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
<?xml version="1.0" encoding="UTF-8" ?>
<class name="SurfaceTool" inherits="Reference" version="4.0">
<brief_description>
Helper tool to create geometry.
</brief_description>
<description>
The [SurfaceTool] is used to construct a [Mesh] by specifying vertex attributes individually. It can be used to construct a [Mesh] from a script. All properties except indices need to be added before calling [method add_vertex]. For example, to add vertex colors and UVs:
[codeblock]
var st = SurfaceTool.new()
st.begin(Mesh.PRIMITIVE_TRIANGLES)
st.set_color(Color(1, 0, 0))
st.set_uv(Vector2(0, 0))
st.set_vertex(Vector3(0, 0, 0))
[/codeblock]
The above [SurfaceTool] now contains one vertex of a triangle which has a UV coordinate and a specified [Color]. If another vertex were added without calling [method set_uv] or [method set_color], then the last values would be used.
Vertex attributes must be passed [b]before[/b] calling [method add_vertex]. Failure to do so will result in an error when committing the vertex information to a mesh.
Additionally, the attributes used before the first vertex is added determine the format of the mesh. For example, if you only add UVs to the first vertex, you cannot add color to any of the subsequent vertices.
See also [ArrayMesh], [ImmediateGeometry3D] and [MeshDataTool] for procedural geometry generation.
[b]Note:[/b] Godot uses clockwise [url=https://learnopengl.com/Advanced-OpenGL/Face-culling]winding order[/url] for front faces of triangle primitive modes.
</description>
<tutorials>
<link title="3D Voxel Demo">https://godotengine.org/asset-library/asset/676</link>
</tutorials>
<methods>
<method name="add_index">
<return type="void">
</return>
<argument index="0" name="index" type="int">
</argument>
<description>
Adds an index to index array if you are using indexed vertices. Does not need to be called before adding vertices.
</description>
</method>
<method name="add_triangle_fan">
<return type="void">
</return>
<argument index="0" name="vertices" type="PackedVector3Array">
</argument>
<argument index="1" name="uvs" type="PackedVector2Array" default="PackedVector2Array( )">
</argument>
<argument index="2" name="colors" type="PackedColorArray" default="PackedColorArray( )">
</argument>
<argument index="3" name="uv2s" type="PackedVector2Array" default="PackedVector2Array( )">
</argument>
<argument index="4" name="normals" type="PackedVector3Array" default="PackedVector3Array( )">
</argument>
<argument index="5" name="tangents" type="Array" default="[ ]">
</argument>
<description>
Inserts a triangle fan made of array data into [Mesh] being constructed.
Requires the primitive type be set to [constant Mesh.PRIMITIVE_TRIANGLES].
</description>
</method>
<method name="add_vertex">
<return type="void">
</return>
<argument index="0" name="vertex" type="Vector3">
</argument>
<description>
Specifies the position of current vertex. Should be called after specifying other vertex properties (e.g. Color, UV).
</description>
</method>
<method name="append_from">
<return type="void">
</return>
<argument index="0" name="existing" type="Mesh">
</argument>
<argument index="1" name="surface" type="int">
</argument>
<argument index="2" name="transform" type="Transform">
</argument>
<description>
Append vertices from a given [Mesh] surface onto the current vertex array with specified [Transform].
</description>
</method>
<method name="begin">
<return type="void">
</return>
<argument index="0" name="primitive" type="int" enum="Mesh.PrimitiveType">
</argument>
<description>
Called before adding any vertices. Takes the primitive type as an argument (e.g. [constant Mesh.PRIMITIVE_TRIANGLES]).
</description>
</method>
<method name="clear">
<return type="void">
</return>
<description>
Clear all information passed into the surface tool so far.
</description>
</method>
<method name="commit">
<return type="ArrayMesh">
</return>
<argument index="0" name="existing" type="ArrayMesh" default="null">
</argument>
<argument index="1" name="flags" type="int" default="0">
</argument>
<description>
Returns a constructed [ArrayMesh] from current information passed in. If an existing [ArrayMesh] is passed in as an argument, will add an extra surface to the existing [ArrayMesh].
[b]FIXME:[/b] Document possible values for [code]flags[/code], it changed in 4.0. Likely some combinations of [enum Mesh.ArrayFormat].
</description>
</method>
<method name="commit_to_arrays">
<return type="Array">
</return>
<description>
Commits the data to the same format used by [method ArrayMesh.add_surface_from_arrays]. This way you can further process the mesh data using the [ArrayMesh] API.
</description>
</method>
<method name="create_from">
<return type="void">
</return>
<argument index="0" name="existing" type="Mesh">
</argument>
<argument index="1" name="surface" type="int">
</argument>
<description>
Creates a vertex array from an existing [Mesh].
</description>
</method>
<method name="create_from_blend_shape">
<return type="void">
</return>
<argument index="0" name="existing" type="Mesh">
</argument>
<argument index="1" name="surface" type="int">
</argument>
<argument index="2" name="blend_shape" type="String">
</argument>
<description>
Creates a vertex array from the specified blend shape of an existing [Mesh]. This can be used to extract a specific pose from a blend shape.
</description>
</method>
<method name="deindex">
<return type="void">
</return>
<description>
Removes the index array by expanding the vertex array.
</description>
</method>
<method name="generate_lod">
<return type="PackedInt32Array">
</return>
<argument index="0" name="nd_threshold" type="float">
</argument>
<argument index="1" name="target_index_count" type="int" default="3">
</argument>
<description>
</description>
</method>
<method name="generate_normals">
<return type="void">
</return>
<argument index="0" name="flip" type="bool" default="false">
</argument>
<description>
Generates normals from vertices so you do not have to do it manually. If [code]flip[/code] is [code]true[/code], the resulting normals will be inverted. [method generate_normals] should be called [i]after[/i] generating geometry and [i]before[/i] committing the mesh using [method commit] or [method commit_to_arrays].
[b]Note:[/b] [method generate_normals] only works if the primitive type to be set to [constant Mesh.PRIMITIVE_TRIANGLES].
</description>
</method>
<method name="generate_tangents">
<return type="void">
</return>
<description>
Generates a tangent vector for each vertex. Requires that each vertex have UVs and normals set already.
</description>
</method>
<method name="get_custom_format" qualifiers="const">
<return type="int" enum="SurfaceTool.CustomFormat">
</return>
<argument index="0" name="index" type="int">
</argument>
<description>
</description>
</method>
<method name="get_max_axis_length" qualifiers="const">
<return type="float">
</return>
<description>
</description>
</method>
<method name="get_skin_weight_count" qualifiers="const">
<return type="int" enum="SurfaceTool.SkinWeightCount">
</return>
<description>
</description>
</method>
<method name="index">
<return type="void">
</return>
<description>
Shrinks the vertex array by creating an index array (avoids reusing vertices).
</description>
</method>
<method name="optimize_indices_for_cache">
<return type="void">
</return>
<description>
</description>
</method>
<method name="set_bones">
<return type="void">
</return>
<argument index="0" name="bones" type="PackedInt32Array">
</argument>
<description>
Specifies an array of bones for the next vertex to use. [code]bones[/code] must contain 4 integers.
</description>
</method>
<method name="set_color">
<return type="void">
</return>
<argument index="0" name="color" type="Color">
</argument>
<description>
Specifies a [Color] for the next vertex to use.
[b]Note:[/b] The material must have [member BaseMaterial3D.vertex_color_use_as_albedo] enabled for the vertex color to be visible.
</description>
</method>
<method name="set_custom">
<return type="void">
</return>
<argument index="0" name="index" type="int">
</argument>
<argument index="1" name="custom" type="Color">
</argument>
<description>
</description>
</method>
<method name="set_custom_format">
<return type="void">
</return>
<argument index="0" name="index" type="int">
</argument>
<argument index="1" name="format" type="int" enum="SurfaceTool.CustomFormat">
</argument>
<description>
</description>
</method>
<method name="set_material">
<return type="void">
</return>
<argument index="0" name="material" type="Material">
</argument>
<description>
Sets [Material] to be used by the [Mesh] you are constructing.
</description>
</method>
<method name="set_normal">
<return type="void">
</return>
<argument index="0" name="normal" type="Vector3">
</argument>
<description>
Specifies a normal for the next vertex to use.
</description>
</method>
<method name="set_skin_weight_count">
<return type="void">
</return>
<argument index="0" name="count" type="int" enum="SurfaceTool.SkinWeightCount">
</argument>
<description>
</description>
</method>
<method name="set_smooth_group">
<return type="void">
</return>
<argument index="0" name="index" type="int">
</argument>
<description>
Specifies whether the current vertex (if using only vertex arrays) or current index (if also using index arrays) should use smooth normals for normal calculation.
</description>
</method>
<method name="set_tangent">
<return type="void">
</return>
<argument index="0" name="tangent" type="Plane">
</argument>
<description>
Specifies a tangent for the next vertex to use.
</description>
</method>
<method name="set_uv">
<return type="void">
</return>
<argument index="0" name="uv" type="Vector2">
</argument>
<description>
Specifies a set of UV coordinates to use for the next vertex.
</description>
</method>
<method name="set_uv2">
<return type="void">
</return>
<argument index="0" name="uv2" type="Vector2">
</argument>
<description>
Specifies an optional second set of UV coordinates to use for the next vertex.
</description>
</method>
<method name="set_weights">
<return type="void">
</return>
<argument index="0" name="weights" type="PackedFloat32Array">
</argument>
<description>
Specifies weight values for next vertex to use. [code]weights[/code] must contain 4 values.
</description>
</method>
</methods>
<constants>
<constant name="CUSTOM_RGBA8_UNORM" value="0" enum="CustomFormat">
</constant>
<constant name="CUSTOM_RGBA8_SNORM" value="1" enum="CustomFormat">
</constant>
<constant name="CUSTOM_RG_HALF" value="2" enum="CustomFormat">
</constant>
<constant name="CUSTOM_RGBA_HALF" value="3" enum="CustomFormat">
</constant>
<constant name="CUSTOM_R_FLOAT" value="4" enum="CustomFormat">
</constant>
<constant name="CUSTOM_RG_FLOAT" value="5" enum="CustomFormat">
</constant>
<constant name="CUSTOM_RGB_FLOAT" value="6" enum="CustomFormat">
</constant>
<constant name="CUSTOM_RGBA_FLOAT" value="7" enum="CustomFormat">
</constant>
<constant name="CUSTOM_MAX" value="8" enum="CustomFormat">
</constant>
<constant name="SKIN_4_WEIGHTS" value="0" enum="SkinWeightCount">
</constant>
<constant name="SKIN_8_WEIGHTS" value="1" enum="SkinWeightCount">
</constant>
</constants>
</class>
|