adjust chair and plant starting positions

This commit is contained in:
James B. Pollack 2015-10-05 14:02:24 -07:00
parent 2e293718fc
commit 8cd549c958

View file

@ -71,13 +71,13 @@ function createAllToys() {
createCombinedArmChair({
x: 549.29,
y: 495.05,
y: 494.9,
z: 508.22
});
createPottedPlant({
x: 554.26,
y: 495.23,
y: 495.2,
z: 504.53
});
@ -98,7 +98,7 @@ function createAllToys() {
function deleteAllToys() {
var entities = Entities.findEntities(MyAvatar.position, 100);
entities.forEach(function (entity) {
entities.forEach(function(entity) {
//params: customKey, id, defaultValue
var shouldReset = getEntityCustomData(resetKey, entity, {}).resetMe;
if (shouldReset === true) {
@ -831,4 +831,4 @@ function cleanup() {
if (shouldDeleteOnEndScript) {
Script.scriptEnding.connect(cleanup);
}
}