What it does
vec3.multiply takes v and s.
Signature
vec3.multiply(v, s)Arguments
vs
Example · generated
function update(dt) { vec3.multiply(0.5, 1);}vec3.multiply is called with values of the shape its signature asks for. The code sits in update(dt), which the engine calls every frame: dt is the time since the last one, in seconds.