Fix read bug in compressed bone weights
This commit is contained in:
parent
6086252f66
commit
2399d11e27
|
@ -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]];
|
const uint16_t *v = (const uint16_t *)&r[j * total_elem_size + offsets[i]];
|
||||||
for (int k = 0; k < 4; k++) {
|
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 {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue