Remove bounding boxes

This commit is contained in:
Adam
2018-05-10 08:45:45 -04:00
parent b805f786a8
commit 4d9c58750a
9 changed files with 0 additions and 205 deletions

View File

@@ -521,27 +521,6 @@ public abstract class RSClientMixin implements RSClient
return null;
}
@Inject
@Override
public boolean getBoundingBoxAlwaysOnMode()
{
return getboundingBox3DDrawMode() == getALWAYSDrawMode();
}
@Inject
@Override
public void setBoundingBoxAlwaysOnMode(boolean alwaysDrawBoxes)
{
if (alwaysDrawBoxes)
{
setboundingBox3DDrawMode(getALWAYSDrawMode());
}
else
{
setboundingBox3DDrawMode(getON_MOUSEOVERDrawMode());
}
}
@Inject
@Override
public void changeMemoryMode(boolean lowMemory)