Project
7/14/25Less than 1 minute
Vector4.Project(Vector4 a, Vector4 b)
Projects a vector onto another vector.
Parameters:
Name | Type | Description |
---|---|---|
a | Vector4 | a |
b | Vector4 | b |
Returns:
type | Description |
---|---|
Vector4 | Returns a projected onto b. |
Usage
---@type Vector4
local a;
---@type Vector4
local b;
local val0 = Vector4:Project(a, b)