From 65a6caafce9f1cde7e128786daa90342c192900c Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Wed, 7 Oct 2020 12:35:58 +0200 Subject: IDTypeInfo: add flag to indicate that ID has no animation data This is part of T75724. Reviewers: mont29 Differential Revision: https://developer.blender.org/D9134 --- source/blender/blenkernel/BKE_idtype.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/blender/blenkernel/BKE_idtype.h') diff --git a/source/blender/blenkernel/BKE_idtype.h b/source/blender/blenkernel/BKE_idtype.h index f82c0fb2436..22af8ffd191 100644 --- a/source/blender/blenkernel/BKE_idtype.h +++ b/source/blender/blenkernel/BKE_idtype.h @@ -47,6 +47,8 @@ enum { IDTYPE_FLAGS_NO_LIBLINKING = 1 << 1, /** Indicates that the given IDType does not support making a library-linked ID local. */ IDTYPE_FLAGS_NO_MAKELOCAL = 1 << 2, + /** Indicates that the given IDType does not have animation data. */ + IDTYPE_FLAGS_NO_ANIMDATA = 1 << 3, }; typedef struct IDCacheKey { -- cgit v1.2.3