Extensions:2.6/Py/Scripts/Development/Edit Operator Source

提供: wiki
< Extensions:2.6‎ | Py‎ | Scripts‎ | Development
2018年6月29日 (金) 06:22時点におけるYamyam (トーク | 投稿記録)による版 (1版 をインポートしました)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先: 案内検索
Edit Operator Source
Opens source file of chosen operator, if it is an add-on one
UI location Text Editor > Edit Operator
Version 1.2.2 Author(s) scorpion81
Blender 2.78 License GPL


Executable information
File name development_edit_operator.py
Current version download In Blender release add-ons




Info

  • Edit Operator Source
  • An useful add-on for development. Allows searching for Operator names (bl_idname) and opens source files containing them.

Edit Operator Source search.jpg

Usage

  • In the Text Editor > UI Region on the left find the Edit Operator Panel and press the Edit Operator button. A searchable menu will show up. Scroll down until the Operator is found. Enter the keywords in the search box to narrow down the available options. The source file containing the Operator will open pointing to it's line.
  • To access the previously opened text files, select them from the Header dropdown list.

Note

  • Similar to the Operator Cheat Sheet, the script will produce a small memory leak (~0.03mb) when enabled by accessing the Operator attributes from Python. It is a conscious trade-off made by Blender Developers, as the needed setting/call in the source C code for this purpose, would increase the size of every Python instance by 4 bytes. In case of complex scenes, the increased memory footprint would be not trivial compared to the few usage cases where it is currently needed.