
Better FPS Graph - Performance Analysis Tool
This mod transforms the standard FPS graph into a powerful diagnostic tool that visualizes lag sources through color coding. Mod developers can now more easily identify problematic code sections that slow down game performance.
The graph's color scheme helps quickly determine the cause of performance drops: green color shows the graph's own rendering time, black indicates unknown processes, and other colors are configured by developers to display specific modules or functions.
To integrate the mod into your project, use the following code:
buildscript { repositories { ... maven { url "https://plugins.gradle.org/m2/" } } dependencies { ... classpath "com.wynprice.cursemaven:CurseMaven:2.1.4" } }
apply plugin: "com.wynprice.cursemaven"
dependencies { ... compile fg.deobf("curse.maven:better-fps-graph:[version_file_id]") }