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
path: root/doc
diff options
context:
space:
mode:
authorGermano <germano.costa@ig.com.br>2018-02-01 03:36:16 +0300
committerGermano <germano.costa@ig.com.br>2018-02-01 03:36:16 +0300
commit7b27b10fa6a6a7c4286f30ba2c625896e7ba3fe6 (patch)
treee10656baf9a56700d7ad36cd5257a2eb225daa98 /doc
parent11f9a23a286c17fc2b71804efdeacb797fb413a8 (diff)
parent0a4e170c28cecd70e7cfb776f0c22a435ecd10e9 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/examples/bpy.types.ManipulatorGroup.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/doc/python_api/examples/bpy.types.ManipulatorGroup.py b/doc/python_api/examples/bpy.types.ManipulatorGroup.py
deleted file mode 100644
index fa431bc5a88..00000000000
--- a/doc/python_api/examples/bpy.types.ManipulatorGroup.py
+++ /dev/null
@@ -1,29 +0,0 @@
-"""
-Manipulator Overview
---------------------
-
-Manipulators are created using two classes.
-
-- :class:`bpy.types.ManipulatorGroup` - stores a list of manipulators.
-
- The manipulator group is associated with a space and region type.
-- :class:`bpy.types.Manipulator` - a single item which can be used.
-
- Each manipulator group has a collection of manipulators which it manages.
-
-The following example shows a manipulator group with a single,
-manipulator used to control a lamp objects energy.
-
-.. literalinclude:: __/__/__/release/scripts/templates_py/manipulator_simple.py
-
-
-It's also possible to use a manipulator to run an operator.
-
-.. literalinclude:: __/__/__/release/scripts/templates_py/manipulator_operator_target.py
-
-This more comprehensive example shows how an operator can create a temporary manipulator group to adjust its settings.
-
-.. literalinclude:: __/__/__/release/scripts/templates_py/manipulator_operator.py
-
-"""
-