mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
Bone weights are now normalized, this almost completely fixes the bone weight issues.
This commit is contained in:
parent
ed8030d697
commit
c9d4b6ab92
@ -202,8 +202,13 @@ class GeometryCreator {
|
|||||||
bones[vertex.bone_weight_status] = [vertex.bone_id, vertex.bone_weight];
|
bones[vertex.bone_weight_status] = [vertex.bone_id, vertex.bone_weight];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const total_weight = bones.reduce((total, [, weight]) => total + weight, 0);
|
||||||
|
|
||||||
for (const [bone_index, bone_weight] of bones) {
|
for (const [bone_index, bone_weight] of bones) {
|
||||||
this.builder.add_bone_weight(bone_index, bone_weight);
|
this.builder.add_bone_weight(
|
||||||
|
bone_index,
|
||||||
|
total_weight > 0 ? bone_weight / total_weight : bone_weight,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -33,21 +33,24 @@ export class Model3DSelectListView<T extends { name: string }> extends Resizable
|
|||||||
});
|
});
|
||||||
|
|
||||||
this.disposable(
|
this.disposable(
|
||||||
selected.observe(({ value: model }) => {
|
selected.observe(
|
||||||
if (this.selected_element) {
|
({ value: model }) => {
|
||||||
this.selected_element.classList.remove("active");
|
if (this.selected_element) {
|
||||||
this.selected_element = undefined;
|
this.selected_element.classList.remove("active");
|
||||||
}
|
this.selected_element = undefined;
|
||||||
|
|
||||||
if (model && model !== this.selected_model) {
|
|
||||||
const index = this.models.indexOf(model);
|
|
||||||
|
|
||||||
if (index !== -1) {
|
|
||||||
this.selected_element = this.element.childNodes[index] as HTMLLIElement;
|
|
||||||
this.selected_element.classList.add("active");
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}),
|
if (model && model !== this.selected_model) {
|
||||||
|
const index = this.models.indexOf(model);
|
||||||
|
|
||||||
|
if (index !== -1) {
|
||||||
|
this.selected_element = this.element.childNodes[index] as HTMLLIElement;
|
||||||
|
this.selected_element.classList.add("active");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ call_now: true },
|
||||||
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
this.finalize_construction();
|
this.finalize_construction();
|
||||||
|
@ -195,7 +195,7 @@ export class Model3DStore extends Store {
|
|||||||
this.current_animation.observe(({ value }) => this.load_animation(value)),
|
this.current_animation.observe(({ value }) => this.load_animation(value)),
|
||||||
);
|
);
|
||||||
|
|
||||||
this.set_current_model(this.models[[3, 5, 6, 8][Math.floor(Math.random() * 4)]]);
|
this.set_current_model(this.models[Math.floor(Math.random() * this.models.length)]);
|
||||||
}
|
}
|
||||||
|
|
||||||
set_current_model = (current_model: CharacterClassModel): void => {
|
set_current_model = (current_model: CharacterClassModel): void => {
|
||||||
|
@ -1 +1 @@
|
|||||||
40
|
42
|
||||||
|
Loading…
Reference in New Issue
Block a user