fake-bpy-module 20240321__py3-none-any.whl → 20240324__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 +646 -823
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +331 -429
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86446 -87424
  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-20240324.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240324.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-20240324.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/top_level.txt +0 -0
@@ -1,837 +1,1667 @@
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 DataButtonsPanel:
8
- bl_context: typing.Any
9
- bl_region_type: typing.Any
10
- bl_space_type: typing.Any
11
-
12
- def poll(self, context):
13
- """
14
-
15
- :param context:
16
- :type context:
17
- """
18
- ...
6
+ class DATA_PT_EEVEE_light(bpy_types._GenericUI):
7
+ """ """
19
8
 
20
- class DATA_PT_EEVEE_light(bpy_types.Panel, DataButtonsPanel, bpy_types._GenericUI):
21
9
  COMPAT_ENGINES: typing.Any
10
+ """ """
11
+
22
12
  bl_context: typing.Any
13
+ """ """
14
+
23
15
  bl_label: typing.Any
16
+ """ """
17
+
24
18
  bl_region_type: typing.Any
19
+ """ """
20
+
25
21
  bl_rna: typing.Any
22
+ """ """
23
+
26
24
  bl_space_type: typing.Any
25
+ """ """
26
+
27
27
  id_data: typing.Any
28
+ """ """
28
29
 
29
30
  def append(self, draw_func):
30
31
  """
31
32
 
32
33
  :param draw_func:
33
- :type draw_func:
34
34
  """
35
35
  ...
36
36
 
37
- def as_pointer(self): ...
38
- def bl_rna_get_subclass(self): ...
39
- def bl_rna_get_subclass_py(self): ...
37
+ def as_pointer(self):
38
+ """ """
39
+ ...
40
+
41
+ def bl_rna_get_subclass(self):
42
+ """ """
43
+ ...
44
+
45
+ def bl_rna_get_subclass_py(self):
46
+ """ """
47
+ ...
48
+
40
49
  def draw(self, context):
41
50
  """
42
51
 
43
- :param self:
44
- :type self:
45
52
  :param context:
46
- :type context:
47
- """
48
- ...
49
-
50
- def driver_add(self): ...
51
- def driver_remove(self): ...
52
- def get(self): ...
53
- def id_properties_clear(self): ...
54
- def id_properties_ensure(self): ...
55
- def id_properties_ui(self): ...
56
- def is_extended(self): ...
57
- def is_property_hidden(self): ...
58
- def is_property_overridable_library(self): ...
59
- def is_property_readonly(self): ...
60
- def is_property_set(self): ...
61
- def items(self): ...
62
- def keyframe_delete(self): ...
63
- def keyframe_insert(self): ...
64
- def keys(self): ...
65
- def path_from_id(self): ...
66
- def path_resolve(self): ...
67
- def poll(self, context):
68
53
  """
54
+ ...
69
55
 
70
- :param context:
71
- :type context:
72
- """
56
+ def driver_add(self):
57
+ """ """
73
58
  ...
74
59
 
75
- def pop(self): ...
76
- def prepend(self, draw_func):
77
- """
60
+ def driver_remove(self):
61
+ """ """
62
+ ...
78
63
 
79
- :param draw_func:
80
- :type draw_func:
81
- """
64
+ def get(self):
65
+ """ """
82
66
  ...
83
67
 
84
- def property_overridable_library_set(self): ...
85
- def property_unset(self): ...
86
- def remove(self, draw_func):
87
- """
68
+ def id_properties_clear(self):
69
+ """ """
70
+ ...
88
71
 
89
- :param draw_func:
90
- :type draw_func:
91
- """
72
+ def id_properties_ensure(self):
73
+ """ """
92
74
  ...
93
75
 
94
- def type_recast(self): ...
95
- def values(self): ...
76
+ def id_properties_ui(self):
77
+ """ """
78
+ ...
96
79
 
97
- class DATA_PT_EEVEE_light_distance(
98
- bpy_types.Panel, DataButtonsPanel, bpy_types._GenericUI
99
- ):
100
- COMPAT_ENGINES: typing.Any
101
- bl_context: typing.Any
102
- bl_label: typing.Any
103
- bl_options: typing.Any
104
- bl_parent_id: typing.Any
105
- bl_region_type: typing.Any
106
- bl_rna: typing.Any
107
- bl_space_type: typing.Any
108
- id_data: typing.Any
80
+ def is_extended(self):
81
+ """ """
82
+ ...
109
83
 
110
- def append(self, draw_func):
111
- """
84
+ def is_property_hidden(self):
85
+ """ """
86
+ ...
112
87
 
113
- :param draw_func:
114
- :type draw_func:
115
- """
88
+ def is_property_overridable_library(self):
89
+ """ """
116
90
  ...
117
91
 
118
- def as_pointer(self): ...
119
- def bl_rna_get_subclass(self): ...
120
- def bl_rna_get_subclass_py(self): ...
121
- def draw(self, context):
122
- """
92
+ def is_property_readonly(self):
93
+ """ """
94
+ ...
123
95
 
124
- :param self:
125
- :type self:
126
- :param context:
127
- :type context:
128
- """
96
+ def is_property_set(self):
97
+ """ """
129
98
  ...
130
99
 
131
- def draw_header(self, context):
132
- """
100
+ def items(self):
101
+ """ """
102
+ ...
103
+
104
+ def keyframe_delete(self):
105
+ """ """
106
+ ...
107
+
108
+ def keyframe_insert(self):
109
+ """ """
110
+ ...
111
+
112
+ def keys(self):
113
+ """ """
114
+ ...
115
+
116
+ def path_from_id(self):
117
+ """ """
118
+ ...
119
+
120
+ def path_resolve(self):
121
+ """ """
122
+ ...
133
123
 
134
- :param self:
135
- :type self:
136
- :param context:
137
- :type context:
138
- """
139
- ...
140
-
141
- def driver_add(self): ...
142
- def driver_remove(self): ...
143
- def get(self): ...
144
- def id_properties_clear(self): ...
145
- def id_properties_ensure(self): ...
146
- def id_properties_ui(self): ...
147
- def is_extended(self): ...
148
- def is_property_hidden(self): ...
149
- def is_property_overridable_library(self): ...
150
- def is_property_readonly(self): ...
151
- def is_property_set(self): ...
152
- def items(self): ...
153
- def keyframe_delete(self): ...
154
- def keyframe_insert(self): ...
155
- def keys(self): ...
156
- def path_from_id(self): ...
157
- def path_resolve(self): ...
158
124
  def poll(self, context):
159
125
  """
160
126
 
161
127
  :param context:
162
- :type context:
163
128
  """
164
129
  ...
165
130
 
166
- def pop(self): ...
131
+ def pop(self):
132
+ """ """
133
+ ...
134
+
167
135
  def prepend(self, draw_func):
168
136
  """
169
137
 
170
138
  :param draw_func:
171
- :type draw_func:
172
139
  """
173
140
  ...
174
141
 
175
- def property_overridable_library_set(self): ...
176
- def property_unset(self): ...
142
+ def property_overridable_library_set(self):
143
+ """ """
144
+ ...
145
+
146
+ def property_unset(self):
147
+ """ """
148
+ ...
149
+
177
150
  def remove(self, draw_func):
178
151
  """
179
152
 
180
153
  :param draw_func:
181
- :type draw_func:
182
154
  """
183
155
  ...
184
156
 
185
- def type_recast(self): ...
186
- def values(self): ...
157
+ def type_recast(self):
158
+ """ """
159
+ ...
160
+
161
+ def values(self):
162
+ """ """
163
+ ...
164
+
165
+ class DATA_PT_EEVEE_light_distance(bpy_types._GenericUI):
166
+ """ """
187
167
 
188
- class DATA_PT_EEVEE_shadow(bpy_types.Panel, DataButtonsPanel, bpy_types._GenericUI):
189
168
  COMPAT_ENGINES: typing.Any
169
+ """ """
170
+
190
171
  bl_context: typing.Any
172
+ """ """
173
+
191
174
  bl_label: typing.Any
175
+ """ """
176
+
192
177
  bl_options: typing.Any
178
+ """ """
179
+
180
+ bl_parent_id: typing.Any
181
+ """ """
182
+
193
183
  bl_region_type: typing.Any
184
+ """ """
185
+
194
186
  bl_rna: typing.Any
187
+ """ """
188
+
195
189
  bl_space_type: typing.Any
190
+ """ """
191
+
196
192
  id_data: typing.Any
193
+ """ """
197
194
 
198
195
  def append(self, draw_func):
199
196
  """
200
197
 
201
198
  :param draw_func:
202
- :type draw_func:
203
199
  """
204
200
  ...
205
201
 
206
- def as_pointer(self): ...
207
- def bl_rna_get_subclass(self): ...
208
- def bl_rna_get_subclass_py(self): ...
202
+ def as_pointer(self):
203
+ """ """
204
+ ...
205
+
206
+ def bl_rna_get_subclass(self):
207
+ """ """
208
+ ...
209
+
210
+ def bl_rna_get_subclass_py(self):
211
+ """ """
212
+ ...
213
+
209
214
  def draw(self, context):
210
215
  """
211
216
 
212
- :param self:
213
- :type self:
214
217
  :param context:
215
- :type context:
216
218
  """
217
219
  ...
218
220
 
219
221
  def draw_header(self, context):
220
222
  """
221
223
 
222
- :param self:
223
- :type self:
224
224
  :param context:
225
- :type context:
226
- """
227
- ...
228
-
229
- def driver_add(self): ...
230
- def driver_remove(self): ...
231
- def get(self): ...
232
- def id_properties_clear(self): ...
233
- def id_properties_ensure(self): ...
234
- def id_properties_ui(self): ...
235
- def is_extended(self): ...
236
- def is_property_hidden(self): ...
237
- def is_property_overridable_library(self): ...
238
- def is_property_readonly(self): ...
239
- def is_property_set(self): ...
240
- def items(self): ...
241
- def keyframe_delete(self): ...
242
- def keyframe_insert(self): ...
243
- def keys(self): ...
244
- def path_from_id(self): ...
245
- def path_resolve(self): ...
246
- def poll(self, context):
247
225
  """
226
+ ...
248
227
 
249
- :param context:
250
- :type context:
251
- """
228
+ def driver_add(self):
229
+ """ """
252
230
  ...
253
231
 
254
- def pop(self): ...
255
- def prepend(self, draw_func):
256
- """
232
+ def driver_remove(self):
233
+ """ """
234
+ ...
257
235
 
258
- :param draw_func:
259
- :type draw_func:
260
- """
236
+ def get(self):
237
+ """ """
261
238
  ...
262
239
 
263
- def property_overridable_library_set(self): ...
264
- def property_unset(self): ...
265
- def remove(self, draw_func):
266
- """
240
+ def id_properties_clear(self):
241
+ """ """
242
+ ...
267
243
 
268
- :param draw_func:
269
- :type draw_func:
270
- """
244
+ def id_properties_ensure(self):
245
+ """ """
271
246
  ...
272
247
 
273
- def type_recast(self): ...
274
- def values(self): ...
248
+ def id_properties_ui(self):
249
+ """ """
250
+ ...
275
251
 
276
- class DATA_PT_EEVEE_shadow_cascaded_shadow_map(
277
- bpy_types.Panel, DataButtonsPanel, bpy_types._GenericUI
278
- ):
279
- COMPAT_ENGINES: typing.Any
280
- bl_context: typing.Any
281
- bl_label: typing.Any
282
- bl_options: typing.Any
283
- bl_parent_id: typing.Any
284
- bl_region_type: typing.Any
285
- bl_rna: typing.Any
286
- bl_space_type: typing.Any
287
- id_data: typing.Any
252
+ def is_extended(self):
253
+ """ """
254
+ ...
288
255
 
289
- def append(self, draw_func):
290
- """
256
+ def is_property_hidden(self):
257
+ """ """
258
+ ...
291
259
 
292
- :param draw_func:
293
- :type draw_func:
294
- """
260
+ def is_property_overridable_library(self):
261
+ """ """
295
262
  ...
296
263
 
297
- def as_pointer(self): ...
298
- def bl_rna_get_subclass(self): ...
299
- def bl_rna_get_subclass_py(self): ...
300
- def draw(self, context):
301
- """
264
+ def is_property_readonly(self):
265
+ """ """
266
+ ...
267
+
268
+ def is_property_set(self):
269
+ """ """
270
+ ...
271
+
272
+ def items(self):
273
+ """ """
274
+ ...
275
+
276
+ def keyframe_delete(self):
277
+ """ """
278
+ ...
279
+
280
+ def keyframe_insert(self):
281
+ """ """
282
+ ...
283
+
284
+ def keys(self):
285
+ """ """
286
+ ...
287
+
288
+ def path_from_id(self):
289
+ """ """
290
+ ...
291
+
292
+ def path_resolve(self):
293
+ """ """
294
+ ...
302
295
 
303
- :param self:
304
- :type self:
305
- :param context:
306
- :type context:
307
- """
308
- ...
309
-
310
- def driver_add(self): ...
311
- def driver_remove(self): ...
312
- def get(self): ...
313
- def id_properties_clear(self): ...
314
- def id_properties_ensure(self): ...
315
- def id_properties_ui(self): ...
316
- def is_extended(self): ...
317
- def is_property_hidden(self): ...
318
- def is_property_overridable_library(self): ...
319
- def is_property_readonly(self): ...
320
- def is_property_set(self): ...
321
- def items(self): ...
322
- def keyframe_delete(self): ...
323
- def keyframe_insert(self): ...
324
- def keys(self): ...
325
- def path_from_id(self): ...
326
- def path_resolve(self): ...
327
296
  def poll(self, context):
328
297
  """
329
298
 
330
299
  :param context:
331
- :type context:
332
300
  """
333
301
  ...
334
302
 
335
- def pop(self): ...
303
+ def pop(self):
304
+ """ """
305
+ ...
306
+
336
307
  def prepend(self, draw_func):
337
308
  """
338
309
 
339
310
  :param draw_func:
340
- :type draw_func:
341
311
  """
342
312
  ...
343
313
 
344
- def property_overridable_library_set(self): ...
345
- def property_unset(self): ...
314
+ def property_overridable_library_set(self):
315
+ """ """
316
+ ...
317
+
318
+ def property_unset(self):
319
+ """ """
320
+ ...
321
+
346
322
  def remove(self, draw_func):
347
323
  """
348
324
 
349
325
  :param draw_func:
350
- :type draw_func:
351
326
  """
352
327
  ...
353
328
 
354
- def type_recast(self): ...
355
- def values(self): ...
329
+ def type_recast(self):
330
+ """ """
331
+ ...
332
+
333
+ def values(self):
334
+ """ """
335
+ ...
336
+
337
+ class DATA_PT_EEVEE_shadow(bpy_types._GenericUI):
338
+ """ """
356
339
 
357
- class DATA_PT_EEVEE_shadow_contact(
358
- bpy_types.Panel, DataButtonsPanel, bpy_types._GenericUI
359
- ):
360
340
  COMPAT_ENGINES: typing.Any
341
+ """ """
342
+
361
343
  bl_context: typing.Any
344
+ """ """
345
+
362
346
  bl_label: typing.Any
363
- bl_parent_id: typing.Any
347
+ """ """
348
+
349
+ bl_options: typing.Any
350
+ """ """
351
+
364
352
  bl_region_type: typing.Any
353
+ """ """
354
+
365
355
  bl_rna: typing.Any
356
+ """ """
357
+
366
358
  bl_space_type: typing.Any
359
+ """ """
360
+
367
361
  id_data: typing.Any
362
+ """ """
368
363
 
369
364
  def append(self, draw_func):
370
365
  """
371
366
 
372
367
  :param draw_func:
373
- :type draw_func:
374
368
  """
375
369
  ...
376
370
 
377
- def as_pointer(self): ...
378
- def bl_rna_get_subclass(self): ...
379
- def bl_rna_get_subclass_py(self): ...
371
+ def as_pointer(self):
372
+ """ """
373
+ ...
374
+
375
+ def bl_rna_get_subclass(self):
376
+ """ """
377
+ ...
378
+
379
+ def bl_rna_get_subclass_py(self):
380
+ """ """
381
+ ...
382
+
380
383
  def draw(self, context):
381
384
  """
382
385
 
383
- :param self:
384
- :type self:
385
386
  :param context:
386
- :type context:
387
387
  """
388
388
  ...
389
389
 
390
390
  def draw_header(self, context):
391
391
  """
392
392
 
393
- :param self:
394
- :type self:
395
393
  :param context:
396
- :type context:
397
- """
398
- ...
399
-
400
- def driver_add(self): ...
401
- def driver_remove(self): ...
402
- def get(self): ...
403
- def id_properties_clear(self): ...
404
- def id_properties_ensure(self): ...
405
- def id_properties_ui(self): ...
406
- def is_extended(self): ...
407
- def is_property_hidden(self): ...
408
- def is_property_overridable_library(self): ...
409
- def is_property_readonly(self): ...
410
- def is_property_set(self): ...
411
- def items(self): ...
412
- def keyframe_delete(self): ...
413
- def keyframe_insert(self): ...
414
- def keys(self): ...
415
- def path_from_id(self): ...
416
- def path_resolve(self): ...
417
- def poll(self, context):
418
394
  """
395
+ ...
419
396
 
420
- :param context:
421
- :type context:
422
- """
397
+ def driver_add(self):
398
+ """ """
423
399
  ...
424
400
 
425
- def pop(self): ...
426
- def prepend(self, draw_func):
427
- """
401
+ def driver_remove(self):
402
+ """ """
403
+ ...
428
404
 
429
- :param draw_func:
430
- :type draw_func:
431
- """
405
+ def get(self):
406
+ """ """
432
407
  ...
433
408
 
434
- def property_overridable_library_set(self): ...
435
- def property_unset(self): ...
436
- def remove(self, draw_func):
437
- """
409
+ def id_properties_clear(self):
410
+ """ """
411
+ ...
438
412
 
439
- :param draw_func:
440
- :type draw_func:
441
- """
413
+ def id_properties_ensure(self):
414
+ """ """
442
415
  ...
443
416
 
444
- def type_recast(self): ...
445
- def values(self): ...
417
+ def id_properties_ui(self):
418
+ """ """
419
+ ...
446
420
 
447
- class DATA_PT_context_light(bpy_types.Panel, DataButtonsPanel, bpy_types._GenericUI):
448
- COMPAT_ENGINES: typing.Any
449
- bl_context: typing.Any
450
- bl_label: typing.Any
451
- bl_options: typing.Any
452
- bl_region_type: typing.Any
453
- bl_rna: typing.Any
454
- bl_space_type: typing.Any
455
- id_data: typing.Any
421
+ def is_extended(self):
422
+ """ """
423
+ ...
456
424
 
457
- def append(self, draw_func):
458
- """
425
+ def is_property_hidden(self):
426
+ """ """
427
+ ...
459
428
 
460
- :param draw_func:
461
- :type draw_func:
462
- """
429
+ def is_property_overridable_library(self):
430
+ """ """
463
431
  ...
464
432
 
465
- def as_pointer(self): ...
466
- def bl_rna_get_subclass(self): ...
467
- def bl_rna_get_subclass_py(self): ...
468
- def draw(self, context):
469
- """
433
+ def is_property_readonly(self):
434
+ """ """
435
+ ...
436
+
437
+ def is_property_set(self):
438
+ """ """
439
+ ...
440
+
441
+ def items(self):
442
+ """ """
443
+ ...
444
+
445
+ def keyframe_delete(self):
446
+ """ """
447
+ ...
448
+
449
+ def keyframe_insert(self):
450
+ """ """
451
+ ...
452
+
453
+ def keys(self):
454
+ """ """
455
+ ...
456
+
457
+ def path_from_id(self):
458
+ """ """
459
+ ...
460
+
461
+ def path_resolve(self):
462
+ """ """
463
+ ...
470
464
 
471
- :param self:
472
- :type self:
473
- :param context:
474
- :type context:
475
- """
476
- ...
477
-
478
- def driver_add(self): ...
479
- def driver_remove(self): ...
480
- def get(self): ...
481
- def id_properties_clear(self): ...
482
- def id_properties_ensure(self): ...
483
- def id_properties_ui(self): ...
484
- def is_extended(self): ...
485
- def is_property_hidden(self): ...
486
- def is_property_overridable_library(self): ...
487
- def is_property_readonly(self): ...
488
- def is_property_set(self): ...
489
- def items(self): ...
490
- def keyframe_delete(self): ...
491
- def keyframe_insert(self): ...
492
- def keys(self): ...
493
- def path_from_id(self): ...
494
- def path_resolve(self): ...
495
465
  def poll(self, context):
496
466
  """
497
467
 
498
468
  :param context:
499
- :type context:
500
469
  """
501
470
  ...
502
471
 
503
- def pop(self): ...
472
+ def pop(self):
473
+ """ """
474
+ ...
475
+
504
476
  def prepend(self, draw_func):
505
477
  """
506
478
 
507
479
  :param draw_func:
508
- :type draw_func:
509
480
  """
510
481
  ...
511
482
 
512
- def property_overridable_library_set(self): ...
513
- def property_unset(self): ...
483
+ def property_overridable_library_set(self):
484
+ """ """
485
+ ...
486
+
487
+ def property_unset(self):
488
+ """ """
489
+ ...
490
+
514
491
  def remove(self, draw_func):
515
492
  """
516
493
 
517
494
  :param draw_func:
518
- :type draw_func:
519
495
  """
520
496
  ...
521
497
 
522
- def type_recast(self): ...
523
- def values(self): ...
498
+ def type_recast(self):
499
+ """ """
500
+ ...
501
+
502
+ def values(self):
503
+ """ """
504
+ ...
505
+
506
+ class DATA_PT_EEVEE_shadow_cascaded_shadow_map(bpy_types._GenericUI):
507
+ """ """
524
508
 
525
- class DATA_PT_custom_props_light(
526
- bpy_types.Panel, DataButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
527
- ):
528
509
  COMPAT_ENGINES: typing.Any
510
+ """ """
511
+
529
512
  bl_context: typing.Any
513
+ """ """
514
+
530
515
  bl_label: typing.Any
516
+ """ """
517
+
531
518
  bl_options: typing.Any
532
- bl_order: typing.Any
519
+ """ """
520
+
521
+ bl_parent_id: typing.Any
522
+ """ """
523
+
533
524
  bl_region_type: typing.Any
525
+ """ """
526
+
534
527
  bl_rna: typing.Any
528
+ """ """
529
+
535
530
  bl_space_type: typing.Any
531
+ """ """
532
+
536
533
  id_data: typing.Any
534
+ """ """
537
535
 
538
536
  def append(self, draw_func):
539
537
  """
540
538
 
541
539
  :param draw_func:
542
- :type draw_func:
543
540
  """
544
541
  ...
545
542
 
546
- def as_pointer(self): ...
547
- def bl_rna_get_subclass(self): ...
548
- def bl_rna_get_subclass_py(self): ...
549
- def draw(self, context):
550
- """
543
+ def as_pointer(self):
544
+ """ """
545
+ ...
551
546
 
552
- :param self:
553
- :type self:
554
- :param context:
555
- :type context:
556
- """
557
- ...
558
-
559
- def driver_add(self): ...
560
- def driver_remove(self): ...
561
- def get(self): ...
562
- def id_properties_clear(self): ...
563
- def id_properties_ensure(self): ...
564
- def id_properties_ui(self): ...
565
- def is_extended(self): ...
566
- def is_property_hidden(self): ...
567
- def is_property_overridable_library(self): ...
568
- def is_property_readonly(self): ...
569
- def is_property_set(self): ...
570
- def items(self): ...
571
- def keyframe_delete(self): ...
572
- def keyframe_insert(self): ...
573
- def keys(self): ...
574
- def path_from_id(self): ...
575
- def path_resolve(self): ...
576
- def poll(self, context):
577
- """
547
+ def bl_rna_get_subclass(self):
548
+ """ """
549
+ ...
578
550
 
579
- :param context:
580
- :type context:
581
- """
551
+ def bl_rna_get_subclass_py(self):
552
+ """ """
582
553
  ...
583
554
 
584
- def pop(self): ...
585
- def prepend(self, draw_func):
555
+ def draw(self, context):
586
556
  """
587
557
 
588
- :param draw_func:
589
- :type draw_func:
558
+ :param context:
590
559
  """
591
560
  ...
592
561
 
593
- def property_overridable_library_set(self): ...
594
- def property_unset(self): ...
595
- def remove(self, draw_func):
596
- """
562
+ def driver_add(self):
563
+ """ """
564
+ ...
597
565
 
598
- :param draw_func:
599
- :type draw_func:
600
- """
566
+ def driver_remove(self):
567
+ """ """
601
568
  ...
602
569
 
603
- def type_recast(self): ...
604
- def values(self): ...
570
+ def get(self):
571
+ """ """
572
+ ...
573
+
574
+ def id_properties_clear(self):
575
+ """ """
576
+ ...
577
+
578
+ def id_properties_ensure(self):
579
+ """ """
580
+ ...
581
+
582
+ def id_properties_ui(self):
583
+ """ """
584
+ ...
585
+
586
+ def is_extended(self):
587
+ """ """
588
+ ...
589
+
590
+ def is_property_hidden(self):
591
+ """ """
592
+ ...
593
+
594
+ def is_property_overridable_library(self):
595
+ """ """
596
+ ...
597
+
598
+ def is_property_readonly(self):
599
+ """ """
600
+ ...
601
+
602
+ def is_property_set(self):
603
+ """ """
604
+ ...
605
+
606
+ def items(self):
607
+ """ """
608
+ ...
609
+
610
+ def keyframe_delete(self):
611
+ """ """
612
+ ...
613
+
614
+ def keyframe_insert(self):
615
+ """ """
616
+ ...
617
+
618
+ def keys(self):
619
+ """ """
620
+ ...
621
+
622
+ def path_from_id(self):
623
+ """ """
624
+ ...
625
+
626
+ def path_resolve(self):
627
+ """ """
628
+ ...
629
+
630
+ def poll(self, context):
631
+ """
632
+
633
+ :param context:
634
+ """
635
+ ...
636
+
637
+ def pop(self):
638
+ """ """
639
+ ...
640
+
641
+ def prepend(self, draw_func):
642
+ """
643
+
644
+ :param draw_func:
645
+ """
646
+ ...
647
+
648
+ def property_overridable_library_set(self):
649
+ """ """
650
+ ...
651
+
652
+ def property_unset(self):
653
+ """ """
654
+ ...
655
+
656
+ def remove(self, draw_func):
657
+ """
658
+
659
+ :param draw_func:
660
+ """
661
+ ...
662
+
663
+ def type_recast(self):
664
+ """ """
665
+ ...
666
+
667
+ def values(self):
668
+ """ """
669
+ ...
670
+
671
+ class DATA_PT_EEVEE_shadow_contact(bpy_types._GenericUI):
672
+ """ """
673
+
674
+ COMPAT_ENGINES: typing.Any
675
+ """ """
676
+
677
+ bl_context: typing.Any
678
+ """ """
679
+
680
+ bl_label: typing.Any
681
+ """ """
682
+
683
+ bl_parent_id: typing.Any
684
+ """ """
685
+
686
+ bl_region_type: typing.Any
687
+ """ """
688
+
689
+ bl_rna: typing.Any
690
+ """ """
691
+
692
+ bl_space_type: typing.Any
693
+ """ """
694
+
695
+ id_data: typing.Any
696
+ """ """
697
+
698
+ def append(self, draw_func):
699
+ """
700
+
701
+ :param draw_func:
702
+ """
703
+ ...
704
+
705
+ def as_pointer(self):
706
+ """ """
707
+ ...
708
+
709
+ def bl_rna_get_subclass(self):
710
+ """ """
711
+ ...
712
+
713
+ def bl_rna_get_subclass_py(self):
714
+ """ """
715
+ ...
716
+
717
+ def draw(self, context):
718
+ """
719
+
720
+ :param context:
721
+ """
722
+ ...
723
+
724
+ def draw_header(self, context):
725
+ """
726
+
727
+ :param context:
728
+ """
729
+ ...
730
+
731
+ def driver_add(self):
732
+ """ """
733
+ ...
734
+
735
+ def driver_remove(self):
736
+ """ """
737
+ ...
738
+
739
+ def get(self):
740
+ """ """
741
+ ...
742
+
743
+ def id_properties_clear(self):
744
+ """ """
745
+ ...
746
+
747
+ def id_properties_ensure(self):
748
+ """ """
749
+ ...
750
+
751
+ def id_properties_ui(self):
752
+ """ """
753
+ ...
754
+
755
+ def is_extended(self):
756
+ """ """
757
+ ...
758
+
759
+ def is_property_hidden(self):
760
+ """ """
761
+ ...
762
+
763
+ def is_property_overridable_library(self):
764
+ """ """
765
+ ...
766
+
767
+ def is_property_readonly(self):
768
+ """ """
769
+ ...
770
+
771
+ def is_property_set(self):
772
+ """ """
773
+ ...
774
+
775
+ def items(self):
776
+ """ """
777
+ ...
778
+
779
+ def keyframe_delete(self):
780
+ """ """
781
+ ...
782
+
783
+ def keyframe_insert(self):
784
+ """ """
785
+ ...
786
+
787
+ def keys(self):
788
+ """ """
789
+ ...
790
+
791
+ def path_from_id(self):
792
+ """ """
793
+ ...
794
+
795
+ def path_resolve(self):
796
+ """ """
797
+ ...
798
+
799
+ def poll(self, context):
800
+ """
801
+
802
+ :param context:
803
+ """
804
+ ...
805
+
806
+ def pop(self):
807
+ """ """
808
+ ...
809
+
810
+ def prepend(self, draw_func):
811
+ """
812
+
813
+ :param draw_func:
814
+ """
815
+ ...
816
+
817
+ def property_overridable_library_set(self):
818
+ """ """
819
+ ...
820
+
821
+ def property_unset(self):
822
+ """ """
823
+ ...
824
+
825
+ def remove(self, draw_func):
826
+ """
827
+
828
+ :param draw_func:
829
+ """
830
+ ...
831
+
832
+ def type_recast(self):
833
+ """ """
834
+ ...
835
+
836
+ def values(self):
837
+ """ """
838
+ ...
839
+
840
+ class DATA_PT_context_light(bpy_types._GenericUI):
841
+ """ """
842
+
843
+ COMPAT_ENGINES: typing.Any
844
+ """ """
845
+
846
+ bl_context: typing.Any
847
+ """ """
848
+
849
+ bl_label: typing.Any
850
+ """ """
851
+
852
+ bl_options: typing.Any
853
+ """ """
854
+
855
+ bl_region_type: typing.Any
856
+ """ """
857
+
858
+ bl_rna: typing.Any
859
+ """ """
860
+
861
+ bl_space_type: typing.Any
862
+ """ """
863
+
864
+ id_data: typing.Any
865
+ """ """
866
+
867
+ def append(self, draw_func):
868
+ """
869
+
870
+ :param draw_func:
871
+ """
872
+ ...
873
+
874
+ def as_pointer(self):
875
+ """ """
876
+ ...
877
+
878
+ def bl_rna_get_subclass(self):
879
+ """ """
880
+ ...
881
+
882
+ def bl_rna_get_subclass_py(self):
883
+ """ """
884
+ ...
885
+
886
+ def draw(self, context):
887
+ """
888
+
889
+ :param context:
890
+ """
891
+ ...
892
+
893
+ def driver_add(self):
894
+ """ """
895
+ ...
896
+
897
+ def driver_remove(self):
898
+ """ """
899
+ ...
900
+
901
+ def get(self):
902
+ """ """
903
+ ...
904
+
905
+ def id_properties_clear(self):
906
+ """ """
907
+ ...
908
+
909
+ def id_properties_ensure(self):
910
+ """ """
911
+ ...
912
+
913
+ def id_properties_ui(self):
914
+ """ """
915
+ ...
916
+
917
+ def is_extended(self):
918
+ """ """
919
+ ...
920
+
921
+ def is_property_hidden(self):
922
+ """ """
923
+ ...
924
+
925
+ def is_property_overridable_library(self):
926
+ """ """
927
+ ...
928
+
929
+ def is_property_readonly(self):
930
+ """ """
931
+ ...
932
+
933
+ def is_property_set(self):
934
+ """ """
935
+ ...
936
+
937
+ def items(self):
938
+ """ """
939
+ ...
940
+
941
+ def keyframe_delete(self):
942
+ """ """
943
+ ...
944
+
945
+ def keyframe_insert(self):
946
+ """ """
947
+ ...
948
+
949
+ def keys(self):
950
+ """ """
951
+ ...
952
+
953
+ def path_from_id(self):
954
+ """ """
955
+ ...
956
+
957
+ def path_resolve(self):
958
+ """ """
959
+ ...
960
+
961
+ def poll(self, context):
962
+ """
963
+
964
+ :param context:
965
+ """
966
+ ...
967
+
968
+ def pop(self):
969
+ """ """
970
+ ...
971
+
972
+ def prepend(self, draw_func):
973
+ """
974
+
975
+ :param draw_func:
976
+ """
977
+ ...
978
+
979
+ def property_overridable_library_set(self):
980
+ """ """
981
+ ...
982
+
983
+ def property_unset(self):
984
+ """ """
985
+ ...
986
+
987
+ def remove(self, draw_func):
988
+ """
989
+
990
+ :param draw_func:
991
+ """
992
+ ...
993
+
994
+ def type_recast(self):
995
+ """ """
996
+ ...
997
+
998
+ def values(self):
999
+ """ """
1000
+ ...
1001
+
1002
+ class DATA_PT_custom_props_light(bpy_types._GenericUI):
1003
+ """ """
1004
+
1005
+ COMPAT_ENGINES: typing.Any
1006
+ """ """
1007
+
1008
+ bl_context: typing.Any
1009
+ """ """
1010
+
1011
+ bl_label: typing.Any
1012
+ """ """
1013
+
1014
+ bl_options: typing.Any
1015
+ """ """
1016
+
1017
+ bl_order: typing.Any
1018
+ """ """
1019
+
1020
+ bl_region_type: typing.Any
1021
+ """ """
1022
+
1023
+ bl_rna: typing.Any
1024
+ """ """
1025
+
1026
+ bl_space_type: typing.Any
1027
+ """ """
1028
+
1029
+ id_data: typing.Any
1030
+ """ """
1031
+
1032
+ def append(self, draw_func):
1033
+ """
1034
+
1035
+ :param draw_func:
1036
+ """
1037
+ ...
1038
+
1039
+ def as_pointer(self):
1040
+ """ """
1041
+ ...
1042
+
1043
+ def bl_rna_get_subclass(self):
1044
+ """ """
1045
+ ...
1046
+
1047
+ def bl_rna_get_subclass_py(self):
1048
+ """ """
1049
+ ...
1050
+
1051
+ def draw(self, context):
1052
+ """
1053
+
1054
+ :param context:
1055
+ """
1056
+ ...
1057
+
1058
+ def driver_add(self):
1059
+ """ """
1060
+ ...
1061
+
1062
+ def driver_remove(self):
1063
+ """ """
1064
+ ...
1065
+
1066
+ def get(self):
1067
+ """ """
1068
+ ...
1069
+
1070
+ def id_properties_clear(self):
1071
+ """ """
1072
+ ...
1073
+
1074
+ def id_properties_ensure(self):
1075
+ """ """
1076
+ ...
1077
+
1078
+ def id_properties_ui(self):
1079
+ """ """
1080
+ ...
1081
+
1082
+ def is_extended(self):
1083
+ """ """
1084
+ ...
1085
+
1086
+ def is_property_hidden(self):
1087
+ """ """
1088
+ ...
1089
+
1090
+ def is_property_overridable_library(self):
1091
+ """ """
1092
+ ...
1093
+
1094
+ def is_property_readonly(self):
1095
+ """ """
1096
+ ...
1097
+
1098
+ def is_property_set(self):
1099
+ """ """
1100
+ ...
1101
+
1102
+ def items(self):
1103
+ """ """
1104
+ ...
1105
+
1106
+ def keyframe_delete(self):
1107
+ """ """
1108
+ ...
1109
+
1110
+ def keyframe_insert(self):
1111
+ """ """
1112
+ ...
1113
+
1114
+ def keys(self):
1115
+ """ """
1116
+ ...
1117
+
1118
+ def path_from_id(self):
1119
+ """ """
1120
+ ...
1121
+
1122
+ def path_resolve(self):
1123
+ """ """
1124
+ ...
1125
+
1126
+ def poll(self, context):
1127
+ """
1128
+
1129
+ :param context:
1130
+ """
1131
+ ...
1132
+
1133
+ def pop(self):
1134
+ """ """
1135
+ ...
1136
+
1137
+ def prepend(self, draw_func):
1138
+ """
1139
+
1140
+ :param draw_func:
1141
+ """
1142
+ ...
1143
+
1144
+ def property_overridable_library_set(self):
1145
+ """ """
1146
+ ...
1147
+
1148
+ def property_unset(self):
1149
+ """ """
1150
+ ...
1151
+
1152
+ def remove(self, draw_func):
1153
+ """
1154
+
1155
+ :param draw_func:
1156
+ """
1157
+ ...
1158
+
1159
+ def type_recast(self):
1160
+ """ """
1161
+ ...
1162
+
1163
+ def values(self):
1164
+ """ """
1165
+ ...
1166
+
1167
+ class DATA_PT_light(bpy_types._GenericUI):
1168
+ """ """
605
1169
 
606
- class DATA_PT_light(bpy_types.Panel, DataButtonsPanel, bpy_types._GenericUI):
607
1170
  COMPAT_ENGINES: typing.Any
1171
+ """ """
1172
+
608
1173
  bl_context: typing.Any
1174
+ """ """
1175
+
609
1176
  bl_label: typing.Any
1177
+ """ """
1178
+
610
1179
  bl_region_type: typing.Any
1180
+ """ """
1181
+
611
1182
  bl_rna: typing.Any
1183
+ """ """
1184
+
612
1185
  bl_space_type: typing.Any
1186
+ """ """
1187
+
613
1188
  id_data: typing.Any
1189
+ """ """
614
1190
 
615
1191
  def append(self, draw_func):
616
1192
  """
617
1193
 
618
1194
  :param draw_func:
619
- :type draw_func:
620
1195
  """
621
1196
  ...
622
1197
 
623
- def as_pointer(self): ...
624
- def bl_rna_get_subclass(self): ...
625
- def bl_rna_get_subclass_py(self): ...
1198
+ def as_pointer(self):
1199
+ """ """
1200
+ ...
1201
+
1202
+ def bl_rna_get_subclass(self):
1203
+ """ """
1204
+ ...
1205
+
1206
+ def bl_rna_get_subclass_py(self):
1207
+ """ """
1208
+ ...
1209
+
626
1210
  def draw(self, context):
627
1211
  """
628
1212
 
629
- :param self:
630
- :type self:
631
1213
  :param context:
632
- :type context:
633
- """
634
- ...
635
-
636
- def driver_add(self): ...
637
- def driver_remove(self): ...
638
- def get(self): ...
639
- def id_properties_clear(self): ...
640
- def id_properties_ensure(self): ...
641
- def id_properties_ui(self): ...
642
- def is_extended(self): ...
643
- def is_property_hidden(self): ...
644
- def is_property_overridable_library(self): ...
645
- def is_property_readonly(self): ...
646
- def is_property_set(self): ...
647
- def items(self): ...
648
- def keyframe_delete(self): ...
649
- def keyframe_insert(self): ...
650
- def keys(self): ...
651
- def path_from_id(self): ...
652
- def path_resolve(self): ...
1214
+ """
1215
+ ...
1216
+
1217
+ def driver_add(self):
1218
+ """ """
1219
+ ...
1220
+
1221
+ def driver_remove(self):
1222
+ """ """
1223
+ ...
1224
+
1225
+ def get(self):
1226
+ """ """
1227
+ ...
1228
+
1229
+ def id_properties_clear(self):
1230
+ """ """
1231
+ ...
1232
+
1233
+ def id_properties_ensure(self):
1234
+ """ """
1235
+ ...
1236
+
1237
+ def id_properties_ui(self):
1238
+ """ """
1239
+ ...
1240
+
1241
+ def is_extended(self):
1242
+ """ """
1243
+ ...
1244
+
1245
+ def is_property_hidden(self):
1246
+ """ """
1247
+ ...
1248
+
1249
+ def is_property_overridable_library(self):
1250
+ """ """
1251
+ ...
1252
+
1253
+ def is_property_readonly(self):
1254
+ """ """
1255
+ ...
1256
+
1257
+ def is_property_set(self):
1258
+ """ """
1259
+ ...
1260
+
1261
+ def items(self):
1262
+ """ """
1263
+ ...
1264
+
1265
+ def keyframe_delete(self):
1266
+ """ """
1267
+ ...
1268
+
1269
+ def keyframe_insert(self):
1270
+ """ """
1271
+ ...
1272
+
1273
+ def keys(self):
1274
+ """ """
1275
+ ...
1276
+
1277
+ def path_from_id(self):
1278
+ """ """
1279
+ ...
1280
+
1281
+ def path_resolve(self):
1282
+ """ """
1283
+ ...
1284
+
653
1285
  def poll(self, context):
654
1286
  """
655
1287
 
656
1288
  :param context:
657
- :type context:
658
1289
  """
659
1290
  ...
660
1291
 
661
- def pop(self): ...
1292
+ def pop(self):
1293
+ """ """
1294
+ ...
1295
+
662
1296
  def prepend(self, draw_func):
663
1297
  """
664
1298
 
665
1299
  :param draw_func:
666
- :type draw_func:
667
1300
  """
668
1301
  ...
669
1302
 
670
- def property_overridable_library_set(self): ...
671
- def property_unset(self): ...
1303
+ def property_overridable_library_set(self):
1304
+ """ """
1305
+ ...
1306
+
1307
+ def property_unset(self):
1308
+ """ """
1309
+ ...
1310
+
672
1311
  def remove(self, draw_func):
673
1312
  """
674
1313
 
675
1314
  :param draw_func:
676
- :type draw_func:
677
1315
  """
678
1316
  ...
679
1317
 
680
- def type_recast(self): ...
681
- def values(self): ...
1318
+ def type_recast(self):
1319
+ """ """
1320
+ ...
1321
+
1322
+ def values(self):
1323
+ """ """
1324
+ ...
1325
+
1326
+ class DATA_PT_preview(bpy_types._GenericUI):
1327
+ """ """
682
1328
 
683
- class DATA_PT_preview(bpy_types.Panel, DataButtonsPanel, bpy_types._GenericUI):
684
1329
  COMPAT_ENGINES: typing.Any
1330
+ """ """
1331
+
685
1332
  bl_context: typing.Any
1333
+ """ """
1334
+
686
1335
  bl_label: typing.Any
1336
+ """ """
1337
+
687
1338
  bl_options: typing.Any
1339
+ """ """
1340
+
688
1341
  bl_region_type: typing.Any
1342
+ """ """
1343
+
689
1344
  bl_rna: typing.Any
1345
+ """ """
1346
+
690
1347
  bl_space_type: typing.Any
1348
+ """ """
1349
+
691
1350
  id_data: typing.Any
1351
+ """ """
692
1352
 
693
1353
  def append(self, draw_func):
694
1354
  """
695
1355
 
696
1356
  :param draw_func:
697
- :type draw_func:
698
1357
  """
699
1358
  ...
700
1359
 
701
- def as_pointer(self): ...
702
- def bl_rna_get_subclass(self): ...
703
- def bl_rna_get_subclass_py(self): ...
1360
+ def as_pointer(self):
1361
+ """ """
1362
+ ...
1363
+
1364
+ def bl_rna_get_subclass(self):
1365
+ """ """
1366
+ ...
1367
+
1368
+ def bl_rna_get_subclass_py(self):
1369
+ """ """
1370
+ ...
1371
+
704
1372
  def draw(self, context):
705
1373
  """
706
1374
 
707
- :param self:
708
- :type self:
709
1375
  :param context:
710
- :type context:
711
- """
712
- ...
713
-
714
- def driver_add(self): ...
715
- def driver_remove(self): ...
716
- def get(self): ...
717
- def id_properties_clear(self): ...
718
- def id_properties_ensure(self): ...
719
- def id_properties_ui(self): ...
720
- def is_extended(self): ...
721
- def is_property_hidden(self): ...
722
- def is_property_overridable_library(self): ...
723
- def is_property_readonly(self): ...
724
- def is_property_set(self): ...
725
- def items(self): ...
726
- def keyframe_delete(self): ...
727
- def keyframe_insert(self): ...
728
- def keys(self): ...
729
- def path_from_id(self): ...
730
- def path_resolve(self): ...
1376
+ """
1377
+ ...
1378
+
1379
+ def driver_add(self):
1380
+ """ """
1381
+ ...
1382
+
1383
+ def driver_remove(self):
1384
+ """ """
1385
+ ...
1386
+
1387
+ def get(self):
1388
+ """ """
1389
+ ...
1390
+
1391
+ def id_properties_clear(self):
1392
+ """ """
1393
+ ...
1394
+
1395
+ def id_properties_ensure(self):
1396
+ """ """
1397
+ ...
1398
+
1399
+ def id_properties_ui(self):
1400
+ """ """
1401
+ ...
1402
+
1403
+ def is_extended(self):
1404
+ """ """
1405
+ ...
1406
+
1407
+ def is_property_hidden(self):
1408
+ """ """
1409
+ ...
1410
+
1411
+ def is_property_overridable_library(self):
1412
+ """ """
1413
+ ...
1414
+
1415
+ def is_property_readonly(self):
1416
+ """ """
1417
+ ...
1418
+
1419
+ def is_property_set(self):
1420
+ """ """
1421
+ ...
1422
+
1423
+ def items(self):
1424
+ """ """
1425
+ ...
1426
+
1427
+ def keyframe_delete(self):
1428
+ """ """
1429
+ ...
1430
+
1431
+ def keyframe_insert(self):
1432
+ """ """
1433
+ ...
1434
+
1435
+ def keys(self):
1436
+ """ """
1437
+ ...
1438
+
1439
+ def path_from_id(self):
1440
+ """ """
1441
+ ...
1442
+
1443
+ def path_resolve(self):
1444
+ """ """
1445
+ ...
1446
+
731
1447
  def poll(self, context):
732
1448
  """
733
1449
 
734
1450
  :param context:
735
- :type context:
736
1451
  """
737
1452
  ...
738
1453
 
739
- def pop(self): ...
1454
+ def pop(self):
1455
+ """ """
1456
+ ...
1457
+
740
1458
  def prepend(self, draw_func):
741
1459
  """
742
1460
 
743
1461
  :param draw_func:
744
- :type draw_func:
745
1462
  """
746
1463
  ...
747
1464
 
748
- def property_overridable_library_set(self): ...
749
- def property_unset(self): ...
1465
+ def property_overridable_library_set(self):
1466
+ """ """
1467
+ ...
1468
+
1469
+ def property_unset(self):
1470
+ """ """
1471
+ ...
1472
+
750
1473
  def remove(self, draw_func):
751
1474
  """
752
1475
 
753
1476
  :param draw_func:
754
- :type draw_func:
755
1477
  """
756
1478
  ...
757
1479
 
758
- def type_recast(self): ...
759
- def values(self): ...
1480
+ def type_recast(self):
1481
+ """ """
1482
+ ...
1483
+
1484
+ def values(self):
1485
+ """ """
1486
+ ...
1487
+
1488
+ class DATA_PT_spot(bpy_types._GenericUI):
1489
+ """ """
760
1490
 
761
- class DATA_PT_spot(bpy_types.Panel, DataButtonsPanel, bpy_types._GenericUI):
762
1491
  COMPAT_ENGINES: typing.Any
1492
+ """ """
1493
+
763
1494
  bl_context: typing.Any
1495
+ """ """
1496
+
764
1497
  bl_label: typing.Any
1498
+ """ """
1499
+
765
1500
  bl_parent_id: typing.Any
1501
+ """ """
1502
+
766
1503
  bl_region_type: typing.Any
1504
+ """ """
1505
+
767
1506
  bl_rna: typing.Any
1507
+ """ """
1508
+
768
1509
  bl_space_type: typing.Any
1510
+ """ """
1511
+
769
1512
  id_data: typing.Any
1513
+ """ """
770
1514
 
771
1515
  def append(self, draw_func):
772
1516
  """
773
1517
 
774
1518
  :param draw_func:
775
- :type draw_func:
776
1519
  """
777
1520
  ...
778
1521
 
779
- def as_pointer(self): ...
780
- def bl_rna_get_subclass(self): ...
781
- def bl_rna_get_subclass_py(self): ...
1522
+ def as_pointer(self):
1523
+ """ """
1524
+ ...
1525
+
1526
+ def bl_rna_get_subclass(self):
1527
+ """ """
1528
+ ...
1529
+
1530
+ def bl_rna_get_subclass_py(self):
1531
+ """ """
1532
+ ...
1533
+
782
1534
  def draw(self, context):
783
1535
  """
784
1536
 
785
- :param self:
786
- :type self:
787
1537
  :param context:
788
- :type context:
789
- """
790
- ...
791
-
792
- def driver_add(self): ...
793
- def driver_remove(self): ...
794
- def get(self): ...
795
- def id_properties_clear(self): ...
796
- def id_properties_ensure(self): ...
797
- def id_properties_ui(self): ...
798
- def is_extended(self): ...
799
- def is_property_hidden(self): ...
800
- def is_property_overridable_library(self): ...
801
- def is_property_readonly(self): ...
802
- def is_property_set(self): ...
803
- def items(self): ...
804
- def keyframe_delete(self): ...
805
- def keyframe_insert(self): ...
806
- def keys(self): ...
807
- def path_from_id(self): ...
808
- def path_resolve(self): ...
1538
+ """
1539
+ ...
1540
+
1541
+ def driver_add(self):
1542
+ """ """
1543
+ ...
1544
+
1545
+ def driver_remove(self):
1546
+ """ """
1547
+ ...
1548
+
1549
+ def get(self):
1550
+ """ """
1551
+ ...
1552
+
1553
+ def id_properties_clear(self):
1554
+ """ """
1555
+ ...
1556
+
1557
+ def id_properties_ensure(self):
1558
+ """ """
1559
+ ...
1560
+
1561
+ def id_properties_ui(self):
1562
+ """ """
1563
+ ...
1564
+
1565
+ def is_extended(self):
1566
+ """ """
1567
+ ...
1568
+
1569
+ def is_property_hidden(self):
1570
+ """ """
1571
+ ...
1572
+
1573
+ def is_property_overridable_library(self):
1574
+ """ """
1575
+ ...
1576
+
1577
+ def is_property_readonly(self):
1578
+ """ """
1579
+ ...
1580
+
1581
+ def is_property_set(self):
1582
+ """ """
1583
+ ...
1584
+
1585
+ def items(self):
1586
+ """ """
1587
+ ...
1588
+
1589
+ def keyframe_delete(self):
1590
+ """ """
1591
+ ...
1592
+
1593
+ def keyframe_insert(self):
1594
+ """ """
1595
+ ...
1596
+
1597
+ def keys(self):
1598
+ """ """
1599
+ ...
1600
+
1601
+ def path_from_id(self):
1602
+ """ """
1603
+ ...
1604
+
1605
+ def path_resolve(self):
1606
+ """ """
1607
+ ...
1608
+
809
1609
  def poll(self, context):
810
1610
  """
811
1611
 
812
1612
  :param context:
813
- :type context:
814
1613
  """
815
1614
  ...
816
1615
 
817
- def pop(self): ...
1616
+ def pop(self):
1617
+ """ """
1618
+ ...
1619
+
818
1620
  def prepend(self, draw_func):
819
1621
  """
820
1622
 
821
1623
  :param draw_func:
822
- :type draw_func:
823
1624
  """
824
1625
  ...
825
1626
 
826
- def property_overridable_library_set(self): ...
827
- def property_unset(self): ...
1627
+ def property_overridable_library_set(self):
1628
+ """ """
1629
+ ...
1630
+
1631
+ def property_unset(self):
1632
+ """ """
1633
+ ...
1634
+
828
1635
  def remove(self, draw_func):
829
1636
  """
830
1637
 
831
1638
  :param draw_func:
832
- :type draw_func:
833
1639
  """
834
1640
  ...
835
1641
 
836
- def type_recast(self): ...
837
- def values(self): ...
1642
+ def type_recast(self):
1643
+ """ """
1644
+ ...
1645
+
1646
+ def values(self):
1647
+ """ """
1648
+ ...
1649
+
1650
+ class DataButtonsPanel:
1651
+ """ """
1652
+
1653
+ bl_context: typing.Any
1654
+ """ """
1655
+
1656
+ bl_region_type: typing.Any
1657
+ """ """
1658
+
1659
+ bl_space_type: typing.Any
1660
+ """ """
1661
+
1662
+ def poll(self, context):
1663
+ """
1664
+
1665
+ :param context:
1666
+ """
1667
+ ...