Skip to content

Commit

Permalink
Update roblox.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
rimuy authored Sep 23, 2024
1 parent bf38d85 commit e0d0b6b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/roblox.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1392,6 +1392,8 @@ interface CFrameConstructor {
Angles: (rX: number, rY: number, rZ: number) => CFrame;
/** Creates a rotated CFrame from a Unit Vector3 and a rotation in radians */
fromAxisAngle: (unit: Vector3, rotation: number) => CFrame;
/** Creates a rotated CFrame using angles (rx, ry, rz) in radians. Rotations are applied in the optional Enum.RotationOrder with a default of `XYZ`. */
fromEulerAngles: (rX: number, rY: number, rZ: number, order?: Enum.RotationOrder) => CFrame;
/** Creates a rotated CFrame using angles (rx, ry, rz) in radians. Rotations are applied in Z, Y, X order. */
fromEulerAnglesXYZ: (rX: number, rY: number, rZ: number) => CFrame;
/** Creates a rotated CFrame using angles (rx, ry, rz) in radians. Rotations are applied in Z, X, Y order. */
Expand Down

0 comments on commit e0d0b6b

Please sign in to comment.