mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-05 14:29:56 +02:00
Merge pull request #736 from overte-org/fix/controller_performance
Improve game rate by moving squeezeHands.js to a separate thread
This commit is contained in:
commit
476cf0bbf9
3 changed files with 9 additions and 5 deletions
|
@ -43,6 +43,7 @@ var DEFAULT_SCRIPTS_COMBINED = [
|
|||
];
|
||||
var DEFAULT_SCRIPTS_SEPARATE = [
|
||||
"system/controllers/controllerScripts.js",
|
||||
"system/controllers/squeezeHands.js",
|
||||
"communityScripts/notificationCore/notificationCore.js",
|
||||
"simplifiedUI/ui/simplifiedNametag/simplifiedNametag.js",
|
||||
{"stable": "system/more/app-more.js", "beta": "https://more.overte.org/more/app-more.js"},
|
||||
|
|
|
@ -439,8 +439,10 @@ Script.include("/~/system/libraries/controllerDispatcherUtils.js");
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
// TODO: These are not used currently, but have severe impact on performace. They can be re-enabled when we have OpenXR support
|
||||
// check for hand-tracking "click"
|
||||
_this.checkForHandTrackingClick();
|
||||
//_this.checkForHandTrackingClick();
|
||||
|
||||
// bundle up all the data about the current situation
|
||||
var controllerData = {
|
||||
|
|
|
@ -14,11 +14,11 @@
|
|||
Script.include("controllerDispatcher.js");
|
||||
|
||||
var CONTOLLER_SCRIPTS = [
|
||||
"squeezeHands.js",
|
||||
"controllerDisplayManager.js",
|
||||
"grab.js",
|
||||
"toggleAdvancedMovementForHandControllers.js",
|
||||
"handTouch.js",
|
||||
// TODO: These are not used currently. It can be reworked re-enabled when we have OpenXR support
|
||||
//"handTouch.js",
|
||||
"mouseLook.js",
|
||||
"controllerModules/nearParentGrabOverlay.js",
|
||||
"controllerModules/stylusInput.js",
|
||||
|
@ -37,8 +37,9 @@ var CONTOLLER_SCRIPTS = [
|
|||
"controllerModules/nearGrabEntity.js",
|
||||
"controllerModules/farGrabEntity.js",
|
||||
"controllerModules/pushToTalk.js",
|
||||
"controllerModules/trackedHandWalk.js",
|
||||
"controllerModules/trackedHandTablet.js"
|
||||
// TODO: These are not used currently, but have severe impact on performace. They can be re-enabled when we have OpenXR support
|
||||
//"controllerModules/trackedHandWalk.js",
|
||||
//"controllerModules/trackedHandTablet.js"
|
||||
];
|
||||
|
||||
//Script.include("../../developer/debugging/scriptMemoryReport.js");
|
||||
|
|
Loading…
Reference in a new issue