Skip to content

Commit a17cf1d

Browse files
committed
little fix
1 parent 8dbd8dc commit a17cf1d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

BEngine-Py/bengine/Utils/BEUtils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ def GetCustomAttrib(attrib, float_attribs: dict, vector_attribs: dict, color_att
606606
attrib_type = type(attrib)
607607
attrib_val = None
608608

609-
if (attrib_type is bpy.types.FloatVectorAttributeValue or attrib_type is bpy.types.FloatVectorAttributeValue):
609+
if (attrib_type is bpy.types.FloatVectorAttributeValue):
610610
attrib_val = attrib.vector
611611
vector_attribs[attrib_name] = tuple(attrib_val)
612612

0 commit comments

Comments
 (0)