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 voidonDecorativeObjectDespawned(net.runelite.api.events.DecorativeObjectDespawned event)voidonDecorativeObjectSpawned(net.runelite.api.events.DecorativeObjectSpawned event)voidonGameObjectDespawned(net.runelite.api.events.GameObjectDespawned event)voidonGameObjectSpawned(net.runelite.api.events.GameObjectSpawned event)voidonGroundObjectDespawned(net.runelite.api.events.GroundObjectDespawned event)voidonGroundObjectSpawned(net.runelite.api.events.GroundObjectSpawned event)voidonMenuEntryAdded(net.runelite.api.events.MenuEntryAdded event)voidonProfileChanged(ProfileChanged e)voidonWallObjectDespawned(net.runelite.api.events.WallObjectDespawned event)voidonWallObjectSpawned(net.runelite.api.events.WallObjectSpawned event)voidonWorldViewLoaded(net.runelite.api.events.WorldViewLoaded event)voidonWorldViewUnloaded(net.runelite.api.events.WorldViewUnloaded event)protected voidshutDown()protected voidstartUp()-
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(net.runelite.api.events.WallObjectSpawned event)
-
onWallObjectDespawned
@Subscribe public void onWallObjectDespawned(net.runelite.api.events.WallObjectDespawned event)
-
onGameObjectSpawned
@Subscribe public void onGameObjectSpawned(net.runelite.api.events.GameObjectSpawned event)
-
onDecorativeObjectSpawned
@Subscribe public void onDecorativeObjectSpawned(net.runelite.api.events.DecorativeObjectSpawned event)
-
onGameObjectDespawned
@Subscribe public void onGameObjectDespawned(net.runelite.api.events.GameObjectDespawned event)
-
onDecorativeObjectDespawned
@Subscribe public void onDecorativeObjectDespawned(net.runelite.api.events.DecorativeObjectDespawned event)
-
onGroundObjectSpawned
@Subscribe public void onGroundObjectSpawned(net.runelite.api.events.GroundObjectSpawned event)
-
onGroundObjectDespawned
@Subscribe public void onGroundObjectDespawned(net.runelite.api.events.GroundObjectDespawned event)
-
onWorldViewLoaded
@Subscribe public void onWorldViewLoaded(net.runelite.api.events.WorldViewLoaded event)
-
onWorldViewUnloaded
@Subscribe public void onWorldViewUnloaded(net.runelite.api.events.WorldViewUnloaded event)
-
onMenuEntryAdded
@Subscribe public void onMenuEntryAdded(net.runelite.api.events.MenuEntryAdded event)
-
-