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