Remove references to pen shade

This commit is contained in:
Eric Rosenbaum 2017-10-17 12:23:38 -04:00
parent 264042b4cc
commit 086df4652e

View file

@ -23,7 +23,6 @@ const ColorParam = {
* @typedef {object} PenState - the pen state associated with a particular target. * @typedef {object} PenState - the pen state associated with a particular target.
* @property {Boolean} penDown - tracks whether the pen should draw for this target. * @property {Boolean} penDown - tracks whether the pen should draw for this target.
* @property {number} color - the current color (hue) of the pen. * @property {number} color - the current color (hue) of the pen.
* @property {number} shade - the current shade of the pen.
* @property {PenAttributes} penAttributes - cached pen attributes for the renderer. This is the authoritative value for * @property {PenAttributes} penAttributes - cached pen attributes for the renderer. This is the authoritative value for
* diameter but not for pen color. * diameter but not for pen color.
*/ */
@ -71,7 +70,6 @@ class Scratch3PenBlocks {
color: 33, color: 33,
saturation: 100, saturation: 100,
brightness: 100, brightness: 100,
shade: 50,
transparency: 0, transparency: 0,
penAttributes: { penAttributes: {
color4f: [0, 0, 1, 1], color4f: [0, 0, 1, 1],