Click or drag to resize
Ab4d.SharpEngine logo

MeshModelNodeSetCustomVertexBuffer(PositionNormalTextureVertex, GpuBuffer, BoundingBox, VertexBufferDescription) Method

SetCustomVertexBuffer can be used to change the vertices and the vertex buffer that is used to render this MeshModelNode. This method can be called only when Mesh is StandardMesh or TriangleMesh<PositionNormalTextureVertex>.

Namespace: Ab4d.SharpEngine.SceneNodes
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public void SetCustomVertexBuffer(
	PositionNormalTextureVertex[] vertices,
	GpuBuffer customVertexBuffer,
	BoundingBox boundingBox,
	VertexBufferDescription? customVertexBufferDescription = null
)

Parameters

vertices  PositionNormalTextureVertex
Array of vertices of the specified type T
customVertexBuffer  GpuBuffer
vertexBuffer as GpuBuffer that contains data from the vertices
boundingBox  BoundingBox
Bounding box of the vertices
customVertexBufferDescription  VertexBufferDescription  (Optional)
optional VertexBufferDescription; when null then the existing VertexBufferDescription is preserved
See Also