fix: crash during hybrid session

Related to #130
This commit is contained in:
Swann
2020-10-14 16:06:11 +02:00
parent 753f4d3f27
commit 4283fc0fff

View File

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