mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 13:53:28 +02:00
28 lines
No EOL
655 B
JavaScript
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();
|
|
|
|
}) |