Skip to main content

float3

A simple three float Vector used for interfacing with Vector3 and Networking.

note

This type can be networked

Properties

Property NameProperty TypeDefault ValueDescription
xfloat0The X value of the Vector
yfloat0The Y value of the Vector
zfloat0The Z value of the Vector

Constructors

ConstructorDescription
float3()Returns a float3 with properties x, y, and z left at default.
float3(float x, float y, float z)Returns a float3 with property x set to the first parameter, property y set to the second parameter, and property z set to the third parameter.