mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-16 01:40:33 +02:00
changes
This commit is contained in:
parent
b080dd8c64
commit
fc3bac7fa5
4 changed files with 8 additions and 4 deletions
|
@ -113,6 +113,7 @@ FishTank = function(spawnPosition, spawnRotation) {
|
|||
modelURL: TANK_MODEL_URL,
|
||||
dimensions: TANK_DIMENSIONS,
|
||||
position: TANK_POSITION,
|
||||
rotation:spawnRotation,
|
||||
color: DEBUG_COLOR,
|
||||
collisionless: true,
|
||||
script: TANK_SCRIPT,
|
||||
|
|
|
@ -161,7 +161,6 @@
|
|||
"z": 0.04995863139629364
|
||||
},
|
||||
"id": "{6af6bf06-05c9-427c-8ff5-d10072ffc293}",
|
||||
"locked": 1,
|
||||
"modelURL": "http://hifi-content.s3.amazonaws.com/alan/dev/Book-F3-IA.fbx",
|
||||
"name": "home_model_book_Foundation3",
|
||||
"position": {
|
||||
|
|
|
@ -42,7 +42,7 @@ LabLamp = function(spawnLocation, spawnRotation) {
|
|||
var created = [];
|
||||
|
||||
function create() {
|
||||
var success = Clipboard.importEntities(FRUIT_BOWL_URL);
|
||||
var success = Clipboard.importEntities(LAB_LAMP_URL);
|
||||
if (success === true) {
|
||||
hasBow = true;
|
||||
created = Clipboard.pasteEntities(spawnLocation)
|
||||
|
@ -65,7 +65,7 @@ LivingRoomLamp = function(spawnLocation, spawnRotation) {
|
|||
var created = [];
|
||||
|
||||
function create() {
|
||||
var success = Clipboard.importEntities(FRUIT_BOWL_URL);
|
||||
var success = Clipboard.importEntities(LIVING_ROOM_LAMP_URL);
|
||||
if (success === true) {
|
||||
created = Clipboard.pasteEntities(spawnLocation)
|
||||
print('created ' + created);
|
||||
|
|
|
@ -121,6 +121,10 @@
|
|||
x: 1098.9254,
|
||||
y: 460.5814,
|
||||
z: -79.1103
|
||||
},{
|
||||
x:0,
|
||||
y:152,
|
||||
z:0
|
||||
});
|
||||
|
||||
var tiltMaze = new TiltMaze({
|
||||
|
@ -131,7 +135,7 @@
|
|||
|
||||
var whiteboard = new Whiteboard({
|
||||
x: 1104,
|
||||
y: 450,
|
||||
y: 460,
|
||||
z: -77
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue