Skip to content
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

RemixApi: add AddTextureHash and RemoveTextureHash methods #17

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

xoxor4d
Copy link
Contributor

@xoxor4d xoxor4d commented Mar 19, 2025

This is one part of the PR that covers both the bridge and the runtime. The runtime PR can be found here:
tba ...

This PR implements two new API methods: AddTextureHash and RemoveTextureHash.
These can be used to add or remove individual texture hashes from texture category options (hash sets).
The SetConfigVariable is not practical in that regard as it only allows to set the entire option to the specified value and would require the user to craft the entire hash set string.

Example use cases:

  • Some effect or similar that is using texture XY is causing issues on a certain map and has to be hidden. But texture XY is also used in other parts of the game where it does not cause issues.
  • Multiplayer/Coop games where the player character is visible in first person view (and tagged as player body) to allow for shadows or virtual instances (Portal) but the player model changes based on the class/team etc. Prime example would be Portal 2 Coop where two different player models are in use. The two methods allow me to dynamically set/remove the player body texture hashes depending on which character you play.

Notheworthy changes:

  • increased REMIXAPI_VERSION_MINOR from 5 to 6

Included fixes:

2025-03-18.21-25-29.mp4
if (ImGui::Button("Add Hash")) {
	remix_api::get()->m_bridge.AddTextureHash("rtx.ignoreTextures", "0x990C1CCB42F806E0");
}
if (ImGui::Button("Remove Hash")) {
	remix_api::get()->m_bridge.RemoveTextureHash("rtx.ignoreTextures", "0x990C1CCB42F806E0");
}

also fixes #727 (NVIDIAGameWorks/rtx-remix#727)

- increased REMIXAPI_VERSION_MINOR from 5 to 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant