24 lines
847 B
JavaScript
24 lines
847 B
JavaScript
// as of 7/26/2018
|
|
|
|
(function () {
|
|
print("HELLO ROBIN");
|
|
|
|
var Setup = Script.require("http://hifi-content.s3-us-west-1.amazonaws.com/robin/dev/domains/faceToFace/setup/runSetup.js?v" + Math.random());
|
|
|
|
print("THIS IS IT:", Setup);
|
|
|
|
var params = {
|
|
listScriptURLs: [
|
|
"http://mpassets.highfidelity.com/664b2fae-4502-4dad-8fae-4b33fd43ec3d-v1/displayNames.js",
|
|
"http://mpassets.highfidelity.com/d3985860-e94a-42d8-aa1f-c498b2cebabd-v1/fingerPaint.js"
|
|
|
|
], // walking script, nametag script, messages?
|
|
avatarURL: "https://hifi-content.s3.amazonaws.com/jimi/avatar/doob/philip_rosedale/newFST/philip_rosedale_Final2.fst",
|
|
displayName: "Philip"
|
|
};
|
|
|
|
var setup = new Setup(params);
|
|
setup.run();
|
|
Script.scriptEnding.connect(setup.unload);
|
|
|
|
})();
|