[Bf-blender-cvs] [c0f5f9ad6e3] master: Tweak default ID types processing order, step 05: PaintCurve.

Bastien Montagne noreply at git.blender.org
Wed Mar 24 15:19:01 CET 2021


Commit: c0f5f9ad6e3b3dcace39ba0891064a76f0790985
Author: Bastien Montagne
Date:   Wed Mar 24 11:01:52 2021 +0100
Branches: master
https://developer.blender.org/rBc0f5f9ad6e3b3dcace39ba0891064a76f0790985

Tweak default ID types processing order, step 05: PaintCurve.

Move PaintCurve type with other weird, not-really-data ID types (like
Palette and Brushes), higher in the process.

Those preset-like types may use a lot of other ID types, but should only
be used by UI-related (and Scene, for tool settings) types.

===================================================================

M	source/blender/makesdna/DNA_ID.h

===================================================================

diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index c5fcb85f644..c233985fc0e 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -789,7 +789,6 @@ enum {
   INDEX_ID_CA,
   INDEX_ID_TXT,
   INDEX_ID_SO,
-  INDEX_ID_PC,
   INDEX_ID_BR,
   INDEX_ID_PA,
   INDEX_ID_SPK,
@@ -799,6 +798,7 @@ enum {
   INDEX_ID_OB,
   INDEX_ID_LS,
   INDEX_ID_GR,
+  INDEX_ID_PC,
   INDEX_ID_SCE,
   INDEX_ID_SCR,
   INDEX_ID_WS,



More information about the Bf-blender-cvs mailing list