using relative paths for entity scripts

This commit is contained in:
ericrius1 2015-09-16 13:52:29 -07:00
parent 0b21cc1777
commit bbf6e8b599
2 changed files with 7 additions and 6 deletions

View file

@ -2,7 +2,7 @@
// Script.include("../libraries/utils.js"); // Script.include("../libraries/utils.js");
//Need absolute path for now, for testing before PR merge and s3 cloning. Will change post-merge //Need absolute path for now, for testing before PR merge and s3 cloning. Will change post-merge
Script.include("https://hifi-public.s3.amazonaws.com/scripts/libraries/utils.js"); Script.include("../libraries/utils.js");
GRAB_FRAME_USER_DATA_KEY = "grabFrame"; GRAB_FRAME_USER_DATA_KEY = "grabFrame";
this.userData = {}; this.userData = {};
@ -58,7 +58,7 @@
} }
//Only activate for the user who grabbed the object //Only activate for the user who grabbed the object
if (self.userData.grabKey && self.userData.grabKey.activated === true && this.userData.grabKey.avatarId == MyAvatar.sessionUUID) { if (self.userData.grabKey && self.userData.grabKey.activated === true && self.userData.grabKey.avatarId == MyAvatar.sessionUUID) {
if (self.activated !== true) { if (self.activated !== true) {
//We were just grabbed, so create a particle system //We were just grabbed, so create a particle system
self.grab(); self.grab();
@ -88,9 +88,9 @@
emitVelocity: ZERO_VEC, emitVelocity: ZERO_VEC,
emitAcceleration: ZERO_VEC, emitAcceleration: ZERO_VEC,
velocitySpread: { velocitySpread: {
x: .02, x: .1,
y: .02, y: .1,
z: 0.02 z: 0.1
}, },
emitRate: 100, emitRate: 100,
particleRadius: 0.01, particleRadius: 0.01,

View file

@ -9,7 +9,8 @@
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//Just temporarily using my own bucket here so others can test the entity. Once PR is tested and merged, then the entity script will appear in its proper place in S3, and I wil switch it //Just temporarily using my own bucket here so others can test the entity. Once PR is tested and merged, then the entity script will appear in its proper place in S3, and I wil switch it
var scriptURL = "https://hifi-public.s3.amazonaws.com/eric/scripts/sprayPaintCan.js?=v6"; // var scriptURL = "https://hifi-public.s3.amazonaws.com/eric/scripts/sprayPaintCan.js?=v6 ";
var scriptURL = Script.resolvePath("entityScripts/sprayPaintCan.js?v2");
var modelURL = "https://hifi-public.s3.amazonaws.com/eric/models/paintcan.fbx"; var modelURL = "https://hifi-public.s3.amazonaws.com/eric/models/paintcan.fbx";
var sprayCan = Entities.addEntity({ var sprayCan = Entities.addEntity({