Merge branch '256-numpy-mesh-serialization-error' into 'develop'

Resolve "Numpy mesh serialization error"

See merge request slumber/multi-user!175
This commit is contained in:
Swann Martinez 2022-06-12 19:04:56 +00:00
commit ff67b581b1

View File

@ -24,8 +24,8 @@ import numpy as np
BPY_TO_NUMPY_TYPES = {
'FLOAT': np.float32,
'INT': np.int32,
'FLOAT': np.float,
'INT': np.int,
'BOOL': np.bool,
'BOOLEAN': np.bool}