mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-22 18:03:19 +02:00
using deployed texture
This commit is contained in:
parent
07430fb75a
commit
d2d0326c02
1 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ function controller(side, triggerAction) {
|
||||||
this.cycleColorButton = side == LEFT ? Controller.Standard.LeftPrimaryThumb : Controller.Standard.RightPrimaryThumb;
|
this.cycleColorButton = side == LEFT ? Controller.Standard.LeftPrimaryThumb : Controller.Standard.RightPrimaryThumb;
|
||||||
this.currentColorIndex = 0;
|
this.currentColorIndex = 0;
|
||||||
this.currentColor = colorPalette[this.currentColorIndex];
|
this.currentColor = colorPalette[this.currentColorIndex];
|
||||||
var textures = "http://localhost:8080/trails.png?v2" + Math.random();
|
var texture = "https://s3.amazonaws.com/hifi-public/eric/textures/paintStrokes/trails.png";
|
||||||
|
|
||||||
// this.light = Entities.addEntity({
|
// this.light = Entities.addEntity({
|
||||||
// type: 'Light',
|
// type: 'Light',
|
||||||
|
@ -84,7 +84,7 @@ function controller(side, triggerAction) {
|
||||||
y: LINE_DIMENSIONS,
|
y: LINE_DIMENSIONS,
|
||||||
z: LINE_DIMENSIONS
|
z: LINE_DIMENSIONS
|
||||||
},
|
},
|
||||||
textures: textures,
|
textures: texture,
|
||||||
lifetime: LIFETIME
|
lifetime: LIFETIME
|
||||||
});
|
});
|
||||||
this.points = [];
|
this.points = [];
|
||||||
|
|
Loading…
Reference in a new issue