Add "Calibration - Full Body Tracking" app

This application adds a shortcut button in your tablet to open directly the Full Body Tracking 'Calibration' settings. This is mainly for people doing Full Body Tracking for whom it is a frequent use to do the calibration.
This commit is contained in:
Alezia Kurdis 2023-12-17 22:48:14 -05:00 committed by GitHub
parent d24d5db3c4
commit b5067e4296
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 67 additions and 0 deletions

View file

@ -0,0 +1,58 @@
//
// app-calibration.js
//
// Created by Alezia Kurdis, December 16th 2023.
// Copyright 2023 Overte e.V.
//
// Shortcut for Mocap Calibration.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
(function() {
var jsMainFileName = "app-calibration.js";
var ROOT = Script.resolvePath('').split(jsMainFileName)[0];
var APP_NAME = "CALIBRATE";
var ICON_CAPTION_COLOR = "#FFFFFF";
var APP_ICON_INACTIVE = ROOT + "icon_inactive.png";
var APP_ICON_ACTIVE = ROOT + "icon_active.png";
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
var button = tablet.addButton({
"text": APP_NAME,
"icon": APP_ICON_INACTIVE,
"activeIcon": APP_ICON_ACTIVE,
"sortOrder": 3,
"captionColor": ICON_CAPTION_COLOR
});
function clicked(){
button.editProperties({
"isActive": true,
"captionColor": "#000000"
});
calibration();
}
button.clicked.connect(clicked);
function calibration() {
Menu.triggerOption("Controls...");
Script.setTimeout(function () {
button.editProperties({
"isActive": false,
"captionColor": ICON_CAPTION_COLOR
});
}, 3000);
}
function cleanup() {
tablet.removeButton(button);
}
Script.scriptEnding.connect(cleanup);
}());

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -269,6 +269,15 @@ var metadata = { "applications":
"jsfile": "inventory-app/dist/inventory.js",
"icon": "inventory-app/dist/inventory-i.svg",
"caption": "INVENTORY"
},
{
"isActive": true,
"directory": "calibration",
"name": "Calibration - Full body Traking",
"description": "This adds a shortcut button in your tablet to open directly the Full Body Tracking 'Calibration' settings. This is mainly for people doing Full Body Tracking for whom it is a frequent use to do the calibration.",
"jsfile": "calibration/app-calibration.js",
"icon": "calibration/icon_inactive.png",
"caption": "CALIBRATE"
}
]
};