Enhancements to includes in core data structures

This commit is contained in:
Aaron Franke 2022-10-05 22:00:15 -05:00
parent ea9bb98f26
commit 97d232c11d
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
11 changed files with 21 additions and 14 deletions

View file

@ -838,8 +838,9 @@ float Projection::get_lod_multiplier() const {
return 1.0 / (zn / width);
}
//usage is lod_size / (lod_distance * multiplier) < threshold
// Usage is lod_size / (lod_distance * multiplier) < threshold
}
void Projection::make_scale(const Vector3 &p_scale) {
set_identity();
columns[0][0] = p_scale.x;