Playmaker Forum
PlayMaker Help & Tips => PlayMaker Help => Topic started by: MajorIdea on July 20, 2014, 06:57:59 PM
-
Hi,
Is there any way of generating both the positive and negative version of a random float?
I tried doing the simple math (get the random float value, multiply by 2 and subtract the original by the multiplication) but there doesn't appear to be a way to store the results.
-
Multiply the random float by -1 (using a float operator action)
-
Good ol' Float Operator. How did I forget about it! :D Thanks!