We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Roblox added constants like Vector3.zero and CFrame.identity. These should be added to rbxmk.
Vector3.zero
CFrame.identity
List of constants:
CFrame.identity = CFrame.new()
Vector3.zero = Vector3.new()
Vector3.one = Vector3.new(1, 1, 1)
Vector3.xAxis = Vector3.new(1, 0, 0)
Vector3.yAxis = Vector3.new(0, 1, 0)
Vector3.zAxis = Vector3.new(0, 0, 1)
Vector2.zero = Vector2.new()
Vector2.one = Vector2.new(1, 1)
Vector2.xAxis = Vector2.new(1, 0)
Vector2.yAxis = Vector2.new(0, 1)
Implement by adding a Constants field to Reflector. This is similar to Constructors, but adds constant values instead.
Constants
Roblox seems to refer to these as "static" values.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Roblox added constants like
Vector3.zero
andCFrame.identity
. These should be added to rbxmk.List of constants:
CFrame.identity = CFrame.new()
Vector3.zero = Vector3.new()
Vector3.one = Vector3.new(1, 1, 1)
Vector3.xAxis = Vector3.new(1, 0, 0)
Vector3.yAxis = Vector3.new(0, 1, 0)
Vector3.zAxis = Vector3.new(0, 0, 1)
Vector2.zero = Vector2.new()
Vector2.one = Vector2.new(1, 1)
Vector2.xAxis = Vector2.new(1, 0)
Vector2.yAxis = Vector2.new(0, 1)
Implement by adding a
Constants
field to Reflector. This is similar to Constructors, but adds constant values instead.Roblox seems to refer to these as "static" values.
The text was updated successfully, but these errors were encountered: