We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Great plugin guys, thanks so much!
But how do you make it fullscreen / resizable like in the example: http://wagerfield.github.io/flat-surface-shader?
Thanks
The text was updated successfully, but these errors were encountered:
you could try this: instead of
var geometry = new FSS.Plane(600, 400, 6, 4);
put
var geometry = new FSS.Plane(screen.availWidth, screen.availHeight, 6, 4);
Sorry, something went wrong.
For resizing the plane, I found it best to use container.offsetHeight:
function resize() { renderer.setSize(screen.availWidth, container.offsetHeight); }
No branches or pull requests
Great plugin guys, thanks so much!
But how do you make it fullscreen / resizable like in the example: http://wagerfield.github.io/flat-surface-shader?
Thanks
The text was updated successfully, but these errors were encountered: