-
-
Notifications
You must be signed in to change notification settings - Fork 497
2.0.24 #1564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
2.0.24 #1564
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
0cfc1cd
feat: Allow interacting with Rs2ItemModel through sub-menu without th…
Krulvis 0fbfd8a
feat(Rs2Equipment): Allow interaction with through sub-menu actions
Krulvis e2cb049
feat(Rs2Walker): Allow use of sub-menu interaction and further code c…
Krulvis 3fe45d7
Merge branch 'refs/heads/development' into feature/invokesubmenu
Krulvis 69e8ed2
- Rs2Equipment - Added bounds for equipment slot widget for un equipping
51508f4
worldarea: fix plane passed to extraCondition
Adam- ef001ea
npc highlight: fix untagging npcs in instances
Adam- 54bb840
client: add worldview support to overlays
Adam- d020719
chores(Rs2Equipment): added null check for widget and default back to…
88f2457
item identification: add surge potion
j-pettit 6931bbe
worldmap: Add Darkmeyer wall rocks, Fossil island zipline, Mausoleum …
coopermor 5a86015
Merge pull request #1561 from Sorries/development
chsami f1c3881
Merge branch 'development' into feature/invokesubmenu
chsami 6496172
Merge pull request #1555 from Krulvis/feature/invokesubmenu
chsami 60c68c7
xpupdater: remove runetracker
Adam- 30919eb
xpupdater: exclude tournament worlds
Adam- 8b44fca
feat: add search functionality to MicrobotConfigPanel
chsami 6885415
feat: bump 2.0.22
chsami 5d6deaf
Release 1.11.21
451ead4
Bump for 1.11.22-SNAPSHOT
0cb4392
api: add WorldEntity.isHiddenForOverlap()
Adam- 3e808e8
api: make toLocalInstance not return points outside of the scene
Adam- d36c56a
object indicators: hide overlays on hidden worldentities
Adam- 8d32c4f
object indicators: remove points on wv unload
Adam- 38a3ae7
object indicators: fix (un)marking objects which occur multiple times
Adam- 1afab68
interface styles: set wv id on condensed menus
Adam- 49d5272
refactor(Rs2ItemModel): simplify getIndexOfSubAction return values
chsami 92c1506
Merge branch 'runelite/master' into development
chsami 2aaeed6
feat(actor): add method to retrieve camera focus
chsami 2f391fb
refactor(perspective): update clickbox method to use top-level world …
chsami File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
runelite-api/src/main/java/net/runelite/api/CameraFocusableEntity.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| /* | ||
| * Copyright (c) 2025, Adam <Adam@sigterm.info> | ||
| * All rights reserved. | ||
| * | ||
| * Redistribution and use in source and binary forms, with or without | ||
| * modification, are permitted provided that the following conditions are met: | ||
| * | ||
| * 1. Redistributions of source code must retain the above copyright notice, this | ||
| * list of conditions and the following disclaimer. | ||
| * 2. Redistributions in binary form must reproduce the above copyright notice, | ||
| * this list of conditions and the following disclaimer in the documentation | ||
| * and/or other materials provided with the distribution. | ||
| * | ||
| * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
| * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
| * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
| * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | ||
| * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
| * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
| * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
| * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
| * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| */ | ||
| package net.runelite.api; | ||
|
|
||
| import net.runelite.api.coords.LocalPoint; | ||
|
|
||
| public interface CameraFocusableEntity | ||
| { | ||
| WorldView getWorldView(); | ||
|
|
||
| LocalPoint getCameraFocus(); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct the javadoc to reference WorldView instead of WorldEntity.
The javadoc incorrectly references
{@link WorldEntity}when the method returnsWorldView. Additionally, the@returntag is empty and should describe what is returned.Apply this diff:
📝 Committable suggestion
🤖 Prompt for AI Agents