Identifying Screen Creation Performance Issues
Introduction
Measuring time in CustomInitialize
void CustomInitialize()
{
for(int i = 0; i < 20000; i++)
{
AxisAlignedRectangle newRectangle = ShapeManager.AddAxisAlignedRectangle();
newRectangle.X = i * 10;
}
}Measuring all Initialization including generated code
Turning on detailed performance logging in Glue
Modifying your code to output load times
Where is the slowdown?
Last updated
Was this helpful?