Problem at the ray of stylus when I open two zSpace applications

When I open two zSpace applications, the ray of stylus will stay on both applications at the same time. How to make the ray stay at the top?

Running two separate zSpace applications at the same time is not a scenario that we planned for or tested against when developing zCore.

I would recommend looking into Unity’s Monobehaviour.OnApplicationFocus() callback. When it returns false, disable the stylus, and when it’s true, enable it. I expect that this would accomplish what you’re asking for so long as both apps allow “run in background” within their project settings.

Thanks for your reply.