From dabf96f732d1ce5f44f53230317ff0d0b8a380df Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Thu, 11 Feb 2021 13:44:58 +0100 Subject: Attributes: support bool attribute in rna Differential Revision: https://developer.blender.org/D10387 --- source/blender/makesdna/DNA_meshdata_types.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender/makesdna/DNA_meshdata_types.h') diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h index f9af7a011e0..05be31262a6 100644 --- a/source/blender/makesdna/DNA_meshdata_types.h +++ b/source/blender/makesdna/DNA_meshdata_types.h @@ -271,6 +271,9 @@ typedef struct MIntProperty { typedef struct MStringProperty { char s[255], s_len; } MStringProperty; +typedef struct MBoolProperty { + uint8_t b; +} MBoolProperty; /** \} */ -- cgit v1.2.3