mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-23 05:52:42 -05:00
Bump grid opacity
This commit is contained in:
parent
87e01639c0
commit
323c9f634e
1 changed files with 2 additions and 2 deletions
|
@ -298,7 +298,7 @@ const _makeBackgroundGuideLayer = function (format) {
|
||||||
const vBackground = _makeBackgroundPaper(
|
const vBackground = _makeBackgroundPaper(
|
||||||
MAX_WORKSPACE_BOUNDS.width / CHECKERBOARD_SIZE,
|
MAX_WORKSPACE_BOUNDS.width / CHECKERBOARD_SIZE,
|
||||||
(MAX_WORKSPACE_BOUNDS.height / CHECKERBOARD_SIZE) + 1,
|
(MAX_WORKSPACE_BOUNDS.height / CHECKERBOARD_SIZE) + 1,
|
||||||
'#0062ff', 0.05);
|
'#0062ff', 0.1);
|
||||||
vBackground.position = CENTER;
|
vBackground.position = CENTER;
|
||||||
vBackground.scaling = new paper.Point(CHECKERBOARD_SIZE, CHECKERBOARD_SIZE);
|
vBackground.scaling = new paper.Point(CHECKERBOARD_SIZE, CHECKERBOARD_SIZE);
|
||||||
|
|
||||||
|
@ -311,7 +311,7 @@ const _makeBackgroundGuideLayer = function (format) {
|
||||||
const bitmapBackground = _makeBackgroundPaper(
|
const bitmapBackground = _makeBackgroundPaper(
|
||||||
ART_BOARD_WIDTH / CHECKERBOARD_SIZE,
|
ART_BOARD_WIDTH / CHECKERBOARD_SIZE,
|
||||||
ART_BOARD_HEIGHT / CHECKERBOARD_SIZE,
|
ART_BOARD_HEIGHT / CHECKERBOARD_SIZE,
|
||||||
'#0062ff', 0.05);
|
'#0062ff', 0.1);
|
||||||
bitmapBackground.position = CENTER;
|
bitmapBackground.position = CENTER;
|
||||||
bitmapBackground.scaling = new paper.Point(CHECKERBOARD_SIZE, CHECKERBOARD_SIZE);
|
bitmapBackground.scaling = new paper.Point(CHECKERBOARD_SIZE, CHECKERBOARD_SIZE);
|
||||||
bitmapBackground.guide = true;
|
bitmapBackground.guide = true;
|
||||||
|
|
Loading…
Reference in a new issue