fake-bpy-module 20240321__py3-none-any.whl → 20240322__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +642 -822
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +330 -428
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86353 -87337
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240322.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240322.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240321.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240322.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240322.dist-info}/top_level.txt +0 -0
@@ -1,32 +1,43 @@
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
+ """ """
11
17
 
12
18
  def append(self, draw_func):
13
19
  """
14
20
 
15
21
  :param draw_func:
16
- :type draw_func:
17
22
  """
18
23
  ...
19
24
 
20
- def as_pointer(self): ...
21
- def bl_rna_get_subclass(self): ...
22
- def bl_rna_get_subclass_py(self): ...
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
+
23
37
  def draw(self, _context):
24
38
  """
25
39
 
26
- :param self:
27
- :type self:
28
40
  :param _context:
29
- :type _context:
30
41
  """
31
42
  ...
32
43
 
@@ -34,38 +45,81 @@ class VIEWLAYER_MT_lightgroup_sync(bpy_types.Menu, bpy_types._GenericUI):
34
45
  """
35
46
 
36
47
  :param context:
37
- :type context:
38
48
  :param layout:
39
- :type layout:
40
49
  """
41
50
  ...
42
51
 
43
52
  def draw_preset(self, _context):
44
53
  """
45
54
 
46
- :param self:
47
- :type self:
48
55
  :param _context:
49
- :type _context:
50
- """
51
- ...
52
-
53
- def driver_add(self): ...
54
- def driver_remove(self): ...
55
- def get(self): ...
56
- def id_properties_clear(self): ...
57
- def id_properties_ensure(self): ...
58
- def id_properties_ui(self): ...
59
- def is_extended(self): ...
60
- def is_property_hidden(self): ...
61
- def is_property_overridable_library(self): ...
62
- def is_property_readonly(self): ...
63
- def is_property_set(self): ...
64
- def items(self): ...
65
- def keyframe_delete(self): ...
66
- def keyframe_insert(self): ...
67
- def keys(self): ...
68
- def path_from_id(self): ...
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
+ ...
122
+
69
123
  def path_menu(
70
124
  self,
71
125
  searchpaths,
@@ -79,1409 +133,2783 @@ class VIEWLAYER_MT_lightgroup_sync(bpy_types.Menu, bpy_types._GenericUI):
79
133
  ):
80
134
  """
81
135
 
82
- :param self:
83
- :type self:
84
136
  :param searchpaths:
85
- :type searchpaths:
86
137
  :param operator:
87
- :type operator:
88
138
  :param props_default:
89
- :type props_default:
90
139
  :param prop_filepath:
91
- :type prop_filepath:
92
140
  :param filter_ext:
93
- :type filter_ext:
94
141
  :param filter_path:
95
- :type filter_path:
96
142
  :param display_name:
97
- :type display_name:
98
143
  :param add_operator:
99
- :type add_operator:
100
144
  """
101
145
  ...
102
146
 
103
- def path_resolve(self): ...
104
- def pop(self): ...
147
+ def path_resolve(self):
148
+ """ """
149
+ ...
150
+
151
+ def pop(self):
152
+ """ """
153
+ ...
154
+
105
155
  def prepend(self, draw_func):
106
156
  """
107
157
 
108
158
  :param draw_func:
109
- :type draw_func:
110
159
  """
111
160
  ...
112
161
 
113
- def property_overridable_library_set(self): ...
114
- def property_unset(self): ...
162
+ def property_overridable_library_set(self):
163
+ """ """
164
+ ...
165
+
166
+ def property_unset(self):
167
+ """ """
168
+ ...
169
+
115
170
  def remove(self, draw_func):
116
171
  """
117
172
 
118
173
  :param draw_func:
119
- :type draw_func:
120
174
  """
121
175
  ...
122
176
 
123
- def type_recast(self): ...
124
- def values(self): ...
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
+ """ """
187
+
188
+ COMPAT_ENGINES: typing.Any
189
+ """ """
125
190
 
126
- class VIEWLAYER_PT_layer_custom_props(
127
- bpy_types.Panel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
128
- ):
129
191
  bl_context: typing.Any
192
+ """ """
193
+
130
194
  bl_label: typing.Any
131
- bl_options: typing.Any
132
- bl_order: typing.Any
195
+ """ """
196
+
197
+ bl_parent_id: typing.Any
198
+ """ """
199
+
133
200
  bl_region_type: typing.Any
201
+ """ """
202
+
134
203
  bl_rna: typing.Any
204
+ """ """
205
+
135
206
  bl_space_type: typing.Any
207
+ """ """
208
+
136
209
  id_data: typing.Any
210
+ """ """
137
211
 
138
212
  def append(self, draw_func):
139
213
  """
140
214
 
141
215
  :param draw_func:
142
- :type draw_func:
143
216
  """
144
217
  ...
145
218
 
146
- def as_pointer(self): ...
147
- def bl_rna_get_subclass(self): ...
148
- def bl_rna_get_subclass_py(self): ...
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
+
149
231
  def draw(self, context):
150
232
  """
151
233
 
152
- :param self:
153
- :type self:
154
234
  :param context:
155
- :type context:
156
- """
157
- ...
158
-
159
- def driver_add(self): ...
160
- def driver_remove(self): ...
161
- def get(self): ...
162
- def id_properties_clear(self): ...
163
- def id_properties_ensure(self): ...
164
- def id_properties_ui(self): ...
165
- def is_extended(self): ...
166
- def is_property_hidden(self): ...
167
- def is_property_overridable_library(self): ...
168
- def is_property_readonly(self): ...
169
- def is_property_set(self): ...
170
- def items(self): ...
171
- def keyframe_delete(self): ...
172
- def keyframe_insert(self): ...
173
- def keys(self): ...
174
- def path_from_id(self): ...
175
- def path_resolve(self): ...
176
- def poll(self, context):
177
235
  """
236
+ ...
178
237
 
179
- :param context:
180
- :type context:
181
- """
238
+ def driver_add(self):
239
+ """ """
182
240
  ...
183
241
 
184
- def pop(self): ...
185
- def prepend(self, draw_func):
186
- """
242
+ def driver_remove(self):
243
+ """ """
244
+ ...
187
245
 
188
- :param draw_func:
189
- :type draw_func:
190
- """
246
+ def get(self):
247
+ """ """
191
248
  ...
192
249
 
193
- def property_overridable_library_set(self): ...
194
- def property_unset(self): ...
195
- def remove(self, draw_func):
196
- """
250
+ def id_properties_clear(self):
251
+ """ """
252
+ ...
197
253
 
198
- :param draw_func:
199
- :type draw_func:
200
- """
254
+ def id_properties_ensure(self):
255
+ """ """
201
256
  ...
202
257
 
203
- def type_recast(self): ...
204
- def values(self): ...
258
+ def id_properties_ui(self):
259
+ """ """
260
+ ...
205
261
 
206
- class VIEWLAYER_UL_aov(bpy_types.UIList, bpy_types._GenericUI):
207
- bl_rna: typing.Any
208
- id_data: typing.Any
262
+ def is_extended(self):
263
+ """ """
264
+ ...
209
265
 
210
- def append(self, draw_func):
211
- """
266
+ def is_property_hidden(self):
267
+ """ """
268
+ ...
212
269
 
213
- :param draw_func:
214
- :type draw_func:
215
- """
270
+ def is_property_overridable_library(self):
271
+ """ """
216
272
  ...
217
273
 
218
- def as_pointer(self): ...
219
- def bl_rna_get_subclass(self): ...
220
- def bl_rna_get_subclass_py(self): ...
221
- def draw_item(
222
- self, _context, layout, _data, item, icon, _active_data, _active_propname
223
- ):
224
- """
274
+ def is_property_readonly(self):
275
+ """ """
276
+ ...
225
277
 
226
- :param self:
227
- :type self:
228
- :param _context:
229
- :type _context:
230
- :param layout:
231
- :type layout:
232
- :param _data:
233
- :type _data:
234
- :param item:
235
- :type item:
236
- :param icon:
237
- :type icon:
238
- :param _active_data:
239
- :type _active_data:
240
- :param _active_propname:
241
- :type _active_propname:
242
- """
243
- ...
244
-
245
- def driver_add(self): ...
246
- def driver_remove(self): ...
247
- def get(self): ...
248
- def id_properties_clear(self): ...
249
- def id_properties_ensure(self): ...
250
- def id_properties_ui(self): ...
251
- def is_extended(self): ...
252
- def is_property_hidden(self): ...
253
- def is_property_overridable_library(self): ...
254
- def is_property_readonly(self): ...
255
- def is_property_set(self): ...
256
- def items(self): ...
257
- def keyframe_delete(self): ...
258
- def keyframe_insert(self): ...
259
- def keys(self): ...
260
- def path_from_id(self): ...
261
- def path_resolve(self): ...
262
- def pop(self): ...
263
- def prepend(self, draw_func):
264
- """
278
+ def is_property_set(self):
279
+ """ """
280
+ ...
265
281
 
266
- :param draw_func:
267
- :type draw_func:
268
- """
282
+ def items(self):
283
+ """ """
269
284
  ...
270
285
 
271
- def property_overridable_library_set(self): ...
272
- def property_unset(self): ...
273
- def remove(self, draw_func):
274
- """
286
+ def keyframe_delete(self):
287
+ """ """
288
+ ...
275
289
 
276
- :param draw_func:
277
- :type draw_func:
278
- """
290
+ def keyframe_insert(self):
291
+ """ """
279
292
  ...
280
293
 
281
- def type_recast(self): ...
282
- def values(self): ...
294
+ def keys(self):
295
+ """ """
296
+ ...
283
297
 
284
- class ViewLayerButtonsPanel:
285
- bl_context: typing.Any
286
- bl_region_type: typing.Any
287
- bl_space_type: typing.Any
298
+ def path_from_id(self):
299
+ """ """
300
+ ...
301
+
302
+ def path_resolve(self):
303
+ """ """
304
+ ...
288
305
 
289
306
  def poll(self, context):
290
307
  """
291
308
 
292
309
  :param context:
293
- :type context:
294
310
  """
295
311
  ...
296
312
 
297
- class VIEWLAYER_PT_eevee_layer_passes_data(
298
- ViewLayerButtonsPanel, 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
- bl_region_type: typing.Any
305
- bl_rna: typing.Any
306
- bl_space_type: typing.Any
307
- id_data: typing.Any
313
+ def pop(self):
314
+ """ """
315
+ ...
308
316
 
309
- def append(self, draw_func):
317
+ def prepend(self, draw_func):
310
318
  """
311
319
 
312
320
  :param draw_func:
313
- :type draw_func:
314
321
  """
315
322
  ...
316
323
 
317
- def as_pointer(self): ...
318
- def bl_rna_get_subclass(self): ...
319
- def bl_rna_get_subclass_py(self): ...
320
- def draw(self, context):
321
- """
322
-
323
- :param self:
324
- :type self:
325
- :param context:
326
- :type context:
327
- """
328
- ...
329
-
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
- """
324
+ def property_overridable_library_set(self):
325
+ """ """
326
+ ...
349
327
 
350
- :param context:
351
- :type context:
352
- """
328
+ def property_unset(self):
329
+ """ """
353
330
  ...
354
331
 
355
- def pop(self): ...
356
- def prepend(self, draw_func):
332
+ def remove(self, draw_func):
357
333
  """
358
334
 
359
335
  :param draw_func:
360
- :type draw_func:
361
336
  """
362
337
  ...
363
338
 
364
- def property_overridable_library_set(self): ...
365
- def property_unset(self): ...
366
- def remove(self, draw_func):
367
- """
339
+ def type_recast(self):
340
+ """ """
341
+ ...
368
342
 
369
- :param draw_func:
370
- :type draw_func:
371
- """
343
+ def values(self):
344
+ """ """
372
345
  ...
373
346
 
374
- def type_recast(self): ...
375
- def values(self): ...
347
+ class VIEWLAYER_PT_eevee_layer_passes_effects(bpy_types._GenericUI):
348
+ """ """
376
349
 
377
- class VIEWLAYER_PT_eevee_layer_passes_effects(
378
- ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
379
- ):
380
350
  COMPAT_ENGINES: typing.Any
351
+ """ """
352
+
381
353
  bl_context: typing.Any
354
+ """ """
355
+
382
356
  bl_label: typing.Any
357
+ """ """
358
+
383
359
  bl_parent_id: typing.Any
360
+ """ """
361
+
384
362
  bl_region_type: typing.Any
363
+ """ """
364
+
385
365
  bl_rna: typing.Any
366
+ """ """
367
+
386
368
  bl_space_type: typing.Any
369
+ """ """
370
+
387
371
  id_data: typing.Any
372
+ """ """
388
373
 
389
374
  def append(self, draw_func):
390
375
  """
391
376
 
392
377
  :param draw_func:
393
- :type draw_func:
394
378
  """
395
379
  ...
396
380
 
397
- def as_pointer(self): ...
398
- def bl_rna_get_subclass(self): ...
399
- def bl_rna_get_subclass_py(self): ...
400
- def draw(self, context):
401
- """
381
+ def as_pointer(self):
382
+ """ """
383
+ ...
402
384
 
403
- :param self:
404
- :type self:
405
- :param context:
406
- :type context:
407
- """
408
- ...
409
-
410
- def driver_add(self): ...
411
- def driver_remove(self): ...
412
- def get(self): ...
413
- def id_properties_clear(self): ...
414
- def id_properties_ensure(self): ...
415
- def id_properties_ui(self): ...
416
- def is_extended(self): ...
417
- def is_property_hidden(self): ...
418
- def is_property_overridable_library(self): ...
419
- def is_property_readonly(self): ...
420
- def is_property_set(self): ...
421
- def items(self): ...
422
- def keyframe_delete(self): ...
423
- def keyframe_insert(self): ...
424
- def keys(self): ...
425
- def path_from_id(self): ...
426
- def path_resolve(self): ...
427
- def poll(self, context):
428
- """
385
+ def bl_rna_get_subclass(self):
386
+ """ """
387
+ ...
429
388
 
430
- :param context:
431
- :type context:
432
- """
389
+ def bl_rna_get_subclass_py(self):
390
+ """ """
433
391
  ...
434
392
 
435
- def pop(self): ...
436
- def prepend(self, draw_func):
393
+ def draw(self, context):
437
394
  """
438
395
 
439
- :param draw_func:
440
- :type draw_func:
396
+ :param context:
441
397
  """
442
398
  ...
443
399
 
444
- def property_overridable_library_set(self): ...
445
- def property_unset(self): ...
446
- def remove(self, draw_func):
447
- """
448
-
449
- :param draw_func:
450
- :type draw_func:
451
- """
400
+ def driver_add(self):
401
+ """ """
452
402
  ...
453
403
 
454
- def type_recast(self): ...
455
- def values(self): ...
404
+ def driver_remove(self):
405
+ """ """
406
+ ...
456
407
 
457
- class VIEWLAYER_PT_eevee_layer_passes_light(
458
- ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
459
- ):
460
- COMPAT_ENGINES: typing.Any
461
- bl_context: typing.Any
462
- bl_label: typing.Any
463
- bl_parent_id: typing.Any
464
- bl_region_type: typing.Any
465
- bl_rna: typing.Any
466
- bl_space_type: typing.Any
467
- id_data: typing.Any
408
+ def get(self):
409
+ """ """
410
+ ...
468
411
 
469
- def append(self, draw_func):
470
- """
412
+ def id_properties_clear(self):
413
+ """ """
414
+ ...
471
415
 
472
- :param draw_func:
473
- :type draw_func:
474
- """
416
+ def id_properties_ensure(self):
417
+ """ """
475
418
  ...
476
419
 
477
- def as_pointer(self): ...
478
- def bl_rna_get_subclass(self): ...
479
- def bl_rna_get_subclass_py(self): ...
480
- def draw(self, context):
481
- """
420
+ def id_properties_ui(self):
421
+ """ """
422
+ ...
482
423
 
483
- :param self:
484
- :type self:
485
- :param context:
486
- :type context:
487
- """
488
- ...
489
-
490
- def driver_add(self): ...
491
- def driver_remove(self): ...
492
- def get(self): ...
493
- def id_properties_clear(self): ...
494
- def id_properties_ensure(self): ...
495
- def id_properties_ui(self): ...
496
- def is_extended(self): ...
497
- def is_property_hidden(self): ...
498
- def is_property_overridable_library(self): ...
499
- def is_property_readonly(self): ...
500
- def is_property_set(self): ...
501
- def items(self): ...
502
- def keyframe_delete(self): ...
503
- def keyframe_insert(self): ...
504
- def keys(self): ...
505
- def path_from_id(self): ...
506
- def path_resolve(self): ...
507
- def poll(self, context):
508
- """
424
+ def is_extended(self):
425
+ """ """
426
+ ...
509
427
 
510
- :param context:
511
- :type context:
512
- """
428
+ def is_property_hidden(self):
429
+ """ """
513
430
  ...
514
431
 
515
- def pop(self): ...
516
- def prepend(self, draw_func):
517
- """
432
+ def is_property_overridable_library(self):
433
+ """ """
434
+ ...
518
435
 
519
- :param draw_func:
520
- :type draw_func:
521
- """
436
+ def is_property_readonly(self):
437
+ """ """
522
438
  ...
523
439
 
524
- def property_overridable_library_set(self): ...
525
- def property_unset(self): ...
526
- def remove(self, draw_func):
527
- """
440
+ def is_property_set(self):
441
+ """ """
442
+ ...
528
443
 
529
- :param draw_func:
530
- :type draw_func:
531
- """
444
+ def items(self):
445
+ """ """
532
446
  ...
533
447
 
534
- def type_recast(self): ...
535
- def values(self): ...
448
+ def keyframe_delete(self):
449
+ """ """
450
+ ...
536
451
 
537
- class VIEWLAYER_PT_eevee_next_layer_passes_data(
538
- ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
539
- ):
540
- COMPAT_ENGINES: typing.Any
541
- bl_context: typing.Any
542
- bl_label: typing.Any
543
- bl_parent_id: typing.Any
544
- bl_region_type: typing.Any
545
- bl_rna: typing.Any
546
- bl_space_type: typing.Any
547
- id_data: typing.Any
452
+ def keyframe_insert(self):
453
+ """ """
454
+ ...
548
455
 
549
- def append(self, draw_func):
550
- """
456
+ def keys(self):
457
+ """ """
458
+ ...
551
459
 
552
- :param draw_func:
553
- :type draw_func:
554
- """
460
+ def path_from_id(self):
461
+ """ """
555
462
  ...
556
463
 
557
- def as_pointer(self): ...
558
- def bl_rna_get_subclass(self): ...
559
- def bl_rna_get_subclass_py(self): ...
560
- def draw(self, context):
561
- """
464
+ def path_resolve(self):
465
+ """ """
466
+ ...
562
467
 
563
- :param self:
564
- :type self:
565
- :param context:
566
- :type context:
567
- """
568
- ...
569
-
570
- def driver_add(self): ...
571
- def driver_remove(self): ...
572
- def get(self): ...
573
- def id_properties_clear(self): ...
574
- def id_properties_ensure(self): ...
575
- def id_properties_ui(self): ...
576
- def is_extended(self): ...
577
- def is_property_hidden(self): ...
578
- def is_property_overridable_library(self): ...
579
- def is_property_readonly(self): ...
580
- def is_property_set(self): ...
581
- def items(self): ...
582
- def keyframe_delete(self): ...
583
- def keyframe_insert(self): ...
584
- def keys(self): ...
585
- def path_from_id(self): ...
586
- def path_resolve(self): ...
587
468
  def poll(self, context):
588
469
  """
589
470
 
590
471
  :param context:
591
- :type context:
592
472
  """
593
473
  ...
594
474
 
595
- def pop(self): ...
475
+ def pop(self):
476
+ """ """
477
+ ...
478
+
596
479
  def prepend(self, draw_func):
597
480
  """
598
481
 
599
482
  :param draw_func:
600
- :type draw_func:
601
483
  """
602
484
  ...
603
485
 
604
- def property_overridable_library_set(self): ...
605
- def property_unset(self): ...
486
+ def property_overridable_library_set(self):
487
+ """ """
488
+ ...
489
+
490
+ def property_unset(self):
491
+ """ """
492
+ ...
493
+
606
494
  def remove(self, draw_func):
607
495
  """
608
496
 
609
497
  :param draw_func:
610
- :type draw_func:
611
498
  """
612
499
  ...
613
500
 
614
- def type_recast(self): ...
615
- def values(self): ...
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
+ """ """
616
511
 
617
- class VIEWLAYER_PT_eevee_next_layer_passes_light(
618
- ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
619
- ):
620
512
  COMPAT_ENGINES: typing.Any
513
+ """ """
514
+
621
515
  bl_context: typing.Any
516
+ """ """
517
+
622
518
  bl_label: typing.Any
519
+ """ """
520
+
623
521
  bl_parent_id: typing.Any
522
+ """ """
523
+
624
524
  bl_region_type: typing.Any
525
+ """ """
526
+
625
527
  bl_rna: typing.Any
528
+ """ """
529
+
626
530
  bl_space_type: typing.Any
531
+ """ """
532
+
627
533
  id_data: typing.Any
534
+ """ """
628
535
 
629
536
  def append(self, draw_func):
630
537
  """
631
538
 
632
539
  :param draw_func:
633
- :type draw_func:
634
540
  """
635
541
  ...
636
542
 
637
- def as_pointer(self): ...
638
- def bl_rna_get_subclass(self): ...
639
- def bl_rna_get_subclass_py(self): ...
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
+
640
555
  def draw(self, context):
641
556
  """
642
557
 
643
- :param self:
644
- :type self:
645
558
  :param context:
646
- :type context:
647
- """
648
- ...
649
-
650
- def driver_add(self): ...
651
- def driver_remove(self): ...
652
- def get(self): ...
653
- def id_properties_clear(self): ...
654
- def id_properties_ensure(self): ...
655
- def id_properties_ui(self): ...
656
- def is_extended(self): ...
657
- def is_property_hidden(self): ...
658
- def is_property_overridable_library(self): ...
659
- def is_property_readonly(self): ...
660
- def is_property_set(self): ...
661
- def items(self): ...
662
- def keyframe_delete(self): ...
663
- def keyframe_insert(self): ...
664
- def keys(self): ...
665
- def path_from_id(self): ...
666
- def path_resolve(self): ...
667
- def poll(self, 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):
668
631
  """
669
632
 
670
633
  :param context:
671
- :type context:
672
634
  """
673
635
  ...
674
636
 
675
- def pop(self): ...
637
+ def pop(self):
638
+ """ """
639
+ ...
640
+
676
641
  def prepend(self, draw_func):
677
642
  """
678
643
 
679
644
  :param draw_func:
680
- :type draw_func:
681
645
  """
682
646
  ...
683
647
 
684
- def property_overridable_library_set(self): ...
685
- def property_unset(self): ...
648
+ def property_overridable_library_set(self):
649
+ """ """
650
+ ...
651
+
652
+ def property_unset(self):
653
+ """ """
654
+ ...
655
+
686
656
  def remove(self, draw_func):
687
657
  """
688
658
 
689
659
  :param draw_func:
690
- :type draw_func:
691
660
  """
692
661
  ...
693
662
 
694
- def type_recast(self): ...
695
- def values(self): ...
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
+ """ """
696
673
 
697
- class VIEWLAYER_PT_filter(ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
698
674
  COMPAT_ENGINES: typing.Any
675
+ """ """
676
+
699
677
  bl_context: typing.Any
678
+ """ """
679
+
700
680
  bl_label: typing.Any
701
- bl_options: typing.Any
681
+ """ """
682
+
683
+ bl_parent_id: typing.Any
684
+ """ """
685
+
702
686
  bl_region_type: typing.Any
687
+ """ """
688
+
703
689
  bl_rna: typing.Any
690
+ """ """
691
+
704
692
  bl_space_type: typing.Any
693
+ """ """
694
+
705
695
  id_data: typing.Any
696
+ """ """
706
697
 
707
698
  def append(self, draw_func):
708
699
  """
709
700
 
710
701
  :param draw_func:
711
- :type draw_func:
712
702
  """
713
703
  ...
714
704
 
715
- def as_pointer(self): ...
716
- def bl_rna_get_subclass(self): ...
717
- def bl_rna_get_subclass_py(self): ...
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
+
718
717
  def draw(self, context):
719
718
  """
720
719
 
721
- :param self:
722
- :type self:
723
720
  :param context:
724
- :type context:
725
- """
726
- ...
727
-
728
- def driver_add(self): ...
729
- def driver_remove(self): ...
730
- def get(self): ...
731
- def id_properties_clear(self): ...
732
- def id_properties_ensure(self): ...
733
- def id_properties_ui(self): ...
734
- def is_extended(self): ...
735
- def is_property_hidden(self): ...
736
- def is_property_overridable_library(self): ...
737
- def is_property_readonly(self): ...
738
- def is_property_set(self): ...
739
- def items(self): ...
740
- def keyframe_delete(self): ...
741
- def keyframe_insert(self): ...
742
- def keys(self): ...
743
- def path_from_id(self): ...
744
- def path_resolve(self): ...
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
+
745
792
  def poll(self, context):
746
793
  """
747
794
 
748
795
  :param context:
749
- :type context:
750
796
  """
751
797
  ...
752
798
 
753
- def pop(self): ...
799
+ def pop(self):
800
+ """ """
801
+ ...
802
+
754
803
  def prepend(self, draw_func):
755
804
  """
756
805
 
757
806
  :param draw_func:
758
- :type draw_func:
759
807
  """
760
808
  ...
761
809
 
762
- def property_overridable_library_set(self): ...
763
- def property_unset(self): ...
810
+ def property_overridable_library_set(self):
811
+ """ """
812
+ ...
813
+
814
+ def property_unset(self):
815
+ """ """
816
+ ...
817
+
764
818
  def remove(self, draw_func):
765
819
  """
766
820
 
767
821
  :param draw_func:
768
- :type draw_func:
769
822
  """
770
823
  ...
771
824
 
772
- def type_recast(self): ...
773
- def values(self): ...
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
+ """ """
774
835
 
775
- class VIEWLAYER_PT_layer(ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
776
836
  COMPAT_ENGINES: typing.Any
837
+ """ """
838
+
777
839
  bl_context: typing.Any
840
+ """ """
841
+
778
842
  bl_label: typing.Any
843
+ """ """
844
+
845
+ bl_parent_id: typing.Any
846
+ """ """
847
+
779
848
  bl_region_type: typing.Any
849
+ """ """
850
+
780
851
  bl_rna: typing.Any
852
+ """ """
853
+
781
854
  bl_space_type: typing.Any
855
+ """ """
856
+
782
857
  id_data: typing.Any
858
+ """ """
783
859
 
784
860
  def append(self, draw_func):
785
861
  """
786
862
 
787
863
  :param draw_func:
788
- :type draw_func:
789
864
  """
790
865
  ...
791
866
 
792
- def as_pointer(self): ...
793
- def bl_rna_get_subclass(self): ...
794
- def bl_rna_get_subclass_py(self): ...
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
+
795
879
  def draw(self, context):
796
880
  """
797
881
 
798
- :param self:
799
- :type self:
800
882
  :param context:
801
- :type context:
802
- """
803
- ...
804
-
805
- def driver_add(self): ...
806
- def driver_remove(self): ...
807
- def get(self): ...
808
- def id_properties_clear(self): ...
809
- def id_properties_ensure(self): ...
810
- def id_properties_ui(self): ...
811
- def is_extended(self): ...
812
- def is_property_hidden(self): ...
813
- def is_property_overridable_library(self): ...
814
- def is_property_readonly(self): ...
815
- def is_property_set(self): ...
816
- def items(self): ...
817
- def keyframe_delete(self): ...
818
- def keyframe_insert(self): ...
819
- def keys(self): ...
820
- def path_from_id(self): ...
821
- def path_resolve(self): ...
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
+
822
954
  def poll(self, context):
823
955
  """
824
956
 
825
957
  :param context:
826
- :type context:
827
958
  """
828
959
  ...
829
960
 
830
- def pop(self): ...
961
+ def pop(self):
962
+ """ """
963
+ ...
964
+
831
965
  def prepend(self, draw_func):
832
966
  """
833
967
 
834
968
  :param draw_func:
835
- :type draw_func:
836
969
  """
837
970
  ...
838
971
 
839
- def property_overridable_library_set(self): ...
840
- def property_unset(self): ...
972
+ def property_overridable_library_set(self):
973
+ """ """
974
+ ...
975
+
976
+ def property_unset(self):
977
+ """ """
978
+ ...
979
+
841
980
  def remove(self, draw_func):
842
981
  """
843
982
 
844
983
  :param draw_func:
845
- :type draw_func:
846
984
  """
847
985
  ...
848
986
 
849
- def type_recast(self): ...
850
- def values(self): ...
987
+ def type_recast(self):
988
+ """ """
989
+ ...
990
+
991
+ def values(self):
992
+ """ """
993
+ ...
994
+
995
+ class VIEWLAYER_PT_filter(bpy_types._GenericUI):
996
+ """ """
851
997
 
852
- class VIEWLAYER_PT_layer_passes(
853
- ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
854
- ):
855
998
  COMPAT_ENGINES: typing.Any
999
+ """ """
1000
+
856
1001
  bl_context: typing.Any
1002
+ """ """
1003
+
857
1004
  bl_label: typing.Any
1005
+ """ """
1006
+
1007
+ bl_options: typing.Any
1008
+ """ """
1009
+
858
1010
  bl_region_type: typing.Any
1011
+ """ """
1012
+
859
1013
  bl_rna: typing.Any
1014
+ """ """
1015
+
860
1016
  bl_space_type: typing.Any
1017
+ """ """
1018
+
861
1019
  id_data: typing.Any
1020
+ """ """
862
1021
 
863
1022
  def append(self, draw_func):
864
1023
  """
865
1024
 
866
- :param draw_func:
867
- :type draw_func:
868
- """
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
+ """ """
1162
+
1163
+ bl_context: typing.Any
1164
+ """ """
1165
+
1166
+ bl_label: typing.Any
1167
+ """ """
1168
+
1169
+ bl_region_type: typing.Any
1170
+ """ """
1171
+
1172
+ bl_rna: typing.Any
1173
+ """ """
1174
+
1175
+ bl_space_type: typing.Any
1176
+ """ """
1177
+
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
+ """ """
1318
+
1319
+ bl_context: typing.Any
1320
+ """ """
1321
+
1322
+ bl_label: typing.Any
1323
+ """ """
1324
+
1325
+ bl_options: typing.Any
1326
+ """ """
1327
+
1328
+ bl_order: typing.Any
1329
+ """ """
1330
+
1331
+ bl_region_type: typing.Any
1332
+ """ """
1333
+
1334
+ bl_rna: typing.Any
1335
+ """ """
1336
+
1337
+ bl_space_type: typing.Any
1338
+ """ """
1339
+
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
+ """ """
1480
+
1481
+ COMPAT_ENGINES: typing.Any
1482
+ """ """
1483
+
1484
+ bl_context: typing.Any
1485
+ """ """
1486
+
1487
+ bl_label: typing.Any
1488
+ """ """
1489
+
1490
+ bl_region_type: typing.Any
1491
+ """ """
1492
+
1493
+ bl_rna: typing.Any
1494
+ """ """
1495
+
1496
+ bl_space_type: typing.Any
1497
+ """ """
1498
+
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
+ """ """
1639
+
1640
+ COMPAT_ENGINES: typing.Any
1641
+ """ """
1642
+
1643
+ bl_context: typing.Any
1644
+ """ """
1645
+
1646
+ bl_label: typing.Any
1647
+ """ """
1648
+
1649
+ bl_parent_id: typing.Any
1650
+ """ """
1651
+
1652
+ bl_region_type: typing.Any
1653
+ """ """
1654
+
1655
+ bl_rna: typing.Any
1656
+ """ """
1657
+
1658
+ bl_space_type: typing.Any
1659
+ """ """
1660
+
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
+ """ """
869
2386
  ...
870
2387
 
871
- def as_pointer(self): ...
872
- def bl_rna_get_subclass(self): ...
873
- def bl_rna_get_subclass_py(self): ...
874
- def draw(self, context):
875
- """
2388
+ def path_from_id(self):
2389
+ """ """
2390
+ ...
876
2391
 
877
- :param self:
878
- :type self:
879
- :param context:
880
- :type context:
881
- """
882
- ...
883
-
884
- def driver_add(self): ...
885
- def driver_remove(self): ...
886
- def get(self): ...
887
- def id_properties_clear(self): ...
888
- def id_properties_ensure(self): ...
889
- def id_properties_ui(self): ...
890
- def is_extended(self): ...
891
- def is_property_hidden(self): ...
892
- def is_property_overridable_library(self): ...
893
- def is_property_readonly(self): ...
894
- def is_property_set(self): ...
895
- def items(self): ...
896
- def keyframe_delete(self): ...
897
- def keyframe_insert(self): ...
898
- def keys(self): ...
899
- def path_from_id(self): ...
900
- def path_resolve(self): ...
901
- def poll(self, context):
902
- """
2392
+ def path_resolve(self):
2393
+ """ """
2394
+ ...
903
2395
 
904
- :param context:
905
- :type context:
906
- """
2396
+ def pop(self):
2397
+ """ """
907
2398
  ...
908
2399
 
909
- def pop(self): ...
910
2400
  def prepend(self, draw_func):
911
2401
  """
912
2402
 
913
2403
  :param draw_func:
914
- :type draw_func:
915
2404
  """
916
2405
  ...
917
2406
 
918
- def property_overridable_library_set(self): ...
919
- def property_unset(self): ...
2407
+ def property_overridable_library_set(self):
2408
+ """ """
2409
+ ...
2410
+
2411
+ def property_unset(self):
2412
+ """ """
2413
+ ...
2414
+
920
2415
  def remove(self, draw_func):
921
2416
  """
922
2417
 
923
2418
  :param draw_func:
924
- :type draw_func:
925
2419
  """
926
2420
  ...
927
2421
 
928
- def type_recast(self): ...
929
- def values(self): ...
2422
+ def type_recast(self):
2423
+ """ """
2424
+ ...
2425
+
2426
+ def values(self):
2427
+ """ """
2428
+ ...
2429
+
2430
+ class ViewLayerAOVPanel(bpy_types._GenericUI):
2431
+ """ """
930
2432
 
931
- class VIEWLAYER_PT_workbench_layer_passes_data(
932
- ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
933
- ):
934
- COMPAT_ENGINES: typing.Any
935
2433
  bl_context: typing.Any
2434
+ """ """
2435
+
936
2436
  bl_label: typing.Any
937
- bl_parent_id: typing.Any
2437
+ """ """
2438
+
938
2439
  bl_region_type: typing.Any
2440
+ """ """
2441
+
939
2442
  bl_rna: typing.Any
2443
+ """ """
2444
+
940
2445
  bl_space_type: typing.Any
2446
+ """ """
2447
+
941
2448
  id_data: typing.Any
2449
+ """ """
942
2450
 
943
2451
  def append(self, draw_func):
944
2452
  """
945
2453
 
946
2454
  :param draw_func:
947
- :type draw_func:
948
2455
  """
949
2456
  ...
950
2457
 
951
- def as_pointer(self): ...
952
- def bl_rna_get_subclass(self): ...
953
- def bl_rna_get_subclass_py(self): ...
954
- def draw(self, context):
955
- """
2458
+ def as_pointer(self):
2459
+ """ """
2460
+ ...
956
2461
 
957
- :param self:
958
- :type self:
959
- :param context:
960
- :type context:
961
- """
962
- ...
963
-
964
- def driver_add(self): ...
965
- def driver_remove(self): ...
966
- def get(self): ...
967
- def id_properties_clear(self): ...
968
- def id_properties_ensure(self): ...
969
- def id_properties_ui(self): ...
970
- def is_extended(self): ...
971
- def is_property_hidden(self): ...
972
- def is_property_overridable_library(self): ...
973
- def is_property_readonly(self): ...
974
- def is_property_set(self): ...
975
- def items(self): ...
976
- def keyframe_delete(self): ...
977
- def keyframe_insert(self): ...
978
- def keys(self): ...
979
- def path_from_id(self): ...
980
- def path_resolve(self): ...
981
- def poll(self, context):
982
- """
2462
+ def bl_rna_get_subclass(self):
2463
+ """ """
2464
+ ...
983
2465
 
984
- :param context:
985
- :type context:
986
- """
2466
+ def bl_rna_get_subclass_py(self):
2467
+ """ """
987
2468
  ...
988
2469
 
989
- def pop(self): ...
990
- def prepend(self, draw_func):
2470
+ def draw(self, context):
991
2471
  """
992
2472
 
993
- :param draw_func:
994
- :type draw_func:
2473
+ :param context:
995
2474
  """
996
2475
  ...
997
2476
 
998
- def property_overridable_library_set(self): ...
999
- def property_unset(self): ...
1000
- def remove(self, draw_func):
1001
- """
1002
-
1003
- :param draw_func:
1004
- :type draw_func:
1005
- """
2477
+ def driver_add(self):
2478
+ """ """
1006
2479
  ...
1007
2480
 
1008
- def type_recast(self): ...
1009
- def values(self): ...
2481
+ def driver_remove(self):
2482
+ """ """
2483
+ ...
1010
2484
 
1011
- class ViewLayerAOVPanel(ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1012
- bl_context: typing.Any
1013
- bl_label: typing.Any
1014
- bl_region_type: typing.Any
1015
- bl_rna: typing.Any
1016
- bl_space_type: typing.Any
1017
- id_data: typing.Any
2485
+ def get(self):
2486
+ """ """
2487
+ ...
1018
2488
 
1019
- def append(self, draw_func):
1020
- """
2489
+ def id_properties_clear(self):
2490
+ """ """
2491
+ ...
1021
2492
 
1022
- :param draw_func:
1023
- :type draw_func:
1024
- """
2493
+ def id_properties_ensure(self):
2494
+ """ """
1025
2495
  ...
1026
2496
 
1027
- def as_pointer(self): ...
1028
- def bl_rna_get_subclass(self): ...
1029
- def bl_rna_get_subclass_py(self): ...
1030
- def draw(self, context):
1031
- """
2497
+ def id_properties_ui(self):
2498
+ """ """
2499
+ ...
1032
2500
 
1033
- :param self:
1034
- :type self:
1035
- :param context:
1036
- :type context:
1037
- """
1038
- ...
1039
-
1040
- def driver_add(self): ...
1041
- def driver_remove(self): ...
1042
- def get(self): ...
1043
- def id_properties_clear(self): ...
1044
- def id_properties_ensure(self): ...
1045
- def id_properties_ui(self): ...
1046
- def is_extended(self): ...
1047
- def is_property_hidden(self): ...
1048
- def is_property_overridable_library(self): ...
1049
- def is_property_readonly(self): ...
1050
- def is_property_set(self): ...
1051
- def items(self): ...
1052
- def keyframe_delete(self): ...
1053
- def keyframe_insert(self): ...
1054
- def keys(self): ...
1055
- def path_from_id(self): ...
1056
- def path_resolve(self): ...
1057
- def poll(self, context):
1058
- """
2501
+ def is_extended(self):
2502
+ """ """
2503
+ ...
1059
2504
 
1060
- :param context:
1061
- :type context:
1062
- """
2505
+ def is_property_hidden(self):
2506
+ """ """
1063
2507
  ...
1064
2508
 
1065
- def pop(self): ...
1066
- def prepend(self, draw_func):
1067
- """
2509
+ def is_property_overridable_library(self):
2510
+ """ """
2511
+ ...
1068
2512
 
1069
- :param draw_func:
1070
- :type draw_func:
1071
- """
2513
+ def is_property_readonly(self):
2514
+ """ """
1072
2515
  ...
1073
2516
 
1074
- def property_overridable_library_set(self): ...
1075
- def property_unset(self): ...
1076
- def remove(self, draw_func):
1077
- """
2517
+ def is_property_set(self):
2518
+ """ """
2519
+ ...
1078
2520
 
1079
- :param draw_func:
1080
- :type draw_func:
1081
- """
2521
+ def items(self):
2522
+ """ """
1082
2523
  ...
1083
2524
 
1084
- def type_recast(self): ...
1085
- def values(self): ...
2525
+ def keyframe_delete(self):
2526
+ """ """
2527
+ ...
1086
2528
 
1087
- class ViewLayerCryptomattePanel(
1088
- ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
1089
- ):
1090
- bl_context: typing.Any
1091
- bl_label: typing.Any
1092
- bl_region_type: typing.Any
1093
- bl_rna: typing.Any
1094
- bl_space_type: typing.Any
1095
- id_data: typing.Any
2529
+ def keyframe_insert(self):
2530
+ """ """
2531
+ ...
1096
2532
 
1097
- def append(self, draw_func):
1098
- """
2533
+ def keys(self):
2534
+ """ """
2535
+ ...
1099
2536
 
1100
- :param draw_func:
1101
- :type draw_func:
1102
- """
2537
+ def path_from_id(self):
2538
+ """ """
1103
2539
  ...
1104
2540
 
1105
- def as_pointer(self): ...
1106
- def bl_rna_get_subclass(self): ...
1107
- def bl_rna_get_subclass_py(self): ...
1108
- def draw(self, context):
1109
- """
2541
+ def path_resolve(self):
2542
+ """ """
2543
+ ...
1110
2544
 
1111
- :param self:
1112
- :type self:
1113
- :param context:
1114
- :type context:
1115
- """
1116
- ...
1117
-
1118
- def driver_add(self): ...
1119
- def driver_remove(self): ...
1120
- def get(self): ...
1121
- def id_properties_clear(self): ...
1122
- def id_properties_ensure(self): ...
1123
- def id_properties_ui(self): ...
1124
- def is_extended(self): ...
1125
- def is_property_hidden(self): ...
1126
- def is_property_overridable_library(self): ...
1127
- def is_property_readonly(self): ...
1128
- def is_property_set(self): ...
1129
- def items(self): ...
1130
- def keyframe_delete(self): ...
1131
- def keyframe_insert(self): ...
1132
- def keys(self): ...
1133
- def path_from_id(self): ...
1134
- def path_resolve(self): ...
1135
2545
  def poll(self, context):
1136
2546
  """
1137
2547
 
1138
2548
  :param context:
1139
- :type context:
1140
2549
  """
1141
2550
  ...
1142
2551
 
1143
- def pop(self): ...
2552
+ def pop(self):
2553
+ """ """
2554
+ ...
2555
+
1144
2556
  def prepend(self, draw_func):
1145
2557
  """
1146
2558
 
1147
2559
  :param draw_func:
1148
- :type draw_func:
1149
2560
  """
1150
2561
  ...
1151
2562
 
1152
- def property_overridable_library_set(self): ...
1153
- def property_unset(self): ...
2563
+ def property_overridable_library_set(self):
2564
+ """ """
2565
+ ...
2566
+
2567
+ def property_unset(self):
2568
+ """ """
2569
+ ...
2570
+
1154
2571
  def remove(self, draw_func):
1155
2572
  """
1156
2573
 
1157
2574
  :param draw_func:
1158
- :type draw_func:
1159
2575
  """
1160
2576
  ...
1161
2577
 
1162
- def type_recast(self): ...
1163
- def values(self): ...
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
+ """ """
1164
2607
 
1165
- class ViewLayerLightgroupsPanel(
1166
- ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
1167
- ):
1168
2608
  bl_context: typing.Any
2609
+ """ """
2610
+
1169
2611
  bl_label: typing.Any
2612
+ """ """
2613
+
1170
2614
  bl_region_type: typing.Any
2615
+ """ """
2616
+
1171
2617
  bl_rna: typing.Any
2618
+ """ """
2619
+
1172
2620
  bl_space_type: typing.Any
2621
+ """ """
2622
+
1173
2623
  id_data: typing.Any
2624
+ """ """
1174
2625
 
1175
2626
  def append(self, draw_func):
1176
2627
  """
1177
2628
 
1178
2629
  :param draw_func:
1179
- :type draw_func:
1180
2630
  """
1181
2631
  ...
1182
2632
 
1183
- def as_pointer(self): ...
1184
- def bl_rna_get_subclass(self): ...
1185
- def bl_rna_get_subclass_py(self): ...
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
+
1186
2645
  def draw(self, context):
1187
2646
  """
1188
2647
 
1189
- :param self:
1190
- :type self:
1191
2648
  :param context:
1192
- :type context:
1193
- """
1194
- ...
1195
-
1196
- def driver_add(self): ...
1197
- def driver_remove(self): ...
1198
- def get(self): ...
1199
- def id_properties_clear(self): ...
1200
- def id_properties_ensure(self): ...
1201
- def id_properties_ui(self): ...
1202
- def is_extended(self): ...
1203
- def is_property_hidden(self): ...
1204
- def is_property_overridable_library(self): ...
1205
- def is_property_readonly(self): ...
1206
- def is_property_set(self): ...
1207
- def items(self): ...
1208
- def keyframe_delete(self): ...
1209
- def keyframe_insert(self): ...
1210
- def keys(self): ...
1211
- def path_from_id(self): ...
1212
- def path_resolve(self): ...
1213
- def poll(self, context):
1214
2649
  """
2650
+ ...
1215
2651
 
1216
- :param context:
1217
- :type context:
1218
- """
2652
+ def driver_add(self):
2653
+ """ """
1219
2654
  ...
1220
2655
 
1221
- def pop(self): ...
1222
- def prepend(self, draw_func):
1223
- """
2656
+ def driver_remove(self):
2657
+ """ """
2658
+ ...
1224
2659
 
1225
- :param draw_func:
1226
- :type draw_func:
1227
- """
2660
+ def get(self):
2661
+ """ """
1228
2662
  ...
1229
2663
 
1230
- def property_overridable_library_set(self): ...
1231
- def property_unset(self): ...
1232
- def remove(self, draw_func):
1233
- """
2664
+ def id_properties_clear(self):
2665
+ """ """
2666
+ ...
1234
2667
 
1235
- :param draw_func:
1236
- :type draw_func:
1237
- """
2668
+ def id_properties_ensure(self):
2669
+ """ """
1238
2670
  ...
1239
2671
 
1240
- def type_recast(self): ...
1241
- def values(self): ...
2672
+ def id_properties_ui(self):
2673
+ """ """
2674
+ ...
1242
2675
 
1243
- class VIEWLAYER_PT_layer_passes_aov(
1244
- ViewLayerAOVPanel, ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
1245
- ):
1246
- COMPAT_ENGINES: typing.Any
1247
- bl_context: typing.Any
1248
- bl_label: typing.Any
1249
- bl_parent_id: typing.Any
1250
- bl_region_type: typing.Any
1251
- bl_rna: typing.Any
1252
- bl_space_type: typing.Any
1253
- id_data: typing.Any
2676
+ def is_extended(self):
2677
+ """ """
2678
+ ...
1254
2679
 
1255
- def append(self, draw_func):
1256
- """
2680
+ def is_property_hidden(self):
2681
+ """ """
2682
+ ...
1257
2683
 
1258
- :param draw_func:
1259
- :type draw_func:
1260
- """
2684
+ def is_property_overridable_library(self):
2685
+ """ """
1261
2686
  ...
1262
2687
 
1263
- def as_pointer(self): ...
1264
- def bl_rna_get_subclass(self): ...
1265
- def bl_rna_get_subclass_py(self): ...
1266
- def draw(self, context):
1267
- """
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
+ ...
1268
2719
 
1269
- :param self:
1270
- :type self:
1271
- :param context:
1272
- :type context:
1273
- """
1274
- ...
1275
-
1276
- def driver_add(self): ...
1277
- def driver_remove(self): ...
1278
- def get(self): ...
1279
- def id_properties_clear(self): ...
1280
- def id_properties_ensure(self): ...
1281
- def id_properties_ui(self): ...
1282
- def is_extended(self): ...
1283
- def is_property_hidden(self): ...
1284
- def is_property_overridable_library(self): ...
1285
- def is_property_readonly(self): ...
1286
- def is_property_set(self): ...
1287
- def items(self): ...
1288
- def keyframe_delete(self): ...
1289
- def keyframe_insert(self): ...
1290
- def keys(self): ...
1291
- def path_from_id(self): ...
1292
- def path_resolve(self): ...
1293
2720
  def poll(self, context):
1294
2721
  """
1295
2722
 
1296
2723
  :param context:
1297
- :type context:
1298
2724
  """
1299
2725
  ...
1300
2726
 
1301
- def pop(self): ...
2727
+ def pop(self):
2728
+ """ """
2729
+ ...
2730
+
1302
2731
  def prepend(self, draw_func):
1303
2732
  """
1304
2733
 
1305
2734
  :param draw_func:
1306
- :type draw_func:
1307
2735
  """
1308
2736
  ...
1309
2737
 
1310
- def property_overridable_library_set(self): ...
1311
- def property_unset(self): ...
2738
+ def property_overridable_library_set(self):
2739
+ """ """
2740
+ ...
2741
+
2742
+ def property_unset(self):
2743
+ """ """
2744
+ ...
2745
+
1312
2746
  def remove(self, draw_func):
1313
2747
  """
1314
2748
 
1315
2749
  :param draw_func:
1316
- :type draw_func:
1317
2750
  """
1318
2751
  ...
1319
2752
 
1320
- def type_recast(self): ...
1321
- def values(self): ...
2753
+ def type_recast(self):
2754
+ """ """
2755
+ ...
2756
+
2757
+ def values(self):
2758
+ """ """
2759
+ ...
2760
+
2761
+ class ViewLayerLightgroupsPanel(bpy_types._GenericUI):
2762
+ """ """
1322
2763
 
1323
- class VIEWLAYER_PT_layer_passes_cryptomatte(
1324
- ViewLayerCryptomattePanel,
1325
- ViewLayerButtonsPanel,
1326
- bpy_types.Panel,
1327
- bpy_types._GenericUI,
1328
- ):
1329
- COMPAT_ENGINES: typing.Any
1330
2764
  bl_context: typing.Any
2765
+ """ """
2766
+
1331
2767
  bl_label: typing.Any
1332
- bl_parent_id: typing.Any
2768
+ """ """
2769
+
1333
2770
  bl_region_type: typing.Any
2771
+ """ """
2772
+
1334
2773
  bl_rna: typing.Any
2774
+ """ """
2775
+
1335
2776
  bl_space_type: typing.Any
2777
+ """ """
2778
+
1336
2779
  id_data: typing.Any
2780
+ """ """
1337
2781
 
1338
2782
  def append(self, draw_func):
1339
2783
  """
1340
2784
 
1341
2785
  :param draw_func:
1342
- :type draw_func:
1343
2786
  """
1344
2787
  ...
1345
2788
 
1346
- def as_pointer(self): ...
1347
- def bl_rna_get_subclass(self): ...
1348
- def bl_rna_get_subclass_py(self): ...
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
+
1349
2801
  def draw(self, context):
1350
2802
  """
1351
2803
 
1352
- :param self:
1353
- :type self:
1354
2804
  :param context:
1355
- :type context:
1356
- """
1357
- ...
1358
-
1359
- def driver_add(self): ...
1360
- def driver_remove(self): ...
1361
- def get(self): ...
1362
- def id_properties_clear(self): ...
1363
- def id_properties_ensure(self): ...
1364
- def id_properties_ui(self): ...
1365
- def is_extended(self): ...
1366
- def is_property_hidden(self): ...
1367
- def is_property_overridable_library(self): ...
1368
- def is_property_readonly(self): ...
1369
- def is_property_set(self): ...
1370
- def items(self): ...
1371
- def keyframe_delete(self): ...
1372
- def keyframe_insert(self): ...
1373
- def keys(self): ...
1374
- def path_from_id(self): ...
1375
- def path_resolve(self): ...
1376
- def poll(self, context):
1377
2805
  """
2806
+ ...
1378
2807
 
1379
- :param context:
1380
- :type context:
1381
- """
2808
+ def driver_add(self):
2809
+ """ """
1382
2810
  ...
1383
2811
 
1384
- def pop(self): ...
1385
- def prepend(self, draw_func):
1386
- """
2812
+ def driver_remove(self):
2813
+ """ """
2814
+ ...
1387
2815
 
1388
- :param draw_func:
1389
- :type draw_func:
1390
- """
2816
+ def get(self):
2817
+ """ """
1391
2818
  ...
1392
2819
 
1393
- def property_overridable_library_set(self): ...
1394
- def property_unset(self): ...
1395
- def remove(self, draw_func):
1396
- """
2820
+ def id_properties_clear(self):
2821
+ """ """
2822
+ ...
1397
2823
 
1398
- :param draw_func:
1399
- :type draw_func:
1400
- """
2824
+ def id_properties_ensure(self):
2825
+ """ """
1401
2826
  ...
1402
2827
 
1403
- def type_recast(self): ...
1404
- def values(self): ...
2828
+ def id_properties_ui(self):
2829
+ """ """
2830
+ ...
1405
2831
 
1406
- class VIEWLAYER_PT_layer_passes_lightgroups(
1407
- ViewLayerLightgroupsPanel,
1408
- ViewLayerButtonsPanel,
1409
- bpy_types.Panel,
1410
- bpy_types._GenericUI,
1411
- ):
1412
- COMPAT_ENGINES: typing.Any
1413
- bl_context: typing.Any
1414
- bl_label: typing.Any
1415
- bl_parent_id: typing.Any
1416
- bl_region_type: typing.Any
1417
- bl_rna: typing.Any
1418
- bl_space_type: typing.Any
1419
- id_data: typing.Any
2832
+ def is_extended(self):
2833
+ """ """
2834
+ ...
1420
2835
 
1421
- def append(self, draw_func):
1422
- """
2836
+ def is_property_hidden(self):
2837
+ """ """
2838
+ ...
1423
2839
 
1424
- :param draw_func:
1425
- :type draw_func:
1426
- """
2840
+ def is_property_overridable_library(self):
2841
+ """ """
1427
2842
  ...
1428
2843
 
1429
- def as_pointer(self): ...
1430
- def bl_rna_get_subclass(self): ...
1431
- def bl_rna_get_subclass_py(self): ...
1432
- def draw(self, context):
1433
- """
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
+ ...
1434
2875
 
1435
- :param self:
1436
- :type self:
1437
- :param context:
1438
- :type context:
1439
- """
1440
- ...
1441
-
1442
- def driver_add(self): ...
1443
- def driver_remove(self): ...
1444
- def get(self): ...
1445
- def id_properties_clear(self): ...
1446
- def id_properties_ensure(self): ...
1447
- def id_properties_ui(self): ...
1448
- def is_extended(self): ...
1449
- def is_property_hidden(self): ...
1450
- def is_property_overridable_library(self): ...
1451
- def is_property_readonly(self): ...
1452
- def is_property_set(self): ...
1453
- def items(self): ...
1454
- def keyframe_delete(self): ...
1455
- def keyframe_insert(self): ...
1456
- def keys(self): ...
1457
- def path_from_id(self): ...
1458
- def path_resolve(self): ...
1459
2876
  def poll(self, context):
1460
2877
  """
1461
2878
 
1462
2879
  :param context:
1463
- :type context:
1464
2880
  """
1465
2881
  ...
1466
2882
 
1467
- def pop(self): ...
2883
+ def pop(self):
2884
+ """ """
2885
+ ...
2886
+
1468
2887
  def prepend(self, draw_func):
1469
2888
  """
1470
2889
 
1471
2890
  :param draw_func:
1472
- :type draw_func:
1473
2891
  """
1474
2892
  ...
1475
2893
 
1476
- def property_overridable_library_set(self): ...
1477
- def property_unset(self): ...
2894
+ def property_overridable_library_set(self):
2895
+ """ """
2896
+ ...
2897
+
2898
+ def property_unset(self):
2899
+ """ """
2900
+ ...
2901
+
1478
2902
  def remove(self, draw_func):
1479
2903
  """
1480
2904
 
1481
2905
  :param draw_func:
1482
- :type draw_func:
1483
2906
  """
1484
2907
  ...
1485
2908
 
1486
- def type_recast(self): ...
1487
- def values(self): ...
2909
+ def type_recast(self):
2910
+ """ """
2911
+ ...
2912
+
2913
+ def values(self):
2914
+ """ """
2915
+ ...