La función setMoveThreshold() se utiliza para establecer el umbral de movimiento para la función deviceMoved() . El umbral predeterminado se establece en 0,5 .
Sintaxis:
setMoveThreshold(value)
Parámetro: Esta función acepta un solo parámetro como se mencionó anteriormente y se describe a continuación.
- valor: Es un número que denota el valor umbral.
Ejemplo:
Javascript
// Run this example on a mobile device // You will need to move the device incrementally further let value = 0; let threshold = 0.5; function setup() { // The function in which we pass the threshold value as default. setMoveThreshold(threshold); } function draw() { fill(value); ellipse(56, 46, 55, 55); } function deviceMoved() { value = value + 7; // increment in the threshold. threshold = threshold + 0.1; if (value > 255) { value = 0; threshold = 30; } //Again set the threshold function. setMoveThreshold(threshold); }
Producción:
Referencia: https://p5js.org/reference/#/p5/setMoveThreshold
Publicación traducida automáticamente
Artículo escrito por _sh_pallavi y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA