//
Icons made by Dave Gandy from www.flaticon.com is licensed by CC 3.0 BY
var URL = 'https://s3-us-west-2.amazonaws.com/highfidelityvr/house_dancing.fbx'; var CONFIG = { text: 'LIFE', icon: "https://s3.amazonaws.com/greeterscripts/Scripts/white-one.svg", activeIcon: "https://s3.amazonaws.com/greeterscripts/Scripts/black-one.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); });