Class ObjectIndicatorsPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.objectindicators.ObjectIndicatorsPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
@PluginDescriptor(name="Object Markers", description="Enable marking of objects using the Shift key", tags={"overlay","objects","mark","marker"}, enabledByDefault=false) public class ObjectIndicatorsPlugin extends Plugin
-
-
Constructor Summary
Constructors Constructor Description ObjectIndicatorsPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onDecorativeObjectDespawned(DecorativeObjectDespawned event)
void
onDecorativeObjectSpawned(DecorativeObjectSpawned event)
void
onGameObjectDespawned(GameObjectDespawned event)
void
onGameObjectSpawned(GameObjectSpawned event)
void
onGameStateChanged(GameStateChanged gameStateChanged)
void
onGroundObjectDespawned(GroundObjectDespawned event)
void
onGroundObjectSpawned(GroundObjectSpawned event)
void
onMenuEntryAdded(MenuEntryAdded event)
void
onProfileChanged(ProfileChanged e)
void
onWallObjectDespawned(WallObjectDespawned event)
void
onWallObjectSpawned(WallObjectSpawned event)
protected void
shutDown()
protected void
startUp()
-
Methods inherited from class net.runelite.client.plugins.Plugin
configure, equals, getInjector, getName, hashCode, resetConfiguration
-
-
-
-
Method Detail
-
onProfileChanged
@Subscribe public void onProfileChanged(ProfileChanged e)
-
onWallObjectSpawned
@Subscribe public void onWallObjectSpawned(WallObjectSpawned event)
-
onWallObjectDespawned
@Subscribe public void onWallObjectDespawned(WallObjectDespawned event)
-
onGameObjectSpawned
@Subscribe public void onGameObjectSpawned(GameObjectSpawned event)
-
onDecorativeObjectSpawned
@Subscribe public void onDecorativeObjectSpawned(DecorativeObjectSpawned event)
-
onGameObjectDespawned
@Subscribe public void onGameObjectDespawned(GameObjectDespawned event)
-
onDecorativeObjectDespawned
@Subscribe public void onDecorativeObjectDespawned(DecorativeObjectDespawned event)
-
onGroundObjectSpawned
@Subscribe public void onGroundObjectSpawned(GroundObjectSpawned event)
-
onGroundObjectDespawned
@Subscribe public void onGroundObjectDespawned(GroundObjectDespawned event)
-
onGameStateChanged
@Subscribe public void onGameStateChanged(GameStateChanged gameStateChanged)
-
onMenuEntryAdded
@Subscribe public void onMenuEntryAdded(MenuEntryAdded event)
-
-