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
@@ -4,844 +4,3652 @@ import bpy_types
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
6
  class AddPresetBase:
7
+ """ """
8
+
7
9
  bl_options: typing.Any
10
+ """ """
8
11
 
9
- def as_filename(self, name): ...
10
- def check(self, _context): ...
11
- def execute(self, context): ...
12
- def invoke(self, context, _event): ...
12
+ def as_filename(self, name):
13
+ """
13
14
 
14
- class ExecutePreset(bpy_types.Operator):
15
- bl_idname: typing.Any
16
- bl_label: typing.Any
17
- bl_rna: typing.Any
18
- id_data: typing.Any
15
+ :param name:
16
+ """
17
+ ...
19
18
 
20
- def as_keywords(self, ignore): ...
21
- def as_pointer(self): ...
22
- def bl_rna_get_subclass(self): ...
23
- def bl_rna_get_subclass_py(self): ...
24
- def driver_add(self): ...
25
- def driver_remove(self): ...
26
- def execute(self, context): ...
27
- def get(self): ...
28
- def id_properties_clear(self): ...
29
- def id_properties_ensure(self): ...
30
- def id_properties_ui(self): ...
31
- def is_property_hidden(self): ...
32
- def is_property_overridable_library(self): ...
33
- def is_property_readonly(self): ...
34
- def is_property_set(self): ...
35
- def items(self): ...
36
- def keyframe_delete(self): ...
37
- def keyframe_insert(self): ...
38
- def keys(self): ...
39
- def path_from_id(self): ...
40
- def path_resolve(self): ...
41
- def poll_message_set(self): ...
42
- def pop(self): ...
43
- def property_overridable_library_set(self): ...
44
- def property_unset(self): ...
45
- def type_recast(self): ...
46
- def values(self): ...
47
-
48
- class WM_MT_operator_presets(bpy_types.Menu, bpy_types._GenericUI):
49
- bl_label: typing.Any
50
- bl_rna: typing.Any
51
- id_data: typing.Any
52
- preset_operator: typing.Any
53
- preset_subdir: typing.Any
19
+ def check(self, _context):
20
+ """
54
21
 
55
- def append(self, draw_func): ...
56
- def as_pointer(self): ...
57
- def bl_rna_get_subclass(self): ...
58
- def bl_rna_get_subclass_py(self): ...
59
- def draw(self, context): ...
60
- def draw_collapsible(self, context, layout): ...
61
- def draw_preset(self, _context): ...
62
- def driver_add(self): ...
63
- def driver_remove(self): ...
64
- def get(self): ...
65
- def id_properties_clear(self): ...
66
- def id_properties_ensure(self): ...
67
- def id_properties_ui(self): ...
68
- def is_extended(self): ...
69
- def is_property_hidden(self): ...
70
- def is_property_overridable_library(self): ...
71
- def is_property_readonly(self): ...
72
- def is_property_set(self): ...
73
- def items(self): ...
74
- def keyframe_delete(self): ...
75
- def keyframe_insert(self): ...
76
- def keys(self): ...
77
- def path_from_id(self): ...
78
- def path_menu(
79
- self,
80
- searchpaths,
81
- operator,
82
- props_default,
83
- prop_filepath,
84
- filter_ext,
85
- filter_path,
86
- display_name,
87
- add_operator,
88
- ): ...
89
- def path_resolve(self): ...
90
- def pop(self): ...
91
- def prepend(self, draw_func): ...
92
- def property_overridable_library_set(self): ...
93
- def property_unset(self): ...
94
- def remove(self, draw_func): ...
95
- def type_recast(self): ...
96
- def values(self): ...
22
+ :param _context:
23
+ """
24
+ ...
97
25
 
98
- class WM_OT_operator_presets_cleanup(bpy_types.Operator):
99
- bl_description: typing.Any
100
- bl_idname: typing.Any
101
- bl_label: typing.Any
102
- bl_rna: typing.Any
103
- id_data: typing.Any
26
+ def execute(self, context):
27
+ """
28
+
29
+ :param context:
30
+ """
31
+ ...
32
+
33
+ def invoke(self, context, _event):
34
+ """
35
+
36
+ :param context:
37
+ :param _event:
38
+ """
39
+ ...
40
+
41
+ class AddPresetCamera(bpy_types.Operator):
42
+ """ """
104
43
 
105
- def as_keywords(self, ignore): ...
106
- def as_pointer(self): ...
107
- def bl_rna_get_subclass(self): ...
108
- def bl_rna_get_subclass_py(self): ...
109
- def cleanup_operators_presets(self, operators, properties): ...
110
- def cleanup_preset(self, filepath, properties): ...
111
- def driver_add(self): ...
112
- def driver_remove(self): ...
113
- def execute(self, context): ...
114
- def get(self): ...
115
- def id_properties_clear(self): ...
116
- def id_properties_ensure(self): ...
117
- def id_properties_ui(self): ...
118
- def is_property_hidden(self): ...
119
- def is_property_overridable_library(self): ...
120
- def is_property_readonly(self): ...
121
- def is_property_set(self): ...
122
- def items(self): ...
123
- def keyframe_delete(self): ...
124
- def keyframe_insert(self): ...
125
- def keys(self): ...
126
- def path_from_id(self): ...
127
- def path_resolve(self): ...
128
- def poll_message_set(self): ...
129
- def pop(self): ...
130
- def property_overridable_library_set(self): ...
131
- def property_unset(self): ...
132
- def type_recast(self): ...
133
- def values(self): ...
134
-
135
- class AddPresetCamera(AddPresetBase, bpy_types.Operator):
136
44
  bl_idname: typing.Any
45
+ """ """
46
+
137
47
  bl_label: typing.Any
48
+ """ """
49
+
138
50
  bl_options: typing.Any
51
+ """ """
52
+
139
53
  bl_rna: typing.Any
54
+ """ """
55
+
140
56
  id_data: typing.Any
57
+ """ """
58
+
141
59
  preset_defines: typing.Any
60
+ """ """
61
+
142
62
  preset_menu: typing.Any
63
+ """ """
64
+
143
65
  preset_subdir: typing.Any
66
+ """ """
67
+
144
68
  preset_values: typing.Any
69
+ """ """
70
+
71
+ def as_filename(self, name):
72
+ """
73
+
74
+ :param name:
75
+ """
76
+ ...
77
+
78
+ def as_keywords(self, ignore):
79
+ """
80
+
81
+ :param ignore:
82
+ """
83
+ ...
84
+
85
+ def as_pointer(self):
86
+ """ """
87
+ ...
88
+
89
+ def bl_rna_get_subclass(self):
90
+ """ """
91
+ ...
92
+
93
+ def bl_rna_get_subclass_py(self):
94
+ """ """
95
+ ...
96
+
97
+ def check(self, _context):
98
+ """
99
+
100
+ :param _context:
101
+ """
102
+ ...
103
+
104
+ def driver_add(self):
105
+ """ """
106
+ ...
107
+
108
+ def driver_remove(self):
109
+ """ """
110
+ ...
111
+
112
+ def execute(self, context):
113
+ """
114
+
115
+ :param context:
116
+ """
117
+ ...
118
+
119
+ def get(self):
120
+ """ """
121
+ ...
122
+
123
+ def id_properties_clear(self):
124
+ """ """
125
+ ...
126
+
127
+ def id_properties_ensure(self):
128
+ """ """
129
+ ...
130
+
131
+ def id_properties_ui(self):
132
+ """ """
133
+ ...
134
+
135
+ def invoke(self, context, _event):
136
+ """
137
+
138
+ :param context:
139
+ :param _event:
140
+ """
141
+ ...
142
+
143
+ def is_property_hidden(self):
144
+ """ """
145
+ ...
146
+
147
+ def is_property_overridable_library(self):
148
+ """ """
149
+ ...
150
+
151
+ def is_property_readonly(self):
152
+ """ """
153
+ ...
154
+
155
+ def is_property_set(self):
156
+ """ """
157
+ ...
158
+
159
+ def items(self):
160
+ """ """
161
+ ...
162
+
163
+ def keyframe_delete(self):
164
+ """ """
165
+ ...
166
+
167
+ def keyframe_insert(self):
168
+ """ """
169
+ ...
170
+
171
+ def keys(self):
172
+ """ """
173
+ ...
174
+
175
+ def path_from_id(self):
176
+ """ """
177
+ ...
178
+
179
+ def path_resolve(self):
180
+ """ """
181
+ ...
182
+
183
+ def poll_message_set(self):
184
+ """ """
185
+ ...
186
+
187
+ def pop(self):
188
+ """ """
189
+ ...
190
+
191
+ def property_overridable_library_set(self):
192
+ """ """
193
+ ...
194
+
195
+ def property_unset(self):
196
+ """ """
197
+ ...
198
+
199
+ def type_recast(self):
200
+ """ """
201
+ ...
202
+
203
+ def values(self):
204
+ """ """
205
+ ...
206
+
207
+ class AddPresetCameraSafeAreas(bpy_types.Operator):
208
+ """ """
145
209
 
146
- def as_filename(self, name): ...
147
- def as_keywords(self, ignore): ...
148
- def as_pointer(self): ...
149
- def bl_rna_get_subclass(self): ...
150
- def bl_rna_get_subclass_py(self): ...
151
- def check(self, _context): ...
152
- def driver_add(self): ...
153
- def driver_remove(self): ...
154
- def execute(self, context): ...
155
- def get(self): ...
156
- def id_properties_clear(self): ...
157
- def id_properties_ensure(self): ...
158
- def id_properties_ui(self): ...
159
- def invoke(self, context, _event): ...
160
- def is_property_hidden(self): ...
161
- def is_property_overridable_library(self): ...
162
- def is_property_readonly(self): ...
163
- def is_property_set(self): ...
164
- def items(self): ...
165
- def keyframe_delete(self): ...
166
- def keyframe_insert(self): ...
167
- def keys(self): ...
168
- def path_from_id(self): ...
169
- def path_resolve(self): ...
170
- def poll_message_set(self): ...
171
- def pop(self): ...
172
- def property_overridable_library_set(self): ...
173
- def property_unset(self): ...
174
- def type_recast(self): ...
175
- def values(self): ...
176
-
177
- class AddPresetCameraSafeAreas(AddPresetBase, bpy_types.Operator):
178
210
  bl_idname: typing.Any
211
+ """ """
212
+
179
213
  bl_label: typing.Any
214
+ """ """
215
+
180
216
  bl_options: typing.Any
217
+ """ """
218
+
181
219
  bl_rna: typing.Any
220
+ """ """
221
+
182
222
  id_data: typing.Any
223
+ """ """
224
+
183
225
  preset_defines: typing.Any
226
+ """ """
227
+
184
228
  preset_menu: typing.Any
229
+ """ """
230
+
185
231
  preset_subdir: typing.Any
232
+ """ """
233
+
186
234
  preset_values: typing.Any
235
+ """ """
236
+
237
+ def as_filename(self, name):
238
+ """
239
+
240
+ :param name:
241
+ """
242
+ ...
243
+
244
+ def as_keywords(self, ignore):
245
+ """
246
+
247
+ :param ignore:
248
+ """
249
+ ...
250
+
251
+ def as_pointer(self):
252
+ """ """
253
+ ...
254
+
255
+ def bl_rna_get_subclass(self):
256
+ """ """
257
+ ...
258
+
259
+ def bl_rna_get_subclass_py(self):
260
+ """ """
261
+ ...
262
+
263
+ def check(self, _context):
264
+ """
265
+
266
+ :param _context:
267
+ """
268
+ ...
269
+
270
+ def driver_add(self):
271
+ """ """
272
+ ...
273
+
274
+ def driver_remove(self):
275
+ """ """
276
+ ...
277
+
278
+ def execute(self, context):
279
+ """
280
+
281
+ :param context:
282
+ """
283
+ ...
284
+
285
+ def get(self):
286
+ """ """
287
+ ...
288
+
289
+ def id_properties_clear(self):
290
+ """ """
291
+ ...
292
+
293
+ def id_properties_ensure(self):
294
+ """ """
295
+ ...
296
+
297
+ def id_properties_ui(self):
298
+ """ """
299
+ ...
300
+
301
+ def invoke(self, context, _event):
302
+ """
303
+
304
+ :param context:
305
+ :param _event:
306
+ """
307
+ ...
308
+
309
+ def is_property_hidden(self):
310
+ """ """
311
+ ...
312
+
313
+ def is_property_overridable_library(self):
314
+ """ """
315
+ ...
316
+
317
+ def is_property_readonly(self):
318
+ """ """
319
+ ...
320
+
321
+ def is_property_set(self):
322
+ """ """
323
+ ...
324
+
325
+ def items(self):
326
+ """ """
327
+ ...
328
+
329
+ def keyframe_delete(self):
330
+ """ """
331
+ ...
332
+
333
+ def keyframe_insert(self):
334
+ """ """
335
+ ...
336
+
337
+ def keys(self):
338
+ """ """
339
+ ...
340
+
341
+ def path_from_id(self):
342
+ """ """
343
+ ...
344
+
345
+ def path_resolve(self):
346
+ """ """
347
+ ...
348
+
349
+ def poll_message_set(self):
350
+ """ """
351
+ ...
352
+
353
+ def pop(self):
354
+ """ """
355
+ ...
356
+
357
+ def property_overridable_library_set(self):
358
+ """ """
359
+ ...
360
+
361
+ def property_unset(self):
362
+ """ """
363
+ ...
364
+
365
+ def type_recast(self):
366
+ """ """
367
+ ...
368
+
369
+ def values(self):
370
+ """ """
371
+ ...
372
+
373
+ class AddPresetCloth(bpy_types.Operator):
374
+ """ """
187
375
 
188
- def as_filename(self, name): ...
189
- def as_keywords(self, ignore): ...
190
- def as_pointer(self): ...
191
- def bl_rna_get_subclass(self): ...
192
- def bl_rna_get_subclass_py(self): ...
193
- def check(self, _context): ...
194
- def driver_add(self): ...
195
- def driver_remove(self): ...
196
- def execute(self, context): ...
197
- def get(self): ...
198
- def id_properties_clear(self): ...
199
- def id_properties_ensure(self): ...
200
- def id_properties_ui(self): ...
201
- def invoke(self, context, _event): ...
202
- def is_property_hidden(self): ...
203
- def is_property_overridable_library(self): ...
204
- def is_property_readonly(self): ...
205
- def is_property_set(self): ...
206
- def items(self): ...
207
- def keyframe_delete(self): ...
208
- def keyframe_insert(self): ...
209
- def keys(self): ...
210
- def path_from_id(self): ...
211
- def path_resolve(self): ...
212
- def poll_message_set(self): ...
213
- def pop(self): ...
214
- def property_overridable_library_set(self): ...
215
- def property_unset(self): ...
216
- def type_recast(self): ...
217
- def values(self): ...
218
-
219
- class AddPresetCloth(AddPresetBase, bpy_types.Operator):
220
376
  bl_idname: typing.Any
377
+ """ """
378
+
221
379
  bl_label: typing.Any
380
+ """ """
381
+
222
382
  bl_options: typing.Any
383
+ """ """
384
+
223
385
  bl_rna: typing.Any
386
+ """ """
387
+
224
388
  id_data: typing.Any
389
+ """ """
390
+
225
391
  preset_defines: typing.Any
392
+ """ """
393
+
226
394
  preset_menu: typing.Any
395
+ """ """
396
+
227
397
  preset_subdir: typing.Any
398
+ """ """
399
+
228
400
  preset_values: typing.Any
401
+ """ """
402
+
403
+ def as_filename(self, name):
404
+ """
405
+
406
+ :param name:
407
+ """
408
+ ...
409
+
410
+ def as_keywords(self, ignore):
411
+ """
412
+
413
+ :param ignore:
414
+ """
415
+ ...
416
+
417
+ def as_pointer(self):
418
+ """ """
419
+ ...
420
+
421
+ def bl_rna_get_subclass(self):
422
+ """ """
423
+ ...
424
+
425
+ def bl_rna_get_subclass_py(self):
426
+ """ """
427
+ ...
428
+
429
+ def check(self, _context):
430
+ """
431
+
432
+ :param _context:
433
+ """
434
+ ...
435
+
436
+ def driver_add(self):
437
+ """ """
438
+ ...
439
+
440
+ def driver_remove(self):
441
+ """ """
442
+ ...
443
+
444
+ def execute(self, context):
445
+ """
446
+
447
+ :param context:
448
+ """
449
+ ...
450
+
451
+ def get(self):
452
+ """ """
453
+ ...
454
+
455
+ def id_properties_clear(self):
456
+ """ """
457
+ ...
458
+
459
+ def id_properties_ensure(self):
460
+ """ """
461
+ ...
462
+
463
+ def id_properties_ui(self):
464
+ """ """
465
+ ...
466
+
467
+ def invoke(self, context, _event):
468
+ """
469
+
470
+ :param context:
471
+ :param _event:
472
+ """
473
+ ...
474
+
475
+ def is_property_hidden(self):
476
+ """ """
477
+ ...
478
+
479
+ def is_property_overridable_library(self):
480
+ """ """
481
+ ...
482
+
483
+ def is_property_readonly(self):
484
+ """ """
485
+ ...
486
+
487
+ def is_property_set(self):
488
+ """ """
489
+ ...
490
+
491
+ def items(self):
492
+ """ """
493
+ ...
494
+
495
+ def keyframe_delete(self):
496
+ """ """
497
+ ...
498
+
499
+ def keyframe_insert(self):
500
+ """ """
501
+ ...
502
+
503
+ def keys(self):
504
+ """ """
505
+ ...
506
+
507
+ def path_from_id(self):
508
+ """ """
509
+ ...
510
+
511
+ def path_resolve(self):
512
+ """ """
513
+ ...
514
+
515
+ def poll_message_set(self):
516
+ """ """
517
+ ...
518
+
519
+ def pop(self):
520
+ """ """
521
+ ...
522
+
523
+ def property_overridable_library_set(self):
524
+ """ """
525
+ ...
526
+
527
+ def property_unset(self):
528
+ """ """
529
+ ...
530
+
531
+ def type_recast(self):
532
+ """ """
533
+ ...
534
+
535
+ def values(self):
536
+ """ """
537
+ ...
538
+
539
+ class AddPresetEEVEERaytracing(bpy_types.Operator):
540
+ """ """
229
541
 
230
- def as_filename(self, name): ...
231
- def as_keywords(self, ignore): ...
232
- def as_pointer(self): ...
233
- def bl_rna_get_subclass(self): ...
234
- def bl_rna_get_subclass_py(self): ...
235
- def check(self, _context): ...
236
- def driver_add(self): ...
237
- def driver_remove(self): ...
238
- def execute(self, context): ...
239
- def get(self): ...
240
- def id_properties_clear(self): ...
241
- def id_properties_ensure(self): ...
242
- def id_properties_ui(self): ...
243
- def invoke(self, context, _event): ...
244
- def is_property_hidden(self): ...
245
- def is_property_overridable_library(self): ...
246
- def is_property_readonly(self): ...
247
- def is_property_set(self): ...
248
- def items(self): ...
249
- def keyframe_delete(self): ...
250
- def keyframe_insert(self): ...
251
- def keys(self): ...
252
- def path_from_id(self): ...
253
- def path_resolve(self): ...
254
- def poll_message_set(self): ...
255
- def pop(self): ...
256
- def property_overridable_library_set(self): ...
257
- def property_unset(self): ...
258
- def type_recast(self): ...
259
- def values(self): ...
260
-
261
- class AddPresetEEVEERaytracing(AddPresetBase, bpy_types.Operator):
262
542
  bl_idname: typing.Any
543
+ """ """
544
+
263
545
  bl_label: typing.Any
546
+ """ """
547
+
264
548
  bl_options: typing.Any
549
+ """ """
550
+
265
551
  bl_rna: typing.Any
552
+ """ """
553
+
266
554
  id_data: typing.Any
555
+ """ """
556
+
267
557
  preset_defines: typing.Any
558
+ """ """
559
+
268
560
  preset_menu: typing.Any
561
+ """ """
562
+
269
563
  preset_subdir: typing.Any
564
+ """ """
565
+
270
566
  preset_values: typing.Any
567
+ """ """
568
+
569
+ def as_filename(self, name):
570
+ """
571
+
572
+ :param name:
573
+ """
574
+ ...
575
+
576
+ def as_keywords(self, ignore):
577
+ """
578
+
579
+ :param ignore:
580
+ """
581
+ ...
582
+
583
+ def as_pointer(self):
584
+ """ """
585
+ ...
586
+
587
+ def bl_rna_get_subclass(self):
588
+ """ """
589
+ ...
590
+
591
+ def bl_rna_get_subclass_py(self):
592
+ """ """
593
+ ...
594
+
595
+ def check(self, _context):
596
+ """
597
+
598
+ :param _context:
599
+ """
600
+ ...
601
+
602
+ def driver_add(self):
603
+ """ """
604
+ ...
605
+
606
+ def driver_remove(self):
607
+ """ """
608
+ ...
609
+
610
+ def execute(self, context):
611
+ """
612
+
613
+ :param context:
614
+ """
615
+ ...
616
+
617
+ def get(self):
618
+ """ """
619
+ ...
620
+
621
+ def id_properties_clear(self):
622
+ """ """
623
+ ...
624
+
625
+ def id_properties_ensure(self):
626
+ """ """
627
+ ...
628
+
629
+ def id_properties_ui(self):
630
+ """ """
631
+ ...
632
+
633
+ def invoke(self, context, _event):
634
+ """
635
+
636
+ :param context:
637
+ :param _event:
638
+ """
639
+ ...
640
+
641
+ def is_property_hidden(self):
642
+ """ """
643
+ ...
644
+
645
+ def is_property_overridable_library(self):
646
+ """ """
647
+ ...
648
+
649
+ def is_property_readonly(self):
650
+ """ """
651
+ ...
652
+
653
+ def is_property_set(self):
654
+ """ """
655
+ ...
656
+
657
+ def items(self):
658
+ """ """
659
+ ...
660
+
661
+ def keyframe_delete(self):
662
+ """ """
663
+ ...
664
+
665
+ def keyframe_insert(self):
666
+ """ """
667
+ ...
668
+
669
+ def keys(self):
670
+ """ """
671
+ ...
672
+
673
+ def path_from_id(self):
674
+ """ """
675
+ ...
676
+
677
+ def path_resolve(self):
678
+ """ """
679
+ ...
680
+
681
+ def poll_message_set(self):
682
+ """ """
683
+ ...
684
+
685
+ def pop(self):
686
+ """ """
687
+ ...
688
+
689
+ def property_overridable_library_set(self):
690
+ """ """
691
+ ...
692
+
693
+ def property_unset(self):
694
+ """ """
695
+ ...
696
+
697
+ def type_recast(self):
698
+ """ """
699
+ ...
700
+
701
+ def values(self):
702
+ """ """
703
+ ...
704
+
705
+ class AddPresetFluid(bpy_types.Operator):
706
+ """ """
271
707
 
272
- def as_filename(self, name): ...
273
- def as_keywords(self, ignore): ...
274
- def as_pointer(self): ...
275
- def bl_rna_get_subclass(self): ...
276
- def bl_rna_get_subclass_py(self): ...
277
- def check(self, _context): ...
278
- def driver_add(self): ...
279
- def driver_remove(self): ...
280
- def execute(self, context): ...
281
- def get(self): ...
282
- def id_properties_clear(self): ...
283
- def id_properties_ensure(self): ...
284
- def id_properties_ui(self): ...
285
- def invoke(self, context, _event): ...
286
- def is_property_hidden(self): ...
287
- def is_property_overridable_library(self): ...
288
- def is_property_readonly(self): ...
289
- def is_property_set(self): ...
290
- def items(self): ...
291
- def keyframe_delete(self): ...
292
- def keyframe_insert(self): ...
293
- def keys(self): ...
294
- def path_from_id(self): ...
295
- def path_resolve(self): ...
296
- def poll_message_set(self): ...
297
- def pop(self): ...
298
- def property_overridable_library_set(self): ...
299
- def property_unset(self): ...
300
- def type_recast(self): ...
301
- def values(self): ...
302
-
303
- class AddPresetFluid(AddPresetBase, bpy_types.Operator):
304
708
  bl_idname: typing.Any
709
+ """ """
710
+
305
711
  bl_label: typing.Any
712
+ """ """
713
+
306
714
  bl_options: typing.Any
715
+ """ """
716
+
307
717
  bl_rna: typing.Any
718
+ """ """
719
+
308
720
  id_data: typing.Any
721
+ """ """
722
+
309
723
  preset_defines: typing.Any
724
+ """ """
725
+
310
726
  preset_menu: typing.Any
727
+ """ """
728
+
311
729
  preset_subdir: typing.Any
730
+ """ """
731
+
312
732
  preset_values: typing.Any
733
+ """ """
734
+
735
+ def as_filename(self, name):
736
+ """
737
+
738
+ :param name:
739
+ """
740
+ ...
741
+
742
+ def as_keywords(self, ignore):
743
+ """
744
+
745
+ :param ignore:
746
+ """
747
+ ...
748
+
749
+ def as_pointer(self):
750
+ """ """
751
+ ...
752
+
753
+ def bl_rna_get_subclass(self):
754
+ """ """
755
+ ...
756
+
757
+ def bl_rna_get_subclass_py(self):
758
+ """ """
759
+ ...
760
+
761
+ def check(self, _context):
762
+ """
763
+
764
+ :param _context:
765
+ """
766
+ ...
767
+
768
+ def driver_add(self):
769
+ """ """
770
+ ...
771
+
772
+ def driver_remove(self):
773
+ """ """
774
+ ...
775
+
776
+ def execute(self, context):
777
+ """
778
+
779
+ :param context:
780
+ """
781
+ ...
782
+
783
+ def get(self):
784
+ """ """
785
+ ...
786
+
787
+ def id_properties_clear(self):
788
+ """ """
789
+ ...
790
+
791
+ def id_properties_ensure(self):
792
+ """ """
793
+ ...
794
+
795
+ def id_properties_ui(self):
796
+ """ """
797
+ ...
798
+
799
+ def invoke(self, context, _event):
800
+ """
801
+
802
+ :param context:
803
+ :param _event:
804
+ """
805
+ ...
806
+
807
+ def is_property_hidden(self):
808
+ """ """
809
+ ...
810
+
811
+ def is_property_overridable_library(self):
812
+ """ """
813
+ ...
814
+
815
+ def is_property_readonly(self):
816
+ """ """
817
+ ...
818
+
819
+ def is_property_set(self):
820
+ """ """
821
+ ...
822
+
823
+ def items(self):
824
+ """ """
825
+ ...
826
+
827
+ def keyframe_delete(self):
828
+ """ """
829
+ ...
830
+
831
+ def keyframe_insert(self):
832
+ """ """
833
+ ...
834
+
835
+ def keys(self):
836
+ """ """
837
+ ...
838
+
839
+ def path_from_id(self):
840
+ """ """
841
+ ...
842
+
843
+ def path_resolve(self):
844
+ """ """
845
+ ...
846
+
847
+ def poll_message_set(self):
848
+ """ """
849
+ ...
850
+
851
+ def pop(self):
852
+ """ """
853
+ ...
854
+
855
+ def property_overridable_library_set(self):
856
+ """ """
857
+ ...
858
+
859
+ def property_unset(self):
860
+ """ """
861
+ ...
862
+
863
+ def type_recast(self):
864
+ """ """
865
+ ...
866
+
867
+ def values(self):
868
+ """ """
869
+ ...
870
+
871
+ class AddPresetGpencilBrush(bpy_types.Operator):
872
+ """ """
313
873
 
314
- def as_filename(self, name): ...
315
- def as_keywords(self, ignore): ...
316
- def as_pointer(self): ...
317
- def bl_rna_get_subclass(self): ...
318
- def bl_rna_get_subclass_py(self): ...
319
- def check(self, _context): ...
320
- def driver_add(self): ...
321
- def driver_remove(self): ...
322
- def execute(self, context): ...
323
- def get(self): ...
324
- def id_properties_clear(self): ...
325
- def id_properties_ensure(self): ...
326
- def id_properties_ui(self): ...
327
- def invoke(self, context, _event): ...
328
- def is_property_hidden(self): ...
329
- def is_property_overridable_library(self): ...
330
- def is_property_readonly(self): ...
331
- def is_property_set(self): ...
332
- def items(self): ...
333
- def keyframe_delete(self): ...
334
- def keyframe_insert(self): ...
335
- def keys(self): ...
336
- def path_from_id(self): ...
337
- def path_resolve(self): ...
338
- def poll_message_set(self): ...
339
- def pop(self): ...
340
- def property_overridable_library_set(self): ...
341
- def property_unset(self): ...
342
- def type_recast(self): ...
343
- def values(self): ...
344
-
345
- class AddPresetGpencilBrush(AddPresetBase, bpy_types.Operator):
346
874
  bl_idname: typing.Any
875
+ """ """
876
+
347
877
  bl_label: typing.Any
878
+ """ """
879
+
348
880
  bl_options: typing.Any
881
+ """ """
882
+
349
883
  bl_rna: typing.Any
884
+ """ """
885
+
350
886
  id_data: typing.Any
887
+ """ """
888
+
351
889
  preset_defines: typing.Any
890
+ """ """
891
+
352
892
  preset_menu: typing.Any
353
- preset_subdir: typing.Any
354
- preset_values: typing.Any
893
+ """ """
355
894
 
356
- def as_filename(self, name): ...
357
- def as_keywords(self, ignore): ...
358
- def as_pointer(self): ...
359
- def bl_rna_get_subclass(self): ...
360
- def bl_rna_get_subclass_py(self): ...
361
- def check(self, _context): ...
362
- def driver_add(self): ...
363
- def driver_remove(self): ...
364
- def execute(self, context): ...
365
- def get(self): ...
366
- def id_properties_clear(self): ...
367
- def id_properties_ensure(self): ...
368
- def id_properties_ui(self): ...
369
- def invoke(self, context, _event): ...
370
- def is_property_hidden(self): ...
371
- def is_property_overridable_library(self): ...
372
- def is_property_readonly(self): ...
373
- def is_property_set(self): ...
374
- def items(self): ...
375
- def keyframe_delete(self): ...
376
- def keyframe_insert(self): ...
377
- def keys(self): ...
378
- def path_from_id(self): ...
379
- def path_resolve(self): ...
380
- def poll_message_set(self): ...
381
- def pop(self): ...
382
- def property_overridable_library_set(self): ...
383
- def property_unset(self): ...
384
- def type_recast(self): ...
385
- def values(self): ...
386
-
387
- class AddPresetGpencilMaterial(AddPresetBase, bpy_types.Operator):
388
- bl_idname: typing.Any
389
- bl_label: typing.Any
390
- bl_options: typing.Any
391
- bl_rna: typing.Any
392
- id_data: typing.Any
393
- preset_defines: typing.Any
394
- preset_menu: typing.Any
395
895
  preset_subdir: typing.Any
396
- preset_values: typing.Any
896
+ """ """
397
897
 
398
- def as_filename(self, name): ...
399
- def as_keywords(self, ignore): ...
400
- def as_pointer(self): ...
401
- def bl_rna_get_subclass(self): ...
402
- def bl_rna_get_subclass_py(self): ...
403
- def check(self, _context): ...
404
- def driver_add(self): ...
405
- def driver_remove(self): ...
406
- def execute(self, context): ...
407
- def get(self): ...
408
- def id_properties_clear(self): ...
409
- def id_properties_ensure(self): ...
410
- def id_properties_ui(self): ...
411
- def invoke(self, context, _event): ...
412
- def is_property_hidden(self): ...
413
- def is_property_overridable_library(self): ...
414
- def is_property_readonly(self): ...
415
- def is_property_set(self): ...
416
- def items(self): ...
417
- def keyframe_delete(self): ...
418
- def keyframe_insert(self): ...
419
- def keys(self): ...
420
- def path_from_id(self): ...
421
- def path_resolve(self): ...
422
- def poll_message_set(self): ...
423
- def pop(self): ...
424
- def property_overridable_library_set(self): ...
425
- def property_unset(self): ...
426
- def type_recast(self): ...
427
- def values(self): ...
428
-
429
- class AddPresetHairDynamics(AddPresetBase, bpy_types.Operator):
430
- bl_idname: typing.Any
431
- bl_label: typing.Any
432
- bl_options: typing.Any
433
- bl_rna: typing.Any
434
- id_data: typing.Any
435
- preset_defines: typing.Any
436
- preset_menu: typing.Any
437
- preset_subdir: typing.Any
438
898
  preset_values: typing.Any
899
+ """ """
439
900
 
440
- def as_filename(self, name): ...
441
- def as_keywords(self, ignore): ...
442
- def as_pointer(self): ...
443
- def bl_rna_get_subclass(self): ...
444
- def bl_rna_get_subclass_py(self): ...
445
- def check(self, _context): ...
446
- def driver_add(self): ...
447
- def driver_remove(self): ...
448
- def execute(self, context): ...
449
- def get(self): ...
450
- def id_properties_clear(self): ...
451
- def id_properties_ensure(self): ...
452
- def id_properties_ui(self): ...
453
- def invoke(self, context, _event): ...
454
- def is_property_hidden(self): ...
455
- def is_property_overridable_library(self): ...
456
- def is_property_readonly(self): ...
457
- def is_property_set(self): ...
458
- def items(self): ...
459
- def keyframe_delete(self): ...
460
- def keyframe_insert(self): ...
461
- def keys(self): ...
462
- def path_from_id(self): ...
463
- def path_resolve(self): ...
464
- def poll_message_set(self): ...
465
- def pop(self): ...
466
- def property_overridable_library_set(self): ...
467
- def property_unset(self): ...
468
- def type_recast(self): ...
469
- def values(self): ...
470
-
471
- class AddPresetInterfaceTheme(AddPresetBase, bpy_types.Operator):
472
- bl_idname: typing.Any
473
- bl_label: typing.Any
474
- bl_options: typing.Any
475
- bl_rna: typing.Any
476
- id_data: typing.Any
477
- preset_menu: typing.Any
478
- preset_subdir: typing.Any
901
+ def as_filename(self, name):
902
+ """
479
903
 
480
- def as_filename(self, name): ...
481
- def as_keywords(self, ignore): ...
482
- def as_pointer(self): ...
483
- def bl_rna_get_subclass(self): ...
484
- def bl_rna_get_subclass_py(self): ...
485
- def check(self, _context): ...
486
- def driver_add(self): ...
487
- def driver_remove(self): ...
488
- def execute(self, context): ...
489
- def get(self): ...
490
- def id_properties_clear(self): ...
491
- def id_properties_ensure(self): ...
492
- def id_properties_ui(self): ...
493
- def invoke(self, context, _event): ...
494
- def is_property_hidden(self): ...
495
- def is_property_overridable_library(self): ...
496
- def is_property_readonly(self): ...
497
- def is_property_set(self): ...
498
- def items(self): ...
499
- def keyframe_delete(self): ...
500
- def keyframe_insert(self): ...
501
- def keys(self): ...
502
- def path_from_id(self): ...
503
- def path_resolve(self): ...
504
- def poll_message_set(self): ...
505
- def pop(self): ...
506
- def property_overridable_library_set(self): ...
507
- def property_unset(self): ...
508
- def type_recast(self): ...
509
- def values(self): ...
510
-
511
- class AddPresetKeyconfig(AddPresetBase, bpy_types.Operator):
512
- bl_idname: typing.Any
513
- bl_label: typing.Any
514
- bl_options: typing.Any
515
- bl_rna: typing.Any
516
- id_data: typing.Any
517
- preset_menu: typing.Any
518
- preset_subdir: typing.Any
904
+ :param name:
905
+ """
906
+ ...
907
+
908
+ def as_keywords(self, ignore):
909
+ """
910
+
911
+ :param ignore:
912
+ """
913
+ ...
914
+
915
+ def as_pointer(self):
916
+ """ """
917
+ ...
918
+
919
+ def bl_rna_get_subclass(self):
920
+ """ """
921
+ ...
922
+
923
+ def bl_rna_get_subclass_py(self):
924
+ """ """
925
+ ...
926
+
927
+ def check(self, _context):
928
+ """
929
+
930
+ :param _context:
931
+ """
932
+ ...
933
+
934
+ def driver_add(self):
935
+ """ """
936
+ ...
937
+
938
+ def driver_remove(self):
939
+ """ """
940
+ ...
941
+
942
+ def execute(self, context):
943
+ """
944
+
945
+ :param context:
946
+ """
947
+ ...
948
+
949
+ def get(self):
950
+ """ """
951
+ ...
952
+
953
+ def id_properties_clear(self):
954
+ """ """
955
+ ...
956
+
957
+ def id_properties_ensure(self):
958
+ """ """
959
+ ...
960
+
961
+ def id_properties_ui(self):
962
+ """ """
963
+ ...
964
+
965
+ def invoke(self, context, _event):
966
+ """
967
+
968
+ :param context:
969
+ :param _event:
970
+ """
971
+ ...
972
+
973
+ def is_property_hidden(self):
974
+ """ """
975
+ ...
976
+
977
+ def is_property_overridable_library(self):
978
+ """ """
979
+ ...
980
+
981
+ def is_property_readonly(self):
982
+ """ """
983
+ ...
984
+
985
+ def is_property_set(self):
986
+ """ """
987
+ ...
988
+
989
+ def items(self):
990
+ """ """
991
+ ...
992
+
993
+ def keyframe_delete(self):
994
+ """ """
995
+ ...
996
+
997
+ def keyframe_insert(self):
998
+ """ """
999
+ ...
1000
+
1001
+ def keys(self):
1002
+ """ """
1003
+ ...
1004
+
1005
+ def path_from_id(self):
1006
+ """ """
1007
+ ...
1008
+
1009
+ def path_resolve(self):
1010
+ """ """
1011
+ ...
1012
+
1013
+ def poll_message_set(self):
1014
+ """ """
1015
+ ...
1016
+
1017
+ def pop(self):
1018
+ """ """
1019
+ ...
1020
+
1021
+ def property_overridable_library_set(self):
1022
+ """ """
1023
+ ...
1024
+
1025
+ def property_unset(self):
1026
+ """ """
1027
+ ...
1028
+
1029
+ def type_recast(self):
1030
+ """ """
1031
+ ...
1032
+
1033
+ def values(self):
1034
+ """ """
1035
+ ...
1036
+
1037
+ class AddPresetGpencilMaterial(bpy_types.Operator):
1038
+ """ """
519
1039
 
520
- def add(self, _context, filepath): ...
521
- def as_filename(self, name): ...
522
- def as_keywords(self, ignore): ...
523
- def as_pointer(self): ...
524
- def bl_rna_get_subclass(self): ...
525
- def bl_rna_get_subclass_py(self): ...
526
- def check(self, _context): ...
527
- def driver_add(self): ...
528
- def driver_remove(self): ...
529
- def execute(self, context): ...
530
- def get(self): ...
531
- def id_properties_clear(self): ...
532
- def id_properties_ensure(self): ...
533
- def id_properties_ui(self): ...
534
- def invoke(self, context, _event): ...
535
- def is_property_hidden(self): ...
536
- def is_property_overridable_library(self): ...
537
- def is_property_readonly(self): ...
538
- def is_property_set(self): ...
539
- def items(self): ...
540
- def keyframe_delete(self): ...
541
- def keyframe_insert(self): ...
542
- def keys(self): ...
543
- def path_from_id(self): ...
544
- def path_resolve(self): ...
545
- def poll_message_set(self): ...
546
- def pop(self): ...
547
- def post_cb(self, context): ...
548
- def pre_cb(self, context): ...
549
- def property_overridable_library_set(self): ...
550
- def property_unset(self): ...
551
- def type_recast(self): ...
552
- def values(self): ...
553
-
554
- class AddPresetNodeColor(AddPresetBase, bpy_types.Operator):
555
1040
  bl_idname: typing.Any
1041
+ """ """
1042
+
556
1043
  bl_label: typing.Any
1044
+ """ """
1045
+
557
1046
  bl_options: typing.Any
1047
+ """ """
1048
+
558
1049
  bl_rna: typing.Any
1050
+ """ """
1051
+
559
1052
  id_data: typing.Any
1053
+ """ """
1054
+
560
1055
  preset_defines: typing.Any
1056
+ """ """
1057
+
561
1058
  preset_menu: typing.Any
1059
+ """ """
1060
+
562
1061
  preset_subdir: typing.Any
1062
+ """ """
1063
+
563
1064
  preset_values: typing.Any
1065
+ """ """
1066
+
1067
+ def as_filename(self, name):
1068
+ """
1069
+
1070
+ :param name:
1071
+ """
1072
+ ...
1073
+
1074
+ def as_keywords(self, ignore):
1075
+ """
1076
+
1077
+ :param ignore:
1078
+ """
1079
+ ...
1080
+
1081
+ def as_pointer(self):
1082
+ """ """
1083
+ ...
1084
+
1085
+ def bl_rna_get_subclass(self):
1086
+ """ """
1087
+ ...
1088
+
1089
+ def bl_rna_get_subclass_py(self):
1090
+ """ """
1091
+ ...
1092
+
1093
+ def check(self, _context):
1094
+ """
1095
+
1096
+ :param _context:
1097
+ """
1098
+ ...
1099
+
1100
+ def driver_add(self):
1101
+ """ """
1102
+ ...
1103
+
1104
+ def driver_remove(self):
1105
+ """ """
1106
+ ...
1107
+
1108
+ def execute(self, context):
1109
+ """
1110
+
1111
+ :param context:
1112
+ """
1113
+ ...
1114
+
1115
+ def get(self):
1116
+ """ """
1117
+ ...
1118
+
1119
+ def id_properties_clear(self):
1120
+ """ """
1121
+ ...
1122
+
1123
+ def id_properties_ensure(self):
1124
+ """ """
1125
+ ...
1126
+
1127
+ def id_properties_ui(self):
1128
+ """ """
1129
+ ...
1130
+
1131
+ def invoke(self, context, _event):
1132
+ """
1133
+
1134
+ :param context:
1135
+ :param _event:
1136
+ """
1137
+ ...
1138
+
1139
+ def is_property_hidden(self):
1140
+ """ """
1141
+ ...
1142
+
1143
+ def is_property_overridable_library(self):
1144
+ """ """
1145
+ ...
1146
+
1147
+ def is_property_readonly(self):
1148
+ """ """
1149
+ ...
1150
+
1151
+ def is_property_set(self):
1152
+ """ """
1153
+ ...
1154
+
1155
+ def items(self):
1156
+ """ """
1157
+ ...
1158
+
1159
+ def keyframe_delete(self):
1160
+ """ """
1161
+ ...
1162
+
1163
+ def keyframe_insert(self):
1164
+ """ """
1165
+ ...
1166
+
1167
+ def keys(self):
1168
+ """ """
1169
+ ...
1170
+
1171
+ def path_from_id(self):
1172
+ """ """
1173
+ ...
1174
+
1175
+ def path_resolve(self):
1176
+ """ """
1177
+ ...
1178
+
1179
+ def poll_message_set(self):
1180
+ """ """
1181
+ ...
1182
+
1183
+ def pop(self):
1184
+ """ """
1185
+ ...
1186
+
1187
+ def property_overridable_library_set(self):
1188
+ """ """
1189
+ ...
1190
+
1191
+ def property_unset(self):
1192
+ """ """
1193
+ ...
1194
+
1195
+ def type_recast(self):
1196
+ """ """
1197
+ ...
1198
+
1199
+ def values(self):
1200
+ """ """
1201
+ ...
1202
+
1203
+ class AddPresetHairDynamics(bpy_types.Operator):
1204
+ """ """
564
1205
 
565
- def as_filename(self, name): ...
566
- def as_keywords(self, ignore): ...
567
- def as_pointer(self): ...
568
- def bl_rna_get_subclass(self): ...
569
- def bl_rna_get_subclass_py(self): ...
570
- def check(self, _context): ...
571
- def driver_add(self): ...
572
- def driver_remove(self): ...
573
- def execute(self, context): ...
574
- def get(self): ...
575
- def id_properties_clear(self): ...
576
- def id_properties_ensure(self): ...
577
- def id_properties_ui(self): ...
578
- def invoke(self, context, _event): ...
579
- def is_property_hidden(self): ...
580
- def is_property_overridable_library(self): ...
581
- def is_property_readonly(self): ...
582
- def is_property_set(self): ...
583
- def items(self): ...
584
- def keyframe_delete(self): ...
585
- def keyframe_insert(self): ...
586
- def keys(self): ...
587
- def path_from_id(self): ...
588
- def path_resolve(self): ...
589
- def poll_message_set(self): ...
590
- def pop(self): ...
591
- def property_overridable_library_set(self): ...
592
- def property_unset(self): ...
593
- def type_recast(self): ...
594
- def values(self): ...
595
-
596
- class AddPresetOperator(AddPresetBase, bpy_types.Operator):
597
1206
  bl_idname: typing.Any
1207
+ """ """
1208
+
598
1209
  bl_label: typing.Any
1210
+ """ """
1211
+
599
1212
  bl_options: typing.Any
1213
+ """ """
1214
+
600
1215
  bl_rna: typing.Any
1216
+ """ """
1217
+
601
1218
  id_data: typing.Any
1219
+ """ """
1220
+
602
1221
  preset_defines: typing.Any
1222
+ """ """
1223
+
603
1224
  preset_menu: typing.Any
1225
+ """ """
1226
+
604
1227
  preset_subdir: typing.Any
1228
+ """ """
1229
+
605
1230
  preset_values: typing.Any
1231
+ """ """
1232
+
1233
+ def as_filename(self, name):
1234
+ """
1235
+
1236
+ :param name:
1237
+ """
1238
+ ...
1239
+
1240
+ def as_keywords(self, ignore):
1241
+ """
1242
+
1243
+ :param ignore:
1244
+ """
1245
+ ...
1246
+
1247
+ def as_pointer(self):
1248
+ """ """
1249
+ ...
1250
+
1251
+ def bl_rna_get_subclass(self):
1252
+ """ """
1253
+ ...
1254
+
1255
+ def bl_rna_get_subclass_py(self):
1256
+ """ """
1257
+ ...
1258
+
1259
+ def check(self, _context):
1260
+ """
1261
+
1262
+ :param _context:
1263
+ """
1264
+ ...
1265
+
1266
+ def driver_add(self):
1267
+ """ """
1268
+ ...
1269
+
1270
+ def driver_remove(self):
1271
+ """ """
1272
+ ...
1273
+
1274
+ def execute(self, context):
1275
+ """
1276
+
1277
+ :param context:
1278
+ """
1279
+ ...
1280
+
1281
+ def get(self):
1282
+ """ """
1283
+ ...
1284
+
1285
+ def id_properties_clear(self):
1286
+ """ """
1287
+ ...
1288
+
1289
+ def id_properties_ensure(self):
1290
+ """ """
1291
+ ...
1292
+
1293
+ def id_properties_ui(self):
1294
+ """ """
1295
+ ...
1296
+
1297
+ def invoke(self, context, _event):
1298
+ """
1299
+
1300
+ :param context:
1301
+ :param _event:
1302
+ """
1303
+ ...
1304
+
1305
+ def is_property_hidden(self):
1306
+ """ """
1307
+ ...
1308
+
1309
+ def is_property_overridable_library(self):
1310
+ """ """
1311
+ ...
1312
+
1313
+ def is_property_readonly(self):
1314
+ """ """
1315
+ ...
1316
+
1317
+ def is_property_set(self):
1318
+ """ """
1319
+ ...
1320
+
1321
+ def items(self):
1322
+ """ """
1323
+ ...
1324
+
1325
+ def keyframe_delete(self):
1326
+ """ """
1327
+ ...
1328
+
1329
+ def keyframe_insert(self):
1330
+ """ """
1331
+ ...
1332
+
1333
+ def keys(self):
1334
+ """ """
1335
+ ...
1336
+
1337
+ def path_from_id(self):
1338
+ """ """
1339
+ ...
1340
+
1341
+ def path_resolve(self):
1342
+ """ """
1343
+ ...
1344
+
1345
+ def poll_message_set(self):
1346
+ """ """
1347
+ ...
1348
+
1349
+ def pop(self):
1350
+ """ """
1351
+ ...
1352
+
1353
+ def property_overridable_library_set(self):
1354
+ """ """
1355
+ ...
1356
+
1357
+ def property_unset(self):
1358
+ """ """
1359
+ ...
1360
+
1361
+ def type_recast(self):
1362
+ """ """
1363
+ ...
1364
+
1365
+ def values(self):
1366
+ """ """
1367
+ ...
1368
+
1369
+ class AddPresetInterfaceTheme(bpy_types.Operator):
1370
+ """ """
606
1371
 
607
- def as_filename(self, name): ...
608
- def as_keywords(self, ignore): ...
609
- def as_pointer(self): ...
610
- def bl_rna_get_subclass(self): ...
611
- def bl_rna_get_subclass_py(self): ...
612
- def check(self, _context): ...
613
- def driver_add(self): ...
614
- def driver_remove(self): ...
615
- def execute(self, context): ...
616
- def get(self): ...
617
- def id_properties_clear(self): ...
618
- def id_properties_ensure(self): ...
619
- def id_properties_ui(self): ...
620
- def invoke(self, context, _event): ...
621
- def is_property_hidden(self): ...
622
- def is_property_overridable_library(self): ...
623
- def is_property_readonly(self): ...
624
- def is_property_set(self): ...
625
- def items(self): ...
626
- def keyframe_delete(self): ...
627
- def keyframe_insert(self): ...
628
- def keys(self): ...
629
- def operator_path(self, operator): ...
630
- def path_from_id(self): ...
631
- def path_resolve(self): ...
632
- def poll_message_set(self): ...
633
- def pop(self): ...
634
- def property_overridable_library_set(self): ...
635
- def property_unset(self): ...
636
- def type_recast(self): ...
637
- def values(self): ...
638
-
639
- class AddPresetRender(AddPresetBase, bpy_types.Operator):
640
1372
  bl_idname: typing.Any
1373
+ """ """
1374
+
641
1375
  bl_label: typing.Any
1376
+ """ """
1377
+
642
1378
  bl_options: typing.Any
1379
+ """ """
1380
+
643
1381
  bl_rna: typing.Any
1382
+ """ """
1383
+
644
1384
  id_data: typing.Any
645
- preset_defines: typing.Any
1385
+ """ """
1386
+
646
1387
  preset_menu: typing.Any
1388
+ """ """
1389
+
647
1390
  preset_subdir: typing.Any
648
- preset_values: typing.Any
1391
+ """ """
1392
+
1393
+ def as_filename(self, name):
1394
+ """
1395
+
1396
+ :param name:
1397
+ """
1398
+ ...
1399
+
1400
+ def as_keywords(self, ignore):
1401
+ """
1402
+
1403
+ :param ignore:
1404
+ """
1405
+ ...
1406
+
1407
+ def as_pointer(self):
1408
+ """ """
1409
+ ...
1410
+
1411
+ def bl_rna_get_subclass(self):
1412
+ """ """
1413
+ ...
1414
+
1415
+ def bl_rna_get_subclass_py(self):
1416
+ """ """
1417
+ ...
1418
+
1419
+ def check(self, _context):
1420
+ """
1421
+
1422
+ :param _context:
1423
+ """
1424
+ ...
1425
+
1426
+ def driver_add(self):
1427
+ """ """
1428
+ ...
1429
+
1430
+ def driver_remove(self):
1431
+ """ """
1432
+ ...
1433
+
1434
+ def execute(self, context):
1435
+ """
1436
+
1437
+ :param context:
1438
+ """
1439
+ ...
1440
+
1441
+ def get(self):
1442
+ """ """
1443
+ ...
1444
+
1445
+ def id_properties_clear(self):
1446
+ """ """
1447
+ ...
1448
+
1449
+ def id_properties_ensure(self):
1450
+ """ """
1451
+ ...
1452
+
1453
+ def id_properties_ui(self):
1454
+ """ """
1455
+ ...
1456
+
1457
+ def invoke(self, context, _event):
1458
+ """
1459
+
1460
+ :param context:
1461
+ :param _event:
1462
+ """
1463
+ ...
1464
+
1465
+ def is_property_hidden(self):
1466
+ """ """
1467
+ ...
1468
+
1469
+ def is_property_overridable_library(self):
1470
+ """ """
1471
+ ...
1472
+
1473
+ def is_property_readonly(self):
1474
+ """ """
1475
+ ...
1476
+
1477
+ def is_property_set(self):
1478
+ """ """
1479
+ ...
1480
+
1481
+ def items(self):
1482
+ """ """
1483
+ ...
1484
+
1485
+ def keyframe_delete(self):
1486
+ """ """
1487
+ ...
1488
+
1489
+ def keyframe_insert(self):
1490
+ """ """
1491
+ ...
1492
+
1493
+ def keys(self):
1494
+ """ """
1495
+ ...
1496
+
1497
+ def path_from_id(self):
1498
+ """ """
1499
+ ...
1500
+
1501
+ def path_resolve(self):
1502
+ """ """
1503
+ ...
1504
+
1505
+ def poll_message_set(self):
1506
+ """ """
1507
+ ...
1508
+
1509
+ def pop(self):
1510
+ """ """
1511
+ ...
1512
+
1513
+ def property_overridable_library_set(self):
1514
+ """ """
1515
+ ...
1516
+
1517
+ def property_unset(self):
1518
+ """ """
1519
+ ...
1520
+
1521
+ def type_recast(self):
1522
+ """ """
1523
+ ...
1524
+
1525
+ def values(self):
1526
+ """ """
1527
+ ...
1528
+
1529
+ class AddPresetKeyconfig(bpy_types.Operator):
1530
+ """ """
649
1531
 
650
- def as_filename(self, name): ...
651
- def as_keywords(self, ignore): ...
652
- def as_pointer(self): ...
653
- def bl_rna_get_subclass(self): ...
654
- def bl_rna_get_subclass_py(self): ...
655
- def check(self, _context): ...
656
- def driver_add(self): ...
657
- def driver_remove(self): ...
658
- def execute(self, context): ...
659
- def get(self): ...
660
- def id_properties_clear(self): ...
661
- def id_properties_ensure(self): ...
662
- def id_properties_ui(self): ...
663
- def invoke(self, context, _event): ...
664
- def is_property_hidden(self): ...
665
- def is_property_overridable_library(self): ...
666
- def is_property_readonly(self): ...
667
- def is_property_set(self): ...
668
- def items(self): ...
669
- def keyframe_delete(self): ...
670
- def keyframe_insert(self): ...
671
- def keys(self): ...
672
- def path_from_id(self): ...
673
- def path_resolve(self): ...
674
- def poll_message_set(self): ...
675
- def pop(self): ...
676
- def property_overridable_library_set(self): ...
677
- def property_unset(self): ...
678
- def type_recast(self): ...
679
- def values(self): ...
680
-
681
- class AddPresetTextEditor(AddPresetBase, bpy_types.Operator):
682
1532
  bl_idname: typing.Any
1533
+ """ """
1534
+
683
1535
  bl_label: typing.Any
1536
+ """ """
1537
+
684
1538
  bl_options: typing.Any
1539
+ """ """
1540
+
685
1541
  bl_rna: typing.Any
1542
+ """ """
1543
+
686
1544
  id_data: typing.Any
687
- preset_defines: typing.Any
1545
+ """ """
1546
+
688
1547
  preset_menu: typing.Any
1548
+ """ """
1549
+
689
1550
  preset_subdir: typing.Any
690
- preset_values: typing.Any
1551
+ """ """
1552
+
1553
+ def add(self, _context, filepath):
1554
+ """
1555
+
1556
+ :param _context:
1557
+ :param filepath:
1558
+ """
1559
+ ...
1560
+
1561
+ def as_filename(self, name):
1562
+ """
1563
+
1564
+ :param name:
1565
+ """
1566
+ ...
1567
+
1568
+ def as_keywords(self, ignore):
1569
+ """
1570
+
1571
+ :param ignore:
1572
+ """
1573
+ ...
1574
+
1575
+ def as_pointer(self):
1576
+ """ """
1577
+ ...
1578
+
1579
+ def bl_rna_get_subclass(self):
1580
+ """ """
1581
+ ...
1582
+
1583
+ def bl_rna_get_subclass_py(self):
1584
+ """ """
1585
+ ...
1586
+
1587
+ def check(self, _context):
1588
+ """
1589
+
1590
+ :param _context:
1591
+ """
1592
+ ...
1593
+
1594
+ def driver_add(self):
1595
+ """ """
1596
+ ...
1597
+
1598
+ def driver_remove(self):
1599
+ """ """
1600
+ ...
1601
+
1602
+ def execute(self, context):
1603
+ """
1604
+
1605
+ :param context:
1606
+ """
1607
+ ...
1608
+
1609
+ def get(self):
1610
+ """ """
1611
+ ...
1612
+
1613
+ def id_properties_clear(self):
1614
+ """ """
1615
+ ...
1616
+
1617
+ def id_properties_ensure(self):
1618
+ """ """
1619
+ ...
1620
+
1621
+ def id_properties_ui(self):
1622
+ """ """
1623
+ ...
1624
+
1625
+ def invoke(self, context, _event):
1626
+ """
1627
+
1628
+ :param context:
1629
+ :param _event:
1630
+ """
1631
+ ...
1632
+
1633
+ def is_property_hidden(self):
1634
+ """ """
1635
+ ...
1636
+
1637
+ def is_property_overridable_library(self):
1638
+ """ """
1639
+ ...
1640
+
1641
+ def is_property_readonly(self):
1642
+ """ """
1643
+ ...
1644
+
1645
+ def is_property_set(self):
1646
+ """ """
1647
+ ...
1648
+
1649
+ def items(self):
1650
+ """ """
1651
+ ...
1652
+
1653
+ def keyframe_delete(self):
1654
+ """ """
1655
+ ...
1656
+
1657
+ def keyframe_insert(self):
1658
+ """ """
1659
+ ...
1660
+
1661
+ def keys(self):
1662
+ """ """
1663
+ ...
1664
+
1665
+ def path_from_id(self):
1666
+ """ """
1667
+ ...
1668
+
1669
+ def path_resolve(self):
1670
+ """ """
1671
+ ...
1672
+
1673
+ def poll_message_set(self):
1674
+ """ """
1675
+ ...
1676
+
1677
+ def pop(self):
1678
+ """ """
1679
+ ...
1680
+
1681
+ def property_overridable_library_set(self):
1682
+ """ """
1683
+ ...
1684
+
1685
+ def property_unset(self):
1686
+ """ """
1687
+ ...
1688
+
1689
+ def type_recast(self):
1690
+ """ """
1691
+ ...
1692
+
1693
+ def values(self):
1694
+ """ """
1695
+ ...
1696
+
1697
+ class AddPresetNodeColor(bpy_types.Operator):
1698
+ """ """
691
1699
 
692
- def as_filename(self, name): ...
693
- def as_keywords(self, ignore): ...
694
- def as_pointer(self): ...
695
- def bl_rna_get_subclass(self): ...
696
- def bl_rna_get_subclass_py(self): ...
697
- def check(self, _context): ...
698
- def driver_add(self): ...
699
- def driver_remove(self): ...
700
- def execute(self, context): ...
701
- def get(self): ...
702
- def id_properties_clear(self): ...
703
- def id_properties_ensure(self): ...
704
- def id_properties_ui(self): ...
705
- def invoke(self, context, _event): ...
706
- def is_property_hidden(self): ...
707
- def is_property_overridable_library(self): ...
708
- def is_property_readonly(self): ...
709
- def is_property_set(self): ...
710
- def items(self): ...
711
- def keyframe_delete(self): ...
712
- def keyframe_insert(self): ...
713
- def keys(self): ...
714
- def path_from_id(self): ...
715
- def path_resolve(self): ...
716
- def poll_message_set(self): ...
717
- def pop(self): ...
718
- def property_overridable_library_set(self): ...
719
- def property_unset(self): ...
720
- def type_recast(self): ...
721
- def values(self): ...
722
-
723
- class AddPresetTrackingCamera(AddPresetBase, bpy_types.Operator):
724
1700
  bl_idname: typing.Any
1701
+ """ """
1702
+
725
1703
  bl_label: typing.Any
1704
+ """ """
1705
+
726
1706
  bl_options: typing.Any
1707
+ """ """
1708
+
727
1709
  bl_rna: typing.Any
1710
+ """ """
1711
+
728
1712
  id_data: typing.Any
1713
+ """ """
1714
+
729
1715
  preset_defines: typing.Any
1716
+ """ """
1717
+
730
1718
  preset_menu: typing.Any
1719
+ """ """
1720
+
731
1721
  preset_subdir: typing.Any
1722
+ """ """
1723
+
732
1724
  preset_values: typing.Any
1725
+ """ """
1726
+
1727
+ def as_filename(self, name):
1728
+ """
1729
+
1730
+ :param name:
1731
+ """
1732
+ ...
1733
+
1734
+ def as_keywords(self, ignore):
1735
+ """
1736
+
1737
+ :param ignore:
1738
+ """
1739
+ ...
1740
+
1741
+ def as_pointer(self):
1742
+ """ """
1743
+ ...
1744
+
1745
+ def bl_rna_get_subclass(self):
1746
+ """ """
1747
+ ...
1748
+
1749
+ def bl_rna_get_subclass_py(self):
1750
+ """ """
1751
+ ...
1752
+
1753
+ def check(self, _context):
1754
+ """
1755
+
1756
+ :param _context:
1757
+ """
1758
+ ...
1759
+
1760
+ def driver_add(self):
1761
+ """ """
1762
+ ...
1763
+
1764
+ def driver_remove(self):
1765
+ """ """
1766
+ ...
1767
+
1768
+ def execute(self, context):
1769
+ """
1770
+
1771
+ :param context:
1772
+ """
1773
+ ...
1774
+
1775
+ def get(self):
1776
+ """ """
1777
+ ...
1778
+
1779
+ def id_properties_clear(self):
1780
+ """ """
1781
+ ...
1782
+
1783
+ def id_properties_ensure(self):
1784
+ """ """
1785
+ ...
1786
+
1787
+ def id_properties_ui(self):
1788
+ """ """
1789
+ ...
1790
+
1791
+ def invoke(self, context, _event):
1792
+ """
1793
+
1794
+ :param context:
1795
+ :param _event:
1796
+ """
1797
+ ...
1798
+
1799
+ def is_property_hidden(self):
1800
+ """ """
1801
+ ...
1802
+
1803
+ def is_property_overridable_library(self):
1804
+ """ """
1805
+ ...
1806
+
1807
+ def is_property_readonly(self):
1808
+ """ """
1809
+ ...
1810
+
1811
+ def is_property_set(self):
1812
+ """ """
1813
+ ...
1814
+
1815
+ def items(self):
1816
+ """ """
1817
+ ...
1818
+
1819
+ def keyframe_delete(self):
1820
+ """ """
1821
+ ...
1822
+
1823
+ def keyframe_insert(self):
1824
+ """ """
1825
+ ...
1826
+
1827
+ def keys(self):
1828
+ """ """
1829
+ ...
1830
+
1831
+ def path_from_id(self):
1832
+ """ """
1833
+ ...
1834
+
1835
+ def path_resolve(self):
1836
+ """ """
1837
+ ...
1838
+
1839
+ def poll_message_set(self):
1840
+ """ """
1841
+ ...
1842
+
1843
+ def pop(self):
1844
+ """ """
1845
+ ...
1846
+
1847
+ def property_overridable_library_set(self):
1848
+ """ """
1849
+ ...
1850
+
1851
+ def property_unset(self):
1852
+ """ """
1853
+ ...
1854
+
1855
+ def type_recast(self):
1856
+ """ """
1857
+ ...
1858
+
1859
+ def values(self):
1860
+ """ """
1861
+ ...
1862
+
1863
+ class AddPresetOperator(bpy_types.Operator):
1864
+ """ """
1865
+
1866
+ bl_idname: typing.Any
1867
+ """ """
1868
+
1869
+ bl_label: typing.Any
1870
+ """ """
1871
+
1872
+ bl_options: typing.Any
1873
+ """ """
1874
+
1875
+ bl_rna: typing.Any
1876
+ """ """
1877
+
1878
+ id_data: typing.Any
1879
+ """ """
1880
+
1881
+ preset_defines: typing.Any
1882
+ """ """
1883
+
1884
+ preset_menu: typing.Any
1885
+ """ """
1886
+
1887
+ preset_subdir: typing.Any
1888
+ """ """
1889
+
1890
+ preset_values: typing.Any
1891
+ """ """
1892
+
1893
+ def as_filename(self, name):
1894
+ """
1895
+
1896
+ :param name:
1897
+ """
1898
+ ...
1899
+
1900
+ def as_keywords(self, ignore):
1901
+ """
1902
+
1903
+ :param ignore:
1904
+ """
1905
+ ...
1906
+
1907
+ def as_pointer(self):
1908
+ """ """
1909
+ ...
1910
+
1911
+ def bl_rna_get_subclass(self):
1912
+ """ """
1913
+ ...
1914
+
1915
+ def bl_rna_get_subclass_py(self):
1916
+ """ """
1917
+ ...
1918
+
1919
+ def check(self, _context):
1920
+ """
1921
+
1922
+ :param _context:
1923
+ """
1924
+ ...
1925
+
1926
+ def driver_add(self):
1927
+ """ """
1928
+ ...
1929
+
1930
+ def driver_remove(self):
1931
+ """ """
1932
+ ...
1933
+
1934
+ def execute(self, context):
1935
+ """
1936
+
1937
+ :param context:
1938
+ """
1939
+ ...
1940
+
1941
+ def get(self):
1942
+ """ """
1943
+ ...
1944
+
1945
+ def id_properties_clear(self):
1946
+ """ """
1947
+ ...
1948
+
1949
+ def id_properties_ensure(self):
1950
+ """ """
1951
+ ...
1952
+
1953
+ def id_properties_ui(self):
1954
+ """ """
1955
+ ...
1956
+
1957
+ def invoke(self, context, _event):
1958
+ """
1959
+
1960
+ :param context:
1961
+ :param _event:
1962
+ """
1963
+ ...
1964
+
1965
+ def is_property_hidden(self):
1966
+ """ """
1967
+ ...
1968
+
1969
+ def is_property_overridable_library(self):
1970
+ """ """
1971
+ ...
1972
+
1973
+ def is_property_readonly(self):
1974
+ """ """
1975
+ ...
1976
+
1977
+ def is_property_set(self):
1978
+ """ """
1979
+ ...
1980
+
1981
+ def items(self):
1982
+ """ """
1983
+ ...
1984
+
1985
+ def keyframe_delete(self):
1986
+ """ """
1987
+ ...
1988
+
1989
+ def keyframe_insert(self):
1990
+ """ """
1991
+ ...
1992
+
1993
+ def keys(self):
1994
+ """ """
1995
+ ...
1996
+
1997
+ def operator_path(self, operator):
1998
+ """
1999
+
2000
+ :param operator:
2001
+ """
2002
+ ...
2003
+
2004
+ def path_from_id(self):
2005
+ """ """
2006
+ ...
2007
+
2008
+ def path_resolve(self):
2009
+ """ """
2010
+ ...
2011
+
2012
+ def poll_message_set(self):
2013
+ """ """
2014
+ ...
2015
+
2016
+ def pop(self):
2017
+ """ """
2018
+ ...
2019
+
2020
+ def property_overridable_library_set(self):
2021
+ """ """
2022
+ ...
2023
+
2024
+ def property_unset(self):
2025
+ """ """
2026
+ ...
2027
+
2028
+ def type_recast(self):
2029
+ """ """
2030
+ ...
2031
+
2032
+ def values(self):
2033
+ """ """
2034
+ ...
2035
+
2036
+ class AddPresetRender(bpy_types.Operator):
2037
+ """ """
2038
+
2039
+ bl_idname: typing.Any
2040
+ """ """
2041
+
2042
+ bl_label: typing.Any
2043
+ """ """
2044
+
2045
+ bl_options: typing.Any
2046
+ """ """
2047
+
2048
+ bl_rna: typing.Any
2049
+ """ """
2050
+
2051
+ id_data: typing.Any
2052
+ """ """
2053
+
2054
+ preset_defines: typing.Any
2055
+ """ """
2056
+
2057
+ preset_menu: typing.Any
2058
+ """ """
2059
+
2060
+ preset_subdir: typing.Any
2061
+ """ """
2062
+
2063
+ preset_values: typing.Any
2064
+ """ """
2065
+
2066
+ def as_filename(self, name):
2067
+ """
2068
+
2069
+ :param name:
2070
+ """
2071
+ ...
2072
+
2073
+ def as_keywords(self, ignore):
2074
+ """
2075
+
2076
+ :param ignore:
2077
+ """
2078
+ ...
2079
+
2080
+ def as_pointer(self):
2081
+ """ """
2082
+ ...
2083
+
2084
+ def bl_rna_get_subclass(self):
2085
+ """ """
2086
+ ...
2087
+
2088
+ def bl_rna_get_subclass_py(self):
2089
+ """ """
2090
+ ...
2091
+
2092
+ def check(self, _context):
2093
+ """
2094
+
2095
+ :param _context:
2096
+ """
2097
+ ...
2098
+
2099
+ def driver_add(self):
2100
+ """ """
2101
+ ...
2102
+
2103
+ def driver_remove(self):
2104
+ """ """
2105
+ ...
2106
+
2107
+ def execute(self, context):
2108
+ """
2109
+
2110
+ :param context:
2111
+ """
2112
+ ...
2113
+
2114
+ def get(self):
2115
+ """ """
2116
+ ...
2117
+
2118
+ def id_properties_clear(self):
2119
+ """ """
2120
+ ...
2121
+
2122
+ def id_properties_ensure(self):
2123
+ """ """
2124
+ ...
2125
+
2126
+ def id_properties_ui(self):
2127
+ """ """
2128
+ ...
2129
+
2130
+ def invoke(self, context, _event):
2131
+ """
2132
+
2133
+ :param context:
2134
+ :param _event:
2135
+ """
2136
+ ...
2137
+
2138
+ def is_property_hidden(self):
2139
+ """ """
2140
+ ...
2141
+
2142
+ def is_property_overridable_library(self):
2143
+ """ """
2144
+ ...
2145
+
2146
+ def is_property_readonly(self):
2147
+ """ """
2148
+ ...
2149
+
2150
+ def is_property_set(self):
2151
+ """ """
2152
+ ...
2153
+
2154
+ def items(self):
2155
+ """ """
2156
+ ...
2157
+
2158
+ def keyframe_delete(self):
2159
+ """ """
2160
+ ...
2161
+
2162
+ def keyframe_insert(self):
2163
+ """ """
2164
+ ...
2165
+
2166
+ def keys(self):
2167
+ """ """
2168
+ ...
2169
+
2170
+ def path_from_id(self):
2171
+ """ """
2172
+ ...
2173
+
2174
+ def path_resolve(self):
2175
+ """ """
2176
+ ...
2177
+
2178
+ def poll_message_set(self):
2179
+ """ """
2180
+ ...
2181
+
2182
+ def pop(self):
2183
+ """ """
2184
+ ...
2185
+
2186
+ def property_overridable_library_set(self):
2187
+ """ """
2188
+ ...
2189
+
2190
+ def property_unset(self):
2191
+ """ """
2192
+ ...
2193
+
2194
+ def type_recast(self):
2195
+ """ """
2196
+ ...
2197
+
2198
+ def values(self):
2199
+ """ """
2200
+ ...
2201
+
2202
+ class AddPresetTextEditor(bpy_types.Operator):
2203
+ """ """
2204
+
2205
+ bl_idname: typing.Any
2206
+ """ """
2207
+
2208
+ bl_label: typing.Any
2209
+ """ """
2210
+
2211
+ bl_options: typing.Any
2212
+ """ """
2213
+
2214
+ bl_rna: typing.Any
2215
+ """ """
2216
+
2217
+ id_data: typing.Any
2218
+ """ """
2219
+
2220
+ preset_defines: typing.Any
2221
+ """ """
2222
+
2223
+ preset_menu: typing.Any
2224
+ """ """
2225
+
2226
+ preset_subdir: typing.Any
2227
+ """ """
2228
+
2229
+ preset_values: typing.Any
2230
+ """ """
2231
+
2232
+ def as_filename(self, name):
2233
+ """
2234
+
2235
+ :param name:
2236
+ """
2237
+ ...
2238
+
2239
+ def as_keywords(self, ignore):
2240
+ """
2241
+
2242
+ :param ignore:
2243
+ """
2244
+ ...
2245
+
2246
+ def as_pointer(self):
2247
+ """ """
2248
+ ...
2249
+
2250
+ def bl_rna_get_subclass(self):
2251
+ """ """
2252
+ ...
2253
+
2254
+ def bl_rna_get_subclass_py(self):
2255
+ """ """
2256
+ ...
2257
+
2258
+ def check(self, _context):
2259
+ """
2260
+
2261
+ :param _context:
2262
+ """
2263
+ ...
2264
+
2265
+ def driver_add(self):
2266
+ """ """
2267
+ ...
2268
+
2269
+ def driver_remove(self):
2270
+ """ """
2271
+ ...
2272
+
2273
+ def execute(self, context):
2274
+ """
2275
+
2276
+ :param context:
2277
+ """
2278
+ ...
2279
+
2280
+ def get(self):
2281
+ """ """
2282
+ ...
2283
+
2284
+ def id_properties_clear(self):
2285
+ """ """
2286
+ ...
2287
+
2288
+ def id_properties_ensure(self):
2289
+ """ """
2290
+ ...
2291
+
2292
+ def id_properties_ui(self):
2293
+ """ """
2294
+ ...
2295
+
2296
+ def invoke(self, context, _event):
2297
+ """
2298
+
2299
+ :param context:
2300
+ :param _event:
2301
+ """
2302
+ ...
2303
+
2304
+ def is_property_hidden(self):
2305
+ """ """
2306
+ ...
2307
+
2308
+ def is_property_overridable_library(self):
2309
+ """ """
2310
+ ...
2311
+
2312
+ def is_property_readonly(self):
2313
+ """ """
2314
+ ...
2315
+
2316
+ def is_property_set(self):
2317
+ """ """
2318
+ ...
2319
+
2320
+ def items(self):
2321
+ """ """
2322
+ ...
2323
+
2324
+ def keyframe_delete(self):
2325
+ """ """
2326
+ ...
2327
+
2328
+ def keyframe_insert(self):
2329
+ """ """
2330
+ ...
2331
+
2332
+ def keys(self):
2333
+ """ """
2334
+ ...
2335
+
2336
+ def path_from_id(self):
2337
+ """ """
2338
+ ...
2339
+
2340
+ def path_resolve(self):
2341
+ """ """
2342
+ ...
2343
+
2344
+ def poll_message_set(self):
2345
+ """ """
2346
+ ...
2347
+
2348
+ def pop(self):
2349
+ """ """
2350
+ ...
2351
+
2352
+ def property_overridable_library_set(self):
2353
+ """ """
2354
+ ...
2355
+
2356
+ def property_unset(self):
2357
+ """ """
2358
+ ...
2359
+
2360
+ def type_recast(self):
2361
+ """ """
2362
+ ...
2363
+
2364
+ def values(self):
2365
+ """ """
2366
+ ...
2367
+
2368
+ class AddPresetTrackingCamera(bpy_types.Operator):
2369
+ """ """
2370
+
2371
+ bl_idname: typing.Any
2372
+ """ """
2373
+
2374
+ bl_label: typing.Any
2375
+ """ """
2376
+
2377
+ bl_options: typing.Any
2378
+ """ """
2379
+
2380
+ bl_rna: typing.Any
2381
+ """ """
733
2382
 
734
- def as_filename(self, name): ...
735
- def as_keywords(self, ignore): ...
736
- def as_pointer(self): ...
737
- def bl_rna_get_subclass(self): ...
738
- def bl_rna_get_subclass_py(self): ...
739
- def check(self, _context): ...
740
- def driver_add(self): ...
741
- def driver_remove(self): ...
742
- def execute(self, context): ...
743
- def get(self): ...
744
- def id_properties_clear(self): ...
745
- def id_properties_ensure(self): ...
746
- def id_properties_ui(self): ...
747
- def invoke(self, context, _event): ...
748
- def is_property_hidden(self): ...
749
- def is_property_overridable_library(self): ...
750
- def is_property_readonly(self): ...
751
- def is_property_set(self): ...
752
- def items(self): ...
753
- def keyframe_delete(self): ...
754
- def keyframe_insert(self): ...
755
- def keys(self): ...
756
- def path_from_id(self): ...
757
- def path_resolve(self): ...
758
- def poll_message_set(self): ...
759
- def pop(self): ...
760
- def property_overridable_library_set(self): ...
761
- def property_unset(self): ...
762
- def type_recast(self): ...
763
- def values(self): ...
764
-
765
- class AddPresetTrackingSettings(AddPresetBase, bpy_types.Operator):
766
- bl_idname: typing.Any
767
- bl_label: typing.Any
768
- bl_options: typing.Any
769
- bl_rna: typing.Any
770
2383
  id_data: typing.Any
2384
+ """ """
2385
+
771
2386
  preset_defines: typing.Any
2387
+ """ """
2388
+
772
2389
  preset_menu: typing.Any
2390
+ """ """
2391
+
773
2392
  preset_subdir: typing.Any
2393
+ """ """
2394
+
774
2395
  preset_values: typing.Any
2396
+ """ """
2397
+
2398
+ def as_filename(self, name):
2399
+ """
2400
+
2401
+ :param name:
2402
+ """
2403
+ ...
2404
+
2405
+ def as_keywords(self, ignore):
2406
+ """
2407
+
2408
+ :param ignore:
2409
+ """
2410
+ ...
2411
+
2412
+ def as_pointer(self):
2413
+ """ """
2414
+ ...
2415
+
2416
+ def bl_rna_get_subclass(self):
2417
+ """ """
2418
+ ...
2419
+
2420
+ def bl_rna_get_subclass_py(self):
2421
+ """ """
2422
+ ...
2423
+
2424
+ def check(self, _context):
2425
+ """
2426
+
2427
+ :param _context:
2428
+ """
2429
+ ...
2430
+
2431
+ def driver_add(self):
2432
+ """ """
2433
+ ...
2434
+
2435
+ def driver_remove(self):
2436
+ """ """
2437
+ ...
2438
+
2439
+ def execute(self, context):
2440
+ """
2441
+
2442
+ :param context:
2443
+ """
2444
+ ...
2445
+
2446
+ def get(self):
2447
+ """ """
2448
+ ...
2449
+
2450
+ def id_properties_clear(self):
2451
+ """ """
2452
+ ...
2453
+
2454
+ def id_properties_ensure(self):
2455
+ """ """
2456
+ ...
2457
+
2458
+ def id_properties_ui(self):
2459
+ """ """
2460
+ ...
2461
+
2462
+ def invoke(self, context, _event):
2463
+ """
2464
+
2465
+ :param context:
2466
+ :param _event:
2467
+ """
2468
+ ...
2469
+
2470
+ def is_property_hidden(self):
2471
+ """ """
2472
+ ...
2473
+
2474
+ def is_property_overridable_library(self):
2475
+ """ """
2476
+ ...
2477
+
2478
+ def is_property_readonly(self):
2479
+ """ """
2480
+ ...
2481
+
2482
+ def is_property_set(self):
2483
+ """ """
2484
+ ...
2485
+
2486
+ def items(self):
2487
+ """ """
2488
+ ...
2489
+
2490
+ def keyframe_delete(self):
2491
+ """ """
2492
+ ...
2493
+
2494
+ def keyframe_insert(self):
2495
+ """ """
2496
+ ...
2497
+
2498
+ def keys(self):
2499
+ """ """
2500
+ ...
2501
+
2502
+ def path_from_id(self):
2503
+ """ """
2504
+ ...
2505
+
2506
+ def path_resolve(self):
2507
+ """ """
2508
+ ...
2509
+
2510
+ def poll_message_set(self):
2511
+ """ """
2512
+ ...
2513
+
2514
+ def pop(self):
2515
+ """ """
2516
+ ...
2517
+
2518
+ def property_overridable_library_set(self):
2519
+ """ """
2520
+ ...
2521
+
2522
+ def property_unset(self):
2523
+ """ """
2524
+ ...
2525
+
2526
+ def type_recast(self):
2527
+ """ """
2528
+ ...
2529
+
2530
+ def values(self):
2531
+ """ """
2532
+ ...
2533
+
2534
+ class AddPresetTrackingSettings(bpy_types.Operator):
2535
+ """ """
775
2536
 
776
- def as_filename(self, name): ...
777
- def as_keywords(self, ignore): ...
778
- def as_pointer(self): ...
779
- def bl_rna_get_subclass(self): ...
780
- def bl_rna_get_subclass_py(self): ...
781
- def check(self, _context): ...
782
- def driver_add(self): ...
783
- def driver_remove(self): ...
784
- def execute(self, context): ...
785
- def get(self): ...
786
- def id_properties_clear(self): ...
787
- def id_properties_ensure(self): ...
788
- def id_properties_ui(self): ...
789
- def invoke(self, context, _event): ...
790
- def is_property_hidden(self): ...
791
- def is_property_overridable_library(self): ...
792
- def is_property_readonly(self): ...
793
- def is_property_set(self): ...
794
- def items(self): ...
795
- def keyframe_delete(self): ...
796
- def keyframe_insert(self): ...
797
- def keys(self): ...
798
- def path_from_id(self): ...
799
- def path_resolve(self): ...
800
- def poll_message_set(self): ...
801
- def pop(self): ...
802
- def property_overridable_library_set(self): ...
803
- def property_unset(self): ...
804
- def type_recast(self): ...
805
- def values(self): ...
806
-
807
- class AddPresetTrackingTrackColor(AddPresetBase, bpy_types.Operator):
808
2537
  bl_idname: typing.Any
2538
+ """ """
2539
+
809
2540
  bl_label: typing.Any
2541
+ """ """
2542
+
810
2543
  bl_options: typing.Any
2544
+ """ """
2545
+
811
2546
  bl_rna: typing.Any
2547
+ """ """
2548
+
812
2549
  id_data: typing.Any
2550
+ """ """
2551
+
813
2552
  preset_defines: typing.Any
2553
+ """ """
2554
+
814
2555
  preset_menu: typing.Any
2556
+ """ """
2557
+
815
2558
  preset_subdir: typing.Any
2559
+ """ """
2560
+
816
2561
  preset_values: typing.Any
2562
+ """ """
2563
+
2564
+ def as_filename(self, name):
2565
+ """
2566
+
2567
+ :param name:
2568
+ """
2569
+ ...
2570
+
2571
+ def as_keywords(self, ignore):
2572
+ """
2573
+
2574
+ :param ignore:
2575
+ """
2576
+ ...
2577
+
2578
+ def as_pointer(self):
2579
+ """ """
2580
+ ...
2581
+
2582
+ def bl_rna_get_subclass(self):
2583
+ """ """
2584
+ ...
2585
+
2586
+ def bl_rna_get_subclass_py(self):
2587
+ """ """
2588
+ ...
2589
+
2590
+ def check(self, _context):
2591
+ """
2592
+
2593
+ :param _context:
2594
+ """
2595
+ ...
2596
+
2597
+ def driver_add(self):
2598
+ """ """
2599
+ ...
2600
+
2601
+ def driver_remove(self):
2602
+ """ """
2603
+ ...
2604
+
2605
+ def execute(self, context):
2606
+ """
2607
+
2608
+ :param context:
2609
+ """
2610
+ ...
2611
+
2612
+ def get(self):
2613
+ """ """
2614
+ ...
2615
+
2616
+ def id_properties_clear(self):
2617
+ """ """
2618
+ ...
2619
+
2620
+ def id_properties_ensure(self):
2621
+ """ """
2622
+ ...
2623
+
2624
+ def id_properties_ui(self):
2625
+ """ """
2626
+ ...
2627
+
2628
+ def invoke(self, context, _event):
2629
+ """
2630
+
2631
+ :param context:
2632
+ :param _event:
2633
+ """
2634
+ ...
2635
+
2636
+ def is_property_hidden(self):
2637
+ """ """
2638
+ ...
2639
+
2640
+ def is_property_overridable_library(self):
2641
+ """ """
2642
+ ...
2643
+
2644
+ def is_property_readonly(self):
2645
+ """ """
2646
+ ...
2647
+
2648
+ def is_property_set(self):
2649
+ """ """
2650
+ ...
2651
+
2652
+ def items(self):
2653
+ """ """
2654
+ ...
2655
+
2656
+ def keyframe_delete(self):
2657
+ """ """
2658
+ ...
2659
+
2660
+ def keyframe_insert(self):
2661
+ """ """
2662
+ ...
2663
+
2664
+ def keys(self):
2665
+ """ """
2666
+ ...
2667
+
2668
+ def path_from_id(self):
2669
+ """ """
2670
+ ...
2671
+
2672
+ def path_resolve(self):
2673
+ """ """
2674
+ ...
2675
+
2676
+ def poll_message_set(self):
2677
+ """ """
2678
+ ...
2679
+
2680
+ def pop(self):
2681
+ """ """
2682
+ ...
2683
+
2684
+ def property_overridable_library_set(self):
2685
+ """ """
2686
+ ...
2687
+
2688
+ def property_unset(self):
2689
+ """ """
2690
+ ...
2691
+
2692
+ def type_recast(self):
2693
+ """ """
2694
+ ...
2695
+
2696
+ def values(self):
2697
+ """ """
2698
+ ...
2699
+
2700
+ class AddPresetTrackingTrackColor(bpy_types.Operator):
2701
+ """ """
2702
+
2703
+ bl_idname: typing.Any
2704
+ """ """
2705
+
2706
+ bl_label: typing.Any
2707
+ """ """
2708
+
2709
+ bl_options: typing.Any
2710
+ """ """
2711
+
2712
+ bl_rna: typing.Any
2713
+ """ """
2714
+
2715
+ id_data: typing.Any
2716
+ """ """
2717
+
2718
+ preset_defines: typing.Any
2719
+ """ """
2720
+
2721
+ preset_menu: typing.Any
2722
+ """ """
2723
+
2724
+ preset_subdir: typing.Any
2725
+ """ """
2726
+
2727
+ preset_values: typing.Any
2728
+ """ """
2729
+
2730
+ def as_filename(self, name):
2731
+ """
2732
+
2733
+ :param name:
2734
+ """
2735
+ ...
2736
+
2737
+ def as_keywords(self, ignore):
2738
+ """
2739
+
2740
+ :param ignore:
2741
+ """
2742
+ ...
2743
+
2744
+ def as_pointer(self):
2745
+ """ """
2746
+ ...
2747
+
2748
+ def bl_rna_get_subclass(self):
2749
+ """ """
2750
+ ...
2751
+
2752
+ def bl_rna_get_subclass_py(self):
2753
+ """ """
2754
+ ...
2755
+
2756
+ def check(self, _context):
2757
+ """
2758
+
2759
+ :param _context:
2760
+ """
2761
+ ...
2762
+
2763
+ def driver_add(self):
2764
+ """ """
2765
+ ...
2766
+
2767
+ def driver_remove(self):
2768
+ """ """
2769
+ ...
2770
+
2771
+ def execute(self, context):
2772
+ """
2773
+
2774
+ :param context:
2775
+ """
2776
+ ...
2777
+
2778
+ def get(self):
2779
+ """ """
2780
+ ...
2781
+
2782
+ def id_properties_clear(self):
2783
+ """ """
2784
+ ...
2785
+
2786
+ def id_properties_ensure(self):
2787
+ """ """
2788
+ ...
2789
+
2790
+ def id_properties_ui(self):
2791
+ """ """
2792
+ ...
2793
+
2794
+ def invoke(self, context, _event):
2795
+ """
2796
+
2797
+ :param context:
2798
+ :param _event:
2799
+ """
2800
+ ...
2801
+
2802
+ def is_property_hidden(self):
2803
+ """ """
2804
+ ...
2805
+
2806
+ def is_property_overridable_library(self):
2807
+ """ """
2808
+ ...
2809
+
2810
+ def is_property_readonly(self):
2811
+ """ """
2812
+ ...
2813
+
2814
+ def is_property_set(self):
2815
+ """ """
2816
+ ...
2817
+
2818
+ def items(self):
2819
+ """ """
2820
+ ...
2821
+
2822
+ def keyframe_delete(self):
2823
+ """ """
2824
+ ...
2825
+
2826
+ def keyframe_insert(self):
2827
+ """ """
2828
+ ...
2829
+
2830
+ def keys(self):
2831
+ """ """
2832
+ ...
2833
+
2834
+ def path_from_id(self):
2835
+ """ """
2836
+ ...
2837
+
2838
+ def path_resolve(self):
2839
+ """ """
2840
+ ...
2841
+
2842
+ def poll_message_set(self):
2843
+ """ """
2844
+ ...
2845
+
2846
+ def pop(self):
2847
+ """ """
2848
+ ...
2849
+
2850
+ def property_overridable_library_set(self):
2851
+ """ """
2852
+ ...
2853
+
2854
+ def property_unset(self):
2855
+ """ """
2856
+ ...
2857
+
2858
+ def type_recast(self):
2859
+ """ """
2860
+ ...
2861
+
2862
+ def values(self):
2863
+ """ """
2864
+ ...
2865
+
2866
+ class ExecutePreset(bpy_types.Operator):
2867
+ """ """
2868
+
2869
+ bl_idname: typing.Any
2870
+ """ """
2871
+
2872
+ bl_label: typing.Any
2873
+ """ """
2874
+
2875
+ bl_rna: typing.Any
2876
+ """ """
2877
+
2878
+ id_data: typing.Any
2879
+ """ """
2880
+
2881
+ def as_keywords(self, ignore):
2882
+ """
2883
+
2884
+ :param ignore:
2885
+ """
2886
+ ...
2887
+
2888
+ def as_pointer(self):
2889
+ """ """
2890
+ ...
2891
+
2892
+ def bl_rna_get_subclass(self):
2893
+ """ """
2894
+ ...
2895
+
2896
+ def bl_rna_get_subclass_py(self):
2897
+ """ """
2898
+ ...
2899
+
2900
+ def driver_add(self):
2901
+ """ """
2902
+ ...
2903
+
2904
+ def driver_remove(self):
2905
+ """ """
2906
+ ...
2907
+
2908
+ def execute(self, context):
2909
+ """
2910
+
2911
+ :param context:
2912
+ """
2913
+ ...
2914
+
2915
+ def get(self):
2916
+ """ """
2917
+ ...
2918
+
2919
+ def id_properties_clear(self):
2920
+ """ """
2921
+ ...
2922
+
2923
+ def id_properties_ensure(self):
2924
+ """ """
2925
+ ...
2926
+
2927
+ def id_properties_ui(self):
2928
+ """ """
2929
+ ...
2930
+
2931
+ def is_property_hidden(self):
2932
+ """ """
2933
+ ...
2934
+
2935
+ def is_property_overridable_library(self):
2936
+ """ """
2937
+ ...
2938
+
2939
+ def is_property_readonly(self):
2940
+ """ """
2941
+ ...
2942
+
2943
+ def is_property_set(self):
2944
+ """ """
2945
+ ...
2946
+
2947
+ def items(self):
2948
+ """ """
2949
+ ...
2950
+
2951
+ def keyframe_delete(self):
2952
+ """ """
2953
+ ...
2954
+
2955
+ def keyframe_insert(self):
2956
+ """ """
2957
+ ...
2958
+
2959
+ def keys(self):
2960
+ """ """
2961
+ ...
2962
+
2963
+ def path_from_id(self):
2964
+ """ """
2965
+ ...
2966
+
2967
+ def path_resolve(self):
2968
+ """ """
2969
+ ...
2970
+
2971
+ def poll_message_set(self):
2972
+ """ """
2973
+ ...
2974
+
2975
+ def pop(self):
2976
+ """ """
2977
+ ...
2978
+
2979
+ def property_overridable_library_set(self):
2980
+ """ """
2981
+ ...
2982
+
2983
+ def property_unset(self):
2984
+ """ """
2985
+ ...
2986
+
2987
+ def type_recast(self):
2988
+ """ """
2989
+ ...
2990
+
2991
+ def values(self):
2992
+ """ """
2993
+ ...
2994
+
2995
+ class RemovePresetInterfaceTheme(bpy_types.Operator):
2996
+ """ """
2997
+
2998
+ bl_idname: typing.Any
2999
+ """ """
3000
+
3001
+ bl_label: typing.Any
3002
+ """ """
3003
+
3004
+ bl_options: typing.Any
3005
+ """ """
3006
+
3007
+ bl_rna: typing.Any
3008
+ """ """
3009
+
3010
+ id_data: typing.Any
3011
+ """ """
3012
+
3013
+ preset_menu: typing.Any
3014
+ """ """
3015
+
3016
+ preset_subdir: typing.Any
3017
+ """ """
3018
+
3019
+ def as_filename(self, name):
3020
+ """
3021
+
3022
+ :param name:
3023
+ """
3024
+ ...
3025
+
3026
+ def as_keywords(self, ignore):
3027
+ """
3028
+
3029
+ :param ignore:
3030
+ """
3031
+ ...
3032
+
3033
+ def as_pointer(self):
3034
+ """ """
3035
+ ...
3036
+
3037
+ def bl_rna_get_subclass(self):
3038
+ """ """
3039
+ ...
3040
+
3041
+ def bl_rna_get_subclass_py(self):
3042
+ """ """
3043
+ ...
3044
+
3045
+ def check(self, _context):
3046
+ """
3047
+
3048
+ :param _context:
3049
+ """
3050
+ ...
3051
+
3052
+ def driver_add(self):
3053
+ """ """
3054
+ ...
3055
+
3056
+ def driver_remove(self):
3057
+ """ """
3058
+ ...
3059
+
3060
+ def execute(self, context):
3061
+ """
3062
+
3063
+ :param context:
3064
+ """
3065
+ ...
3066
+
3067
+ def get(self):
3068
+ """ """
3069
+ ...
3070
+
3071
+ def id_properties_clear(self):
3072
+ """ """
3073
+ ...
3074
+
3075
+ def id_properties_ensure(self):
3076
+ """ """
3077
+ ...
3078
+
3079
+ def id_properties_ui(self):
3080
+ """ """
3081
+ ...
3082
+
3083
+ def invoke(self, context, event):
3084
+ """
3085
+
3086
+ :param context:
3087
+ :param event:
3088
+ """
3089
+ ...
3090
+
3091
+ def is_property_hidden(self):
3092
+ """ """
3093
+ ...
3094
+
3095
+ def is_property_overridable_library(self):
3096
+ """ """
3097
+ ...
3098
+
3099
+ def is_property_readonly(self):
3100
+ """ """
3101
+ ...
3102
+
3103
+ def is_property_set(self):
3104
+ """ """
3105
+ ...
3106
+
3107
+ def items(self):
3108
+ """ """
3109
+ ...
3110
+
3111
+ def keyframe_delete(self):
3112
+ """ """
3113
+ ...
3114
+
3115
+ def keyframe_insert(self):
3116
+ """ """
3117
+ ...
3118
+
3119
+ def keys(self):
3120
+ """ """
3121
+ ...
3122
+
3123
+ def path_from_id(self):
3124
+ """ """
3125
+ ...
3126
+
3127
+ def path_resolve(self):
3128
+ """ """
3129
+ ...
3130
+
3131
+ def poll(self, context):
3132
+ """
3133
+
3134
+ :param context:
3135
+ """
3136
+ ...
3137
+
3138
+ def poll_message_set(self):
3139
+ """ """
3140
+ ...
3141
+
3142
+ def pop(self):
3143
+ """ """
3144
+ ...
3145
+
3146
+ def property_overridable_library_set(self):
3147
+ """ """
3148
+ ...
3149
+
3150
+ def property_unset(self):
3151
+ """ """
3152
+ ...
3153
+
3154
+ def type_recast(self):
3155
+ """ """
3156
+ ...
3157
+
3158
+ def values(self):
3159
+ """ """
3160
+ ...
3161
+
3162
+ class RemovePresetKeyconfig(bpy_types.Operator):
3163
+ """ """
3164
+
3165
+ bl_idname: typing.Any
3166
+ """ """
3167
+
3168
+ bl_label: typing.Any
3169
+ """ """
3170
+
3171
+ bl_options: typing.Any
3172
+ """ """
3173
+
3174
+ bl_rna: typing.Any
3175
+ """ """
3176
+
3177
+ id_data: typing.Any
3178
+ """ """
3179
+
3180
+ preset_menu: typing.Any
3181
+ """ """
3182
+
3183
+ preset_subdir: typing.Any
3184
+ """ """
3185
+
3186
+ def as_filename(self, name):
3187
+ """
3188
+
3189
+ :param name:
3190
+ """
3191
+ ...
3192
+
3193
+ def as_keywords(self, ignore):
3194
+ """
3195
+
3196
+ :param ignore:
3197
+ """
3198
+ ...
3199
+
3200
+ def as_pointer(self):
3201
+ """ """
3202
+ ...
3203
+
3204
+ def bl_rna_get_subclass(self):
3205
+ """ """
3206
+ ...
3207
+
3208
+ def bl_rna_get_subclass_py(self):
3209
+ """ """
3210
+ ...
3211
+
3212
+ def check(self, _context):
3213
+ """
3214
+
3215
+ :param _context:
3216
+ """
3217
+ ...
3218
+
3219
+ def driver_add(self):
3220
+ """ """
3221
+ ...
3222
+
3223
+ def driver_remove(self):
3224
+ """ """
3225
+ ...
3226
+
3227
+ def execute(self, context):
3228
+ """
3229
+
3230
+ :param context:
3231
+ """
3232
+ ...
3233
+
3234
+ def get(self):
3235
+ """ """
3236
+ ...
3237
+
3238
+ def id_properties_clear(self):
3239
+ """ """
3240
+ ...
3241
+
3242
+ def id_properties_ensure(self):
3243
+ """ """
3244
+ ...
3245
+
3246
+ def id_properties_ui(self):
3247
+ """ """
3248
+ ...
3249
+
3250
+ def invoke(self, context, event):
3251
+ """
3252
+
3253
+ :param context:
3254
+ :param event:
3255
+ """
3256
+ ...
3257
+
3258
+ def is_property_hidden(self):
3259
+ """ """
3260
+ ...
3261
+
3262
+ def is_property_overridable_library(self):
3263
+ """ """
3264
+ ...
3265
+
3266
+ def is_property_readonly(self):
3267
+ """ """
3268
+ ...
3269
+
3270
+ def is_property_set(self):
3271
+ """ """
3272
+ ...
3273
+
3274
+ def items(self):
3275
+ """ """
3276
+ ...
3277
+
3278
+ def keyframe_delete(self):
3279
+ """ """
3280
+ ...
3281
+
3282
+ def keyframe_insert(self):
3283
+ """ """
3284
+ ...
3285
+
3286
+ def keys(self):
3287
+ """ """
3288
+ ...
3289
+
3290
+ def path_from_id(self):
3291
+ """ """
3292
+ ...
3293
+
3294
+ def path_resolve(self):
3295
+ """ """
3296
+ ...
3297
+
3298
+ def poll(self, context):
3299
+ """
3300
+
3301
+ :param context:
3302
+ """
3303
+ ...
3304
+
3305
+ def poll_message_set(self):
3306
+ """ """
3307
+ ...
3308
+
3309
+ def pop(self):
3310
+ """ """
3311
+ ...
3312
+
3313
+ def post_cb(self, context):
3314
+ """
3315
+
3316
+ :param context:
3317
+ """
3318
+ ...
3319
+
3320
+ def pre_cb(self, context):
3321
+ """
3322
+
3323
+ :param context:
3324
+ """
3325
+ ...
3326
+
3327
+ def property_overridable_library_set(self):
3328
+ """ """
3329
+ ...
3330
+
3331
+ def property_unset(self):
3332
+ """ """
3333
+ ...
3334
+
3335
+ def type_recast(self):
3336
+ """ """
3337
+ ...
3338
+
3339
+ def values(self):
3340
+ """ """
3341
+ ...
3342
+
3343
+ class WM_MT_operator_presets(bpy_types._GenericUI):
3344
+ """ """
3345
+
3346
+ bl_label: typing.Any
3347
+ """ """
3348
+
3349
+ bl_rna: typing.Any
3350
+ """ """
3351
+
3352
+ id_data: typing.Any
3353
+ """ """
3354
+
3355
+ preset_operator: typing.Any
3356
+ """ """
3357
+
3358
+ preset_subdir: typing.Any
3359
+ """ """
3360
+
3361
+ def append(self, draw_func):
3362
+ """
3363
+
3364
+ :param draw_func:
3365
+ """
3366
+ ...
3367
+
3368
+ def as_pointer(self):
3369
+ """ """
3370
+ ...
3371
+
3372
+ def bl_rna_get_subclass(self):
3373
+ """ """
3374
+ ...
3375
+
3376
+ def bl_rna_get_subclass_py(self):
3377
+ """ """
3378
+ ...
3379
+
3380
+ def draw(self, context):
3381
+ """
3382
+
3383
+ :param context:
3384
+ """
3385
+ ...
3386
+
3387
+ def draw_collapsible(self, context, layout):
3388
+ """
3389
+
3390
+ :param context:
3391
+ :param layout:
3392
+ """
3393
+ ...
3394
+
3395
+ def draw_preset(self, _context):
3396
+ """
3397
+
3398
+ :param _context:
3399
+ """
3400
+ ...
3401
+
3402
+ def driver_add(self):
3403
+ """ """
3404
+ ...
3405
+
3406
+ def driver_remove(self):
3407
+ """ """
3408
+ ...
3409
+
3410
+ def get(self):
3411
+ """ """
3412
+ ...
3413
+
3414
+ def id_properties_clear(self):
3415
+ """ """
3416
+ ...
3417
+
3418
+ def id_properties_ensure(self):
3419
+ """ """
3420
+ ...
3421
+
3422
+ def id_properties_ui(self):
3423
+ """ """
3424
+ ...
3425
+
3426
+ def is_extended(self):
3427
+ """ """
3428
+ ...
3429
+
3430
+ def is_property_hidden(self):
3431
+ """ """
3432
+ ...
3433
+
3434
+ def is_property_overridable_library(self):
3435
+ """ """
3436
+ ...
3437
+
3438
+ def is_property_readonly(self):
3439
+ """ """
3440
+ ...
3441
+
3442
+ def is_property_set(self):
3443
+ """ """
3444
+ ...
3445
+
3446
+ def items(self):
3447
+ """ """
3448
+ ...
3449
+
3450
+ def keyframe_delete(self):
3451
+ """ """
3452
+ ...
3453
+
3454
+ def keyframe_insert(self):
3455
+ """ """
3456
+ ...
3457
+
3458
+ def keys(self):
3459
+ """ """
3460
+ ...
3461
+
3462
+ def path_from_id(self):
3463
+ """ """
3464
+ ...
3465
+
3466
+ def path_menu(
3467
+ self,
3468
+ searchpaths,
3469
+ operator,
3470
+ props_default,
3471
+ prop_filepath,
3472
+ filter_ext,
3473
+ filter_path,
3474
+ display_name,
3475
+ add_operator,
3476
+ ):
3477
+ """
3478
+
3479
+ :param searchpaths:
3480
+ :param operator:
3481
+ :param props_default:
3482
+ :param prop_filepath:
3483
+ :param filter_ext:
3484
+ :param filter_path:
3485
+ :param display_name:
3486
+ :param add_operator:
3487
+ """
3488
+ ...
3489
+
3490
+ def path_resolve(self):
3491
+ """ """
3492
+ ...
3493
+
3494
+ def pop(self):
3495
+ """ """
3496
+ ...
3497
+
3498
+ def prepend(self, draw_func):
3499
+ """
3500
+
3501
+ :param draw_func:
3502
+ """
3503
+ ...
3504
+
3505
+ def property_overridable_library_set(self):
3506
+ """ """
3507
+ ...
3508
+
3509
+ def property_unset(self):
3510
+ """ """
3511
+ ...
3512
+
3513
+ def remove(self, draw_func):
3514
+ """
3515
+
3516
+ :param draw_func:
3517
+ """
3518
+ ...
3519
+
3520
+ def type_recast(self):
3521
+ """ """
3522
+ ...
3523
+
3524
+ def values(self):
3525
+ """ """
3526
+ ...
3527
+
3528
+ class WM_OT_operator_presets_cleanup(bpy_types.Operator):
3529
+ """ """
3530
+
3531
+ bl_idname: typing.Any
3532
+ """ """
3533
+
3534
+ bl_label: typing.Any
3535
+ """ """
3536
+
3537
+ bl_rna: typing.Any
3538
+ """ """
3539
+
3540
+ id_data: typing.Any
3541
+ """ """
3542
+
3543
+ def as_keywords(self, ignore):
3544
+ """
3545
+
3546
+ :param ignore:
3547
+ """
3548
+ ...
3549
+
3550
+ def as_pointer(self):
3551
+ """ """
3552
+ ...
3553
+
3554
+ def bl_rna_get_subclass(self):
3555
+ """ """
3556
+ ...
3557
+
3558
+ def bl_rna_get_subclass_py(self):
3559
+ """ """
3560
+ ...
3561
+
3562
+ def driver_add(self):
3563
+ """ """
3564
+ ...
3565
+
3566
+ def driver_remove(self):
3567
+ """ """
3568
+ ...
3569
+
3570
+ def execute(self, context):
3571
+ """
3572
+
3573
+ :param context:
3574
+ """
3575
+ ...
3576
+
3577
+ def get(self):
3578
+ """ """
3579
+ ...
3580
+
3581
+ def id_properties_clear(self):
3582
+ """ """
3583
+ ...
3584
+
3585
+ def id_properties_ensure(self):
3586
+ """ """
3587
+ ...
3588
+
3589
+ def id_properties_ui(self):
3590
+ """ """
3591
+ ...
3592
+
3593
+ def is_property_hidden(self):
3594
+ """ """
3595
+ ...
3596
+
3597
+ def is_property_overridable_library(self):
3598
+ """ """
3599
+ ...
3600
+
3601
+ def is_property_readonly(self):
3602
+ """ """
3603
+ ...
3604
+
3605
+ def is_property_set(self):
3606
+ """ """
3607
+ ...
3608
+
3609
+ def items(self):
3610
+ """ """
3611
+ ...
3612
+
3613
+ def keyframe_delete(self):
3614
+ """ """
3615
+ ...
3616
+
3617
+ def keyframe_insert(self):
3618
+ """ """
3619
+ ...
3620
+
3621
+ def keys(self):
3622
+ """ """
3623
+ ...
3624
+
3625
+ def path_from_id(self):
3626
+ """ """
3627
+ ...
3628
+
3629
+ def path_resolve(self):
3630
+ """ """
3631
+ ...
3632
+
3633
+ def poll_message_set(self):
3634
+ """ """
3635
+ ...
3636
+
3637
+ def pop(self):
3638
+ """ """
3639
+ ...
3640
+
3641
+ def property_overridable_library_set(self):
3642
+ """ """
3643
+ ...
3644
+
3645
+ def property_unset(self):
3646
+ """ """
3647
+ ...
3648
+
3649
+ def type_recast(self):
3650
+ """ """
3651
+ ...
817
3652
 
818
- def as_filename(self, name): ...
819
- def as_keywords(self, ignore): ...
820
- def as_pointer(self): ...
821
- def bl_rna_get_subclass(self): ...
822
- def bl_rna_get_subclass_py(self): ...
823
- def check(self, _context): ...
824
- def driver_add(self): ...
825
- def driver_remove(self): ...
826
- def execute(self, context): ...
827
- def get(self): ...
828
- def id_properties_clear(self): ...
829
- def id_properties_ensure(self): ...
830
- def id_properties_ui(self): ...
831
- def invoke(self, context, _event): ...
832
- def is_property_hidden(self): ...
833
- def is_property_overridable_library(self): ...
834
- def is_property_readonly(self): ...
835
- def is_property_set(self): ...
836
- def items(self): ...
837
- def keyframe_delete(self): ...
838
- def keyframe_insert(self): ...
839
- def keys(self): ...
840
- def path_from_id(self): ...
841
- def path_resolve(self): ...
842
- def poll_message_set(self): ...
843
- def pop(self): ...
844
- def property_overridable_library_set(self): ...
845
- def property_unset(self): ...
846
- def type_recast(self): ...
847
- def values(self): ...
3653
+ def values(self):
3654
+ """ """
3655
+ ...