mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-04-06 01:53:45 +02:00
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:
parent
d24d5db3c4
commit
b5067e4296
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 |
|
@ -269,6 +269,15 @@ var metadata = { "applications":
|
||||||
"jsfile": "inventory-app/dist/inventory.js",
|
"jsfile": "inventory-app/dist/inventory.js",
|
||||||
"icon": "inventory-app/dist/inventory-i.svg",
|
"icon": "inventory-app/dist/inventory-i.svg",
|
||||||
"caption": "INVENTORY"
|
"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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
Loading…
Reference in a new issue