content/hifi-content/wadewatts/Button Hand Raise/hand raise animation button 3.js
2022-02-14 02:04:11 +01:00

28 lines
1.2 KiB
JavaScript

//<div>Icons made by <a href="http://www.flaticon.com/authors/dave-gandy" title="Dave Gandy">Dave Gandy</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
var URL = 'https://hifi-content.s3.amazonaws.com/wadewatts/Button%20Hand%20Raise/M_SpaMar_hand_raise.fbx';
var CONFIG = {
text: 'Raise',
icon: "https://hifi-content.s3.amazonaws.com/wadewatts/Button%20Hand%20Raise/hand%20raise%20off%201.svg",
activeIcon: "https://hifi-content.s3.amazonaws.com/wadewatts/Button%20Hand%20Raise/hand%20raise%20on%201.svg"
};
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system"),
button = tablet.addButton(CONFIG);
button.clicked.connect(function() {
this.a = !this.a;
button.editProperties({ isActive: this.a });
if (this.a)
MyAvatar.overrideAnimation(URL, 30, true, 0, 84);
else
MyAvatar.restoreAnimation();
});
Script.scriptEnding.connect(function() { tablet.removeButton(button); });