当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


p5.js exitPointerLock()用法及代码示例


函数 exitPointerLock() 退出先前使用的指针锁,例如,如果指针被锁定,则将其解锁,反之亦然。用于退出由 requestPointer() 函数调用的指针锁。

用法:

exitPointerLock()

第一步:打开p5.js的网页编辑器 https://editor.p5js.org/

第二步:编写如下代码,查看结果。

例:



Javascript


// Make a boolean variable and set
// its value false
let lock = false;
  
// Set the function
function setup() {
  
    // Set the frame rate
    frameRate(5);
  
    // Set the canvas size
    createCanvas(600, 400, WEBGL);
}
  
// Set the draw function
function draw() {
  
    // Set the background colour
    background(175);
  
    // Set the camera
    let cX = random(-10, 10);
    let cY = random(-10, 10);
    let cZ = random(-10, 10);
  
    camera(cX, cY,
        cZ + (height / 2) / tan(PI / 6),
        cX, 0, 0, 0, 1, 0);
  
    ambientLight(255);
  
    rotateX(-movedX * 0.1);
    rotateY(movedY * 0.1);
  
    noStroke();
    normalMaterial();
  
    box(100, 100, 100);
}
  
// Function to apply exitpointer lock
function mouseReleased() {
  
    // If lock is not false then
    // make it true
    if (!lock) {
        lock = true;
  
        // Request for pointer lock
        requestPointerLock();
    } else {
  
        // Exit the pointer lock
        exitPointerLock();
  
        // Again make te lock variable false
        lock = false;
    }
}

输出

在输出中,我们可以看到,当鼠标被释放时,它退出了之前的指针锁定,因为我们已经设置了 mouseReleased() 函数来退出指针锁定。




相关用法


注:本文由纯净天空筛选整理自_sh_pallavi大神的英文原创作品 p5.js exitPointerLock() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。