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

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

Potentially problematic release.


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

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +646 -823
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +331 -429
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86446 -87424
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240324.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240321.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/top_level.txt +0 -0
@@ -4,1970 +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
12
  def as_filename(self, name):
10
13
  """
11
14
 
12
15
  :param name:
13
- :type name:
14
16
  """
15
17
  ...
16
18
 
17
19
  def check(self, _context):
18
20
  """
19
21
 
20
- :param self:
21
- :type self:
22
22
  :param _context:
23
- :type _context:
24
23
  """
25
24
  ...
26
25
 
27
26
  def execute(self, context):
28
27
  """
29
28
 
30
- :param self:
31
- :type self:
32
29
  :param context:
33
- :type context:
34
30
  """
35
31
  ...
36
32
 
37
33
  def invoke(self, context, _event):
38
34
  """
39
35
 
40
- :param self:
41
- :type self:
42
36
  :param context:
43
- :type context:
44
37
  :param _event:
45
- :type _event:
46
38
  """
47
39
  ...
48
40
 
49
- class ExecutePreset(bpy_types.Operator):
41
+ class AddPresetCamera(bpy_types.Operator):
42
+ """ """
43
+
50
44
  bl_idname: typing.Any
45
+ """ """
46
+
51
47
  bl_label: typing.Any
48
+ """ """
49
+
50
+ bl_options: typing.Any
51
+ """ """
52
+
52
53
  bl_rna: typing.Any
54
+ """ """
55
+
53
56
  id_data: typing.Any
57
+ """ """
58
+
59
+ preset_defines: typing.Any
60
+ """ """
61
+
62
+ preset_menu: typing.Any
63
+ """ """
64
+
65
+ preset_subdir: typing.Any
66
+ """ """
67
+
68
+ preset_values: typing.Any
69
+ """ """
70
+
71
+ def as_filename(self, name):
72
+ """
73
+
74
+ :param name:
75
+ """
76
+ ...
54
77
 
55
78
  def as_keywords(self, ignore):
56
79
  """
57
80
 
58
- :param self:
59
- :type self:
60
81
  :param ignore:
61
- :type ignore:
62
82
  """
63
83
  ...
64
84
 
65
- def as_pointer(self): ...
66
- def bl_rna_get_subclass(self): ...
67
- def bl_rna_get_subclass_py(self): ...
68
- def driver_add(self): ...
69
- def driver_remove(self): ...
70
- def execute(self, context):
71
- """
85
+ def as_pointer(self):
86
+ """ """
87
+ ...
72
88
 
73
- :param self:
74
- :type self:
75
- :param context:
76
- :type context:
77
- """
78
- ...
79
-
80
- def get(self): ...
81
- def id_properties_clear(self): ...
82
- def id_properties_ensure(self): ...
83
- def id_properties_ui(self): ...
84
- def is_property_hidden(self): ...
85
- def is_property_overridable_library(self): ...
86
- def is_property_readonly(self): ...
87
- def is_property_set(self): ...
88
- def items(self): ...
89
- def keyframe_delete(self): ...
90
- def keyframe_insert(self): ...
91
- def keys(self): ...
92
- def path_from_id(self): ...
93
- def path_resolve(self): ...
94
- def poll_message_set(self): ...
95
- def pop(self): ...
96
- def property_overridable_library_set(self): ...
97
- def property_unset(self): ...
98
- def type_recast(self): ...
99
- def values(self): ...
100
-
101
- class WM_MT_operator_presets(bpy_types.Menu, bpy_types._GenericUI):
102
- bl_label: typing.Any
103
- bl_rna: typing.Any
104
- id_data: typing.Any
105
- preset_operator: typing.Any
106
- preset_subdir: typing.Any
89
+ def bl_rna_get_subclass(self):
90
+ """ """
91
+ ...
107
92
 
108
- def append(self, draw_func):
93
+ def bl_rna_get_subclass_py(self):
94
+ """ """
95
+ ...
96
+
97
+ def check(self, _context):
109
98
  """
110
99
 
111
- :param draw_func:
112
- :type draw_func:
100
+ :param _context:
113
101
  """
114
102
  ...
115
103
 
116
- def as_pointer(self): ...
117
- def bl_rna_get_subclass(self): ...
118
- def bl_rna_get_subclass_py(self): ...
119
- def draw(self, context):
120
- """
104
+ def driver_add(self):
105
+ """ """
106
+ ...
121
107
 
122
- :param self:
123
- :type self:
124
- :param context:
125
- :type context:
126
- """
108
+ def driver_remove(self):
109
+ """ """
127
110
  ...
128
111
 
129
- def draw_collapsible(self, context, layout):
112
+ def execute(self, context):
130
113
  """
131
114
 
132
115
  :param context:
133
- :type context:
134
- :param layout:
135
- :type layout:
136
116
  """
137
117
  ...
138
118
 
139
- def draw_preset(self, _context):
140
- """
119
+ def get(self):
120
+ """ """
121
+ ...
141
122
 
142
- :param self:
143
- :type self:
144
- :param _context:
145
- :type _context:
146
- """
147
- ...
148
-
149
- def driver_add(self): ...
150
- def driver_remove(self): ...
151
- def get(self): ...
152
- def id_properties_clear(self): ...
153
- def id_properties_ensure(self): ...
154
- def id_properties_ui(self): ...
155
- def is_extended(self): ...
156
- def is_property_hidden(self): ...
157
- def is_property_overridable_library(self): ...
158
- def is_property_readonly(self): ...
159
- def is_property_set(self): ...
160
- def items(self): ...
161
- def keyframe_delete(self): ...
162
- def keyframe_insert(self): ...
163
- def keys(self): ...
164
- def path_from_id(self): ...
165
- def path_menu(
166
- self,
167
- searchpaths,
168
- operator,
169
- props_default,
170
- prop_filepath,
171
- filter_ext,
172
- filter_path,
173
- display_name,
174
- add_operator,
175
- ):
176
- """
123
+ def id_properties_clear(self):
124
+ """ """
125
+ ...
177
126
 
178
- :param self:
179
- :type self:
180
- :param searchpaths:
181
- :type searchpaths:
182
- :param operator:
183
- :type operator:
184
- :param props_default:
185
- :type props_default:
186
- :param prop_filepath:
187
- :type prop_filepath:
188
- :param filter_ext:
189
- :type filter_ext:
190
- :param filter_path:
191
- :type filter_path:
192
- :param display_name:
193
- :type display_name:
194
- :param add_operator:
195
- :type add_operator:
196
- """
127
+ def id_properties_ensure(self):
128
+ """ """
197
129
  ...
198
130
 
199
- def path_resolve(self): ...
200
- def pop(self): ...
201
- def prepend(self, draw_func):
131
+ def id_properties_ui(self):
132
+ """ """
133
+ ...
134
+
135
+ def invoke(self, context, _event):
202
136
  """
203
137
 
204
- :param draw_func:
205
- :type draw_func:
138
+ :param context:
139
+ :param _event:
206
140
  """
207
141
  ...
208
142
 
209
- def property_overridable_library_set(self): ...
210
- def property_unset(self): ...
211
- def remove(self, draw_func):
212
- """
143
+ def is_property_hidden(self):
144
+ """ """
145
+ ...
213
146
 
214
- :param draw_func:
215
- :type draw_func:
216
- """
147
+ def is_property_overridable_library(self):
148
+ """ """
217
149
  ...
218
150
 
219
- def type_recast(self): ...
220
- def values(self): ...
151
+ def is_property_readonly(self):
152
+ """ """
153
+ ...
221
154
 
222
- class WM_OT_operator_presets_cleanup(bpy_types.Operator):
223
- bl_idname: typing.Any
224
- bl_label: typing.Any
225
- bl_rna: typing.Any
226
- id_data: typing.Any
155
+ def is_property_set(self):
156
+ """ """
157
+ ...
227
158
 
228
- def as_keywords(self, ignore):
229
- """
159
+ def items(self):
160
+ """ """
161
+ ...
230
162
 
231
- :param self:
232
- :type self:
233
- :param ignore:
234
- :type ignore:
235
- """
163
+ def keyframe_delete(self):
164
+ """ """
236
165
  ...
237
166
 
238
- def as_pointer(self): ...
239
- def bl_rna_get_subclass(self): ...
240
- def bl_rna_get_subclass_py(self): ...
241
- def driver_add(self): ...
242
- def driver_remove(self): ...
243
- def execute(self, context):
244
- """
167
+ def keyframe_insert(self):
168
+ """ """
169
+ ...
245
170
 
246
- :param self:
247
- :type self:
248
- :param context:
249
- :type context:
250
- """
251
- ...
252
-
253
- def get(self): ...
254
- def id_properties_clear(self): ...
255
- def id_properties_ensure(self): ...
256
- def id_properties_ui(self): ...
257
- def is_property_hidden(self): ...
258
- def is_property_overridable_library(self): ...
259
- def is_property_readonly(self): ...
260
- def is_property_set(self): ...
261
- def items(self): ...
262
- def keyframe_delete(self): ...
263
- def keyframe_insert(self): ...
264
- def keys(self): ...
265
- def path_from_id(self): ...
266
- def path_resolve(self): ...
267
- def poll_message_set(self): ...
268
- def pop(self): ...
269
- def property_overridable_library_set(self): ...
270
- def property_unset(self): ...
271
- def type_recast(self): ...
272
- def values(self): ...
273
-
274
- class AddPresetCamera(AddPresetBase, bpy_types.Operator):
275
- bl_idname: typing.Any
276
- bl_label: typing.Any
277
- bl_options: typing.Any
278
- bl_rna: typing.Any
279
- id_data: typing.Any
280
- preset_defines: typing.Any
281
- preset_menu: typing.Any
282
- preset_subdir: typing.Any
283
- preset_values: typing.Any
171
+ def keys(self):
172
+ """ """
173
+ ...
284
174
 
285
- def as_filename(self, name):
286
- """
175
+ def path_from_id(self):
176
+ """ """
177
+ ...
287
178
 
288
- :param name:
289
- :type name:
290
- """
179
+ def path_resolve(self):
180
+ """ """
291
181
  ...
292
182
 
293
- def as_keywords(self, ignore):
294
- """
183
+ def poll_message_set(self):
184
+ """ """
185
+ ...
295
186
 
296
- :param self:
297
- :type self:
298
- :param ignore:
299
- :type ignore:
300
- """
187
+ def pop(self):
188
+ """ """
301
189
  ...
302
190
 
303
- def as_pointer(self): ...
304
- def bl_rna_get_subclass(self): ...
305
- def bl_rna_get_subclass_py(self): ...
306
- def check(self, _context):
307
- """
191
+ def property_overridable_library_set(self):
192
+ """ """
193
+ ...
308
194
 
309
- :param self:
310
- :type self:
311
- :param _context:
312
- :type _context:
313
- """
195
+ def property_unset(self):
196
+ """ """
314
197
  ...
315
198
 
316
- def driver_add(self): ...
317
- def driver_remove(self): ...
318
- def execute(self, context):
319
- """
199
+ def type_recast(self):
200
+ """ """
201
+ ...
320
202
 
321
- :param self:
322
- :type self:
323
- :param context:
324
- :type context:
325
- """
203
+ def values(self):
204
+ """ """
326
205
  ...
327
206
 
328
- def get(self): ...
329
- def id_properties_clear(self): ...
330
- def id_properties_ensure(self): ...
331
- def id_properties_ui(self): ...
332
- def invoke(self, context, _event):
333
- """
207
+ class AddPresetCameraSafeAreas(bpy_types.Operator):
208
+ """ """
334
209
 
335
- :param self:
336
- :type self:
337
- :param context:
338
- :type context:
339
- :param _event:
340
- :type _event:
341
- """
342
- ...
343
-
344
- def is_property_hidden(self): ...
345
- def is_property_overridable_library(self): ...
346
- def is_property_readonly(self): ...
347
- def is_property_set(self): ...
348
- def items(self): ...
349
- def keyframe_delete(self): ...
350
- def keyframe_insert(self): ...
351
- def keys(self): ...
352
- def path_from_id(self): ...
353
- def path_resolve(self): ...
354
- def poll_message_set(self): ...
355
- def pop(self): ...
356
- def property_overridable_library_set(self): ...
357
- def property_unset(self): ...
358
- def type_recast(self): ...
359
- def values(self): ...
360
-
361
- class AddPresetCameraSafeAreas(AddPresetBase, bpy_types.Operator):
362
210
  bl_idname: typing.Any
211
+ """ """
212
+
363
213
  bl_label: typing.Any
214
+ """ """
215
+
364
216
  bl_options: typing.Any
217
+ """ """
218
+
365
219
  bl_rna: typing.Any
220
+ """ """
221
+
366
222
  id_data: typing.Any
223
+ """ """
224
+
367
225
  preset_defines: typing.Any
226
+ """ """
227
+
368
228
  preset_menu: typing.Any
229
+ """ """
230
+
369
231
  preset_subdir: typing.Any
232
+ """ """
233
+
370
234
  preset_values: typing.Any
235
+ """ """
371
236
 
372
237
  def as_filename(self, name):
373
238
  """
374
239
 
375
240
  :param name:
376
- :type name:
377
241
  """
378
242
  ...
379
243
 
380
244
  def as_keywords(self, ignore):
381
245
  """
382
246
 
383
- :param self:
384
- :type self:
385
247
  :param ignore:
386
- :type ignore:
387
248
  """
388
249
  ...
389
250
 
390
- def as_pointer(self): ...
391
- def bl_rna_get_subclass(self): ...
392
- def bl_rna_get_subclass_py(self): ...
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
+
393
263
  def check(self, _context):
394
264
  """
395
265
 
396
- :param self:
397
- :type self:
398
266
  :param _context:
399
- :type _context:
400
267
  """
401
268
  ...
402
269
 
403
- def driver_add(self): ...
404
- def driver_remove(self): ...
270
+ def driver_add(self):
271
+ """ """
272
+ ...
273
+
274
+ def driver_remove(self):
275
+ """ """
276
+ ...
277
+
405
278
  def execute(self, context):
406
279
  """
407
280
 
408
- :param self:
409
- :type self:
410
281
  :param context:
411
- :type context:
412
282
  """
413
283
  ...
414
284
 
415
- def get(self): ...
416
- def id_properties_clear(self): ...
417
- def id_properties_ensure(self): ...
418
- def id_properties_ui(self): ...
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
+
419
301
  def invoke(self, context, _event):
420
302
  """
421
303
 
422
- :param self:
423
- :type self:
424
304
  :param context:
425
- :type context:
426
305
  :param _event:
427
- :type _event:
428
- """
429
- ...
430
-
431
- def is_property_hidden(self): ...
432
- def is_property_overridable_library(self): ...
433
- def is_property_readonly(self): ...
434
- def is_property_set(self): ...
435
- def items(self): ...
436
- def keyframe_delete(self): ...
437
- def keyframe_insert(self): ...
438
- def keys(self): ...
439
- def path_from_id(self): ...
440
- def path_resolve(self): ...
441
- def poll_message_set(self): ...
442
- def pop(self): ...
443
- def property_overridable_library_set(self): ...
444
- def property_unset(self): ...
445
- def type_recast(self): ...
446
- def values(self): ...
447
-
448
- class AddPresetCloth(AddPresetBase, bpy_types.Operator):
449
- bl_idname: typing.Any
450
- bl_label: typing.Any
451
- bl_options: typing.Any
452
- bl_rna: typing.Any
453
- id_data: typing.Any
454
- preset_defines: typing.Any
455
- preset_menu: typing.Any
456
- preset_subdir: typing.Any
457
- preset_values: typing.Any
458
-
459
- def as_filename(self, name):
460
- """
461
-
462
- :param name:
463
- :type name:
464
306
  """
465
307
  ...
466
308
 
467
- def as_keywords(self, ignore):
468
- """
309
+ def is_property_hidden(self):
310
+ """ """
311
+ ...
469
312
 
470
- :param self:
471
- :type self:
472
- :param ignore:
473
- :type ignore:
474
- """
313
+ def is_property_overridable_library(self):
314
+ """ """
475
315
  ...
476
316
 
477
- def as_pointer(self): ...
478
- def bl_rna_get_subclass(self): ...
479
- def bl_rna_get_subclass_py(self): ...
480
- def check(self, _context):
481
- """
317
+ def is_property_readonly(self):
318
+ """ """
319
+ ...
482
320
 
483
- :param self:
484
- :type self:
485
- :param _context:
486
- :type _context:
487
- """
321
+ def is_property_set(self):
322
+ """ """
488
323
  ...
489
324
 
490
- def driver_add(self): ...
491
- def driver_remove(self): ...
492
- def execute(self, context):
493
- """
325
+ def items(self):
326
+ """ """
327
+ ...
494
328
 
495
- :param self:
496
- :type self:
497
- :param context:
498
- :type context:
499
- """
329
+ def keyframe_delete(self):
330
+ """ """
500
331
  ...
501
332
 
502
- def get(self): ...
503
- def id_properties_clear(self): ...
504
- def id_properties_ensure(self): ...
505
- def id_properties_ui(self): ...
506
- def invoke(self, context, _event):
507
- """
333
+ def keyframe_insert(self):
334
+ """ """
335
+ ...
508
336
 
509
- :param self:
510
- :type self:
511
- :param context:
512
- :type context:
513
- :param _event:
514
- :type _event:
515
- """
516
- ...
517
-
518
- def is_property_hidden(self): ...
519
- def is_property_overridable_library(self): ...
520
- def is_property_readonly(self): ...
521
- def is_property_set(self): ...
522
- def items(self): ...
523
- def keyframe_delete(self): ...
524
- def keyframe_insert(self): ...
525
- def keys(self): ...
526
- def path_from_id(self): ...
527
- def path_resolve(self): ...
528
- def poll_message_set(self): ...
529
- def pop(self): ...
530
- def property_overridable_library_set(self): ...
531
- def property_unset(self): ...
532
- def type_recast(self): ...
533
- def values(self): ...
534
-
535
- class AddPresetEEVEERaytracing(AddPresetBase, bpy_types.Operator):
536
- bl_idname: typing.Any
537
- bl_label: typing.Any
538
- bl_options: typing.Any
539
- bl_rna: typing.Any
540
- id_data: typing.Any
541
- preset_defines: typing.Any
542
- preset_menu: typing.Any
543
- preset_subdir: typing.Any
544
- preset_values: typing.Any
337
+ def keys(self):
338
+ """ """
339
+ ...
545
340
 
546
- def as_filename(self, name):
547
- """
341
+ def path_from_id(self):
342
+ """ """
343
+ ...
548
344
 
549
- :param name:
550
- :type name:
551
- """
345
+ def path_resolve(self):
346
+ """ """
552
347
  ...
553
348
 
554
- def as_keywords(self, ignore):
555
- """
349
+ def poll_message_set(self):
350
+ """ """
351
+ ...
556
352
 
557
- :param self:
558
- :type self:
559
- :param ignore:
560
- :type ignore:
561
- """
353
+ def pop(self):
354
+ """ """
562
355
  ...
563
356
 
564
- def as_pointer(self): ...
565
- def bl_rna_get_subclass(self): ...
566
- def bl_rna_get_subclass_py(self): ...
567
- def check(self, _context):
568
- """
357
+ def property_overridable_library_set(self):
358
+ """ """
359
+ ...
569
360
 
570
- :param self:
571
- :type self:
572
- :param _context:
573
- :type _context:
574
- """
361
+ def property_unset(self):
362
+ """ """
575
363
  ...
576
364
 
577
- def driver_add(self): ...
578
- def driver_remove(self): ...
579
- def execute(self, context):
580
- """
365
+ def type_recast(self):
366
+ """ """
367
+ ...
581
368
 
582
- :param self:
583
- :type self:
584
- :param context:
585
- :type context:
586
- """
369
+ def values(self):
370
+ """ """
587
371
  ...
588
372
 
589
- def get(self): ...
590
- def id_properties_clear(self): ...
591
- def id_properties_ensure(self): ...
592
- def id_properties_ui(self): ...
593
- def invoke(self, context, _event):
594
- """
373
+ class AddPresetCloth(bpy_types.Operator):
374
+ """ """
595
375
 
596
- :param self:
597
- :type self:
598
- :param context:
599
- :type context:
600
- :param _event:
601
- :type _event:
602
- """
603
- ...
604
-
605
- def is_property_hidden(self): ...
606
- def is_property_overridable_library(self): ...
607
- def is_property_readonly(self): ...
608
- def is_property_set(self): ...
609
- def items(self): ...
610
- def keyframe_delete(self): ...
611
- def keyframe_insert(self): ...
612
- def keys(self): ...
613
- def path_from_id(self): ...
614
- def path_resolve(self): ...
615
- def poll_message_set(self): ...
616
- def pop(self): ...
617
- def property_overridable_library_set(self): ...
618
- def property_unset(self): ...
619
- def type_recast(self): ...
620
- def values(self): ...
621
-
622
- class AddPresetFluid(AddPresetBase, bpy_types.Operator):
623
376
  bl_idname: typing.Any
377
+ """ """
378
+
624
379
  bl_label: typing.Any
380
+ """ """
381
+
625
382
  bl_options: typing.Any
383
+ """ """
384
+
626
385
  bl_rna: typing.Any
386
+ """ """
387
+
627
388
  id_data: typing.Any
389
+ """ """
390
+
628
391
  preset_defines: typing.Any
392
+ """ """
393
+
629
394
  preset_menu: typing.Any
395
+ """ """
396
+
630
397
  preset_subdir: typing.Any
398
+ """ """
399
+
631
400
  preset_values: typing.Any
401
+ """ """
632
402
 
633
403
  def as_filename(self, name):
634
404
  """
635
405
 
636
406
  :param name:
637
- :type name:
638
407
  """
639
408
  ...
640
409
 
641
410
  def as_keywords(self, ignore):
642
411
  """
643
412
 
644
- :param self:
645
- :type self:
646
413
  :param ignore:
647
- :type ignore:
648
414
  """
649
415
  ...
650
416
 
651
- def as_pointer(self): ...
652
- def bl_rna_get_subclass(self): ...
653
- def bl_rna_get_subclass_py(self): ...
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
+
654
429
  def check(self, _context):
655
430
  """
656
431
 
657
- :param self:
658
- :type self:
659
432
  :param _context:
660
- :type _context:
661
433
  """
662
434
  ...
663
435
 
664
- def driver_add(self): ...
665
- def driver_remove(self): ...
436
+ def driver_add(self):
437
+ """ """
438
+ ...
439
+
440
+ def driver_remove(self):
441
+ """ """
442
+ ...
443
+
666
444
  def execute(self, context):
667
445
  """
668
446
 
669
- :param self:
670
- :type self:
671
447
  :param context:
672
- :type context:
673
448
  """
674
449
  ...
675
450
 
676
- def get(self): ...
677
- def id_properties_clear(self): ...
678
- def id_properties_ensure(self): ...
679
- def id_properties_ui(self): ...
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
+
680
467
  def invoke(self, context, _event):
681
468
  """
682
469
 
683
- :param self:
684
- :type self:
685
470
  :param context:
686
- :type context:
687
471
  :param _event:
688
- :type _event:
689
- """
690
- ...
691
-
692
- def is_property_hidden(self): ...
693
- def is_property_overridable_library(self): ...
694
- def is_property_readonly(self): ...
695
- def is_property_set(self): ...
696
- def items(self): ...
697
- def keyframe_delete(self): ...
698
- def keyframe_insert(self): ...
699
- def keys(self): ...
700
- def path_from_id(self): ...
701
- def path_resolve(self): ...
702
- def poll_message_set(self): ...
703
- def pop(self): ...
704
- def property_overridable_library_set(self): ...
705
- def property_unset(self): ...
706
- def type_recast(self): ...
707
- def values(self): ...
708
-
709
- class AddPresetGpencilBrush(AddPresetBase, bpy_types.Operator):
710
- bl_idname: typing.Any
711
- bl_label: typing.Any
712
- bl_options: typing.Any
713
- bl_rna: typing.Any
714
- id_data: typing.Any
715
- preset_defines: typing.Any
716
- preset_menu: typing.Any
717
- preset_subdir: typing.Any
718
- preset_values: typing.Any
719
-
720
- def as_filename(self, name):
721
- """
722
-
723
- :param name:
724
- :type name:
725
472
  """
726
473
  ...
727
474
 
728
- def as_keywords(self, ignore):
729
- """
475
+ def is_property_hidden(self):
476
+ """ """
477
+ ...
730
478
 
731
- :param self:
732
- :type self:
733
- :param ignore:
734
- :type ignore:
735
- """
479
+ def is_property_overridable_library(self):
480
+ """ """
736
481
  ...
737
482
 
738
- def as_pointer(self): ...
739
- def bl_rna_get_subclass(self): ...
740
- def bl_rna_get_subclass_py(self): ...
741
- def check(self, _context):
742
- """
483
+ def is_property_readonly(self):
484
+ """ """
485
+ ...
743
486
 
744
- :param self:
745
- :type self:
746
- :param _context:
747
- :type _context:
748
- """
487
+ def is_property_set(self):
488
+ """ """
749
489
  ...
750
490
 
751
- def driver_add(self): ...
752
- def driver_remove(self): ...
753
- def execute(self, context):
754
- """
491
+ def items(self):
492
+ """ """
493
+ ...
755
494
 
756
- :param self:
757
- :type self:
758
- :param context:
759
- :type context:
760
- """
495
+ def keyframe_delete(self):
496
+ """ """
761
497
  ...
762
498
 
763
- def get(self): ...
764
- def id_properties_clear(self): ...
765
- def id_properties_ensure(self): ...
766
- def id_properties_ui(self): ...
767
- def invoke(self, context, _event):
768
- """
499
+ def keyframe_insert(self):
500
+ """ """
501
+ ...
769
502
 
770
- :param self:
771
- :type self:
772
- :param context:
773
- :type context:
774
- :param _event:
775
- :type _event:
776
- """
777
- ...
778
-
779
- def is_property_hidden(self): ...
780
- def is_property_overridable_library(self): ...
781
- def is_property_readonly(self): ...
782
- def is_property_set(self): ...
783
- def items(self): ...
784
- def keyframe_delete(self): ...
785
- def keyframe_insert(self): ...
786
- def keys(self): ...
787
- def path_from_id(self): ...
788
- def path_resolve(self): ...
789
- def poll_message_set(self): ...
790
- def pop(self): ...
791
- def property_overridable_library_set(self): ...
792
- def property_unset(self): ...
793
- def type_recast(self): ...
794
- def values(self): ...
795
-
796
- class AddPresetGpencilMaterial(AddPresetBase, bpy_types.Operator):
797
- bl_idname: typing.Any
798
- bl_label: typing.Any
799
- bl_options: typing.Any
800
- bl_rna: typing.Any
801
- id_data: typing.Any
802
- preset_defines: typing.Any
803
- preset_menu: typing.Any
804
- preset_subdir: typing.Any
805
- preset_values: typing.Any
503
+ def keys(self):
504
+ """ """
505
+ ...
806
506
 
807
- def as_filename(self, name):
808
- """
507
+ def path_from_id(self):
508
+ """ """
509
+ ...
809
510
 
810
- :param name:
811
- :type name:
812
- """
511
+ def path_resolve(self):
512
+ """ """
813
513
  ...
814
514
 
815
- def as_keywords(self, ignore):
816
- """
515
+ def poll_message_set(self):
516
+ """ """
517
+ ...
817
518
 
818
- :param self:
819
- :type self:
820
- :param ignore:
821
- :type ignore:
822
- """
519
+ def pop(self):
520
+ """ """
823
521
  ...
824
522
 
825
- def as_pointer(self): ...
826
- def bl_rna_get_subclass(self): ...
827
- def bl_rna_get_subclass_py(self): ...
828
- def check(self, _context):
829
- """
523
+ def property_overridable_library_set(self):
524
+ """ """
525
+ ...
830
526
 
831
- :param self:
832
- :type self:
833
- :param _context:
834
- :type _context:
835
- """
527
+ def property_unset(self):
528
+ """ """
836
529
  ...
837
530
 
838
- def driver_add(self): ...
839
- def driver_remove(self): ...
840
- def execute(self, context):
841
- """
531
+ def type_recast(self):
532
+ """ """
533
+ ...
842
534
 
843
- :param self:
844
- :type self:
845
- :param context:
846
- :type context:
847
- """
535
+ def values(self):
536
+ """ """
848
537
  ...
849
538
 
850
- def get(self): ...
851
- def id_properties_clear(self): ...
852
- def id_properties_ensure(self): ...
853
- def id_properties_ui(self): ...
854
- def invoke(self, context, _event):
855
- """
539
+ class AddPresetEEVEERaytracing(bpy_types.Operator):
540
+ """ """
856
541
 
857
- :param self:
858
- :type self:
859
- :param context:
860
- :type context:
861
- :param _event:
862
- :type _event:
863
- """
864
- ...
865
-
866
- def is_property_hidden(self): ...
867
- def is_property_overridable_library(self): ...
868
- def is_property_readonly(self): ...
869
- def is_property_set(self): ...
870
- def items(self): ...
871
- def keyframe_delete(self): ...
872
- def keyframe_insert(self): ...
873
- def keys(self): ...
874
- def path_from_id(self): ...
875
- def path_resolve(self): ...
876
- def poll_message_set(self): ...
877
- def pop(self): ...
878
- def property_overridable_library_set(self): ...
879
- def property_unset(self): ...
880
- def type_recast(self): ...
881
- def values(self): ...
882
-
883
- class AddPresetHairDynamics(AddPresetBase, bpy_types.Operator):
884
542
  bl_idname: typing.Any
543
+ """ """
544
+
885
545
  bl_label: typing.Any
546
+ """ """
547
+
886
548
  bl_options: typing.Any
549
+ """ """
550
+
887
551
  bl_rna: typing.Any
552
+ """ """
553
+
888
554
  id_data: typing.Any
555
+ """ """
556
+
889
557
  preset_defines: typing.Any
558
+ """ """
559
+
890
560
  preset_menu: typing.Any
561
+ """ """
562
+
891
563
  preset_subdir: typing.Any
564
+ """ """
565
+
892
566
  preset_values: typing.Any
567
+ """ """
893
568
 
894
569
  def as_filename(self, name):
895
570
  """
896
571
 
897
572
  :param name:
898
- :type name:
899
573
  """
900
574
  ...
901
575
 
902
576
  def as_keywords(self, ignore):
903
577
  """
904
578
 
905
- :param self:
906
- :type self:
907
579
  :param ignore:
908
- :type ignore:
909
580
  """
910
581
  ...
911
582
 
912
- def as_pointer(self): ...
913
- def bl_rna_get_subclass(self): ...
914
- def bl_rna_get_subclass_py(self): ...
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
+
915
595
  def check(self, _context):
916
596
  """
917
597
 
918
- :param self:
919
- :type self:
920
598
  :param _context:
921
- :type _context:
922
599
  """
923
600
  ...
924
601
 
925
- def driver_add(self): ...
926
- def driver_remove(self): ...
602
+ def driver_add(self):
603
+ """ """
604
+ ...
605
+
606
+ def driver_remove(self):
607
+ """ """
608
+ ...
609
+
927
610
  def execute(self, context):
928
611
  """
929
612
 
930
- :param self:
931
- :type self:
932
613
  :param context:
933
- :type context:
934
614
  """
935
615
  ...
936
616
 
937
- def get(self): ...
938
- def id_properties_clear(self): ...
939
- def id_properties_ensure(self): ...
940
- def id_properties_ui(self): ...
941
- def invoke(self, context, _event):
942
- """
617
+ def get(self):
618
+ """ """
619
+ ...
943
620
 
944
- :param self:
945
- :type self:
946
- :param context:
947
- :type context:
948
- :param _event:
949
- :type _event:
950
- """
951
- ...
952
-
953
- def is_property_hidden(self): ...
954
- def is_property_overridable_library(self): ...
955
- def is_property_readonly(self): ...
956
- def is_property_set(self): ...
957
- def items(self): ...
958
- def keyframe_delete(self): ...
959
- def keyframe_insert(self): ...
960
- def keys(self): ...
961
- def path_from_id(self): ...
962
- def path_resolve(self): ...
963
- def poll_message_set(self): ...
964
- def pop(self): ...
965
- def property_overridable_library_set(self): ...
966
- def property_unset(self): ...
967
- def type_recast(self): ...
968
- def values(self): ...
969
-
970
- class AddPresetInterfaceTheme(AddPresetBase, bpy_types.Operator):
971
- bl_idname: typing.Any
972
- bl_label: typing.Any
973
- bl_options: typing.Any
974
- bl_rna: typing.Any
975
- id_data: typing.Any
976
- preset_menu: typing.Any
977
- preset_subdir: typing.Any
621
+ def id_properties_clear(self):
622
+ """ """
623
+ ...
978
624
 
979
- def as_filename(self, name):
980
- """
625
+ def id_properties_ensure(self):
626
+ """ """
627
+ ...
981
628
 
982
- :param name:
983
- :type name:
984
- """
629
+ def id_properties_ui(self):
630
+ """ """
985
631
  ...
986
632
 
987
- def as_keywords(self, ignore):
633
+ def invoke(self, context, _event):
988
634
  """
989
635
 
990
- :param self:
991
- :type self:
992
- :param ignore:
993
- :type ignore:
636
+ :param context:
637
+ :param _event:
994
638
  """
995
639
  ...
996
640
 
997
- def as_pointer(self): ...
998
- def bl_rna_get_subclass(self): ...
999
- def bl_rna_get_subclass_py(self): ...
1000
- def check(self, _context):
1001
- """
641
+ def is_property_hidden(self):
642
+ """ """
643
+ ...
1002
644
 
1003
- :param self:
1004
- :type self:
1005
- :param _context:
1006
- :type _context:
1007
- """
645
+ def is_property_overridable_library(self):
646
+ """ """
1008
647
  ...
1009
648
 
1010
- def driver_add(self): ...
1011
- def driver_remove(self): ...
1012
- def execute(self, context):
1013
- """
649
+ def is_property_readonly(self):
650
+ """ """
651
+ ...
1014
652
 
1015
- :param self:
1016
- :type self:
1017
- :param context:
1018
- :type context:
1019
- """
653
+ def is_property_set(self):
654
+ """ """
1020
655
  ...
1021
656
 
1022
- def get(self): ...
1023
- def id_properties_clear(self): ...
1024
- def id_properties_ensure(self): ...
1025
- def id_properties_ui(self): ...
1026
- def invoke(self, context, _event):
1027
- """
657
+ def items(self):
658
+ """ """
659
+ ...
1028
660
 
1029
- :param self:
1030
- :type self:
1031
- :param context:
1032
- :type context:
1033
- :param _event:
1034
- :type _event:
1035
- """
1036
- ...
1037
-
1038
- def is_property_hidden(self): ...
1039
- def is_property_overridable_library(self): ...
1040
- def is_property_readonly(self): ...
1041
- def is_property_set(self): ...
1042
- def items(self): ...
1043
- def keyframe_delete(self): ...
1044
- def keyframe_insert(self): ...
1045
- def keys(self): ...
1046
- def path_from_id(self): ...
1047
- def path_resolve(self): ...
1048
- def poll_message_set(self): ...
1049
- def pop(self): ...
1050
- def property_overridable_library_set(self): ...
1051
- def property_unset(self): ...
1052
- def type_recast(self): ...
1053
- def values(self): ...
1054
-
1055
- class AddPresetKeyconfig(AddPresetBase, bpy_types.Operator):
1056
- bl_idname: typing.Any
1057
- bl_label: typing.Any
1058
- bl_options: typing.Any
1059
- bl_rna: typing.Any
1060
- id_data: typing.Any
1061
- preset_menu: typing.Any
1062
- preset_subdir: typing.Any
661
+ def keyframe_delete(self):
662
+ """ """
663
+ ...
1063
664
 
1064
- def add(self, _context, filepath):
1065
- """
665
+ def keyframe_insert(self):
666
+ """ """
667
+ ...
1066
668
 
1067
- :param self:
1068
- :type self:
1069
- :param _context:
1070
- :type _context:
1071
- :param filepath:
1072
- :type filepath:
1073
- """
669
+ def keys(self):
670
+ """ """
1074
671
  ...
1075
672
 
1076
- def as_filename(self, name):
1077
- """
673
+ def path_from_id(self):
674
+ """ """
675
+ ...
1078
676
 
1079
- :param name:
1080
- :type name:
1081
- """
677
+ def path_resolve(self):
678
+ """ """
1082
679
  ...
1083
680
 
1084
- def as_keywords(self, ignore):
1085
- """
681
+ def poll_message_set(self):
682
+ """ """
683
+ ...
1086
684
 
1087
- :param self:
1088
- :type self:
1089
- :param ignore:
1090
- :type ignore:
1091
- """
685
+ def pop(self):
686
+ """ """
1092
687
  ...
1093
688
 
1094
- def as_pointer(self): ...
1095
- def bl_rna_get_subclass(self): ...
1096
- def bl_rna_get_subclass_py(self): ...
1097
- def check(self, _context):
1098
- """
689
+ def property_overridable_library_set(self):
690
+ """ """
691
+ ...
1099
692
 
1100
- :param self:
1101
- :type self:
1102
- :param _context:
1103
- :type _context:
1104
- """
693
+ def property_unset(self):
694
+ """ """
1105
695
  ...
1106
696
 
1107
- def driver_add(self): ...
1108
- def driver_remove(self): ...
1109
- def execute(self, context):
1110
- """
697
+ def type_recast(self):
698
+ """ """
699
+ ...
1111
700
 
1112
- :param self:
1113
- :type self:
1114
- :param context:
1115
- :type context:
1116
- """
701
+ def values(self):
702
+ """ """
1117
703
  ...
1118
704
 
1119
- def get(self): ...
1120
- def id_properties_clear(self): ...
1121
- def id_properties_ensure(self): ...
1122
- def id_properties_ui(self): ...
1123
- def invoke(self, context, _event):
1124
- """
705
+ class AddPresetFluid(bpy_types.Operator):
706
+ """ """
1125
707
 
1126
- :param self:
1127
- :type self:
1128
- :param context:
1129
- :type context:
1130
- :param _event:
1131
- :type _event:
1132
- """
1133
- ...
1134
-
1135
- def is_property_hidden(self): ...
1136
- def is_property_overridable_library(self): ...
1137
- def is_property_readonly(self): ...
1138
- def is_property_set(self): ...
1139
- def items(self): ...
1140
- def keyframe_delete(self): ...
1141
- def keyframe_insert(self): ...
1142
- def keys(self): ...
1143
- def path_from_id(self): ...
1144
- def path_resolve(self): ...
1145
- def poll_message_set(self): ...
1146
- def pop(self): ...
1147
- def property_overridable_library_set(self): ...
1148
- def property_unset(self): ...
1149
- def type_recast(self): ...
1150
- def values(self): ...
1151
-
1152
- class AddPresetNodeColor(AddPresetBase, bpy_types.Operator):
1153
708
  bl_idname: typing.Any
709
+ """ """
710
+
1154
711
  bl_label: typing.Any
712
+ """ """
713
+
1155
714
  bl_options: typing.Any
715
+ """ """
716
+
1156
717
  bl_rna: typing.Any
718
+ """ """
719
+
1157
720
  id_data: typing.Any
721
+ """ """
722
+
1158
723
  preset_defines: typing.Any
724
+ """ """
725
+
1159
726
  preset_menu: typing.Any
727
+ """ """
728
+
1160
729
  preset_subdir: typing.Any
730
+ """ """
731
+
1161
732
  preset_values: typing.Any
733
+ """ """
1162
734
 
1163
735
  def as_filename(self, name):
1164
736
  """
1165
737
 
1166
738
  :param name:
1167
- :type name:
1168
739
  """
1169
740
  ...
1170
741
 
1171
742
  def as_keywords(self, ignore):
1172
743
  """
1173
744
 
1174
- :param self:
1175
- :type self:
1176
745
  :param ignore:
1177
- :type ignore:
1178
746
  """
1179
747
  ...
1180
748
 
1181
- def as_pointer(self): ...
1182
- def bl_rna_get_subclass(self): ...
1183
- def bl_rna_get_subclass_py(self): ...
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
+
1184
761
  def check(self, _context):
1185
762
  """
1186
763
 
1187
- :param self:
1188
- :type self:
1189
764
  :param _context:
1190
- :type _context:
1191
765
  """
1192
766
  ...
1193
767
 
1194
- def driver_add(self): ...
1195
- def driver_remove(self): ...
768
+ def driver_add(self):
769
+ """ """
770
+ ...
771
+
772
+ def driver_remove(self):
773
+ """ """
774
+ ...
775
+
1196
776
  def execute(self, context):
1197
777
  """
1198
778
 
1199
- :param self:
1200
- :type self:
1201
779
  :param context:
1202
- :type context:
1203
780
  """
1204
781
  ...
1205
782
 
1206
- def get(self): ...
1207
- def id_properties_clear(self): ...
1208
- def id_properties_ensure(self): ...
1209
- def id_properties_ui(self): ...
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
+
1210
799
  def invoke(self, context, _event):
1211
800
  """
1212
801
 
1213
- :param self:
1214
- :type self:
1215
802
  :param context:
1216
- :type context:
1217
803
  :param _event:
1218
- :type _event:
1219
- """
1220
- ...
1221
-
1222
- def is_property_hidden(self): ...
1223
- def is_property_overridable_library(self): ...
1224
- def is_property_readonly(self): ...
1225
- def is_property_set(self): ...
1226
- def items(self): ...
1227
- def keyframe_delete(self): ...
1228
- def keyframe_insert(self): ...
1229
- def keys(self): ...
1230
- def path_from_id(self): ...
1231
- def path_resolve(self): ...
1232
- def poll_message_set(self): ...
1233
- def pop(self): ...
1234
- def property_overridable_library_set(self): ...
1235
- def property_unset(self): ...
1236
- def type_recast(self): ...
1237
- def values(self): ...
1238
-
1239
- class AddPresetOperator(AddPresetBase, bpy_types.Operator):
1240
- bl_idname: typing.Any
1241
- bl_label: typing.Any
1242
- bl_options: typing.Any
1243
- bl_rna: typing.Any
1244
- id_data: typing.Any
1245
- preset_defines: typing.Any
1246
- preset_menu: typing.Any
1247
- preset_subdir: typing.Any
1248
- preset_values: typing.Any
1249
-
1250
- def as_filename(self, name):
1251
804
  """
805
+ ...
1252
806
 
1253
- :param name:
1254
- :type name:
1255
- """
807
+ def is_property_hidden(self):
808
+ """ """
1256
809
  ...
1257
810
 
1258
- def as_keywords(self, ignore):
1259
- """
811
+ def is_property_overridable_library(self):
812
+ """ """
813
+ ...
1260
814
 
1261
- :param self:
1262
- :type self:
1263
- :param ignore:
1264
- :type ignore:
1265
- """
815
+ def is_property_readonly(self):
816
+ """ """
1266
817
  ...
1267
818
 
1268
- def as_pointer(self): ...
1269
- def bl_rna_get_subclass(self): ...
1270
- def bl_rna_get_subclass_py(self): ...
1271
- def check(self, _context):
1272
- """
819
+ def is_property_set(self):
820
+ """ """
821
+ ...
1273
822
 
1274
- :param self:
1275
- :type self:
1276
- :param _context:
1277
- :type _context:
1278
- """
823
+ def items(self):
824
+ """ """
1279
825
  ...
1280
826
 
1281
- def driver_add(self): ...
1282
- def driver_remove(self): ...
1283
- def execute(self, context):
1284
- """
827
+ def keyframe_delete(self):
828
+ """ """
829
+ ...
1285
830
 
1286
- :param self:
1287
- :type self:
1288
- :param context:
1289
- :type context:
1290
- """
831
+ def keyframe_insert(self):
832
+ """ """
1291
833
  ...
1292
834
 
1293
- def get(self): ...
1294
- def id_properties_clear(self): ...
1295
- def id_properties_ensure(self): ...
1296
- def id_properties_ui(self): ...
1297
- def invoke(self, context, _event):
1298
- """
835
+ def keys(self):
836
+ """ """
837
+ ...
1299
838
 
1300
- :param self:
1301
- :type self:
1302
- :param context:
1303
- :type context:
1304
- :param _event:
1305
- :type _event:
1306
- """
839
+ def path_from_id(self):
840
+ """ """
1307
841
  ...
1308
842
 
1309
- def is_property_hidden(self): ...
1310
- def is_property_overridable_library(self): ...
1311
- def is_property_readonly(self): ...
1312
- def is_property_set(self): ...
1313
- def items(self): ...
1314
- def keyframe_delete(self): ...
1315
- def keyframe_insert(self): ...
1316
- def keys(self): ...
1317
- def operator_path(self, operator):
1318
- """
843
+ def path_resolve(self):
844
+ """ """
845
+ ...
1319
846
 
1320
- :param operator:
1321
- :type operator:
1322
- """
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
+ """ """
1323
869
  ...
1324
870
 
1325
- def path_from_id(self): ...
1326
- def path_resolve(self): ...
1327
- def poll_message_set(self): ...
1328
- def pop(self): ...
1329
- def property_overridable_library_set(self): ...
1330
- def property_unset(self): ...
1331
- def type_recast(self): ...
1332
- def values(self): ...
871
+ class AddPresetGpencilBrush(bpy_types.Operator):
872
+ """ """
1333
873
 
1334
- class AddPresetRender(AddPresetBase, bpy_types.Operator):
1335
874
  bl_idname: typing.Any
875
+ """ """
876
+
1336
877
  bl_label: typing.Any
878
+ """ """
879
+
1337
880
  bl_options: typing.Any
881
+ """ """
882
+
1338
883
  bl_rna: typing.Any
884
+ """ """
885
+
1339
886
  id_data: typing.Any
887
+ """ """
888
+
1340
889
  preset_defines: typing.Any
890
+ """ """
891
+
1341
892
  preset_menu: typing.Any
893
+ """ """
894
+
1342
895
  preset_subdir: typing.Any
896
+ """ """
897
+
1343
898
  preset_values: typing.Any
899
+ """ """
1344
900
 
1345
901
  def as_filename(self, name):
1346
902
  """
1347
903
 
1348
904
  :param name:
1349
- :type name:
1350
905
  """
1351
906
  ...
1352
907
 
1353
908
  def as_keywords(self, ignore):
1354
909
  """
1355
910
 
1356
- :param self:
1357
- :type self:
1358
911
  :param ignore:
1359
- :type ignore:
1360
912
  """
1361
913
  ...
1362
914
 
1363
- def as_pointer(self): ...
1364
- def bl_rna_get_subclass(self): ...
1365
- def bl_rna_get_subclass_py(self): ...
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
+
1366
927
  def check(self, _context):
1367
928
  """
1368
929
 
1369
- :param self:
1370
- :type self:
1371
930
  :param _context:
1372
- :type _context:
1373
931
  """
1374
932
  ...
1375
933
 
1376
- def driver_add(self): ...
1377
- def driver_remove(self): ...
934
+ def driver_add(self):
935
+ """ """
936
+ ...
937
+
938
+ def driver_remove(self):
939
+ """ """
940
+ ...
941
+
1378
942
  def execute(self, context):
1379
943
  """
1380
944
 
1381
- :param self:
1382
- :type self:
1383
945
  :param context:
1384
- :type context:
1385
946
  """
1386
947
  ...
1387
948
 
1388
- def get(self): ...
1389
- def id_properties_clear(self): ...
1390
- def id_properties_ensure(self): ...
1391
- def id_properties_ui(self): ...
1392
- def invoke(self, context, _event):
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):
1393
966
  """
1394
967
 
1395
- :param self:
1396
- :type self:
1397
968
  :param context:
1398
- :type context:
1399
969
  :param _event:
1400
- :type _event:
1401
- """
1402
- ...
1403
-
1404
- def is_property_hidden(self): ...
1405
- def is_property_overridable_library(self): ...
1406
- def is_property_readonly(self): ...
1407
- def is_property_set(self): ...
1408
- def items(self): ...
1409
- def keyframe_delete(self): ...
1410
- def keyframe_insert(self): ...
1411
- def keys(self): ...
1412
- def path_from_id(self): ...
1413
- def path_resolve(self): ...
1414
- def poll_message_set(self): ...
1415
- def pop(self): ...
1416
- def property_overridable_library_set(self): ...
1417
- def property_unset(self): ...
1418
- def type_recast(self): ...
1419
- def values(self): ...
1420
-
1421
- class AddPresetTextEditor(AddPresetBase, bpy_types.Operator):
1422
- bl_idname: typing.Any
1423
- bl_label: typing.Any
1424
- bl_options: typing.Any
1425
- bl_rna: typing.Any
1426
- id_data: typing.Any
1427
- preset_defines: typing.Any
1428
- preset_menu: typing.Any
1429
- preset_subdir: typing.Any
1430
- preset_values: typing.Any
1431
-
1432
- def as_filename(self, name):
1433
970
  """
971
+ ...
1434
972
 
1435
- :param name:
1436
- :type name:
1437
- """
973
+ def is_property_hidden(self):
974
+ """ """
1438
975
  ...
1439
976
 
1440
- def as_keywords(self, ignore):
1441
- """
977
+ def is_property_overridable_library(self):
978
+ """ """
979
+ ...
1442
980
 
1443
- :param self:
1444
- :type self:
1445
- :param ignore:
1446
- :type ignore:
1447
- """
981
+ def is_property_readonly(self):
982
+ """ """
1448
983
  ...
1449
984
 
1450
- def as_pointer(self): ...
1451
- def bl_rna_get_subclass(self): ...
1452
- def bl_rna_get_subclass_py(self): ...
1453
- def check(self, _context):
1454
- """
985
+ def is_property_set(self):
986
+ """ """
987
+ ...
1455
988
 
1456
- :param self:
1457
- :type self:
1458
- :param _context:
1459
- :type _context:
1460
- """
989
+ def items(self):
990
+ """ """
1461
991
  ...
1462
992
 
1463
- def driver_add(self): ...
1464
- def driver_remove(self): ...
1465
- def execute(self, context):
1466
- """
993
+ def keyframe_delete(self):
994
+ """ """
995
+ ...
1467
996
 
1468
- :param self:
1469
- :type self:
1470
- :param context:
1471
- :type context:
1472
- """
997
+ def keyframe_insert(self):
998
+ """ """
1473
999
  ...
1474
1000
 
1475
- def get(self): ...
1476
- def id_properties_clear(self): ...
1477
- def id_properties_ensure(self): ...
1478
- def id_properties_ui(self): ...
1479
- def invoke(self, context, _event):
1480
- """
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
+ """ """
1481
1039
 
1482
- :param self:
1483
- :type self:
1484
- :param context:
1485
- :type context:
1486
- :param _event:
1487
- :type _event:
1488
- """
1489
- ...
1490
-
1491
- def is_property_hidden(self): ...
1492
- def is_property_overridable_library(self): ...
1493
- def is_property_readonly(self): ...
1494
- def is_property_set(self): ...
1495
- def items(self): ...
1496
- def keyframe_delete(self): ...
1497
- def keyframe_insert(self): ...
1498
- def keys(self): ...
1499
- def path_from_id(self): ...
1500
- def path_resolve(self): ...
1501
- def poll_message_set(self): ...
1502
- def pop(self): ...
1503
- def property_overridable_library_set(self): ...
1504
- def property_unset(self): ...
1505
- def type_recast(self): ...
1506
- def values(self): ...
1507
-
1508
- class AddPresetTrackingCamera(AddPresetBase, bpy_types.Operator):
1509
1040
  bl_idname: typing.Any
1041
+ """ """
1042
+
1510
1043
  bl_label: typing.Any
1044
+ """ """
1045
+
1511
1046
  bl_options: typing.Any
1047
+ """ """
1048
+
1512
1049
  bl_rna: typing.Any
1050
+ """ """
1051
+
1513
1052
  id_data: typing.Any
1053
+ """ """
1054
+
1514
1055
  preset_defines: typing.Any
1056
+ """ """
1057
+
1515
1058
  preset_menu: typing.Any
1059
+ """ """
1060
+
1516
1061
  preset_subdir: typing.Any
1062
+ """ """
1063
+
1517
1064
  preset_values: typing.Any
1065
+ """ """
1518
1066
 
1519
1067
  def as_filename(self, name):
1520
1068
  """
1521
1069
 
1522
1070
  :param name:
1523
- :type name:
1524
1071
  """
1525
1072
  ...
1526
1073
 
1527
1074
  def as_keywords(self, ignore):
1528
1075
  """
1529
1076
 
1530
- :param self:
1531
- :type self:
1532
1077
  :param ignore:
1533
- :type ignore:
1534
1078
  """
1535
1079
  ...
1536
1080
 
1537
- def as_pointer(self): ...
1538
- def bl_rna_get_subclass(self): ...
1539
- def bl_rna_get_subclass_py(self): ...
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
+
1540
1093
  def check(self, _context):
1541
1094
  """
1542
1095
 
1543
- :param self:
1544
- :type self:
1545
1096
  :param _context:
1546
- :type _context:
1547
1097
  """
1548
1098
  ...
1549
1099
 
1550
- def driver_add(self): ...
1551
- def driver_remove(self): ...
1100
+ def driver_add(self):
1101
+ """ """
1102
+ ...
1103
+
1104
+ def driver_remove(self):
1105
+ """ """
1106
+ ...
1107
+
1552
1108
  def execute(self, context):
1553
1109
  """
1554
1110
 
1555
- :param self:
1556
- :type self:
1557
1111
  :param context:
1558
- :type context:
1559
1112
  """
1560
1113
  ...
1561
1114
 
1562
- def get(self): ...
1563
- def id_properties_clear(self): ...
1564
- def id_properties_ensure(self): ...
1565
- def id_properties_ui(self): ...
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
+
1566
1131
  def invoke(self, context, _event):
1567
1132
  """
1568
1133
 
1569
- :param self:
1570
- :type self:
1571
1134
  :param context:
1572
- :type context:
1573
1135
  :param _event:
1574
- :type _event:
1575
- """
1576
- ...
1577
-
1578
- def is_property_hidden(self): ...
1579
- def is_property_overridable_library(self): ...
1580
- def is_property_readonly(self): ...
1581
- def is_property_set(self): ...
1582
- def items(self): ...
1583
- def keyframe_delete(self): ...
1584
- def keyframe_insert(self): ...
1585
- def keys(self): ...
1586
- def path_from_id(self): ...
1587
- def path_resolve(self): ...
1588
- def poll_message_set(self): ...
1589
- def pop(self): ...
1590
- def property_overridable_library_set(self): ...
1591
- def property_unset(self): ...
1592
- def type_recast(self): ...
1593
- def values(self): ...
1594
-
1595
- class AddPresetTrackingSettings(AddPresetBase, bpy_types.Operator):
1596
- bl_idname: typing.Any
1597
- bl_label: typing.Any
1598
- bl_options: typing.Any
1599
- bl_rna: typing.Any
1600
- id_data: typing.Any
1601
- preset_defines: typing.Any
1602
- preset_menu: typing.Any
1603
- preset_subdir: typing.Any
1604
- preset_values: typing.Any
1605
-
1606
- def as_filename(self, name):
1607
1136
  """
1137
+ ...
1608
1138
 
1609
- :param name:
1610
- :type name:
1611
- """
1139
+ def is_property_hidden(self):
1140
+ """ """
1612
1141
  ...
1613
1142
 
1614
- def as_keywords(self, ignore):
1615
- """
1143
+ def is_property_overridable_library(self):
1144
+ """ """
1145
+ ...
1616
1146
 
1617
- :param self:
1618
- :type self:
1619
- :param ignore:
1620
- :type ignore:
1621
- """
1147
+ def is_property_readonly(self):
1148
+ """ """
1622
1149
  ...
1623
1150
 
1624
- def as_pointer(self): ...
1625
- def bl_rna_get_subclass(self): ...
1626
- def bl_rna_get_subclass_py(self): ...
1627
- def check(self, _context):
1628
- """
1151
+ def is_property_set(self):
1152
+ """ """
1153
+ ...
1629
1154
 
1630
- :param self:
1631
- :type self:
1632
- :param _context:
1633
- :type _context:
1634
- """
1155
+ def items(self):
1156
+ """ """
1635
1157
  ...
1636
1158
 
1637
- def driver_add(self): ...
1638
- def driver_remove(self): ...
1639
- def execute(self, context):
1640
- """
1159
+ def keyframe_delete(self):
1160
+ """ """
1161
+ ...
1641
1162
 
1642
- :param self:
1643
- :type self:
1644
- :param context:
1645
- :type context:
1646
- """
1163
+ def keyframe_insert(self):
1164
+ """ """
1647
1165
  ...
1648
1166
 
1649
- def get(self): ...
1650
- def id_properties_clear(self): ...
1651
- def id_properties_ensure(self): ...
1652
- def id_properties_ui(self): ...
1653
- def invoke(self, context, _event):
1654
- """
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
+ """ """
1655
1205
 
1656
- :param self:
1657
- :type self:
1658
- :param context:
1659
- :type context:
1660
- :param _event:
1661
- :type _event:
1662
- """
1663
- ...
1664
-
1665
- def is_property_hidden(self): ...
1666
- def is_property_overridable_library(self): ...
1667
- def is_property_readonly(self): ...
1668
- def is_property_set(self): ...
1669
- def items(self): ...
1670
- def keyframe_delete(self): ...
1671
- def keyframe_insert(self): ...
1672
- def keys(self): ...
1673
- def path_from_id(self): ...
1674
- def path_resolve(self): ...
1675
- def poll_message_set(self): ...
1676
- def pop(self): ...
1677
- def property_overridable_library_set(self): ...
1678
- def property_unset(self): ...
1679
- def type_recast(self): ...
1680
- def values(self): ...
1681
-
1682
- class AddPresetTrackingTrackColor(AddPresetBase, bpy_types.Operator):
1683
1206
  bl_idname: typing.Any
1207
+ """ """
1208
+
1684
1209
  bl_label: typing.Any
1210
+ """ """
1211
+
1685
1212
  bl_options: typing.Any
1213
+ """ """
1214
+
1686
1215
  bl_rna: typing.Any
1216
+ """ """
1217
+
1687
1218
  id_data: typing.Any
1219
+ """ """
1220
+
1688
1221
  preset_defines: typing.Any
1222
+ """ """
1223
+
1689
1224
  preset_menu: typing.Any
1225
+ """ """
1226
+
1690
1227
  preset_subdir: typing.Any
1228
+ """ """
1229
+
1691
1230
  preset_values: typing.Any
1231
+ """ """
1692
1232
 
1693
1233
  def as_filename(self, name):
1694
1234
  """
1695
1235
 
1696
1236
  :param name:
1697
- :type name:
1698
1237
  """
1699
1238
  ...
1700
1239
 
1701
1240
  def as_keywords(self, ignore):
1702
1241
  """
1703
1242
 
1704
- :param self:
1705
- :type self:
1706
1243
  :param ignore:
1707
- :type ignore:
1708
1244
  """
1709
1245
  ...
1710
1246
 
1711
- def as_pointer(self): ...
1712
- def bl_rna_get_subclass(self): ...
1713
- def bl_rna_get_subclass_py(self): ...
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
+
1714
1259
  def check(self, _context):
1715
1260
  """
1716
1261
 
1717
- :param self:
1718
- :type self:
1719
1262
  :param _context:
1720
- :type _context:
1721
1263
  """
1722
1264
  ...
1723
1265
 
1724
- def driver_add(self): ...
1725
- def driver_remove(self): ...
1266
+ def driver_add(self):
1267
+ """ """
1268
+ ...
1269
+
1270
+ def driver_remove(self):
1271
+ """ """
1272
+ ...
1273
+
1726
1274
  def execute(self, context):
1727
1275
  """
1728
1276
 
1729
- :param self:
1730
- :type self:
1731
1277
  :param context:
1732
- :type context:
1733
1278
  """
1734
1279
  ...
1735
1280
 
1736
- def get(self): ...
1737
- def id_properties_clear(self): ...
1738
- def id_properties_ensure(self): ...
1739
- def id_properties_ui(self): ...
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
+
1740
1297
  def invoke(self, context, _event):
1741
1298
  """
1742
1299
 
1743
- :param self:
1744
- :type self:
1745
1300
  :param context:
1746
- :type context:
1747
1301
  :param _event:
1748
- :type _event:
1749
- """
1750
- ...
1751
-
1752
- def is_property_hidden(self): ...
1753
- def is_property_overridable_library(self): ...
1754
- def is_property_readonly(self): ...
1755
- def is_property_set(self): ...
1756
- def items(self): ...
1757
- def keyframe_delete(self): ...
1758
- def keyframe_insert(self): ...
1759
- def keys(self): ...
1760
- def path_from_id(self): ...
1761
- def path_resolve(self): ...
1762
- def poll_message_set(self): ...
1763
- def pop(self): ...
1764
- def property_overridable_library_set(self): ...
1765
- def property_unset(self): ...
1766
- def type_recast(self): ...
1767
- def values(self): ...
1768
-
1769
- class RemovePresetInterfaceTheme(AddPresetBase, bpy_types.Operator):
1770
- bl_idname: typing.Any
1771
- bl_label: typing.Any
1772
- bl_options: typing.Any
1773
- bl_rna: typing.Any
1774
- id_data: typing.Any
1775
- preset_menu: typing.Any
1776
- preset_subdir: typing.Any
1777
-
1778
- def as_filename(self, name):
1779
1302
  """
1303
+ ...
1780
1304
 
1781
- :param name:
1782
- :type name:
1783
- """
1305
+ def is_property_hidden(self):
1306
+ """ """
1784
1307
  ...
1785
1308
 
1786
- def as_keywords(self, ignore):
1787
- """
1309
+ def is_property_overridable_library(self):
1310
+ """ """
1311
+ ...
1788
1312
 
1789
- :param self:
1790
- :type self:
1791
- :param ignore:
1792
- :type ignore:
1793
- """
1313
+ def is_property_readonly(self):
1314
+ """ """
1794
1315
  ...
1795
1316
 
1796
- def as_pointer(self): ...
1797
- def bl_rna_get_subclass(self): ...
1798
- def bl_rna_get_subclass_py(self): ...
1799
- def check(self, _context):
1800
- """
1317
+ def is_property_set(self):
1318
+ """ """
1319
+ ...
1801
1320
 
1802
- :param self:
1803
- :type self:
1804
- :param _context:
1805
- :type _context:
1806
- """
1321
+ def items(self):
1322
+ """ """
1807
1323
  ...
1808
1324
 
1809
- def driver_add(self): ...
1810
- def driver_remove(self): ...
1811
- def execute(self, context):
1812
- """
1325
+ def keyframe_delete(self):
1326
+ """ """
1327
+ ...
1813
1328
 
1814
- :param self:
1815
- :type self:
1816
- :param context:
1817
- :type context:
1818
- """
1329
+ def keyframe_insert(self):
1330
+ """ """
1819
1331
  ...
1820
1332
 
1821
- def get(self): ...
1822
- def id_properties_clear(self): ...
1823
- def id_properties_ensure(self): ...
1824
- def id_properties_ui(self): ...
1825
- def invoke(self, context, event):
1826
- """
1333
+ def keys(self):
1334
+ """ """
1335
+ ...
1827
1336
 
1828
- :param self:
1829
- :type self:
1830
- :param context:
1831
- :type context:
1832
- :param event:
1833
- :type event:
1834
- """
1337
+ def path_from_id(self):
1338
+ """ """
1835
1339
  ...
1836
1340
 
1837
- def is_property_hidden(self): ...
1838
- def is_property_overridable_library(self): ...
1839
- def is_property_readonly(self): ...
1840
- def is_property_set(self): ...
1841
- def items(self): ...
1842
- def keyframe_delete(self): ...
1843
- def keyframe_insert(self): ...
1844
- def keys(self): ...
1845
- def path_from_id(self): ...
1846
- def path_resolve(self): ...
1847
- def poll(self, context):
1848
- """
1341
+ def path_resolve(self):
1342
+ """ """
1343
+ ...
1849
1344
 
1850
- :param context:
1851
- :type context:
1852
- """
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
+ """ """
1853
1367
  ...
1854
1368
 
1855
- def poll_message_set(self): ...
1856
- def pop(self): ...
1857
- def property_overridable_library_set(self): ...
1858
- def property_unset(self): ...
1859
- def type_recast(self): ...
1860
- def values(self): ...
1369
+ class AddPresetInterfaceTheme(bpy_types.Operator):
1370
+ """ """
1861
1371
 
1862
- class RemovePresetKeyconfig(AddPresetBase, bpy_types.Operator):
1863
1372
  bl_idname: typing.Any
1373
+ """ """
1374
+
1864
1375
  bl_label: typing.Any
1376
+ """ """
1377
+
1865
1378
  bl_options: typing.Any
1379
+ """ """
1380
+
1866
1381
  bl_rna: typing.Any
1382
+ """ """
1383
+
1867
1384
  id_data: typing.Any
1385
+ """ """
1386
+
1868
1387
  preset_menu: typing.Any
1388
+ """ """
1389
+
1869
1390
  preset_subdir: typing.Any
1391
+ """ """
1870
1392
 
1871
1393
  def as_filename(self, name):
1872
1394
  """
1873
1395
 
1874
1396
  :param name:
1875
- :type name:
1876
1397
  """
1877
1398
  ...
1878
1399
 
1879
1400
  def as_keywords(self, ignore):
1880
1401
  """
1881
1402
 
1882
- :param self:
1883
- :type self:
1884
1403
  :param ignore:
1885
- :type ignore:
1886
1404
  """
1887
1405
  ...
1888
1406
 
1889
- def as_pointer(self): ...
1890
- def bl_rna_get_subclass(self): ...
1891
- def bl_rna_get_subclass_py(self): ...
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
+
1892
1419
  def check(self, _context):
1893
1420
  """
1894
1421
 
1895
- :param self:
1896
- :type self:
1897
1422
  :param _context:
1898
- :type _context:
1899
1423
  """
1900
1424
  ...
1901
1425
 
1902
- def driver_add(self): ...
1903
- def driver_remove(self): ...
1426
+ def driver_add(self):
1427
+ """ """
1428
+ ...
1429
+
1430
+ def driver_remove(self):
1431
+ """ """
1432
+ ...
1433
+
1904
1434
  def execute(self, context):
1905
1435
  """
1906
1436
 
1907
- :param self:
1908
- :type self:
1909
1437
  :param context:
1910
- :type context:
1911
1438
  """
1912
1439
  ...
1913
1440
 
1914
- def get(self): ...
1915
- def id_properties_clear(self): ...
1916
- def id_properties_ensure(self): ...
1917
- def id_properties_ui(self): ...
1918
- def invoke(self, context, event):
1919
- """
1441
+ def get(self):
1442
+ """ """
1443
+ ...
1920
1444
 
1921
- :param self:
1922
- :type self:
1923
- :param context:
1924
- :type context:
1925
- :param event:
1926
- :type event:
1927
- """
1445
+ def id_properties_clear(self):
1446
+ """ """
1928
1447
  ...
1929
1448
 
1930
- def is_property_hidden(self): ...
1931
- def is_property_overridable_library(self): ...
1932
- def is_property_readonly(self): ...
1933
- def is_property_set(self): ...
1934
- def items(self): ...
1935
- def keyframe_delete(self): ...
1936
- def keyframe_insert(self): ...
1937
- def keys(self): ...
1938
- def path_from_id(self): ...
1939
- def path_resolve(self): ...
1940
- def poll(self, context):
1941
- """
1449
+ def id_properties_ensure(self):
1450
+ """ """
1451
+ ...
1942
1452
 
1943
- :param context:
1944
- :type context:
1945
- """
1453
+ def id_properties_ui(self):
1454
+ """ """
1946
1455
  ...
1947
1456
 
1948
- def poll_message_set(self): ...
1949
- def pop(self): ...
1950
- def post_cb(self, context):
1457
+ def invoke(self, context, _event):
1951
1458
  """
1952
1459
 
1953
- :param self:
1954
- :type self:
1955
1460
  :param context:
1956
- :type context:
1461
+ :param _event:
1957
1462
  """
1958
1463
  ...
1959
1464
 
1960
- def pre_cb(self, context):
1961
- """
1465
+ def is_property_hidden(self):
1466
+ """ """
1467
+ ...
1962
1468
 
1963
- :param self:
1964
- :type self:
1965
- :param context:
1966
- :type context:
1967
- """
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
+ """ """
1968
1491
  ...
1969
1492
 
1970
- def property_overridable_library_set(self): ...
1971
- def property_unset(self): ...
1972
- def type_recast(self): ...
1973
- def values(self): ...
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
+ """ """
1531
+
1532
+ bl_idname: typing.Any
1533
+ """ """
1534
+
1535
+ bl_label: typing.Any
1536
+ """ """
1537
+
1538
+ bl_options: typing.Any
1539
+ """ """
1540
+
1541
+ bl_rna: typing.Any
1542
+ """ """
1543
+
1544
+ id_data: typing.Any
1545
+ """ """
1546
+
1547
+ preset_menu: typing.Any
1548
+ """ """
1549
+
1550
+ preset_subdir: 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
+ """ """
1699
+
1700
+ bl_idname: typing.Any
1701
+ """ """
1702
+
1703
+ bl_label: typing.Any
1704
+ """ """
1705
+
1706
+ bl_options: typing.Any
1707
+ """ """
1708
+
1709
+ bl_rna: typing.Any
1710
+ """ """
1711
+
1712
+ id_data: typing.Any
1713
+ """ """
1714
+
1715
+ preset_defines: typing.Any
1716
+ """ """
1717
+
1718
+ preset_menu: typing.Any
1719
+ """ """
1720
+
1721
+ preset_subdir: typing.Any
1722
+ """ """
1723
+
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
+ """ """
2382
+
2383
+ id_data: typing.Any
2384
+ """ """
2385
+
2386
+ preset_defines: typing.Any
2387
+ """ """
2388
+
2389
+ preset_menu: typing.Any
2390
+ """ """
2391
+
2392
+ preset_subdir: typing.Any
2393
+ """ """
2394
+
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
+ """ """
2536
+
2537
+ bl_idname: typing.Any
2538
+ """ """
2539
+
2540
+ bl_label: typing.Any
2541
+ """ """
2542
+
2543
+ bl_options: typing.Any
2544
+ """ """
2545
+
2546
+ bl_rna: typing.Any
2547
+ """ """
2548
+
2549
+ id_data: typing.Any
2550
+ """ """
2551
+
2552
+ preset_defines: typing.Any
2553
+ """ """
2554
+
2555
+ preset_menu: typing.Any
2556
+ """ """
2557
+
2558
+ preset_subdir: typing.Any
2559
+ """ """
2560
+
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
+ ...
3652
+
3653
+ def values(self):
3654
+ """ """
3655
+ ...