Java Code Examples for net.runelite.api.GroundObject#getWorldLocation()
The following examples show how to use
net.runelite.api.GroundObject#getWorldLocation() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TelekineticRoom.java From plugins with GNU General Public License v3.0 | 5 votes |
private void onGroundObjectSpawned(GroundObjectSpawned event) { final GroundObject object = event.getGroundObject(); if (object.getId() == TELEKINETIC_FINISH) { finishLocation = object.getWorldLocation(); } }
Example 2
Source File: TelekineticRoom.java From runelite with BSD 2-Clause "Simplified" License | 5 votes |
@Subscribe public void onGroundObjectSpawned(GroundObjectSpawned event) { final GroundObject object = event.getGroundObject(); if (object.getId() == TELEKINETIC_FINISH) { finishLocation = object.getWorldLocation(); } }