mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-05 21:22:00 +02:00
Merge pull request #61 from AleziaKurdis/Calibrate-app
"Calibration - Full Body Tracking" app
This commit is contained in:
commit
d12b77b387
4 changed files with 67 additions and 0 deletions
58
applications/calibration/app-calibration.js
Normal file
58
applications/calibration/app-calibration.js
Normal 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);
|
||||
}());
|
BIN
applications/calibration/icon_active.png
Normal file
BIN
applications/calibration/icon_active.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
BIN
applications/calibration/icon_inactive.png
Normal file
BIN
applications/calibration/icon_inactive.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
|
@ -270,6 +270,15 @@ var metadata = { "applications":
|
|||
"icon": "inventory-app/dist/inventory-i.svg",
|
||||
"caption": "INVENTORY"
|
||||
},
|
||||
{
|
||||
"isActive": true,
|
||||
"directory": "calibration",
|
||||
"name": "Calibration - Full body Tracking",
|
||||
"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"
|
||||
},
|
||||
{
|
||||
"isActive": true,
|
||||
"directory": "roomScaleMarker",
|
||||
|
|
Loading…
Reference in a new issue