-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
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
Known (Blender) Issues #26
Comments
The background images of the animated camera are currently only visible if EDIT: See https://developer.blender.org/T85750 |
Currently the addon uses something like |
EDIT: This bug has been fixed (see https://developer.blender.org/T86106). In the latest version of the addon the drawing callbacks are correctly deleted. |
bgl.glEnable(bgl.GL_DEPTH_TEST)
is broken in Blender 2.90. Thus, the occlusion handling of point clouds in the 3D viewport with OpenGL does not work properlybgl.glEnable(bgl.GL_DEPTH_TEST)
causes strange artifacts underWindows
. Saving images of point clouds using the photogrammetry importer panel (in the 3D view) might result in black images. Dependending on your use case consider to uncomment the corresponding lineNote: Blender is currently switching fromOpenGL
toVulkan
, i.e. thebgl module
will be deprecated! This could resolve the current rendering issues.EDIT: See https://developer.blender.org/T85709EDIT: This bug has been fixed in the latest version of the addon using the new api of Blender 3.0
The text was updated successfully, but these errors were encountered: