Hello Guys!
I was wondering if there is a way to profile our CGA code, is there a way to determine the number of calls for specific function, time spent in each function, etc.
For example:
Also I came across something that I am not sure if the call is being done one or three time
getScopeInWorld =
[ convert( x, scope, world, pos, 0,0,0 ) ,
convert( y, scope, world, pos, 0,0,0 ) ,
convert( z, scope, world, pos, 0,0,0 ) ]
print( [ getScopeInWorld[0], getScopeInWorld[1], getScopeInWorld[2] ] )
is getScopeInWorld evaluated three time or one time?