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

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

Potentially problematic release.


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

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +642 -822
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +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 +86358 -87091
  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-20240320.dist-info → fake_bpy_module-20240322.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240322.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240320.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/top_level.txt +0 -0
@@ -1,1265 +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):
6
+ class EEVEE_MATERIAL_PT_context_material(bpy_types._GenericUI):
7
+ """ """
8
+
9
+ COMPAT_ENGINES: typing.Any
10
+ """ """
11
+
12
+ bl_context: typing.Any
13
+ """ """
14
+
8
15
  bl_label: typing.Any
16
+ """ """
17
+
18
+ bl_options: typing.Any
19
+ """ """
20
+
21
+ bl_region_type: typing.Any
22
+ """ """
23
+
9
24
  bl_rna: typing.Any
25
+ """ """
26
+
27
+ bl_space_type: typing.Any
28
+ """ """
29
+
10
30
  id_data: typing.Any
31
+ """ """
11
32
 
12
33
  def append(self, draw_func):
13
34
  """
14
35
 
15
36
  :param draw_func:
16
- :type draw_func:
17
37
  """
18
38
  ...
19
39
 
20
- def as_pointer(self): ...
21
- def bl_rna_get_subclass(self): ...
22
- def bl_rna_get_subclass_py(self): ...
23
- def draw(self, _context):
24
- """
40
+ def as_pointer(self):
41
+ """ """
42
+ ...
25
43
 
26
- :param self:
27
- :type self:
28
- :param _context:
29
- :type _context:
30
- """
44
+ def bl_rna_get_subclass(self):
45
+ """ """
31
46
  ...
32
47
 
33
- def draw_collapsible(self, context, layout):
48
+ def bl_rna_get_subclass_py(self):
49
+ """ """
50
+ ...
51
+
52
+ def draw(self, context):
34
53
  """
35
54
 
36
55
  :param context:
37
- :type context:
38
- :param layout:
39
- :type layout:
40
56
  """
41
57
  ...
42
58
 
43
- def draw_preset(self, _context):
44
- """
45
-
46
- :param self:
47
- :type self:
48
- :param _context:
49
- :type _context:
50
- """
51
- ...
52
-
53
- def driver_add(self): ...
54
- def driver_remove(self): ...
55
- def get(self): ...
56
- def id_properties_clear(self): ...
57
- def id_properties_ensure(self): ...
58
- def id_properties_ui(self): ...
59
- def is_extended(self): ...
60
- def is_property_hidden(self): ...
61
- def is_property_overridable_library(self): ...
62
- def is_property_readonly(self): ...
63
- def is_property_set(self): ...
64
- def items(self): ...
65
- def keyframe_delete(self): ...
66
- def keyframe_insert(self): ...
67
- def keys(self): ...
68
- def path_from_id(self): ...
69
- def path_menu(
70
- self,
71
- searchpaths,
72
- operator,
73
- props_default,
74
- prop_filepath,
75
- filter_ext,
76
- filter_path,
77
- display_name,
78
- add_operator,
79
- ):
80
- """
59
+ def driver_add(self):
60
+ """ """
61
+ ...
81
62
 
82
- :param self:
83
- :type self:
84
- :param searchpaths:
85
- :type searchpaths:
86
- :param operator:
87
- :type operator:
88
- :param props_default:
89
- :type props_default:
90
- :param prop_filepath:
91
- :type prop_filepath:
92
- :param filter_ext:
93
- :type filter_ext:
94
- :param filter_path:
95
- :type filter_path:
96
- :param display_name:
97
- :type display_name:
98
- :param add_operator:
99
- :type add_operator:
100
- """
63
+ def driver_remove(self):
64
+ """ """
101
65
  ...
102
66
 
103
- def path_resolve(self): ...
104
- def pop(self): ...
105
- def prepend(self, draw_func):
106
- """
67
+ def get(self):
68
+ """ """
69
+ ...
107
70
 
108
- :param draw_func:
109
- :type draw_func:
110
- """
71
+ def id_properties_clear(self):
72
+ """ """
111
73
  ...
112
74
 
113
- def property_overridable_library_set(self): ...
114
- def property_unset(self): ...
115
- def remove(self, draw_func):
116
- """
75
+ def id_properties_ensure(self):
76
+ """ """
77
+ ...
117
78
 
118
- :param draw_func:
119
- :type draw_func:
120
- """
79
+ def id_properties_ui(self):
80
+ """ """
121
81
  ...
122
82
 
123
- def type_recast(self): ...
124
- def values(self): ...
83
+ def is_extended(self):
84
+ """ """
85
+ ...
125
86
 
126
- class MATERIAL_UL_matslots(bpy_types.UIList, bpy_types._GenericUI):
127
- bl_rna: typing.Any
128
- id_data: typing.Any
87
+ def is_property_hidden(self):
88
+ """ """
89
+ ...
129
90
 
130
- def append(self, draw_func):
131
- """
91
+ def is_property_overridable_library(self):
92
+ """ """
93
+ ...
132
94
 
133
- :param draw_func:
134
- :type draw_func:
135
- """
95
+ def is_property_readonly(self):
96
+ """ """
136
97
  ...
137
98
 
138
- def as_pointer(self): ...
139
- def bl_rna_get_subclass(self): ...
140
- def bl_rna_get_subclass_py(self): ...
141
- def draw_item(
142
- self,
143
- _context,
144
- layout,
145
- _data,
146
- item,
147
- icon,
148
- _active_data,
149
- _active_propname,
150
- _index,
151
- ):
152
- """
99
+ def is_property_set(self):
100
+ """ """
101
+ ...
153
102
 
154
- :param self:
155
- :type self:
156
- :param _context:
157
- :type _context:
158
- :param layout:
159
- :type layout:
160
- :param _data:
161
- :type _data:
162
- :param item:
163
- :type item:
164
- :param icon:
165
- :type icon:
166
- :param _active_data:
167
- :type _active_data:
168
- :param _active_propname:
169
- :type _active_propname:
170
- :param _index:
171
- :type _index:
172
- """
173
- ...
174
-
175
- def driver_add(self): ...
176
- def driver_remove(self): ...
177
- def get(self): ...
178
- def id_properties_clear(self): ...
179
- def id_properties_ensure(self): ...
180
- def id_properties_ui(self): ...
181
- def is_extended(self): ...
182
- def is_property_hidden(self): ...
183
- def is_property_overridable_library(self): ...
184
- def is_property_readonly(self): ...
185
- def is_property_set(self): ...
186
- def items(self): ...
187
- def keyframe_delete(self): ...
188
- def keyframe_insert(self): ...
189
- def keys(self): ...
190
- def path_from_id(self): ...
191
- def path_resolve(self): ...
192
- def pop(self): ...
193
- def prepend(self, draw_func):
194
- """
103
+ def items(self):
104
+ """ """
105
+ ...
195
106
 
196
- :param draw_func:
197
- :type draw_func:
198
- """
107
+ def keyframe_delete(self):
108
+ """ """
199
109
  ...
200
110
 
201
- def property_overridable_library_set(self): ...
202
- def property_unset(self): ...
203
- def remove(self, draw_func):
204
- """
111
+ def keyframe_insert(self):
112
+ """ """
113
+ ...
205
114
 
206
- :param draw_func:
207
- :type draw_func:
208
- """
115
+ def keys(self):
116
+ """ """
209
117
  ...
210
118
 
211
- def type_recast(self): ...
212
- def values(self): ...
119
+ def path_from_id(self):
120
+ """ """
121
+ ...
213
122
 
214
- class MaterialButtonsPanel:
215
- bl_context: typing.Any
216
- bl_region_type: typing.Any
217
- bl_space_type: typing.Any
123
+ def path_resolve(self):
124
+ """ """
125
+ ...
218
126
 
219
127
  def poll(self, context):
220
128
  """
221
129
 
222
130
  :param context:
223
- :type context:
224
131
  """
225
132
  ...
226
133
 
227
- class EEVEE_MATERIAL_PT_context_material(
228
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
229
- ):
230
- COMPAT_ENGINES: typing.Any
231
- bl_context: typing.Any
232
- bl_label: typing.Any
233
- bl_options: typing.Any
234
- bl_region_type: typing.Any
235
- bl_rna: typing.Any
236
- bl_space_type: typing.Any
237
- id_data: typing.Any
134
+ def pop(self):
135
+ """ """
136
+ ...
238
137
 
239
- def append(self, draw_func):
138
+ def prepend(self, draw_func):
240
139
  """
241
140
 
242
141
  :param draw_func:
243
- :type draw_func:
244
142
  """
245
143
  ...
246
144
 
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
- """
252
-
253
- :param self:
254
- :type self:
255
- :param context:
256
- :type context:
257
- """
258
- ...
259
-
260
- def driver_add(self): ...
261
- def driver_remove(self): ...
262
- def get(self): ...
263
- def id_properties_clear(self): ...
264
- def id_properties_ensure(self): ...
265
- def id_properties_ui(self): ...
266
- def is_extended(self): ...
267
- def is_property_hidden(self): ...
268
- def is_property_overridable_library(self): ...
269
- def is_property_readonly(self): ...
270
- def is_property_set(self): ...
271
- def items(self): ...
272
- def keyframe_delete(self): ...
273
- def keyframe_insert(self): ...
274
- def keys(self): ...
275
- def path_from_id(self): ...
276
- def path_resolve(self): ...
277
- def poll(self, context):
278
- """
145
+ def property_overridable_library_set(self):
146
+ """ """
147
+ ...
279
148
 
280
- :param context:
281
- :type context:
282
- """
149
+ def property_unset(self):
150
+ """ """
283
151
  ...
284
152
 
285
- def pop(self): ...
286
- def prepend(self, draw_func):
153
+ def remove(self, draw_func):
287
154
  """
288
155
 
289
156
  :param draw_func:
290
- :type draw_func:
291
157
  """
292
158
  ...
293
159
 
294
- def property_overridable_library_set(self): ...
295
- def property_unset(self): ...
296
- def remove(self, draw_func):
297
- """
160
+ def type_recast(self):
161
+ """ """
162
+ ...
298
163
 
299
- :param draw_func:
300
- :type draw_func:
301
- """
164
+ def values(self):
165
+ """ """
302
166
  ...
303
167
 
304
- def type_recast(self): ...
305
- def values(self): ...
168
+ class EEVEE_MATERIAL_PT_displacement(bpy_types._GenericUI):
169
+ """ """
306
170
 
307
- class EEVEE_MATERIAL_PT_displacement(
308
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
309
- ):
310
171
  COMPAT_ENGINES: typing.Any
172
+ """ """
173
+
311
174
  bl_context: typing.Any
175
+ """ """
176
+
312
177
  bl_label: typing.Any
178
+ """ """
179
+
313
180
  bl_options: typing.Any
181
+ """ """
182
+
314
183
  bl_region_type: typing.Any
184
+ """ """
185
+
315
186
  bl_rna: typing.Any
187
+ """ """
188
+
316
189
  bl_space_type: typing.Any
190
+ """ """
191
+
317
192
  bl_translation_context: typing.Any
193
+ """ """
194
+
318
195
  id_data: typing.Any
196
+ """ """
319
197
 
320
198
  def append(self, draw_func):
321
199
  """
322
200
 
323
201
  :param draw_func:
324
- :type draw_func:
325
202
  """
326
203
  ...
327
204
 
328
- def as_pointer(self): ...
329
- def bl_rna_get_subclass(self): ...
330
- def bl_rna_get_subclass_py(self): ...
331
- def draw(self, context):
332
- """
205
+ def as_pointer(self):
206
+ """ """
207
+ ...
333
208
 
334
- :param self:
335
- :type self:
336
- :param context:
337
- :type context:
338
- """
339
- ...
340
-
341
- def driver_add(self): ...
342
- def driver_remove(self): ...
343
- def get(self): ...
344
- def id_properties_clear(self): ...
345
- def id_properties_ensure(self): ...
346
- def id_properties_ui(self): ...
347
- def is_extended(self): ...
348
- def is_property_hidden(self): ...
349
- def is_property_overridable_library(self): ...
350
- def is_property_readonly(self): ...
351
- def is_property_set(self): ...
352
- def items(self): ...
353
- def keyframe_delete(self): ...
354
- def keyframe_insert(self): ...
355
- def keys(self): ...
356
- def path_from_id(self): ...
357
- def path_resolve(self): ...
358
- def poll(self, context):
359
- """
209
+ def bl_rna_get_subclass(self):
210
+ """ """
211
+ ...
360
212
 
361
- :param context:
362
- :type context:
363
- """
213
+ def bl_rna_get_subclass_py(self):
214
+ """ """
364
215
  ...
365
216
 
366
- def pop(self): ...
367
- def prepend(self, draw_func):
217
+ def draw(self, context):
368
218
  """
369
219
 
370
- :param draw_func:
371
- :type draw_func:
220
+ :param context:
372
221
  """
373
222
  ...
374
223
 
375
- def property_overridable_library_set(self): ...
376
- def property_unset(self): ...
377
- def remove(self, draw_func):
378
- """
379
-
380
- :param draw_func:
381
- :type draw_func:
382
- """
224
+ def driver_add(self):
225
+ """ """
383
226
  ...
384
227
 
385
- def type_recast(self): ...
386
- def values(self): ...
228
+ def driver_remove(self):
229
+ """ """
230
+ ...
387
231
 
388
- class EEVEE_MATERIAL_PT_settings(
389
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
390
- ):
391
- COMPAT_ENGINES: typing.Any
392
- bl_context: typing.Any
393
- bl_label: typing.Any
394
- bl_region_type: typing.Any
395
- bl_rna: typing.Any
396
- bl_space_type: typing.Any
397
- id_data: typing.Any
232
+ def get(self):
233
+ """ """
234
+ ...
398
235
 
399
- def append(self, draw_func):
400
- """
236
+ def id_properties_clear(self):
237
+ """ """
238
+ ...
401
239
 
402
- :param draw_func:
403
- :type draw_func:
404
- """
240
+ def id_properties_ensure(self):
241
+ """ """
405
242
  ...
406
243
 
407
- def as_pointer(self): ...
408
- def bl_rna_get_subclass(self): ...
409
- def bl_rna_get_subclass_py(self): ...
410
- def draw(self, context):
411
- """
244
+ def id_properties_ui(self):
245
+ """ """
246
+ ...
412
247
 
413
- :param self:
414
- :type self:
415
- :param context:
416
- :type context:
417
- """
418
- ...
419
-
420
- def driver_add(self): ...
421
- def driver_remove(self): ...
422
- def get(self): ...
423
- def id_properties_clear(self): ...
424
- def id_properties_ensure(self): ...
425
- def id_properties_ui(self): ...
426
- def is_extended(self): ...
427
- def is_property_hidden(self): ...
428
- def is_property_overridable_library(self): ...
429
- def is_property_readonly(self): ...
430
- def is_property_set(self): ...
431
- def items(self): ...
432
- def keyframe_delete(self): ...
433
- def keyframe_insert(self): ...
434
- def keys(self): ...
435
- def path_from_id(self): ...
436
- def path_resolve(self): ...
437
- def poll(self, context):
438
- """
248
+ def is_extended(self):
249
+ """ """
250
+ ...
439
251
 
440
- :param context:
441
- :type context:
442
- """
252
+ def is_property_hidden(self):
253
+ """ """
443
254
  ...
444
255
 
445
- def pop(self): ...
446
- def prepend(self, draw_func):
447
- """
256
+ def is_property_overridable_library(self):
257
+ """ """
258
+ ...
448
259
 
449
- :param draw_func:
450
- :type draw_func:
451
- """
260
+ def is_property_readonly(self):
261
+ """ """
452
262
  ...
453
263
 
454
- def property_overridable_library_set(self): ...
455
- def property_unset(self): ...
456
- def remove(self, draw_func):
457
- """
264
+ def is_property_set(self):
265
+ """ """
266
+ ...
458
267
 
459
- :param draw_func:
460
- :type draw_func:
461
- """
268
+ def items(self):
269
+ """ """
462
270
  ...
463
271
 
464
- def type_recast(self): ...
465
- def values(self): ...
272
+ def keyframe_delete(self):
273
+ """ """
274
+ ...
466
275
 
467
- class EEVEE_MATERIAL_PT_surface(
468
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
469
- ):
470
- COMPAT_ENGINES: typing.Any
471
- bl_context: typing.Any
472
- bl_label: typing.Any
473
- bl_region_type: typing.Any
474
- bl_rna: typing.Any
475
- bl_space_type: typing.Any
476
- id_data: typing.Any
276
+ def keyframe_insert(self):
277
+ """ """
278
+ ...
477
279
 
478
- def append(self, draw_func):
479
- """
280
+ def keys(self):
281
+ """ """
282
+ ...
480
283
 
481
- :param draw_func:
482
- :type draw_func:
483
- """
284
+ def path_from_id(self):
285
+ """ """
484
286
  ...
485
287
 
486
- def as_pointer(self): ...
487
- def bl_rna_get_subclass(self): ...
488
- def bl_rna_get_subclass_py(self): ...
489
- def draw(self, context):
490
- """
288
+ def path_resolve(self):
289
+ """ """
290
+ ...
491
291
 
492
- :param self:
493
- :type self:
494
- :param context:
495
- :type context:
496
- """
497
- ...
498
-
499
- def driver_add(self): ...
500
- def driver_remove(self): ...
501
- def get(self): ...
502
- def id_properties_clear(self): ...
503
- def id_properties_ensure(self): ...
504
- def id_properties_ui(self): ...
505
- def is_extended(self): ...
506
- def is_property_hidden(self): ...
507
- def is_property_overridable_library(self): ...
508
- def is_property_readonly(self): ...
509
- def is_property_set(self): ...
510
- def items(self): ...
511
- def keyframe_delete(self): ...
512
- def keyframe_insert(self): ...
513
- def keys(self): ...
514
- def path_from_id(self): ...
515
- def path_resolve(self): ...
516
292
  def poll(self, context):
517
293
  """
518
294
 
519
295
  :param context:
520
- :type context:
521
296
  """
522
297
  ...
523
298
 
524
- def pop(self): ...
299
+ def pop(self):
300
+ """ """
301
+ ...
302
+
525
303
  def prepend(self, draw_func):
526
304
  """
527
305
 
528
306
  :param draw_func:
529
- :type draw_func:
530
307
  """
531
308
  ...
532
309
 
533
- def property_overridable_library_set(self): ...
534
- def property_unset(self): ...
310
+ def property_overridable_library_set(self):
311
+ """ """
312
+ ...
313
+
314
+ def property_unset(self):
315
+ """ """
316
+ ...
317
+
535
318
  def remove(self, draw_func):
536
319
  """
537
320
 
538
321
  :param draw_func:
539
- :type draw_func:
540
322
  """
541
323
  ...
542
324
 
543
- def type_recast(self): ...
544
- def values(self): ...
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
+ """ """
545
335
 
546
- class EEVEE_MATERIAL_PT_viewport_settings(
547
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
548
- ):
549
336
  COMPAT_ENGINES: typing.Any
337
+ """ """
338
+
550
339
  bl_context: typing.Any
340
+ """ """
341
+
551
342
  bl_label: typing.Any
552
- bl_parent_id: typing.Any
343
+ """ """
344
+
553
345
  bl_region_type: typing.Any
346
+ """ """
347
+
554
348
  bl_rna: typing.Any
349
+ """ """
350
+
555
351
  bl_space_type: typing.Any
352
+ """ """
353
+
556
354
  id_data: typing.Any
355
+ """ """
557
356
 
558
357
  def append(self, draw_func):
559
358
  """
560
359
 
561
360
  :param draw_func:
562
- :type draw_func:
563
361
  """
564
362
  ...
565
363
 
566
- def as_pointer(self): ...
567
- def bl_rna_get_subclass(self): ...
568
- def bl_rna_get_subclass_py(self): ...
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
+
569
376
  def draw(self, context):
570
377
  """
571
378
 
572
- :param self:
573
- :type self:
574
379
  :param context:
575
- :type context:
576
- """
577
- ...
578
-
579
- def driver_add(self): ...
580
- def driver_remove(self): ...
581
- def get(self): ...
582
- def id_properties_clear(self): ...
583
- def id_properties_ensure(self): ...
584
- def id_properties_ui(self): ...
585
- def is_extended(self): ...
586
- def is_property_hidden(self): ...
587
- def is_property_overridable_library(self): ...
588
- def is_property_readonly(self): ...
589
- def is_property_set(self): ...
590
- def items(self): ...
591
- def keyframe_delete(self): ...
592
- def keyframe_insert(self): ...
593
- def keys(self): ...
594
- def path_from_id(self): ...
595
- def path_resolve(self): ...
596
- def poll(self, context):
597
380
  """
381
+ ...
598
382
 
599
- :param context:
600
- :type context:
601
- """
383
+ def driver_add(self):
384
+ """ """
602
385
  ...
603
386
 
604
- def pop(self): ...
605
- def prepend(self, draw_func):
606
- """
387
+ def driver_remove(self):
388
+ """ """
389
+ ...
607
390
 
608
- :param draw_func:
609
- :type draw_func:
610
- """
391
+ def get(self):
392
+ """ """
611
393
  ...
612
394
 
613
- def property_overridable_library_set(self): ...
614
- def property_unset(self): ...
615
- def remove(self, draw_func):
616
- """
395
+ def id_properties_clear(self):
396
+ """ """
397
+ ...
617
398
 
618
- :param draw_func:
619
- :type draw_func:
620
- """
399
+ def id_properties_ensure(self):
400
+ """ """
621
401
  ...
622
402
 
623
- def type_recast(self): ...
624
- def values(self): ...
403
+ def id_properties_ui(self):
404
+ """ """
405
+ ...
625
406
 
626
- class EEVEE_MATERIAL_PT_volume(
627
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
628
- ):
629
- COMPAT_ENGINES: typing.Any
630
- bl_context: typing.Any
631
- bl_label: typing.Any
632
- bl_options: typing.Any
633
- bl_region_type: typing.Any
634
- bl_rna: typing.Any
635
- bl_space_type: typing.Any
636
- bl_translation_context: typing.Any
637
- id_data: typing.Any
407
+ def is_extended(self):
408
+ """ """
409
+ ...
638
410
 
639
- def append(self, draw_func):
640
- """
411
+ def is_property_hidden(self):
412
+ """ """
413
+ ...
641
414
 
642
- :param draw_func:
643
- :type draw_func:
644
- """
415
+ def is_property_overridable_library(self):
416
+ """ """
645
417
  ...
646
418
 
647
- def as_pointer(self): ...
648
- def bl_rna_get_subclass(self): ...
649
- def bl_rna_get_subclass_py(self): ...
650
- def draw(self, context):
651
- """
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
+ ...
652
450
 
653
- :param self:
654
- :type self:
655
- :param context:
656
- :type context:
657
- """
658
- ...
659
-
660
- def driver_add(self): ...
661
- def driver_remove(self): ...
662
- def get(self): ...
663
- def id_properties_clear(self): ...
664
- def id_properties_ensure(self): ...
665
- def id_properties_ui(self): ...
666
- def is_extended(self): ...
667
- def is_property_hidden(self): ...
668
- def is_property_overridable_library(self): ...
669
- def is_property_readonly(self): ...
670
- def is_property_set(self): ...
671
- def items(self): ...
672
- def keyframe_delete(self): ...
673
- def keyframe_insert(self): ...
674
- def keys(self): ...
675
- def path_from_id(self): ...
676
- def path_resolve(self): ...
677
451
  def poll(self, context):
678
452
  """
679
453
 
680
454
  :param context:
681
- :type context:
682
455
  """
683
456
  ...
684
457
 
685
- def pop(self): ...
458
+ def pop(self):
459
+ """ """
460
+ ...
461
+
686
462
  def prepend(self, draw_func):
687
463
  """
688
464
 
689
465
  :param draw_func:
690
- :type draw_func:
691
466
  """
692
467
  ...
693
468
 
694
- def property_overridable_library_set(self): ...
695
- def property_unset(self): ...
469
+ def property_overridable_library_set(self):
470
+ """ """
471
+ ...
472
+
473
+ def property_unset(self):
474
+ """ """
475
+ ...
476
+
696
477
  def remove(self, draw_func):
697
478
  """
698
479
 
699
480
  :param draw_func:
700
- :type draw_func:
701
481
  """
702
482
  ...
703
483
 
704
- def type_recast(self): ...
705
- def values(self): ...
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
+ """ """
706
494
 
707
- class EEVEE_NEXT_MATERIAL_PT_settings(
708
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
709
- ):
710
495
  COMPAT_ENGINES: typing.Any
496
+ """ """
497
+
711
498
  bl_context: typing.Any
499
+ """ """
500
+
712
501
  bl_label: typing.Any
502
+ """ """
503
+
713
504
  bl_region_type: typing.Any
505
+ """ """
506
+
714
507
  bl_rna: typing.Any
508
+ """ """
509
+
715
510
  bl_space_type: typing.Any
511
+ """ """
512
+
716
513
  id_data: typing.Any
514
+ """ """
717
515
 
718
516
  def append(self, draw_func):
719
517
  """
720
518
 
721
519
  :param draw_func:
722
- :type draw_func:
723
520
  """
724
521
  ...
725
522
 
726
- def as_pointer(self): ...
727
- def bl_rna_get_subclass(self): ...
728
- def bl_rna_get_subclass_py(self): ...
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
+
729
535
  def draw(self, context):
730
536
  """
731
537
 
732
- :param self:
733
- :type self:
734
538
  :param context:
735
- :type context:
736
- """
737
- ...
738
-
739
- def driver_add(self): ...
740
- def driver_remove(self): ...
741
- def get(self): ...
742
- def id_properties_clear(self): ...
743
- def id_properties_ensure(self): ...
744
- def id_properties_ui(self): ...
745
- def is_extended(self): ...
746
- def is_property_hidden(self): ...
747
- def is_property_overridable_library(self): ...
748
- def is_property_readonly(self): ...
749
- def is_property_set(self): ...
750
- def items(self): ...
751
- def keyframe_delete(self): ...
752
- def keyframe_insert(self): ...
753
- def keys(self): ...
754
- def path_from_id(self): ...
755
- def path_resolve(self): ...
756
- def poll(self, context):
757
539
  """
540
+ ...
758
541
 
759
- :param context:
760
- :type context:
761
- """
542
+ def driver_add(self):
543
+ """ """
762
544
  ...
763
545
 
764
- def pop(self): ...
765
- def prepend(self, draw_func):
766
- """
546
+ def driver_remove(self):
547
+ """ """
548
+ ...
767
549
 
768
- :param draw_func:
769
- :type draw_func:
770
- """
550
+ def get(self):
551
+ """ """
771
552
  ...
772
553
 
773
- def property_overridable_library_set(self): ...
774
- def property_unset(self): ...
775
- def remove(self, draw_func):
776
- """
554
+ def id_properties_clear(self):
555
+ """ """
556
+ ...
777
557
 
778
- :param draw_func:
779
- :type draw_func:
780
- """
558
+ def id_properties_ensure(self):
559
+ """ """
781
560
  ...
782
561
 
783
- def type_recast(self): ...
784
- def values(self): ...
562
+ def id_properties_ui(self):
563
+ """ """
564
+ ...
785
565
 
786
- class EEVEE_NEXT_MATERIAL_PT_settings_surface(
787
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
788
- ):
789
- COMPAT_ENGINES: typing.Any
790
- bl_context: typing.Any
791
- bl_label: typing.Any
792
- bl_parent_id: typing.Any
793
- bl_region_type: typing.Any
794
- bl_rna: typing.Any
795
- bl_space_type: typing.Any
796
- id_data: typing.Any
566
+ def is_extended(self):
567
+ """ """
568
+ ...
797
569
 
798
- def append(self, draw_func):
799
- """
570
+ def is_property_hidden(self):
571
+ """ """
572
+ ...
800
573
 
801
- :param draw_func:
802
- :type draw_func:
803
- """
574
+ def is_property_overridable_library(self):
575
+ """ """
804
576
  ...
805
577
 
806
- def as_pointer(self): ...
807
- def bl_rna_get_subclass(self): ...
808
- def bl_rna_get_subclass_py(self): ...
809
- def draw(self, context):
810
- """
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
+ ...
811
609
 
812
- :param self:
813
- :type self:
814
- :param context:
815
- :type context:
816
- """
817
- ...
818
-
819
- def driver_add(self): ...
820
- def driver_remove(self): ...
821
- def get(self): ...
822
- def id_properties_clear(self): ...
823
- def id_properties_ensure(self): ...
824
- def id_properties_ui(self): ...
825
- def is_extended(self): ...
826
- def is_property_hidden(self): ...
827
- def is_property_overridable_library(self): ...
828
- def is_property_readonly(self): ...
829
- def is_property_set(self): ...
830
- def items(self): ...
831
- def keyframe_delete(self): ...
832
- def keyframe_insert(self): ...
833
- def keys(self): ...
834
- def path_from_id(self): ...
835
- def path_resolve(self): ...
836
610
  def poll(self, context):
837
611
  """
838
612
 
839
613
  :param context:
840
- :type context:
841
614
  """
842
615
  ...
843
616
 
844
- def pop(self): ...
617
+ def pop(self):
618
+ """ """
619
+ ...
620
+
845
621
  def prepend(self, draw_func):
846
622
  """
847
623
 
848
624
  :param draw_func:
849
- :type draw_func:
850
625
  """
851
626
  ...
852
627
 
853
- def property_overridable_library_set(self): ...
854
- def property_unset(self): ...
628
+ def property_overridable_library_set(self):
629
+ """ """
630
+ ...
631
+
632
+ def property_unset(self):
633
+ """ """
634
+ ...
635
+
855
636
  def remove(self, draw_func):
856
637
  """
857
638
 
858
639
  :param draw_func:
859
- :type draw_func:
860
640
  """
861
641
  ...
862
642
 
863
- def type_recast(self): ...
864
- def values(self): ...
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
+ """ """
865
653
 
866
- class EEVEE_NEXT_MATERIAL_PT_settings_volume(
867
- MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
868
- ):
869
654
  COMPAT_ENGINES: typing.Any
655
+ """ """
656
+
870
657
  bl_context: typing.Any
658
+ """ """
659
+
871
660
  bl_label: typing.Any
661
+ """ """
662
+
872
663
  bl_parent_id: typing.Any
664
+ """ """
665
+
873
666
  bl_region_type: typing.Any
667
+ """ """
668
+
874
669
  bl_rna: typing.Any
670
+ """ """
671
+
875
672
  bl_space_type: typing.Any
673
+ """ """
674
+
876
675
  id_data: typing.Any
676
+ """ """
877
677
 
878
678
  def append(self, draw_func):
879
679
  """
880
680
 
881
681
  :param draw_func:
882
- :type draw_func:
883
682
  """
884
683
  ...
885
684
 
886
- def as_pointer(self): ...
887
- def bl_rna_get_subclass(self): ...
888
- def bl_rna_get_subclass_py(self): ...
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
+
889
697
  def draw(self, context):
890
698
  """
891
699
 
892
- :param self:
893
- :type self:
894
700
  :param context:
895
- :type context:
896
- """
897
- ...
898
-
899
- def driver_add(self): ...
900
- def driver_remove(self): ...
901
- def get(self): ...
902
- def id_properties_clear(self): ...
903
- def id_properties_ensure(self): ...
904
- def id_properties_ui(self): ...
905
- def is_extended(self): ...
906
- def is_property_hidden(self): ...
907
- def is_property_overridable_library(self): ...
908
- def is_property_readonly(self): ...
909
- def is_property_set(self): ...
910
- def items(self): ...
911
- def keyframe_delete(self): ...
912
- def keyframe_insert(self): ...
913
- def keys(self): ...
914
- def path_from_id(self): ...
915
- def path_resolve(self): ...
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
+
916
772
  def poll(self, context):
917
773
  """
918
774
 
919
775
  :param context:
920
- :type context:
921
776
  """
922
777
  ...
923
778
 
924
- def pop(self): ...
779
+ def pop(self):
780
+ """ """
781
+ ...
782
+
925
783
  def prepend(self, draw_func):
926
784
  """
927
785
 
928
786
  :param draw_func:
929
- :type draw_func:
930
787
  """
931
788
  ...
932
789
 
933
- def property_overridable_library_set(self): ...
934
- def property_unset(self): ...
790
+ def property_overridable_library_set(self):
791
+ """ """
792
+ ...
793
+
794
+ def property_unset(self):
795
+ """ """
796
+ ...
797
+
935
798
  def remove(self, draw_func):
936
799
  """
937
800
 
938
801
  :param draw_func:
939
- :type draw_func:
940
802
  """
941
803
  ...
942
804
 
943
- def type_recast(self): ...
944
- def values(self): ...
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
+ """ """
945
815
 
946
- class MATERIAL_PT_custom_props(
947
- MaterialButtonsPanel,
948
- bpy_types.Panel,
949
- rna_prop_ui.PropertyPanel,
950
- bpy_types._GenericUI,
951
- ):
952
816
  COMPAT_ENGINES: typing.Any
817
+ """ """
818
+
953
819
  bl_context: typing.Any
820
+ """ """
821
+
954
822
  bl_label: typing.Any
823
+ """ """
824
+
955
825
  bl_options: typing.Any
956
- bl_order: typing.Any
826
+ """ """
827
+
957
828
  bl_region_type: typing.Any
829
+ """ """
830
+
958
831
  bl_rna: typing.Any
832
+ """ """
833
+
959
834
  bl_space_type: typing.Any
835
+ """ """
836
+
837
+ bl_translation_context: typing.Any
838
+ """ """
839
+
960
840
  id_data: typing.Any
841
+ """ """
961
842
 
962
843
  def append(self, draw_func):
963
844
  """
964
845
 
965
846
  :param draw_func:
966
- :type draw_func:
967
847
  """
968
848
  ...
969
849
 
970
- def as_pointer(self): ...
971
- def bl_rna_get_subclass(self): ...
972
- def bl_rna_get_subclass_py(self): ...
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
+
973
862
  def draw(self, context):
974
863
  """
975
864
 
976
- :param self:
977
- :type self:
978
865
  :param context:
979
- :type context:
980
- """
981
- ...
982
-
983
- def driver_add(self): ...
984
- def driver_remove(self): ...
985
- def get(self): ...
986
- def id_properties_clear(self): ...
987
- def id_properties_ensure(self): ...
988
- def id_properties_ui(self): ...
989
- def is_extended(self): ...
990
- def is_property_hidden(self): ...
991
- def is_property_overridable_library(self): ...
992
- def is_property_readonly(self): ...
993
- def is_property_set(self): ...
994
- def items(self): ...
995
- def keyframe_delete(self): ...
996
- def keyframe_insert(self): ...
997
- def keys(self): ...
998
- def path_from_id(self): ...
999
- def path_resolve(self): ...
1000
- def poll(self, context):
1001
866
  """
867
+ ...
1002
868
 
1003
- :param context:
1004
- :type context:
1005
- """
869
+ def driver_add(self):
870
+ """ """
1006
871
  ...
1007
872
 
1008
- def pop(self): ...
1009
- def prepend(self, draw_func):
1010
- """
873
+ def driver_remove(self):
874
+ """ """
875
+ ...
1011
876
 
1012
- :param draw_func:
1013
- :type draw_func:
1014
- """
877
+ def get(self):
878
+ """ """
1015
879
  ...
1016
880
 
1017
- def property_overridable_library_set(self): ...
1018
- def property_unset(self): ...
1019
- def remove(self, draw_func):
1020
- """
881
+ def id_properties_clear(self):
882
+ """ """
883
+ ...
1021
884
 
1022
- :param draw_func:
1023
- :type draw_func:
1024
- """
885
+ def id_properties_ensure(self):
886
+ """ """
1025
887
  ...
1026
888
 
1027
- def type_recast(self): ...
1028
- def values(self): ...
889
+ def id_properties_ui(self):
890
+ """ """
891
+ ...
1029
892
 
1030
- class MATERIAL_PT_lineart(MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1031
- bl_context: typing.Any
1032
- bl_label: typing.Any
1033
- bl_options: typing.Any
1034
- bl_order: typing.Any
1035
- bl_region_type: typing.Any
1036
- bl_rna: typing.Any
1037
- bl_space_type: typing.Any
1038
- id_data: typing.Any
893
+ def is_extended(self):
894
+ """ """
895
+ ...
1039
896
 
1040
- def append(self, draw_func):
1041
- """
897
+ def is_property_hidden(self):
898
+ """ """
899
+ ...
1042
900
 
1043
- :param draw_func:
1044
- :type draw_func:
1045
- """
901
+ def is_property_overridable_library(self):
902
+ """ """
1046
903
  ...
1047
904
 
1048
- def as_pointer(self): ...
1049
- def bl_rna_get_subclass(self): ...
1050
- def bl_rna_get_subclass_py(self): ...
1051
- def draw(self, context):
1052
- """
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
+ ...
1053
936
 
1054
- :param self:
1055
- :type self:
1056
- :param context:
1057
- :type context:
1058
- """
1059
- ...
1060
-
1061
- def driver_add(self): ...
1062
- def driver_remove(self): ...
1063
- def get(self): ...
1064
- def id_properties_clear(self): ...
1065
- def id_properties_ensure(self): ...
1066
- def id_properties_ui(self): ...
1067
- def is_extended(self): ...
1068
- def is_property_hidden(self): ...
1069
- def is_property_overridable_library(self): ...
1070
- def is_property_readonly(self): ...
1071
- def is_property_set(self): ...
1072
- def items(self): ...
1073
- def keyframe_delete(self): ...
1074
- def keyframe_insert(self): ...
1075
- def keys(self): ...
1076
- def path_from_id(self): ...
1077
- def path_resolve(self): ...
1078
937
  def poll(self, context):
1079
938
  """
1080
939
 
1081
940
  :param context:
1082
- :type context:
1083
941
  """
1084
942
  ...
1085
943
 
1086
- def pop(self): ...
944
+ def pop(self):
945
+ """ """
946
+ ...
947
+
1087
948
  def prepend(self, draw_func):
1088
949
  """
1089
950
 
1090
951
  :param draw_func:
1091
- :type draw_func:
1092
952
  """
1093
953
  ...
1094
954
 
1095
- def property_overridable_library_set(self): ...
1096
- def property_unset(self): ...
955
+ def property_overridable_library_set(self):
956
+ """ """
957
+ ...
958
+
959
+ def property_unset(self):
960
+ """ """
961
+ ...
962
+
1097
963
  def remove(self, draw_func):
1098
964
  """
1099
965
 
1100
966
  :param draw_func:
1101
- :type draw_func:
1102
967
  """
1103
968
  ...
1104
969
 
1105
- def type_recast(self): ...
1106
- def values(self): ...
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
+ """ """
1107
980
 
1108
- class MATERIAL_PT_preview(MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1109
981
  COMPAT_ENGINES: typing.Any
982
+ """ """
983
+
1110
984
  bl_context: typing.Any
985
+ """ """
986
+
1111
987
  bl_label: typing.Any
1112
- bl_options: typing.Any
988
+ """ """
989
+
1113
990
  bl_region_type: typing.Any
991
+ """ """
992
+
1114
993
  bl_rna: typing.Any
994
+ """ """
995
+
1115
996
  bl_space_type: typing.Any
997
+ """ """
998
+
1116
999
  id_data: typing.Any
1000
+ """ """
1117
1001
 
1118
1002
  def append(self, draw_func):
1119
1003
  """
1120
1004
 
1121
1005
  :param draw_func:
1122
- :type draw_func:
1123
1006
  """
1124
1007
  ...
1125
1008
 
1126
- def as_pointer(self): ...
1127
- def bl_rna_get_subclass(self): ...
1128
- def bl_rna_get_subclass_py(self): ...
1129
- def draw(self, context):
1130
- """
1009
+ def as_pointer(self):
1010
+ """ """
1011
+ ...
1131
1012
 
1132
- :param self:
1133
- :type self:
1134
- :param context:
1135
- :type context:
1136
- """
1137
- ...
1138
-
1139
- def driver_add(self): ...
1140
- def driver_remove(self): ...
1141
- def get(self): ...
1142
- def id_properties_clear(self): ...
1143
- def id_properties_ensure(self): ...
1144
- def id_properties_ui(self): ...
1145
- def is_extended(self): ...
1146
- def is_property_hidden(self): ...
1147
- def is_property_overridable_library(self): ...
1148
- def is_property_readonly(self): ...
1149
- def is_property_set(self): ...
1150
- def items(self): ...
1151
- def keyframe_delete(self): ...
1152
- def keyframe_insert(self): ...
1153
- def keys(self): ...
1154
- def path_from_id(self): ...
1155
- def path_resolve(self): ...
1156
- def poll(self, context):
1157
- """
1013
+ def bl_rna_get_subclass(self):
1014
+ """ """
1015
+ ...
1158
1016
 
1159
- :param context:
1160
- :type context:
1161
- """
1017
+ def bl_rna_get_subclass_py(self):
1018
+ """ """
1162
1019
  ...
1163
1020
 
1164
- def pop(self): ...
1165
- def prepend(self, draw_func):
1021
+ def draw(self, context):
1166
1022
  """
1167
1023
 
1168
- :param draw_func:
1169
- :type draw_func:
1024
+ :param context:
1170
1025
  """
1171
1026
  ...
1172
1027
 
1173
- def property_overridable_library_set(self): ...
1174
- def property_unset(self): ...
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
+ """ """
1139
+
1140
+ COMPAT_ENGINES: typing.Any
1141
+ """ """
1142
+
1143
+ bl_context: typing.Any
1144
+ """ """
1145
+
1146
+ bl_label: typing.Any
1147
+ """ """
1148
+
1149
+ bl_parent_id: typing.Any
1150
+ """ """
1151
+
1152
+ bl_region_type: typing.Any
1153
+ """ """
1154
+
1155
+ bl_rna: typing.Any
1156
+ """ """
1157
+
1158
+ bl_space_type: typing.Any
1159
+ """ """
1160
+
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
+ """ """
1301
+
1302
+ COMPAT_ENGINES: typing.Any
1303
+ """ """
1304
+
1305
+ bl_context: typing.Any
1306
+ """ """
1307
+
1308
+ bl_label: typing.Any
1309
+ """ """
1310
+
1311
+ bl_parent_id: typing.Any
1312
+ """ """
1313
+
1314
+ bl_region_type: typing.Any
1315
+ """ """
1316
+
1317
+ bl_rna: typing.Any
1318
+ """ """
1319
+
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
+
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
+ """ """
1642
+
1643
+ COMPAT_ENGINES: typing.Any
1644
+ """ """
1645
+
1646
+ bl_context: typing.Any
1647
+ """ """
1648
+
1649
+ bl_label: typing.Any
1650
+ """ """
1651
+
1652
+ bl_options: typing.Any
1653
+ """ """
1654
+
1655
+ bl_order: typing.Any
1656
+ """ """
1657
+
1658
+ bl_region_type: typing.Any
1659
+ """ """
1660
+
1661
+ bl_rna: typing.Any
1662
+ """ """
1663
+
1664
+ bl_space_type: typing.Any
1665
+ """ """
1666
+
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
+ """ """
1807
+
1808
+ bl_context: typing.Any
1809
+ """ """
1810
+
1811
+ bl_label: typing.Any
1812
+ """ """
1813
+
1814
+ bl_options: typing.Any
1815
+ """ """
1816
+
1817
+ bl_order: typing.Any
1818
+ """ """
1819
+
1820
+ bl_region_type: typing.Any
1821
+ """ """
1822
+
1823
+ bl_rna: typing.Any
1824
+ """ """
1825
+
1826
+ bl_space_type: typing.Any
1827
+ """ """
1828
+
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
+ """ """
1969
+
1970
+ COMPAT_ENGINES: typing.Any
1971
+ """ """
1972
+
1973
+ bl_context: typing.Any
1974
+ """ """
1975
+
1976
+ bl_label: typing.Any
1977
+ """ """
1978
+
1979
+ bl_options: typing.Any
1980
+ """ """
1981
+
1982
+ bl_region_type: typing.Any
1983
+ """ """
1984
+
1985
+ bl_rna: typing.Any
1986
+ """ """
1987
+
1988
+ bl_space_type: typing.Any
1989
+ """ """
1990
+
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
+
1175
2114
  def remove(self, draw_func):
1176
2115
  """
1177
2116
 
1178
2117
  :param draw_func:
1179
- :type draw_func:
1180
2118
  """
1181
2119
  ...
1182
2120
 
1183
- def type_recast(self): ...
1184
- def values(self): ...
2121
+ def type_recast(self):
2122
+ """ """
2123
+ ...
2124
+
2125
+ def values(self):
2126
+ """ """
2127
+ ...
2128
+
2129
+ class MATERIAL_PT_viewport(bpy_types._GenericUI):
2130
+ """ """
1185
2131
 
1186
- class MATERIAL_PT_viewport(MaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1187
2132
  bl_context: typing.Any
2133
+ """ """
2134
+
1188
2135
  bl_label: typing.Any
2136
+ """ """
2137
+
1189
2138
  bl_options: typing.Any
2139
+ """ """
2140
+
1190
2141
  bl_order: typing.Any
2142
+ """ """
2143
+
1191
2144
  bl_region_type: typing.Any
2145
+ """ """
2146
+
1192
2147
  bl_rna: typing.Any
2148
+ """ """
2149
+
1193
2150
  bl_space_type: typing.Any
2151
+ """ """
2152
+
1194
2153
  id_data: typing.Any
2154
+ """ """
1195
2155
 
1196
2156
  def append(self, draw_func):
1197
2157
  """
1198
2158
 
1199
2159
  :param draw_func:
1200
- :type draw_func:
1201
2160
  """
1202
2161
  ...
1203
2162
 
1204
- def as_pointer(self): ...
1205
- def bl_rna_get_subclass(self): ...
1206
- def bl_rna_get_subclass_py(self): ...
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
+
1207
2175
  def draw(self, context):
1208
2176
  """
1209
2177
 
1210
- :param self:
1211
- :type self:
1212
2178
  :param context:
1213
- :type context:
1214
- """
1215
- ...
1216
-
1217
- def driver_add(self): ...
1218
- def driver_remove(self): ...
1219
- def get(self): ...
1220
- def id_properties_clear(self): ...
1221
- def id_properties_ensure(self): ...
1222
- def id_properties_ui(self): ...
1223
- def is_extended(self): ...
1224
- def is_property_hidden(self): ...
1225
- def is_property_overridable_library(self): ...
1226
- def is_property_readonly(self): ...
1227
- def is_property_set(self): ...
1228
- def items(self): ...
1229
- def keyframe_delete(self): ...
1230
- def keyframe_insert(self): ...
1231
- def keys(self): ...
1232
- def path_from_id(self): ...
1233
- def path_resolve(self): ...
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
+
1234
2250
  def poll(self, context):
1235
2251
  """
1236
2252
 
1237
2253
  :param context:
1238
- :type context:
1239
2254
  """
1240
2255
  ...
1241
2256
 
1242
- def pop(self): ...
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
+
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
+
1243
2415
  def prepend(self, draw_func):
1244
2416
  """
1245
2417
 
1246
2418
  :param draw_func:
1247
- :type draw_func:
1248
2419
  """
1249
2420
  ...
1250
2421
 
1251
- def property_overridable_library_set(self): ...
1252
- def property_unset(self): ...
2422
+ def property_overridable_library_set(self):
2423
+ """ """
2424
+ ...
2425
+
2426
+ def property_unset(self):
2427
+ """ """
2428
+ ...
2429
+
1253
2430
  def remove(self, draw_func):
1254
2431
  """
1255
2432
 
1256
2433
  :param draw_func:
1257
- :type draw_func:
1258
2434
  """
1259
2435
  ...
1260
2436
 
1261
- def type_recast(self): ...
1262
- def values(self): ...
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
+ """ """
1263
2471
 
1264
- def draw_material_settings(context): ...
1265
- def panel_node_draw(layout, ntree, _output_type, input_name): ...
2472
+ ...