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

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

Potentially problematic release.


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

Files changed (293) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +36 -6
  3. aud/__init__.pyi +132 -125
  4. bgl/__init__.pyi +2545 -546
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +24 -2
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +53 -6
  15. bl_i18n_utils/utils/__init__.pyi +332 -44
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +171 -37
  27. bl_operators/anim/__init__.pyi +1065 -226
  28. bl_operators/assets/__init__.pyi +427 -92
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1342 -287
  31. bl_operators/console/__init__.pyi +647 -140
  32. bl_operators/constraint/__init__.pyi +524 -112
  33. bl_operators/file/__init__.pyi +396 -84
  34. bl_operators/freestyle/__init__.pyi +532 -113
  35. bl_operators/geometry_nodes/__init__.pyi +2412 -596
  36. bl_operators/image/__init__.pyi +380 -82
  37. bl_operators/mesh/__init__.pyi +401 -85
  38. bl_operators/node/__init__.pyi +1756 -384
  39. bl_operators/object/__init__.pyi +2022 -552
  40. bl_operators/object_align/__init__.pyi +145 -31
  41. bl_operators/object_quick_effects/__init__.pyi +555 -124
  42. bl_operators/object_randomize_transform/__init__.pyi +136 -32
  43. bl_operators/presets/__init__.pyi +3516 -708
  44. bl_operators/rigidbody/__init__.pyi +401 -85
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
  46. bl_operators/sequencer/__init__.pyi +731 -149
  47. bl_operators/spreadsheet/__init__.pyi +145 -30
  48. bl_operators/userpref/__init__.pyi +3416 -824
  49. bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
  50. bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
  51. bl_operators/uvcalc_transform/__init__.pyi +344 -73
  52. bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
  53. bl_operators/view3d/__init__.pyi +697 -146
  54. bl_operators/wm/__init__.pyi +6287 -1533
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +504 -106
  59. bl_ui/anim/__init__.pyi +164 -33
  60. bl_ui/asset_shelf/__init__.pyi +146 -31
  61. bl_ui/generic_ui_list/__init__.pyi +471 -99
  62. bl_ui/node_add_menu/__init__.pyi +196 -40
  63. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
  64. bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
  65. bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
  66. bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
  67. bl_ui/properties_animviz/__init__.pyi +32 -2
  68. bl_ui/properties_collection/__init__.pyi +787 -179
  69. bl_ui/properties_constraint/__init__.pyi +28635 -5523
  70. bl_ui/properties_data_armature/__init__.pyi +1905 -448
  71. bl_ui/properties_data_bone/__init__.pyi +1560 -336
  72. bl_ui/properties_data_camera/__init__.pyi +2269 -494
  73. bl_ui/properties_data_curve/__init__.pyi +2362 -534
  74. bl_ui/properties_data_curves/__init__.pyi +951 -203
  75. bl_ui/properties_data_empty/__init__.pyi +317 -69
  76. bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
  78. bl_ui/properties_data_lattice/__init__.pyi +472 -104
  79. bl_ui/properties_data_light/__init__.pyi +1570 -337
  80. bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
  81. bl_ui/properties_data_mesh/__init__.pyi +3205 -767
  82. bl_ui/properties_data_metaball/__init__.pyi +774 -170
  83. bl_ui/properties_data_modifier/__init__.pyi +1554 -328
  84. bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
  85. bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
  86. bl_ui/properties_data_speaker/__init__.pyi +782 -168
  87. bl_ui/properties_data_volume/__init__.pyi +1243 -281
  88. bl_ui/properties_freestyle/__init__.pyi +4071 -1030
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
  90. bl_ui/properties_mask_common/__init__.pyi +1256 -249
  91. bl_ui/properties_material/__init__.pyi +2351 -542
  92. bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
  93. bl_ui/properties_object/__init__.pyi +2179 -512
  94. bl_ui/properties_output/__init__.pyi +2956 -705
  95. bl_ui/properties_paint_common/__init__.pyi +947 -140
  96. bl_ui/properties_particle/__init__.pyi +8322 -1970
  97. bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
  98. bl_ui/properties_physics_common/__init__.pyi +200 -44
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
  100. bl_ui/properties_physics_field/__init__.pyi +1695 -364
  101. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
  105. bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
  106. bl_ui/properties_render/__init__.pyi +8312 -1933
  107. bl_ui/properties_scene/__init__.pyi +2211 -539
  108. bl_ui/properties_texture/__init__.pyi +4185 -1013
  109. bl_ui/properties_view_layer/__init__.pyi +2803 -664
  110. bl_ui/properties_workspace/__init__.pyi +626 -148
  111. bl_ui/properties_world/__init__.pyi +1092 -234
  112. bl_ui/space_clip/__init__.pyi +11475 -2805
  113. bl_ui/space_console/__init__.pyi +967 -202
  114. bl_ui/space_dopesheet/__init__.pyi +4260 -966
  115. bl_ui/space_filebrowser/__init__.pyi +4852 -1187
  116. bl_ui/space_graph/__init__.pyi +3251 -702
  117. bl_ui/space_image/__init__.pyi +12219 -2968
  118. bl_ui/space_info/__init__.pyi +964 -200
  119. bl_ui/space_nla/__init__.pyi +2756 -584
  120. bl_ui/space_node/__init__.pyi +5661 -1265
  121. bl_ui/space_outliner/__init__.pyi +2294 -478
  122. bl_ui/space_properties/__init__.pyi +417 -92
  123. bl_ui/space_sequencer/__init__.pyi +12436 -3009
  124. bl_ui/space_spreadsheet/__init__.pyi +184 -36
  125. bl_ui/space_statusbar/__init__.pyi +135 -30
  126. bl_ui/space_text/__init__.pyi +2556 -542
  127. bl_ui/space_time/__init__.pyi +1151 -243
  128. bl_ui/space_toolsystem_common/__init__.pyi +368 -66
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
  130. bl_ui/space_topbar/__init__.pyi +4214 -887
  131. bl_ui/space_userpref/__init__.pyi +13920 -3468
  132. bl_ui/space_view3d/__init__.pyi +43701 -10599
  133. bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
  134. bl_ui/utils/__init__.pyi +42 -4
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +268 -262
  143. bmesh/utils/__init__.pyi +55 -55
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +350 -305
  152. bpy/ops/anim/__init__.pyi +464 -426
  153. bpy/ops/armature/__init__.pyi +392 -360
  154. bpy/ops/asset/__init__.pyi +166 -129
  155. bpy/ops/boid/__init__.pyi +64 -37
  156. bpy/ops/brush/__init__.pyi +78 -72
  157. bpy/ops/buttons/__init__.pyi +136 -122
  158. bpy/ops/cachefile/__init__.pyi +128 -123
  159. bpy/ops/camera/__init__.pyi +22 -24
  160. bpy/ops/clip/__init__.pyi +844 -735
  161. bpy/ops/cloth/__init__.pyi +10 -11
  162. bpy/ops/collection/__init__.pyi +38 -38
  163. bpy/ops/console/__init__.pyi +170 -141
  164. bpy/ops/constraint/__init__.pyi +156 -159
  165. bpy/ops/curve/__init__.pyi +518 -461
  166. bpy/ops/curves/__init__.pyi +188 -159
  167. bpy/ops/cycles/__init__.pyi +20 -18
  168. bpy/ops/dpaint/__init__.pyi +40 -30
  169. bpy/ops/ed/__init__.pyi +136 -107
  170. bpy/ops/export_anim/__init__.pyi +18 -19
  171. bpy/ops/export_mesh/__init__.pyi +26 -27
  172. bpy/ops/export_scene/__init__.pyi +313 -334
  173. bpy/ops/file/__init__.pyi +394 -304
  174. bpy/ops/fluid/__init__.pyi +114 -63
  175. bpy/ops/font/__init__.pyi +272 -245
  176. bpy/ops/geometry/__init__.pyi +92 -87
  177. bpy/ops/gizmogroup/__init__.pyi +24 -21
  178. bpy/ops/gpencil/__init__.pyi +1530 -1476
  179. bpy/ops/graph/__init__.pyi +680 -659
  180. bpy/ops/grease_pencil/__init__.pyi +510 -390
  181. bpy/ops/image/__init__.pyi +650 -603
  182. bpy/ops/import_anim/__init__.pyi +26 -27
  183. bpy/ops/import_curve/__init__.pyi +6 -7
  184. bpy/ops/import_mesh/__init__.pyi +18 -21
  185. bpy/ops/import_scene/__init__.pyi +86 -95
  186. bpy/ops/info/__init__.pyi +68 -55
  187. bpy/ops/lattice/__init__.pyi +70 -63
  188. bpy/ops/marker/__init__.pyi +110 -111
  189. bpy/ops/mask/__init__.pyi +352 -308
  190. bpy/ops/material/__init__.pyi +24 -12
  191. bpy/ops/mball/__init__.pyi +72 -75
  192. bpy/ops/mesh/__init__.pyi +2052 -2088
  193. bpy/ops/nla/__init__.pyi +369 -313
  194. bpy/ops/node/__init__.pyi +944 -805
  195. bpy/ops/object/__init__.pyi +2662 -2461
  196. bpy/ops/outliner/__init__.pyi +582 -431
  197. bpy/ops/paint/__init__.pyi +605 -516
  198. bpy/ops/paintcurve/__init__.pyi +72 -60
  199. bpy/ops/palette/__init__.pyi +54 -46
  200. bpy/ops/particle/__init__.pyi +302 -245
  201. bpy/ops/pose/__init__.pyi +366 -330
  202. bpy/ops/poselib/__init__.pyi +78 -64
  203. bpy/ops/preferences/__init__.pyi +361 -341
  204. bpy/ops/ptcache/__init__.pyi +56 -38
  205. bpy/ops/render/__init__.pyi +120 -117
  206. bpy/ops/rigidbody/__init__.pyi +114 -97
  207. bpy/ops/scene/__init__.pyi +302 -240
  208. bpy/ops/screen/__init__.pyi +414 -363
  209. bpy/ops/script/__init__.pyi +20 -18
  210. bpy/ops/sculpt/__init__.pyi +414 -452
  211. bpy/ops/sculpt_curves/__init__.pyi +42 -43
  212. bpy/ops/sequencer/__init__.pyi +1094 -1053
  213. bpy/ops/sound/__init__.pyi +214 -206
  214. bpy/ops/spreadsheet/__init__.pyi +34 -28
  215. bpy/ops/surface/__init__.pyi +108 -114
  216. bpy/ops/text/__init__.pyi +432 -350
  217. bpy/ops/text_editor/__init__.pyi +10 -11
  218. bpy/ops/texture/__init__.pyi +32 -21
  219. bpy/ops/transform/__init__.pyi +801 -854
  220. bpy/ops/ui/__init__.pyi +254 -185
  221. bpy/ops/uilist/__init__.pyi +20 -23
  222. bpy/ops/uv/__init__.pyi +618 -626
  223. bpy/ops/view2d/__init__.pyi +162 -161
  224. bpy/ops/view3d/__init__.pyi +669 -658
  225. bpy/ops/wm/__init__.pyi +2433 -2415
  226. bpy/ops/workspace/__init__.pyi +54 -31
  227. bpy/ops/world/__init__.pyi +8 -4
  228. bpy/path/__init__.pyi +111 -68
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86789 -85719
  231. bpy/utils/__init__.pyi +265 -123
  232. bpy/utils/previews/__init__.pyi +103 -17
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/__init__.pyi +0 -4
  235. bpy_extras/anim_utils/__init__.pyi +11 -46
  236. bpy_extras/asset_utils/__init__.pyi +3 -12
  237. bpy_extras/id_map_utils/__init__.pyi +0 -2
  238. bpy_extras/image_utils/__init__.pyi +2 -2
  239. bpy_extras/io_utils/__init__.pyi +30 -27
  240. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  241. bpy_extras/mesh_utils/__init__.pyi +18 -18
  242. bpy_extras/node_utils/__init__.pyi +4 -3
  243. bpy_extras/object_utils/__init__.pyi +25 -26
  244. bpy_extras/view3d_utils/__init__.pyi +33 -38
  245. bpy_restrict_state/__init__.pyi +14 -1
  246. bpy_types/__init__.pyi +3873 -997
  247. console_python/__init__.pyi +41 -7
  248. console_shell/__init__.pyi +24 -5
  249. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  250. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  251. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  252. freestyle/chainingiterators/__init__.pyi +50 -52
  253. freestyle/functions/__init__.pyi +303 -207
  254. freestyle/predicates/__init__.pyi +299 -115
  255. freestyle/shaders/__init__.pyi +49 -80
  256. freestyle/types/__init__.pyi +465 -472
  257. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  258. freestyle/utils/__init__.pyi +28 -18
  259. gpu/capabilities/__init__.pyi +27 -19
  260. gpu/matrix/__init__.pyi +14 -16
  261. gpu/platform/__init__.pyi +5 -5
  262. gpu/shader/__init__.pyi +2 -5
  263. gpu/state/__init__.pyi +1 -1
  264. gpu/texture/__init__.pyi +3 -3
  265. gpu/types/__init__.pyi +54 -85
  266. gpu_extras/batch/__init__.pyi +27 -5
  267. gpu_extras/presets/__init__.pyi +52 -14
  268. graphviz_export/__init__.pyi +9 -2
  269. idprop/types/__init__.pyi +36 -12
  270. imbuf/__init__.pyi +8 -9
  271. imbuf/types/__init__.pyi +8 -15
  272. keyingsets_builtins/__init__.pyi +3149 -701
  273. keyingsets_utils/__init__.pyi +69 -14
  274. mathutils/__init__.pyi +502 -427
  275. mathutils/bvhtree/__init__.pyi +28 -32
  276. mathutils/geometry/__init__.pyi +177 -186
  277. mathutils/kdtree/__init__.pyi +16 -18
  278. mathutils/noise/__init__.pyi +47 -48
  279. nodeitems_builtins/__init__.pyi +50 -10
  280. nodeitems_utils/__init__.pyi +58 -10
  281. rna_info/__init__.pyi +230 -26
  282. rna_keymap_ui/__init__.pyi +29 -6
  283. rna_prop_ui/__init__.pyi +69 -12
  284. rna_xml/__init__.pyi +29 -6
  285. sys_info/__init__.pyi +4 -1
  286. bpy_extras/bmesh_utils/__init__.pyi +0 -6
  287. bpy_extras/extensions/__init__.pyi +0 -4
  288. bpy_extras/extensions/junction_module/__init__.pyi +0 -12
  289. bpy_extras/node_shader_utils/__init__.pyi +0 -131
  290. bpy_extras/wm_utils/__init__.pyi +0 -4
  291. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
  292. fake_bpy_module-20240224.dist-info/RECORD +0 -349
  293. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
@@ -1,663 +1,2472 @@
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 MATERIAL_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
8
- bl_label: typing.Any
9
- bl_rna: typing.Any
10
- id_data: typing.Any
11
-
12
- def append(self, draw_func): ...
13
- def as_pointer(self): ...
14
- def bl_rna_get_subclass(self): ...
15
- def bl_rna_get_subclass_py(self): ...
16
- def draw(self, _context): ...
17
- def draw_collapsible(self, context, layout): ...
18
- def draw_preset(self, _context): ...
19
- def driver_add(self): ...
20
- def driver_remove(self): ...
21
- def get(self): ...
22
- def id_properties_clear(self): ...
23
- def id_properties_ensure(self): ...
24
- def id_properties_ui(self): ...
25
- def is_extended(self): ...
26
- def is_property_hidden(self): ...
27
- def is_property_overridable_library(self): ...
28
- def is_property_readonly(self): ...
29
- def is_property_set(self): ...
30
- def items(self): ...
31
- def keyframe_delete(self): ...
32
- def keyframe_insert(self): ...
33
- def keys(self): ...
34
- def path_from_id(self): ...
35
- def path_menu(
36
- self,
37
- searchpaths,
38
- operator,
39
- props_default,
40
- prop_filepath,
41
- filter_ext,
42
- filter_path,
43
- display_name,
44
- add_operator,
45
- ): ...
46
- def path_resolve(self): ...
47
- def pop(self): ...
48
- def prepend(self, draw_func): ...
49
- def property_overridable_library_set(self): ...
50
- def property_unset(self): ...
51
- def remove(self, draw_func): ...
52
- def type_recast(self): ...
53
- def values(self): ...
54
-
55
- class MATERIAL_UL_matslots(bpy_types.UIList, bpy_types._GenericUI):
56
- bl_rna: typing.Any
57
- id_data: typing.Any
6
+ class EEVEE_MATERIAL_PT_context_material(bpy_types._GenericUI):
7
+ """ """
58
8
 
59
- def append(self, draw_func): ...
60
- def as_pointer(self): ...
61
- def bl_rna_get_subclass(self): ...
62
- def bl_rna_get_subclass_py(self): ...
63
- def draw_item(
64
- self,
65
- _context,
66
- layout,
67
- _data,
68
- item,
69
- icon,
70
- _active_data,
71
- _active_propname,
72
- _index,
73
- ): ...
74
- def driver_add(self): ...
75
- def driver_remove(self): ...
76
- def get(self): ...
77
- def id_properties_clear(self): ...
78
- def id_properties_ensure(self): ...
79
- def id_properties_ui(self): ...
80
- def is_extended(self): ...
81
- def is_property_hidden(self): ...
82
- def is_property_overridable_library(self): ...
83
- def is_property_readonly(self): ...
84
- def is_property_set(self): ...
85
- def items(self): ...
86
- def keyframe_delete(self): ...
87
- def keyframe_insert(self): ...
88
- def keys(self): ...
89
- def path_from_id(self): ...
90
- def path_resolve(self): ...
91
- def pop(self): ...
92
- def prepend(self, draw_func): ...
93
- def property_overridable_library_set(self): ...
94
- def property_unset(self): ...
95
- def remove(self, draw_func): ...
96
- def type_recast(self): ...
97
- def values(self): ...
9
+ COMPAT_ENGINES: typing.Any
10
+ """ """
98
11
 
99
- class MaterialButtonsPanel:
100
12
  bl_context: typing.Any
101
- bl_region_type: typing.Any
102
- bl_space_type: typing.Any
13
+ """ """
103
14
 
104
- def poll(self, context): ...
105
-
106
- class EEVEE_MATERIAL_PT_context_material(
107
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
108
- ):
109
- COMPAT_ENGINES: typing.Any
110
- bl_context: typing.Any
111
15
  bl_label: typing.Any
16
+ """ """
17
+
112
18
  bl_options: typing.Any
19
+ """ """
20
+
113
21
  bl_region_type: typing.Any
22
+ """ """
23
+
114
24
  bl_rna: typing.Any
25
+ """ """
26
+
115
27
  bl_space_type: typing.Any
28
+ """ """
29
+
116
30
  id_data: typing.Any
31
+ """ """
32
+
33
+ def append(self, draw_func):
34
+ """
35
+
36
+ :param draw_func:
37
+ """
38
+ ...
39
+
40
+ def as_pointer(self):
41
+ """ """
42
+ ...
43
+
44
+ def bl_rna_get_subclass(self):
45
+ """ """
46
+ ...
47
+
48
+ def bl_rna_get_subclass_py(self):
49
+ """ """
50
+ ...
51
+
52
+ def draw(self, context):
53
+ """
54
+
55
+ :param context:
56
+ """
57
+ ...
58
+
59
+ def driver_add(self):
60
+ """ """
61
+ ...
62
+
63
+ def driver_remove(self):
64
+ """ """
65
+ ...
66
+
67
+ def get(self):
68
+ """ """
69
+ ...
70
+
71
+ def id_properties_clear(self):
72
+ """ """
73
+ ...
74
+
75
+ def id_properties_ensure(self):
76
+ """ """
77
+ ...
78
+
79
+ def id_properties_ui(self):
80
+ """ """
81
+ ...
82
+
83
+ def is_extended(self):
84
+ """ """
85
+ ...
86
+
87
+ def is_property_hidden(self):
88
+ """ """
89
+ ...
90
+
91
+ def is_property_overridable_library(self):
92
+ """ """
93
+ ...
94
+
95
+ def is_property_readonly(self):
96
+ """ """
97
+ ...
98
+
99
+ def is_property_set(self):
100
+ """ """
101
+ ...
102
+
103
+ def items(self):
104
+ """ """
105
+ ...
106
+
107
+ def keyframe_delete(self):
108
+ """ """
109
+ ...
110
+
111
+ def keyframe_insert(self):
112
+ """ """
113
+ ...
114
+
115
+ def keys(self):
116
+ """ """
117
+ ...
118
+
119
+ def path_from_id(self):
120
+ """ """
121
+ ...
122
+
123
+ def path_resolve(self):
124
+ """ """
125
+ ...
126
+
127
+ def poll(self, context):
128
+ """
129
+
130
+ :param context:
131
+ """
132
+ ...
133
+
134
+ def pop(self):
135
+ """ """
136
+ ...
137
+
138
+ def prepend(self, draw_func):
139
+ """
140
+
141
+ :param draw_func:
142
+ """
143
+ ...
144
+
145
+ def property_overridable_library_set(self):
146
+ """ """
147
+ ...
148
+
149
+ def property_unset(self):
150
+ """ """
151
+ ...
152
+
153
+ def remove(self, draw_func):
154
+ """
155
+
156
+ :param draw_func:
157
+ """
158
+ ...
159
+
160
+ def type_recast(self):
161
+ """ """
162
+ ...
163
+
164
+ def values(self):
165
+ """ """
166
+ ...
167
+
168
+ class EEVEE_MATERIAL_PT_displacement(bpy_types._GenericUI):
169
+ """ """
117
170
 
118
- def append(self, draw_func): ...
119
- def as_pointer(self): ...
120
- def bl_rna_get_subclass(self): ...
121
- def bl_rna_get_subclass_py(self): ...
122
- def draw(self, context): ...
123
- def driver_add(self): ...
124
- def driver_remove(self): ...
125
- def get(self): ...
126
- def id_properties_clear(self): ...
127
- def id_properties_ensure(self): ...
128
- def id_properties_ui(self): ...
129
- def is_extended(self): ...
130
- def is_property_hidden(self): ...
131
- def is_property_overridable_library(self): ...
132
- def is_property_readonly(self): ...
133
- def is_property_set(self): ...
134
- def items(self): ...
135
- def keyframe_delete(self): ...
136
- def keyframe_insert(self): ...
137
- def keys(self): ...
138
- def path_from_id(self): ...
139
- def path_resolve(self): ...
140
- def poll(self, context): ...
141
- def pop(self): ...
142
- def prepend(self, draw_func): ...
143
- def property_overridable_library_set(self): ...
144
- def property_unset(self): ...
145
- def remove(self, draw_func): ...
146
- def type_recast(self): ...
147
- def values(self): ...
148
-
149
- class EEVEE_MATERIAL_PT_displacement(
150
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
151
- ):
152
171
  COMPAT_ENGINES: typing.Any
172
+ """ """
173
+
153
174
  bl_context: typing.Any
175
+ """ """
176
+
154
177
  bl_label: typing.Any
178
+ """ """
179
+
155
180
  bl_options: typing.Any
181
+ """ """
182
+
156
183
  bl_region_type: typing.Any
184
+ """ """
185
+
157
186
  bl_rna: typing.Any
187
+ """ """
188
+
158
189
  bl_space_type: typing.Any
190
+ """ """
191
+
159
192
  bl_translation_context: typing.Any
193
+ """ """
194
+
160
195
  id_data: typing.Any
196
+ """ """
197
+
198
+ def append(self, draw_func):
199
+ """
200
+
201
+ :param draw_func:
202
+ """
203
+ ...
204
+
205
+ def as_pointer(self):
206
+ """ """
207
+ ...
208
+
209
+ def bl_rna_get_subclass(self):
210
+ """ """
211
+ ...
212
+
213
+ def bl_rna_get_subclass_py(self):
214
+ """ """
215
+ ...
216
+
217
+ def draw(self, context):
218
+ """
219
+
220
+ :param context:
221
+ """
222
+ ...
223
+
224
+ def driver_add(self):
225
+ """ """
226
+ ...
227
+
228
+ def driver_remove(self):
229
+ """ """
230
+ ...
231
+
232
+ def get(self):
233
+ """ """
234
+ ...
235
+
236
+ def id_properties_clear(self):
237
+ """ """
238
+ ...
239
+
240
+ def id_properties_ensure(self):
241
+ """ """
242
+ ...
243
+
244
+ def id_properties_ui(self):
245
+ """ """
246
+ ...
247
+
248
+ def is_extended(self):
249
+ """ """
250
+ ...
251
+
252
+ def is_property_hidden(self):
253
+ """ """
254
+ ...
255
+
256
+ def is_property_overridable_library(self):
257
+ """ """
258
+ ...
259
+
260
+ def is_property_readonly(self):
261
+ """ """
262
+ ...
263
+
264
+ def is_property_set(self):
265
+ """ """
266
+ ...
267
+
268
+ def items(self):
269
+ """ """
270
+ ...
271
+
272
+ def keyframe_delete(self):
273
+ """ """
274
+ ...
275
+
276
+ def keyframe_insert(self):
277
+ """ """
278
+ ...
279
+
280
+ def keys(self):
281
+ """ """
282
+ ...
283
+
284
+ def path_from_id(self):
285
+ """ """
286
+ ...
287
+
288
+ def path_resolve(self):
289
+ """ """
290
+ ...
291
+
292
+ def poll(self, context):
293
+ """
294
+
295
+ :param context:
296
+ """
297
+ ...
298
+
299
+ def pop(self):
300
+ """ """
301
+ ...
302
+
303
+ def prepend(self, draw_func):
304
+ """
305
+
306
+ :param draw_func:
307
+ """
308
+ ...
309
+
310
+ def property_overridable_library_set(self):
311
+ """ """
312
+ ...
313
+
314
+ def property_unset(self):
315
+ """ """
316
+ ...
317
+
318
+ def remove(self, draw_func):
319
+ """
320
+
321
+ :param draw_func:
322
+ """
323
+ ...
324
+
325
+ def type_recast(self):
326
+ """ """
327
+ ...
328
+
329
+ def values(self):
330
+ """ """
331
+ ...
332
+
333
+ class EEVEE_MATERIAL_PT_settings(bpy_types._GenericUI):
334
+ """ """
161
335
 
162
- def append(self, draw_func): ...
163
- def as_pointer(self): ...
164
- def bl_rna_get_subclass(self): ...
165
- def bl_rna_get_subclass_py(self): ...
166
- def draw(self, context): ...
167
- def driver_add(self): ...
168
- def driver_remove(self): ...
169
- def get(self): ...
170
- def id_properties_clear(self): ...
171
- def id_properties_ensure(self): ...
172
- def id_properties_ui(self): ...
173
- def is_extended(self): ...
174
- def is_property_hidden(self): ...
175
- def is_property_overridable_library(self): ...
176
- def is_property_readonly(self): ...
177
- def is_property_set(self): ...
178
- def items(self): ...
179
- def keyframe_delete(self): ...
180
- def keyframe_insert(self): ...
181
- def keys(self): ...
182
- def path_from_id(self): ...
183
- def path_resolve(self): ...
184
- def poll(self, context): ...
185
- def pop(self): ...
186
- def prepend(self, draw_func): ...
187
- def property_overridable_library_set(self): ...
188
- def property_unset(self): ...
189
- def remove(self, draw_func): ...
190
- def type_recast(self): ...
191
- def values(self): ...
192
-
193
- class EEVEE_MATERIAL_PT_settings(
194
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
195
- ):
196
336
  COMPAT_ENGINES: typing.Any
337
+ """ """
338
+
197
339
  bl_context: typing.Any
340
+ """ """
341
+
198
342
  bl_label: typing.Any
343
+ """ """
344
+
199
345
  bl_region_type: typing.Any
346
+ """ """
347
+
200
348
  bl_rna: typing.Any
349
+ """ """
350
+
201
351
  bl_space_type: typing.Any
352
+ """ """
353
+
202
354
  id_data: typing.Any
355
+ """ """
356
+
357
+ def append(self, draw_func):
358
+ """
359
+
360
+ :param draw_func:
361
+ """
362
+ ...
363
+
364
+ def as_pointer(self):
365
+ """ """
366
+ ...
367
+
368
+ def bl_rna_get_subclass(self):
369
+ """ """
370
+ ...
371
+
372
+ def bl_rna_get_subclass_py(self):
373
+ """ """
374
+ ...
375
+
376
+ def draw(self, context):
377
+ """
378
+
379
+ :param context:
380
+ """
381
+ ...
382
+
383
+ def driver_add(self):
384
+ """ """
385
+ ...
386
+
387
+ def driver_remove(self):
388
+ """ """
389
+ ...
390
+
391
+ def get(self):
392
+ """ """
393
+ ...
394
+
395
+ def id_properties_clear(self):
396
+ """ """
397
+ ...
398
+
399
+ def id_properties_ensure(self):
400
+ """ """
401
+ ...
402
+
403
+ def id_properties_ui(self):
404
+ """ """
405
+ ...
406
+
407
+ def is_extended(self):
408
+ """ """
409
+ ...
410
+
411
+ def is_property_hidden(self):
412
+ """ """
413
+ ...
414
+
415
+ def is_property_overridable_library(self):
416
+ """ """
417
+ ...
418
+
419
+ def is_property_readonly(self):
420
+ """ """
421
+ ...
422
+
423
+ def is_property_set(self):
424
+ """ """
425
+ ...
426
+
427
+ def items(self):
428
+ """ """
429
+ ...
430
+
431
+ def keyframe_delete(self):
432
+ """ """
433
+ ...
434
+
435
+ def keyframe_insert(self):
436
+ """ """
437
+ ...
438
+
439
+ def keys(self):
440
+ """ """
441
+ ...
442
+
443
+ def path_from_id(self):
444
+ """ """
445
+ ...
446
+
447
+ def path_resolve(self):
448
+ """ """
449
+ ...
450
+
451
+ def poll(self, context):
452
+ """
453
+
454
+ :param context:
455
+ """
456
+ ...
457
+
458
+ def pop(self):
459
+ """ """
460
+ ...
461
+
462
+ def prepend(self, draw_func):
463
+ """
464
+
465
+ :param draw_func:
466
+ """
467
+ ...
468
+
469
+ def property_overridable_library_set(self):
470
+ """ """
471
+ ...
472
+
473
+ def property_unset(self):
474
+ """ """
475
+ ...
476
+
477
+ def remove(self, draw_func):
478
+ """
479
+
480
+ :param draw_func:
481
+ """
482
+ ...
483
+
484
+ def type_recast(self):
485
+ """ """
486
+ ...
487
+
488
+ def values(self):
489
+ """ """
490
+ ...
491
+
492
+ class EEVEE_MATERIAL_PT_surface(bpy_types._GenericUI):
493
+ """ """
203
494
 
204
- def append(self, draw_func): ...
205
- def as_pointer(self): ...
206
- def bl_rna_get_subclass(self): ...
207
- def bl_rna_get_subclass_py(self): ...
208
- def draw(self, context): ...
209
- def driver_add(self): ...
210
- def driver_remove(self): ...
211
- def get(self): ...
212
- def id_properties_clear(self): ...
213
- def id_properties_ensure(self): ...
214
- def id_properties_ui(self): ...
215
- def is_extended(self): ...
216
- def is_property_hidden(self): ...
217
- def is_property_overridable_library(self): ...
218
- def is_property_readonly(self): ...
219
- def is_property_set(self): ...
220
- def items(self): ...
221
- def keyframe_delete(self): ...
222
- def keyframe_insert(self): ...
223
- def keys(self): ...
224
- def path_from_id(self): ...
225
- def path_resolve(self): ...
226
- def poll(self, context): ...
227
- def pop(self): ...
228
- def prepend(self, draw_func): ...
229
- def property_overridable_library_set(self): ...
230
- def property_unset(self): ...
231
- def remove(self, draw_func): ...
232
- def type_recast(self): ...
233
- def values(self): ...
234
-
235
- class EEVEE_MATERIAL_PT_surface(
236
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
237
- ):
238
495
  COMPAT_ENGINES: typing.Any
496
+ """ """
497
+
239
498
  bl_context: typing.Any
499
+ """ """
500
+
240
501
  bl_label: typing.Any
502
+ """ """
503
+
241
504
  bl_region_type: typing.Any
505
+ """ """
506
+
242
507
  bl_rna: typing.Any
508
+ """ """
509
+
243
510
  bl_space_type: typing.Any
511
+ """ """
512
+
244
513
  id_data: typing.Any
514
+ """ """
515
+
516
+ def append(self, draw_func):
517
+ """
518
+
519
+ :param draw_func:
520
+ """
521
+ ...
522
+
523
+ def as_pointer(self):
524
+ """ """
525
+ ...
526
+
527
+ def bl_rna_get_subclass(self):
528
+ """ """
529
+ ...
530
+
531
+ def bl_rna_get_subclass_py(self):
532
+ """ """
533
+ ...
534
+
535
+ def draw(self, context):
536
+ """
537
+
538
+ :param context:
539
+ """
540
+ ...
541
+
542
+ def driver_add(self):
543
+ """ """
544
+ ...
545
+
546
+ def driver_remove(self):
547
+ """ """
548
+ ...
549
+
550
+ def get(self):
551
+ """ """
552
+ ...
553
+
554
+ def id_properties_clear(self):
555
+ """ """
556
+ ...
557
+
558
+ def id_properties_ensure(self):
559
+ """ """
560
+ ...
561
+
562
+ def id_properties_ui(self):
563
+ """ """
564
+ ...
565
+
566
+ def is_extended(self):
567
+ """ """
568
+ ...
569
+
570
+ def is_property_hidden(self):
571
+ """ """
572
+ ...
573
+
574
+ def is_property_overridable_library(self):
575
+ """ """
576
+ ...
577
+
578
+ def is_property_readonly(self):
579
+ """ """
580
+ ...
581
+
582
+ def is_property_set(self):
583
+ """ """
584
+ ...
585
+
586
+ def items(self):
587
+ """ """
588
+ ...
589
+
590
+ def keyframe_delete(self):
591
+ """ """
592
+ ...
593
+
594
+ def keyframe_insert(self):
595
+ """ """
596
+ ...
597
+
598
+ def keys(self):
599
+ """ """
600
+ ...
601
+
602
+ def path_from_id(self):
603
+ """ """
604
+ ...
605
+
606
+ def path_resolve(self):
607
+ """ """
608
+ ...
609
+
610
+ def poll(self, context):
611
+ """
612
+
613
+ :param context:
614
+ """
615
+ ...
616
+
617
+ def pop(self):
618
+ """ """
619
+ ...
620
+
621
+ def prepend(self, draw_func):
622
+ """
623
+
624
+ :param draw_func:
625
+ """
626
+ ...
627
+
628
+ def property_overridable_library_set(self):
629
+ """ """
630
+ ...
631
+
632
+ def property_unset(self):
633
+ """ """
634
+ ...
635
+
636
+ def remove(self, draw_func):
637
+ """
638
+
639
+ :param draw_func:
640
+ """
641
+ ...
642
+
643
+ def type_recast(self):
644
+ """ """
645
+ ...
646
+
647
+ def values(self):
648
+ """ """
649
+ ...
650
+
651
+ class EEVEE_MATERIAL_PT_viewport_settings(bpy_types._GenericUI):
652
+ """ """
245
653
 
246
- def append(self, draw_func): ...
247
- def as_pointer(self): ...
248
- def bl_rna_get_subclass(self): ...
249
- def bl_rna_get_subclass_py(self): ...
250
- def draw(self, context): ...
251
- def driver_add(self): ...
252
- def driver_remove(self): ...
253
- def get(self): ...
254
- def id_properties_clear(self): ...
255
- def id_properties_ensure(self): ...
256
- def id_properties_ui(self): ...
257
- def is_extended(self): ...
258
- def is_property_hidden(self): ...
259
- def is_property_overridable_library(self): ...
260
- def is_property_readonly(self): ...
261
- def is_property_set(self): ...
262
- def items(self): ...
263
- def keyframe_delete(self): ...
264
- def keyframe_insert(self): ...
265
- def keys(self): ...
266
- def path_from_id(self): ...
267
- def path_resolve(self): ...
268
- def poll(self, context): ...
269
- def pop(self): ...
270
- def prepend(self, draw_func): ...
271
- def property_overridable_library_set(self): ...
272
- def property_unset(self): ...
273
- def remove(self, draw_func): ...
274
- def type_recast(self): ...
275
- def values(self): ...
276
-
277
- class EEVEE_MATERIAL_PT_viewport_settings(
278
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
279
- ):
280
654
  COMPAT_ENGINES: typing.Any
655
+ """ """
656
+
281
657
  bl_context: typing.Any
658
+ """ """
659
+
282
660
  bl_label: typing.Any
661
+ """ """
662
+
283
663
  bl_parent_id: typing.Any
664
+ """ """
665
+
284
666
  bl_region_type: typing.Any
667
+ """ """
668
+
285
669
  bl_rna: typing.Any
670
+ """ """
671
+
286
672
  bl_space_type: typing.Any
673
+ """ """
674
+
287
675
  id_data: typing.Any
676
+ """ """
677
+
678
+ def append(self, draw_func):
679
+ """
680
+
681
+ :param draw_func:
682
+ """
683
+ ...
684
+
685
+ def as_pointer(self):
686
+ """ """
687
+ ...
688
+
689
+ def bl_rna_get_subclass(self):
690
+ """ """
691
+ ...
692
+
693
+ def bl_rna_get_subclass_py(self):
694
+ """ """
695
+ ...
696
+
697
+ def draw(self, context):
698
+ """
699
+
700
+ :param context:
701
+ """
702
+ ...
703
+
704
+ def driver_add(self):
705
+ """ """
706
+ ...
707
+
708
+ def driver_remove(self):
709
+ """ """
710
+ ...
711
+
712
+ def get(self):
713
+ """ """
714
+ ...
715
+
716
+ def id_properties_clear(self):
717
+ """ """
718
+ ...
719
+
720
+ def id_properties_ensure(self):
721
+ """ """
722
+ ...
723
+
724
+ def id_properties_ui(self):
725
+ """ """
726
+ ...
727
+
728
+ def is_extended(self):
729
+ """ """
730
+ ...
731
+
732
+ def is_property_hidden(self):
733
+ """ """
734
+ ...
735
+
736
+ def is_property_overridable_library(self):
737
+ """ """
738
+ ...
739
+
740
+ def is_property_readonly(self):
741
+ """ """
742
+ ...
743
+
744
+ def is_property_set(self):
745
+ """ """
746
+ ...
747
+
748
+ def items(self):
749
+ """ """
750
+ ...
751
+
752
+ def keyframe_delete(self):
753
+ """ """
754
+ ...
755
+
756
+ def keyframe_insert(self):
757
+ """ """
758
+ ...
759
+
760
+ def keys(self):
761
+ """ """
762
+ ...
763
+
764
+ def path_from_id(self):
765
+ """ """
766
+ ...
767
+
768
+ def path_resolve(self):
769
+ """ """
770
+ ...
771
+
772
+ def poll(self, context):
773
+ """
774
+
775
+ :param context:
776
+ """
777
+ ...
778
+
779
+ def pop(self):
780
+ """ """
781
+ ...
782
+
783
+ def prepend(self, draw_func):
784
+ """
785
+
786
+ :param draw_func:
787
+ """
788
+ ...
789
+
790
+ def property_overridable_library_set(self):
791
+ """ """
792
+ ...
793
+
794
+ def property_unset(self):
795
+ """ """
796
+ ...
797
+
798
+ def remove(self, draw_func):
799
+ """
800
+
801
+ :param draw_func:
802
+ """
803
+ ...
804
+
805
+ def type_recast(self):
806
+ """ """
807
+ ...
808
+
809
+ def values(self):
810
+ """ """
811
+ ...
812
+
813
+ class EEVEE_MATERIAL_PT_volume(bpy_types._GenericUI):
814
+ """ """
288
815
 
289
- def append(self, draw_func): ...
290
- def as_pointer(self): ...
291
- def bl_rna_get_subclass(self): ...
292
- def bl_rna_get_subclass_py(self): ...
293
- def draw(self, context): ...
294
- def driver_add(self): ...
295
- def driver_remove(self): ...
296
- def get(self): ...
297
- def id_properties_clear(self): ...
298
- def id_properties_ensure(self): ...
299
- def id_properties_ui(self): ...
300
- def is_extended(self): ...
301
- def is_property_hidden(self): ...
302
- def is_property_overridable_library(self): ...
303
- def is_property_readonly(self): ...
304
- def is_property_set(self): ...
305
- def items(self): ...
306
- def keyframe_delete(self): ...
307
- def keyframe_insert(self): ...
308
- def keys(self): ...
309
- def path_from_id(self): ...
310
- def path_resolve(self): ...
311
- def poll(self, context): ...
312
- def pop(self): ...
313
- def prepend(self, draw_func): ...
314
- def property_overridable_library_set(self): ...
315
- def property_unset(self): ...
316
- def remove(self, draw_func): ...
317
- def type_recast(self): ...
318
- def values(self): ...
319
-
320
- class EEVEE_MATERIAL_PT_volume(
321
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
322
- ):
323
816
  COMPAT_ENGINES: typing.Any
817
+ """ """
818
+
324
819
  bl_context: typing.Any
820
+ """ """
821
+
325
822
  bl_label: typing.Any
823
+ """ """
824
+
326
825
  bl_options: typing.Any
826
+ """ """
827
+
327
828
  bl_region_type: typing.Any
829
+ """ """
830
+
328
831
  bl_rna: typing.Any
832
+ """ """
833
+
329
834
  bl_space_type: typing.Any
835
+ """ """
836
+
330
837
  bl_translation_context: typing.Any
838
+ """ """
839
+
331
840
  id_data: typing.Any
841
+ """ """
842
+
843
+ def append(self, draw_func):
844
+ """
845
+
846
+ :param draw_func:
847
+ """
848
+ ...
849
+
850
+ def as_pointer(self):
851
+ """ """
852
+ ...
853
+
854
+ def bl_rna_get_subclass(self):
855
+ """ """
856
+ ...
857
+
858
+ def bl_rna_get_subclass_py(self):
859
+ """ """
860
+ ...
861
+
862
+ def draw(self, context):
863
+ """
864
+
865
+ :param context:
866
+ """
867
+ ...
868
+
869
+ def driver_add(self):
870
+ """ """
871
+ ...
872
+
873
+ def driver_remove(self):
874
+ """ """
875
+ ...
876
+
877
+ def get(self):
878
+ """ """
879
+ ...
880
+
881
+ def id_properties_clear(self):
882
+ """ """
883
+ ...
884
+
885
+ def id_properties_ensure(self):
886
+ """ """
887
+ ...
888
+
889
+ def id_properties_ui(self):
890
+ """ """
891
+ ...
892
+
893
+ def is_extended(self):
894
+ """ """
895
+ ...
896
+
897
+ def is_property_hidden(self):
898
+ """ """
899
+ ...
900
+
901
+ def is_property_overridable_library(self):
902
+ """ """
903
+ ...
904
+
905
+ def is_property_readonly(self):
906
+ """ """
907
+ ...
908
+
909
+ def is_property_set(self):
910
+ """ """
911
+ ...
912
+
913
+ def items(self):
914
+ """ """
915
+ ...
916
+
917
+ def keyframe_delete(self):
918
+ """ """
919
+ ...
920
+
921
+ def keyframe_insert(self):
922
+ """ """
923
+ ...
924
+
925
+ def keys(self):
926
+ """ """
927
+ ...
928
+
929
+ def path_from_id(self):
930
+ """ """
931
+ ...
932
+
933
+ def path_resolve(self):
934
+ """ """
935
+ ...
936
+
937
+ def poll(self, context):
938
+ """
939
+
940
+ :param context:
941
+ """
942
+ ...
943
+
944
+ def pop(self):
945
+ """ """
946
+ ...
947
+
948
+ def prepend(self, draw_func):
949
+ """
950
+
951
+ :param draw_func:
952
+ """
953
+ ...
954
+
955
+ def property_overridable_library_set(self):
956
+ """ """
957
+ ...
958
+
959
+ def property_unset(self):
960
+ """ """
961
+ ...
962
+
963
+ def remove(self, draw_func):
964
+ """
965
+
966
+ :param draw_func:
967
+ """
968
+ ...
969
+
970
+ def type_recast(self):
971
+ """ """
972
+ ...
973
+
974
+ def values(self):
975
+ """ """
976
+ ...
977
+
978
+ class EEVEE_NEXT_MATERIAL_PT_settings(bpy_types._GenericUI):
979
+ """ """
980
+
981
+ COMPAT_ENGINES: typing.Any
982
+ """ """
983
+
984
+ bl_context: typing.Any
985
+ """ """
986
+
987
+ bl_label: typing.Any
988
+ """ """
332
989
 
333
- def append(self, draw_func): ...
334
- def as_pointer(self): ...
335
- def bl_rna_get_subclass(self): ...
336
- def bl_rna_get_subclass_py(self): ...
337
- def draw(self, context): ...
338
- def driver_add(self): ...
339
- def driver_remove(self): ...
340
- def get(self): ...
341
- def id_properties_clear(self): ...
342
- def id_properties_ensure(self): ...
343
- def id_properties_ui(self): ...
344
- def is_extended(self): ...
345
- def is_property_hidden(self): ...
346
- def is_property_overridable_library(self): ...
347
- def is_property_readonly(self): ...
348
- def is_property_set(self): ...
349
- def items(self): ...
350
- def keyframe_delete(self): ...
351
- def keyframe_insert(self): ...
352
- def keys(self): ...
353
- def path_from_id(self): ...
354
- def path_resolve(self): ...
355
- def poll(self, context): ...
356
- def pop(self): ...
357
- def prepend(self, draw_func): ...
358
- def property_overridable_library_set(self): ...
359
- def property_unset(self): ...
360
- def remove(self, draw_func): ...
361
- def type_recast(self): ...
362
- def values(self): ...
363
-
364
- class EEVEE_NEXT_MATERIAL_PT_settings(
365
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
366
- ):
367
- COMPAT_ENGINES: typing.Any
368
- bl_context: typing.Any
369
- bl_label: typing.Any
370
990
  bl_region_type: typing.Any
991
+ """ """
992
+
371
993
  bl_rna: typing.Any
994
+ """ """
995
+
372
996
  bl_space_type: typing.Any
997
+ """ """
998
+
373
999
  id_data: typing.Any
1000
+ """ """
1001
+
1002
+ def append(self, draw_func):
1003
+ """
1004
+
1005
+ :param draw_func:
1006
+ """
1007
+ ...
1008
+
1009
+ def as_pointer(self):
1010
+ """ """
1011
+ ...
1012
+
1013
+ def bl_rna_get_subclass(self):
1014
+ """ """
1015
+ ...
1016
+
1017
+ def bl_rna_get_subclass_py(self):
1018
+ """ """
1019
+ ...
1020
+
1021
+ def draw(self, context):
1022
+ """
1023
+
1024
+ :param context:
1025
+ """
1026
+ ...
1027
+
1028
+ def driver_add(self):
1029
+ """ """
1030
+ ...
1031
+
1032
+ def driver_remove(self):
1033
+ """ """
1034
+ ...
1035
+
1036
+ def get(self):
1037
+ """ """
1038
+ ...
1039
+
1040
+ def id_properties_clear(self):
1041
+ """ """
1042
+ ...
1043
+
1044
+ def id_properties_ensure(self):
1045
+ """ """
1046
+ ...
1047
+
1048
+ def id_properties_ui(self):
1049
+ """ """
1050
+ ...
1051
+
1052
+ def is_extended(self):
1053
+ """ """
1054
+ ...
1055
+
1056
+ def is_property_hidden(self):
1057
+ """ """
1058
+ ...
1059
+
1060
+ def is_property_overridable_library(self):
1061
+ """ """
1062
+ ...
1063
+
1064
+ def is_property_readonly(self):
1065
+ """ """
1066
+ ...
1067
+
1068
+ def is_property_set(self):
1069
+ """ """
1070
+ ...
1071
+
1072
+ def items(self):
1073
+ """ """
1074
+ ...
1075
+
1076
+ def keyframe_delete(self):
1077
+ """ """
1078
+ ...
1079
+
1080
+ def keyframe_insert(self):
1081
+ """ """
1082
+ ...
1083
+
1084
+ def keys(self):
1085
+ """ """
1086
+ ...
1087
+
1088
+ def path_from_id(self):
1089
+ """ """
1090
+ ...
1091
+
1092
+ def path_resolve(self):
1093
+ """ """
1094
+ ...
1095
+
1096
+ def poll(self, context):
1097
+ """
1098
+
1099
+ :param context:
1100
+ """
1101
+ ...
1102
+
1103
+ def pop(self):
1104
+ """ """
1105
+ ...
1106
+
1107
+ def prepend(self, draw_func):
1108
+ """
1109
+
1110
+ :param draw_func:
1111
+ """
1112
+ ...
1113
+
1114
+ def property_overridable_library_set(self):
1115
+ """ """
1116
+ ...
1117
+
1118
+ def property_unset(self):
1119
+ """ """
1120
+ ...
1121
+
1122
+ def remove(self, draw_func):
1123
+ """
1124
+
1125
+ :param draw_func:
1126
+ """
1127
+ ...
1128
+
1129
+ def type_recast(self):
1130
+ """ """
1131
+ ...
1132
+
1133
+ def values(self):
1134
+ """ """
1135
+ ...
1136
+
1137
+ class EEVEE_NEXT_MATERIAL_PT_settings_surface(bpy_types._GenericUI):
1138
+ """ """
374
1139
 
375
- def append(self, draw_func): ...
376
- def as_pointer(self): ...
377
- def bl_rna_get_subclass(self): ...
378
- def bl_rna_get_subclass_py(self): ...
379
- def draw(self, context): ...
380
- def driver_add(self): ...
381
- def driver_remove(self): ...
382
- def get(self): ...
383
- def id_properties_clear(self): ...
384
- def id_properties_ensure(self): ...
385
- def id_properties_ui(self): ...
386
- def is_extended(self): ...
387
- def is_property_hidden(self): ...
388
- def is_property_overridable_library(self): ...
389
- def is_property_readonly(self): ...
390
- def is_property_set(self): ...
391
- def items(self): ...
392
- def keyframe_delete(self): ...
393
- def keyframe_insert(self): ...
394
- def keys(self): ...
395
- def path_from_id(self): ...
396
- def path_resolve(self): ...
397
- def poll(self, context): ...
398
- def pop(self): ...
399
- def prepend(self, draw_func): ...
400
- def property_overridable_library_set(self): ...
401
- def property_unset(self): ...
402
- def remove(self, draw_func): ...
403
- def type_recast(self): ...
404
- def values(self): ...
405
-
406
- class EEVEE_NEXT_MATERIAL_PT_settings_surface(
407
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
408
- ):
409
1140
  COMPAT_ENGINES: typing.Any
1141
+ """ """
1142
+
410
1143
  bl_context: typing.Any
1144
+ """ """
1145
+
411
1146
  bl_label: typing.Any
1147
+ """ """
1148
+
412
1149
  bl_parent_id: typing.Any
1150
+ """ """
1151
+
413
1152
  bl_region_type: typing.Any
1153
+ """ """
1154
+
414
1155
  bl_rna: typing.Any
1156
+ """ """
1157
+
415
1158
  bl_space_type: typing.Any
1159
+ """ """
1160
+
416
1161
  id_data: typing.Any
1162
+ """ """
1163
+
1164
+ def append(self, draw_func):
1165
+ """
1166
+
1167
+ :param draw_func:
1168
+ """
1169
+ ...
1170
+
1171
+ def as_pointer(self):
1172
+ """ """
1173
+ ...
1174
+
1175
+ def bl_rna_get_subclass(self):
1176
+ """ """
1177
+ ...
1178
+
1179
+ def bl_rna_get_subclass_py(self):
1180
+ """ """
1181
+ ...
1182
+
1183
+ def draw(self, context):
1184
+ """
1185
+
1186
+ :param context:
1187
+ """
1188
+ ...
1189
+
1190
+ def driver_add(self):
1191
+ """ """
1192
+ ...
1193
+
1194
+ def driver_remove(self):
1195
+ """ """
1196
+ ...
1197
+
1198
+ def get(self):
1199
+ """ """
1200
+ ...
1201
+
1202
+ def id_properties_clear(self):
1203
+ """ """
1204
+ ...
1205
+
1206
+ def id_properties_ensure(self):
1207
+ """ """
1208
+ ...
1209
+
1210
+ def id_properties_ui(self):
1211
+ """ """
1212
+ ...
1213
+
1214
+ def is_extended(self):
1215
+ """ """
1216
+ ...
1217
+
1218
+ def is_property_hidden(self):
1219
+ """ """
1220
+ ...
1221
+
1222
+ def is_property_overridable_library(self):
1223
+ """ """
1224
+ ...
1225
+
1226
+ def is_property_readonly(self):
1227
+ """ """
1228
+ ...
1229
+
1230
+ def is_property_set(self):
1231
+ """ """
1232
+ ...
1233
+
1234
+ def items(self):
1235
+ """ """
1236
+ ...
1237
+
1238
+ def keyframe_delete(self):
1239
+ """ """
1240
+ ...
1241
+
1242
+ def keyframe_insert(self):
1243
+ """ """
1244
+ ...
1245
+
1246
+ def keys(self):
1247
+ """ """
1248
+ ...
1249
+
1250
+ def path_from_id(self):
1251
+ """ """
1252
+ ...
1253
+
1254
+ def path_resolve(self):
1255
+ """ """
1256
+ ...
1257
+
1258
+ def poll(self, context):
1259
+ """
1260
+
1261
+ :param context:
1262
+ """
1263
+ ...
1264
+
1265
+ def pop(self):
1266
+ """ """
1267
+ ...
1268
+
1269
+ def prepend(self, draw_func):
1270
+ """
1271
+
1272
+ :param draw_func:
1273
+ """
1274
+ ...
1275
+
1276
+ def property_overridable_library_set(self):
1277
+ """ """
1278
+ ...
1279
+
1280
+ def property_unset(self):
1281
+ """ """
1282
+ ...
1283
+
1284
+ def remove(self, draw_func):
1285
+ """
1286
+
1287
+ :param draw_func:
1288
+ """
1289
+ ...
1290
+
1291
+ def type_recast(self):
1292
+ """ """
1293
+ ...
1294
+
1295
+ def values(self):
1296
+ """ """
1297
+ ...
1298
+
1299
+ class EEVEE_NEXT_MATERIAL_PT_settings_volume(bpy_types._GenericUI):
1300
+ """ """
417
1301
 
418
- def append(self, draw_func): ...
419
- def as_pointer(self): ...
420
- def bl_rna_get_subclass(self): ...
421
- def bl_rna_get_subclass_py(self): ...
422
- def draw(self, context): ...
423
- def driver_add(self): ...
424
- def driver_remove(self): ...
425
- def get(self): ...
426
- def id_properties_clear(self): ...
427
- def id_properties_ensure(self): ...
428
- def id_properties_ui(self): ...
429
- def is_extended(self): ...
430
- def is_property_hidden(self): ...
431
- def is_property_overridable_library(self): ...
432
- def is_property_readonly(self): ...
433
- def is_property_set(self): ...
434
- def items(self): ...
435
- def keyframe_delete(self): ...
436
- def keyframe_insert(self): ...
437
- def keys(self): ...
438
- def path_from_id(self): ...
439
- def path_resolve(self): ...
440
- def poll(self, context): ...
441
- def pop(self): ...
442
- def prepend(self, draw_func): ...
443
- def property_overridable_library_set(self): ...
444
- def property_unset(self): ...
445
- def remove(self, draw_func): ...
446
- def type_recast(self): ...
447
- def values(self): ...
448
-
449
- class EEVEE_NEXT_MATERIAL_PT_settings_volume(
450
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
451
- ):
452
1302
  COMPAT_ENGINES: typing.Any
1303
+ """ """
1304
+
453
1305
  bl_context: typing.Any
1306
+ """ """
1307
+
454
1308
  bl_label: typing.Any
1309
+ """ """
1310
+
455
1311
  bl_parent_id: typing.Any
1312
+ """ """
1313
+
456
1314
  bl_region_type: typing.Any
1315
+ """ """
1316
+
457
1317
  bl_rna: typing.Any
1318
+ """ """
1319
+
458
1320
  bl_space_type: typing.Any
1321
+ """ """
1322
+
1323
+ id_data: typing.Any
1324
+ """ """
1325
+
1326
+ def append(self, draw_func):
1327
+ """
1328
+
1329
+ :param draw_func:
1330
+ """
1331
+ ...
1332
+
1333
+ def as_pointer(self):
1334
+ """ """
1335
+ ...
1336
+
1337
+ def bl_rna_get_subclass(self):
1338
+ """ """
1339
+ ...
1340
+
1341
+ def bl_rna_get_subclass_py(self):
1342
+ """ """
1343
+ ...
1344
+
1345
+ def draw(self, context):
1346
+ """
1347
+
1348
+ :param context:
1349
+ """
1350
+ ...
1351
+
1352
+ def driver_add(self):
1353
+ """ """
1354
+ ...
1355
+
1356
+ def driver_remove(self):
1357
+ """ """
1358
+ ...
1359
+
1360
+ def get(self):
1361
+ """ """
1362
+ ...
1363
+
1364
+ def id_properties_clear(self):
1365
+ """ """
1366
+ ...
1367
+
1368
+ def id_properties_ensure(self):
1369
+ """ """
1370
+ ...
1371
+
1372
+ def id_properties_ui(self):
1373
+ """ """
1374
+ ...
1375
+
1376
+ def is_extended(self):
1377
+ """ """
1378
+ ...
1379
+
1380
+ def is_property_hidden(self):
1381
+ """ """
1382
+ ...
1383
+
1384
+ def is_property_overridable_library(self):
1385
+ """ """
1386
+ ...
1387
+
1388
+ def is_property_readonly(self):
1389
+ """ """
1390
+ ...
1391
+
1392
+ def is_property_set(self):
1393
+ """ """
1394
+ ...
1395
+
1396
+ def items(self):
1397
+ """ """
1398
+ ...
1399
+
1400
+ def keyframe_delete(self):
1401
+ """ """
1402
+ ...
1403
+
1404
+ def keyframe_insert(self):
1405
+ """ """
1406
+ ...
1407
+
1408
+ def keys(self):
1409
+ """ """
1410
+ ...
1411
+
1412
+ def path_from_id(self):
1413
+ """ """
1414
+ ...
1415
+
1416
+ def path_resolve(self):
1417
+ """ """
1418
+ ...
1419
+
1420
+ def poll(self, context):
1421
+ """
1422
+
1423
+ :param context:
1424
+ """
1425
+ ...
1426
+
1427
+ def pop(self):
1428
+ """ """
1429
+ ...
1430
+
1431
+ def prepend(self, draw_func):
1432
+ """
1433
+
1434
+ :param draw_func:
1435
+ """
1436
+ ...
1437
+
1438
+ def property_overridable_library_set(self):
1439
+ """ """
1440
+ ...
1441
+
1442
+ def property_unset(self):
1443
+ """ """
1444
+ ...
1445
+
1446
+ def remove(self, draw_func):
1447
+ """
1448
+
1449
+ :param draw_func:
1450
+ """
1451
+ ...
1452
+
1453
+ def type_recast(self):
1454
+ """ """
1455
+ ...
1456
+
1457
+ def values(self):
1458
+ """ """
1459
+ ...
1460
+
1461
+ class MATERIAL_MT_context_menu(bpy_types._GenericUI):
1462
+ """ """
1463
+
1464
+ bl_label: typing.Any
1465
+ """ """
1466
+
1467
+ bl_rna: typing.Any
1468
+ """ """
1469
+
459
1470
  id_data: typing.Any
1471
+ """ """
1472
+
1473
+ def append(self, draw_func):
1474
+ """
1475
+
1476
+ :param draw_func:
1477
+ """
1478
+ ...
1479
+
1480
+ def as_pointer(self):
1481
+ """ """
1482
+ ...
1483
+
1484
+ def bl_rna_get_subclass(self):
1485
+ """ """
1486
+ ...
1487
+
1488
+ def bl_rna_get_subclass_py(self):
1489
+ """ """
1490
+ ...
1491
+
1492
+ def draw(self, _context):
1493
+ """
1494
+
1495
+ :param _context:
1496
+ """
1497
+ ...
1498
+
1499
+ def draw_collapsible(self, context, layout):
1500
+ """
1501
+
1502
+ :param context:
1503
+ :param layout:
1504
+ """
1505
+ ...
1506
+
1507
+ def draw_preset(self, _context):
1508
+ """
1509
+
1510
+ :param _context:
1511
+ """
1512
+ ...
1513
+
1514
+ def driver_add(self):
1515
+ """ """
1516
+ ...
1517
+
1518
+ def driver_remove(self):
1519
+ """ """
1520
+ ...
1521
+
1522
+ def get(self):
1523
+ """ """
1524
+ ...
1525
+
1526
+ def id_properties_clear(self):
1527
+ """ """
1528
+ ...
1529
+
1530
+ def id_properties_ensure(self):
1531
+ """ """
1532
+ ...
1533
+
1534
+ def id_properties_ui(self):
1535
+ """ """
1536
+ ...
1537
+
1538
+ def is_extended(self):
1539
+ """ """
1540
+ ...
1541
+
1542
+ def is_property_hidden(self):
1543
+ """ """
1544
+ ...
1545
+
1546
+ def is_property_overridable_library(self):
1547
+ """ """
1548
+ ...
1549
+
1550
+ def is_property_readonly(self):
1551
+ """ """
1552
+ ...
1553
+
1554
+ def is_property_set(self):
1555
+ """ """
1556
+ ...
1557
+
1558
+ def items(self):
1559
+ """ """
1560
+ ...
1561
+
1562
+ def keyframe_delete(self):
1563
+ """ """
1564
+ ...
1565
+
1566
+ def keyframe_insert(self):
1567
+ """ """
1568
+ ...
1569
+
1570
+ def keys(self):
1571
+ """ """
1572
+ ...
1573
+
1574
+ def path_from_id(self):
1575
+ """ """
1576
+ ...
1577
+
1578
+ def path_menu(
1579
+ self,
1580
+ searchpaths,
1581
+ operator,
1582
+ props_default,
1583
+ prop_filepath,
1584
+ filter_ext,
1585
+ filter_path,
1586
+ display_name,
1587
+ add_operator,
1588
+ ):
1589
+ """
1590
+
1591
+ :param searchpaths:
1592
+ :param operator:
1593
+ :param props_default:
1594
+ :param prop_filepath:
1595
+ :param filter_ext:
1596
+ :param filter_path:
1597
+ :param display_name:
1598
+ :param add_operator:
1599
+ """
1600
+ ...
1601
+
1602
+ def path_resolve(self):
1603
+ """ """
1604
+ ...
1605
+
1606
+ def pop(self):
1607
+ """ """
1608
+ ...
1609
+
1610
+ def prepend(self, draw_func):
1611
+ """
1612
+
1613
+ :param draw_func:
1614
+ """
1615
+ ...
1616
+
1617
+ def property_overridable_library_set(self):
1618
+ """ """
1619
+ ...
1620
+
1621
+ def property_unset(self):
1622
+ """ """
1623
+ ...
1624
+
1625
+ def remove(self, draw_func):
1626
+ """
1627
+
1628
+ :param draw_func:
1629
+ """
1630
+ ...
1631
+
1632
+ def type_recast(self):
1633
+ """ """
1634
+ ...
1635
+
1636
+ def values(self):
1637
+ """ """
1638
+ ...
1639
+
1640
+ class MATERIAL_PT_custom_props(bpy_types._GenericUI):
1641
+ """ """
460
1642
 
461
- def append(self, draw_func): ...
462
- def as_pointer(self): ...
463
- def bl_rna_get_subclass(self): ...
464
- def bl_rna_get_subclass_py(self): ...
465
- def draw(self, context): ...
466
- def driver_add(self): ...
467
- def driver_remove(self): ...
468
- def get(self): ...
469
- def id_properties_clear(self): ...
470
- def id_properties_ensure(self): ...
471
- def id_properties_ui(self): ...
472
- def is_extended(self): ...
473
- def is_property_hidden(self): ...
474
- def is_property_overridable_library(self): ...
475
- def is_property_readonly(self): ...
476
- def is_property_set(self): ...
477
- def items(self): ...
478
- def keyframe_delete(self): ...
479
- def keyframe_insert(self): ...
480
- def keys(self): ...
481
- def path_from_id(self): ...
482
- def path_resolve(self): ...
483
- def poll(self, context): ...
484
- def pop(self): ...
485
- def prepend(self, draw_func): ...
486
- def property_overridable_library_set(self): ...
487
- def property_unset(self): ...
488
- def remove(self, draw_func): ...
489
- def type_recast(self): ...
490
- def values(self): ...
491
-
492
- class MATERIAL_PT_custom_props(
493
- MaterialButtonsPanel,
494
- rna_prop_ui.PropertyPanel,
495
- bpy_types.Panel,
496
- bpy_types._GenericUI,
497
- ):
498
1643
  COMPAT_ENGINES: typing.Any
1644
+ """ """
1645
+
499
1646
  bl_context: typing.Any
1647
+ """ """
1648
+
500
1649
  bl_label: typing.Any
1650
+ """ """
1651
+
501
1652
  bl_options: typing.Any
1653
+ """ """
1654
+
502
1655
  bl_order: typing.Any
1656
+ """ """
1657
+
503
1658
  bl_region_type: typing.Any
1659
+ """ """
1660
+
504
1661
  bl_rna: typing.Any
1662
+ """ """
1663
+
505
1664
  bl_space_type: typing.Any
1665
+ """ """
1666
+
506
1667
  id_data: typing.Any
1668
+ """ """
1669
+
1670
+ def append(self, draw_func):
1671
+ """
1672
+
1673
+ :param draw_func:
1674
+ """
1675
+ ...
1676
+
1677
+ def as_pointer(self):
1678
+ """ """
1679
+ ...
1680
+
1681
+ def bl_rna_get_subclass(self):
1682
+ """ """
1683
+ ...
1684
+
1685
+ def bl_rna_get_subclass_py(self):
1686
+ """ """
1687
+ ...
1688
+
1689
+ def draw(self, context):
1690
+ """
1691
+
1692
+ :param context:
1693
+ """
1694
+ ...
1695
+
1696
+ def driver_add(self):
1697
+ """ """
1698
+ ...
1699
+
1700
+ def driver_remove(self):
1701
+ """ """
1702
+ ...
1703
+
1704
+ def get(self):
1705
+ """ """
1706
+ ...
1707
+
1708
+ def id_properties_clear(self):
1709
+ """ """
1710
+ ...
1711
+
1712
+ def id_properties_ensure(self):
1713
+ """ """
1714
+ ...
1715
+
1716
+ def id_properties_ui(self):
1717
+ """ """
1718
+ ...
1719
+
1720
+ def is_extended(self):
1721
+ """ """
1722
+ ...
1723
+
1724
+ def is_property_hidden(self):
1725
+ """ """
1726
+ ...
1727
+
1728
+ def is_property_overridable_library(self):
1729
+ """ """
1730
+ ...
1731
+
1732
+ def is_property_readonly(self):
1733
+ """ """
1734
+ ...
1735
+
1736
+ def is_property_set(self):
1737
+ """ """
1738
+ ...
1739
+
1740
+ def items(self):
1741
+ """ """
1742
+ ...
1743
+
1744
+ def keyframe_delete(self):
1745
+ """ """
1746
+ ...
1747
+
1748
+ def keyframe_insert(self):
1749
+ """ """
1750
+ ...
1751
+
1752
+ def keys(self):
1753
+ """ """
1754
+ ...
1755
+
1756
+ def path_from_id(self):
1757
+ """ """
1758
+ ...
1759
+
1760
+ def path_resolve(self):
1761
+ """ """
1762
+ ...
1763
+
1764
+ def poll(self, context):
1765
+ """
1766
+
1767
+ :param context:
1768
+ """
1769
+ ...
1770
+
1771
+ def pop(self):
1772
+ """ """
1773
+ ...
1774
+
1775
+ def prepend(self, draw_func):
1776
+ """
1777
+
1778
+ :param draw_func:
1779
+ """
1780
+ ...
1781
+
1782
+ def property_overridable_library_set(self):
1783
+ """ """
1784
+ ...
1785
+
1786
+ def property_unset(self):
1787
+ """ """
1788
+ ...
1789
+
1790
+ def remove(self, draw_func):
1791
+ """
1792
+
1793
+ :param draw_func:
1794
+ """
1795
+ ...
1796
+
1797
+ def type_recast(self):
1798
+ """ """
1799
+ ...
1800
+
1801
+ def values(self):
1802
+ """ """
1803
+ ...
1804
+
1805
+ class MATERIAL_PT_lineart(bpy_types._GenericUI):
1806
+ """ """
507
1807
 
508
- def append(self, draw_func): ...
509
- def as_pointer(self): ...
510
- def bl_rna_get_subclass(self): ...
511
- def bl_rna_get_subclass_py(self): ...
512
- def draw(self, context): ...
513
- def driver_add(self): ...
514
- def driver_remove(self): ...
515
- def get(self): ...
516
- def id_properties_clear(self): ...
517
- def id_properties_ensure(self): ...
518
- def id_properties_ui(self): ...
519
- def is_extended(self): ...
520
- def is_property_hidden(self): ...
521
- def is_property_overridable_library(self): ...
522
- def is_property_readonly(self): ...
523
- def is_property_set(self): ...
524
- def items(self): ...
525
- def keyframe_delete(self): ...
526
- def keyframe_insert(self): ...
527
- def keys(self): ...
528
- def path_from_id(self): ...
529
- def path_resolve(self): ...
530
- def poll(self, context): ...
531
- def pop(self): ...
532
- def prepend(self, draw_func): ...
533
- def property_overridable_library_set(self): ...
534
- def property_unset(self): ...
535
- def remove(self, draw_func): ...
536
- def type_recast(self): ...
537
- def values(self): ...
538
-
539
- class MATERIAL_PT_lineart(MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
540
1808
  bl_context: typing.Any
1809
+ """ """
1810
+
541
1811
  bl_label: typing.Any
1812
+ """ """
1813
+
542
1814
  bl_options: typing.Any
1815
+ """ """
1816
+
543
1817
  bl_order: typing.Any
1818
+ """ """
1819
+
544
1820
  bl_region_type: typing.Any
1821
+ """ """
1822
+
545
1823
  bl_rna: typing.Any
1824
+ """ """
1825
+
546
1826
  bl_space_type: typing.Any
1827
+ """ """
1828
+
547
1829
  id_data: typing.Any
1830
+ """ """
1831
+
1832
+ def append(self, draw_func):
1833
+ """
1834
+
1835
+ :param draw_func:
1836
+ """
1837
+ ...
1838
+
1839
+ def as_pointer(self):
1840
+ """ """
1841
+ ...
1842
+
1843
+ def bl_rna_get_subclass(self):
1844
+ """ """
1845
+ ...
1846
+
1847
+ def bl_rna_get_subclass_py(self):
1848
+ """ """
1849
+ ...
1850
+
1851
+ def draw(self, context):
1852
+ """
1853
+
1854
+ :param context:
1855
+ """
1856
+ ...
1857
+
1858
+ def driver_add(self):
1859
+ """ """
1860
+ ...
1861
+
1862
+ def driver_remove(self):
1863
+ """ """
1864
+ ...
1865
+
1866
+ def get(self):
1867
+ """ """
1868
+ ...
1869
+
1870
+ def id_properties_clear(self):
1871
+ """ """
1872
+ ...
1873
+
1874
+ def id_properties_ensure(self):
1875
+ """ """
1876
+ ...
1877
+
1878
+ def id_properties_ui(self):
1879
+ """ """
1880
+ ...
1881
+
1882
+ def is_extended(self):
1883
+ """ """
1884
+ ...
1885
+
1886
+ def is_property_hidden(self):
1887
+ """ """
1888
+ ...
1889
+
1890
+ def is_property_overridable_library(self):
1891
+ """ """
1892
+ ...
1893
+
1894
+ def is_property_readonly(self):
1895
+ """ """
1896
+ ...
1897
+
1898
+ def is_property_set(self):
1899
+ """ """
1900
+ ...
1901
+
1902
+ def items(self):
1903
+ """ """
1904
+ ...
1905
+
1906
+ def keyframe_delete(self):
1907
+ """ """
1908
+ ...
1909
+
1910
+ def keyframe_insert(self):
1911
+ """ """
1912
+ ...
1913
+
1914
+ def keys(self):
1915
+ """ """
1916
+ ...
1917
+
1918
+ def path_from_id(self):
1919
+ """ """
1920
+ ...
1921
+
1922
+ def path_resolve(self):
1923
+ """ """
1924
+ ...
1925
+
1926
+ def poll(self, context):
1927
+ """
1928
+
1929
+ :param context:
1930
+ """
1931
+ ...
1932
+
1933
+ def pop(self):
1934
+ """ """
1935
+ ...
1936
+
1937
+ def prepend(self, draw_func):
1938
+ """
1939
+
1940
+ :param draw_func:
1941
+ """
1942
+ ...
1943
+
1944
+ def property_overridable_library_set(self):
1945
+ """ """
1946
+ ...
1947
+
1948
+ def property_unset(self):
1949
+ """ """
1950
+ ...
1951
+
1952
+ def remove(self, draw_func):
1953
+ """
1954
+
1955
+ :param draw_func:
1956
+ """
1957
+ ...
1958
+
1959
+ def type_recast(self):
1960
+ """ """
1961
+ ...
1962
+
1963
+ def values(self):
1964
+ """ """
1965
+ ...
1966
+
1967
+ class MATERIAL_PT_preview(bpy_types._GenericUI):
1968
+ """ """
548
1969
 
549
- def append(self, draw_func): ...
550
- def as_pointer(self): ...
551
- def bl_rna_get_subclass(self): ...
552
- def bl_rna_get_subclass_py(self): ...
553
- def draw(self, context): ...
554
- def driver_add(self): ...
555
- def driver_remove(self): ...
556
- def get(self): ...
557
- def id_properties_clear(self): ...
558
- def id_properties_ensure(self): ...
559
- def id_properties_ui(self): ...
560
- def is_extended(self): ...
561
- def is_property_hidden(self): ...
562
- def is_property_overridable_library(self): ...
563
- def is_property_readonly(self): ...
564
- def is_property_set(self): ...
565
- def items(self): ...
566
- def keyframe_delete(self): ...
567
- def keyframe_insert(self): ...
568
- def keys(self): ...
569
- def path_from_id(self): ...
570
- def path_resolve(self): ...
571
- def poll(self, context): ...
572
- def pop(self): ...
573
- def prepend(self, draw_func): ...
574
- def property_overridable_library_set(self): ...
575
- def property_unset(self): ...
576
- def remove(self, draw_func): ...
577
- def type_recast(self): ...
578
- def values(self): ...
579
-
580
- class MATERIAL_PT_preview(MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
581
1970
  COMPAT_ENGINES: typing.Any
1971
+ """ """
1972
+
582
1973
  bl_context: typing.Any
1974
+ """ """
1975
+
583
1976
  bl_label: typing.Any
1977
+ """ """
1978
+
584
1979
  bl_options: typing.Any
1980
+ """ """
1981
+
585
1982
  bl_region_type: typing.Any
1983
+ """ """
1984
+
586
1985
  bl_rna: typing.Any
1986
+ """ """
1987
+
587
1988
  bl_space_type: typing.Any
1989
+ """ """
1990
+
588
1991
  id_data: typing.Any
1992
+ """ """
1993
+
1994
+ def append(self, draw_func):
1995
+ """
1996
+
1997
+ :param draw_func:
1998
+ """
1999
+ ...
2000
+
2001
+ def as_pointer(self):
2002
+ """ """
2003
+ ...
2004
+
2005
+ def bl_rna_get_subclass(self):
2006
+ """ """
2007
+ ...
2008
+
2009
+ def bl_rna_get_subclass_py(self):
2010
+ """ """
2011
+ ...
2012
+
2013
+ def draw(self, context):
2014
+ """
2015
+
2016
+ :param context:
2017
+ """
2018
+ ...
2019
+
2020
+ def driver_add(self):
2021
+ """ """
2022
+ ...
2023
+
2024
+ def driver_remove(self):
2025
+ """ """
2026
+ ...
2027
+
2028
+ def get(self):
2029
+ """ """
2030
+ ...
2031
+
2032
+ def id_properties_clear(self):
2033
+ """ """
2034
+ ...
2035
+
2036
+ def id_properties_ensure(self):
2037
+ """ """
2038
+ ...
2039
+
2040
+ def id_properties_ui(self):
2041
+ """ """
2042
+ ...
2043
+
2044
+ def is_extended(self):
2045
+ """ """
2046
+ ...
2047
+
2048
+ def is_property_hidden(self):
2049
+ """ """
2050
+ ...
2051
+
2052
+ def is_property_overridable_library(self):
2053
+ """ """
2054
+ ...
2055
+
2056
+ def is_property_readonly(self):
2057
+ """ """
2058
+ ...
2059
+
2060
+ def is_property_set(self):
2061
+ """ """
2062
+ ...
2063
+
2064
+ def items(self):
2065
+ """ """
2066
+ ...
2067
+
2068
+ def keyframe_delete(self):
2069
+ """ """
2070
+ ...
2071
+
2072
+ def keyframe_insert(self):
2073
+ """ """
2074
+ ...
2075
+
2076
+ def keys(self):
2077
+ """ """
2078
+ ...
2079
+
2080
+ def path_from_id(self):
2081
+ """ """
2082
+ ...
2083
+
2084
+ def path_resolve(self):
2085
+ """ """
2086
+ ...
2087
+
2088
+ def poll(self, context):
2089
+ """
2090
+
2091
+ :param context:
2092
+ """
2093
+ ...
2094
+
2095
+ def pop(self):
2096
+ """ """
2097
+ ...
2098
+
2099
+ def prepend(self, draw_func):
2100
+ """
2101
+
2102
+ :param draw_func:
2103
+ """
2104
+ ...
2105
+
2106
+ def property_overridable_library_set(self):
2107
+ """ """
2108
+ ...
2109
+
2110
+ def property_unset(self):
2111
+ """ """
2112
+ ...
2113
+
2114
+ def remove(self, draw_func):
2115
+ """
2116
+
2117
+ :param draw_func:
2118
+ """
2119
+ ...
2120
+
2121
+ def type_recast(self):
2122
+ """ """
2123
+ ...
2124
+
2125
+ def values(self):
2126
+ """ """
2127
+ ...
2128
+
2129
+ class MATERIAL_PT_viewport(bpy_types._GenericUI):
2130
+ """ """
589
2131
 
590
- def append(self, draw_func): ...
591
- def as_pointer(self): ...
592
- def bl_rna_get_subclass(self): ...
593
- def bl_rna_get_subclass_py(self): ...
594
- def draw(self, context): ...
595
- def driver_add(self): ...
596
- def driver_remove(self): ...
597
- def get(self): ...
598
- def id_properties_clear(self): ...
599
- def id_properties_ensure(self): ...
600
- def id_properties_ui(self): ...
601
- def is_extended(self): ...
602
- def is_property_hidden(self): ...
603
- def is_property_overridable_library(self): ...
604
- def is_property_readonly(self): ...
605
- def is_property_set(self): ...
606
- def items(self): ...
607
- def keyframe_delete(self): ...
608
- def keyframe_insert(self): ...
609
- def keys(self): ...
610
- def path_from_id(self): ...
611
- def path_resolve(self): ...
612
- def poll(self, context): ...
613
- def pop(self): ...
614
- def prepend(self, draw_func): ...
615
- def property_overridable_library_set(self): ...
616
- def property_unset(self): ...
617
- def remove(self, draw_func): ...
618
- def type_recast(self): ...
619
- def values(self): ...
620
-
621
- class MATERIAL_PT_viewport(MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
622
2132
  bl_context: typing.Any
2133
+ """ """
2134
+
623
2135
  bl_label: typing.Any
2136
+ """ """
2137
+
624
2138
  bl_options: typing.Any
2139
+ """ """
2140
+
625
2141
  bl_order: typing.Any
2142
+ """ """
2143
+
626
2144
  bl_region_type: typing.Any
2145
+ """ """
2146
+
627
2147
  bl_rna: typing.Any
2148
+ """ """
2149
+
628
2150
  bl_space_type: typing.Any
2151
+ """ """
2152
+
2153
+ id_data: typing.Any
2154
+ """ """
2155
+
2156
+ def append(self, draw_func):
2157
+ """
2158
+
2159
+ :param draw_func:
2160
+ """
2161
+ ...
2162
+
2163
+ def as_pointer(self):
2164
+ """ """
2165
+ ...
2166
+
2167
+ def bl_rna_get_subclass(self):
2168
+ """ """
2169
+ ...
2170
+
2171
+ def bl_rna_get_subclass_py(self):
2172
+ """ """
2173
+ ...
2174
+
2175
+ def draw(self, context):
2176
+ """
2177
+
2178
+ :param context:
2179
+ """
2180
+ ...
2181
+
2182
+ def driver_add(self):
2183
+ """ """
2184
+ ...
2185
+
2186
+ def driver_remove(self):
2187
+ """ """
2188
+ ...
2189
+
2190
+ def get(self):
2191
+ """ """
2192
+ ...
2193
+
2194
+ def id_properties_clear(self):
2195
+ """ """
2196
+ ...
2197
+
2198
+ def id_properties_ensure(self):
2199
+ """ """
2200
+ ...
2201
+
2202
+ def id_properties_ui(self):
2203
+ """ """
2204
+ ...
2205
+
2206
+ def is_extended(self):
2207
+ """ """
2208
+ ...
2209
+
2210
+ def is_property_hidden(self):
2211
+ """ """
2212
+ ...
2213
+
2214
+ def is_property_overridable_library(self):
2215
+ """ """
2216
+ ...
2217
+
2218
+ def is_property_readonly(self):
2219
+ """ """
2220
+ ...
2221
+
2222
+ def is_property_set(self):
2223
+ """ """
2224
+ ...
2225
+
2226
+ def items(self):
2227
+ """ """
2228
+ ...
2229
+
2230
+ def keyframe_delete(self):
2231
+ """ """
2232
+ ...
2233
+
2234
+ def keyframe_insert(self):
2235
+ """ """
2236
+ ...
2237
+
2238
+ def keys(self):
2239
+ """ """
2240
+ ...
2241
+
2242
+ def path_from_id(self):
2243
+ """ """
2244
+ ...
2245
+
2246
+ def path_resolve(self):
2247
+ """ """
2248
+ ...
2249
+
2250
+ def poll(self, context):
2251
+ """
2252
+
2253
+ :param context:
2254
+ """
2255
+ ...
2256
+
2257
+ def pop(self):
2258
+ """ """
2259
+ ...
2260
+
2261
+ def prepend(self, draw_func):
2262
+ """
2263
+
2264
+ :param draw_func:
2265
+ """
2266
+ ...
2267
+
2268
+ def property_overridable_library_set(self):
2269
+ """ """
2270
+ ...
2271
+
2272
+ def property_unset(self):
2273
+ """ """
2274
+ ...
2275
+
2276
+ def remove(self, draw_func):
2277
+ """
2278
+
2279
+ :param draw_func:
2280
+ """
2281
+ ...
2282
+
2283
+ def type_recast(self):
2284
+ """ """
2285
+ ...
2286
+
2287
+ def values(self):
2288
+ """ """
2289
+ ...
2290
+
2291
+ class MATERIAL_UL_matslots(bpy_types._GenericUI):
2292
+ """ """
2293
+
2294
+ bl_rna: typing.Any
2295
+ """ """
2296
+
629
2297
  id_data: typing.Any
2298
+ """ """
2299
+
2300
+ def append(self, draw_func):
2301
+ """
2302
+
2303
+ :param draw_func:
2304
+ """
2305
+ ...
2306
+
2307
+ def as_pointer(self):
2308
+ """ """
2309
+ ...
2310
+
2311
+ def bl_rna_get_subclass(self):
2312
+ """ """
2313
+ ...
2314
+
2315
+ def bl_rna_get_subclass_py(self):
2316
+ """ """
2317
+ ...
2318
+
2319
+ def draw_item(
2320
+ self,
2321
+ _context,
2322
+ layout,
2323
+ _data,
2324
+ item,
2325
+ icon,
2326
+ _active_data,
2327
+ _active_propname,
2328
+ _index,
2329
+ ):
2330
+ """
2331
+
2332
+ :param _context:
2333
+ :param layout:
2334
+ :param _data:
2335
+ :param item:
2336
+ :param icon:
2337
+ :param _active_data:
2338
+ :param _active_propname:
2339
+ :param _index:
2340
+ """
2341
+ ...
2342
+
2343
+ def driver_add(self):
2344
+ """ """
2345
+ ...
2346
+
2347
+ def driver_remove(self):
2348
+ """ """
2349
+ ...
2350
+
2351
+ def get(self):
2352
+ """ """
2353
+ ...
2354
+
2355
+ def id_properties_clear(self):
2356
+ """ """
2357
+ ...
2358
+
2359
+ def id_properties_ensure(self):
2360
+ """ """
2361
+ ...
2362
+
2363
+ def id_properties_ui(self):
2364
+ """ """
2365
+ ...
2366
+
2367
+ def is_extended(self):
2368
+ """ """
2369
+ ...
2370
+
2371
+ def is_property_hidden(self):
2372
+ """ """
2373
+ ...
2374
+
2375
+ def is_property_overridable_library(self):
2376
+ """ """
2377
+ ...
2378
+
2379
+ def is_property_readonly(self):
2380
+ """ """
2381
+ ...
2382
+
2383
+ def is_property_set(self):
2384
+ """ """
2385
+ ...
2386
+
2387
+ def items(self):
2388
+ """ """
2389
+ ...
2390
+
2391
+ def keyframe_delete(self):
2392
+ """ """
2393
+ ...
2394
+
2395
+ def keyframe_insert(self):
2396
+ """ """
2397
+ ...
2398
+
2399
+ def keys(self):
2400
+ """ """
2401
+ ...
2402
+
2403
+ def path_from_id(self):
2404
+ """ """
2405
+ ...
2406
+
2407
+ def path_resolve(self):
2408
+ """ """
2409
+ ...
2410
+
2411
+ def pop(self):
2412
+ """ """
2413
+ ...
2414
+
2415
+ def prepend(self, draw_func):
2416
+ """
2417
+
2418
+ :param draw_func:
2419
+ """
2420
+ ...
2421
+
2422
+ def property_overridable_library_set(self):
2423
+ """ """
2424
+ ...
2425
+
2426
+ def property_unset(self):
2427
+ """ """
2428
+ ...
2429
+
2430
+ def remove(self, draw_func):
2431
+ """
2432
+
2433
+ :param draw_func:
2434
+ """
2435
+ ...
2436
+
2437
+ def type_recast(self):
2438
+ """ """
2439
+ ...
2440
+
2441
+ def values(self):
2442
+ """ """
2443
+ ...
2444
+
2445
+ class MaterialButtonsPanel:
2446
+ """ """
2447
+
2448
+ bl_context: typing.Any
2449
+ """ """
2450
+
2451
+ bl_region_type: typing.Any
2452
+ """ """
2453
+
2454
+ bl_space_type: typing.Any
2455
+ """ """
2456
+
2457
+ def poll(self, context):
2458
+ """
2459
+
2460
+ :param context:
2461
+ """
2462
+ ...
2463
+
2464
+ def draw_material_settings(context):
2465
+ """ """
2466
+
2467
+ ...
2468
+
2469
+ def panel_node_draw(layout, ntree, _output_type, input_name):
2470
+ """ """
630
2471
 
631
- def append(self, draw_func): ...
632
- def as_pointer(self): ...
633
- def bl_rna_get_subclass(self): ...
634
- def bl_rna_get_subclass_py(self): ...
635
- def draw(self, context): ...
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): ...
653
- def poll(self, context): ...
654
- def pop(self): ...
655
- def prepend(self, draw_func): ...
656
- def property_overridable_library_set(self): ...
657
- def property_unset(self): ...
658
- def remove(self, draw_func): ...
659
- def type_recast(self): ...
660
- def values(self): ...
661
-
662
- def draw_material_settings(context): ...
663
- def panel_node_draw(layout, ntree, _output_type, input_name): ...
2472
+ ...