Is there a way to do this in Construct2? If not, here's what I have so far in my plugin:
Math.degrees = function(rad)
{
return rad*(180/Math.PI);
}
Is this the best way? It works... but I'd rather use a built in method.
Develop games in your browser. Powerful, performant & highly capable.
You can do this in C2 expressions. Just replace rad,
rad*180/PI
I did not know C2 had PI.... thanks man.