Defining regions in your Godot project

To define regions of interest within the game, you can specify a pair of markers prefixed with Region Start and Region End, for example:

    

        
        
performance_studio.marker("Region Start Times Square")
# Do work
performance_studio.marker("Region End Times Square")

    

These regions are shown on the frame rate analysis chart in the Performance Advisor report.

Image Alt Text:Regions in Performance AdvisorRegions in Performance Advisor

Performance Advisor also includes dedicated charts for each region at the end of the report, allowing you to analyze them independently.

Image Alt Text:Dedicated region charts in Performance AdvisorDedicated region charts in Performance Advisor

Back
Next