You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user