davidfig/pixi-viewport

Clamp cannot be turned off

Opened this issue · 1 comments

Hi, I have a use case where I need to be able to dynamically turn the clamping on and off based on my displayed content.
The documentation says: "NOTES: clamp is disabled if called with no options", but this seems to not work at all. The panning is still restricted, only my previously passed config seems to go away.
This can also be reproduced if I just call .clamp() as-is for the first time on the view, the panning is already restricted. I tried to play around with the screenWidth, screenHeight, worldWidth, and worldHeight properties as well (since my worldWidth and worldHeight would be 0 otherwise) but that didn't help either.
Is this a bug or am I missing something?

I had the same issue. Solved it by using viewport.plugins.remove("clamp"); instead of sending no options.