mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 21:03:42 +02:00
remove bricabrac from dressing room shelves for now
This commit is contained in:
parent
9f4289ae1b
commit
6573b3c71e
3 changed files with 46 additions and 34 deletions
|
@ -21,4 +21,4 @@ Script.load("system/controllers/handControllerPointer.js");
|
|||
Script.load("system/controllers/squeezeHands.js");
|
||||
Script.load("system/controllers/grab.js");
|
||||
Script.load("system/dialTone.js");
|
||||
Script.load("system/attachedEntitiesManager.js");
|
||||
// Script.load("system/attachedEntitiesManager.js");
|
|
@ -279,32 +279,8 @@ StuffOnShelves = function(spawnLocation, spawnRotation) {
|
|||
HomeJunk = function(spawnLocation, spawnRotation) {
|
||||
print('HOME CREATE JUNK');
|
||||
var created = [];
|
||||
|
||||
function create() {
|
||||
var success = Clipboard.importEntities(JUNK_URL);
|
||||
if (success === true) {
|
||||
created = Clipboard.pasteEntities(spawnLocation)
|
||||
print('created ' + created);
|
||||
}
|
||||
};
|
||||
|
||||
function cleanup() {
|
||||
created.forEach(function(obj) {
|
||||
Entities.deleteEntity(obj);
|
||||
})
|
||||
};
|
||||
|
||||
create();
|
||||
|
||||
this.cleanup = cleanup;
|
||||
}
|
||||
|
||||
Bricabrac = function(spawnLocation, spawnRotation) {
|
||||
print('HOME CREATE BRICABRAC');
|
||||
var created = [];
|
||||
|
||||
function addVelocityDown() {
|
||||
print('HOME ADDING DOWN VELOCITY TO DRESSING ROOM ITEMS')
|
||||
print('HOME ADDING DOWN VELOCITY TO SHELF ITEMS')
|
||||
created.forEach(function(obj) {
|
||||
Entities.editEntity(obj, {
|
||||
velocity: {
|
||||
|
@ -315,14 +291,12 @@ Bricabrac = function(spawnLocation, spawnRotation) {
|
|||
});
|
||||
})
|
||||
}
|
||||
|
||||
function create() {
|
||||
var success = Clipboard.importEntities(BRICABRAC_URL);
|
||||
var success = Clipboard.importEntities(JUNK_URL);
|
||||
if (success === true) {
|
||||
created = Clipboard.pasteEntities(spawnLocation)
|
||||
print('created ' + created);
|
||||
addVelocityDown();
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -337,6 +311,44 @@ Bricabrac = function(spawnLocation, spawnRotation) {
|
|||
this.cleanup = cleanup;
|
||||
}
|
||||
|
||||
// Bricabrac = function(spawnLocation, spawnRotation) {
|
||||
// print('HOME CREATE BRICABRAC');
|
||||
// var created = [];
|
||||
|
||||
// function addVelocityDown() {
|
||||
// print('HOME ADDING DOWN VELOCITY TO DRESSING ROOM ITEMS')
|
||||
// created.forEach(function(obj) {
|
||||
// Entities.editEntity(obj, {
|
||||
// velocity: {
|
||||
// x: 0,
|
||||
// y: -0.1,
|
||||
// z: 0
|
||||
// }
|
||||
// });
|
||||
// })
|
||||
// }
|
||||
|
||||
// function create() {
|
||||
// var success = Clipboard.importEntities(BRICABRAC_URL);
|
||||
// if (success === true) {
|
||||
// created = Clipboard.pasteEntities(spawnLocation)
|
||||
// print('created ' + created);
|
||||
// addVelocityDown();
|
||||
|
||||
// }
|
||||
// };
|
||||
|
||||
// function cleanup() {
|
||||
// created.forEach(function(obj) {
|
||||
// Entities.deleteEntity(obj);
|
||||
// })
|
||||
// };
|
||||
|
||||
// create();
|
||||
|
||||
// this.cleanup = cleanup;
|
||||
// }
|
||||
|
||||
Bench = function(spawnLocation, spawnRotation) {
|
||||
print('HOME CREATE BENCH');
|
||||
var created = [];
|
||||
|
|
|
@ -422,11 +422,11 @@
|
|||
z: -73.3
|
||||
});
|
||||
|
||||
var dressingRoomBricabrac = new Bricabrac({
|
||||
x: 1106.8,
|
||||
y: 460.3909,
|
||||
z: -72.6
|
||||
});
|
||||
// var dressingRoomBricabrac = new Bricabrac({
|
||||
// x: 1106.8,
|
||||
// y: 460.3909,
|
||||
// z: -72.6
|
||||
// });
|
||||
|
||||
var bench = new Bench({
|
||||
x: 1100.1210,
|
||||
|
|
Loading…
Reference in a new issue