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