This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
blender:python:start [2018/12/08 18:48] dwheele |
blender:python:start [2026/02/11 22:58] (current) dwheele [help(some type, such as bpy.data)] |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Python Notes, Used within Blender ====== | ====== Python Notes, Used within Blender ====== | ||
| - | [[.addonnotes: | + | * [[.addonnotes: |
| + | * [[.addons: | ||
| + | * [[programming: | ||
| To view "Run Script" | To view "Run Script" | ||
| Line 11: | Line 13: | ||
| 24/Sep/2011 18:01 | 24/Sep/2011 18:01 | ||
| http:// | http:// | ||
| + | |||
| + | ===== Simple Display of Operators, Methods, Variables ===== | ||
| + | |||
| + | ==== dir(some type, such as bpy.data) ==== | ||
| + | |||
| + | <code text> | ||
| + | dir (bpy.data) | ||
| + | |||
| + | [' | ||
| + | </ | ||
| + | |||
| + | ==== help(some type, such as bpy.data) ==== | ||
| + | |||
| + | <code text> | ||
| + | help(bpy.data) | ||
| + | |||
| + | | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | ... | ||
| + | </ | ||
| bpy.data | bpy.data | ||
| Line 18: | Line 58: | ||
| Ran this in the console: | Ran this in the console: | ||
| < | < | ||
| + | bpy.data | ||
| + | |||
| >>> | >>> | ||
| < | < | ||