mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-06-05 18:14:55 -04:00
Merge pull request #759 from paulkaplan/fix-pen-transparency
Add back pen transparency from color number
This commit is contained in:
commit
67cb026e02
1 changed files with 5 additions and 1 deletions
|
@ -451,7 +451,11 @@ class Scratch3PenBlocks {
|
|||
penState.color = (hsv.h / 360) * 100;
|
||||
penState.saturation = hsv.s * 100;
|
||||
penState.brightness = hsv.v * 100;
|
||||
penState.transparency = 0;
|
||||
if (rgb.hasOwnProperty('a')) {
|
||||
penState.transparency = 100 * (1 - (rgb.a / 255.0));
|
||||
} else {
|
||||
penState.transparency = 0;
|
||||
}
|
||||
|
||||
// Set the legacy "shade" value the same way scratch 2 did.
|
||||
penState._shade = penState.brightness / 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue