BBMOD_Vec3.Scale

A function defined in BBMOD_Vec3.gml

Scale(_s)

Description

Scales each component of the vector by _s and returns the result as a new vector.

Arguments

Name Type Description
_s Real The value to scale the components by.

Returns

Struct.BBMOD_Vec3 The created vector.

Example

new BBMOD_Vec3(1.0, 2.0, 3.0).Scale(2.0) // => BBMOD_Vec3(2.0, 4.0, 6.0)
Do you find this page helpful?

Copyright © 2024, BlueBurn. Built on January 21, 2024 using GMDoc.