You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a multi-viewport feature in Dear PyGui? I'm currently facing the issue of having too many child windows, and I hope the child windows can have independent viewports. Or in which direction should I look to solve this problem?
The text was updated successfully, but these errors were encountered:
Unfortunately DPG only supports a single viewport. Deep inside, it stores the viewport in a global variable, so there can be only one viewport per process.
You can use multiple processes (not threads) to open multiple viewports. Take a look at the multiprocessing module, not sure how much it helps though.
Is there a multi-viewport feature in Dear PyGui? I'm currently facing the issue of having too many child windows, and I hope the child windows can have independent viewports. Or in which direction should I look to solve this problem?
The text was updated successfully, but these errors were encountered: