mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
Option for software skinning in MeshInstance
Option in MeshInstance to enable software skinning, in order to test against the current USE_SKELETON_SOFTWARE path which causes problems with bad performance. Co-authored-by: lawnjelly <lawnjelly@gmail.com>
This commit is contained in:
parent
4040cd350d
commit
f9544716f4
15 changed files with 591 additions and 10 deletions
|
|
@ -46,3 +46,11 @@ RasterizerStorage::RasterizerStorage() {
|
|||
|
||||
base_singleton = this;
|
||||
}
|
||||
|
||||
bool RasterizerStorage::material_uses_tangents(RID p_material) {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool RasterizerStorage::material_uses_ensure_correct_normals(RID p_material) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue