1 decade ago by dungeonmaster
I still couldn't wrap my head over module system that impact uses.
So I have this function:
I want to call this function anywhere within my code just like Math.Min for example.
Where and how should I put it without breaking baking and so on?
So I have this function:
MyLib.SquareSum = function(a,b) { return (a*a+b*b); }
I want to call this function anywhere within my code just like Math.Min for example.
Where and how should I put it without breaking baking and so on?