//
var URL = 'https://s3-us-west-2.amazonaws.com/highfidelityvr/waving.fbx'; var CONFIG = { text: 'Wave', icon: "https://hifi-content.s3.amazonaws.com/wadewatts/waveHand_off.svg", activeIcon: "https://hifi-content.s3.amazonaws.com/wadewatts/waveHand.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); });