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.

Potentially problematic release.


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

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