Fix read bug in compressed bone weights

This commit is contained in:
Ralph Minderhoud 2017-11-23 21:52:14 -06:00
parent 6086252f66
commit 2399d11e27

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 {