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:
authorCampbell Barton <ideasman42@gmail.com>2019-06-04 06:12:59 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-04 06:12:59 +0300
commit351e68e0a4de49912747d97b2e53ffcde45aeb53 (patch)
tree0d1e2de444a9a974ffada726886763ce3bfe81aa /doc
parent0b36780fb4d88eab0ebab585fb2aa3147d2e99fc (diff)
Docs: update quick-start
Resolves T64146
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/rst/info_quickstart.rst20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/python_api/rst/info_quickstart.rst b/doc/python_api/rst/info_quickstart.rst
index 7bab69ab52d..3680fce0202 100644
--- a/doc/python_api/rst/info_quickstart.rst
+++ b/doc/python_api/rst/info_quickstart.rst
@@ -12,22 +12,22 @@ This API is generally stable but some areas are still being added and improved.
The Blender/Python API can do the following:
-- Edit any data the user interface can (Scenes, Meshes, Particles etc.)
-- Modify user preferences, keymaps and themes
-- Run tools with own settings
-- Create user interface elements such as menus, headers and panels
-- Create new tools
-- Create interactive tools
-- Create new rendering engines that integrate with Blender
-- Define new settings in existing Blender data
-- Draw in the 3D view using OpenGL commands from Python
+- Edit any data the user interface can (Scenes, Meshes, Particles etc.).
+- Modify user preferences, key-maps and themes.
+- Run tools with own settings.
+- Create user interface elements such as menus, headers and panels.
+- Create new tools.
+- Create interactive tools.
+- Create new rendering engines that integrate with Blender.
+- Subscribe to changes to data and it's properties.
+- Define new settings in existing Blender data.
+- Draw in the 3D view using Python.
The Blender/Python API **can't** (yet)...
- Create new space types.
- Assign custom properties to every type.
-- Define callbacks or listeners to be notified when data is changed.
Before Starting