Merge pull request #53034 from CaptainProton42/fix-multimesh-populate-surface

This commit is contained in:
Rémi Verschelde 2021-09-25 00:10:14 +02:00 committed by GitHub
commit 442c65f359
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -151,8 +151,8 @@ Face3::Side Face3::get_side_of(const Face3 &p_face, ClockDirection p_clock_dir)
}
Vector3 Face3::get_random_point_inside() const {
real_t a = Math::random(0, 1);
real_t b = Math::random(0, 1);
real_t a = Math::random(0.0, 1.0);
real_t b = Math::random(0.0, 1.0);
if (a > b) {
SWAP(a, b);
}