Usando el patio de juegos predeterminado como ejemplo (playground.babylonjs.com)
¿Cómo puedo invertir las direcciones de presión y arrastre del mouse?
var createScene = function () { var scene = new BABYLON.Scene(engine); var camera = new BABYLON.FreeCamera("camera1", new BABYLON.Vector3(0, 5, -10), scene); camera.setTarget(BABYLON.Vector3.Zero()); camera.attachControl(canvas, true); var light = new BABYLON.HemisphericLight("light", new BABYLON.Vector3(0, 1, 0), scene); light.intensity = 0.7; var sphere = BABYLON.MeshBuilder.CreateSphere("sphere", {diameter: 2, segments: 32}, scene); sphere.position.y = 1; var ground = BABYLON.MeshBuilder.CreateGround("ground", {width: 6, height: 6}, scene); return scene; };Estaba mirando la documentación incorrecta, estaba allí todo el tiempo:
camera.invertRotation = true;