(function(){ this.replaceAvatar = function(entityID) { MyAvatar.useFullAvatarURL(Entities.getEntityProperties(entityID,"https://hifi-content.s3.amazonaws.com/ben/Avatars/Jene_5.fbx").modelURL); }; this.replaceAvatarByMouse = function(entityID, mouseEvent) { if (mouseEvent.isLeftButton) { this.replaceAvatar(entityID); } }; this.clickDownOnEntity = this.replaceAvatarByMouse; this.startFarTrigger = this.replaceAvatar; this.startNearTrigger = this.replaceAvatar; })