content/hifi-content/Examples Content/production/voxelpaint/voxel-paint-aether.js
2022-02-13 23:16:46 +01:00

11 lines
384 B
JavaScript

(function() {
this.leaveEntity = function() {
// While leaving the aether disable the hands short
Script.setTimeout(function() {
Messages.sendLocalMessage('Hifi-Hand-Disabler', 'both');
Script.setTimeout(function() {
Messages.sendLocalMessage('Hifi-Hand-Disabler', 'none');
}, 500);
}, 500);
};
});