Merge pull request #45364 from madmiraal/rename-quat

Rename Quat to Quaternion
This commit is contained in:
Rémi Verschelde 2021-06-05 13:32:08 +02:00 committed by GitHub
commit 6f7d45d210
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
89 changed files with 729 additions and 730 deletions

View file

@ -1878,8 +1878,8 @@ _FORCE_INLINE_ static void _fill_std140_variant_ubo_value(ShaderLanguage::DataTy
gui[1] = v.position.y;
gui[2] = v.size.x;
gui[3] = v.size.y;
} else if (value.get_type() == Variant::QUAT) {
Quat v = value;
} else if (value.get_type() == Variant::QUATERNION) {
Quaternion v = value;
gui[0] = v.x;
gui[1] = v.y;