mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 12:56:16 +02:00
322 lines
No EOL
7.4 KiB
JavaScript
322 lines
No EOL
7.4 KiB
JavaScript
print('HOME KINETIC INCLUDING WRAPPER')
|
|
|
|
var BOOKS_URL = "atp:/kineticObjects/books.json"
|
|
var UPPER_BOOKSHELF_URL = "atp:/kineticObjects/upperBookShelf.json"
|
|
var LOWER_BOOKSHELF_URL = "atp:/kineticObjects/lowerBookShelf.json"
|
|
|
|
var CHAIR_URL = 'atp:/kineticObjects/deskChair.json';
|
|
var BLUE_CHAIR_URL = 'atp:/kineticObjects/blueChair.json';
|
|
|
|
var FRUIT_BOWL_URL = "atp:/kineticObjects/fruit.json"
|
|
|
|
var LIVING_ROOM_LAMP_URL = "atp:/kineticObjects/deskLamp.json"
|
|
var TRASHCAN_URL = "atp:/kineticObjects/trashcan.json"
|
|
var BLOCKS_URL = "atp:/kineticObjects/blocks.json";
|
|
var PLAYA_POSTER_URL = "atp:/kineticObjects/postersPlaya.json"
|
|
var CELL_POSTER_URL = "atp:/kineticObjects/postersCell.json"
|
|
var STUFF_ON_SHELVES_URL = "atp:/kineticObjects/stuff_on_shelves.json"
|
|
var JUNK_URL = "atp:/kineticObjects/junk.json"
|
|
|
|
FruitBowl = function(spawnLocation, spawnRotation) {
|
|
print('CREATE FRUIT BOWL')
|
|
var created = [];
|
|
|
|
function create() {
|
|
var success = Clipboard.importEntities(FRUIT_BOWL_URL);
|
|
if (success === true) {
|
|
created = Clipboard.pasteEntities(spawnLocation)
|
|
print('created ' + created);
|
|
}
|
|
};
|
|
|
|
function cleanup() {
|
|
created.forEach(function(obj) {
|
|
Entities.deleteEntity(obj);
|
|
})
|
|
};
|
|
|
|
create();
|
|
|
|
this.cleanup = cleanup;
|
|
|
|
}
|
|
|
|
LivingRoomLamp = function(spawnLocation, spawnRotation) {
|
|
print('CREATE LIVING ROOM LAMP')
|
|
var created = [];
|
|
|
|
function create() {
|
|
var success = Clipboard.importEntities(LIVING_ROOM_LAMP_URL);
|
|
if (success === true) {
|
|
created = Clipboard.pasteEntities(spawnLocation)
|
|
print('created ' + created);
|
|
}
|
|
};
|
|
|
|
function cleanup() {
|
|
created.forEach(function(obj) {
|
|
Entities.deleteEntity(obj);
|
|
})
|
|
};
|
|
|
|
create();
|
|
|
|
this.cleanup = cleanup;
|
|
}
|
|
|
|
UpperBookShelf = function(spawnLocation, spawnRotation) {
|
|
print('CREATE UPPER SHELF')
|
|
var created = [];
|
|
|
|
function create() {
|
|
var success = Clipboard.importEntities(UPPER_BOOKSHELF_URL);
|
|
if (success === true) {
|
|
created = Clipboard.pasteEntities(spawnLocation)
|
|
print('created ' + created);
|
|
}
|
|
};
|
|
|
|
function cleanup() {
|
|
created.forEach(function(obj) {
|
|
Entities.deleteEntity(obj);
|
|
})
|
|
};
|
|
|
|
create();
|
|
|
|
this.cleanup = cleanup;
|
|
}
|
|
|
|
|
|
LowerBookShelf = function(spawnLocation, spawnRotation) {
|
|
print('CREATE LOWER SHELF')
|
|
var created = [];
|
|
|
|
function create() {
|
|
var success = Clipboard.importEntities(LOWER_BOOKSHELF_URL);
|
|
if (success === true) {
|
|
created = Clipboard.pasteEntities(spawnLocation)
|
|
print('created ' + created);
|
|
}
|
|
};
|
|
|
|
function cleanup() {
|
|
created.forEach(function(obj) {
|
|
Entities.deleteEntity(obj);
|
|
})
|
|
};
|
|
|
|
create();
|
|
|
|
this.cleanup = cleanup;
|
|
}
|
|
|
|
Chair = function(spawnLocation, spawnRotation) {
|
|
print('CREATE CHAIR')
|
|
var created = [];
|
|
|
|
function create() {
|
|
var success = Clipboard.importEntities(CHAIR_URL);
|
|
if (success === true) {
|
|
created = Clipboard.pasteEntities(spawnLocation)
|
|
print('created ' + created);
|
|
}
|
|
};
|
|
|
|
function cleanup() {
|
|
created.forEach(function(obj) {
|
|
Entities.deleteEntity(obj);
|
|
})
|
|
};
|
|
|
|
create();
|
|
|
|
this.cleanup = cleanup;
|
|
}
|
|
|
|
BlueChair = function(spawnLocation, spawnRotation) {
|
|
print('CREATE BLUE CHAIR')
|
|
var created = [];
|
|
|
|
function create() {
|
|
var success = Clipboard.importEntities(BLUE_CHAIR_URL);
|
|
|
|
if (success === true) {
|
|
created = Clipboard.pasteEntities(spawnLocation)
|
|
print('created ' + created);
|
|
}
|
|
};
|
|
|
|
function cleanup() {
|
|
created.forEach(function(obj) {
|
|
Entities.deleteEntity(obj);
|
|
})
|
|
};
|
|
|
|
create();
|
|
|
|
this.cleanup = cleanup;
|
|
}
|
|
|
|
Trashcan = function(spawnLocation, spawnRotation) {
|
|
print('CREATE TRASHCAN')
|
|
var created = [];
|
|
|
|
function create() {
|
|
var success = Clipboard.importEntities(TRASHCAN_URL);
|
|
if (success === true) {
|
|
created = Clipboard.pasteEntities(spawnLocation)
|
|
print('created ' + created);
|
|
}
|
|
};
|
|
|
|
function cleanup() {
|
|
created.forEach(function(obj) {
|
|
Entities.deleteEntity(obj);
|
|
})
|
|
};
|
|
|
|
create();
|
|
|
|
this.cleanup = cleanup;
|
|
|
|
}
|
|
|
|
Books = function(spawnLocation, spawnRotation) {
|
|
print('CREATE BOOKS')
|
|
var created = [];
|
|
|
|
function create() {
|
|
var success = Clipboard.importEntities(BOOKS_URL);
|
|
if (success === true) {
|
|
created = Clipboard.pasteEntities(spawnLocation)
|
|
print('created ' + created);
|
|
}
|
|
};
|
|
|
|
function cleanup() {
|
|
created.forEach(function(obj) {
|
|
Entities.deleteEntity(obj);
|
|
})
|
|
};
|
|
|
|
create();
|
|
|
|
this.cleanup = cleanup;
|
|
}
|
|
|
|
Blocks = function(spawnLocation, spawnRotation) {
|
|
print('EBL CREATE BLOCKS')
|
|
var created = [];
|
|
|
|
function create() {
|
|
var success = Clipboard.importEntities(BLOCKS_URL);
|
|
if (success === true) {
|
|
created = Clipboard.pasteEntities(spawnLocation)
|
|
print('created ' + created);
|
|
}
|
|
};
|
|
|
|
function cleanup() {
|
|
created.forEach(function(obj) {
|
|
Entities.deleteEntity(obj);
|
|
})
|
|
};
|
|
|
|
create();
|
|
|
|
this.cleanup = cleanup;
|
|
|
|
}
|
|
|
|
PosterCell = function(spawnLocation, spawnRotation) {
|
|
print('CREATE CELL POSTER')
|
|
var created = [];
|
|
|
|
function create() {
|
|
var success = Clipboard.importEntities(CELL_POSTER_URL);
|
|
if (success === true) {
|
|
created = Clipboard.pasteEntities(spawnLocation)
|
|
print('created ' + created);
|
|
}
|
|
};
|
|
|
|
function cleanup() {
|
|
created.forEach(function(obj) {
|
|
Entities.deleteEntity(obj);
|
|
})
|
|
};
|
|
|
|
create();
|
|
|
|
this.cleanup = cleanup;
|
|
}
|
|
|
|
PosterPlaya = function(spawnLocation, spawnRotation) {
|
|
print('CREATE PLAYA POSTER')
|
|
var created = [];
|
|
|
|
function create() {
|
|
var success = Clipboard.importEntities(PLAYA_POSTER_URL);
|
|
if (success === true) {
|
|
created = Clipboard.pasteEntities(spawnLocation)
|
|
print('created ' + created);
|
|
}
|
|
};
|
|
|
|
function cleanup() {
|
|
created.forEach(function(obj) {
|
|
Entities.deleteEntity(obj);
|
|
})
|
|
};
|
|
|
|
create();
|
|
|
|
this.cleanup = cleanup;
|
|
}
|
|
|
|
StuffOnShelves = function(spawnLocation, spawnRotation) {
|
|
print('CREATE STUFF ON SHELVES')
|
|
var created = [];
|
|
|
|
function create() {
|
|
var success = Clipboard.importEntities(STUFF_ON_SHELVES_URL);
|
|
if (success === true) {
|
|
created = Clipboard.pasteEntities(spawnLocation)
|
|
print('created ' + created);
|
|
}
|
|
};
|
|
|
|
function cleanup() {
|
|
created.forEach(function(obj) {
|
|
Entities.deleteEntity(obj);
|
|
})
|
|
};
|
|
|
|
create();
|
|
|
|
this.cleanup = cleanup;
|
|
}
|
|
|
|
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;
|
|
} |