Table of Contents

Enum RenderingServer.PrimitiveType

Namespace
Godot
Assembly
GodotSharp.dll
public enum RenderingServer.PrimitiveType : long

Fields

LineStrip = 2

Primitive to draw consists of a line strip from start to end.

Lines = 1

Primitive to draw consists of lines.

Max = 5

Represents the size of the RenderingServer.PrimitiveType enum.

Points = 0

Primitive to draw consists of points.

TriangleStrip = 4

Primitive to draw consists of a triangle strip (the last 3 vertices are always combined to make a triangle).

Triangles = 3

Primitive to draw consists of triangles.