mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-05 10:05:51 +02:00
use JS method to enable/disable avatar collisions
This commit is contained in:
parent
97d75e654e
commit
3caea88641
1 changed files with 10 additions and 1 deletions
|
@ -13,7 +13,6 @@
|
|||
//
|
||||
// Usage instruction: Spacebar toggles camera control - WASD first person free movement or no movement but allowing others to grab the selfie stick
|
||||
// and control your camera.
|
||||
// For best result, turn off avatar collisions(Developer > Avatar > Uncheck Enable Avatar Collisions)
|
||||
//
|
||||
|
||||
(function() { // BEGIN LOCAL_SCOPE
|
||||
|
@ -25,12 +24,21 @@
|
|||
var lensEntityID = null;
|
||||
var freeMovementMode = true;
|
||||
|
||||
turnOffAvatarCollisions();
|
||||
changeAvatar();
|
||||
importModel();
|
||||
processImportedEntities();
|
||||
setupSpaceBarControl();
|
||||
Script.update.connect(update);
|
||||
|
||||
function turnOffAvatarCollisions() {
|
||||
Menu.setIsOptionChecked("Enable avatar collisions", 0);
|
||||
}
|
||||
|
||||
function turnOnAvatarCollisions() {
|
||||
Menu.setIsOptionChecked("Enable avatar collisions", 1);
|
||||
}
|
||||
|
||||
function changeAvatar() {
|
||||
originalAvatar = MyAvatar.skeletonModelURL;
|
||||
MyAvatar.skeletonModelURL = AVATAR_URL;
|
||||
|
@ -107,6 +115,7 @@
|
|||
Camera.mode = "first person";
|
||||
Controller.disableMapping("Handheld-Cam-Space-Bar");
|
||||
MyAvatar.skeletonModelURL = originalAvatar;
|
||||
turnOnAvatarCollisions();
|
||||
}
|
||||
Script.scriptEnding.connect(cleanup);
|
||||
}()); // END LOCAL_SCOPE
|
Loading…
Reference in a new issue