Skip to content

Commit

Permalink
note about URP and HDRP
Browse files Browse the repository at this point in the history
  • Loading branch information
jinpavg committed Aug 3, 2023
1 parent 93dbe9b commit db01d1b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RNBO Unity Audio Plugin

*This is experimental software—use at your own risk, and know that anything in this repository could change in the future.*
*This is experimental software—use at your own risk, and know that anything in this repository could change in the future. See [Known Issues](#known-issues) below.*


Here we implement a Native Audio Plugin for Unity as well as a helper object that facilitates working with that plugin.
Expand Down Expand Up @@ -159,7 +159,11 @@ cmake --build .

## Known Issues

* **Transport Memory Leak:** if you create a lot of transports, they won't be deallocated, so you're better off re-using transports (rather than creating a new transport each time you need one) if you need more granular transport control than the global transport provides.
* **URP and HDRP Projects**
- Using Unity's Built-in Renderer, this plugin should run as expected in the Unity editor and in builds. However, if you are using URP or HDRP, you can expect some audio interruptions (glitching sounds) when running your RNBO plugins in-editor. This seems to be due to a current issue with the Unity Editor. However, these audio issues do not extend to builds of your game.

* **Transport Memory Leak**
- If you create a lot of transports, they won't be deallocated, so you're better off re-using transports (rather than creating a new transport each time you need one) if you need more granular transport control than the global transport provides.

## TODO

Expand Down

0 comments on commit db01d1b

Please sign in to comment.