Merge pull request #36407 from timothyqiu/maybe-copy-paste-error
Fixes crash when saving scene
This commit is contained in:
commit
de465c41dc
1 changed files with 2 additions and 2 deletions
|
@ -3208,9 +3208,9 @@ Vector<float> RasterizerStorageRD::multimesh_get_buffer(RID p_multimesh) const {
|
|||
|
||||
Vector<uint8_t> buffer = RD::get_singleton()->buffer_get_data(multimesh->buffer);
|
||||
Vector<float> ret;
|
||||
ret.resize(multimesh->instances);
|
||||
ret.resize(multimesh->instances * multimesh->stride_cache);
|
||||
{
|
||||
float *w = multimesh->data_cache.ptrw();
|
||||
float *w = ret.ptrw();
|
||||
const uint8_t *r = buffer.ptr();
|
||||
copymem(w, r, buffer.size());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue