21 lines
653 B
JavaScript
21 lines
653 B
JavaScript
// loadTeleprompterApp.js
|
|
//
|
|
// Loads the teleprompter app on to a user's device while they are in the vicinity
|
|
// Created by Liv Erickson 6/18/2018
|
|
//
|
|
// Copyright 2018 High Fidelity Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
(function(){
|
|
var Teleprompter = function() {};
|
|
Teleprompter.prototype = {
|
|
preload: function(entityID) {
|
|
Script.require('http://vr.fumbleland.com/scripts/Teleprompter.js');
|
|
},
|
|
unload: function() {
|
|
}
|
|
};
|
|
return new Teleprompter();
|
|
});
|