fake-bpy-module 20240320__py3-none-any.whl → 20240322__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 (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +642 -822
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +331 -429
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86358 -87091
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240322.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240320.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/top_level.txt +0 -0
@@ -3,30 +3,44 @@ import bpy_types
3
3
 
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
- class NODE_MT_category_compositor_LAYOUT(bpy_types.Menu, bpy_types._GenericUI):
6
+ class NODE_MT_category_compositor_LAYOUT(bpy_types._GenericUI):
7
+ """ """
8
+
7
9
  bl_idname: typing.Any
10
+ """ """
11
+
8
12
  bl_label: typing.Any
13
+ """ """
14
+
9
15
  bl_rna: typing.Any
16
+ """ """
17
+
10
18
  id_data: typing.Any
19
+ """ """
11
20
 
12
21
  def append(self, draw_func):
13
22
  """
14
23
 
15
24
  :param draw_func:
16
- :type draw_func:
17
25
  """
18
26
  ...
19
27
 
20
- def as_pointer(self): ...
21
- def bl_rna_get_subclass(self): ...
22
- def bl_rna_get_subclass_py(self): ...
28
+ def as_pointer(self):
29
+ """ """
30
+ ...
31
+
32
+ def bl_rna_get_subclass(self):
33
+ """ """
34
+ ...
35
+
36
+ def bl_rna_get_subclass_py(self):
37
+ """ """
38
+ ...
39
+
23
40
  def draw(self, _context):
24
41
  """
25
42
 
26
- :param self:
27
- :type self:
28
43
  :param _context:
29
- :type _context:
30
44
  """
31
45
  ...
32
46
 
@@ -34,38 +48,81 @@ class NODE_MT_category_compositor_LAYOUT(bpy_types.Menu, bpy_types._GenericUI):
34
48
  """
35
49
 
36
50
  :param context:
37
- :type context:
38
51
  :param layout:
39
- :type layout:
40
52
  """
41
53
  ...
42
54
 
43
55
  def draw_preset(self, _context):
44
56
  """
45
57
 
46
- :param self:
47
- :type self:
48
58
  :param _context:
49
- :type _context:
50
- """
51
- ...
52
-
53
- def driver_add(self): ...
54
- def driver_remove(self): ...
55
- def get(self): ...
56
- def id_properties_clear(self): ...
57
- def id_properties_ensure(self): ...
58
- def id_properties_ui(self): ...
59
- def is_extended(self): ...
60
- def is_property_hidden(self): ...
61
- def is_property_overridable_library(self): ...
62
- def is_property_readonly(self): ...
63
- def is_property_set(self): ...
64
- def items(self): ...
65
- def keyframe_delete(self): ...
66
- def keyframe_insert(self): ...
67
- def keys(self): ...
68
- def path_from_id(self): ...
59
+ """
60
+ ...
61
+
62
+ def driver_add(self):
63
+ """ """
64
+ ...
65
+
66
+ def driver_remove(self):
67
+ """ """
68
+ ...
69
+
70
+ def get(self):
71
+ """ """
72
+ ...
73
+
74
+ def id_properties_clear(self):
75
+ """ """
76
+ ...
77
+
78
+ def id_properties_ensure(self):
79
+ """ """
80
+ ...
81
+
82
+ def id_properties_ui(self):
83
+ """ """
84
+ ...
85
+
86
+ def is_extended(self):
87
+ """ """
88
+ ...
89
+
90
+ def is_property_hidden(self):
91
+ """ """
92
+ ...
93
+
94
+ def is_property_overridable_library(self):
95
+ """ """
96
+ ...
97
+
98
+ def is_property_readonly(self):
99
+ """ """
100
+ ...
101
+
102
+ def is_property_set(self):
103
+ """ """
104
+ ...
105
+
106
+ def items(self):
107
+ """ """
108
+ ...
109
+
110
+ def keyframe_delete(self):
111
+ """ """
112
+ ...
113
+
114
+ def keyframe_insert(self):
115
+ """ """
116
+ ...
117
+
118
+ def keys(self):
119
+ """ """
120
+ ...
121
+
122
+ def path_from_id(self):
123
+ """ """
124
+ ...
125
+
69
126
  def path_menu(
70
127
  self,
71
128
  searchpaths,
@@ -79,74 +136,93 @@ class NODE_MT_category_compositor_LAYOUT(bpy_types.Menu, bpy_types._GenericUI):
79
136
  ):
80
137
  """
81
138
 
82
- :param self:
83
- :type self:
84
139
  :param searchpaths:
85
- :type searchpaths:
86
140
  :param operator:
87
- :type operator:
88
141
  :param props_default:
89
- :type props_default:
90
142
  :param prop_filepath:
91
- :type prop_filepath:
92
143
  :param filter_ext:
93
- :type filter_ext:
94
144
  :param filter_path:
95
- :type filter_path:
96
145
  :param display_name:
97
- :type display_name:
98
146
  :param add_operator:
99
- :type add_operator:
100
147
  """
101
148
  ...
102
149
 
103
- def path_resolve(self): ...
104
- def pop(self): ...
150
+ def path_resolve(self):
151
+ """ """
152
+ ...
153
+
154
+ def pop(self):
155
+ """ """
156
+ ...
157
+
105
158
  def prepend(self, draw_func):
106
159
  """
107
160
 
108
161
  :param draw_func:
109
- :type draw_func:
110
162
  """
111
163
  ...
112
164
 
113
- def property_overridable_library_set(self): ...
114
- def property_unset(self): ...
165
+ def property_overridable_library_set(self):
166
+ """ """
167
+ ...
168
+
169
+ def property_unset(self):
170
+ """ """
171
+ ...
172
+
115
173
  def remove(self, draw_func):
116
174
  """
117
175
 
118
176
  :param draw_func:
119
- :type draw_func:
120
177
  """
121
178
  ...
122
179
 
123
- def type_recast(self): ...
124
- def values(self): ...
180
+ def type_recast(self):
181
+ """ """
182
+ ...
183
+
184
+ def values(self):
185
+ """ """
186
+ ...
187
+
188
+ class NODE_MT_category_compositor_color(bpy_types._GenericUI):
189
+ """ """
125
190
 
126
- class NODE_MT_category_compositor_color(bpy_types.Menu, bpy_types._GenericUI):
127
191
  bl_idname: typing.Any
192
+ """ """
193
+
128
194
  bl_label: typing.Any
195
+ """ """
196
+
129
197
  bl_rna: typing.Any
198
+ """ """
199
+
130
200
  id_data: typing.Any
201
+ """ """
131
202
 
132
203
  def append(self, draw_func):
133
204
  """
134
205
 
135
206
  :param draw_func:
136
- :type draw_func:
137
207
  """
138
208
  ...
139
209
 
140
- def as_pointer(self): ...
141
- def bl_rna_get_subclass(self): ...
142
- def bl_rna_get_subclass_py(self): ...
210
+ def as_pointer(self):
211
+ """ """
212
+ ...
213
+
214
+ def bl_rna_get_subclass(self):
215
+ """ """
216
+ ...
217
+
218
+ def bl_rna_get_subclass_py(self):
219
+ """ """
220
+ ...
221
+
143
222
  def draw(self, _context):
144
223
  """
145
224
 
146
- :param self:
147
- :type self:
148
225
  :param _context:
149
- :type _context:
150
226
  """
151
227
  ...
152
228
 
@@ -154,38 +230,81 @@ class NODE_MT_category_compositor_color(bpy_types.Menu, bpy_types._GenericUI):
154
230
  """
155
231
 
156
232
  :param context:
157
- :type context:
158
233
  :param layout:
159
- :type layout:
160
234
  """
161
235
  ...
162
236
 
163
237
  def draw_preset(self, _context):
164
238
  """
165
239
 
166
- :param self:
167
- :type self:
168
240
  :param _context:
169
- :type _context:
170
- """
171
- ...
172
-
173
- def driver_add(self): ...
174
- def driver_remove(self): ...
175
- def get(self): ...
176
- def id_properties_clear(self): ...
177
- def id_properties_ensure(self): ...
178
- def id_properties_ui(self): ...
179
- def is_extended(self): ...
180
- def is_property_hidden(self): ...
181
- def is_property_overridable_library(self): ...
182
- def is_property_readonly(self): ...
183
- def is_property_set(self): ...
184
- def items(self): ...
185
- def keyframe_delete(self): ...
186
- def keyframe_insert(self): ...
187
- def keys(self): ...
188
- def path_from_id(self): ...
241
+ """
242
+ ...
243
+
244
+ def driver_add(self):
245
+ """ """
246
+ ...
247
+
248
+ def driver_remove(self):
249
+ """ """
250
+ ...
251
+
252
+ def get(self):
253
+ """ """
254
+ ...
255
+
256
+ def id_properties_clear(self):
257
+ """ """
258
+ ...
259
+
260
+ def id_properties_ensure(self):
261
+ """ """
262
+ ...
263
+
264
+ def id_properties_ui(self):
265
+ """ """
266
+ ...
267
+
268
+ def is_extended(self):
269
+ """ """
270
+ ...
271
+
272
+ def is_property_hidden(self):
273
+ """ """
274
+ ...
275
+
276
+ def is_property_overridable_library(self):
277
+ """ """
278
+ ...
279
+
280
+ def is_property_readonly(self):
281
+ """ """
282
+ ...
283
+
284
+ def is_property_set(self):
285
+ """ """
286
+ ...
287
+
288
+ def items(self):
289
+ """ """
290
+ ...
291
+
292
+ def keyframe_delete(self):
293
+ """ """
294
+ ...
295
+
296
+ def keyframe_insert(self):
297
+ """ """
298
+ ...
299
+
300
+ def keys(self):
301
+ """ """
302
+ ...
303
+
304
+ def path_from_id(self):
305
+ """ """
306
+ ...
307
+
189
308
  def path_menu(
190
309
  self,
191
310
  searchpaths,
@@ -199,74 +318,93 @@ class NODE_MT_category_compositor_color(bpy_types.Menu, bpy_types._GenericUI):
199
318
  ):
200
319
  """
201
320
 
202
- :param self:
203
- :type self:
204
321
  :param searchpaths:
205
- :type searchpaths:
206
322
  :param operator:
207
- :type operator:
208
323
  :param props_default:
209
- :type props_default:
210
324
  :param prop_filepath:
211
- :type prop_filepath:
212
325
  :param filter_ext:
213
- :type filter_ext:
214
326
  :param filter_path:
215
- :type filter_path:
216
327
  :param display_name:
217
- :type display_name:
218
328
  :param add_operator:
219
- :type add_operator:
220
329
  """
221
330
  ...
222
331
 
223
- def path_resolve(self): ...
224
- def pop(self): ...
332
+ def path_resolve(self):
333
+ """ """
334
+ ...
335
+
336
+ def pop(self):
337
+ """ """
338
+ ...
339
+
225
340
  def prepend(self, draw_func):
226
341
  """
227
342
 
228
343
  :param draw_func:
229
- :type draw_func:
230
344
  """
231
345
  ...
232
346
 
233
- def property_overridable_library_set(self): ...
234
- def property_unset(self): ...
347
+ def property_overridable_library_set(self):
348
+ """ """
349
+ ...
350
+
351
+ def property_unset(self):
352
+ """ """
353
+ ...
354
+
235
355
  def remove(self, draw_func):
236
356
  """
237
357
 
238
358
  :param draw_func:
239
- :type draw_func:
240
359
  """
241
360
  ...
242
361
 
243
- def type_recast(self): ...
244
- def values(self): ...
362
+ def type_recast(self):
363
+ """ """
364
+ ...
365
+
366
+ def values(self):
367
+ """ """
368
+ ...
369
+
370
+ class NODE_MT_category_compositor_color_adjust(bpy_types._GenericUI):
371
+ """ """
245
372
 
246
- class NODE_MT_category_compositor_color_adjust(bpy_types.Menu, bpy_types._GenericUI):
247
373
  bl_idname: typing.Any
374
+ """ """
375
+
248
376
  bl_label: typing.Any
377
+ """ """
378
+
249
379
  bl_rna: typing.Any
380
+ """ """
381
+
250
382
  id_data: typing.Any
383
+ """ """
251
384
 
252
385
  def append(self, draw_func):
253
386
  """
254
387
 
255
388
  :param draw_func:
256
- :type draw_func:
257
389
  """
258
390
  ...
259
391
 
260
- def as_pointer(self): ...
261
- def bl_rna_get_subclass(self): ...
262
- def bl_rna_get_subclass_py(self): ...
392
+ def as_pointer(self):
393
+ """ """
394
+ ...
395
+
396
+ def bl_rna_get_subclass(self):
397
+ """ """
398
+ ...
399
+
400
+ def bl_rna_get_subclass_py(self):
401
+ """ """
402
+ ...
403
+
263
404
  def draw(self, _context):
264
405
  """
265
406
 
266
- :param self:
267
- :type self:
268
407
  :param _context:
269
- :type _context:
270
408
  """
271
409
  ...
272
410
 
@@ -274,38 +412,81 @@ class NODE_MT_category_compositor_color_adjust(bpy_types.Menu, bpy_types._Generi
274
412
  """
275
413
 
276
414
  :param context:
277
- :type context:
278
415
  :param layout:
279
- :type layout:
280
416
  """
281
417
  ...
282
418
 
283
419
  def draw_preset(self, _context):
284
420
  """
285
421
 
286
- :param self:
287
- :type self:
288
422
  :param _context:
289
- :type _context:
290
- """
291
- ...
292
-
293
- def driver_add(self): ...
294
- def driver_remove(self): ...
295
- def get(self): ...
296
- def id_properties_clear(self): ...
297
- def id_properties_ensure(self): ...
298
- def id_properties_ui(self): ...
299
- def is_extended(self): ...
300
- def is_property_hidden(self): ...
301
- def is_property_overridable_library(self): ...
302
- def is_property_readonly(self): ...
303
- def is_property_set(self): ...
304
- def items(self): ...
305
- def keyframe_delete(self): ...
306
- def keyframe_insert(self): ...
307
- def keys(self): ...
308
- def path_from_id(self): ...
423
+ """
424
+ ...
425
+
426
+ def driver_add(self):
427
+ """ """
428
+ ...
429
+
430
+ def driver_remove(self):
431
+ """ """
432
+ ...
433
+
434
+ def get(self):
435
+ """ """
436
+ ...
437
+
438
+ def id_properties_clear(self):
439
+ """ """
440
+ ...
441
+
442
+ def id_properties_ensure(self):
443
+ """ """
444
+ ...
445
+
446
+ def id_properties_ui(self):
447
+ """ """
448
+ ...
449
+
450
+ def is_extended(self):
451
+ """ """
452
+ ...
453
+
454
+ def is_property_hidden(self):
455
+ """ """
456
+ ...
457
+
458
+ def is_property_overridable_library(self):
459
+ """ """
460
+ ...
461
+
462
+ def is_property_readonly(self):
463
+ """ """
464
+ ...
465
+
466
+ def is_property_set(self):
467
+ """ """
468
+ ...
469
+
470
+ def items(self):
471
+ """ """
472
+ ...
473
+
474
+ def keyframe_delete(self):
475
+ """ """
476
+ ...
477
+
478
+ def keyframe_insert(self):
479
+ """ """
480
+ ...
481
+
482
+ def keys(self):
483
+ """ """
484
+ ...
485
+
486
+ def path_from_id(self):
487
+ """ """
488
+ ...
489
+
309
490
  def path_menu(
310
491
  self,
311
492
  searchpaths,
@@ -319,74 +500,93 @@ class NODE_MT_category_compositor_color_adjust(bpy_types.Menu, bpy_types._Generi
319
500
  ):
320
501
  """
321
502
 
322
- :param self:
323
- :type self:
324
503
  :param searchpaths:
325
- :type searchpaths:
326
504
  :param operator:
327
- :type operator:
328
505
  :param props_default:
329
- :type props_default:
330
506
  :param prop_filepath:
331
- :type prop_filepath:
332
507
  :param filter_ext:
333
- :type filter_ext:
334
508
  :param filter_path:
335
- :type filter_path:
336
509
  :param display_name:
337
- :type display_name:
338
510
  :param add_operator:
339
- :type add_operator:
340
511
  """
341
512
  ...
342
513
 
343
- def path_resolve(self): ...
344
- def pop(self): ...
514
+ def path_resolve(self):
515
+ """ """
516
+ ...
517
+
518
+ def pop(self):
519
+ """ """
520
+ ...
521
+
345
522
  def prepend(self, draw_func):
346
523
  """
347
524
 
348
525
  :param draw_func:
349
- :type draw_func:
350
526
  """
351
527
  ...
352
528
 
353
- def property_overridable_library_set(self): ...
354
- def property_unset(self): ...
529
+ def property_overridable_library_set(self):
530
+ """ """
531
+ ...
532
+
533
+ def property_unset(self):
534
+ """ """
535
+ ...
536
+
355
537
  def remove(self, draw_func):
356
538
  """
357
539
 
358
540
  :param draw_func:
359
- :type draw_func:
360
541
  """
361
542
  ...
362
543
 
363
- def type_recast(self): ...
364
- def values(self): ...
544
+ def type_recast(self):
545
+ """ """
546
+ ...
547
+
548
+ def values(self):
549
+ """ """
550
+ ...
551
+
552
+ class NODE_MT_category_compositor_color_mix(bpy_types._GenericUI):
553
+ """ """
365
554
 
366
- class NODE_MT_category_compositor_color_mix(bpy_types.Menu, bpy_types._GenericUI):
367
555
  bl_idname: typing.Any
556
+ """ """
557
+
368
558
  bl_label: typing.Any
559
+ """ """
560
+
369
561
  bl_rna: typing.Any
562
+ """ """
563
+
370
564
  id_data: typing.Any
565
+ """ """
371
566
 
372
567
  def append(self, draw_func):
373
568
  """
374
569
 
375
570
  :param draw_func:
376
- :type draw_func:
377
571
  """
378
572
  ...
379
573
 
380
- def as_pointer(self): ...
381
- def bl_rna_get_subclass(self): ...
382
- def bl_rna_get_subclass_py(self): ...
574
+ def as_pointer(self):
575
+ """ """
576
+ ...
577
+
578
+ def bl_rna_get_subclass(self):
579
+ """ """
580
+ ...
581
+
582
+ def bl_rna_get_subclass_py(self):
583
+ """ """
584
+ ...
585
+
383
586
  def draw(self, _context):
384
587
  """
385
588
 
386
- :param self:
387
- :type self:
388
589
  :param _context:
389
- :type _context:
390
590
  """
391
591
  ...
392
592
 
@@ -394,38 +594,81 @@ class NODE_MT_category_compositor_color_mix(bpy_types.Menu, bpy_types._GenericUI
394
594
  """
395
595
 
396
596
  :param context:
397
- :type context:
398
597
  :param layout:
399
- :type layout:
400
598
  """
401
599
  ...
402
600
 
403
601
  def draw_preset(self, _context):
404
602
  """
405
603
 
406
- :param self:
407
- :type self:
408
604
  :param _context:
409
- :type _context:
410
- """
411
- ...
412
-
413
- def driver_add(self): ...
414
- def driver_remove(self): ...
415
- def get(self): ...
416
- def id_properties_clear(self): ...
417
- def id_properties_ensure(self): ...
418
- def id_properties_ui(self): ...
419
- def is_extended(self): ...
420
- def is_property_hidden(self): ...
421
- def is_property_overridable_library(self): ...
422
- def is_property_readonly(self): ...
423
- def is_property_set(self): ...
424
- def items(self): ...
425
- def keyframe_delete(self): ...
426
- def keyframe_insert(self): ...
427
- def keys(self): ...
428
- def path_from_id(self): ...
605
+ """
606
+ ...
607
+
608
+ def driver_add(self):
609
+ """ """
610
+ ...
611
+
612
+ def driver_remove(self):
613
+ """ """
614
+ ...
615
+
616
+ def get(self):
617
+ """ """
618
+ ...
619
+
620
+ def id_properties_clear(self):
621
+ """ """
622
+ ...
623
+
624
+ def id_properties_ensure(self):
625
+ """ """
626
+ ...
627
+
628
+ def id_properties_ui(self):
629
+ """ """
630
+ ...
631
+
632
+ def is_extended(self):
633
+ """ """
634
+ ...
635
+
636
+ def is_property_hidden(self):
637
+ """ """
638
+ ...
639
+
640
+ def is_property_overridable_library(self):
641
+ """ """
642
+ ...
643
+
644
+ def is_property_readonly(self):
645
+ """ """
646
+ ...
647
+
648
+ def is_property_set(self):
649
+ """ """
650
+ ...
651
+
652
+ def items(self):
653
+ """ """
654
+ ...
655
+
656
+ def keyframe_delete(self):
657
+ """ """
658
+ ...
659
+
660
+ def keyframe_insert(self):
661
+ """ """
662
+ ...
663
+
664
+ def keys(self):
665
+ """ """
666
+ ...
667
+
668
+ def path_from_id(self):
669
+ """ """
670
+ ...
671
+
429
672
  def path_menu(
430
673
  self,
431
674
  searchpaths,
@@ -439,74 +682,93 @@ class NODE_MT_category_compositor_color_mix(bpy_types.Menu, bpy_types._GenericUI
439
682
  ):
440
683
  """
441
684
 
442
- :param self:
443
- :type self:
444
685
  :param searchpaths:
445
- :type searchpaths:
446
686
  :param operator:
447
- :type operator:
448
687
  :param props_default:
449
- :type props_default:
450
688
  :param prop_filepath:
451
- :type prop_filepath:
452
689
  :param filter_ext:
453
- :type filter_ext:
454
690
  :param filter_path:
455
- :type filter_path:
456
691
  :param display_name:
457
- :type display_name:
458
692
  :param add_operator:
459
- :type add_operator:
460
693
  """
461
694
  ...
462
695
 
463
- def path_resolve(self): ...
464
- def pop(self): ...
696
+ def path_resolve(self):
697
+ """ """
698
+ ...
699
+
700
+ def pop(self):
701
+ """ """
702
+ ...
703
+
465
704
  def prepend(self, draw_func):
466
705
  """
467
706
 
468
707
  :param draw_func:
469
- :type draw_func:
470
708
  """
471
709
  ...
472
710
 
473
- def property_overridable_library_set(self): ...
474
- def property_unset(self): ...
711
+ def property_overridable_library_set(self):
712
+ """ """
713
+ ...
714
+
715
+ def property_unset(self):
716
+ """ """
717
+ ...
718
+
475
719
  def remove(self, draw_func):
476
720
  """
477
721
 
478
722
  :param draw_func:
479
- :type draw_func:
480
723
  """
481
724
  ...
482
725
 
483
- def type_recast(self): ...
484
- def values(self): ...
726
+ def type_recast(self):
727
+ """ """
728
+ ...
729
+
730
+ def values(self):
731
+ """ """
732
+ ...
733
+
734
+ class NODE_MT_category_compositor_filter(bpy_types._GenericUI):
735
+ """ """
485
736
 
486
- class NODE_MT_category_compositor_filter(bpy_types.Menu, bpy_types._GenericUI):
487
737
  bl_idname: typing.Any
738
+ """ """
739
+
488
740
  bl_label: typing.Any
741
+ """ """
742
+
489
743
  bl_rna: typing.Any
744
+ """ """
745
+
490
746
  id_data: typing.Any
747
+ """ """
491
748
 
492
749
  def append(self, draw_func):
493
750
  """
494
751
 
495
752
  :param draw_func:
496
- :type draw_func:
497
753
  """
498
754
  ...
499
755
 
500
- def as_pointer(self): ...
501
- def bl_rna_get_subclass(self): ...
502
- def bl_rna_get_subclass_py(self): ...
756
+ def as_pointer(self):
757
+ """ """
758
+ ...
759
+
760
+ def bl_rna_get_subclass(self):
761
+ """ """
762
+ ...
763
+
764
+ def bl_rna_get_subclass_py(self):
765
+ """ """
766
+ ...
767
+
503
768
  def draw(self, _context):
504
769
  """
505
770
 
506
- :param self:
507
- :type self:
508
771
  :param _context:
509
- :type _context:
510
772
  """
511
773
  ...
512
774
 
@@ -514,158 +776,81 @@ class NODE_MT_category_compositor_filter(bpy_types.Menu, bpy_types._GenericUI):
514
776
  """
515
777
 
516
778
  :param context:
517
- :type context:
518
779
  :param layout:
519
- :type layout:
520
780
  """
521
781
  ...
522
782
 
523
783
  def draw_preset(self, _context):
524
784
  """
525
785
 
526
- :param self:
527
- :type self:
528
786
  :param _context:
529
- :type _context:
530
- """
531
- ...
532
-
533
- def driver_add(self): ...
534
- def driver_remove(self): ...
535
- def get(self): ...
536
- def id_properties_clear(self): ...
537
- def id_properties_ensure(self): ...
538
- def id_properties_ui(self): ...
539
- def is_extended(self): ...
540
- def is_property_hidden(self): ...
541
- def is_property_overridable_library(self): ...
542
- def is_property_readonly(self): ...
543
- def is_property_set(self): ...
544
- def items(self): ...
545
- def keyframe_delete(self): ...
546
- def keyframe_insert(self): ...
547
- def keys(self): ...
548
- def path_from_id(self): ...
549
- def path_menu(
550
- self,
551
- searchpaths,
552
- operator,
553
- props_default,
554
- prop_filepath,
555
- filter_ext,
556
- filter_path,
557
- display_name,
558
- add_operator,
559
- ):
560
787
  """
788
+ ...
561
789
 
562
- :param self:
563
- :type self:
564
- :param searchpaths:
565
- :type searchpaths:
566
- :param operator:
567
- :type operator:
568
- :param props_default:
569
- :type props_default:
570
- :param prop_filepath:
571
- :type prop_filepath:
572
- :param filter_ext:
573
- :type filter_ext:
574
- :param filter_path:
575
- :type filter_path:
576
- :param display_name:
577
- :type display_name:
578
- :param add_operator:
579
- :type add_operator:
580
- """
790
+ def driver_add(self):
791
+ """ """
581
792
  ...
582
793
 
583
- def path_resolve(self): ...
584
- def pop(self): ...
585
- def prepend(self, draw_func):
586
- """
794
+ def driver_remove(self):
795
+ """ """
796
+ ...
587
797
 
588
- :param draw_func:
589
- :type draw_func:
590
- """
798
+ def get(self):
799
+ """ """
591
800
  ...
592
801
 
593
- def property_overridable_library_set(self): ...
594
- def property_unset(self): ...
595
- def remove(self, draw_func):
596
- """
802
+ def id_properties_clear(self):
803
+ """ """
804
+ ...
597
805
 
598
- :param draw_func:
599
- :type draw_func:
600
- """
806
+ def id_properties_ensure(self):
807
+ """ """
601
808
  ...
602
809
 
603
- def type_recast(self): ...
604
- def values(self): ...
810
+ def id_properties_ui(self):
811
+ """ """
812
+ ...
605
813
 
606
- class NODE_MT_category_compositor_filter_blur(bpy_types.Menu, bpy_types._GenericUI):
607
- bl_idname: typing.Any
608
- bl_label: typing.Any
609
- bl_rna: typing.Any
610
- id_data: typing.Any
814
+ def is_extended(self):
815
+ """ """
816
+ ...
611
817
 
612
- def append(self, draw_func):
613
- """
818
+ def is_property_hidden(self):
819
+ """ """
820
+ ...
614
821
 
615
- :param draw_func:
616
- :type draw_func:
617
- """
822
+ def is_property_overridable_library(self):
823
+ """ """
618
824
  ...
619
825
 
620
- def as_pointer(self): ...
621
- def bl_rna_get_subclass(self): ...
622
- def bl_rna_get_subclass_py(self): ...
623
- def draw(self, _context):
624
- """
826
+ def is_property_readonly(self):
827
+ """ """
828
+ ...
625
829
 
626
- :param self:
627
- :type self:
628
- :param _context:
629
- :type _context:
630
- """
830
+ def is_property_set(self):
831
+ """ """
631
832
  ...
632
833
 
633
- def draw_collapsible(self, context, layout):
634
- """
834
+ def items(self):
835
+ """ """
836
+ ...
635
837
 
636
- :param context:
637
- :type context:
638
- :param layout:
639
- :type layout:
640
- """
838
+ def keyframe_delete(self):
839
+ """ """
641
840
  ...
642
841
 
643
- def draw_preset(self, _context):
644
- """
842
+ def keyframe_insert(self):
843
+ """ """
844
+ ...
845
+
846
+ def keys(self):
847
+ """ """
848
+ ...
849
+
850
+ def path_from_id(self):
851
+ """ """
852
+ ...
645
853
 
646
- :param self:
647
- :type self:
648
- :param _context:
649
- :type _context:
650
- """
651
- ...
652
-
653
- def driver_add(self): ...
654
- def driver_remove(self): ...
655
- def get(self): ...
656
- def id_properties_clear(self): ...
657
- def id_properties_ensure(self): ...
658
- def id_properties_ui(self): ...
659
- def is_extended(self): ...
660
- def is_property_hidden(self): ...
661
- def is_property_overridable_library(self): ...
662
- def is_property_readonly(self): ...
663
- def is_property_set(self): ...
664
- def items(self): ...
665
- def keyframe_delete(self): ...
666
- def keyframe_insert(self): ...
667
- def keys(self): ...
668
- def path_from_id(self): ...
669
854
  def path_menu(
670
855
  self,
671
856
  searchpaths,
@@ -679,74 +864,93 @@ class NODE_MT_category_compositor_filter_blur(bpy_types.Menu, bpy_types._Generic
679
864
  ):
680
865
  """
681
866
 
682
- :param self:
683
- :type self:
684
867
  :param searchpaths:
685
- :type searchpaths:
686
868
  :param operator:
687
- :type operator:
688
869
  :param props_default:
689
- :type props_default:
690
870
  :param prop_filepath:
691
- :type prop_filepath:
692
871
  :param filter_ext:
693
- :type filter_ext:
694
872
  :param filter_path:
695
- :type filter_path:
696
873
  :param display_name:
697
- :type display_name:
698
874
  :param add_operator:
699
- :type add_operator:
700
875
  """
701
876
  ...
702
877
 
703
- def path_resolve(self): ...
704
- def pop(self): ...
878
+ def path_resolve(self):
879
+ """ """
880
+ ...
881
+
882
+ def pop(self):
883
+ """ """
884
+ ...
885
+
705
886
  def prepend(self, draw_func):
706
887
  """
707
888
 
708
889
  :param draw_func:
709
- :type draw_func:
710
890
  """
711
891
  ...
712
892
 
713
- def property_overridable_library_set(self): ...
714
- def property_unset(self): ...
893
+ def property_overridable_library_set(self):
894
+ """ """
895
+ ...
896
+
897
+ def property_unset(self):
898
+ """ """
899
+ ...
900
+
715
901
  def remove(self, draw_func):
716
902
  """
717
903
 
718
904
  :param draw_func:
719
- :type draw_func:
720
905
  """
721
906
  ...
722
907
 
723
- def type_recast(self): ...
724
- def values(self): ...
908
+ def type_recast(self):
909
+ """ """
910
+ ...
911
+
912
+ def values(self):
913
+ """ """
914
+ ...
915
+
916
+ class NODE_MT_category_compositor_filter_blur(bpy_types._GenericUI):
917
+ """ """
725
918
 
726
- class NODE_MT_category_compositor_group(bpy_types.Menu, bpy_types._GenericUI):
727
919
  bl_idname: typing.Any
920
+ """ """
921
+
728
922
  bl_label: typing.Any
923
+ """ """
924
+
729
925
  bl_rna: typing.Any
926
+ """ """
927
+
730
928
  id_data: typing.Any
929
+ """ """
731
930
 
732
931
  def append(self, draw_func):
733
932
  """
734
933
 
735
934
  :param draw_func:
736
- :type draw_func:
737
935
  """
738
936
  ...
739
937
 
740
- def as_pointer(self): ...
741
- def bl_rna_get_subclass(self): ...
742
- def bl_rna_get_subclass_py(self): ...
743
- def draw(self, context):
938
+ def as_pointer(self):
939
+ """ """
940
+ ...
941
+
942
+ def bl_rna_get_subclass(self):
943
+ """ """
944
+ ...
945
+
946
+ def bl_rna_get_subclass_py(self):
947
+ """ """
948
+ ...
949
+
950
+ def draw(self, _context):
744
951
  """
745
952
 
746
- :param self:
747
- :type self:
748
- :param context:
749
- :type context:
953
+ :param _context:
750
954
  """
751
955
  ...
752
956
 
@@ -754,38 +958,81 @@ class NODE_MT_category_compositor_group(bpy_types.Menu, bpy_types._GenericUI):
754
958
  """
755
959
 
756
960
  :param context:
757
- :type context:
758
961
  :param layout:
759
- :type layout:
760
962
  """
761
963
  ...
762
964
 
763
965
  def draw_preset(self, _context):
764
966
  """
765
967
 
766
- :param self:
767
- :type self:
768
968
  :param _context:
769
- :type _context:
770
- """
771
- ...
772
-
773
- def driver_add(self): ...
774
- def driver_remove(self): ...
775
- def get(self): ...
776
- def id_properties_clear(self): ...
777
- def id_properties_ensure(self): ...
778
- def id_properties_ui(self): ...
779
- def is_extended(self): ...
780
- def is_property_hidden(self): ...
781
- def is_property_overridable_library(self): ...
782
- def is_property_readonly(self): ...
783
- def is_property_set(self): ...
784
- def items(self): ...
785
- def keyframe_delete(self): ...
786
- def keyframe_insert(self): ...
787
- def keys(self): ...
788
- def path_from_id(self): ...
969
+ """
970
+ ...
971
+
972
+ def driver_add(self):
973
+ """ """
974
+ ...
975
+
976
+ def driver_remove(self):
977
+ """ """
978
+ ...
979
+
980
+ def get(self):
981
+ """ """
982
+ ...
983
+
984
+ def id_properties_clear(self):
985
+ """ """
986
+ ...
987
+
988
+ def id_properties_ensure(self):
989
+ """ """
990
+ ...
991
+
992
+ def id_properties_ui(self):
993
+ """ """
994
+ ...
995
+
996
+ def is_extended(self):
997
+ """ """
998
+ ...
999
+
1000
+ def is_property_hidden(self):
1001
+ """ """
1002
+ ...
1003
+
1004
+ def is_property_overridable_library(self):
1005
+ """ """
1006
+ ...
1007
+
1008
+ def is_property_readonly(self):
1009
+ """ """
1010
+ ...
1011
+
1012
+ def is_property_set(self):
1013
+ """ """
1014
+ ...
1015
+
1016
+ def items(self):
1017
+ """ """
1018
+ ...
1019
+
1020
+ def keyframe_delete(self):
1021
+ """ """
1022
+ ...
1023
+
1024
+ def keyframe_insert(self):
1025
+ """ """
1026
+ ...
1027
+
1028
+ def keys(self):
1029
+ """ """
1030
+ ...
1031
+
1032
+ def path_from_id(self):
1033
+ """ """
1034
+ ...
1035
+
789
1036
  def path_menu(
790
1037
  self,
791
1038
  searchpaths,
@@ -799,74 +1046,93 @@ class NODE_MT_category_compositor_group(bpy_types.Menu, bpy_types._GenericUI):
799
1046
  ):
800
1047
  """
801
1048
 
802
- :param self:
803
- :type self:
804
1049
  :param searchpaths:
805
- :type searchpaths:
806
1050
  :param operator:
807
- :type operator:
808
1051
  :param props_default:
809
- :type props_default:
810
1052
  :param prop_filepath:
811
- :type prop_filepath:
812
1053
  :param filter_ext:
813
- :type filter_ext:
814
1054
  :param filter_path:
815
- :type filter_path:
816
1055
  :param display_name:
817
- :type display_name:
818
1056
  :param add_operator:
819
- :type add_operator:
820
1057
  """
821
1058
  ...
822
1059
 
823
- def path_resolve(self): ...
824
- def pop(self): ...
1060
+ def path_resolve(self):
1061
+ """ """
1062
+ ...
1063
+
1064
+ def pop(self):
1065
+ """ """
1066
+ ...
1067
+
825
1068
  def prepend(self, draw_func):
826
1069
  """
827
1070
 
828
1071
  :param draw_func:
829
- :type draw_func:
830
1072
  """
831
1073
  ...
832
1074
 
833
- def property_overridable_library_set(self): ...
834
- def property_unset(self): ...
1075
+ def property_overridable_library_set(self):
1076
+ """ """
1077
+ ...
1078
+
1079
+ def property_unset(self):
1080
+ """ """
1081
+ ...
1082
+
835
1083
  def remove(self, draw_func):
836
1084
  """
837
1085
 
838
1086
  :param draw_func:
839
- :type draw_func:
840
1087
  """
841
1088
  ...
842
1089
 
843
- def type_recast(self): ...
844
- def values(self): ...
1090
+ def type_recast(self):
1091
+ """ """
1092
+ ...
1093
+
1094
+ def values(self):
1095
+ """ """
1096
+ ...
1097
+
1098
+ class NODE_MT_category_compositor_group(bpy_types._GenericUI):
1099
+ """ """
845
1100
 
846
- class NODE_MT_category_compositor_input(bpy_types.Menu, bpy_types._GenericUI):
847
1101
  bl_idname: typing.Any
1102
+ """ """
1103
+
848
1104
  bl_label: typing.Any
1105
+ """ """
1106
+
849
1107
  bl_rna: typing.Any
1108
+ """ """
1109
+
850
1110
  id_data: typing.Any
1111
+ """ """
851
1112
 
852
1113
  def append(self, draw_func):
853
1114
  """
854
1115
 
855
1116
  :param draw_func:
856
- :type draw_func:
857
1117
  """
858
1118
  ...
859
1119
 
860
- def as_pointer(self): ...
861
- def bl_rna_get_subclass(self): ...
862
- def bl_rna_get_subclass_py(self): ...
1120
+ def as_pointer(self):
1121
+ """ """
1122
+ ...
1123
+
1124
+ def bl_rna_get_subclass(self):
1125
+ """ """
1126
+ ...
1127
+
1128
+ def bl_rna_get_subclass_py(self):
1129
+ """ """
1130
+ ...
1131
+
863
1132
  def draw(self, context):
864
1133
  """
865
1134
 
866
- :param self:
867
- :type self:
868
1135
  :param context:
869
- :type context:
870
1136
  """
871
1137
  ...
872
1138
 
@@ -874,158 +1140,81 @@ class NODE_MT_category_compositor_input(bpy_types.Menu, bpy_types._GenericUI):
874
1140
  """
875
1141
 
876
1142
  :param context:
877
- :type context:
878
1143
  :param layout:
879
- :type layout:
880
1144
  """
881
1145
  ...
882
1146
 
883
1147
  def draw_preset(self, _context):
884
1148
  """
885
1149
 
886
- :param self:
887
- :type self:
888
1150
  :param _context:
889
- :type _context:
890
- """
891
- ...
892
-
893
- def driver_add(self): ...
894
- def driver_remove(self): ...
895
- def get(self): ...
896
- def id_properties_clear(self): ...
897
- def id_properties_ensure(self): ...
898
- def id_properties_ui(self): ...
899
- def is_extended(self): ...
900
- def is_property_hidden(self): ...
901
- def is_property_overridable_library(self): ...
902
- def is_property_readonly(self): ...
903
- def is_property_set(self): ...
904
- def items(self): ...
905
- def keyframe_delete(self): ...
906
- def keyframe_insert(self): ...
907
- def keys(self): ...
908
- def path_from_id(self): ...
909
- def path_menu(
910
- self,
911
- searchpaths,
912
- operator,
913
- props_default,
914
- prop_filepath,
915
- filter_ext,
916
- filter_path,
917
- display_name,
918
- add_operator,
919
- ):
920
1151
  """
1152
+ ...
921
1153
 
922
- :param self:
923
- :type self:
924
- :param searchpaths:
925
- :type searchpaths:
926
- :param operator:
927
- :type operator:
928
- :param props_default:
929
- :type props_default:
930
- :param prop_filepath:
931
- :type prop_filepath:
932
- :param filter_ext:
933
- :type filter_ext:
934
- :param filter_path:
935
- :type filter_path:
936
- :param display_name:
937
- :type display_name:
938
- :param add_operator:
939
- :type add_operator:
940
- """
1154
+ def driver_add(self):
1155
+ """ """
941
1156
  ...
942
1157
 
943
- def path_resolve(self): ...
944
- def pop(self): ...
945
- def prepend(self, draw_func):
946
- """
1158
+ def driver_remove(self):
1159
+ """ """
1160
+ ...
947
1161
 
948
- :param draw_func:
949
- :type draw_func:
950
- """
1162
+ def get(self):
1163
+ """ """
951
1164
  ...
952
1165
 
953
- def property_overridable_library_set(self): ...
954
- def property_unset(self): ...
955
- def remove(self, draw_func):
956
- """
1166
+ def id_properties_clear(self):
1167
+ """ """
1168
+ ...
957
1169
 
958
- :param draw_func:
959
- :type draw_func:
960
- """
1170
+ def id_properties_ensure(self):
1171
+ """ """
961
1172
  ...
962
1173
 
963
- def type_recast(self): ...
964
- def values(self): ...
1174
+ def id_properties_ui(self):
1175
+ """ """
1176
+ ...
965
1177
 
966
- class NODE_MT_category_compositor_input_constant(bpy_types.Menu, bpy_types._GenericUI):
967
- bl_idname: typing.Any
968
- bl_label: typing.Any
969
- bl_rna: typing.Any
970
- id_data: typing.Any
1178
+ def is_extended(self):
1179
+ """ """
1180
+ ...
971
1181
 
972
- def append(self, draw_func):
973
- """
1182
+ def is_property_hidden(self):
1183
+ """ """
1184
+ ...
974
1185
 
975
- :param draw_func:
976
- :type draw_func:
977
- """
1186
+ def is_property_overridable_library(self):
1187
+ """ """
978
1188
  ...
979
1189
 
980
- def as_pointer(self): ...
981
- def bl_rna_get_subclass(self): ...
982
- def bl_rna_get_subclass_py(self): ...
983
- def draw(self, _context):
984
- """
1190
+ def is_property_readonly(self):
1191
+ """ """
1192
+ ...
985
1193
 
986
- :param self:
987
- :type self:
988
- :param _context:
989
- :type _context:
990
- """
1194
+ def is_property_set(self):
1195
+ """ """
991
1196
  ...
992
1197
 
993
- def draw_collapsible(self, context, layout):
994
- """
1198
+ def items(self):
1199
+ """ """
1200
+ ...
995
1201
 
996
- :param context:
997
- :type context:
998
- :param layout:
999
- :type layout:
1000
- """
1202
+ def keyframe_delete(self):
1203
+ """ """
1001
1204
  ...
1002
1205
 
1003
- def draw_preset(self, _context):
1004
- """
1206
+ def keyframe_insert(self):
1207
+ """ """
1208
+ ...
1209
+
1210
+ def keys(self):
1211
+ """ """
1212
+ ...
1213
+
1214
+ def path_from_id(self):
1215
+ """ """
1216
+ ...
1005
1217
 
1006
- :param self:
1007
- :type self:
1008
- :param _context:
1009
- :type _context:
1010
- """
1011
- ...
1012
-
1013
- def driver_add(self): ...
1014
- def driver_remove(self): ...
1015
- def get(self): ...
1016
- def id_properties_clear(self): ...
1017
- def id_properties_ensure(self): ...
1018
- def id_properties_ui(self): ...
1019
- def is_extended(self): ...
1020
- def is_property_hidden(self): ...
1021
- def is_property_overridable_library(self): ...
1022
- def is_property_readonly(self): ...
1023
- def is_property_set(self): ...
1024
- def items(self): ...
1025
- def keyframe_delete(self): ...
1026
- def keyframe_insert(self): ...
1027
- def keys(self): ...
1028
- def path_from_id(self): ...
1029
1218
  def path_menu(
1030
1219
  self,
1031
1220
  searchpaths,
@@ -1039,74 +1228,93 @@ class NODE_MT_category_compositor_input_constant(bpy_types.Menu, bpy_types._Gene
1039
1228
  ):
1040
1229
  """
1041
1230
 
1042
- :param self:
1043
- :type self:
1044
1231
  :param searchpaths:
1045
- :type searchpaths:
1046
1232
  :param operator:
1047
- :type operator:
1048
1233
  :param props_default:
1049
- :type props_default:
1050
1234
  :param prop_filepath:
1051
- :type prop_filepath:
1052
1235
  :param filter_ext:
1053
- :type filter_ext:
1054
1236
  :param filter_path:
1055
- :type filter_path:
1056
1237
  :param display_name:
1057
- :type display_name:
1058
1238
  :param add_operator:
1059
- :type add_operator:
1060
1239
  """
1061
1240
  ...
1062
1241
 
1063
- def path_resolve(self): ...
1064
- def pop(self): ...
1242
+ def path_resolve(self):
1243
+ """ """
1244
+ ...
1245
+
1246
+ def pop(self):
1247
+ """ """
1248
+ ...
1249
+
1065
1250
  def prepend(self, draw_func):
1066
1251
  """
1067
1252
 
1068
1253
  :param draw_func:
1069
- :type draw_func:
1070
1254
  """
1071
1255
  ...
1072
1256
 
1073
- def property_overridable_library_set(self): ...
1074
- def property_unset(self): ...
1257
+ def property_overridable_library_set(self):
1258
+ """ """
1259
+ ...
1260
+
1261
+ def property_unset(self):
1262
+ """ """
1263
+ ...
1264
+
1075
1265
  def remove(self, draw_func):
1076
1266
  """
1077
1267
 
1078
1268
  :param draw_func:
1079
- :type draw_func:
1080
1269
  """
1081
1270
  ...
1082
1271
 
1083
- def type_recast(self): ...
1084
- def values(self): ...
1272
+ def type_recast(self):
1273
+ """ """
1274
+ ...
1275
+
1276
+ def values(self):
1277
+ """ """
1278
+ ...
1279
+
1280
+ class NODE_MT_category_compositor_input(bpy_types._GenericUI):
1281
+ """ """
1085
1282
 
1086
- class NODE_MT_category_compositor_input_scene(bpy_types.Menu, bpy_types._GenericUI):
1087
1283
  bl_idname: typing.Any
1284
+ """ """
1285
+
1088
1286
  bl_label: typing.Any
1287
+ """ """
1288
+
1089
1289
  bl_rna: typing.Any
1290
+ """ """
1291
+
1090
1292
  id_data: typing.Any
1293
+ """ """
1091
1294
 
1092
1295
  def append(self, draw_func):
1093
1296
  """
1094
1297
 
1095
1298
  :param draw_func:
1096
- :type draw_func:
1097
1299
  """
1098
1300
  ...
1099
1301
 
1100
- def as_pointer(self): ...
1101
- def bl_rna_get_subclass(self): ...
1102
- def bl_rna_get_subclass_py(self): ...
1103
- def draw(self, _context):
1302
+ def as_pointer(self):
1303
+ """ """
1304
+ ...
1305
+
1306
+ def bl_rna_get_subclass(self):
1307
+ """ """
1308
+ ...
1309
+
1310
+ def bl_rna_get_subclass_py(self):
1311
+ """ """
1312
+ ...
1313
+
1314
+ def draw(self, context):
1104
1315
  """
1105
1316
 
1106
- :param self:
1107
- :type self:
1108
- :param _context:
1109
- :type _context:
1317
+ :param context:
1110
1318
  """
1111
1319
  ...
1112
1320
 
@@ -1114,38 +1322,81 @@ class NODE_MT_category_compositor_input_scene(bpy_types.Menu, bpy_types._Generic
1114
1322
  """
1115
1323
 
1116
1324
  :param context:
1117
- :type context:
1118
1325
  :param layout:
1119
- :type layout:
1120
1326
  """
1121
1327
  ...
1122
1328
 
1123
1329
  def draw_preset(self, _context):
1124
1330
  """
1125
1331
 
1126
- :param self:
1127
- :type self:
1128
1332
  :param _context:
1129
- :type _context:
1130
- """
1131
- ...
1132
-
1133
- def driver_add(self): ...
1134
- def driver_remove(self): ...
1135
- def get(self): ...
1136
- def id_properties_clear(self): ...
1137
- def id_properties_ensure(self): ...
1138
- def id_properties_ui(self): ...
1139
- def is_extended(self): ...
1140
- def is_property_hidden(self): ...
1141
- def is_property_overridable_library(self): ...
1142
- def is_property_readonly(self): ...
1143
- def is_property_set(self): ...
1144
- def items(self): ...
1145
- def keyframe_delete(self): ...
1146
- def keyframe_insert(self): ...
1147
- def keys(self): ...
1148
- def path_from_id(self): ...
1333
+ """
1334
+ ...
1335
+
1336
+ def driver_add(self):
1337
+ """ """
1338
+ ...
1339
+
1340
+ def driver_remove(self):
1341
+ """ """
1342
+ ...
1343
+
1344
+ def get(self):
1345
+ """ """
1346
+ ...
1347
+
1348
+ def id_properties_clear(self):
1349
+ """ """
1350
+ ...
1351
+
1352
+ def id_properties_ensure(self):
1353
+ """ """
1354
+ ...
1355
+
1356
+ def id_properties_ui(self):
1357
+ """ """
1358
+ ...
1359
+
1360
+ def is_extended(self):
1361
+ """ """
1362
+ ...
1363
+
1364
+ def is_property_hidden(self):
1365
+ """ """
1366
+ ...
1367
+
1368
+ def is_property_overridable_library(self):
1369
+ """ """
1370
+ ...
1371
+
1372
+ def is_property_readonly(self):
1373
+ """ """
1374
+ ...
1375
+
1376
+ def is_property_set(self):
1377
+ """ """
1378
+ ...
1379
+
1380
+ def items(self):
1381
+ """ """
1382
+ ...
1383
+
1384
+ def keyframe_delete(self):
1385
+ """ """
1386
+ ...
1387
+
1388
+ def keyframe_insert(self):
1389
+ """ """
1390
+ ...
1391
+
1392
+ def keys(self):
1393
+ """ """
1394
+ ...
1395
+
1396
+ def path_from_id(self):
1397
+ """ """
1398
+ ...
1399
+
1149
1400
  def path_menu(
1150
1401
  self,
1151
1402
  searchpaths,
@@ -1159,74 +1410,93 @@ class NODE_MT_category_compositor_input_scene(bpy_types.Menu, bpy_types._Generic
1159
1410
  ):
1160
1411
  """
1161
1412
 
1162
- :param self:
1163
- :type self:
1164
1413
  :param searchpaths:
1165
- :type searchpaths:
1166
1414
  :param operator:
1167
- :type operator:
1168
1415
  :param props_default:
1169
- :type props_default:
1170
1416
  :param prop_filepath:
1171
- :type prop_filepath:
1172
1417
  :param filter_ext:
1173
- :type filter_ext:
1174
1418
  :param filter_path:
1175
- :type filter_path:
1176
1419
  :param display_name:
1177
- :type display_name:
1178
1420
  :param add_operator:
1179
- :type add_operator:
1180
1421
  """
1181
1422
  ...
1182
1423
 
1183
- def path_resolve(self): ...
1184
- def pop(self): ...
1424
+ def path_resolve(self):
1425
+ """ """
1426
+ ...
1427
+
1428
+ def pop(self):
1429
+ """ """
1430
+ ...
1431
+
1185
1432
  def prepend(self, draw_func):
1186
1433
  """
1187
1434
 
1188
1435
  :param draw_func:
1189
- :type draw_func:
1190
1436
  """
1191
1437
  ...
1192
1438
 
1193
- def property_overridable_library_set(self): ...
1194
- def property_unset(self): ...
1439
+ def property_overridable_library_set(self):
1440
+ """ """
1441
+ ...
1442
+
1443
+ def property_unset(self):
1444
+ """ """
1445
+ ...
1446
+
1195
1447
  def remove(self, draw_func):
1196
1448
  """
1197
1449
 
1198
1450
  :param draw_func:
1199
- :type draw_func:
1200
1451
  """
1201
1452
  ...
1202
1453
 
1203
- def type_recast(self): ...
1204
- def values(self): ...
1454
+ def type_recast(self):
1455
+ """ """
1456
+ ...
1457
+
1458
+ def values(self):
1459
+ """ """
1460
+ ...
1461
+
1462
+ class NODE_MT_category_compositor_input_constant(bpy_types._GenericUI):
1463
+ """ """
1205
1464
 
1206
- class NODE_MT_category_compositor_keying(bpy_types.Menu, bpy_types._GenericUI):
1207
1465
  bl_idname: typing.Any
1466
+ """ """
1467
+
1208
1468
  bl_label: typing.Any
1469
+ """ """
1470
+
1209
1471
  bl_rna: typing.Any
1472
+ """ """
1473
+
1210
1474
  id_data: typing.Any
1475
+ """ """
1211
1476
 
1212
1477
  def append(self, draw_func):
1213
1478
  """
1214
1479
 
1215
1480
  :param draw_func:
1216
- :type draw_func:
1217
1481
  """
1218
1482
  ...
1219
1483
 
1220
- def as_pointer(self): ...
1221
- def bl_rna_get_subclass(self): ...
1222
- def bl_rna_get_subclass_py(self): ...
1484
+ def as_pointer(self):
1485
+ """ """
1486
+ ...
1487
+
1488
+ def bl_rna_get_subclass(self):
1489
+ """ """
1490
+ ...
1491
+
1492
+ def bl_rna_get_subclass_py(self):
1493
+ """ """
1494
+ ...
1495
+
1223
1496
  def draw(self, _context):
1224
1497
  """
1225
1498
 
1226
- :param self:
1227
- :type self:
1228
1499
  :param _context:
1229
- :type _context:
1230
1500
  """
1231
1501
  ...
1232
1502
 
@@ -1234,38 +1504,81 @@ class NODE_MT_category_compositor_keying(bpy_types.Menu, bpy_types._GenericUI):
1234
1504
  """
1235
1505
 
1236
1506
  :param context:
1237
- :type context:
1238
1507
  :param layout:
1239
- :type layout:
1240
1508
  """
1241
1509
  ...
1242
1510
 
1243
1511
  def draw_preset(self, _context):
1244
1512
  """
1245
1513
 
1246
- :param self:
1247
- :type self:
1248
1514
  :param _context:
1249
- :type _context:
1250
- """
1251
- ...
1252
-
1253
- def driver_add(self): ...
1254
- def driver_remove(self): ...
1255
- def get(self): ...
1256
- def id_properties_clear(self): ...
1257
- def id_properties_ensure(self): ...
1258
- def id_properties_ui(self): ...
1259
- def is_extended(self): ...
1260
- def is_property_hidden(self): ...
1261
- def is_property_overridable_library(self): ...
1262
- def is_property_readonly(self): ...
1263
- def is_property_set(self): ...
1264
- def items(self): ...
1265
- def keyframe_delete(self): ...
1266
- def keyframe_insert(self): ...
1267
- def keys(self): ...
1268
- def path_from_id(self): ...
1515
+ """
1516
+ ...
1517
+
1518
+ def driver_add(self):
1519
+ """ """
1520
+ ...
1521
+
1522
+ def driver_remove(self):
1523
+ """ """
1524
+ ...
1525
+
1526
+ def get(self):
1527
+ """ """
1528
+ ...
1529
+
1530
+ def id_properties_clear(self):
1531
+ """ """
1532
+ ...
1533
+
1534
+ def id_properties_ensure(self):
1535
+ """ """
1536
+ ...
1537
+
1538
+ def id_properties_ui(self):
1539
+ """ """
1540
+ ...
1541
+
1542
+ def is_extended(self):
1543
+ """ """
1544
+ ...
1545
+
1546
+ def is_property_hidden(self):
1547
+ """ """
1548
+ ...
1549
+
1550
+ def is_property_overridable_library(self):
1551
+ """ """
1552
+ ...
1553
+
1554
+ def is_property_readonly(self):
1555
+ """ """
1556
+ ...
1557
+
1558
+ def is_property_set(self):
1559
+ """ """
1560
+ ...
1561
+
1562
+ def items(self):
1563
+ """ """
1564
+ ...
1565
+
1566
+ def keyframe_delete(self):
1567
+ """ """
1568
+ ...
1569
+
1570
+ def keyframe_insert(self):
1571
+ """ """
1572
+ ...
1573
+
1574
+ def keys(self):
1575
+ """ """
1576
+ ...
1577
+
1578
+ def path_from_id(self):
1579
+ """ """
1580
+ ...
1581
+
1269
1582
  def path_menu(
1270
1583
  self,
1271
1584
  searchpaths,
@@ -1279,74 +1592,93 @@ class NODE_MT_category_compositor_keying(bpy_types.Menu, bpy_types._GenericUI):
1279
1592
  ):
1280
1593
  """
1281
1594
 
1282
- :param self:
1283
- :type self:
1284
1595
  :param searchpaths:
1285
- :type searchpaths:
1286
1596
  :param operator:
1287
- :type operator:
1288
1597
  :param props_default:
1289
- :type props_default:
1290
1598
  :param prop_filepath:
1291
- :type prop_filepath:
1292
1599
  :param filter_ext:
1293
- :type filter_ext:
1294
1600
  :param filter_path:
1295
- :type filter_path:
1296
1601
  :param display_name:
1297
- :type display_name:
1298
1602
  :param add_operator:
1299
- :type add_operator:
1300
1603
  """
1301
1604
  ...
1302
1605
 
1303
- def path_resolve(self): ...
1304
- def pop(self): ...
1606
+ def path_resolve(self):
1607
+ """ """
1608
+ ...
1609
+
1610
+ def pop(self):
1611
+ """ """
1612
+ ...
1613
+
1305
1614
  def prepend(self, draw_func):
1306
1615
  """
1307
1616
 
1308
1617
  :param draw_func:
1309
- :type draw_func:
1310
1618
  """
1311
1619
  ...
1312
1620
 
1313
- def property_overridable_library_set(self): ...
1314
- def property_unset(self): ...
1621
+ def property_overridable_library_set(self):
1622
+ """ """
1623
+ ...
1624
+
1625
+ def property_unset(self):
1626
+ """ """
1627
+ ...
1628
+
1315
1629
  def remove(self, draw_func):
1316
1630
  """
1317
1631
 
1318
1632
  :param draw_func:
1319
- :type draw_func:
1320
1633
  """
1321
1634
  ...
1322
1635
 
1323
- def type_recast(self): ...
1324
- def values(self): ...
1636
+ def type_recast(self):
1637
+ """ """
1638
+ ...
1639
+
1640
+ def values(self):
1641
+ """ """
1642
+ ...
1643
+
1644
+ class NODE_MT_category_compositor_input_scene(bpy_types._GenericUI):
1645
+ """ """
1325
1646
 
1326
- class NODE_MT_category_compositor_mask(bpy_types.Menu, bpy_types._GenericUI):
1327
1647
  bl_idname: typing.Any
1648
+ """ """
1649
+
1328
1650
  bl_label: typing.Any
1651
+ """ """
1652
+
1329
1653
  bl_rna: typing.Any
1654
+ """ """
1655
+
1330
1656
  id_data: typing.Any
1657
+ """ """
1331
1658
 
1332
1659
  def append(self, draw_func):
1333
1660
  """
1334
1661
 
1335
1662
  :param draw_func:
1336
- :type draw_func:
1337
1663
  """
1338
1664
  ...
1339
1665
 
1340
- def as_pointer(self): ...
1341
- def bl_rna_get_subclass(self): ...
1342
- def bl_rna_get_subclass_py(self): ...
1666
+ def as_pointer(self):
1667
+ """ """
1668
+ ...
1669
+
1670
+ def bl_rna_get_subclass(self):
1671
+ """ """
1672
+ ...
1673
+
1674
+ def bl_rna_get_subclass_py(self):
1675
+ """ """
1676
+ ...
1677
+
1343
1678
  def draw(self, _context):
1344
1679
  """
1345
1680
 
1346
- :param self:
1347
- :type self:
1348
1681
  :param _context:
1349
- :type _context:
1350
1682
  """
1351
1683
  ...
1352
1684
 
@@ -1354,38 +1686,81 @@ class NODE_MT_category_compositor_mask(bpy_types.Menu, bpy_types._GenericUI):
1354
1686
  """
1355
1687
 
1356
1688
  :param context:
1357
- :type context:
1358
1689
  :param layout:
1359
- :type layout:
1360
1690
  """
1361
1691
  ...
1362
1692
 
1363
1693
  def draw_preset(self, _context):
1364
1694
  """
1365
1695
 
1366
- :param self:
1367
- :type self:
1368
1696
  :param _context:
1369
- :type _context:
1370
- """
1371
- ...
1372
-
1373
- def driver_add(self): ...
1374
- def driver_remove(self): ...
1375
- def get(self): ...
1376
- def id_properties_clear(self): ...
1377
- def id_properties_ensure(self): ...
1378
- def id_properties_ui(self): ...
1379
- def is_extended(self): ...
1380
- def is_property_hidden(self): ...
1381
- def is_property_overridable_library(self): ...
1382
- def is_property_readonly(self): ...
1383
- def is_property_set(self): ...
1384
- def items(self): ...
1385
- def keyframe_delete(self): ...
1386
- def keyframe_insert(self): ...
1387
- def keys(self): ...
1388
- def path_from_id(self): ...
1697
+ """
1698
+ ...
1699
+
1700
+ def driver_add(self):
1701
+ """ """
1702
+ ...
1703
+
1704
+ def driver_remove(self):
1705
+ """ """
1706
+ ...
1707
+
1708
+ def get(self):
1709
+ """ """
1710
+ ...
1711
+
1712
+ def id_properties_clear(self):
1713
+ """ """
1714
+ ...
1715
+
1716
+ def id_properties_ensure(self):
1717
+ """ """
1718
+ ...
1719
+
1720
+ def id_properties_ui(self):
1721
+ """ """
1722
+ ...
1723
+
1724
+ def is_extended(self):
1725
+ """ """
1726
+ ...
1727
+
1728
+ def is_property_hidden(self):
1729
+ """ """
1730
+ ...
1731
+
1732
+ def is_property_overridable_library(self):
1733
+ """ """
1734
+ ...
1735
+
1736
+ def is_property_readonly(self):
1737
+ """ """
1738
+ ...
1739
+
1740
+ def is_property_set(self):
1741
+ """ """
1742
+ ...
1743
+
1744
+ def items(self):
1745
+ """ """
1746
+ ...
1747
+
1748
+ def keyframe_delete(self):
1749
+ """ """
1750
+ ...
1751
+
1752
+ def keyframe_insert(self):
1753
+ """ """
1754
+ ...
1755
+
1756
+ def keys(self):
1757
+ """ """
1758
+ ...
1759
+
1760
+ def path_from_id(self):
1761
+ """ """
1762
+ ...
1763
+
1389
1764
  def path_menu(
1390
1765
  self,
1391
1766
  searchpaths,
@@ -1399,74 +1774,457 @@ class NODE_MT_category_compositor_mask(bpy_types.Menu, bpy_types._GenericUI):
1399
1774
  ):
1400
1775
  """
1401
1776
 
1402
- :param self:
1403
- :type self:
1404
1777
  :param searchpaths:
1405
- :type searchpaths:
1406
1778
  :param operator:
1407
- :type operator:
1408
1779
  :param props_default:
1409
- :type props_default:
1410
1780
  :param prop_filepath:
1411
- :type prop_filepath:
1412
1781
  :param filter_ext:
1413
- :type filter_ext:
1414
1782
  :param filter_path:
1415
- :type filter_path:
1416
1783
  :param display_name:
1417
- :type display_name:
1418
1784
  :param add_operator:
1419
- :type add_operator:
1420
1785
  """
1421
1786
  ...
1422
1787
 
1423
- def path_resolve(self): ...
1424
- def pop(self): ...
1788
+ def path_resolve(self):
1789
+ """ """
1790
+ ...
1791
+
1792
+ def pop(self):
1793
+ """ """
1794
+ ...
1795
+
1425
1796
  def prepend(self, draw_func):
1426
1797
  """
1427
1798
 
1428
1799
  :param draw_func:
1429
- :type draw_func:
1430
1800
  """
1431
1801
  ...
1432
1802
 
1433
- def property_overridable_library_set(self): ...
1434
- def property_unset(self): ...
1803
+ def property_overridable_library_set(self):
1804
+ """ """
1805
+ ...
1806
+
1807
+ def property_unset(self):
1808
+ """ """
1809
+ ...
1810
+
1435
1811
  def remove(self, draw_func):
1436
1812
  """
1437
1813
 
1438
1814
  :param draw_func:
1439
- :type draw_func:
1440
1815
  """
1441
1816
  ...
1442
1817
 
1443
- def type_recast(self): ...
1444
- def values(self): ...
1818
+ def type_recast(self):
1819
+ """ """
1820
+ ...
1821
+
1822
+ def values(self):
1823
+ """ """
1824
+ ...
1825
+
1826
+ class NODE_MT_category_compositor_keying(bpy_types._GenericUI):
1827
+ """ """
1445
1828
 
1446
- class NODE_MT_category_compositor_output(bpy_types.Menu, bpy_types._GenericUI):
1447
1829
  bl_idname: typing.Any
1830
+ """ """
1831
+
1448
1832
  bl_label: typing.Any
1833
+ """ """
1834
+
1449
1835
  bl_rna: typing.Any
1836
+ """ """
1837
+
1450
1838
  id_data: typing.Any
1839
+ """ """
1451
1840
 
1452
1841
  def append(self, draw_func):
1453
1842
  """
1454
1843
 
1455
1844
  :param draw_func:
1456
- :type draw_func:
1457
1845
  """
1458
1846
  ...
1459
1847
 
1460
- def as_pointer(self): ...
1461
- def bl_rna_get_subclass(self): ...
1462
- def bl_rna_get_subclass_py(self): ...
1848
+ def as_pointer(self):
1849
+ """ """
1850
+ ...
1851
+
1852
+ def bl_rna_get_subclass(self):
1853
+ """ """
1854
+ ...
1855
+
1856
+ def bl_rna_get_subclass_py(self):
1857
+ """ """
1858
+ ...
1859
+
1860
+ def draw(self, _context):
1861
+ """
1862
+
1863
+ :param _context:
1864
+ """
1865
+ ...
1866
+
1867
+ def draw_collapsible(self, context, layout):
1868
+ """
1869
+
1870
+ :param context:
1871
+ :param layout:
1872
+ """
1873
+ ...
1874
+
1875
+ def draw_preset(self, _context):
1876
+ """
1877
+
1878
+ :param _context:
1879
+ """
1880
+ ...
1881
+
1882
+ def driver_add(self):
1883
+ """ """
1884
+ ...
1885
+
1886
+ def driver_remove(self):
1887
+ """ """
1888
+ ...
1889
+
1890
+ def get(self):
1891
+ """ """
1892
+ ...
1893
+
1894
+ def id_properties_clear(self):
1895
+ """ """
1896
+ ...
1897
+
1898
+ def id_properties_ensure(self):
1899
+ """ """
1900
+ ...
1901
+
1902
+ def id_properties_ui(self):
1903
+ """ """
1904
+ ...
1905
+
1906
+ def is_extended(self):
1907
+ """ """
1908
+ ...
1909
+
1910
+ def is_property_hidden(self):
1911
+ """ """
1912
+ ...
1913
+
1914
+ def is_property_overridable_library(self):
1915
+ """ """
1916
+ ...
1917
+
1918
+ def is_property_readonly(self):
1919
+ """ """
1920
+ ...
1921
+
1922
+ def is_property_set(self):
1923
+ """ """
1924
+ ...
1925
+
1926
+ def items(self):
1927
+ """ """
1928
+ ...
1929
+
1930
+ def keyframe_delete(self):
1931
+ """ """
1932
+ ...
1933
+
1934
+ def keyframe_insert(self):
1935
+ """ """
1936
+ ...
1937
+
1938
+ def keys(self):
1939
+ """ """
1940
+ ...
1941
+
1942
+ def path_from_id(self):
1943
+ """ """
1944
+ ...
1945
+
1946
+ def path_menu(
1947
+ self,
1948
+ searchpaths,
1949
+ operator,
1950
+ props_default,
1951
+ prop_filepath,
1952
+ filter_ext,
1953
+ filter_path,
1954
+ display_name,
1955
+ add_operator,
1956
+ ):
1957
+ """
1958
+
1959
+ :param searchpaths:
1960
+ :param operator:
1961
+ :param props_default:
1962
+ :param prop_filepath:
1963
+ :param filter_ext:
1964
+ :param filter_path:
1965
+ :param display_name:
1966
+ :param add_operator:
1967
+ """
1968
+ ...
1969
+
1970
+ def path_resolve(self):
1971
+ """ """
1972
+ ...
1973
+
1974
+ def pop(self):
1975
+ """ """
1976
+ ...
1977
+
1978
+ def prepend(self, draw_func):
1979
+ """
1980
+
1981
+ :param draw_func:
1982
+ """
1983
+ ...
1984
+
1985
+ def property_overridable_library_set(self):
1986
+ """ """
1987
+ ...
1988
+
1989
+ def property_unset(self):
1990
+ """ """
1991
+ ...
1992
+
1993
+ def remove(self, draw_func):
1994
+ """
1995
+
1996
+ :param draw_func:
1997
+ """
1998
+ ...
1999
+
2000
+ def type_recast(self):
2001
+ """ """
2002
+ ...
2003
+
2004
+ def values(self):
2005
+ """ """
2006
+ ...
2007
+
2008
+ class NODE_MT_category_compositor_mask(bpy_types._GenericUI):
2009
+ """ """
2010
+
2011
+ bl_idname: typing.Any
2012
+ """ """
2013
+
2014
+ bl_label: typing.Any
2015
+ """ """
2016
+
2017
+ bl_rna: typing.Any
2018
+ """ """
2019
+
2020
+ id_data: typing.Any
2021
+ """ """
2022
+
2023
+ def append(self, draw_func):
2024
+ """
2025
+
2026
+ :param draw_func:
2027
+ """
2028
+ ...
2029
+
2030
+ def as_pointer(self):
2031
+ """ """
2032
+ ...
2033
+
2034
+ def bl_rna_get_subclass(self):
2035
+ """ """
2036
+ ...
2037
+
2038
+ def bl_rna_get_subclass_py(self):
2039
+ """ """
2040
+ ...
2041
+
2042
+ def draw(self, _context):
2043
+ """
2044
+
2045
+ :param _context:
2046
+ """
2047
+ ...
2048
+
2049
+ def draw_collapsible(self, context, layout):
2050
+ """
2051
+
2052
+ :param context:
2053
+ :param layout:
2054
+ """
2055
+ ...
2056
+
2057
+ def draw_preset(self, _context):
2058
+ """
2059
+
2060
+ :param _context:
2061
+ """
2062
+ ...
2063
+
2064
+ def driver_add(self):
2065
+ """ """
2066
+ ...
2067
+
2068
+ def driver_remove(self):
2069
+ """ """
2070
+ ...
2071
+
2072
+ def get(self):
2073
+ """ """
2074
+ ...
2075
+
2076
+ def id_properties_clear(self):
2077
+ """ """
2078
+ ...
2079
+
2080
+ def id_properties_ensure(self):
2081
+ """ """
2082
+ ...
2083
+
2084
+ def id_properties_ui(self):
2085
+ """ """
2086
+ ...
2087
+
2088
+ def is_extended(self):
2089
+ """ """
2090
+ ...
2091
+
2092
+ def is_property_hidden(self):
2093
+ """ """
2094
+ ...
2095
+
2096
+ def is_property_overridable_library(self):
2097
+ """ """
2098
+ ...
2099
+
2100
+ def is_property_readonly(self):
2101
+ """ """
2102
+ ...
2103
+
2104
+ def is_property_set(self):
2105
+ """ """
2106
+ ...
2107
+
2108
+ def items(self):
2109
+ """ """
2110
+ ...
2111
+
2112
+ def keyframe_delete(self):
2113
+ """ """
2114
+ ...
2115
+
2116
+ def keyframe_insert(self):
2117
+ """ """
2118
+ ...
2119
+
2120
+ def keys(self):
2121
+ """ """
2122
+ ...
2123
+
2124
+ def path_from_id(self):
2125
+ """ """
2126
+ ...
2127
+
2128
+ def path_menu(
2129
+ self,
2130
+ searchpaths,
2131
+ operator,
2132
+ props_default,
2133
+ prop_filepath,
2134
+ filter_ext,
2135
+ filter_path,
2136
+ display_name,
2137
+ add_operator,
2138
+ ):
2139
+ """
2140
+
2141
+ :param searchpaths:
2142
+ :param operator:
2143
+ :param props_default:
2144
+ :param prop_filepath:
2145
+ :param filter_ext:
2146
+ :param filter_path:
2147
+ :param display_name:
2148
+ :param add_operator:
2149
+ """
2150
+ ...
2151
+
2152
+ def path_resolve(self):
2153
+ """ """
2154
+ ...
2155
+
2156
+ def pop(self):
2157
+ """ """
2158
+ ...
2159
+
2160
+ def prepend(self, draw_func):
2161
+ """
2162
+
2163
+ :param draw_func:
2164
+ """
2165
+ ...
2166
+
2167
+ def property_overridable_library_set(self):
2168
+ """ """
2169
+ ...
2170
+
2171
+ def property_unset(self):
2172
+ """ """
2173
+ ...
2174
+
2175
+ def remove(self, draw_func):
2176
+ """
2177
+
2178
+ :param draw_func:
2179
+ """
2180
+ ...
2181
+
2182
+ def type_recast(self):
2183
+ """ """
2184
+ ...
2185
+
2186
+ def values(self):
2187
+ """ """
2188
+ ...
2189
+
2190
+ class NODE_MT_category_compositor_output(bpy_types._GenericUI):
2191
+ """ """
2192
+
2193
+ bl_idname: typing.Any
2194
+ """ """
2195
+
2196
+ bl_label: typing.Any
2197
+ """ """
2198
+
2199
+ bl_rna: typing.Any
2200
+ """ """
2201
+
2202
+ id_data: typing.Any
2203
+ """ """
2204
+
2205
+ def append(self, draw_func):
2206
+ """
2207
+
2208
+ :param draw_func:
2209
+ """
2210
+ ...
2211
+
2212
+ def as_pointer(self):
2213
+ """ """
2214
+ ...
2215
+
2216
+ def bl_rna_get_subclass(self):
2217
+ """ """
2218
+ ...
2219
+
2220
+ def bl_rna_get_subclass_py(self):
2221
+ """ """
2222
+ ...
2223
+
1463
2224
  def draw(self, context):
1464
2225
  """
1465
2226
 
1466
- :param self:
1467
- :type self:
1468
2227
  :param context:
1469
- :type context:
1470
2228
  """
1471
2229
  ...
1472
2230
 
@@ -1474,38 +2232,81 @@ class NODE_MT_category_compositor_output(bpy_types.Menu, bpy_types._GenericUI):
1474
2232
  """
1475
2233
 
1476
2234
  :param context:
1477
- :type context:
1478
2235
  :param layout:
1479
- :type layout:
1480
2236
  """
1481
2237
  ...
1482
2238
 
1483
2239
  def draw_preset(self, _context):
1484
2240
  """
1485
2241
 
1486
- :param self:
1487
- :type self:
1488
2242
  :param _context:
1489
- :type _context:
1490
- """
1491
- ...
1492
-
1493
- def driver_add(self): ...
1494
- def driver_remove(self): ...
1495
- def get(self): ...
1496
- def id_properties_clear(self): ...
1497
- def id_properties_ensure(self): ...
1498
- def id_properties_ui(self): ...
1499
- def is_extended(self): ...
1500
- def is_property_hidden(self): ...
1501
- def is_property_overridable_library(self): ...
1502
- def is_property_readonly(self): ...
1503
- def is_property_set(self): ...
1504
- def items(self): ...
1505
- def keyframe_delete(self): ...
1506
- def keyframe_insert(self): ...
1507
- def keys(self): ...
1508
- def path_from_id(self): ...
2243
+ """
2244
+ ...
2245
+
2246
+ def driver_add(self):
2247
+ """ """
2248
+ ...
2249
+
2250
+ def driver_remove(self):
2251
+ """ """
2252
+ ...
2253
+
2254
+ def get(self):
2255
+ """ """
2256
+ ...
2257
+
2258
+ def id_properties_clear(self):
2259
+ """ """
2260
+ ...
2261
+
2262
+ def id_properties_ensure(self):
2263
+ """ """
2264
+ ...
2265
+
2266
+ def id_properties_ui(self):
2267
+ """ """
2268
+ ...
2269
+
2270
+ def is_extended(self):
2271
+ """ """
2272
+ ...
2273
+
2274
+ def is_property_hidden(self):
2275
+ """ """
2276
+ ...
2277
+
2278
+ def is_property_overridable_library(self):
2279
+ """ """
2280
+ ...
2281
+
2282
+ def is_property_readonly(self):
2283
+ """ """
2284
+ ...
2285
+
2286
+ def is_property_set(self):
2287
+ """ """
2288
+ ...
2289
+
2290
+ def items(self):
2291
+ """ """
2292
+ ...
2293
+
2294
+ def keyframe_delete(self):
2295
+ """ """
2296
+ ...
2297
+
2298
+ def keyframe_insert(self):
2299
+ """ """
2300
+ ...
2301
+
2302
+ def keys(self):
2303
+ """ """
2304
+ ...
2305
+
2306
+ def path_from_id(self):
2307
+ """ """
2308
+ ...
2309
+
1509
2310
  def path_menu(
1510
2311
  self,
1511
2312
  searchpaths,
@@ -1519,114 +2320,178 @@ class NODE_MT_category_compositor_output(bpy_types.Menu, bpy_types._GenericUI):
1519
2320
  ):
1520
2321
  """
1521
2322
 
1522
- :param self:
1523
- :type self:
1524
2323
  :param searchpaths:
1525
- :type searchpaths:
1526
2324
  :param operator:
1527
- :type operator:
1528
2325
  :param props_default:
1529
- :type props_default:
1530
2326
  :param prop_filepath:
1531
- :type prop_filepath:
1532
2327
  :param filter_ext:
1533
- :type filter_ext:
1534
2328
  :param filter_path:
1535
- :type filter_path:
1536
2329
  :param display_name:
1537
- :type display_name:
1538
2330
  :param add_operator:
1539
- :type add_operator:
1540
2331
  """
1541
2332
  ...
1542
2333
 
1543
- def path_resolve(self): ...
1544
- def pop(self): ...
2334
+ def path_resolve(self):
2335
+ """ """
2336
+ ...
2337
+
2338
+ def pop(self):
2339
+ """ """
2340
+ ...
2341
+
1545
2342
  def prepend(self, draw_func):
1546
2343
  """
1547
2344
 
1548
2345
  :param draw_func:
1549
- :type draw_func:
1550
2346
  """
1551
2347
  ...
1552
2348
 
1553
- def property_overridable_library_set(self): ...
1554
- def property_unset(self): ...
2349
+ def property_overridable_library_set(self):
2350
+ """ """
2351
+ ...
2352
+
2353
+ def property_unset(self):
2354
+ """ """
2355
+ ...
2356
+
1555
2357
  def remove(self, draw_func):
1556
2358
  """
1557
2359
 
1558
2360
  :param draw_func:
1559
- :type draw_func:
1560
2361
  """
1561
2362
  ...
1562
2363
 
1563
- def type_recast(self): ...
1564
- def values(self): ...
2364
+ def type_recast(self):
2365
+ """ """
2366
+ ...
2367
+
2368
+ def values(self):
2369
+ """ """
2370
+ ...
2371
+
2372
+ class NODE_MT_category_compositor_tracking(bpy_types._GenericUI):
2373
+ """ """
1565
2374
 
1566
- class NODE_MT_category_compositor_tracking(bpy_types.Menu, bpy_types._GenericUI):
1567
2375
  bl_idname: typing.Any
2376
+ """ """
2377
+
1568
2378
  bl_label: typing.Any
2379
+ """ """
2380
+
1569
2381
  bl_rna: typing.Any
2382
+ """ """
2383
+
1570
2384
  bl_translation_context: typing.Any
2385
+ """ """
2386
+
1571
2387
  id_data: typing.Any
2388
+ """ """
2389
+
2390
+ def append(self, draw_func):
2391
+ """
2392
+
2393
+ :param draw_func:
2394
+ """
2395
+ ...
2396
+
2397
+ def as_pointer(self):
2398
+ """ """
2399
+ ...
2400
+
2401
+ def bl_rna_get_subclass(self):
2402
+ """ """
2403
+ ...
2404
+
2405
+ def bl_rna_get_subclass_py(self):
2406
+ """ """
2407
+ ...
2408
+
2409
+ def draw(self, _context):
2410
+ """
2411
+
2412
+ :param _context:
2413
+ """
2414
+ ...
2415
+
2416
+ def draw_collapsible(self, context, layout):
2417
+ """
2418
+
2419
+ :param context:
2420
+ :param layout:
2421
+ """
2422
+ ...
2423
+
2424
+ def draw_preset(self, _context):
2425
+ """
2426
+
2427
+ :param _context:
2428
+ """
2429
+ ...
2430
+
2431
+ def driver_add(self):
2432
+ """ """
2433
+ ...
2434
+
2435
+ def driver_remove(self):
2436
+ """ """
2437
+ ...
2438
+
2439
+ def get(self):
2440
+ """ """
2441
+ ...
2442
+
2443
+ def id_properties_clear(self):
2444
+ """ """
2445
+ ...
2446
+
2447
+ def id_properties_ensure(self):
2448
+ """ """
2449
+ ...
2450
+
2451
+ def id_properties_ui(self):
2452
+ """ """
2453
+ ...
2454
+
2455
+ def is_extended(self):
2456
+ """ """
2457
+ ...
2458
+
2459
+ def is_property_hidden(self):
2460
+ """ """
2461
+ ...
2462
+
2463
+ def is_property_overridable_library(self):
2464
+ """ """
2465
+ ...
1572
2466
 
1573
- def append(self, draw_func):
1574
- """
2467
+ def is_property_readonly(self):
2468
+ """ """
2469
+ ...
1575
2470
 
1576
- :param draw_func:
1577
- :type draw_func:
1578
- """
2471
+ def is_property_set(self):
2472
+ """ """
1579
2473
  ...
1580
2474
 
1581
- def as_pointer(self): ...
1582
- def bl_rna_get_subclass(self): ...
1583
- def bl_rna_get_subclass_py(self): ...
1584
- def draw(self, _context):
1585
- """
2475
+ def items(self):
2476
+ """ """
2477
+ ...
1586
2478
 
1587
- :param self:
1588
- :type self:
1589
- :param _context:
1590
- :type _context:
1591
- """
2479
+ def keyframe_delete(self):
2480
+ """ """
1592
2481
  ...
1593
2482
 
1594
- def draw_collapsible(self, context, layout):
1595
- """
2483
+ def keyframe_insert(self):
2484
+ """ """
2485
+ ...
1596
2486
 
1597
- :param context:
1598
- :type context:
1599
- :param layout:
1600
- :type layout:
1601
- """
2487
+ def keys(self):
2488
+ """ """
1602
2489
  ...
1603
2490
 
1604
- def draw_preset(self, _context):
1605
- """
2491
+ def path_from_id(self):
2492
+ """ """
2493
+ ...
1606
2494
 
1607
- :param self:
1608
- :type self:
1609
- :param _context:
1610
- :type _context:
1611
- """
1612
- ...
1613
-
1614
- def driver_add(self): ...
1615
- def driver_remove(self): ...
1616
- def get(self): ...
1617
- def id_properties_clear(self): ...
1618
- def id_properties_ensure(self): ...
1619
- def id_properties_ui(self): ...
1620
- def is_extended(self): ...
1621
- def is_property_hidden(self): ...
1622
- def is_property_overridable_library(self): ...
1623
- def is_property_readonly(self): ...
1624
- def is_property_set(self): ...
1625
- def items(self): ...
1626
- def keyframe_delete(self): ...
1627
- def keyframe_insert(self): ...
1628
- def keys(self): ...
1629
- def path_from_id(self): ...
1630
2495
  def path_menu(
1631
2496
  self,
1632
2497
  searchpaths,
@@ -1640,74 +2505,93 @@ class NODE_MT_category_compositor_tracking(bpy_types.Menu, bpy_types._GenericUI)
1640
2505
  ):
1641
2506
  """
1642
2507
 
1643
- :param self:
1644
- :type self:
1645
2508
  :param searchpaths:
1646
- :type searchpaths:
1647
2509
  :param operator:
1648
- :type operator:
1649
2510
  :param props_default:
1650
- :type props_default:
1651
2511
  :param prop_filepath:
1652
- :type prop_filepath:
1653
2512
  :param filter_ext:
1654
- :type filter_ext:
1655
2513
  :param filter_path:
1656
- :type filter_path:
1657
2514
  :param display_name:
1658
- :type display_name:
1659
2515
  :param add_operator:
1660
- :type add_operator:
1661
2516
  """
1662
2517
  ...
1663
2518
 
1664
- def path_resolve(self): ...
1665
- def pop(self): ...
2519
+ def path_resolve(self):
2520
+ """ """
2521
+ ...
2522
+
2523
+ def pop(self):
2524
+ """ """
2525
+ ...
2526
+
1666
2527
  def prepend(self, draw_func):
1667
2528
  """
1668
2529
 
1669
2530
  :param draw_func:
1670
- :type draw_func:
1671
2531
  """
1672
2532
  ...
1673
2533
 
1674
- def property_overridable_library_set(self): ...
1675
- def property_unset(self): ...
2534
+ def property_overridable_library_set(self):
2535
+ """ """
2536
+ ...
2537
+
2538
+ def property_unset(self):
2539
+ """ """
2540
+ ...
2541
+
1676
2542
  def remove(self, draw_func):
1677
2543
  """
1678
2544
 
1679
2545
  :param draw_func:
1680
- :type draw_func:
1681
2546
  """
1682
2547
  ...
1683
2548
 
1684
- def type_recast(self): ...
1685
- def values(self): ...
2549
+ def type_recast(self):
2550
+ """ """
2551
+ ...
2552
+
2553
+ def values(self):
2554
+ """ """
2555
+ ...
2556
+
2557
+ class NODE_MT_category_compositor_transform(bpy_types._GenericUI):
2558
+ """ """
1686
2559
 
1687
- class NODE_MT_category_compositor_transform(bpy_types.Menu, bpy_types._GenericUI):
1688
2560
  bl_idname: typing.Any
2561
+ """ """
2562
+
1689
2563
  bl_label: typing.Any
2564
+ """ """
2565
+
1690
2566
  bl_rna: typing.Any
2567
+ """ """
2568
+
1691
2569
  id_data: typing.Any
2570
+ """ """
1692
2571
 
1693
2572
  def append(self, draw_func):
1694
2573
  """
1695
2574
 
1696
2575
  :param draw_func:
1697
- :type draw_func:
1698
2576
  """
1699
2577
  ...
1700
2578
 
1701
- def as_pointer(self): ...
1702
- def bl_rna_get_subclass(self): ...
1703
- def bl_rna_get_subclass_py(self): ...
2579
+ def as_pointer(self):
2580
+ """ """
2581
+ ...
2582
+
2583
+ def bl_rna_get_subclass(self):
2584
+ """ """
2585
+ ...
2586
+
2587
+ def bl_rna_get_subclass_py(self):
2588
+ """ """
2589
+ ...
2590
+
1704
2591
  def draw(self, _context):
1705
2592
  """
1706
2593
 
1707
- :param self:
1708
- :type self:
1709
2594
  :param _context:
1710
- :type _context:
1711
2595
  """
1712
2596
  ...
1713
2597
 
@@ -1715,38 +2599,81 @@ class NODE_MT_category_compositor_transform(bpy_types.Menu, bpy_types._GenericUI
1715
2599
  """
1716
2600
 
1717
2601
  :param context:
1718
- :type context:
1719
2602
  :param layout:
1720
- :type layout:
1721
2603
  """
1722
2604
  ...
1723
2605
 
1724
2606
  def draw_preset(self, _context):
1725
2607
  """
1726
2608
 
1727
- :param self:
1728
- :type self:
1729
2609
  :param _context:
1730
- :type _context:
1731
- """
1732
- ...
1733
-
1734
- def driver_add(self): ...
1735
- def driver_remove(self): ...
1736
- def get(self): ...
1737
- def id_properties_clear(self): ...
1738
- def id_properties_ensure(self): ...
1739
- def id_properties_ui(self): ...
1740
- def is_extended(self): ...
1741
- def is_property_hidden(self): ...
1742
- def is_property_overridable_library(self): ...
1743
- def is_property_readonly(self): ...
1744
- def is_property_set(self): ...
1745
- def items(self): ...
1746
- def keyframe_delete(self): ...
1747
- def keyframe_insert(self): ...
1748
- def keys(self): ...
1749
- def path_from_id(self): ...
2610
+ """
2611
+ ...
2612
+
2613
+ def driver_add(self):
2614
+ """ """
2615
+ ...
2616
+
2617
+ def driver_remove(self):
2618
+ """ """
2619
+ ...
2620
+
2621
+ def get(self):
2622
+ """ """
2623
+ ...
2624
+
2625
+ def id_properties_clear(self):
2626
+ """ """
2627
+ ...
2628
+
2629
+ def id_properties_ensure(self):
2630
+ """ """
2631
+ ...
2632
+
2633
+ def id_properties_ui(self):
2634
+ """ """
2635
+ ...
2636
+
2637
+ def is_extended(self):
2638
+ """ """
2639
+ ...
2640
+
2641
+ def is_property_hidden(self):
2642
+ """ """
2643
+ ...
2644
+
2645
+ def is_property_overridable_library(self):
2646
+ """ """
2647
+ ...
2648
+
2649
+ def is_property_readonly(self):
2650
+ """ """
2651
+ ...
2652
+
2653
+ def is_property_set(self):
2654
+ """ """
2655
+ ...
2656
+
2657
+ def items(self):
2658
+ """ """
2659
+ ...
2660
+
2661
+ def keyframe_delete(self):
2662
+ """ """
2663
+ ...
2664
+
2665
+ def keyframe_insert(self):
2666
+ """ """
2667
+ ...
2668
+
2669
+ def keys(self):
2670
+ """ """
2671
+ ...
2672
+
2673
+ def path_from_id(self):
2674
+ """ """
2675
+ ...
2676
+
1750
2677
  def path_menu(
1751
2678
  self,
1752
2679
  searchpaths,
@@ -1760,74 +2687,93 @@ class NODE_MT_category_compositor_transform(bpy_types.Menu, bpy_types._GenericUI
1760
2687
  ):
1761
2688
  """
1762
2689
 
1763
- :param self:
1764
- :type self:
1765
2690
  :param searchpaths:
1766
- :type searchpaths:
1767
2691
  :param operator:
1768
- :type operator:
1769
2692
  :param props_default:
1770
- :type props_default:
1771
2693
  :param prop_filepath:
1772
- :type prop_filepath:
1773
2694
  :param filter_ext:
1774
- :type filter_ext:
1775
2695
  :param filter_path:
1776
- :type filter_path:
1777
2696
  :param display_name:
1778
- :type display_name:
1779
2697
  :param add_operator:
1780
- :type add_operator:
1781
2698
  """
1782
2699
  ...
1783
2700
 
1784
- def path_resolve(self): ...
1785
- def pop(self): ...
2701
+ def path_resolve(self):
2702
+ """ """
2703
+ ...
2704
+
2705
+ def pop(self):
2706
+ """ """
2707
+ ...
2708
+
1786
2709
  def prepend(self, draw_func):
1787
2710
  """
1788
2711
 
1789
2712
  :param draw_func:
1790
- :type draw_func:
1791
2713
  """
1792
2714
  ...
1793
2715
 
1794
- def property_overridable_library_set(self): ...
1795
- def property_unset(self): ...
2716
+ def property_overridable_library_set(self):
2717
+ """ """
2718
+ ...
2719
+
2720
+ def property_unset(self):
2721
+ """ """
2722
+ ...
2723
+
1796
2724
  def remove(self, draw_func):
1797
2725
  """
1798
2726
 
1799
2727
  :param draw_func:
1800
- :type draw_func:
1801
2728
  """
1802
2729
  ...
1803
2730
 
1804
- def type_recast(self): ...
1805
- def values(self): ...
2731
+ def type_recast(self):
2732
+ """ """
2733
+ ...
2734
+
2735
+ def values(self):
2736
+ """ """
2737
+ ...
2738
+
2739
+ class NODE_MT_category_compositor_utilities(bpy_types._GenericUI):
2740
+ """ """
1806
2741
 
1807
- class NODE_MT_category_compositor_utilities(bpy_types.Menu, bpy_types._GenericUI):
1808
2742
  bl_idname: typing.Any
2743
+ """ """
2744
+
1809
2745
  bl_label: typing.Any
2746
+ """ """
2747
+
1810
2748
  bl_rna: typing.Any
2749
+ """ """
2750
+
1811
2751
  id_data: typing.Any
2752
+ """ """
1812
2753
 
1813
2754
  def append(self, draw_func):
1814
2755
  """
1815
2756
 
1816
2757
  :param draw_func:
1817
- :type draw_func:
1818
2758
  """
1819
2759
  ...
1820
2760
 
1821
- def as_pointer(self): ...
1822
- def bl_rna_get_subclass(self): ...
1823
- def bl_rna_get_subclass_py(self): ...
2761
+ def as_pointer(self):
2762
+ """ """
2763
+ ...
2764
+
2765
+ def bl_rna_get_subclass(self):
2766
+ """ """
2767
+ ...
2768
+
2769
+ def bl_rna_get_subclass_py(self):
2770
+ """ """
2771
+ ...
2772
+
1824
2773
  def draw(self, _context):
1825
2774
  """
1826
2775
 
1827
- :param self:
1828
- :type self:
1829
2776
  :param _context:
1830
- :type _context:
1831
2777
  """
1832
2778
  ...
1833
2779
 
@@ -1835,38 +2781,81 @@ class NODE_MT_category_compositor_utilities(bpy_types.Menu, bpy_types._GenericUI
1835
2781
  """
1836
2782
 
1837
2783
  :param context:
1838
- :type context:
1839
2784
  :param layout:
1840
- :type layout:
1841
2785
  """
1842
2786
  ...
1843
2787
 
1844
2788
  def draw_preset(self, _context):
1845
2789
  """
1846
2790
 
1847
- :param self:
1848
- :type self:
1849
2791
  :param _context:
1850
- :type _context:
1851
- """
1852
- ...
1853
-
1854
- def driver_add(self): ...
1855
- def driver_remove(self): ...
1856
- def get(self): ...
1857
- def id_properties_clear(self): ...
1858
- def id_properties_ensure(self): ...
1859
- def id_properties_ui(self): ...
1860
- def is_extended(self): ...
1861
- def is_property_hidden(self): ...
1862
- def is_property_overridable_library(self): ...
1863
- def is_property_readonly(self): ...
1864
- def is_property_set(self): ...
1865
- def items(self): ...
1866
- def keyframe_delete(self): ...
1867
- def keyframe_insert(self): ...
1868
- def keys(self): ...
1869
- def path_from_id(self): ...
2792
+ """
2793
+ ...
2794
+
2795
+ def driver_add(self):
2796
+ """ """
2797
+ ...
2798
+
2799
+ def driver_remove(self):
2800
+ """ """
2801
+ ...
2802
+
2803
+ def get(self):
2804
+ """ """
2805
+ ...
2806
+
2807
+ def id_properties_clear(self):
2808
+ """ """
2809
+ ...
2810
+
2811
+ def id_properties_ensure(self):
2812
+ """ """
2813
+ ...
2814
+
2815
+ def id_properties_ui(self):
2816
+ """ """
2817
+ ...
2818
+
2819
+ def is_extended(self):
2820
+ """ """
2821
+ ...
2822
+
2823
+ def is_property_hidden(self):
2824
+ """ """
2825
+ ...
2826
+
2827
+ def is_property_overridable_library(self):
2828
+ """ """
2829
+ ...
2830
+
2831
+ def is_property_readonly(self):
2832
+ """ """
2833
+ ...
2834
+
2835
+ def is_property_set(self):
2836
+ """ """
2837
+ ...
2838
+
2839
+ def items(self):
2840
+ """ """
2841
+ ...
2842
+
2843
+ def keyframe_delete(self):
2844
+ """ """
2845
+ ...
2846
+
2847
+ def keyframe_insert(self):
2848
+ """ """
2849
+ ...
2850
+
2851
+ def keys(self):
2852
+ """ """
2853
+ ...
2854
+
2855
+ def path_from_id(self):
2856
+ """ """
2857
+ ...
2858
+
1870
2859
  def path_menu(
1871
2860
  self,
1872
2861
  searchpaths,
@@ -1880,74 +2869,93 @@ class NODE_MT_category_compositor_utilities(bpy_types.Menu, bpy_types._GenericUI
1880
2869
  ):
1881
2870
  """
1882
2871
 
1883
- :param self:
1884
- :type self:
1885
2872
  :param searchpaths:
1886
- :type searchpaths:
1887
2873
  :param operator:
1888
- :type operator:
1889
2874
  :param props_default:
1890
- :type props_default:
1891
2875
  :param prop_filepath:
1892
- :type prop_filepath:
1893
2876
  :param filter_ext:
1894
- :type filter_ext:
1895
2877
  :param filter_path:
1896
- :type filter_path:
1897
2878
  :param display_name:
1898
- :type display_name:
1899
2879
  :param add_operator:
1900
- :type add_operator:
1901
2880
  """
1902
2881
  ...
1903
2882
 
1904
- def path_resolve(self): ...
1905
- def pop(self): ...
2883
+ def path_resolve(self):
2884
+ """ """
2885
+ ...
2886
+
2887
+ def pop(self):
2888
+ """ """
2889
+ ...
2890
+
1906
2891
  def prepend(self, draw_func):
1907
2892
  """
1908
2893
 
1909
2894
  :param draw_func:
1910
- :type draw_func:
1911
2895
  """
1912
2896
  ...
1913
2897
 
1914
- def property_overridable_library_set(self): ...
1915
- def property_unset(self): ...
2898
+ def property_overridable_library_set(self):
2899
+ """ """
2900
+ ...
2901
+
2902
+ def property_unset(self):
2903
+ """ """
2904
+ ...
2905
+
1916
2906
  def remove(self, draw_func):
1917
2907
  """
1918
2908
 
1919
2909
  :param draw_func:
1920
- :type draw_func:
1921
2910
  """
1922
2911
  ...
1923
2912
 
1924
- def type_recast(self): ...
1925
- def values(self): ...
2913
+ def type_recast(self):
2914
+ """ """
2915
+ ...
2916
+
2917
+ def values(self):
2918
+ """ """
2919
+ ...
2920
+
2921
+ class NODE_MT_category_compositor_vector(bpy_types._GenericUI):
2922
+ """ """
1926
2923
 
1927
- class NODE_MT_category_compositor_vector(bpy_types.Menu, bpy_types._GenericUI):
1928
2924
  bl_idname: typing.Any
2925
+ """ """
2926
+
1929
2927
  bl_label: typing.Any
2928
+ """ """
2929
+
1930
2930
  bl_rna: typing.Any
2931
+ """ """
2932
+
1931
2933
  id_data: typing.Any
2934
+ """ """
1932
2935
 
1933
2936
  def append(self, draw_func):
1934
2937
  """
1935
2938
 
1936
2939
  :param draw_func:
1937
- :type draw_func:
1938
2940
  """
1939
2941
  ...
1940
2942
 
1941
- def as_pointer(self): ...
1942
- def bl_rna_get_subclass(self): ...
1943
- def bl_rna_get_subclass_py(self): ...
2943
+ def as_pointer(self):
2944
+ """ """
2945
+ ...
2946
+
2947
+ def bl_rna_get_subclass(self):
2948
+ """ """
2949
+ ...
2950
+
2951
+ def bl_rna_get_subclass_py(self):
2952
+ """ """
2953
+ ...
2954
+
1944
2955
  def draw(self, _context):
1945
2956
  """
1946
2957
 
1947
- :param self:
1948
- :type self:
1949
2958
  :param _context:
1950
- :type _context:
1951
2959
  """
1952
2960
  ...
1953
2961
 
@@ -1955,38 +2963,81 @@ class NODE_MT_category_compositor_vector(bpy_types.Menu, bpy_types._GenericUI):
1955
2963
  """
1956
2964
 
1957
2965
  :param context:
1958
- :type context:
1959
2966
  :param layout:
1960
- :type layout:
1961
2967
  """
1962
2968
  ...
1963
2969
 
1964
2970
  def draw_preset(self, _context):
1965
2971
  """
1966
2972
 
1967
- :param self:
1968
- :type self:
1969
2973
  :param _context:
1970
- :type _context:
1971
- """
1972
- ...
1973
-
1974
- def driver_add(self): ...
1975
- def driver_remove(self): ...
1976
- def get(self): ...
1977
- def id_properties_clear(self): ...
1978
- def id_properties_ensure(self): ...
1979
- def id_properties_ui(self): ...
1980
- def is_extended(self): ...
1981
- def is_property_hidden(self): ...
1982
- def is_property_overridable_library(self): ...
1983
- def is_property_readonly(self): ...
1984
- def is_property_set(self): ...
1985
- def items(self): ...
1986
- def keyframe_delete(self): ...
1987
- def keyframe_insert(self): ...
1988
- def keys(self): ...
1989
- def path_from_id(self): ...
2974
+ """
2975
+ ...
2976
+
2977
+ def driver_add(self):
2978
+ """ """
2979
+ ...
2980
+
2981
+ def driver_remove(self):
2982
+ """ """
2983
+ ...
2984
+
2985
+ def get(self):
2986
+ """ """
2987
+ ...
2988
+
2989
+ def id_properties_clear(self):
2990
+ """ """
2991
+ ...
2992
+
2993
+ def id_properties_ensure(self):
2994
+ """ """
2995
+ ...
2996
+
2997
+ def id_properties_ui(self):
2998
+ """ """
2999
+ ...
3000
+
3001
+ def is_extended(self):
3002
+ """ """
3003
+ ...
3004
+
3005
+ def is_property_hidden(self):
3006
+ """ """
3007
+ ...
3008
+
3009
+ def is_property_overridable_library(self):
3010
+ """ """
3011
+ ...
3012
+
3013
+ def is_property_readonly(self):
3014
+ """ """
3015
+ ...
3016
+
3017
+ def is_property_set(self):
3018
+ """ """
3019
+ ...
3020
+
3021
+ def items(self):
3022
+ """ """
3023
+ ...
3024
+
3025
+ def keyframe_delete(self):
3026
+ """ """
3027
+ ...
3028
+
3029
+ def keyframe_insert(self):
3030
+ """ """
3031
+ ...
3032
+
3033
+ def keys(self):
3034
+ """ """
3035
+ ...
3036
+
3037
+ def path_from_id(self):
3038
+ """ """
3039
+ ...
3040
+
1990
3041
  def path_menu(
1991
3042
  self,
1992
3043
  searchpaths,
@@ -2000,74 +3051,93 @@ class NODE_MT_category_compositor_vector(bpy_types.Menu, bpy_types._GenericUI):
2000
3051
  ):
2001
3052
  """
2002
3053
 
2003
- :param self:
2004
- :type self:
2005
3054
  :param searchpaths:
2006
- :type searchpaths:
2007
3055
  :param operator:
2008
- :type operator:
2009
3056
  :param props_default:
2010
- :type props_default:
2011
3057
  :param prop_filepath:
2012
- :type prop_filepath:
2013
3058
  :param filter_ext:
2014
- :type filter_ext:
2015
3059
  :param filter_path:
2016
- :type filter_path:
2017
3060
  :param display_name:
2018
- :type display_name:
2019
3061
  :param add_operator:
2020
- :type add_operator:
2021
3062
  """
2022
3063
  ...
2023
3064
 
2024
- def path_resolve(self): ...
2025
- def pop(self): ...
3065
+ def path_resolve(self):
3066
+ """ """
3067
+ ...
3068
+
3069
+ def pop(self):
3070
+ """ """
3071
+ ...
3072
+
2026
3073
  def prepend(self, draw_func):
2027
3074
  """
2028
3075
 
2029
3076
  :param draw_func:
2030
- :type draw_func:
2031
3077
  """
2032
3078
  ...
2033
3079
 
2034
- def property_overridable_library_set(self): ...
2035
- def property_unset(self): ...
3080
+ def property_overridable_library_set(self):
3081
+ """ """
3082
+ ...
3083
+
3084
+ def property_unset(self):
3085
+ """ """
3086
+ ...
3087
+
2036
3088
  def remove(self, draw_func):
2037
3089
  """
2038
3090
 
2039
3091
  :param draw_func:
2040
- :type draw_func:
2041
3092
  """
2042
3093
  ...
2043
3094
 
2044
- def type_recast(self): ...
2045
- def values(self): ...
3095
+ def type_recast(self):
3096
+ """ """
3097
+ ...
3098
+
3099
+ def values(self):
3100
+ """ """
3101
+ ...
3102
+
3103
+ class NODE_MT_compositor_node_add_all(bpy_types._GenericUI):
3104
+ """ """
2046
3105
 
2047
- class NODE_MT_compositor_node_add_all(bpy_types.Menu, bpy_types._GenericUI):
2048
3106
  bl_idname: typing.Any
3107
+ """ """
3108
+
2049
3109
  bl_label: typing.Any
3110
+ """ """
3111
+
2050
3112
  bl_rna: typing.Any
3113
+ """ """
3114
+
2051
3115
  id_data: typing.Any
3116
+ """ """
2052
3117
 
2053
3118
  def append(self, draw_func):
2054
3119
  """
2055
3120
 
2056
3121
  :param draw_func:
2057
- :type draw_func:
2058
3122
  """
2059
3123
  ...
2060
3124
 
2061
- def as_pointer(self): ...
2062
- def bl_rna_get_subclass(self): ...
2063
- def bl_rna_get_subclass_py(self): ...
3125
+ def as_pointer(self):
3126
+ """ """
3127
+ ...
3128
+
3129
+ def bl_rna_get_subclass(self):
3130
+ """ """
3131
+ ...
3132
+
3133
+ def bl_rna_get_subclass_py(self):
3134
+ """ """
3135
+ ...
3136
+
2064
3137
  def draw(self, context):
2065
3138
  """
2066
3139
 
2067
- :param self:
2068
- :type self:
2069
3140
  :param context:
2070
- :type context:
2071
3141
  """
2072
3142
  ...
2073
3143
 
@@ -2075,38 +3145,81 @@ class NODE_MT_compositor_node_add_all(bpy_types.Menu, bpy_types._GenericUI):
2075
3145
  """
2076
3146
 
2077
3147
  :param context:
2078
- :type context:
2079
3148
  :param layout:
2080
- :type layout:
2081
3149
  """
2082
3150
  ...
2083
3151
 
2084
3152
  def draw_preset(self, _context):
2085
3153
  """
2086
3154
 
2087
- :param self:
2088
- :type self:
2089
3155
  :param _context:
2090
- :type _context:
2091
- """
2092
- ...
2093
-
2094
- def driver_add(self): ...
2095
- def driver_remove(self): ...
2096
- def get(self): ...
2097
- def id_properties_clear(self): ...
2098
- def id_properties_ensure(self): ...
2099
- def id_properties_ui(self): ...
2100
- def is_extended(self): ...
2101
- def is_property_hidden(self): ...
2102
- def is_property_overridable_library(self): ...
2103
- def is_property_readonly(self): ...
2104
- def is_property_set(self): ...
2105
- def items(self): ...
2106
- def keyframe_delete(self): ...
2107
- def keyframe_insert(self): ...
2108
- def keys(self): ...
2109
- def path_from_id(self): ...
3156
+ """
3157
+ ...
3158
+
3159
+ def driver_add(self):
3160
+ """ """
3161
+ ...
3162
+
3163
+ def driver_remove(self):
3164
+ """ """
3165
+ ...
3166
+
3167
+ def get(self):
3168
+ """ """
3169
+ ...
3170
+
3171
+ def id_properties_clear(self):
3172
+ """ """
3173
+ ...
3174
+
3175
+ def id_properties_ensure(self):
3176
+ """ """
3177
+ ...
3178
+
3179
+ def id_properties_ui(self):
3180
+ """ """
3181
+ ...
3182
+
3183
+ def is_extended(self):
3184
+ """ """
3185
+ ...
3186
+
3187
+ def is_property_hidden(self):
3188
+ """ """
3189
+ ...
3190
+
3191
+ def is_property_overridable_library(self):
3192
+ """ """
3193
+ ...
3194
+
3195
+ def is_property_readonly(self):
3196
+ """ """
3197
+ ...
3198
+
3199
+ def is_property_set(self):
3200
+ """ """
3201
+ ...
3202
+
3203
+ def items(self):
3204
+ """ """
3205
+ ...
3206
+
3207
+ def keyframe_delete(self):
3208
+ """ """
3209
+ ...
3210
+
3211
+ def keyframe_insert(self):
3212
+ """ """
3213
+ ...
3214
+
3215
+ def keys(self):
3216
+ """ """
3217
+ ...
3218
+
3219
+ def path_from_id(self):
3220
+ """ """
3221
+ ...
3222
+
2110
3223
  def path_menu(
2111
3224
  self,
2112
3225
  searchpaths,
@@ -2120,46 +3233,51 @@ class NODE_MT_compositor_node_add_all(bpy_types.Menu, bpy_types._GenericUI):
2120
3233
  ):
2121
3234
  """
2122
3235
 
2123
- :param self:
2124
- :type self:
2125
3236
  :param searchpaths:
2126
- :type searchpaths:
2127
3237
  :param operator:
2128
- :type operator:
2129
3238
  :param props_default:
2130
- :type props_default:
2131
3239
  :param prop_filepath:
2132
- :type prop_filepath:
2133
3240
  :param filter_ext:
2134
- :type filter_ext:
2135
3241
  :param filter_path:
2136
- :type filter_path:
2137
3242
  :param display_name:
2138
- :type display_name:
2139
3243
  :param add_operator:
2140
- :type add_operator:
2141
3244
  """
2142
3245
  ...
2143
3246
 
2144
- def path_resolve(self): ...
2145
- def pop(self): ...
3247
+ def path_resolve(self):
3248
+ """ """
3249
+ ...
3250
+
3251
+ def pop(self):
3252
+ """ """
3253
+ ...
3254
+
2146
3255
  def prepend(self, draw_func):
2147
3256
  """
2148
3257
 
2149
3258
  :param draw_func:
2150
- :type draw_func:
2151
3259
  """
2152
3260
  ...
2153
3261
 
2154
- def property_overridable_library_set(self): ...
2155
- def property_unset(self): ...
3262
+ def property_overridable_library_set(self):
3263
+ """ """
3264
+ ...
3265
+
3266
+ def property_unset(self):
3267
+ """ """
3268
+ ...
3269
+
2156
3270
  def remove(self, draw_func):
2157
3271
  """
2158
3272
 
2159
3273
  :param draw_func:
2160
- :type draw_func:
2161
3274
  """
2162
3275
  ...
2163
3276
 
2164
- def type_recast(self): ...
2165
- def values(self): ...
3277
+ def type_recast(self):
3278
+ """ """
3279
+ ...
3280
+
3281
+ def values(self):
3282
+ """ """
3283
+ ...