Vector4.Scalefunction Scale (scale : Vector4) : voidDescriptionMultiplies every component of this vector by the same component of scale. static function Scale (a : Vector4, b : Vector4) : Vector4DescriptionMultiplies two vectors component-wise. Every component in the result is a component of a multiplied by the same component of b.
JavaScript
// prints (2.0,6.0,12.0,20.0) using UnityEngine; import UnityEngine |
