overte-AleziaKurdis/unpublishedScripts/DomainContent/Home/hoverGame/hoverContainer.js
2024-08-13 17:39:51 -07:00

28 lines
No EOL
655 B
JavaScript

(function() {
HoverContainer = function() {
}
HoverContainer.prototype = {
preload: function(entityID) {
this.entityID = entityID;
var data = {
action: 'add',
id: this.entityID
};
Messages.sendLocalMessage('Hifi-Hand-RayPick-Blocklist', JSON.stringify(data))
},
unload: function() {
var data = {
action: 'remove',
id: this.entityID
};
Messages.sendLocalMessage('Hifi-Hand-RayPick-Blocklist', JSON.stringify(data))
}
}
return new HoverContainer();
})