Compare commits

...

1 Commits

Author SHA1 Message Date
f7bec3fc08 fix: try to use other numpy types to store data collection 2022-06-11 14:00:36 +02:00

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}