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