fake-bpy-module 20240210__py3-none-any.whl → 20240326__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

Files changed (309) hide show
  1. addon_utils/__init__.pyi +54 -11
  2. animsys_refactor/__init__.pyi +36 -7
  3. aud/__init__.pyi +307 -321
  4. bgl/__init__.pyi +2926 -865
  5. bl_app_override/__init__.pyi +14 -4
  6. bl_app_override/helpers/__init__.pyi +24 -3
  7. bl_app_template_utils/__init__.pyi +19 -5
  8. bl_console_utils/__init__.pyi +0 -1
  9. bl_console_utils/autocomplete/__init__.pyi +2 -3
  10. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -6
  11. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -4
  12. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -6
  13. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -3
  14. bl_i18n_utils/__init__.pyi +2 -3
  15. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -16
  16. bl_i18n_utils/merge_po/__init__.pyi +4 -2
  17. bl_i18n_utils/settings/__init__.pyi +53 -7
  18. bl_i18n_utils/utils/__init__.pyi +332 -45
  19. bl_i18n_utils/utils_cli/__init__.pyi +29 -7
  20. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -2
  21. bl_i18n_utils/utils_rtl/__init__.pyi +9 -3
  22. bl_keymap_utils/__init__.pyi +2 -3
  23. bl_keymap_utils/io/__init__.pyi +44 -10
  24. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -2
  25. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -2
  26. bl_keymap_utils/platform_helpers/__init__.pyi +9 -3
  27. bl_keymap_utils/versioning/__init__.pyi +4 -2
  28. bl_math/__init__.pyi +21 -22
  29. bl_operators/__init__.pyi +30 -24
  30. bl_operators/add_mesh_torus/__init__.pyi +171 -38
  31. bl_operators/anim/__init__.pyi +1065 -227
  32. bl_operators/assets/__init__.pyi +427 -93
  33. bl_operators/bmesh/__init__.pyi +0 -1
  34. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -10
  35. bl_operators/clip/__init__.pyi +1342 -288
  36. bl_operators/console/__init__.pyi +647 -141
  37. bl_operators/constraint/__init__.pyi +524 -113
  38. bl_operators/file/__init__.pyi +396 -85
  39. bl_operators/freestyle/__init__.pyi +532 -114
  40. bl_operators/geometry_nodes/__init__.pyi +2412 -597
  41. bl_operators/image/__init__.pyi +380 -83
  42. bl_operators/mesh/__init__.pyi +401 -86
  43. bl_operators/node/__init__.pyi +1756 -385
  44. bl_operators/object/__init__.pyi +2022 -553
  45. bl_operators/object_align/__init__.pyi +145 -32
  46. bl_operators/object_quick_effects/__init__.pyi +555 -125
  47. bl_operators/object_randomize_transform/__init__.pyi +136 -33
  48. bl_operators/presets/__init__.pyi +3516 -709
  49. bl_operators/rigidbody/__init__.pyi +401 -86
  50. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -30
  51. bl_operators/sequencer/__init__.pyi +731 -150
  52. bl_operators/spreadsheet/__init__.pyi +145 -31
  53. bl_operators/userpref/__init__.pyi +3416 -825
  54. bl_operators/uvcalc_follow_active/__init__.pyi +149 -33
  55. bl_operators/uvcalc_lightmap/__init__.pyi +187 -35
  56. bl_operators/uvcalc_transform/__init__.pyi +344 -74
  57. bl_operators/vertexpaint_dirt/__init__.pyi +140 -31
  58. bl_operators/view3d/__init__.pyi +697 -147
  59. bl_operators/wm/__init__.pyi +6287 -1534
  60. bl_previews_utils/__init__.pyi +0 -1
  61. bl_previews_utils/bl_previews_render/__init__.pyi +34 -8
  62. bl_rna_utils/__init__.pyi +0 -1
  63. bl_rna_utils/data_path/__init__.pyi +12 -3
  64. bl_text_utils/__init__.pyi +0 -1
  65. bl_text_utils/external_editor/__init__.pyi +4 -2
  66. bl_ui/__init__.pyi +567 -170
  67. bl_ui/anim/__init__.pyi +164 -34
  68. bl_ui/asset_shelf/__init__.pyi +146 -32
  69. bl_ui/generic_ui_list/__init__.pyi +471 -100
  70. bl_ui/node_add_menu/__init__.pyi +196 -41
  71. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -622
  72. bl_ui/node_add_menu_geometry/__init__.pyi +8075 -1592
  73. bl_ui/node_add_menu_shader/__init__.pyi +1709 -349
  74. bl_ui/node_add_menu_texture/__init__.pyi +1502 -306
  75. bl_ui/properties_animviz/__init__.pyi +32 -3
  76. bl_ui/properties_collection/__init__.pyi +787 -180
  77. bl_ui/properties_constraint/__init__.pyi +28635 -5524
  78. bl_ui/properties_data_armature/__init__.pyi +1905 -449
  79. bl_ui/properties_data_bone/__init__.pyi +1560 -337
  80. bl_ui/properties_data_camera/__init__.pyi +2269 -495
  81. bl_ui/properties_data_curve/__init__.pyi +2362 -535
  82. bl_ui/properties_data_curves/__init__.pyi +951 -204
  83. bl_ui/properties_data_empty/__init__.pyi +317 -70
  84. bl_ui/properties_data_gpencil/__init__.pyi +2924 -735
  85. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -189
  86. bl_ui/properties_data_lattice/__init__.pyi +472 -105
  87. bl_ui/properties_data_light/__init__.pyi +1570 -338
  88. bl_ui/properties_data_lightprobe/__init__.pyi +938 -209
  89. bl_ui/properties_data_mesh/__init__.pyi +3205 -768
  90. bl_ui/properties_data_metaball/__init__.pyi +774 -171
  91. bl_ui/properties_data_modifier/__init__.pyi +1554 -329
  92. bl_ui/properties_data_pointcloud/__init__.pyi +821 -195
  93. bl_ui/properties_data_shaderfx/__init__.pyi +154 -35
  94. bl_ui/properties_data_speaker/__init__.pyi +782 -169
  95. bl_ui/properties_data_volume/__init__.pyi +1243 -282
  96. bl_ui/properties_freestyle/__init__.pyi +4071 -1031
  97. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -484
  98. bl_ui/properties_mask_common/__init__.pyi +1256 -250
  99. bl_ui/properties_material/__init__.pyi +2351 -543
  100. bl_ui/properties_material_gpencil/__init__.pyi +1590 -366
  101. bl_ui/properties_object/__init__.pyi +2179 -513
  102. bl_ui/properties_output/__init__.pyi +2956 -706
  103. bl_ui/properties_paint_common/__init__.pyi +947 -141
  104. bl_ui/properties_particle/__init__.pyi +8322 -1971
  105. bl_ui/properties_physics_cloth/__init__.pyi +2254 -509
  106. bl_ui/properties_physics_common/__init__.pyi +200 -45
  107. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -966
  108. bl_ui/properties_physics_field/__init__.pyi +1695 -365
  109. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1281
  110. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -33
  111. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -279
  112. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -484
  113. bl_ui/properties_physics_softbody/__init__.pyi +2394 -543
  114. bl_ui/properties_render/__init__.pyi +8312 -1934
  115. bl_ui/properties_scene/__init__.pyi +2211 -540
  116. bl_ui/properties_texture/__init__.pyi +4185 -1014
  117. bl_ui/properties_view_layer/__init__.pyi +2803 -665
  118. bl_ui/properties_workspace/__init__.pyi +626 -149
  119. bl_ui/properties_world/__init__.pyi +1092 -235
  120. bl_ui/space_clip/__init__.pyi +11475 -2806
  121. bl_ui/space_console/__init__.pyi +967 -203
  122. bl_ui/space_dopesheet/__init__.pyi +4260 -967
  123. bl_ui/space_filebrowser/__init__.pyi +4852 -1188
  124. bl_ui/space_graph/__init__.pyi +3251 -703
  125. bl_ui/space_image/__init__.pyi +12218 -2968
  126. bl_ui/space_info/__init__.pyi +964 -201
  127. bl_ui/space_nla/__init__.pyi +2756 -585
  128. bl_ui/space_node/__init__.pyi +5661 -1266
  129. bl_ui/space_outliner/__init__.pyi +2294 -479
  130. bl_ui/space_properties/__init__.pyi +417 -93
  131. bl_ui/space_sequencer/__init__.pyi +12436 -3010
  132. bl_ui/space_spreadsheet/__init__.pyi +184 -37
  133. bl_ui/space_statusbar/__init__.pyi +135 -31
  134. bl_ui/space_text/__init__.pyi +2556 -543
  135. bl_ui/space_time/__init__.pyi +1151 -244
  136. bl_ui/space_toolsystem_common/__init__.pyi +368 -67
  137. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -229
  138. bl_ui/space_topbar/__init__.pyi +4214 -888
  139. bl_ui/space_userpref/__init__.pyi +13920 -3468
  140. bl_ui/space_view3d/__init__.pyi +42751 -9613
  141. bl_ui/space_view3d_toolbar/__init__.pyi +16379 -3860
  142. bl_ui/utils/__init__.pyi +42 -5
  143. bl_ui_utils/__init__.pyi +0 -1
  144. bl_ui_utils/bug_report_url/__init__.pyi +4 -2
  145. bl_ui_utils/layout/__init__.pyi +4 -2
  146. blend_render_info/__init__.pyi +13 -4
  147. blf/__init__.pyi +15 -18
  148. bmesh/__init__.pyi +18 -18
  149. bmesh/geometry/__init__.pyi +5 -6
  150. bmesh/ops/__init__.pyi +1337 -1158
  151. bmesh/types/__init__.pyi +464 -374
  152. bmesh/utils/__init__.pyi +64 -70
  153. bpy/__init__.pyi +6 -7
  154. bpy/app/__init__.pyi +36 -38
  155. bpy/app/handlers/__init__.pyi +37 -38
  156. bpy/app/icons/__init__.pyi +8 -11
  157. bpy/app/timers/__init__.pyi +18 -17
  158. bpy/app/translations/__init__.pyi +32 -30
  159. bpy/msgbus/__init__.pyi +25 -20
  160. bpy/ops/__init__.pyi +63 -64
  161. bpy/ops/action/__init__.pyi +408 -436
  162. bpy/ops/anim/__init__.pyi +459 -577
  163. bpy/ops/armature/__init__.pyi +396 -498
  164. bpy/ops/asset/__init__.pyi +187 -213
  165. bpy/ops/boid/__init__.pyi +50 -68
  166. bpy/ops/brush/__init__.pyi +72 -97
  167. bpy/ops/buttons/__init__.pyi +202 -193
  168. bpy/ops/cachefile/__init__.pyi +198 -188
  169. bpy/ops/camera/__init__.pyi +24 -31
  170. bpy/ops/clip/__init__.pyi +1021 -1082
  171. bpy/ops/cloth/__init__.pyi +11 -15
  172. bpy/ops/collection/__init__.pyi +36 -51
  173. bpy/ops/console/__init__.pyi +155 -209
  174. bpy/ops/constraint/__init__.pyi +286 -254
  175. bpy/ops/curve/__init__.pyi +597 -659
  176. bpy/ops/curves/__init__.pyi +191 -225
  177. bpy/ops/cycles/__init__.pyi +21 -30
  178. bpy/ops/dpaint/__init__.pyi +34 -47
  179. bpy/ops/ed/__init__.pyi +160 -176
  180. bpy/ops/export_anim/__init__.pyi +51 -34
  181. bpy/ops/export_mesh/__init__.pyi +47 -45
  182. bpy/ops/export_scene/__init__.pyi +659 -504
  183. bpy/ops/file/__init__.pyi +469 -474
  184. bpy/ops/fluid/__init__.pyi +89 -119
  185. bpy/ops/font/__init__.pyi +325 -361
  186. bpy/ops/geometry/__init__.pyi +86 -114
  187. bpy/ops/gizmogroup/__init__.pyi +22 -28
  188. bpy/ops/gpencil/__init__.pyi +1900 -1976
  189. bpy/ops/graph/__init__.pyi +875 -894
  190. bpy/ops/grease_pencil/__init__.pyi +572 -508
  191. bpy/ops/image/__init__.pyi +805 -855
  192. bpy/ops/import_anim/__init__.pyi +66 -46
  193. bpy/ops/import_curve/__init__.pyi +7 -11
  194. bpy/ops/import_mesh/__init__.pyi +19 -25
  195. bpy/ops/import_scene/__init__.pyi +164 -147
  196. bpy/ops/info/__init__.pyi +88 -85
  197. bpy/ops/lattice/__init__.pyi +86 -90
  198. bpy/ops/marker/__init__.pyi +135 -146
  199. bpy/ops/mask/__init__.pyi +372 -436
  200. bpy/ops/material/__init__.pyi +18 -25
  201. bpy/ops/mball/__init__.pyi +93 -99
  202. bpy/ops/mesh/__init__.pyi +2525 -2664
  203. bpy/ops/nla/__init__.pyi +398 -455
  204. bpy/ops/node/__init__.pyi +1015 -1207
  205. bpy/ops/object/__init__.pyi +3423 -3390
  206. bpy/ops/outliner/__init__.pyi +667 -685
  207. bpy/ops/paint/__init__.pyi +719 -672
  208. bpy/ops/paintcurve/__init__.pyi +64 -85
  209. bpy/ops/palette/__init__.pyi +48 -67
  210. bpy/ops/particle/__init__.pyi +323 -367
  211. bpy/ops/pose/__init__.pyi +569 -474
  212. bpy/ops/poselib/__init__.pyi +77 -100
  213. bpy/ops/preferences/__init__.pyi +460 -512
  214. bpy/ops/ptcache/__init__.pyi +46 -63
  215. bpy/ops/render/__init__.pyi +121 -155
  216. bpy/ops/rigidbody/__init__.pyi +148 -143
  217. bpy/ops/scene/__init__.pyi +336 -380
  218. bpy/ops/screen/__init__.pyi +454 -530
  219. bpy/ops/script/__init__.pyi +19 -28
  220. bpy/ops/sculpt/__init__.pyi +734 -587
  221. bpy/ops/sculpt_curves/__init__.pyi +51 -56
  222. bpy/ops/sequencer/__init__.pyi +1617 -1500
  223. bpy/ops/sound/__init__.pyi +392 -315
  224. bpy/ops/spreadsheet/__init__.pyi +31 -42
  225. bpy/ops/surface/__init__.pyi +198 -163
  226. bpy/ops/text/__init__.pyi +479 -545
  227. bpy/ops/text_editor/__init__.pyi +11 -15
  228. bpy/ops/texture/__init__.pyi +26 -36
  229. bpy/ops/transform/__init__.pyi +825 -941
  230. bpy/ops/ui/__init__.pyi +246 -295
  231. bpy/ops/uilist/__init__.pyi +34 -38
  232. bpy/ops/uv/__init__.pyi +912 -824
  233. bpy/ops/view2d/__init__.pyi +157 -197
  234. bpy/ops/view3d/__init__.pyi +777 -878
  235. bpy/ops/wm/__init__.pyi +4102 -3595
  236. bpy/ops/workspace/__init__.pyi +42 -58
  237. bpy/ops/world/__init__.pyi +6 -9
  238. bpy/path/__init__.pyi +166 -109
  239. bpy/props/__init__.pyi +478 -395
  240. bpy/types/__init__.pyi +87194 -81467
  241. bpy/utils/__init__.pyi +325 -169
  242. bpy/utils/previews/__init__.pyi +108 -21
  243. bpy/utils/units/__init__.pyi +37 -39
  244. bpy_extras/__init__.pyi +4 -9
  245. bpy_extras/anim_utils/__init__.pyi +25 -55
  246. bpy_extras/asset_utils/__init__.pyi +3 -13
  247. bpy_extras/id_map_utils/__init__.pyi +1 -4
  248. bpy_extras/image_utils/__init__.pyi +33 -23
  249. bpy_extras/io_utils/__init__.pyi +116 -66
  250. bpy_extras/keyconfig_utils/__init__.pyi +5 -3
  251. bpy_extras/mesh_utils/__init__.pyi +42 -34
  252. bpy_extras/node_utils/__init__.pyi +4 -4
  253. bpy_extras/object_utils/__init__.pyi +58 -43
  254. bpy_extras/view3d_utils/__init__.pyi +64 -63
  255. bpy_restrict_state/__init__.pyi +14 -2
  256. bpy_types/__init__.pyi +3873 -998
  257. console_python/__init__.pyi +41 -8
  258. console_shell/__init__.pyi +24 -6
  259. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  260. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  261. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  262. freestyle/__init__.pyi +4 -5
  263. freestyle/chainingiterators/__init__.pyi +229 -73
  264. freestyle/functions/__init__.pyi +624 -402
  265. freestyle/predicates/__init__.pyi +381 -169
  266. freestyle/shaders/__init__.pyi +424 -155
  267. freestyle/types/__init__.pyi +1572 -726
  268. freestyle/utils/ContextFunctions/__init__.pyi +54 -43
  269. freestyle/utils/__init__.pyi +67 -31
  270. gpu/__init__.pyi +3 -4
  271. gpu/capabilities/__init__.pyi +57 -37
  272. gpu/matrix/__init__.pyi +14 -17
  273. gpu/platform/__init__.pyi +5 -6
  274. gpu/select/__init__.pyi +2 -5
  275. gpu/shader/__init__.pyi +14 -12
  276. gpu/state/__init__.pyi +48 -62
  277. gpu/texture/__init__.pyi +7 -7
  278. gpu/types/__init__.pyi +670 -229
  279. gpu_extras/__init__.pyi +1 -2
  280. gpu_extras/batch/__init__.pyi +27 -6
  281. gpu_extras/presets/__init__.pyi +67 -27
  282. graphviz_export/__init__.pyi +9 -3
  283. idprop/__init__.pyi +0 -1
  284. idprop/types/__init__.pyi +42 -13
  285. imbuf/__init__.pyi +6 -10
  286. imbuf/types/__init__.pyi +8 -16
  287. keyingsets_builtins/__init__.pyi +3149 -702
  288. keyingsets_utils/__init__.pyi +69 -15
  289. mathutils/__init__.pyi +951 -876
  290. mathutils/bvhtree/__init__.pyi +47 -48
  291. mathutils/geometry/__init__.pyi +237 -242
  292. mathutils/interpolate/__init__.pyi +3 -6
  293. mathutils/kdtree/__init__.pyi +23 -26
  294. mathutils/noise/__init__.pyi +50 -51
  295. nodeitems_builtins/__init__.pyi +50 -11
  296. nodeitems_utils/__init__.pyi +58 -11
  297. rna_info/__init__.pyi +230 -27
  298. rna_keymap_ui/__init__.pyi +29 -7
  299. rna_prop_ui/__init__.pyi +69 -13
  300. rna_xml/__init__.pyi +29 -7
  301. sys_info/__init__.pyi +4 -2
  302. bpy_extras/bmesh_utils/__init__.pyi +0 -7
  303. bpy_extras/extensions/__init__.pyi +0 -5
  304. bpy_extras/extensions/junction_module/__init__.pyi +0 -13
  305. bpy_extras/node_shader_utils/__init__.pyi +0 -132
  306. bpy_extras/wm_utils/__init__.pyi +0 -5
  307. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -30
  308. fake_bpy_module-20240210.dist-info/RECORD +0 -349
  309. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
@@ -1,465 +1,1836 @@
1
- import sys
2
1
  import typing
3
2
  import bpy_types
4
3
 
5
4
  GenericType = typing.TypeVar("GenericType")
6
5
 
7
- class NODE_OT_collapse_hide_unused_toggle(bpy_types.Operator):
6
+ class NODE_OT_add_node(bpy_types.Operator):
7
+ """ """
8
+
8
9
  bl_idname: typing.Any
10
+ """ """
11
+
9
12
  bl_label: typing.Any
13
+ """ """
14
+
10
15
  bl_options: typing.Any
16
+ """ """
17
+
11
18
  bl_rna: typing.Any
19
+ """ """
20
+
12
21
  id_data: typing.Any
22
+ """ """
13
23
 
14
- def as_keywords(self, ignore): ...
15
- def as_pointer(self): ...
16
- def bl_rna_get_subclass(self): ...
17
- def bl_rna_get_subclass_py(self): ...
18
- def driver_add(self): ...
19
- def driver_remove(self): ...
20
- def execute(self, context): ...
21
- def get(self): ...
22
- def id_properties_clear(self): ...
23
- def id_properties_ensure(self): ...
24
- def id_properties_ui(self): ...
25
- def is_property_hidden(self): ...
26
- def is_property_overridable_library(self): ...
27
- def is_property_readonly(self): ...
28
- def is_property_set(self): ...
29
- def items(self): ...
30
- def keyframe_delete(self): ...
31
- def keyframe_insert(self): ...
32
- def keys(self): ...
33
- def path_from_id(self): ...
34
- def path_resolve(self): ...
35
- def poll(self, context): ...
36
- def poll_message_set(self): ...
37
- def pop(self): ...
38
- def property_overridable_library_set(self): ...
39
- def property_unset(self): ...
40
- def type_recast(self): ...
41
- def values(self): ...
24
+ def as_keywords(self, ignore):
25
+ """
26
+
27
+ :param ignore:
28
+ """
29
+ ...
30
+
31
+ def as_pointer(self):
32
+ """ """
33
+ ...
34
+
35
+ def bl_rna_get_subclass(self):
36
+ """ """
37
+ ...
38
+
39
+ def bl_rna_get_subclass_py(self):
40
+ """ """
41
+ ...
42
+
43
+ def create_node(self, context, node_type):
44
+ """
45
+
46
+ :param context:
47
+ :param node_type:
48
+ """
49
+ ...
50
+
51
+ def description(self, _context, properties):
52
+ """
53
+
54
+ :param _context:
55
+ :param properties:
56
+ """
57
+ ...
58
+
59
+ def deselect_nodes(self, context):
60
+ """
61
+
62
+ :param context:
63
+ """
64
+ ...
65
+
66
+ def driver_add(self):
67
+ """ """
68
+ ...
69
+
70
+ def driver_remove(self):
71
+ """ """
72
+ ...
73
+
74
+ def execute(self, context):
75
+ """
76
+
77
+ :param context:
78
+ """
79
+ ...
80
+
81
+ def get(self):
82
+ """ """
83
+ ...
84
+
85
+ def id_properties_clear(self):
86
+ """ """
87
+ ...
88
+
89
+ def id_properties_ensure(self):
90
+ """ """
91
+ ...
92
+
93
+ def id_properties_ui(self):
94
+ """ """
95
+ ...
96
+
97
+ def invoke(self, context, event):
98
+ """
99
+
100
+ :param context:
101
+ :param event:
102
+ """
103
+ ...
104
+
105
+ def is_property_hidden(self):
106
+ """ """
107
+ ...
108
+
109
+ def is_property_overridable_library(self):
110
+ """ """
111
+ ...
112
+
113
+ def is_property_readonly(self):
114
+ """ """
115
+ ...
116
+
117
+ def is_property_set(self):
118
+ """ """
119
+ ...
120
+
121
+ def items(self):
122
+ """ """
123
+ ...
124
+
125
+ def keyframe_delete(self):
126
+ """ """
127
+ ...
128
+
129
+ def keyframe_insert(self):
130
+ """ """
131
+ ...
132
+
133
+ def keys(self):
134
+ """ """
135
+ ...
136
+
137
+ def path_from_id(self):
138
+ """ """
139
+ ...
140
+
141
+ def path_resolve(self):
142
+ """ """
143
+ ...
144
+
145
+ def poll(self, context):
146
+ """
147
+
148
+ :param context:
149
+ """
150
+ ...
151
+
152
+ def poll_message_set(self):
153
+ """ """
154
+ ...
155
+
156
+ def pop(self):
157
+ """ """
158
+ ...
159
+
160
+ def property_overridable_library_set(self):
161
+ """ """
162
+ ...
163
+
164
+ def property_unset(self):
165
+ """ """
166
+ ...
167
+
168
+ def store_mouse_cursor(self, context, event):
169
+ """
170
+
171
+ :param context:
172
+ :param event:
173
+ """
174
+ ...
175
+
176
+ def type_recast(self):
177
+ """ """
178
+ ...
179
+
180
+ def values(self):
181
+ """ """
182
+ ...
183
+
184
+ class NODE_OT_add_repeat_zone(bpy_types.Operator):
185
+ """ """
42
186
 
43
- class NODE_OT_enum_definition_item_add(bpy_types.Operator):
44
187
  bl_idname: typing.Any
188
+ """ """
189
+
45
190
  bl_label: typing.Any
191
+ """ """
192
+
46
193
  bl_options: typing.Any
194
+ """ """
195
+
47
196
  bl_rna: typing.Any
197
+ """ """
198
+
48
199
  id_data: typing.Any
200
+ """ """
49
201
 
50
- def as_keywords(self, ignore): ...
51
- def as_pointer(self): ...
52
- def bl_rna_get_subclass(self): ...
53
- def bl_rna_get_subclass_py(self): ...
54
- def driver_add(self): ...
55
- def driver_remove(self): ...
56
- def execute(self, context): ...
57
- def get(self): ...
58
- def id_properties_clear(self): ...
59
- def id_properties_ensure(self): ...
60
- def id_properties_ui(self): ...
61
- def is_property_hidden(self): ...
62
- def is_property_overridable_library(self): ...
63
- def is_property_readonly(self): ...
64
- def is_property_set(self): ...
65
- def items(self): ...
66
- def keyframe_delete(self): ...
67
- def keyframe_insert(self): ...
68
- def keys(self): ...
69
- def path_from_id(self): ...
70
- def path_resolve(self): ...
71
- def poll_message_set(self): ...
72
- def pop(self): ...
73
- def property_overridable_library_set(self): ...
74
- def property_unset(self): ...
75
- def type_recast(self): ...
76
- def values(self): ...
202
+ input_node_type: typing.Any
203
+ """ """
204
+
205
+ output_node_type: typing.Any
206
+ """ """
207
+
208
+ def as_keywords(self, ignore):
209
+ """
210
+
211
+ :param ignore:
212
+ """
213
+ ...
214
+
215
+ def as_pointer(self):
216
+ """ """
217
+ ...
218
+
219
+ def bl_rna_get_subclass(self):
220
+ """ """
221
+ ...
222
+
223
+ def bl_rna_get_subclass_py(self):
224
+ """ """
225
+ ...
226
+
227
+ def create_node(self, context, node_type):
228
+ """
229
+
230
+ :param context:
231
+ :param node_type:
232
+ """
233
+ ...
234
+
235
+ def deselect_nodes(self, context):
236
+ """
237
+
238
+ :param context:
239
+ """
240
+ ...
241
+
242
+ def driver_add(self):
243
+ """ """
244
+ ...
245
+
246
+ def driver_remove(self):
247
+ """ """
248
+ ...
249
+
250
+ def execute(self, context):
251
+ """
252
+
253
+ :param context:
254
+ """
255
+ ...
256
+
257
+ def get(self):
258
+ """ """
259
+ ...
260
+
261
+ def id_properties_clear(self):
262
+ """ """
263
+ ...
264
+
265
+ def id_properties_ensure(self):
266
+ """ """
267
+ ...
268
+
269
+ def id_properties_ui(self):
270
+ """ """
271
+ ...
272
+
273
+ def invoke(self, context, event):
274
+ """
275
+
276
+ :param context:
277
+ :param event:
278
+ """
279
+ ...
280
+
281
+ def is_property_hidden(self):
282
+ """ """
283
+ ...
284
+
285
+ def is_property_overridable_library(self):
286
+ """ """
287
+ ...
288
+
289
+ def is_property_readonly(self):
290
+ """ """
291
+ ...
292
+
293
+ def is_property_set(self):
294
+ """ """
295
+ ...
296
+
297
+ def items(self):
298
+ """ """
299
+ ...
300
+
301
+ def keyframe_delete(self):
302
+ """ """
303
+ ...
304
+
305
+ def keyframe_insert(self):
306
+ """ """
307
+ ...
308
+
309
+ def keys(self):
310
+ """ """
311
+ ...
312
+
313
+ def path_from_id(self):
314
+ """ """
315
+ ...
316
+
317
+ def path_resolve(self):
318
+ """ """
319
+ ...
320
+
321
+ def poll(self, context):
322
+ """
323
+
324
+ :param context:
325
+ """
326
+ ...
327
+
328
+ def poll_message_set(self):
329
+ """ """
330
+ ...
331
+
332
+ def pop(self):
333
+ """ """
334
+ ...
335
+
336
+ def property_overridable_library_set(self):
337
+ """ """
338
+ ...
339
+
340
+ def property_unset(self):
341
+ """ """
342
+ ...
343
+
344
+ def store_mouse_cursor(self, context, event):
345
+ """
346
+
347
+ :param context:
348
+ :param event:
349
+ """
350
+ ...
351
+
352
+ def type_recast(self):
353
+ """ """
354
+ ...
355
+
356
+ def values(self):
357
+ """ """
358
+ ...
359
+
360
+ class NODE_OT_add_simulation_zone(bpy_types.Operator):
361
+ """ """
77
362
 
78
- class NODE_OT_enum_definition_item_move(bpy_types.Operator):
79
363
  bl_idname: typing.Any
364
+ """ """
365
+
80
366
  bl_label: typing.Any
367
+ """ """
368
+
81
369
  bl_options: typing.Any
370
+ """ """
371
+
82
372
  bl_rna: typing.Any
373
+ """ """
374
+
83
375
  id_data: typing.Any
376
+ """ """
377
+
378
+ input_node_type: typing.Any
379
+ """ """
380
+
381
+ output_node_type: typing.Any
382
+ """ """
84
383
 
85
- def as_keywords(self, ignore): ...
86
- def as_pointer(self): ...
87
- def bl_rna_get_subclass(self): ...
88
- def bl_rna_get_subclass_py(self): ...
89
- def driver_add(self): ...
90
- def driver_remove(self): ...
91
- def execute(self, context): ...
92
- def get(self): ...
93
- def id_properties_clear(self): ...
94
- def id_properties_ensure(self): ...
95
- def id_properties_ui(self): ...
96
- def is_property_hidden(self): ...
97
- def is_property_overridable_library(self): ...
98
- def is_property_readonly(self): ...
99
- def is_property_set(self): ...
100
- def items(self): ...
101
- def keyframe_delete(self): ...
102
- def keyframe_insert(self): ...
103
- def keys(self): ...
104
- def path_from_id(self): ...
105
- def path_resolve(self): ...
106
- def poll_message_set(self): ...
107
- def pop(self): ...
108
- def property_overridable_library_set(self): ...
109
- def property_unset(self): ...
110
- def type_recast(self): ...
111
- def values(self): ...
384
+ def as_keywords(self, ignore):
385
+ """
386
+
387
+ :param ignore:
388
+ """
389
+ ...
390
+
391
+ def as_pointer(self):
392
+ """ """
393
+ ...
394
+
395
+ def bl_rna_get_subclass(self):
396
+ """ """
397
+ ...
398
+
399
+ def bl_rna_get_subclass_py(self):
400
+ """ """
401
+ ...
402
+
403
+ def create_node(self, context, node_type):
404
+ """
405
+
406
+ :param context:
407
+ :param node_type:
408
+ """
409
+ ...
410
+
411
+ def deselect_nodes(self, context):
412
+ """
413
+
414
+ :param context:
415
+ """
416
+ ...
417
+
418
+ def driver_add(self):
419
+ """ """
420
+ ...
421
+
422
+ def driver_remove(self):
423
+ """ """
424
+ ...
425
+
426
+ def execute(self, context):
427
+ """
428
+
429
+ :param context:
430
+ """
431
+ ...
432
+
433
+ def get(self):
434
+ """ """
435
+ ...
436
+
437
+ def id_properties_clear(self):
438
+ """ """
439
+ ...
440
+
441
+ def id_properties_ensure(self):
442
+ """ """
443
+ ...
444
+
445
+ def id_properties_ui(self):
446
+ """ """
447
+ ...
448
+
449
+ def invoke(self, context, event):
450
+ """
451
+
452
+ :param context:
453
+ :param event:
454
+ """
455
+ ...
456
+
457
+ def is_property_hidden(self):
458
+ """ """
459
+ ...
460
+
461
+ def is_property_overridable_library(self):
462
+ """ """
463
+ ...
464
+
465
+ def is_property_readonly(self):
466
+ """ """
467
+ ...
468
+
469
+ def is_property_set(self):
470
+ """ """
471
+ ...
472
+
473
+ def items(self):
474
+ """ """
475
+ ...
476
+
477
+ def keyframe_delete(self):
478
+ """ """
479
+ ...
480
+
481
+ def keyframe_insert(self):
482
+ """ """
483
+ ...
484
+
485
+ def keys(self):
486
+ """ """
487
+ ...
488
+
489
+ def path_from_id(self):
490
+ """ """
491
+ ...
492
+
493
+ def path_resolve(self):
494
+ """ """
495
+ ...
496
+
497
+ def poll(self, context):
498
+ """
499
+
500
+ :param context:
501
+ """
502
+ ...
503
+
504
+ def poll_message_set(self):
505
+ """ """
506
+ ...
507
+
508
+ def pop(self):
509
+ """ """
510
+ ...
511
+
512
+ def property_overridable_library_set(self):
513
+ """ """
514
+ ...
515
+
516
+ def property_unset(self):
517
+ """ """
518
+ ...
519
+
520
+ def store_mouse_cursor(self, context, event):
521
+ """
522
+
523
+ :param context:
524
+ :param event:
525
+ """
526
+ ...
527
+
528
+ def type_recast(self):
529
+ """ """
530
+ ...
531
+
532
+ def values(self):
533
+ """ """
534
+ ...
535
+
536
+ class NODE_OT_collapse_hide_unused_toggle(bpy_types.Operator):
537
+ """ """
112
538
 
113
- class NODE_OT_enum_definition_item_remove(bpy_types.Operator):
114
539
  bl_idname: typing.Any
540
+ """ """
541
+
115
542
  bl_label: typing.Any
543
+ """ """
544
+
116
545
  bl_options: typing.Any
546
+ """ """
547
+
117
548
  bl_rna: typing.Any
549
+ """ """
550
+
118
551
  id_data: typing.Any
552
+ """ """
119
553
 
120
- def as_keywords(self, ignore): ...
121
- def as_pointer(self): ...
122
- def bl_rna_get_subclass(self): ...
123
- def bl_rna_get_subclass_py(self): ...
124
- def driver_add(self): ...
125
- def driver_remove(self): ...
126
- def execute(self, context): ...
127
- def get(self): ...
128
- def id_properties_clear(self): ...
129
- def id_properties_ensure(self): ...
130
- def id_properties_ui(self): ...
131
- def is_property_hidden(self): ...
132
- def is_property_overridable_library(self): ...
133
- def is_property_readonly(self): ...
134
- def is_property_set(self): ...
135
- def items(self): ...
136
- def keyframe_delete(self): ...
137
- def keyframe_insert(self): ...
138
- def keys(self): ...
139
- def path_from_id(self): ...
140
- def path_resolve(self): ...
141
- def poll_message_set(self): ...
142
- def pop(self): ...
143
- def property_overridable_library_set(self): ...
144
- def property_unset(self): ...
145
- def type_recast(self): ...
146
- def values(self): ...
554
+ def as_keywords(self, ignore):
555
+ """
556
+
557
+ :param ignore:
558
+ """
559
+ ...
560
+
561
+ def as_pointer(self):
562
+ """ """
563
+ ...
564
+
565
+ def bl_rna_get_subclass(self):
566
+ """ """
567
+ ...
568
+
569
+ def bl_rna_get_subclass_py(self):
570
+ """ """
571
+ ...
572
+
573
+ def driver_add(self):
574
+ """ """
575
+ ...
576
+
577
+ def driver_remove(self):
578
+ """ """
579
+ ...
580
+
581
+ def execute(self, context):
582
+ """
583
+
584
+ :param context:
585
+ """
586
+ ...
587
+
588
+ def get(self):
589
+ """ """
590
+ ...
591
+
592
+ def id_properties_clear(self):
593
+ """ """
594
+ ...
595
+
596
+ def id_properties_ensure(self):
597
+ """ """
598
+ ...
599
+
600
+ def id_properties_ui(self):
601
+ """ """
602
+ ...
603
+
604
+ def is_property_hidden(self):
605
+ """ """
606
+ ...
607
+
608
+ def is_property_overridable_library(self):
609
+ """ """
610
+ ...
611
+
612
+ def is_property_readonly(self):
613
+ """ """
614
+ ...
615
+
616
+ def is_property_set(self):
617
+ """ """
618
+ ...
619
+
620
+ def items(self):
621
+ """ """
622
+ ...
623
+
624
+ def keyframe_delete(self):
625
+ """ """
626
+ ...
627
+
628
+ def keyframe_insert(self):
629
+ """ """
630
+ ...
631
+
632
+ def keys(self):
633
+ """ """
634
+ ...
635
+
636
+ def path_from_id(self):
637
+ """ """
638
+ ...
639
+
640
+ def path_resolve(self):
641
+ """ """
642
+ ...
643
+
644
+ def poll(self, context):
645
+ """
646
+
647
+ :param context:
648
+ """
649
+ ...
650
+
651
+ def poll_message_set(self):
652
+ """ """
653
+ ...
654
+
655
+ def pop(self):
656
+ """ """
657
+ ...
658
+
659
+ def property_overridable_library_set(self):
660
+ """ """
661
+ ...
662
+
663
+ def property_unset(self):
664
+ """ """
665
+ ...
666
+
667
+ def type_recast(self):
668
+ """ """
669
+ ...
670
+
671
+ def values(self):
672
+ """ """
673
+ ...
674
+
675
+ class NODE_OT_enum_definition_item_add(bpy_types.Operator):
676
+ """ """
147
677
 
148
- class NODE_OT_tree_path_parent(bpy_types.Operator):
149
678
  bl_idname: typing.Any
679
+ """ """
680
+
150
681
  bl_label: typing.Any
682
+ """ """
683
+
151
684
  bl_options: typing.Any
685
+ """ """
686
+
152
687
  bl_rna: typing.Any
688
+ """ """
689
+
153
690
  id_data: typing.Any
691
+ """ """
154
692
 
155
- def as_keywords(self, ignore): ...
156
- def as_pointer(self): ...
157
- def bl_rna_get_subclass(self): ...
158
- def bl_rna_get_subclass_py(self): ...
159
- def driver_add(self): ...
160
- def driver_remove(self): ...
161
- def execute(self, context): ...
162
- def get(self): ...
163
- def id_properties_clear(self): ...
164
- def id_properties_ensure(self): ...
165
- def id_properties_ui(self): ...
166
- def is_property_hidden(self): ...
167
- def is_property_overridable_library(self): ...
168
- def is_property_readonly(self): ...
169
- def is_property_set(self): ...
170
- def items(self): ...
171
- def keyframe_delete(self): ...
172
- def keyframe_insert(self): ...
173
- def keys(self): ...
174
- def path_from_id(self): ...
175
- def path_resolve(self): ...
176
- def poll(self, context): ...
177
- def poll_message_set(self): ...
178
- def pop(self): ...
179
- def property_overridable_library_set(self): ...
180
- def property_unset(self): ...
181
- def type_recast(self): ...
182
- def values(self): ...
693
+ def as_keywords(self, ignore):
694
+ """
183
695
 
184
- class NodeAddOperator:
185
- def create_node(self, context, node_type): ...
186
- def deselect_nodes(self, context): ...
187
- def invoke(self, context, event): ...
188
- def poll(self, context): ...
189
- def store_mouse_cursor(self, context, event): ...
696
+ :param ignore:
697
+ """
698
+ ...
190
699
 
191
- class NodeInterfaceOperator:
192
- def poll(self, context): ...
700
+ def as_pointer(self):
701
+ """ """
702
+ ...
193
703
 
194
- class NodeSetting(bpy_types.PropertyGroup):
195
- bl_rna: typing.Any
196
- id_data: typing.Any
704
+ def bl_rna_get_subclass(self):
705
+ """ """
706
+ ...
707
+
708
+ def bl_rna_get_subclass_py(self):
709
+ """ """
710
+ ...
711
+
712
+ def driver_add(self):
713
+ """ """
714
+ ...
715
+
716
+ def driver_remove(self):
717
+ """ """
718
+ ...
719
+
720
+ def execute(self, context):
721
+ """
722
+
723
+ :param context:
724
+ """
725
+ ...
726
+
727
+ def get(self):
728
+ """ """
729
+ ...
730
+
731
+ def id_properties_clear(self):
732
+ """ """
733
+ ...
734
+
735
+ def id_properties_ensure(self):
736
+ """ """
737
+ ...
738
+
739
+ def id_properties_ui(self):
740
+ """ """
741
+ ...
742
+
743
+ def is_property_hidden(self):
744
+ """ """
745
+ ...
746
+
747
+ def is_property_overridable_library(self):
748
+ """ """
749
+ ...
750
+
751
+ def is_property_readonly(self):
752
+ """ """
753
+ ...
754
+
755
+ def is_property_set(self):
756
+ """ """
757
+ ...
758
+
759
+ def items(self):
760
+ """ """
761
+ ...
762
+
763
+ def keyframe_delete(self):
764
+ """ """
765
+ ...
766
+
767
+ def keyframe_insert(self):
768
+ """ """
769
+ ...
770
+
771
+ def keys(self):
772
+ """ """
773
+ ...
774
+
775
+ def path_from_id(self):
776
+ """ """
777
+ ...
778
+
779
+ def path_resolve(self):
780
+ """ """
781
+ ...
782
+
783
+ def poll_message_set(self):
784
+ """ """
785
+ ...
786
+
787
+ def pop(self):
788
+ """ """
789
+ ...
790
+
791
+ def property_overridable_library_set(self):
792
+ """ """
793
+ ...
794
+
795
+ def property_unset(self):
796
+ """ """
797
+ ...
798
+
799
+ def type_recast(self):
800
+ """ """
801
+ ...
802
+
803
+ def values(self):
804
+ """ """
805
+ ...
806
+
807
+ class NODE_OT_enum_definition_item_move(bpy_types.Operator):
808
+ """ """
197
809
 
198
- def as_pointer(self): ...
199
- def bl_rna_get_subclass(self): ...
200
- def bl_rna_get_subclass_py(self): ...
201
- def driver_add(self): ...
202
- def driver_remove(self): ...
203
- def get(self): ...
204
- def id_properties_clear(self): ...
205
- def id_properties_ensure(self): ...
206
- def id_properties_ui(self): ...
207
- def is_property_hidden(self): ...
208
- def is_property_overridable_library(self): ...
209
- def is_property_readonly(self): ...
210
- def is_property_set(self): ...
211
- def items(self): ...
212
- def keyframe_delete(self): ...
213
- def keyframe_insert(self): ...
214
- def keys(self): ...
215
- def path_from_id(self): ...
216
- def path_resolve(self): ...
217
- def pop(self): ...
218
- def property_overridable_library_set(self): ...
219
- def property_unset(self): ...
220
- def type_recast(self): ...
221
- def values(self): ...
222
-
223
- class NODE_OT_add_node(NodeAddOperator, bpy_types.Operator):
224
810
  bl_idname: typing.Any
811
+ """ """
812
+
225
813
  bl_label: typing.Any
814
+ """ """
815
+
226
816
  bl_options: typing.Any
817
+ """ """
818
+
227
819
  bl_rna: typing.Any
820
+ """ """
821
+
228
822
  id_data: typing.Any
823
+ """ """
229
824
 
230
- def as_keywords(self, ignore): ...
231
- def as_pointer(self): ...
232
- def bl_rna_get_subclass(self): ...
233
- def bl_rna_get_subclass_py(self): ...
234
- def create_node(self, context, node_type): ...
235
- def description(self, _context, properties): ...
236
- def deselect_nodes(self, context): ...
237
- def driver_add(self): ...
238
- def driver_remove(self): ...
239
- def execute(self, context): ...
240
- def get(self): ...
241
- def id_properties_clear(self): ...
242
- def id_properties_ensure(self): ...
243
- def id_properties_ui(self): ...
244
- def invoke(self, context, event): ...
245
- def is_property_hidden(self): ...
246
- def is_property_overridable_library(self): ...
247
- def is_property_readonly(self): ...
248
- def is_property_set(self): ...
249
- def items(self): ...
250
- def keyframe_delete(self): ...
251
- def keyframe_insert(self): ...
252
- def keys(self): ...
253
- def path_from_id(self): ...
254
- def path_resolve(self): ...
255
- def poll(self, context): ...
256
- def poll_message_set(self): ...
257
- def pop(self): ...
258
- def property_overridable_library_set(self): ...
259
- def property_unset(self): ...
260
- def store_mouse_cursor(self, context, event): ...
261
- def type_recast(self): ...
262
- def values(self): ...
825
+ def as_keywords(self, ignore):
826
+ """
827
+
828
+ :param ignore:
829
+ """
830
+ ...
831
+
832
+ def as_pointer(self):
833
+ """ """
834
+ ...
835
+
836
+ def bl_rna_get_subclass(self):
837
+ """ """
838
+ ...
839
+
840
+ def bl_rna_get_subclass_py(self):
841
+ """ """
842
+ ...
843
+
844
+ def driver_add(self):
845
+ """ """
846
+ ...
847
+
848
+ def driver_remove(self):
849
+ """ """
850
+ ...
851
+
852
+ def execute(self, context):
853
+ """
854
+
855
+ :param context:
856
+ """
857
+ ...
858
+
859
+ def get(self):
860
+ """ """
861
+ ...
862
+
863
+ def id_properties_clear(self):
864
+ """ """
865
+ ...
866
+
867
+ def id_properties_ensure(self):
868
+ """ """
869
+ ...
870
+
871
+ def id_properties_ui(self):
872
+ """ """
873
+ ...
874
+
875
+ def is_property_hidden(self):
876
+ """ """
877
+ ...
878
+
879
+ def is_property_overridable_library(self):
880
+ """ """
881
+ ...
882
+
883
+ def is_property_readonly(self):
884
+ """ """
885
+ ...
886
+
887
+ def is_property_set(self):
888
+ """ """
889
+ ...
890
+
891
+ def items(self):
892
+ """ """
893
+ ...
894
+
895
+ def keyframe_delete(self):
896
+ """ """
897
+ ...
898
+
899
+ def keyframe_insert(self):
900
+ """ """
901
+ ...
902
+
903
+ def keys(self):
904
+ """ """
905
+ ...
906
+
907
+ def path_from_id(self):
908
+ """ """
909
+ ...
910
+
911
+ def path_resolve(self):
912
+ """ """
913
+ ...
914
+
915
+ def poll_message_set(self):
916
+ """ """
917
+ ...
918
+
919
+ def pop(self):
920
+ """ """
921
+ ...
922
+
923
+ def property_overridable_library_set(self):
924
+ """ """
925
+ ...
926
+
927
+ def property_unset(self):
928
+ """ """
929
+ ...
930
+
931
+ def type_recast(self):
932
+ """ """
933
+ ...
934
+
935
+ def values(self):
936
+ """ """
937
+ ...
938
+
939
+ class NODE_OT_enum_definition_item_remove(bpy_types.Operator):
940
+ """ """
263
941
 
264
- class NodeAddZoneOperator(NodeAddOperator):
265
- def create_node(self, context, node_type): ...
266
- def deselect_nodes(self, context): ...
267
- def execute(self, context): ...
268
- def invoke(self, context, event): ...
269
- def poll(self, context): ...
270
- def store_mouse_cursor(self, context, event): ...
271
-
272
- class NODE_OT_interface_item_duplicate(NodeInterfaceOperator, bpy_types.Operator):
273
942
  bl_idname: typing.Any
943
+ """ """
944
+
274
945
  bl_label: typing.Any
946
+ """ """
947
+
275
948
  bl_options: typing.Any
949
+ """ """
950
+
276
951
  bl_rna: typing.Any
952
+ """ """
953
+
277
954
  id_data: typing.Any
955
+ """ """
956
+
957
+ def as_keywords(self, ignore):
958
+ """
959
+
960
+ :param ignore:
961
+ """
962
+ ...
963
+
964
+ def as_pointer(self):
965
+ """ """
966
+ ...
967
+
968
+ def bl_rna_get_subclass(self):
969
+ """ """
970
+ ...
971
+
972
+ def bl_rna_get_subclass_py(self):
973
+ """ """
974
+ ...
975
+
976
+ def driver_add(self):
977
+ """ """
978
+ ...
979
+
980
+ def driver_remove(self):
981
+ """ """
982
+ ...
983
+
984
+ def execute(self, context):
985
+ """
986
+
987
+ :param context:
988
+ """
989
+ ...
990
+
991
+ def get(self):
992
+ """ """
993
+ ...
994
+
995
+ def id_properties_clear(self):
996
+ """ """
997
+ ...
998
+
999
+ def id_properties_ensure(self):
1000
+ """ """
1001
+ ...
1002
+
1003
+ def id_properties_ui(self):
1004
+ """ """
1005
+ ...
1006
+
1007
+ def is_property_hidden(self):
1008
+ """ """
1009
+ ...
1010
+
1011
+ def is_property_overridable_library(self):
1012
+ """ """
1013
+ ...
1014
+
1015
+ def is_property_readonly(self):
1016
+ """ """
1017
+ ...
1018
+
1019
+ def is_property_set(self):
1020
+ """ """
1021
+ ...
1022
+
1023
+ def items(self):
1024
+ """ """
1025
+ ...
1026
+
1027
+ def keyframe_delete(self):
1028
+ """ """
1029
+ ...
1030
+
1031
+ def keyframe_insert(self):
1032
+ """ """
1033
+ ...
1034
+
1035
+ def keys(self):
1036
+ """ """
1037
+ ...
1038
+
1039
+ def path_from_id(self):
1040
+ """ """
1041
+ ...
1042
+
1043
+ def path_resolve(self):
1044
+ """ """
1045
+ ...
1046
+
1047
+ def poll_message_set(self):
1048
+ """ """
1049
+ ...
1050
+
1051
+ def pop(self):
1052
+ """ """
1053
+ ...
1054
+
1055
+ def property_overridable_library_set(self):
1056
+ """ """
1057
+ ...
1058
+
1059
+ def property_unset(self):
1060
+ """ """
1061
+ ...
1062
+
1063
+ def type_recast(self):
1064
+ """ """
1065
+ ...
1066
+
1067
+ def values(self):
1068
+ """ """
1069
+ ...
1070
+
1071
+ class NODE_OT_interface_item_duplicate(bpy_types.Operator):
1072
+ """ """
278
1073
 
279
- def as_keywords(self, ignore): ...
280
- def as_pointer(self): ...
281
- def bl_rna_get_subclass(self): ...
282
- def bl_rna_get_subclass_py(self): ...
283
- def driver_add(self): ...
284
- def driver_remove(self): ...
285
- def execute(self, context): ...
286
- def get(self): ...
287
- def id_properties_clear(self): ...
288
- def id_properties_ensure(self): ...
289
- def id_properties_ui(self): ...
290
- def is_property_hidden(self): ...
291
- def is_property_overridable_library(self): ...
292
- def is_property_readonly(self): ...
293
- def is_property_set(self): ...
294
- def items(self): ...
295
- def keyframe_delete(self): ...
296
- def keyframe_insert(self): ...
297
- def keys(self): ...
298
- def path_from_id(self): ...
299
- def path_resolve(self): ...
300
- def poll(self, context): ...
301
- def poll_message_set(self): ...
302
- def pop(self): ...
303
- def property_overridable_library_set(self): ...
304
- def property_unset(self): ...
305
- def type_recast(self): ...
306
- def values(self): ...
307
-
308
- class NODE_OT_interface_item_new(NodeInterfaceOperator, bpy_types.Operator):
309
1074
  bl_idname: typing.Any
1075
+ """ """
1076
+
310
1077
  bl_label: typing.Any
1078
+ """ """
1079
+
311
1080
  bl_options: typing.Any
1081
+ """ """
1082
+
312
1083
  bl_rna: typing.Any
1084
+ """ """
1085
+
313
1086
  id_data: typing.Any
1087
+ """ """
1088
+
1089
+ def as_keywords(self, ignore):
1090
+ """
1091
+
1092
+ :param ignore:
1093
+ """
1094
+ ...
1095
+
1096
+ def as_pointer(self):
1097
+ """ """
1098
+ ...
1099
+
1100
+ def bl_rna_get_subclass(self):
1101
+ """ """
1102
+ ...
1103
+
1104
+ def bl_rna_get_subclass_py(self):
1105
+ """ """
1106
+ ...
1107
+
1108
+ def driver_add(self):
1109
+ """ """
1110
+ ...
1111
+
1112
+ def driver_remove(self):
1113
+ """ """
1114
+ ...
1115
+
1116
+ def execute(self, context):
1117
+ """
1118
+
1119
+ :param context:
1120
+ """
1121
+ ...
1122
+
1123
+ def get(self):
1124
+ """ """
1125
+ ...
1126
+
1127
+ def id_properties_clear(self):
1128
+ """ """
1129
+ ...
1130
+
1131
+ def id_properties_ensure(self):
1132
+ """ """
1133
+ ...
1134
+
1135
+ def id_properties_ui(self):
1136
+ """ """
1137
+ ...
1138
+
1139
+ def is_property_hidden(self):
1140
+ """ """
1141
+ ...
1142
+
1143
+ def is_property_overridable_library(self):
1144
+ """ """
1145
+ ...
1146
+
1147
+ def is_property_readonly(self):
1148
+ """ """
1149
+ ...
1150
+
1151
+ def is_property_set(self):
1152
+ """ """
1153
+ ...
1154
+
1155
+ def items(self):
1156
+ """ """
1157
+ ...
1158
+
1159
+ def keyframe_delete(self):
1160
+ """ """
1161
+ ...
1162
+
1163
+ def keyframe_insert(self):
1164
+ """ """
1165
+ ...
1166
+
1167
+ def keys(self):
1168
+ """ """
1169
+ ...
1170
+
1171
+ def path_from_id(self):
1172
+ """ """
1173
+ ...
1174
+
1175
+ def path_resolve(self):
1176
+ """ """
1177
+ ...
1178
+
1179
+ def poll(self, context):
1180
+ """
1181
+
1182
+ :param context:
1183
+ """
1184
+ ...
1185
+
1186
+ def poll_message_set(self):
1187
+ """ """
1188
+ ...
1189
+
1190
+ def pop(self):
1191
+ """ """
1192
+ ...
1193
+
1194
+ def property_overridable_library_set(self):
1195
+ """ """
1196
+ ...
1197
+
1198
+ def property_unset(self):
1199
+ """ """
1200
+ ...
1201
+
1202
+ def type_recast(self):
1203
+ """ """
1204
+ ...
1205
+
1206
+ def values(self):
1207
+ """ """
1208
+ ...
1209
+
1210
+ class NODE_OT_interface_item_new(bpy_types.Operator):
1211
+ """ """
314
1212
 
315
- def as_keywords(self, ignore): ...
316
- def as_pointer(self): ...
317
- def bl_rna_get_subclass(self): ...
318
- def bl_rna_get_subclass_py(self): ...
319
- def driver_add(self): ...
320
- def driver_remove(self): ...
321
- def execute(self, context): ...
322
- def find_valid_socket_type(self, tree): ...
323
- def get(self): ...
324
- def id_properties_clear(self): ...
325
- def id_properties_ensure(self): ...
326
- def id_properties_ui(self): ...
327
- def is_property_hidden(self): ...
328
- def is_property_overridable_library(self): ...
329
- def is_property_readonly(self): ...
330
- def is_property_set(self): ...
331
- def items(self): ...
332
- def keyframe_delete(self): ...
333
- def keyframe_insert(self): ...
334
- def keys(self): ...
335
- def path_from_id(self): ...
336
- def path_resolve(self): ...
337
- def poll(self, context): ...
338
- def poll_message_set(self): ...
339
- def pop(self): ...
340
- def property_overridable_library_set(self): ...
341
- def property_unset(self): ...
342
- def type_recast(self): ...
343
- def values(self): ...
344
-
345
- class NODE_OT_interface_item_remove(NodeInterfaceOperator, bpy_types.Operator):
346
1213
  bl_idname: typing.Any
1214
+ """ """
1215
+
347
1216
  bl_label: typing.Any
1217
+ """ """
1218
+
348
1219
  bl_options: typing.Any
1220
+ """ """
1221
+
349
1222
  bl_rna: typing.Any
1223
+ """ """
1224
+
350
1225
  id_data: typing.Any
1226
+ """ """
1227
+
1228
+ def as_keywords(self, ignore):
1229
+ """
1230
+
1231
+ :param ignore:
1232
+ """
1233
+ ...
1234
+
1235
+ def as_pointer(self):
1236
+ """ """
1237
+ ...
1238
+
1239
+ def bl_rna_get_subclass(self):
1240
+ """ """
1241
+ ...
1242
+
1243
+ def bl_rna_get_subclass_py(self):
1244
+ """ """
1245
+ ...
1246
+
1247
+ def driver_add(self):
1248
+ """ """
1249
+ ...
1250
+
1251
+ def driver_remove(self):
1252
+ """ """
1253
+ ...
1254
+
1255
+ def execute(self, context):
1256
+ """
1257
+
1258
+ :param context:
1259
+ """
1260
+ ...
1261
+
1262
+ def find_valid_socket_type(self, tree):
1263
+ """
1264
+
1265
+ :param tree:
1266
+ """
1267
+ ...
1268
+
1269
+ def get(self):
1270
+ """ """
1271
+ ...
1272
+
1273
+ def id_properties_clear(self):
1274
+ """ """
1275
+ ...
1276
+
1277
+ def id_properties_ensure(self):
1278
+ """ """
1279
+ ...
1280
+
1281
+ def id_properties_ui(self):
1282
+ """ """
1283
+ ...
1284
+
1285
+ def is_property_hidden(self):
1286
+ """ """
1287
+ ...
1288
+
1289
+ def is_property_overridable_library(self):
1290
+ """ """
1291
+ ...
1292
+
1293
+ def is_property_readonly(self):
1294
+ """ """
1295
+ ...
1296
+
1297
+ def is_property_set(self):
1298
+ """ """
1299
+ ...
1300
+
1301
+ def items(self):
1302
+ """ """
1303
+ ...
1304
+
1305
+ def keyframe_delete(self):
1306
+ """ """
1307
+ ...
1308
+
1309
+ def keyframe_insert(self):
1310
+ """ """
1311
+ ...
1312
+
1313
+ def keys(self):
1314
+ """ """
1315
+ ...
1316
+
1317
+ def path_from_id(self):
1318
+ """ """
1319
+ ...
1320
+
1321
+ def path_resolve(self):
1322
+ """ """
1323
+ ...
1324
+
1325
+ def poll(self, context):
1326
+ """
1327
+
1328
+ :param context:
1329
+ """
1330
+ ...
1331
+
1332
+ def poll_message_set(self):
1333
+ """ """
1334
+ ...
1335
+
1336
+ def pop(self):
1337
+ """ """
1338
+ ...
1339
+
1340
+ def property_overridable_library_set(self):
1341
+ """ """
1342
+ ...
1343
+
1344
+ def property_unset(self):
1345
+ """ """
1346
+ ...
1347
+
1348
+ def type_recast(self):
1349
+ """ """
1350
+ ...
1351
+
1352
+ def values(self):
1353
+ """ """
1354
+ ...
1355
+
1356
+ class NODE_OT_interface_item_remove(bpy_types.Operator):
1357
+ """ """
351
1358
 
352
- def as_keywords(self, ignore): ...
353
- def as_pointer(self): ...
354
- def bl_rna_get_subclass(self): ...
355
- def bl_rna_get_subclass_py(self): ...
356
- def driver_add(self): ...
357
- def driver_remove(self): ...
358
- def execute(self, context): ...
359
- def get(self): ...
360
- def id_properties_clear(self): ...
361
- def id_properties_ensure(self): ...
362
- def id_properties_ui(self): ...
363
- def is_property_hidden(self): ...
364
- def is_property_overridable_library(self): ...
365
- def is_property_readonly(self): ...
366
- def is_property_set(self): ...
367
- def items(self): ...
368
- def keyframe_delete(self): ...
369
- def keyframe_insert(self): ...
370
- def keys(self): ...
371
- def path_from_id(self): ...
372
- def path_resolve(self): ...
373
- def poll(self, context): ...
374
- def poll_message_set(self): ...
375
- def pop(self): ...
376
- def property_overridable_library_set(self): ...
377
- def property_unset(self): ...
378
- def type_recast(self): ...
379
- def values(self): ...
380
-
381
- class NODE_OT_add_repeat_zone(NodeAddZoneOperator, NodeAddOperator, bpy_types.Operator):
382
1359
  bl_idname: typing.Any
1360
+ """ """
1361
+
383
1362
  bl_label: typing.Any
1363
+ """ """
1364
+
384
1365
  bl_options: typing.Any
1366
+ """ """
1367
+
385
1368
  bl_rna: typing.Any
1369
+ """ """
1370
+
386
1371
  id_data: typing.Any
387
- input_node_type: typing.Any
388
- output_node_type: typing.Any
1372
+ """ """
1373
+
1374
+ def as_keywords(self, ignore):
1375
+ """
1376
+
1377
+ :param ignore:
1378
+ """
1379
+ ...
1380
+
1381
+ def as_pointer(self):
1382
+ """ """
1383
+ ...
1384
+
1385
+ def bl_rna_get_subclass(self):
1386
+ """ """
1387
+ ...
1388
+
1389
+ def bl_rna_get_subclass_py(self):
1390
+ """ """
1391
+ ...
1392
+
1393
+ def driver_add(self):
1394
+ """ """
1395
+ ...
1396
+
1397
+ def driver_remove(self):
1398
+ """ """
1399
+ ...
1400
+
1401
+ def execute(self, context):
1402
+ """
1403
+
1404
+ :param context:
1405
+ """
1406
+ ...
1407
+
1408
+ def get(self):
1409
+ """ """
1410
+ ...
1411
+
1412
+ def id_properties_clear(self):
1413
+ """ """
1414
+ ...
1415
+
1416
+ def id_properties_ensure(self):
1417
+ """ """
1418
+ ...
1419
+
1420
+ def id_properties_ui(self):
1421
+ """ """
1422
+ ...
1423
+
1424
+ def is_property_hidden(self):
1425
+ """ """
1426
+ ...
1427
+
1428
+ def is_property_overridable_library(self):
1429
+ """ """
1430
+ ...
1431
+
1432
+ def is_property_readonly(self):
1433
+ """ """
1434
+ ...
1435
+
1436
+ def is_property_set(self):
1437
+ """ """
1438
+ ...
1439
+
1440
+ def items(self):
1441
+ """ """
1442
+ ...
1443
+
1444
+ def keyframe_delete(self):
1445
+ """ """
1446
+ ...
1447
+
1448
+ def keyframe_insert(self):
1449
+ """ """
1450
+ ...
1451
+
1452
+ def keys(self):
1453
+ """ """
1454
+ ...
1455
+
1456
+ def path_from_id(self):
1457
+ """ """
1458
+ ...
1459
+
1460
+ def path_resolve(self):
1461
+ """ """
1462
+ ...
1463
+
1464
+ def poll(self, context):
1465
+ """
1466
+
1467
+ :param context:
1468
+ """
1469
+ ...
1470
+
1471
+ def poll_message_set(self):
1472
+ """ """
1473
+ ...
1474
+
1475
+ def pop(self):
1476
+ """ """
1477
+ ...
1478
+
1479
+ def property_overridable_library_set(self):
1480
+ """ """
1481
+ ...
1482
+
1483
+ def property_unset(self):
1484
+ """ """
1485
+ ...
1486
+
1487
+ def type_recast(self):
1488
+ """ """
1489
+ ...
1490
+
1491
+ def values(self):
1492
+ """ """
1493
+ ...
1494
+
1495
+ class NODE_OT_tree_path_parent(bpy_types.Operator):
1496
+ """ """
389
1497
 
390
- def as_keywords(self, ignore): ...
391
- def as_pointer(self): ...
392
- def bl_rna_get_subclass(self): ...
393
- def bl_rna_get_subclass_py(self): ...
394
- def create_node(self, context, node_type): ...
395
- def deselect_nodes(self, context): ...
396
- def driver_add(self): ...
397
- def driver_remove(self): ...
398
- def execute(self, context): ...
399
- def get(self): ...
400
- def id_properties_clear(self): ...
401
- def id_properties_ensure(self): ...
402
- def id_properties_ui(self): ...
403
- def invoke(self, context, event): ...
404
- def is_property_hidden(self): ...
405
- def is_property_overridable_library(self): ...
406
- def is_property_readonly(self): ...
407
- def is_property_set(self): ...
408
- def items(self): ...
409
- def keyframe_delete(self): ...
410
- def keyframe_insert(self): ...
411
- def keys(self): ...
412
- def path_from_id(self): ...
413
- def path_resolve(self): ...
414
- def poll(self, context): ...
415
- def poll_message_set(self): ...
416
- def pop(self): ...
417
- def property_overridable_library_set(self): ...
418
- def property_unset(self): ...
419
- def store_mouse_cursor(self, context, event): ...
420
- def type_recast(self): ...
421
- def values(self): ...
422
-
423
- class NODE_OT_add_simulation_zone(
424
- NodeAddZoneOperator, NodeAddOperator, bpy_types.Operator
425
- ):
426
1498
  bl_idname: typing.Any
1499
+ """ """
1500
+
427
1501
  bl_label: typing.Any
1502
+ """ """
1503
+
428
1504
  bl_options: typing.Any
1505
+ """ """
1506
+
429
1507
  bl_rna: typing.Any
1508
+ """ """
1509
+
430
1510
  id_data: typing.Any
431
- input_node_type: typing.Any
432
- output_node_type: typing.Any
1511
+ """ """
1512
+
1513
+ def as_keywords(self, ignore):
1514
+ """
1515
+
1516
+ :param ignore:
1517
+ """
1518
+ ...
1519
+
1520
+ def as_pointer(self):
1521
+ """ """
1522
+ ...
1523
+
1524
+ def bl_rna_get_subclass(self):
1525
+ """ """
1526
+ ...
1527
+
1528
+ def bl_rna_get_subclass_py(self):
1529
+ """ """
1530
+ ...
1531
+
1532
+ def driver_add(self):
1533
+ """ """
1534
+ ...
1535
+
1536
+ def driver_remove(self):
1537
+ """ """
1538
+ ...
1539
+
1540
+ def execute(self, context):
1541
+ """
1542
+
1543
+ :param context:
1544
+ """
1545
+ ...
1546
+
1547
+ def get(self):
1548
+ """ """
1549
+ ...
1550
+
1551
+ def id_properties_clear(self):
1552
+ """ """
1553
+ ...
1554
+
1555
+ def id_properties_ensure(self):
1556
+ """ """
1557
+ ...
1558
+
1559
+ def id_properties_ui(self):
1560
+ """ """
1561
+ ...
1562
+
1563
+ def is_property_hidden(self):
1564
+ """ """
1565
+ ...
1566
+
1567
+ def is_property_overridable_library(self):
1568
+ """ """
1569
+ ...
1570
+
1571
+ def is_property_readonly(self):
1572
+ """ """
1573
+ ...
1574
+
1575
+ def is_property_set(self):
1576
+ """ """
1577
+ ...
1578
+
1579
+ def items(self):
1580
+ """ """
1581
+ ...
1582
+
1583
+ def keyframe_delete(self):
1584
+ """ """
1585
+ ...
1586
+
1587
+ def keyframe_insert(self):
1588
+ """ """
1589
+ ...
1590
+
1591
+ def keys(self):
1592
+ """ """
1593
+ ...
1594
+
1595
+ def path_from_id(self):
1596
+ """ """
1597
+ ...
1598
+
1599
+ def path_resolve(self):
1600
+ """ """
1601
+ ...
1602
+
1603
+ def poll(self, context):
1604
+ """
1605
+
1606
+ :param context:
1607
+ """
1608
+ ...
1609
+
1610
+ def poll_message_set(self):
1611
+ """ """
1612
+ ...
1613
+
1614
+ def pop(self):
1615
+ """ """
1616
+ ...
1617
+
1618
+ def property_overridable_library_set(self):
1619
+ """ """
1620
+ ...
1621
+
1622
+ def property_unset(self):
1623
+ """ """
1624
+ ...
1625
+
1626
+ def type_recast(self):
1627
+ """ """
1628
+ ...
1629
+
1630
+ def values(self):
1631
+ """ """
1632
+ ...
1633
+
1634
+ class NodeAddZoneOperator(NodeAddOperator):
1635
+ """ """
1636
+
1637
+ def create_node(self, context, node_type):
1638
+ """
1639
+
1640
+ :param context:
1641
+ :param node_type:
1642
+ """
1643
+ ...
1644
+
1645
+ def deselect_nodes(self, context):
1646
+ """
1647
+
1648
+ :param context:
1649
+ """
1650
+ ...
1651
+
1652
+ def execute(self, context):
1653
+ """
1654
+
1655
+ :param context:
1656
+ """
1657
+ ...
1658
+
1659
+ def invoke(self, context, event):
1660
+ """
1661
+
1662
+ :param context:
1663
+ :param event:
1664
+ """
1665
+ ...
1666
+
1667
+ def poll(self, context):
1668
+ """
1669
+
1670
+ :param context:
1671
+ """
1672
+ ...
1673
+
1674
+ def store_mouse_cursor(self, context, event):
1675
+ """
1676
+
1677
+ :param context:
1678
+ :param event:
1679
+ """
1680
+ ...
1681
+
1682
+ class NodeInterfaceOperator:
1683
+ """ """
1684
+
1685
+ def poll(self, context):
1686
+ """
1687
+
1688
+ :param context:
1689
+ """
1690
+ ...
1691
+
1692
+ class NodeSetting(bpy_types.PropertyGroup):
1693
+ """ """
1694
+
1695
+ bl_rna: typing.Any
1696
+ """ """
1697
+
1698
+ id_data: typing.Any
1699
+ """ """
1700
+
1701
+ def as_pointer(self):
1702
+ """ """
1703
+ ...
1704
+
1705
+ def bl_rna_get_subclass(self):
1706
+ """ """
1707
+ ...
1708
+
1709
+ def bl_rna_get_subclass_py(self):
1710
+ """ """
1711
+ ...
1712
+
1713
+ def driver_add(self):
1714
+ """ """
1715
+ ...
1716
+
1717
+ def driver_remove(self):
1718
+ """ """
1719
+ ...
1720
+
1721
+ def get(self):
1722
+ """ """
1723
+ ...
1724
+
1725
+ def id_properties_clear(self):
1726
+ """ """
1727
+ ...
1728
+
1729
+ def id_properties_ensure(self):
1730
+ """ """
1731
+ ...
1732
+
1733
+ def id_properties_ui(self):
1734
+ """ """
1735
+ ...
1736
+
1737
+ def is_property_hidden(self):
1738
+ """ """
1739
+ ...
1740
+
1741
+ def is_property_overridable_library(self):
1742
+ """ """
1743
+ ...
1744
+
1745
+ def is_property_readonly(self):
1746
+ """ """
1747
+ ...
1748
+
1749
+ def is_property_set(self):
1750
+ """ """
1751
+ ...
1752
+
1753
+ def items(self):
1754
+ """ """
1755
+ ...
1756
+
1757
+ def keyframe_delete(self):
1758
+ """ """
1759
+ ...
1760
+
1761
+ def keyframe_insert(self):
1762
+ """ """
1763
+ ...
1764
+
1765
+ def keys(self):
1766
+ """ """
1767
+ ...
1768
+
1769
+ def path_from_id(self):
1770
+ """ """
1771
+ ...
1772
+
1773
+ def path_resolve(self):
1774
+ """ """
1775
+ ...
1776
+
1777
+ def pop(self):
1778
+ """ """
1779
+ ...
1780
+
1781
+ def property_overridable_library_set(self):
1782
+ """ """
1783
+ ...
1784
+
1785
+ def property_unset(self):
1786
+ """ """
1787
+ ...
1788
+
1789
+ def type_recast(self):
1790
+ """ """
1791
+ ...
1792
+
1793
+ def values(self):
1794
+ """ """
1795
+ ...
1796
+
1797
+ class NodeAddOperator:
1798
+ """ """
1799
+
1800
+ def create_node(self, context, node_type):
1801
+ """
1802
+
1803
+ :param context:
1804
+ :param node_type:
1805
+ """
1806
+ ...
1807
+
1808
+ def deselect_nodes(self, context):
1809
+ """
1810
+
1811
+ :param context:
1812
+ """
1813
+ ...
1814
+
1815
+ def invoke(self, context, event):
1816
+ """
1817
+
1818
+ :param context:
1819
+ :param event:
1820
+ """
1821
+ ...
1822
+
1823
+ def poll(self, context):
1824
+ """
1825
+
1826
+ :param context:
1827
+ """
1828
+ ...
1829
+
1830
+ def store_mouse_cursor(self, context, event):
1831
+ """
433
1832
 
434
- def as_keywords(self, ignore): ...
435
- def as_pointer(self): ...
436
- def bl_rna_get_subclass(self): ...
437
- def bl_rna_get_subclass_py(self): ...
438
- def create_node(self, context, node_type): ...
439
- def deselect_nodes(self, context): ...
440
- def driver_add(self): ...
441
- def driver_remove(self): ...
442
- def execute(self, context): ...
443
- def get(self): ...
444
- def id_properties_clear(self): ...
445
- def id_properties_ensure(self): ...
446
- def id_properties_ui(self): ...
447
- def invoke(self, context, event): ...
448
- def is_property_hidden(self): ...
449
- def is_property_overridable_library(self): ...
450
- def is_property_readonly(self): ...
451
- def is_property_set(self): ...
452
- def items(self): ...
453
- def keyframe_delete(self): ...
454
- def keyframe_insert(self): ...
455
- def keys(self): ...
456
- def path_from_id(self): ...
457
- def path_resolve(self): ...
458
- def poll(self, context): ...
459
- def poll_message_set(self): ...
460
- def pop(self): ...
461
- def property_overridable_library_set(self): ...
462
- def property_unset(self): ...
463
- def store_mouse_cursor(self, context, event): ...
464
- def type_recast(self): ...
465
- def values(self): ...
1833
+ :param context:
1834
+ :param event:
1835
+ """
1836
+ ...