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:
authorDalai Felinto <dfelinto@gmail.com>2017-03-02 20:12:30 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-03-02 20:12:30 +0300
commit5ce6388f7c2a7fed483ae3ff187063f94f139e94 (patch)
tree6cbaf43e123924517299a91536020cbf7a3806dd /source/blender/blenkernel/intern/collection.c
parent0322700d875a1d518a730512531a881f1278124b (diff)
Outliner: add hooks for (yet to be implemented) layer reordering routines
Diffstat (limited to 'source/blender/blenkernel/intern/collection.c')
-rw-r--r--source/blender/blenkernel/intern/collection.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/collection.c b/source/blender/blenkernel/intern/collection.c
index 370a5953964..eac0fc7a2fd 100644
--- a/source/blender/blenkernel/intern/collection.c
+++ b/source/blender/blenkernel/intern/collection.c
@@ -298,6 +298,18 @@ void BKE_collections_object_remove(Main *bmain, Scene *scene, Object *ob, const
FOREACH_SCENE_COLLECTION_END
}
+void BKE_collection_reinsert_after(const struct Scene *scene, SceneCollection *sc_reinsert, SceneCollection *sc_after)
+{
+ UNUSED_VARS(scene, sc_reinsert, sc_after);
+ TODO_LAYER_OPERATORS;
+}
+
+void BKE_collection_reinsert_into(SceneCollection *sc_reinsert, SceneCollection *sc_into)
+{
+ UNUSED_VARS(sc_reinsert, sc_into);
+ TODO_LAYER_OPERATORS;
+}
+
/* ---------------------------------------------------------------------- */
/* Iteractors */
/* scene collection iteractor */