Skip to content

Commit 500269c

Browse files
committed
smaller number of sculptures in 3d mode
1 parent 69702b7 commit 500269c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Home3D.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default {
3232
temp.push(sculptures[key]);
3333
})
3434
temp.reverse();
35-
this.sculptures = temp.slice(0, 256); //array.push isn't tracked by state, resetting is
35+
this.sculptures = temp.slice(0, 121); //array.push isn't tracked by state, resetting is
3636
setTimeout(() => {
3737
this.$store.commit('sculpturesLoaded', true);
3838
window.onCanvasResize();

src/components/Room.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default {
1515
props: ['sculpturesData'],
1616
data: function() {
1717
return {
18-
grid : {x: 16, z: 0, spacing: 4.0, size: 1.0},
18+
grid : {x: 11, z: 0, spacing: 4.0, size: 1.0},
1919
sculptures : this.sculpturesData || [],
2020
sculpPositions: []
2121
}

0 commit comments

Comments
 (0)