mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-24 11:54:09 +02:00
16 lines
No EOL
408 B
JavaScript
16 lines
No EOL
408 B
JavaScript
(function() {
|
|
var itemID;
|
|
|
|
this.preload = function(entityID) {
|
|
itemID = entityID;
|
|
}
|
|
|
|
function signalAC() {
|
|
var userData = Entities.getEntityProperties(itemID, ["userData"]).userData;
|
|
Messages.sendMessage(JSON.parse(userData).gameChannel, "START");
|
|
}
|
|
|
|
this.startNearTrigger = signalAC;
|
|
this.startFarTrigger = signalAC;
|
|
this.clickDownOnEntity = signalAC;
|
|
}) |