Fixed bug in texture application and tweaked quest renderer camera settings.

This commit is contained in:
Daan Vanden Bosch 2019-07-12 23:55:37 +02:00
parent ac31ea83f6
commit 8163cd2299
2 changed files with 4 additions and 3 deletions

View File

@ -60,7 +60,7 @@ export class QuestRenderer extends Renderer<PerspectiveCamera> {
private selected_data?: PickEntityResult;
constructor() {
super(new PerspectiveCamera(75, 1, 0.1, 5000));
super(new PerspectiveCamera(60, 1, 10, 10000));
this.dom_element.addEventListener("mousedown", this.on_mouse_down);
this.dom_element.addEventListener("mouseup", this.on_mouse_up);

View File

@ -273,14 +273,15 @@ class Object3DCreator {
}
const last_group = this.groups[this.groups.length - 1];
const mat_idx = mesh.texture_id == null ? 0 : mesh.texture_id + 1;
if (last_group && last_group.mat_idx === mesh.texture_id) {
if (last_group && last_group.mat_idx === mat_idx) {
last_group.count += this.indices.length - start_index_count;
} else {
this.groups.push({
start: start_index_count,
count: this.indices.length - start_index_count,
mat_idx: mesh.texture_id == null ? 0 : mesh.texture_id + 1,
mat_idx,
});
}
}