diff --git a/src/accessibility/outputs.js b/src/accessibility/outputs.js index ef913739fb..b983af1db5 100644 --- a/src/accessibility/outputs.js +++ b/src/accessibility/outputs.js @@ -37,6 +37,15 @@ import p5 from '../core/main'; * Writing accessible canvas descriptions * to learn more about making sketches accessible. * + * `textOutput()` generates descriptions in English only. Text drawn with + * text() is not described. Shapes created with + * beginShape() are not described. WEBGL mode + * and 3D shapes are not supported. + * + * Use describe() and + * describeElement() for more control + * over canvas descriptions. + * * @method textOutput * @param {Constant} [display] either FALLBACK or LABEL. * @@ -180,6 +189,15 @@ p5.prototype.textOutput = function(display) { * Writing accessible canvas descriptions * to learn more about making sketches accessible. * + * `gridOutput()` generates descriptions in English only. Text drawn with + * text() is not described. Shapes created with + * beginShape() are not described. WEBGL mode + * and 3D shapes are not supported. + * + * Use describe() and + * describeElement() for more control + * over canvas descriptions. + * * @method gridOutput * @param {Constant} [display] either FALLBACK or LABEL. *