mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
Fixed bug in texture application and tweaked quest renderer camera settings.
This commit is contained in:
parent
ac31ea83f6
commit
8163cd2299
@ -60,7 +60,7 @@ export class QuestRenderer extends Renderer<PerspectiveCamera> {
|
|||||||
private selected_data?: PickEntityResult;
|
private selected_data?: PickEntityResult;
|
||||||
|
|
||||||
constructor() {
|
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("mousedown", this.on_mouse_down);
|
||||||
this.dom_element.addEventListener("mouseup", this.on_mouse_up);
|
this.dom_element.addEventListener("mouseup", this.on_mouse_up);
|
||||||
|
@ -273,14 +273,15 @@ class Object3DCreator {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const last_group = this.groups[this.groups.length - 1];
|
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;
|
last_group.count += this.indices.length - start_index_count;
|
||||||
} else {
|
} else {
|
||||||
this.groups.push({
|
this.groups.push({
|
||||||
start: start_index_count,
|
start: start_index_count,
|
||||||
count: this.indices.length - start_index_count,
|
count: this.indices.length - start_index_count,
|
||||||
mat_idx: mesh.texture_id == null ? 0 : mesh.texture_id + 1,
|
mat_idx,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user