Skip to main content

Quaternion.SlerpUnclamped(Quaternion a, Quaternion b, number t)

Spherically interpolates between a and b by t. The parameter t is not clamped.

Parameters:

NameTypeDescription
aQuaterniona
bQuaternionb
tnumber

Returns:

typeDescription
Quaternionresult

Usage

---@type Quaternion
local a;

---@type Quaternion
local b;

---@type number
local t;


local val0 = Quaternion:SlerpUnclamped(a, b, t)