Merge pull request #13228 from rminderhoud/weights

Fix read bug in compressed bone weights
This commit is contained in:
Rémi Verschelde 2017-11-26 21:04:48 +01:00 committed by GitHub
commit ce89b20b20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1347,7 +1347,7 @@ Array VisualServer::_get_array_from_surface(uint32_t p_format, PoolVector<uint8_
const uint16_t *v = (const uint16_t *)&r[j * total_elem_size + offsets[i]];
for (int k = 0; k < 4; k++) {
w[j * 4 + k] = float(v[k] / 65535.0) * 2.0 - 1.0;
w[j * 4 + k] = float(v[k] / 65535.0);
}
}
} else {