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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (293) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +36 -6
  3. aud/__init__.pyi +132 -125
  4. bgl/__init__.pyi +2545 -546
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +24 -2
  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 +53 -6
  15. bl_i18n_utils/utils/__init__.pyi +332 -44
  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 +171 -37
  27. bl_operators/anim/__init__.pyi +1065 -226
  28. bl_operators/assets/__init__.pyi +427 -92
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1342 -287
  31. bl_operators/console/__init__.pyi +647 -140
  32. bl_operators/constraint/__init__.pyi +524 -112
  33. bl_operators/file/__init__.pyi +396 -84
  34. bl_operators/freestyle/__init__.pyi +532 -113
  35. bl_operators/geometry_nodes/__init__.pyi +2412 -596
  36. bl_operators/image/__init__.pyi +380 -82
  37. bl_operators/mesh/__init__.pyi +401 -85
  38. bl_operators/node/__init__.pyi +1756 -384
  39. bl_operators/object/__init__.pyi +2022 -552
  40. bl_operators/object_align/__init__.pyi +145 -31
  41. bl_operators/object_quick_effects/__init__.pyi +555 -124
  42. bl_operators/object_randomize_transform/__init__.pyi +136 -32
  43. bl_operators/presets/__init__.pyi +3516 -708
  44. bl_operators/rigidbody/__init__.pyi +401 -85
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
  46. bl_operators/sequencer/__init__.pyi +731 -149
  47. bl_operators/spreadsheet/__init__.pyi +145 -30
  48. bl_operators/userpref/__init__.pyi +3416 -824
  49. bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
  50. bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
  51. bl_operators/uvcalc_transform/__init__.pyi +344 -73
  52. bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
  53. bl_operators/view3d/__init__.pyi +697 -146
  54. bl_operators/wm/__init__.pyi +6287 -1533
  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 +504 -106
  59. bl_ui/anim/__init__.pyi +164 -33
  60. bl_ui/asset_shelf/__init__.pyi +146 -31
  61. bl_ui/generic_ui_list/__init__.pyi +471 -99
  62. bl_ui/node_add_menu/__init__.pyi +196 -40
  63. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
  64. bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
  65. bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
  66. bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
  67. bl_ui/properties_animviz/__init__.pyi +32 -2
  68. bl_ui/properties_collection/__init__.pyi +787 -179
  69. bl_ui/properties_constraint/__init__.pyi +28635 -5523
  70. bl_ui/properties_data_armature/__init__.pyi +1905 -448
  71. bl_ui/properties_data_bone/__init__.pyi +1560 -336
  72. bl_ui/properties_data_camera/__init__.pyi +2269 -494
  73. bl_ui/properties_data_curve/__init__.pyi +2362 -534
  74. bl_ui/properties_data_curves/__init__.pyi +951 -203
  75. bl_ui/properties_data_empty/__init__.pyi +317 -69
  76. bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
  78. bl_ui/properties_data_lattice/__init__.pyi +472 -104
  79. bl_ui/properties_data_light/__init__.pyi +1570 -337
  80. bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
  81. bl_ui/properties_data_mesh/__init__.pyi +3205 -767
  82. bl_ui/properties_data_metaball/__init__.pyi +774 -170
  83. bl_ui/properties_data_modifier/__init__.pyi +1554 -328
  84. bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
  85. bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
  86. bl_ui/properties_data_speaker/__init__.pyi +782 -168
  87. bl_ui/properties_data_volume/__init__.pyi +1243 -281
  88. bl_ui/properties_freestyle/__init__.pyi +4071 -1030
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
  90. bl_ui/properties_mask_common/__init__.pyi +1256 -249
  91. bl_ui/properties_material/__init__.pyi +2351 -542
  92. bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
  93. bl_ui/properties_object/__init__.pyi +2179 -512
  94. bl_ui/properties_output/__init__.pyi +2956 -705
  95. bl_ui/properties_paint_common/__init__.pyi +947 -140
  96. bl_ui/properties_particle/__init__.pyi +8322 -1970
  97. bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
  98. bl_ui/properties_physics_common/__init__.pyi +200 -44
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
  100. bl_ui/properties_physics_field/__init__.pyi +1695 -364
  101. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
  105. bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
  106. bl_ui/properties_render/__init__.pyi +8312 -1933
  107. bl_ui/properties_scene/__init__.pyi +2211 -539
  108. bl_ui/properties_texture/__init__.pyi +4185 -1013
  109. bl_ui/properties_view_layer/__init__.pyi +2803 -664
  110. bl_ui/properties_workspace/__init__.pyi +626 -148
  111. bl_ui/properties_world/__init__.pyi +1092 -234
  112. bl_ui/space_clip/__init__.pyi +11475 -2805
  113. bl_ui/space_console/__init__.pyi +967 -202
  114. bl_ui/space_dopesheet/__init__.pyi +4260 -966
  115. bl_ui/space_filebrowser/__init__.pyi +4852 -1187
  116. bl_ui/space_graph/__init__.pyi +3251 -702
  117. bl_ui/space_image/__init__.pyi +12219 -2968
  118. bl_ui/space_info/__init__.pyi +964 -200
  119. bl_ui/space_nla/__init__.pyi +2756 -584
  120. bl_ui/space_node/__init__.pyi +5661 -1265
  121. bl_ui/space_outliner/__init__.pyi +2294 -478
  122. bl_ui/space_properties/__init__.pyi +417 -92
  123. bl_ui/space_sequencer/__init__.pyi +12436 -3009
  124. bl_ui/space_spreadsheet/__init__.pyi +184 -36
  125. bl_ui/space_statusbar/__init__.pyi +135 -30
  126. bl_ui/space_text/__init__.pyi +2556 -542
  127. bl_ui/space_time/__init__.pyi +1151 -243
  128. bl_ui/space_toolsystem_common/__init__.pyi +368 -66
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
  130. bl_ui/space_topbar/__init__.pyi +4214 -887
  131. bl_ui/space_userpref/__init__.pyi +13920 -3468
  132. bl_ui/space_view3d/__init__.pyi +43701 -10599
  133. bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
  134. bl_ui/utils/__init__.pyi +42 -4
  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 +268 -262
  143. bmesh/utils/__init__.pyi +55 -55
  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 +350 -305
  152. bpy/ops/anim/__init__.pyi +464 -426
  153. bpy/ops/armature/__init__.pyi +392 -360
  154. bpy/ops/asset/__init__.pyi +166 -129
  155. bpy/ops/boid/__init__.pyi +64 -37
  156. bpy/ops/brush/__init__.pyi +78 -72
  157. bpy/ops/buttons/__init__.pyi +136 -122
  158. bpy/ops/cachefile/__init__.pyi +128 -123
  159. bpy/ops/camera/__init__.pyi +22 -24
  160. bpy/ops/clip/__init__.pyi +844 -735
  161. bpy/ops/cloth/__init__.pyi +10 -11
  162. bpy/ops/collection/__init__.pyi +38 -38
  163. bpy/ops/console/__init__.pyi +170 -141
  164. bpy/ops/constraint/__init__.pyi +156 -159
  165. bpy/ops/curve/__init__.pyi +518 -461
  166. bpy/ops/curves/__init__.pyi +188 -159
  167. bpy/ops/cycles/__init__.pyi +20 -18
  168. bpy/ops/dpaint/__init__.pyi +40 -30
  169. bpy/ops/ed/__init__.pyi +136 -107
  170. bpy/ops/export_anim/__init__.pyi +18 -19
  171. bpy/ops/export_mesh/__init__.pyi +26 -27
  172. bpy/ops/export_scene/__init__.pyi +313 -334
  173. bpy/ops/file/__init__.pyi +394 -304
  174. bpy/ops/fluid/__init__.pyi +114 -63
  175. bpy/ops/font/__init__.pyi +272 -245
  176. bpy/ops/geometry/__init__.pyi +92 -87
  177. bpy/ops/gizmogroup/__init__.pyi +24 -21
  178. bpy/ops/gpencil/__init__.pyi +1530 -1476
  179. bpy/ops/graph/__init__.pyi +680 -659
  180. bpy/ops/grease_pencil/__init__.pyi +510 -390
  181. bpy/ops/image/__init__.pyi +650 -603
  182. bpy/ops/import_anim/__init__.pyi +26 -27
  183. bpy/ops/import_curve/__init__.pyi +6 -7
  184. bpy/ops/import_mesh/__init__.pyi +18 -21
  185. bpy/ops/import_scene/__init__.pyi +86 -95
  186. bpy/ops/info/__init__.pyi +68 -55
  187. bpy/ops/lattice/__init__.pyi +70 -63
  188. bpy/ops/marker/__init__.pyi +110 -111
  189. bpy/ops/mask/__init__.pyi +352 -308
  190. bpy/ops/material/__init__.pyi +24 -12
  191. bpy/ops/mball/__init__.pyi +72 -75
  192. bpy/ops/mesh/__init__.pyi +2052 -2088
  193. bpy/ops/nla/__init__.pyi +369 -313
  194. bpy/ops/node/__init__.pyi +944 -805
  195. bpy/ops/object/__init__.pyi +2662 -2461
  196. bpy/ops/outliner/__init__.pyi +582 -431
  197. bpy/ops/paint/__init__.pyi +605 -516
  198. bpy/ops/paintcurve/__init__.pyi +72 -60
  199. bpy/ops/palette/__init__.pyi +54 -46
  200. bpy/ops/particle/__init__.pyi +302 -245
  201. bpy/ops/pose/__init__.pyi +366 -330
  202. bpy/ops/poselib/__init__.pyi +78 -64
  203. bpy/ops/preferences/__init__.pyi +361 -341
  204. bpy/ops/ptcache/__init__.pyi +56 -38
  205. bpy/ops/render/__init__.pyi +120 -117
  206. bpy/ops/rigidbody/__init__.pyi +114 -97
  207. bpy/ops/scene/__init__.pyi +302 -240
  208. bpy/ops/screen/__init__.pyi +414 -363
  209. bpy/ops/script/__init__.pyi +20 -18
  210. bpy/ops/sculpt/__init__.pyi +414 -452
  211. bpy/ops/sculpt_curves/__init__.pyi +42 -43
  212. bpy/ops/sequencer/__init__.pyi +1094 -1053
  213. bpy/ops/sound/__init__.pyi +214 -206
  214. bpy/ops/spreadsheet/__init__.pyi +34 -28
  215. bpy/ops/surface/__init__.pyi +108 -114
  216. bpy/ops/text/__init__.pyi +432 -350
  217. bpy/ops/text_editor/__init__.pyi +10 -11
  218. bpy/ops/texture/__init__.pyi +32 -21
  219. bpy/ops/transform/__init__.pyi +801 -854
  220. bpy/ops/ui/__init__.pyi +254 -185
  221. bpy/ops/uilist/__init__.pyi +20 -23
  222. bpy/ops/uv/__init__.pyi +618 -626
  223. bpy/ops/view2d/__init__.pyi +162 -161
  224. bpy/ops/view3d/__init__.pyi +669 -658
  225. bpy/ops/wm/__init__.pyi +2433 -2415
  226. bpy/ops/workspace/__init__.pyi +54 -31
  227. bpy/ops/world/__init__.pyi +8 -4
  228. bpy/path/__init__.pyi +111 -68
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86789 -85719
  231. bpy/utils/__init__.pyi +265 -123
  232. bpy/utils/previews/__init__.pyi +103 -17
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/__init__.pyi +0 -4
  235. bpy_extras/anim_utils/__init__.pyi +11 -46
  236. bpy_extras/asset_utils/__init__.pyi +3 -12
  237. bpy_extras/id_map_utils/__init__.pyi +0 -2
  238. bpy_extras/image_utils/__init__.pyi +2 -2
  239. bpy_extras/io_utils/__init__.pyi +30 -27
  240. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  241. bpy_extras/mesh_utils/__init__.pyi +18 -18
  242. bpy_extras/node_utils/__init__.pyi +4 -3
  243. bpy_extras/object_utils/__init__.pyi +25 -26
  244. bpy_extras/view3d_utils/__init__.pyi +33 -38
  245. bpy_restrict_state/__init__.pyi +14 -1
  246. bpy_types/__init__.pyi +3873 -997
  247. console_python/__init__.pyi +41 -7
  248. console_shell/__init__.pyi +24 -5
  249. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  250. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  251. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  252. freestyle/chainingiterators/__init__.pyi +50 -52
  253. freestyle/functions/__init__.pyi +303 -207
  254. freestyle/predicates/__init__.pyi +299 -115
  255. freestyle/shaders/__init__.pyi +49 -80
  256. freestyle/types/__init__.pyi +465 -472
  257. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  258. freestyle/utils/__init__.pyi +28 -18
  259. gpu/capabilities/__init__.pyi +27 -19
  260. gpu/matrix/__init__.pyi +14 -16
  261. gpu/platform/__init__.pyi +5 -5
  262. gpu/shader/__init__.pyi +2 -5
  263. gpu/state/__init__.pyi +1 -1
  264. gpu/texture/__init__.pyi +3 -3
  265. gpu/types/__init__.pyi +54 -85
  266. gpu_extras/batch/__init__.pyi +27 -5
  267. gpu_extras/presets/__init__.pyi +52 -14
  268. graphviz_export/__init__.pyi +9 -2
  269. idprop/types/__init__.pyi +36 -12
  270. imbuf/__init__.pyi +8 -9
  271. imbuf/types/__init__.pyi +8 -15
  272. keyingsets_builtins/__init__.pyi +3149 -701
  273. keyingsets_utils/__init__.pyi +69 -14
  274. mathutils/__init__.pyi +502 -427
  275. mathutils/bvhtree/__init__.pyi +28 -32
  276. mathutils/geometry/__init__.pyi +177 -186
  277. mathutils/kdtree/__init__.pyi +16 -18
  278. mathutils/noise/__init__.pyi +47 -48
  279. nodeitems_builtins/__init__.pyi +50 -10
  280. nodeitems_utils/__init__.pyi +58 -10
  281. rna_info/__init__.pyi +230 -26
  282. rna_keymap_ui/__init__.pyi +29 -6
  283. rna_prop_ui/__init__.pyi +69 -12
  284. rna_xml/__init__.pyi +29 -6
  285. sys_info/__init__.pyi +4 -1
  286. bpy_extras/bmesh_utils/__init__.pyi +0 -6
  287. bpy_extras/extensions/__init__.pyi +0 -4
  288. bpy_extras/extensions/junction_module/__init__.pyi +0 -12
  289. bpy_extras/node_shader_utils/__init__.pyi +0 -131
  290. bpy_extras/wm_utils/__init__.pyi +0 -4
  291. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
  292. fake_bpy_module-20240224.dist-info/RECORD +0 -349
  293. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
@@ -1,148 +1,131 @@
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):
8
- bl_label: typing.Any
9
- bl_rna: typing.Any
10
- id_data: typing.Any
11
- preset_operator: typing.Any
12
- preset_subdir: typing.Any
6
+ class RENDER_MT_framerate_presets(bpy_types._GenericUI):
7
+ """ """
13
8
 
14
- def append(self, draw_func): ...
15
- def as_pointer(self): ...
16
- def bl_rna_get_subclass(self): ...
17
- def bl_rna_get_subclass_py(self): ...
18
- def draw(self, _context): ...
19
- def draw_collapsible(self, context, layout): ...
20
- def draw_preset(self, _context): ...
21
- def driver_add(self): ...
22
- def driver_remove(self): ...
23
- def get(self): ...
24
- def id_properties_clear(self): ...
25
- def id_properties_ensure(self): ...
26
- def id_properties_ui(self): ...
27
- def is_extended(self): ...
28
- def is_property_hidden(self): ...
29
- def is_property_overridable_library(self): ...
30
- def is_property_readonly(self): ...
31
- def is_property_set(self): ...
32
- def items(self): ...
33
- def keyframe_delete(self): ...
34
- def keyframe_insert(self): ...
35
- def keys(self): ...
36
- def path_from_id(self): ...
37
- def path_menu(
38
- self,
39
- searchpaths,
40
- operator,
41
- props_default,
42
- prop_filepath,
43
- filter_ext,
44
- filter_path,
45
- display_name,
46
- add_operator,
47
- ): ...
48
- def path_resolve(self): ...
49
- def pop(self): ...
50
- def prepend(self, draw_func): ...
51
- def property_overridable_library_set(self): ...
52
- def property_unset(self): ...
53
- def remove(self, draw_func): ...
54
- def type_recast(self): ...
55
- def values(self): ...
56
-
57
- class RENDER_PT_ffmpeg_presets(
58
- bl_ui.utils.PresetPanel, bpy_types.Panel, bpy_types._GenericUI
59
- ):
60
9
  bl_label: typing.Any
61
- bl_region_type: typing.Any
62
- bl_rna: typing.Any
63
- bl_space_type: typing.Any
64
- id_data: typing.Any
65
- preset_operator: typing.Any
66
- preset_subdir: typing.Any
10
+ """ """
67
11
 
68
- def append(self, draw_func): ...
69
- def as_pointer(self): ...
70
- def bl_rna_get_subclass(self): ...
71
- def bl_rna_get_subclass_py(self): ...
72
- def draw(self, context): ...
73
- def draw_menu(self, layout, text): ...
74
- def draw_panel_header(self, layout): ...
75
- def driver_add(self): ...
76
- def driver_remove(self): ...
77
- def get(self): ...
78
- def id_properties_clear(self): ...
79
- def id_properties_ensure(self): ...
80
- def id_properties_ui(self): ...
81
- def is_extended(self): ...
82
- def is_property_hidden(self): ...
83
- def is_property_overridable_library(self): ...
84
- def is_property_readonly(self): ...
85
- def is_property_set(self): ...
86
- def items(self): ...
87
- def keyframe_delete(self): ...
88
- def keyframe_insert(self): ...
89
- def keys(self): ...
90
- def path_from_id(self): ...
91
- def path_menu(
92
- self,
93
- searchpaths,
94
- operator,
95
- props_default,
96
- prop_filepath,
97
- filter_ext,
98
- filter_path,
99
- display_name,
100
- add_operator,
101
- ): ...
102
- def path_resolve(self): ...
103
- def pop(self): ...
104
- def prepend(self, draw_func): ...
105
- def property_overridable_library_set(self): ...
106
- def property_unset(self): ...
107
- def remove(self, draw_func): ...
108
- def type_recast(self): ...
109
- def values(self): ...
110
-
111
- class RENDER_PT_format_presets(
112
- bl_ui.utils.PresetPanel, bpy_types.Panel, bpy_types._GenericUI
113
- ):
114
- bl_label: typing.Any
115
- bl_region_type: typing.Any
116
12
  bl_rna: typing.Any
117
- bl_space_type: typing.Any
13
+ """ """
14
+
118
15
  id_data: typing.Any
119
- preset_add_operator: typing.Any
16
+ """ """
17
+
120
18
  preset_operator: typing.Any
19
+ """ """
20
+
121
21
  preset_subdir: typing.Any
22
+ """ """
23
+
24
+ def append(self, draw_func):
25
+ """
26
+
27
+ :param draw_func:
28
+ """
29
+ ...
30
+
31
+ def as_pointer(self):
32
+ """ """
33
+ ...
34
+
35
+ def bl_rna_get_subclass(self):
36
+ """ """
37
+ ...
38
+
39
+ def bl_rna_get_subclass_py(self):
40
+ """ """
41
+ ...
42
+
43
+ def draw(self, _context):
44
+ """
45
+
46
+ :param _context:
47
+ """
48
+ ...
49
+
50
+ def draw_collapsible(self, context, layout):
51
+ """
52
+
53
+ :param context:
54
+ :param layout:
55
+ """
56
+ ...
57
+
58
+ def draw_preset(self, _context):
59
+ """
60
+
61
+ :param _context:
62
+ """
63
+ ...
64
+
65
+ def driver_add(self):
66
+ """ """
67
+ ...
68
+
69
+ def driver_remove(self):
70
+ """ """
71
+ ...
72
+
73
+ def get(self):
74
+ """ """
75
+ ...
76
+
77
+ def id_properties_clear(self):
78
+ """ """
79
+ ...
80
+
81
+ def id_properties_ensure(self):
82
+ """ """
83
+ ...
84
+
85
+ def id_properties_ui(self):
86
+ """ """
87
+ ...
88
+
89
+ def is_extended(self):
90
+ """ """
91
+ ...
92
+
93
+ def is_property_hidden(self):
94
+ """ """
95
+ ...
96
+
97
+ def is_property_overridable_library(self):
98
+ """ """
99
+ ...
100
+
101
+ def is_property_readonly(self):
102
+ """ """
103
+ ...
104
+
105
+ def is_property_set(self):
106
+ """ """
107
+ ...
108
+
109
+ def items(self):
110
+ """ """
111
+ ...
112
+
113
+ def keyframe_delete(self):
114
+ """ """
115
+ ...
116
+
117
+ def keyframe_insert(self):
118
+ """ """
119
+ ...
120
+
121
+ def keys(self):
122
+ """ """
123
+ ...
124
+
125
+ def path_from_id(self):
126
+ """ """
127
+ ...
122
128
 
123
- def append(self, draw_func): ...
124
- def as_pointer(self): ...
125
- def bl_rna_get_subclass(self): ...
126
- def bl_rna_get_subclass_py(self): ...
127
- def draw(self, context): ...
128
- def draw_menu(self, layout, text): ...
129
- def draw_panel_header(self, layout): ...
130
- def driver_add(self): ...
131
- def driver_remove(self): ...
132
- def get(self): ...
133
- def id_properties_clear(self): ...
134
- def id_properties_ensure(self): ...
135
- def id_properties_ui(self): ...
136
- def is_extended(self): ...
137
- def is_property_hidden(self): ...
138
- def is_property_overridable_library(self): ...
139
- def is_property_readonly(self): ...
140
- def is_property_set(self): ...
141
- def items(self): ...
142
- def keyframe_delete(self): ...
143
- def keyframe_insert(self): ...
144
- def keys(self): ...
145
- def path_from_id(self): ...
146
129
  def path_menu(
147
130
  self,
148
131
  searchpaths,
@@ -153,660 +136,2928 @@ class RENDER_PT_format_presets(
153
136
  filter_path,
154
137
  display_name,
155
138
  add_operator,
156
- ): ...
157
- def path_resolve(self): ...
158
- def pop(self): ...
159
- def prepend(self, draw_func): ...
160
- def property_overridable_library_set(self): ...
161
- def property_unset(self): ...
162
- def remove(self, draw_func): ...
163
- def type_recast(self): ...
164
- def values(self): ...
165
-
166
- class RENDER_UL_renderviews(bpy_types.UIList, bpy_types._GenericUI):
167
- bl_rna: typing.Any
168
- id_data: typing.Any
139
+ ):
140
+ """
169
141
 
170
- def append(self, draw_func): ...
171
- def as_pointer(self): ...
172
- def bl_rna_get_subclass(self): ...
173
- def bl_rna_get_subclass_py(self): ...
174
- def draw_item(
175
- self, _context, layout, _data, item, icon, _active_data, _active_propname, index
176
- ): ...
177
- def driver_add(self): ...
178
- def driver_remove(self): ...
179
- def get(self): ...
180
- def id_properties_clear(self): ...
181
- def id_properties_ensure(self): ...
182
- def id_properties_ui(self): ...
183
- def is_extended(self): ...
184
- def is_property_hidden(self): ...
185
- def is_property_overridable_library(self): ...
186
- def is_property_readonly(self): ...
187
- def is_property_set(self): ...
188
- def items(self): ...
189
- def keyframe_delete(self): ...
190
- def keyframe_insert(self): ...
191
- def keys(self): ...
192
- def path_from_id(self): ...
193
- def path_resolve(self): ...
194
- def pop(self): ...
195
- def prepend(self, draw_func): ...
196
- def property_overridable_library_set(self): ...
197
- def property_unset(self): ...
198
- def remove(self, draw_func): ...
199
- def type_recast(self): ...
200
- def values(self): ...
142
+ :param searchpaths:
143
+ :param operator:
144
+ :param props_default:
145
+ :param prop_filepath:
146
+ :param filter_ext:
147
+ :param filter_path:
148
+ :param display_name:
149
+ :param add_operator:
150
+ """
151
+ ...
201
152
 
202
- class RenderOutputButtonsPanel:
203
- bl_context: typing.Any
204
- bl_region_type: typing.Any
205
- bl_space_type: typing.Any
153
+ def path_resolve(self):
154
+ """ """
155
+ ...
156
+
157
+ def pop(self):
158
+ """ """
159
+ ...
160
+
161
+ def prepend(self, draw_func):
162
+ """
163
+
164
+ :param draw_func:
165
+ """
166
+ ...
167
+
168
+ def property_overridable_library_set(self):
169
+ """ """
170
+ ...
171
+
172
+ def property_unset(self):
173
+ """ """
174
+ ...
175
+
176
+ def remove(self, draw_func):
177
+ """
178
+
179
+ :param draw_func:
180
+ """
181
+ ...
206
182
 
207
- def poll(self, context): ...
183
+ def type_recast(self):
184
+ """ """
185
+ ...
186
+
187
+ def values(self):
188
+ """ """
189
+ ...
190
+
191
+ class RENDER_PT_encoding(bpy_types._GenericUI):
192
+ """ """
208
193
 
209
- class RENDER_PT_encoding(
210
- RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
211
- ):
212
194
  COMPAT_ENGINES: typing.Any
195
+ """ """
196
+
213
197
  bl_context: typing.Any
198
+ """ """
199
+
214
200
  bl_label: typing.Any
201
+ """ """
202
+
215
203
  bl_options: typing.Any
216
- bl_parent_id: typing.Any
217
- bl_region_type: typing.Any
218
- bl_rna: typing.Any
219
- bl_space_type: typing.Any
220
- id_data: typing.Any
204
+ """ """
221
205
 
222
- def append(self, draw_func): ...
223
- def as_pointer(self): ...
224
- def bl_rna_get_subclass(self): ...
225
- def bl_rna_get_subclass_py(self): ...
226
- def draw(self, context): ...
227
- def draw_header_preset(self, _context): ...
228
- def driver_add(self): ...
229
- def driver_remove(self): ...
230
- def get(self): ...
231
- def id_properties_clear(self): ...
232
- def id_properties_ensure(self): ...
233
- def id_properties_ui(self): ...
234
- def is_extended(self): ...
235
- def is_property_hidden(self): ...
236
- def is_property_overridable_library(self): ...
237
- def is_property_readonly(self): ...
238
- def is_property_set(self): ...
239
- def items(self): ...
240
- def keyframe_delete(self): ...
241
- def keyframe_insert(self): ...
242
- def keys(self): ...
243
- def path_from_id(self): ...
244
- def path_resolve(self): ...
245
- def poll(self, context): ...
246
- def pop(self): ...
247
- def prepend(self, draw_func): ...
248
- def property_overridable_library_set(self): ...
249
- def property_unset(self): ...
250
- def remove(self, draw_func): ...
251
- def type_recast(self): ...
252
- def values(self): ...
253
-
254
- class RENDER_PT_encoding_audio(
255
- RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
256
- ):
257
- COMPAT_ENGINES: typing.Any
258
- bl_context: typing.Any
259
- bl_label: typing.Any
260
206
  bl_parent_id: typing.Any
261
- bl_region_type: typing.Any
262
- bl_rna: typing.Any
263
- bl_space_type: typing.Any
264
- id_data: typing.Any
207
+ """ """
265
208
 
266
- def append(self, draw_func): ...
267
- def as_pointer(self): ...
268
- def bl_rna_get_subclass(self): ...
269
- def bl_rna_get_subclass_py(self): ...
270
- def draw(self, context): ...
271
- def driver_add(self): ...
272
- def driver_remove(self): ...
273
- def get(self): ...
274
- def id_properties_clear(self): ...
275
- def id_properties_ensure(self): ...
276
- def id_properties_ui(self): ...
277
- def is_extended(self): ...
278
- def is_property_hidden(self): ...
279
- def is_property_overridable_library(self): ...
280
- def is_property_readonly(self): ...
281
- def is_property_set(self): ...
282
- def items(self): ...
283
- def keyframe_delete(self): ...
284
- def keyframe_insert(self): ...
285
- def keys(self): ...
286
- def path_from_id(self): ...
287
- def path_resolve(self): ...
288
- def poll(self, context): ...
289
- def pop(self): ...
290
- def prepend(self, draw_func): ...
291
- def property_overridable_library_set(self): ...
292
- def property_unset(self): ...
293
- def remove(self, draw_func): ...
294
- def type_recast(self): ...
295
- def values(self): ...
296
-
297
- class RENDER_PT_encoding_video(
298
- RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
299
- ):
300
- COMPAT_ENGINES: typing.Any
301
- bl_context: typing.Any
302
- bl_label: typing.Any
303
- bl_parent_id: typing.Any
304
209
  bl_region_type: typing.Any
305
- bl_rna: typing.Any
306
- bl_space_type: typing.Any
307
- id_data: typing.Any
210
+ """ """
308
211
 
309
- def append(self, draw_func): ...
310
- def as_pointer(self): ...
311
- def bl_rna_get_subclass(self): ...
312
- def bl_rna_get_subclass_py(self): ...
313
- def draw(self, context): ...
314
- def draw_vcodec(self, context): ...
315
- def driver_add(self): ...
316
- def driver_remove(self): ...
317
- def get(self): ...
318
- def id_properties_clear(self): ...
319
- def id_properties_ensure(self): ...
320
- def id_properties_ui(self): ...
321
- def is_extended(self): ...
322
- def is_property_hidden(self): ...
323
- def is_property_overridable_library(self): ...
324
- def is_property_readonly(self): ...
325
- def is_property_set(self): ...
326
- def items(self): ...
327
- def keyframe_delete(self): ...
328
- def keyframe_insert(self): ...
329
- def keys(self): ...
330
- def path_from_id(self): ...
331
- def path_resolve(self): ...
332
- def poll(self, context): ...
333
- def pop(self): ...
334
- def prepend(self, draw_func): ...
335
- def property_overridable_library_set(self): ...
336
- def property_unset(self): ...
337
- def remove(self, draw_func): ...
338
- def type_recast(self): ...
339
- def values(self): ...
340
-
341
- class RENDER_PT_format(RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
342
- COMPAT_ENGINES: typing.Any
343
- bl_context: typing.Any
344
- bl_label: typing.Any
345
- bl_region_type: typing.Any
346
212
  bl_rna: typing.Any
347
- bl_space_type: typing.Any
348
- id_data: typing.Any
213
+ """ """
349
214
 
350
- def append(self, draw_func): ...
351
- def as_pointer(self): ...
352
- def bl_rna_get_subclass(self): ...
353
- def bl_rna_get_subclass_py(self): ...
354
- def draw(self, context): ...
355
- def draw_framerate(self, layout, rd): ...
356
- def draw_header_preset(self, _context): ...
357
- def driver_add(self): ...
358
- def driver_remove(self): ...
359
- def get(self): ...
360
- def id_properties_clear(self): ...
361
- def id_properties_ensure(self): ...
362
- def id_properties_ui(self): ...
363
- def is_extended(self): ...
364
- def is_property_hidden(self): ...
365
- def is_property_overridable_library(self): ...
366
- def is_property_readonly(self): ...
367
- def is_property_set(self): ...
368
- def items(self): ...
369
- def keyframe_delete(self): ...
370
- def keyframe_insert(self): ...
371
- def keys(self): ...
372
- def path_from_id(self): ...
373
- def path_resolve(self): ...
374
- def poll(self, context): ...
375
- def pop(self): ...
376
- def prepend(self, draw_func): ...
377
- def property_overridable_library_set(self): ...
378
- def property_unset(self): ...
379
- def remove(self, draw_func): ...
380
- def type_recast(self): ...
381
- def values(self): ...
382
-
383
- class RENDER_PT_frame_range(
384
- RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
385
- ):
386
- COMPAT_ENGINES: typing.Any
387
- bl_context: typing.Any
388
- bl_label: typing.Any
389
- bl_region_type: typing.Any
390
- bl_rna: typing.Any
391
215
  bl_space_type: typing.Any
392
- id_data: typing.Any
216
+ """ """
393
217
 
394
- def append(self, draw_func): ...
395
- def as_pointer(self): ...
396
- def bl_rna_get_subclass(self): ...
397
- def bl_rna_get_subclass_py(self): ...
398
- def draw(self, context): ...
399
- def driver_add(self): ...
400
- def driver_remove(self): ...
401
- def get(self): ...
402
- def id_properties_clear(self): ...
403
- def id_properties_ensure(self): ...
404
- def id_properties_ui(self): ...
405
- def is_extended(self): ...
406
- def is_property_hidden(self): ...
407
- def is_property_overridable_library(self): ...
408
- def is_property_readonly(self): ...
409
- def is_property_set(self): ...
410
- def items(self): ...
411
- def keyframe_delete(self): ...
412
- def keyframe_insert(self): ...
413
- def keys(self): ...
414
- def path_from_id(self): ...
415
- def path_resolve(self): ...
416
- def poll(self, context): ...
417
- def pop(self): ...
418
- def prepend(self, draw_func): ...
419
- def property_overridable_library_set(self): ...
420
- def property_unset(self): ...
421
- def remove(self, draw_func): ...
422
- def type_recast(self): ...
423
- def values(self): ...
424
-
425
- class RENDER_PT_output(RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
426
- COMPAT_ENGINES: typing.Any
427
- bl_context: typing.Any
428
- bl_label: typing.Any
429
- bl_region_type: typing.Any
430
- bl_rna: typing.Any
431
- bl_space_type: typing.Any
432
218
  id_data: typing.Any
219
+ """ """
220
+
221
+ def append(self, draw_func):
222
+ """
223
+
224
+ :param draw_func:
225
+ """
226
+ ...
227
+
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
+
240
+ def draw(self, context):
241
+ """
242
+
243
+ :param context:
244
+ """
245
+ ...
246
+
247
+ def draw_header_preset(self, _context):
248
+ """
249
+
250
+ :param _context:
251
+ """
252
+ ...
253
+
254
+ def driver_add(self):
255
+ """ """
256
+ ...
257
+
258
+ def driver_remove(self):
259
+ """ """
260
+ ...
261
+
262
+ def get(self):
263
+ """ """
264
+ ...
265
+
266
+ def id_properties_clear(self):
267
+ """ """
268
+ ...
269
+
270
+ def id_properties_ensure(self):
271
+ """ """
272
+ ...
273
+
274
+ def id_properties_ui(self):
275
+ """ """
276
+ ...
277
+
278
+ def is_extended(self):
279
+ """ """
280
+ ...
281
+
282
+ def is_property_hidden(self):
283
+ """ """
284
+ ...
285
+
286
+ def is_property_overridable_library(self):
287
+ """ """
288
+ ...
289
+
290
+ def is_property_readonly(self):
291
+ """ """
292
+ ...
293
+
294
+ def is_property_set(self):
295
+ """ """
296
+ ...
297
+
298
+ def items(self):
299
+ """ """
300
+ ...
301
+
302
+ def keyframe_delete(self):
303
+ """ """
304
+ ...
305
+
306
+ def keyframe_insert(self):
307
+ """ """
308
+ ...
309
+
310
+ def keys(self):
311
+ """ """
312
+ ...
313
+
314
+ def path_from_id(self):
315
+ """ """
316
+ ...
317
+
318
+ def path_resolve(self):
319
+ """ """
320
+ ...
321
+
322
+ def poll(self, context):
323
+ """
324
+
325
+ :param context:
326
+ """
327
+ ...
328
+
329
+ def pop(self):
330
+ """ """
331
+ ...
332
+
333
+ def prepend(self, draw_func):
334
+ """
335
+
336
+ :param draw_func:
337
+ """
338
+ ...
339
+
340
+ def property_overridable_library_set(self):
341
+ """ """
342
+ ...
343
+
344
+ def property_unset(self):
345
+ """ """
346
+ ...
347
+
348
+ def remove(self, draw_func):
349
+ """
350
+
351
+ :param draw_func:
352
+ """
353
+ ...
354
+
355
+ def type_recast(self):
356
+ """ """
357
+ ...
358
+
359
+ def values(self):
360
+ """ """
361
+ ...
362
+
363
+ class RENDER_PT_encoding_audio(bpy_types._GenericUI):
364
+ """ """
433
365
 
434
- def append(self, draw_func): ...
435
- def as_pointer(self): ...
436
- def bl_rna_get_subclass(self): ...
437
- def bl_rna_get_subclass_py(self): ...
438
- def draw(self, context): ...
439
- def driver_add(self): ...
440
- def driver_remove(self): ...
441
- def get(self): ...
442
- def id_properties_clear(self): ...
443
- def id_properties_ensure(self): ...
444
- def id_properties_ui(self): ...
445
- def is_extended(self): ...
446
- def is_property_hidden(self): ...
447
- def is_property_overridable_library(self): ...
448
- def is_property_readonly(self): ...
449
- def is_property_set(self): ...
450
- def items(self): ...
451
- def keyframe_delete(self): ...
452
- def keyframe_insert(self): ...
453
- def keys(self): ...
454
- def path_from_id(self): ...
455
- def path_resolve(self): ...
456
- def poll(self, context): ...
457
- def pop(self): ...
458
- def prepend(self, draw_func): ...
459
- def property_overridable_library_set(self): ...
460
- def property_unset(self): ...
461
- def remove(self, draw_func): ...
462
- def type_recast(self): ...
463
- def values(self): ...
464
-
465
- class RENDER_PT_output_color_management(
466
- RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
467
- ):
468
366
  COMPAT_ENGINES: typing.Any
367
+ """ """
368
+
469
369
  bl_context: typing.Any
370
+ """ """
371
+
470
372
  bl_label: typing.Any
471
- bl_options: typing.Any
373
+ """ """
374
+
472
375
  bl_parent_id: typing.Any
376
+ """ """
377
+
473
378
  bl_region_type: typing.Any
379
+ """ """
380
+
474
381
  bl_rna: typing.Any
382
+ """ """
383
+
475
384
  bl_space_type: typing.Any
385
+ """ """
386
+
476
387
  id_data: typing.Any
388
+ """ """
389
+
390
+ def append(self, draw_func):
391
+ """
392
+
393
+ :param draw_func:
394
+ """
395
+ ...
396
+
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
+
409
+ def draw(self, context):
410
+ """
411
+
412
+ :param context:
413
+ """
414
+ ...
415
+
416
+ def driver_add(self):
417
+ """ """
418
+ ...
419
+
420
+ def driver_remove(self):
421
+ """ """
422
+ ...
423
+
424
+ def get(self):
425
+ """ """
426
+ ...
427
+
428
+ def id_properties_clear(self):
429
+ """ """
430
+ ...
431
+
432
+ def id_properties_ensure(self):
433
+ """ """
434
+ ...
435
+
436
+ def id_properties_ui(self):
437
+ """ """
438
+ ...
439
+
440
+ def is_extended(self):
441
+ """ """
442
+ ...
443
+
444
+ def is_property_hidden(self):
445
+ """ """
446
+ ...
447
+
448
+ def is_property_overridable_library(self):
449
+ """ """
450
+ ...
451
+
452
+ def is_property_readonly(self):
453
+ """ """
454
+ ...
455
+
456
+ def is_property_set(self):
457
+ """ """
458
+ ...
459
+
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
+ ...
483
+
484
+ def poll(self, context):
485
+ """
486
+
487
+ :param context:
488
+ """
489
+ ...
490
+
491
+ def pop(self):
492
+ """ """
493
+ ...
494
+
495
+ def prepend(self, draw_func):
496
+ """
497
+
498
+ :param draw_func:
499
+ """
500
+ ...
501
+
502
+ def property_overridable_library_set(self):
503
+ """ """
504
+ ...
505
+
506
+ def property_unset(self):
507
+ """ """
508
+ ...
509
+
510
+ def remove(self, draw_func):
511
+ """
512
+
513
+ :param draw_func:
514
+ """
515
+ ...
516
+
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
+ """ """
477
527
 
478
- def append(self, draw_func): ...
479
- def as_pointer(self): ...
480
- def bl_rna_get_subclass(self): ...
481
- def bl_rna_get_subclass_py(self): ...
482
- def draw(self, context): ...
483
- def driver_add(self): ...
484
- def driver_remove(self): ...
485
- def get(self): ...
486
- def id_properties_clear(self): ...
487
- def id_properties_ensure(self): ...
488
- def id_properties_ui(self): ...
489
- def is_extended(self): ...
490
- def is_property_hidden(self): ...
491
- def is_property_overridable_library(self): ...
492
- def is_property_readonly(self): ...
493
- def is_property_set(self): ...
494
- def items(self): ...
495
- def keyframe_delete(self): ...
496
- def keyframe_insert(self): ...
497
- def keys(self): ...
498
- def path_from_id(self): ...
499
- def path_resolve(self): ...
500
- def poll(self, context): ...
501
- def pop(self): ...
502
- def prepend(self, draw_func): ...
503
- def property_overridable_library_set(self): ...
504
- def property_unset(self): ...
505
- def remove(self, draw_func): ...
506
- def type_recast(self): ...
507
- def values(self): ...
508
-
509
- class RENDER_PT_output_views(
510
- RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
511
- ):
512
528
  COMPAT_ENGINES: typing.Any
529
+ """ """
530
+
513
531
  bl_context: typing.Any
532
+ """ """
533
+
514
534
  bl_label: typing.Any
535
+ """ """
536
+
515
537
  bl_parent_id: typing.Any
538
+ """ """
539
+
516
540
  bl_region_type: typing.Any
541
+ """ """
542
+
517
543
  bl_rna: typing.Any
544
+ """ """
545
+
518
546
  bl_space_type: typing.Any
547
+ """ """
548
+
519
549
  id_data: typing.Any
550
+ """ """
551
+
552
+ def append(self, draw_func):
553
+ """
554
+
555
+ :param draw_func:
556
+ """
557
+ ...
558
+
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
+
571
+ def draw(self, context):
572
+ """
573
+
574
+ :param context:
575
+ """
576
+ ...
577
+
578
+ def draw_vcodec(self, context):
579
+ """
580
+
581
+ :param context:
582
+ """
583
+ ...
584
+
585
+ def driver_add(self):
586
+ """ """
587
+ ...
588
+
589
+ def driver_remove(self):
590
+ """ """
591
+ ...
592
+
593
+ def get(self):
594
+ """ """
595
+ ...
596
+
597
+ def id_properties_clear(self):
598
+ """ """
599
+ ...
600
+
601
+ def id_properties_ensure(self):
602
+ """ """
603
+ ...
604
+
605
+ def id_properties_ui(self):
606
+ """ """
607
+ ...
608
+
609
+ def is_extended(self):
610
+ """ """
611
+ ...
612
+
613
+ def is_property_hidden(self):
614
+ """ """
615
+ ...
616
+
617
+ def is_property_overridable_library(self):
618
+ """ """
619
+ ...
620
+
621
+ def is_property_readonly(self):
622
+ """ """
623
+ ...
624
+
625
+ def is_property_set(self):
626
+ """ """
627
+ ...
628
+
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
+ ...
652
+
653
+ def poll(self, context):
654
+ """
655
+
656
+ :param context:
657
+ """
658
+ ...
659
+
660
+ def pop(self):
661
+ """ """
662
+ ...
663
+
664
+ def prepend(self, draw_func):
665
+ """
666
+
667
+ :param draw_func:
668
+ """
669
+ ...
670
+
671
+ def property_overridable_library_set(self):
672
+ """ """
673
+ ...
674
+
675
+ def property_unset(self):
676
+ """ """
677
+ ...
678
+
679
+ def remove(self, draw_func):
680
+ """
681
+
682
+ :param draw_func:
683
+ """
684
+ ...
685
+
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
+ """ """
520
696
 
521
- def append(self, draw_func): ...
522
- def as_pointer(self): ...
523
- def bl_rna_get_subclass(self): ...
524
- def bl_rna_get_subclass_py(self): ...
525
- def draw(self, context): ...
526
- def driver_add(self): ...
527
- def driver_remove(self): ...
528
- def get(self): ...
529
- def id_properties_clear(self): ...
530
- def id_properties_ensure(self): ...
531
- def id_properties_ui(self): ...
532
- def is_extended(self): ...
533
- def is_property_hidden(self): ...
534
- def is_property_overridable_library(self): ...
535
- def is_property_readonly(self): ...
536
- def is_property_set(self): ...
537
- def items(self): ...
538
- def keyframe_delete(self): ...
539
- def keyframe_insert(self): ...
540
- def keys(self): ...
541
- def path_from_id(self): ...
542
- def path_resolve(self): ...
543
- def poll(self, context): ...
544
- def pop(self): ...
545
- def prepend(self, draw_func): ...
546
- def property_overridable_library_set(self): ...
547
- def property_unset(self): ...
548
- def remove(self, draw_func): ...
549
- def type_recast(self): ...
550
- def values(self): ...
551
-
552
- class RENDER_PT_post_processing(
553
- RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
554
- ):
555
- COMPAT_ENGINES: typing.Any
556
- bl_context: typing.Any
557
697
  bl_label: typing.Any
558
- bl_options: typing.Any
698
+ """ """
699
+
559
700
  bl_region_type: typing.Any
701
+ """ """
702
+
560
703
  bl_rna: typing.Any
704
+ """ """
705
+
561
706
  bl_space_type: typing.Any
707
+ """ """
708
+
562
709
  id_data: typing.Any
710
+ """ """
711
+
712
+ preset_operator: typing.Any
713
+ """ """
714
+
715
+ preset_subdir: typing.Any
716
+ """ """
717
+
718
+ def append(self, draw_func):
719
+ """
720
+
721
+ :param draw_func:
722
+ """
723
+ ...
724
+
725
+ def as_pointer(self):
726
+ """ """
727
+ ...
728
+
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):
738
+ """
739
+
740
+ :param context:
741
+ """
742
+ ...
743
+
744
+ def draw_menu(self, layout, text):
745
+ """
746
+
747
+ :param layout:
748
+ :param text:
749
+ """
750
+ ...
751
+
752
+ def draw_panel_header(self, layout):
753
+ """
754
+
755
+ :param layout:
756
+ """
757
+ ...
758
+
759
+ def driver_add(self):
760
+ """ """
761
+ ...
762
+
763
+ def driver_remove(self):
764
+ """ """
765
+ ...
766
+
767
+ def get(self):
768
+ """ """
769
+ ...
770
+
771
+ def id_properties_clear(self):
772
+ """ """
773
+ ...
774
+
775
+ def id_properties_ensure(self):
776
+ """ """
777
+ ...
778
+
779
+ def id_properties_ui(self):
780
+ """ """
781
+ ...
782
+
783
+ def is_extended(self):
784
+ """ """
785
+ ...
786
+
787
+ def is_property_hidden(self):
788
+ """ """
789
+ ...
790
+
791
+ def is_property_overridable_library(self):
792
+ """ """
793
+ ...
794
+
795
+ def is_property_readonly(self):
796
+ """ """
797
+ ...
798
+
799
+ def is_property_set(self):
800
+ """ """
801
+ ...
802
+
803
+ def items(self):
804
+ """ """
805
+ ...
806
+
807
+ def keyframe_delete(self):
808
+ """ """
809
+ ...
810
+
811
+ def keyframe_insert(self):
812
+ """ """
813
+ ...
814
+
815
+ def keys(self):
816
+ """ """
817
+ ...
818
+
819
+ def path_from_id(self):
820
+ """ """
821
+ ...
822
+
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
+ ):
834
+ """
835
+
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:
844
+ """
845
+ ...
846
+
847
+ def path_resolve(self):
848
+ """ """
849
+ ...
850
+
851
+ def pop(self):
852
+ """ """
853
+ ...
854
+
855
+ def prepend(self, draw_func):
856
+ """
857
+
858
+ :param draw_func:
859
+ """
860
+ ...
861
+
862
+ def property_overridable_library_set(self):
863
+ """ """
864
+ ...
865
+
866
+ def property_unset(self):
867
+ """ """
868
+ ...
869
+
870
+ def remove(self, draw_func):
871
+ """
872
+
873
+ :param draw_func:
874
+ """
875
+ ...
876
+
877
+ def type_recast(self):
878
+ """ """
879
+ ...
880
+
881
+ def values(self):
882
+ """ """
883
+ ...
884
+
885
+ class RENDER_PT_format(bpy_types._GenericUI):
886
+ """ """
887
+
888
+ COMPAT_ENGINES: typing.Any
889
+ """ """
890
+
891
+ bl_context: typing.Any
892
+ """ """
893
+
894
+ bl_label: typing.Any
895
+ """ """
896
+
897
+ bl_region_type: typing.Any
898
+ """ """
899
+
900
+ bl_rna: typing.Any
901
+ """ """
902
+
903
+ bl_space_type: typing.Any
904
+ """ """
905
+
906
+ id_data: typing.Any
907
+ """ """
908
+
909
+ def append(self, draw_func):
910
+ """
911
+
912
+ :param draw_func:
913
+ """
914
+ ...
915
+
916
+ def as_pointer(self):
917
+ """ """
918
+ ...
919
+
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):
929
+ """
930
+
931
+ :param context:
932
+ """
933
+ ...
934
+
935
+ def draw_framerate(self, layout, rd):
936
+ """
937
+
938
+ :param layout:
939
+ :param rd:
940
+ """
941
+ ...
942
+
943
+ def draw_header_preset(self, _context):
944
+ """
945
+
946
+ :param _context:
947
+ """
948
+ ...
949
+
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
+ """ """
563
2224
 
564
- def append(self, draw_func): ...
565
- def as_pointer(self): ...
566
- def bl_rna_get_subclass(self): ...
567
- def bl_rna_get_subclass_py(self): ...
568
- def draw(self, context): ...
569
- def driver_add(self): ...
570
- def driver_remove(self): ...
571
- def get(self): ...
572
- def id_properties_clear(self): ...
573
- def id_properties_ensure(self): ...
574
- def id_properties_ui(self): ...
575
- def is_extended(self): ...
576
- def is_property_hidden(self): ...
577
- def is_property_overridable_library(self): ...
578
- def is_property_readonly(self): ...
579
- def is_property_set(self): ...
580
- def items(self): ...
581
- def keyframe_delete(self): ...
582
- def keyframe_insert(self): ...
583
- def keys(self): ...
584
- def path_from_id(self): ...
585
- def path_resolve(self): ...
586
- def poll(self, context): ...
587
- def pop(self): ...
588
- def prepend(self, draw_func): ...
589
- def property_overridable_library_set(self): ...
590
- def property_unset(self): ...
591
- def remove(self, draw_func): ...
592
- def type_recast(self): ...
593
- def values(self): ...
594
-
595
- class RENDER_PT_stamp(RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
596
2225
  COMPAT_ENGINES: typing.Any
2226
+ """ """
2227
+
597
2228
  bl_context: typing.Any
2229
+ """ """
2230
+
598
2231
  bl_label: typing.Any
2232
+ """ """
2233
+
599
2234
  bl_options: typing.Any
2235
+ """ """
2236
+
2237
+ bl_parent_id: typing.Any
2238
+ """ """
2239
+
600
2240
  bl_region_type: typing.Any
2241
+ """ """
2242
+
601
2243
  bl_rna: typing.Any
2244
+ """ """
2245
+
602
2246
  bl_space_type: typing.Any
2247
+ """ """
2248
+
603
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
+ """ """
604
2396
 
605
- def append(self, draw_func): ...
606
- def as_pointer(self): ...
607
- def bl_rna_get_subclass(self): ...
608
- def bl_rna_get_subclass_py(self): ...
609
- def draw(self, context): ...
610
- def driver_add(self): ...
611
- def driver_remove(self): ...
612
- def get(self): ...
613
- def id_properties_clear(self): ...
614
- def id_properties_ensure(self): ...
615
- def id_properties_ui(self): ...
616
- def is_extended(self): ...
617
- def is_property_hidden(self): ...
618
- def is_property_overridable_library(self): ...
619
- def is_property_readonly(self): ...
620
- def is_property_set(self): ...
621
- def items(self): ...
622
- def keyframe_delete(self): ...
623
- def keyframe_insert(self): ...
624
- def keys(self): ...
625
- def path_from_id(self): ...
626
- def path_resolve(self): ...
627
- def poll(self, context): ...
628
- def pop(self): ...
629
- def prepend(self, draw_func): ...
630
- def property_overridable_library_set(self): ...
631
- def property_unset(self): ...
632
- def remove(self, draw_func): ...
633
- def type_recast(self): ...
634
- def values(self): ...
635
-
636
- class RENDER_PT_stamp_burn(
637
- RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
638
- ):
639
2397
  COMPAT_ENGINES: typing.Any
2398
+ """ """
2399
+
640
2400
  bl_context: typing.Any
2401
+ """ """
2402
+
641
2403
  bl_label: typing.Any
2404
+ """ """
2405
+
642
2406
  bl_options: typing.Any
2407
+ """ """
2408
+
643
2409
  bl_parent_id: typing.Any
2410
+ """ """
2411
+
644
2412
  bl_region_type: typing.Any
2413
+ """ """
2414
+
645
2415
  bl_rna: typing.Any
2416
+ """ """
2417
+
646
2418
  bl_space_type: typing.Any
2419
+ """ """
2420
+
647
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
+ ...
2480
+
2481
+ def is_extended(self):
2482
+ """ """
2483
+ ...
2484
+
2485
+ def is_property_hidden(self):
2486
+ """ """
2487
+ ...
2488
+
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
+ ...
2524
+
2525
+ def poll(self, context):
2526
+ """
2527
+
2528
+ :param context:
2529
+ """
2530
+ ...
2531
+
2532
+ def pop(self):
2533
+ """ """
2534
+ ...
2535
+
2536
+ def prepend(self, draw_func):
2537
+ """
2538
+
2539
+ :param draw_func:
2540
+ """
2541
+ ...
2542
+
2543
+ def property_overridable_library_set(self):
2544
+ """ """
2545
+ ...
2546
+
2547
+ def property_unset(self):
2548
+ """ """
2549
+ ...
2550
+
2551
+ def remove(self, draw_func):
2552
+ """
2553
+
2554
+ :param draw_func:
2555
+ """
2556
+ ...
2557
+
2558
+ def type_recast(self):
2559
+ """ """
2560
+ ...
2561
+
2562
+ def values(self):
2563
+ """ """
2564
+ ...
2565
+
2566
+ class RENDER_PT_stereoscopy(bpy_types._GenericUI):
2567
+ """ """
648
2568
 
649
- def append(self, draw_func): ...
650
- def as_pointer(self): ...
651
- def bl_rna_get_subclass(self): ...
652
- def bl_rna_get_subclass_py(self): ...
653
- def draw(self, context): ...
654
- def draw_header(self, context): ...
655
- def driver_add(self): ...
656
- def driver_remove(self): ...
657
- def get(self): ...
658
- def id_properties_clear(self): ...
659
- def id_properties_ensure(self): ...
660
- def id_properties_ui(self): ...
661
- def is_extended(self): ...
662
- def is_property_hidden(self): ...
663
- def is_property_overridable_library(self): ...
664
- def is_property_readonly(self): ...
665
- def is_property_set(self): ...
666
- def items(self): ...
667
- def keyframe_delete(self): ...
668
- def keyframe_insert(self): ...
669
- def keys(self): ...
670
- def path_from_id(self): ...
671
- def path_resolve(self): ...
672
- def poll(self, context): ...
673
- def pop(self): ...
674
- def prepend(self, draw_func): ...
675
- def property_overridable_library_set(self): ...
676
- def property_unset(self): ...
677
- def remove(self, draw_func): ...
678
- def type_recast(self): ...
679
- def values(self): ...
680
-
681
- class RENDER_PT_stamp_note(
682
- RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
683
- ):
684
2569
  COMPAT_ENGINES: typing.Any
2570
+ """ """
2571
+
685
2572
  bl_context: typing.Any
2573
+ """ """
2574
+
686
2575
  bl_label: typing.Any
2576
+ """ """
2577
+
687
2578
  bl_options: typing.Any
688
- bl_parent_id: typing.Any
2579
+ """ """
2580
+
689
2581
  bl_region_type: typing.Any
2582
+ """ """
2583
+
690
2584
  bl_rna: typing.Any
2585
+ """ """
2586
+
691
2587
  bl_space_type: typing.Any
2588
+ """ """
2589
+
692
2590
  id_data: typing.Any
2591
+ """ """
2592
+
2593
+ def append(self, draw_func):
2594
+ """
2595
+
2596
+ :param draw_func:
2597
+ """
2598
+ ...
2599
+
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
+
2612
+ def draw(self, context):
2613
+ """
2614
+
2615
+ :param context:
2616
+ """
2617
+ ...
2618
+
2619
+ def draw_header(self, context):
2620
+ """
2621
+
2622
+ :param context:
2623
+ """
2624
+ ...
2625
+
2626
+ def driver_add(self):
2627
+ """ """
2628
+ ...
2629
+
2630
+ def driver_remove(self):
2631
+ """ """
2632
+ ...
2633
+
2634
+ def get(self):
2635
+ """ """
2636
+ ...
2637
+
2638
+ def id_properties_clear(self):
2639
+ """ """
2640
+ ...
2641
+
2642
+ def id_properties_ensure(self):
2643
+ """ """
2644
+ ...
2645
+
2646
+ def id_properties_ui(self):
2647
+ """ """
2648
+ ...
2649
+
2650
+ def is_extended(self):
2651
+ """ """
2652
+ ...
2653
+
2654
+ def is_property_hidden(self):
2655
+ """ """
2656
+ ...
2657
+
2658
+ def is_property_overridable_library(self):
2659
+ """ """
2660
+ ...
2661
+
2662
+ def is_property_readonly(self):
2663
+ """ """
2664
+ ...
2665
+
2666
+ def is_property_set(self):
2667
+ """ """
2668
+ ...
2669
+
2670
+ def items(self):
2671
+ """ """
2672
+ ...
2673
+
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
+ ...
2693
+
2694
+ def poll(self, context):
2695
+ """
2696
+
2697
+ :param context:
2698
+ """
2699
+ ...
2700
+
2701
+ def pop(self):
2702
+ """ """
2703
+ ...
2704
+
2705
+ def prepend(self, draw_func):
2706
+ """
2707
+
2708
+ :param draw_func:
2709
+ """
2710
+ ...
2711
+
2712
+ def property_overridable_library_set(self):
2713
+ """ """
2714
+ ...
2715
+
2716
+ def property_unset(self):
2717
+ """ """
2718
+ ...
2719
+
2720
+ def remove(self, draw_func):
2721
+ """
2722
+
2723
+ :param draw_func:
2724
+ """
2725
+ ...
2726
+
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
+ """ """
693
2737
 
694
- def append(self, draw_func): ...
695
- def as_pointer(self): ...
696
- def bl_rna_get_subclass(self): ...
697
- def bl_rna_get_subclass_py(self): ...
698
- def draw(self, context): ...
699
- def draw_header(self, context): ...
700
- def driver_add(self): ...
701
- def driver_remove(self): ...
702
- def get(self): ...
703
- def id_properties_clear(self): ...
704
- def id_properties_ensure(self): ...
705
- def id_properties_ui(self): ...
706
- def is_extended(self): ...
707
- def is_property_hidden(self): ...
708
- def is_property_overridable_library(self): ...
709
- def is_property_readonly(self): ...
710
- def is_property_set(self): ...
711
- def items(self): ...
712
- def keyframe_delete(self): ...
713
- def keyframe_insert(self): ...
714
- def keys(self): ...
715
- def path_from_id(self): ...
716
- def path_resolve(self): ...
717
- def poll(self, context): ...
718
- def pop(self): ...
719
- def prepend(self, draw_func): ...
720
- def property_overridable_library_set(self): ...
721
- def property_unset(self): ...
722
- def remove(self, draw_func): ...
723
- def type_recast(self): ...
724
- def values(self): ...
725
-
726
- class RENDER_PT_stereoscopy(
727
- RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
728
- ):
729
2738
  COMPAT_ENGINES: typing.Any
2739
+ """ """
2740
+
730
2741
  bl_context: typing.Any
2742
+ """ """
2743
+
731
2744
  bl_label: typing.Any
2745
+ """ """
2746
+
732
2747
  bl_options: typing.Any
2748
+ """ """
2749
+
2750
+ bl_parent_id: typing.Any
2751
+ """ """
2752
+
733
2753
  bl_region_type: typing.Any
2754
+ """ """
2755
+
734
2756
  bl_rna: typing.Any
2757
+ """ """
2758
+
735
2759
  bl_space_type: typing.Any
2760
+ """ """
2761
+
736
2762
  id_data: typing.Any
2763
+ """ """
2764
+
2765
+ def append(self, draw_func):
2766
+ """
2767
+
2768
+ :param draw_func:
2769
+ """
2770
+ ...
2771
+
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
+
2784
+ def draw(self, context):
2785
+ """
2786
+
2787
+ :param context:
2788
+ """
2789
+ ...
2790
+
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
+ ...
2858
+
2859
+ def poll(self, context):
2860
+ """
2861
+
2862
+ :param context:
2863
+ """
2864
+ ...
2865
+
2866
+ def pop(self):
2867
+ """ """
2868
+ ...
2869
+
2870
+ def prepend(self, draw_func):
2871
+ """
2872
+
2873
+ :param draw_func:
2874
+ """
2875
+ ...
2876
+
2877
+ def property_overridable_library_set(self):
2878
+ """ """
2879
+ ...
2880
+
2881
+ def property_unset(self):
2882
+ """ """
2883
+ ...
2884
+
2885
+ def remove(self, draw_func):
2886
+ """
2887
+
2888
+ :param draw_func:
2889
+ """
2890
+ ...
2891
+
2892
+ def type_recast(self):
2893
+ """ """
2894
+ ...
2895
+
2896
+ def values(self):
2897
+ """ """
2898
+ ...
2899
+
2900
+ class RENDER_UL_renderviews(bpy_types._GenericUI):
2901
+ """ """
2902
+
2903
+ bl_rna: typing.Any
2904
+ """ """
2905
+
2906
+ id_data: typing.Any
2907
+ """ """
2908
+
2909
+ def append(self, draw_func):
2910
+ """
2911
+
2912
+ :param draw_func:
2913
+ """
2914
+ ...
2915
+
2916
+ def as_pointer(self):
2917
+ """ """
2918
+ ...
2919
+
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
+ ):
2931
+ """
2932
+
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:
2941
+ """
2942
+ ...
2943
+
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
+
3016
+ def prepend(self, draw_func):
3017
+ """
3018
+
3019
+ :param draw_func:
3020
+ """
3021
+ ...
3022
+
3023
+ def property_overridable_library_set(self):
3024
+ """ """
3025
+ ...
3026
+
3027
+ def property_unset(self):
3028
+ """ """
3029
+ ...
3030
+
3031
+ def remove(self, draw_func):
3032
+ """
3033
+
3034
+ :param draw_func:
3035
+ """
3036
+ ...
3037
+
3038
+ def type_recast(self):
3039
+ """ """
3040
+ ...
3041
+
3042
+ def values(self):
3043
+ """ """
3044
+ ...
3045
+
3046
+ class RenderOutputButtonsPanel:
3047
+ """ """
737
3048
 
738
- def append(self, draw_func): ...
739
- def as_pointer(self): ...
740
- def bl_rna_get_subclass(self): ...
741
- def bl_rna_get_subclass_py(self): ...
742
- def draw(self, context): ...
743
- def draw_header(self, context): ...
744
- def driver_add(self): ...
745
- def driver_remove(self): ...
746
- def get(self): ...
747
- def id_properties_clear(self): ...
748
- def id_properties_ensure(self): ...
749
- def id_properties_ui(self): ...
750
- def is_extended(self): ...
751
- def is_property_hidden(self): ...
752
- def is_property_overridable_library(self): ...
753
- def is_property_readonly(self): ...
754
- def is_property_set(self): ...
755
- def items(self): ...
756
- def keyframe_delete(self): ...
757
- def keyframe_insert(self): ...
758
- def keys(self): ...
759
- def path_from_id(self): ...
760
- def path_resolve(self): ...
761
- def poll(self, context): ...
762
- def pop(self): ...
763
- def prepend(self, draw_func): ...
764
- def property_overridable_library_set(self): ...
765
- def property_unset(self): ...
766
- def remove(self, draw_func): ...
767
- def type_recast(self): ...
768
- def values(self): ...
769
-
770
- class RENDER_PT_time_stretching(
771
- RenderOutputButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
772
- ):
773
- COMPAT_ENGINES: typing.Any
774
3049
  bl_context: typing.Any
775
- bl_label: typing.Any
776
- bl_options: typing.Any
777
- bl_parent_id: typing.Any
3050
+ """ """
3051
+
778
3052
  bl_region_type: typing.Any
779
- bl_rna: typing.Any
3053
+ """ """
3054
+
780
3055
  bl_space_type: typing.Any
781
- id_data: typing.Any
3056
+ """ """
3057
+
3058
+ def poll(self, context):
3059
+ """
782
3060
 
783
- def append(self, draw_func): ...
784
- def as_pointer(self): ...
785
- def bl_rna_get_subclass(self): ...
786
- def bl_rna_get_subclass_py(self): ...
787
- def draw(self, context): ...
788
- def driver_add(self): ...
789
- def driver_remove(self): ...
790
- def get(self): ...
791
- def id_properties_clear(self): ...
792
- def id_properties_ensure(self): ...
793
- def id_properties_ui(self): ...
794
- def is_extended(self): ...
795
- def is_property_hidden(self): ...
796
- def is_property_overridable_library(self): ...
797
- def is_property_readonly(self): ...
798
- def is_property_set(self): ...
799
- def items(self): ...
800
- def keyframe_delete(self): ...
801
- def keyframe_insert(self): ...
802
- def keys(self): ...
803
- def path_from_id(self): ...
804
- def path_resolve(self): ...
805
- def poll(self, context): ...
806
- def pop(self): ...
807
- def prepend(self, draw_func): ...
808
- def property_overridable_library_set(self): ...
809
- def property_unset(self): ...
810
- def remove(self, draw_func): ...
811
- def type_recast(self): ...
812
- def values(self): ...
3061
+ :param context:
3062
+ """
3063
+ ...