SlerpUnclamped
7/14/25Less than 1 minute
Quaternion.SlerpUnclamped(Quaternion a, Quaternion b, number t)
Spherically interpolates between a and b by t. The parameter t is not clamped.
Parameters:
| Name | Type | Description | 
|---|---|---|
| a | Quaternion | a | 
| b | Quaternion | b | 
| t | number | 
Returns:
| type | Description | 
|---|---|
| Quaternion | result | 
Usage
---@type Quaternion
local a;
---@type Quaternion
local b;
---@type number
local t;
local val0 = Quaternion:SlerpUnclamped(a, b, t)
