c-frame / aframe-extras

Add-ons and helpers for A-Frame VR.

Home Page:https://c-frame.github.io/aframe-extras/examples/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[nipple-controls] rotation joystick only and move forward

vincentfretin opened this issue · comments

On this game https://animals.bio it uses a single virtual joystick that is actually the rotation virtual joystick (see #425) and it just moves forward when you touch the screen. I added some options to nipple-controls to disable one joystick or the other, see usage https://github.com/c-frame/aframe-extras/tree/master/src/controls#usage
and schema

mode: { default: "dynamic", oneOf: ["static", "semi", "dynamic"] },
rotationSensitivity: { default: 1.0 },
moveJoystickEnabled: { default: true },
lookJoystickEnabled: { default: true },
sideMargin: { default: "30px" },
bottomMargin: { default: "70px" },
moveJoystickPosition: { default: "left", oneOf: ["left", "right"] },
lookJoystickPosition: { default: "right", oneOf: ["left", "right"] },

so enabling only rotation is nipple-controls="moveJoystickPosition: false"
but an option is missing to also move forward like moveForwardOnTouch:true (false by default)