RPG MAKER VXACE PROFILER

RPG Maker VX Ace

Check your game's performance

Put this script below all other scripts but above main.
Press CTRL to print to Console the results.
This script is made with Neonblack :)



% time
The percent of the time spent inside the procedure itself (not counting children).
cumulative seconds
The total number of seconds spent in the procedure, including children.
self seconds
The total number of seconds spent in the procedure itself (not counting children).
calls
The total number of times the procedure was called.
self ms/call
The average time taken by the procedure itself on each call, in ms.
total ms/call
The average time taken by each call to the procedure, including time spent in child functions.