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
The result of project(scene, point) depends on a lot of stuff, it's not enough to just do @lift project($scene, $point). One needs to do
project(scene, point)
@lift project($scene, $point)
@lift ($(scene.camera.projectionview); $(scene.viewport); project($scene, $point))
, and I'm not sure if that's the complete list. Is it specified anywhere?
Would be useful and less error-prone to add project_obs(scene, point)::Observable that takes care of including all proper dependencies of project().
project_obs(scene, point)::Observable
project()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature description
The result of
project(scene, point)
depends on a lot of stuff, it's not enough to just do@lift project($scene, $point)
. One needs to do, and I'm not sure if that's the complete list. Is it specified anywhere?
Would be useful and less error-prone to add
project_obs(scene, point)::Observable
that takes care of including all proper dependencies ofproject()
.The text was updated successfully, but these errors were encountered: