Skip to content

<clpp/datatypes.clh>

Standard header

Vector3, CFrame, UDim2, Color3, and string_concat.

#include <clpp/datatypes.clh>

None.

None.

datatype constructors stay global

Datatypes are values: Vector3(8, 1, 8), not new Vector3. Methods/static names use :: which emits . for datatypes.

part.Size = Vector3(8, 1, 8);
part.CFrame = CFrame.lookAt(from, look);

Emits:

part.Size = Vector3.new(8, 1, 8)
part.CFrame = CFrame.lookAt(from, look)

new · string_concat · operator-method