Add files via upload

Removed hull highlighting for boss as it uses deprecated functionality and is incompatible with the latest RuneLite release.
Removed hull highlighting for projectiles as it uses deprecated functionality and is incompatible with the latest RuneLite release.
Working on updating hull highlighting and re-implementing.

Removed onConfigChanged event handler as event is deprecated in latest RuneLite release.
This commit is contained in:
Kalakoi
2020-02-10 10:32:20 -05:00
committed by GitHub
parent 55f2310403
commit bc2a64695f
3 changed files with 10 additions and 10 deletions

View File

@@ -8,7 +8,7 @@ import net.runelite.api.Point;
import net.runelite.api.Projectile;
import net.runelite.api.coords.LocalPoint;
import net.runelite.api.model.Jarvis;
import net.runelite.api.model.Vertex;
//import net.runelite.api.model.Vertex;
import java.awt.*;
import java.util.ArrayList;
@@ -170,7 +170,7 @@ public class GauntletUtils {
}
}
public static Polygon boundProjectile(Client client, Projectile p) {
/*public static Polygon boundProjectile(Client client, Projectile p) {
if (p == null || p.getModel() == null)
return null;
@@ -212,5 +212,5 @@ public class GauntletUtils {
}
return polygon;
}
}*/
}