Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-03-31 18:33:59 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-03-31 18:33:59 +0400
commit76d7a3562c448d431def367e2e444696efb6c97e (patch)
treea1741b69b36b8c9fe3c48388b2fe27731a255405 /source/blender/blenkernel/BKE_scene.h
parent2900557568077f0164e83dbb544c664cb8b7c300 (diff)
blender had no option to add a new scene from the UI, only to copy the existing one.
added a new scene option which doesnt copy any render settings from the previous.
Diffstat (limited to 'source/blender/blenkernel/BKE_scene.h')
-rw-r--r--source/blender/blenkernel/BKE_scene.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/blenkernel/BKE_scene.h b/source/blender/blenkernel/BKE_scene.h
index a1a8b1b28cb..943712167c6 100644
--- a/source/blender/blenkernel/BKE_scene.h
+++ b/source/blender/blenkernel/BKE_scene.h
@@ -50,10 +50,11 @@ struct Scene;
struct Text;
struct Text;
-#define SCE_COPY_EMPTY 0
-#define SCE_COPY_LINK_OB 1
-#define SCE_COPY_LINK_DATA 2
-#define SCE_COPY_FULL 3
+#define SCE_COPY_NEW 0
+#define SCE_COPY_EMPTY 1
+#define SCE_COPY_LINK_OB 2
+#define SCE_COPY_LINK_DATA 3
+#define SCE_COPY_FULL 4
#define SETLOOPER(_sce_basis, _sce_iter, _base) _sce_iter= _sce_basis, _base= _setlooper_base_step(&_sce_iter, NULL); _base; _base= _setlooper_base_step(&_sce_iter, _base)
struct Base *_setlooper_base_step(struct Scene **sce_iter, struct Base *base);