-
Notifications
You must be signed in to change notification settings - Fork 32
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
Last node in color map is always black #750
Comments
@moreApi Your example is missing. I seem to be having an issue where textures turn black. If I select a new colormap it will briefly show color, then turn black again. Maybe it is related? |
@odinsbane the volume turning black is likely caused by this bug, for me it happens as soon as I hover over the color map editor. |
Exactly. That is the issue I am having. I don't know if it is related to this issue. |
This error is caused by Colormap#sample
Indexes are 0 based so they should go from 0 to width - 1. This is 0 to width, but since the Colormap can have multiple bands it wraps back to the next band... which is black again. |
with odd h values. Issue scenerygraphics#750 Made a hot fix for generating an image form the ColormapEditor the image was only halfdrawn. Issue scenerygraphics#757
as seen for example here:
#757
The text was updated successfully, but these errors were encountered: