Description
What this mod does, is it makes the FPS graph show what's causing the lag, through the usage of colors. This is useful for debugging laggy mods, that have added integration for this.
Icon is an example of what it might look like.
Green represents the render time of the graph itself, black is unknown, the rest of the colors are up to the devs.
Implementation:
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]")
}


