-
Notifications
You must be signed in to change notification settings - Fork 342
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
"Touching color (white)" behaves inconsistently #488
Comments
Can you post the test project as a .zip? I created a simple test project in s2online, and it does return true there: |
My mistake, the script wasn't running :p |
The plot thickens: Note what happens when the cat touches the edges of the stage. |
oh no |
So in conclusion:
|
Talked to @cwillisf and we decided that we want to keep the scratch 2 behavior, except that when touching outside of the stage, touching white should not be true. That is
|
I tried matching that behavior when you first showed what 2.0 did, but got stuck on the case of gradients which fade to transparent: (this is a .sb2) There's a specific point along the gradient where 2.0 decides it's no longer touching grey, but I have no idea why, because it appears the 2.0 "touching color" code completely ignores alpha. Perhaps you or @cwillisf might be able to shed some light on how the Flash BitmapData class behaves. Adobe says it's premultiplied, but if that's the case, there should be erroneous "touching color" results from rounding errors when un-premultiplying the colors, which I don't see. The BitmapData.threshold function is used to test color values, but it looks like the mask is set to completely ignore alpha values. The "color () is touching color()" block does mask out the alpha value by EDIT: I've created a branch which includes all my commits that fix "touching color"-related code (#479, #489, and #515). Might help with debugging this. |
The gradient background touching color issue feels like a very specific edge case, and we don't have examples of 2.0 projects that depend on the behavior that we've seen yet. Given that, I think for 3.0 we can move ahead with anything that feels right. I think it would be fine to have touching gray be true throughout the gradient. Thoughts? |
Unfortunately, that won't work because while |
Mystery solved! Scratch 2.0 doesn't count transparent backgrounds as "white" because, as can be seen in this line, it instead counts them as this color ( You can test this for yourself with this test project (rename extension to .sb2). Is this worth emulating? |
Also, since You can test this with the following code: (() => {
let threshold = 256;
while (threshold > 0) {
for (let i = 0; i < 256; i++) {
let unrounded = Math.round(i * (threshold/256)) / (threshold/256);
if (((Math.round(unrounded) ^ i) & 0b11111000) !== 0) return threshold + 1;
}
threshold--;
}
})() This means that, if you don't want to emulate the weird yellow color behavior, "touching color" can instead consider colors with an alpha < 248 to be too transparent to test. |
I'm dying inside |
Since I don't think we should keep the ship-it-yellow behavior, let's decide that touching white should be true when touching the background color. I think that's the most reasonable thing for a beginner to expect, and anyone who is relying on the current behavior is probably really confused by what we're doing |
Side note: we should search for how many projects are using touching color F0F080 in jupyter |
Expected Behavior
"touching color (white)" should always return
true
over a white backdrop.Actual Behavior
On the CPU path, "touching color (white)" only returns true when the sprite calling it is within the bounds of another drawable. On the GPU path, it never returns true.
Steps to Reproduce
See this project.
The text was updated successfully, but these errors were encountered: