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:
Diffstat (limited to 'source/blender/editors/io/io_ops.c')
-rw-r--r--source/blender/editors/io/io_ops.c19
1 files changed, 18 insertions, 1 deletions
diff --git a/source/blender/editors/io/io_ops.c b/source/blender/editors/io/io_ops.c
index a70a51a60be..49b1553ee78 100644
--- a/source/blender/editors/io/io_ops.c
+++ b/source/blender/editors/io/io_ops.c
@@ -30,13 +30,30 @@
#include "io_ops.h" /* own include */
+#include "io_cache_library.h"
#ifdef WITH_COLLADA
# include "io_collada.h"
-# include "WM_api.h"
#endif
+#include "WM_api.h"
+
void ED_operatortypes_io(void)
{
+ WM_operatortype_append(CACHELIBRARY_OT_new);
+ WM_operatortype_append(CACHELIBRARY_OT_delete);
+ WM_operatortype_append(CACHELIBRARY_OT_bake);
+ WM_operatortype_append(CACHELIBRARY_OT_archive_info);
+ WM_operatortype_append(CACHELIBRARY_OT_archive_slice);
+
+ WM_operatortype_append(CACHELIBRARY_OT_add_modifier);
+ WM_operatortype_append(CACHELIBRARY_OT_remove_modifier);
+
+ WM_operatortype_append(CACHELIBRARY_OT_shape_key_add);
+ WM_operatortype_append(CACHELIBRARY_OT_shape_key_remove);
+ WM_operatortype_append(CACHELIBRARY_OT_shape_key_clear);
+ WM_operatortype_append(CACHELIBRARY_OT_shape_key_retime);
+ WM_operatortype_append(CACHELIBRARY_OT_shape_key_move);
+
#ifdef WITH_COLLADA
/* Collada operators: */
WM_operatortype_append(WM_OT_collada_export);