fake-bpy-module 20240224__py3-none-any.whl → 20240326__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (293) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +36 -6
  3. aud/__init__.pyi +132 -125
  4. bgl/__init__.pyi +2545 -546
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +24 -2
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +53 -6
  15. bl_i18n_utils/utils/__init__.pyi +332 -44
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +171 -37
  27. bl_operators/anim/__init__.pyi +1065 -226
  28. bl_operators/assets/__init__.pyi +427 -92
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1342 -287
  31. bl_operators/console/__init__.pyi +647 -140
  32. bl_operators/constraint/__init__.pyi +524 -112
  33. bl_operators/file/__init__.pyi +396 -84
  34. bl_operators/freestyle/__init__.pyi +532 -113
  35. bl_operators/geometry_nodes/__init__.pyi +2412 -596
  36. bl_operators/image/__init__.pyi +380 -82
  37. bl_operators/mesh/__init__.pyi +401 -85
  38. bl_operators/node/__init__.pyi +1756 -384
  39. bl_operators/object/__init__.pyi +2022 -552
  40. bl_operators/object_align/__init__.pyi +145 -31
  41. bl_operators/object_quick_effects/__init__.pyi +555 -124
  42. bl_operators/object_randomize_transform/__init__.pyi +136 -32
  43. bl_operators/presets/__init__.pyi +3516 -708
  44. bl_operators/rigidbody/__init__.pyi +401 -85
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
  46. bl_operators/sequencer/__init__.pyi +731 -149
  47. bl_operators/spreadsheet/__init__.pyi +145 -30
  48. bl_operators/userpref/__init__.pyi +3416 -824
  49. bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
  50. bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
  51. bl_operators/uvcalc_transform/__init__.pyi +344 -73
  52. bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
  53. bl_operators/view3d/__init__.pyi +697 -146
  54. bl_operators/wm/__init__.pyi +6287 -1533
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +504 -106
  59. bl_ui/anim/__init__.pyi +164 -33
  60. bl_ui/asset_shelf/__init__.pyi +146 -31
  61. bl_ui/generic_ui_list/__init__.pyi +471 -99
  62. bl_ui/node_add_menu/__init__.pyi +196 -40
  63. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
  64. bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
  65. bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
  66. bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
  67. bl_ui/properties_animviz/__init__.pyi +32 -2
  68. bl_ui/properties_collection/__init__.pyi +787 -179
  69. bl_ui/properties_constraint/__init__.pyi +28635 -5523
  70. bl_ui/properties_data_armature/__init__.pyi +1905 -448
  71. bl_ui/properties_data_bone/__init__.pyi +1560 -336
  72. bl_ui/properties_data_camera/__init__.pyi +2269 -494
  73. bl_ui/properties_data_curve/__init__.pyi +2362 -534
  74. bl_ui/properties_data_curves/__init__.pyi +951 -203
  75. bl_ui/properties_data_empty/__init__.pyi +317 -69
  76. bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
  78. bl_ui/properties_data_lattice/__init__.pyi +472 -104
  79. bl_ui/properties_data_light/__init__.pyi +1570 -337
  80. bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
  81. bl_ui/properties_data_mesh/__init__.pyi +3205 -767
  82. bl_ui/properties_data_metaball/__init__.pyi +774 -170
  83. bl_ui/properties_data_modifier/__init__.pyi +1554 -328
  84. bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
  85. bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
  86. bl_ui/properties_data_speaker/__init__.pyi +782 -168
  87. bl_ui/properties_data_volume/__init__.pyi +1243 -281
  88. bl_ui/properties_freestyle/__init__.pyi +4071 -1030
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
  90. bl_ui/properties_mask_common/__init__.pyi +1256 -249
  91. bl_ui/properties_material/__init__.pyi +2351 -542
  92. bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
  93. bl_ui/properties_object/__init__.pyi +2179 -512
  94. bl_ui/properties_output/__init__.pyi +2956 -705
  95. bl_ui/properties_paint_common/__init__.pyi +947 -140
  96. bl_ui/properties_particle/__init__.pyi +8322 -1970
  97. bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
  98. bl_ui/properties_physics_common/__init__.pyi +200 -44
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
  100. bl_ui/properties_physics_field/__init__.pyi +1695 -364
  101. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
  105. bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
  106. bl_ui/properties_render/__init__.pyi +8312 -1933
  107. bl_ui/properties_scene/__init__.pyi +2211 -539
  108. bl_ui/properties_texture/__init__.pyi +4185 -1013
  109. bl_ui/properties_view_layer/__init__.pyi +2803 -664
  110. bl_ui/properties_workspace/__init__.pyi +626 -148
  111. bl_ui/properties_world/__init__.pyi +1092 -234
  112. bl_ui/space_clip/__init__.pyi +11475 -2805
  113. bl_ui/space_console/__init__.pyi +967 -202
  114. bl_ui/space_dopesheet/__init__.pyi +4260 -966
  115. bl_ui/space_filebrowser/__init__.pyi +4852 -1187
  116. bl_ui/space_graph/__init__.pyi +3251 -702
  117. bl_ui/space_image/__init__.pyi +12219 -2968
  118. bl_ui/space_info/__init__.pyi +964 -200
  119. bl_ui/space_nla/__init__.pyi +2756 -584
  120. bl_ui/space_node/__init__.pyi +5661 -1265
  121. bl_ui/space_outliner/__init__.pyi +2294 -478
  122. bl_ui/space_properties/__init__.pyi +417 -92
  123. bl_ui/space_sequencer/__init__.pyi +12436 -3009
  124. bl_ui/space_spreadsheet/__init__.pyi +184 -36
  125. bl_ui/space_statusbar/__init__.pyi +135 -30
  126. bl_ui/space_text/__init__.pyi +2556 -542
  127. bl_ui/space_time/__init__.pyi +1151 -243
  128. bl_ui/space_toolsystem_common/__init__.pyi +368 -66
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
  130. bl_ui/space_topbar/__init__.pyi +4214 -887
  131. bl_ui/space_userpref/__init__.pyi +13920 -3468
  132. bl_ui/space_view3d/__init__.pyi +43701 -10599
  133. bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
  134. bl_ui/utils/__init__.pyi +42 -4
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +268 -262
  143. bmesh/utils/__init__.pyi +55 -55
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +350 -305
  152. bpy/ops/anim/__init__.pyi +464 -426
  153. bpy/ops/armature/__init__.pyi +392 -360
  154. bpy/ops/asset/__init__.pyi +166 -129
  155. bpy/ops/boid/__init__.pyi +64 -37
  156. bpy/ops/brush/__init__.pyi +78 -72
  157. bpy/ops/buttons/__init__.pyi +136 -122
  158. bpy/ops/cachefile/__init__.pyi +128 -123
  159. bpy/ops/camera/__init__.pyi +22 -24
  160. bpy/ops/clip/__init__.pyi +844 -735
  161. bpy/ops/cloth/__init__.pyi +10 -11
  162. bpy/ops/collection/__init__.pyi +38 -38
  163. bpy/ops/console/__init__.pyi +170 -141
  164. bpy/ops/constraint/__init__.pyi +156 -159
  165. bpy/ops/curve/__init__.pyi +518 -461
  166. bpy/ops/curves/__init__.pyi +188 -159
  167. bpy/ops/cycles/__init__.pyi +20 -18
  168. bpy/ops/dpaint/__init__.pyi +40 -30
  169. bpy/ops/ed/__init__.pyi +136 -107
  170. bpy/ops/export_anim/__init__.pyi +18 -19
  171. bpy/ops/export_mesh/__init__.pyi +26 -27
  172. bpy/ops/export_scene/__init__.pyi +313 -334
  173. bpy/ops/file/__init__.pyi +394 -304
  174. bpy/ops/fluid/__init__.pyi +114 -63
  175. bpy/ops/font/__init__.pyi +272 -245
  176. bpy/ops/geometry/__init__.pyi +92 -87
  177. bpy/ops/gizmogroup/__init__.pyi +24 -21
  178. bpy/ops/gpencil/__init__.pyi +1530 -1476
  179. bpy/ops/graph/__init__.pyi +680 -659
  180. bpy/ops/grease_pencil/__init__.pyi +510 -390
  181. bpy/ops/image/__init__.pyi +650 -603
  182. bpy/ops/import_anim/__init__.pyi +26 -27
  183. bpy/ops/import_curve/__init__.pyi +6 -7
  184. bpy/ops/import_mesh/__init__.pyi +18 -21
  185. bpy/ops/import_scene/__init__.pyi +86 -95
  186. bpy/ops/info/__init__.pyi +68 -55
  187. bpy/ops/lattice/__init__.pyi +70 -63
  188. bpy/ops/marker/__init__.pyi +110 -111
  189. bpy/ops/mask/__init__.pyi +352 -308
  190. bpy/ops/material/__init__.pyi +24 -12
  191. bpy/ops/mball/__init__.pyi +72 -75
  192. bpy/ops/mesh/__init__.pyi +2052 -2088
  193. bpy/ops/nla/__init__.pyi +369 -313
  194. bpy/ops/node/__init__.pyi +944 -805
  195. bpy/ops/object/__init__.pyi +2662 -2461
  196. bpy/ops/outliner/__init__.pyi +582 -431
  197. bpy/ops/paint/__init__.pyi +605 -516
  198. bpy/ops/paintcurve/__init__.pyi +72 -60
  199. bpy/ops/palette/__init__.pyi +54 -46
  200. bpy/ops/particle/__init__.pyi +302 -245
  201. bpy/ops/pose/__init__.pyi +366 -330
  202. bpy/ops/poselib/__init__.pyi +78 -64
  203. bpy/ops/preferences/__init__.pyi +361 -341
  204. bpy/ops/ptcache/__init__.pyi +56 -38
  205. bpy/ops/render/__init__.pyi +120 -117
  206. bpy/ops/rigidbody/__init__.pyi +114 -97
  207. bpy/ops/scene/__init__.pyi +302 -240
  208. bpy/ops/screen/__init__.pyi +414 -363
  209. bpy/ops/script/__init__.pyi +20 -18
  210. bpy/ops/sculpt/__init__.pyi +414 -452
  211. bpy/ops/sculpt_curves/__init__.pyi +42 -43
  212. bpy/ops/sequencer/__init__.pyi +1094 -1053
  213. bpy/ops/sound/__init__.pyi +214 -206
  214. bpy/ops/spreadsheet/__init__.pyi +34 -28
  215. bpy/ops/surface/__init__.pyi +108 -114
  216. bpy/ops/text/__init__.pyi +432 -350
  217. bpy/ops/text_editor/__init__.pyi +10 -11
  218. bpy/ops/texture/__init__.pyi +32 -21
  219. bpy/ops/transform/__init__.pyi +801 -854
  220. bpy/ops/ui/__init__.pyi +254 -185
  221. bpy/ops/uilist/__init__.pyi +20 -23
  222. bpy/ops/uv/__init__.pyi +618 -626
  223. bpy/ops/view2d/__init__.pyi +162 -161
  224. bpy/ops/view3d/__init__.pyi +669 -658
  225. bpy/ops/wm/__init__.pyi +2433 -2415
  226. bpy/ops/workspace/__init__.pyi +54 -31
  227. bpy/ops/world/__init__.pyi +8 -4
  228. bpy/path/__init__.pyi +111 -68
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86789 -85719
  231. bpy/utils/__init__.pyi +265 -123
  232. bpy/utils/previews/__init__.pyi +103 -17
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/__init__.pyi +0 -4
  235. bpy_extras/anim_utils/__init__.pyi +11 -46
  236. bpy_extras/asset_utils/__init__.pyi +3 -12
  237. bpy_extras/id_map_utils/__init__.pyi +0 -2
  238. bpy_extras/image_utils/__init__.pyi +2 -2
  239. bpy_extras/io_utils/__init__.pyi +30 -27
  240. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  241. bpy_extras/mesh_utils/__init__.pyi +18 -18
  242. bpy_extras/node_utils/__init__.pyi +4 -3
  243. bpy_extras/object_utils/__init__.pyi +25 -26
  244. bpy_extras/view3d_utils/__init__.pyi +33 -38
  245. bpy_restrict_state/__init__.pyi +14 -1
  246. bpy_types/__init__.pyi +3873 -997
  247. console_python/__init__.pyi +41 -7
  248. console_shell/__init__.pyi +24 -5
  249. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  250. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  251. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  252. freestyle/chainingiterators/__init__.pyi +50 -52
  253. freestyle/functions/__init__.pyi +303 -207
  254. freestyle/predicates/__init__.pyi +299 -115
  255. freestyle/shaders/__init__.pyi +49 -80
  256. freestyle/types/__init__.pyi +465 -472
  257. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  258. freestyle/utils/__init__.pyi +28 -18
  259. gpu/capabilities/__init__.pyi +27 -19
  260. gpu/matrix/__init__.pyi +14 -16
  261. gpu/platform/__init__.pyi +5 -5
  262. gpu/shader/__init__.pyi +2 -5
  263. gpu/state/__init__.pyi +1 -1
  264. gpu/texture/__init__.pyi +3 -3
  265. gpu/types/__init__.pyi +54 -85
  266. gpu_extras/batch/__init__.pyi +27 -5
  267. gpu_extras/presets/__init__.pyi +52 -14
  268. graphviz_export/__init__.pyi +9 -2
  269. idprop/types/__init__.pyi +36 -12
  270. imbuf/__init__.pyi +8 -9
  271. imbuf/types/__init__.pyi +8 -15
  272. keyingsets_builtins/__init__.pyi +3149 -701
  273. keyingsets_utils/__init__.pyi +69 -14
  274. mathutils/__init__.pyi +502 -427
  275. mathutils/bvhtree/__init__.pyi +28 -32
  276. mathutils/geometry/__init__.pyi +177 -186
  277. mathutils/kdtree/__init__.pyi +16 -18
  278. mathutils/noise/__init__.pyi +47 -48
  279. nodeitems_builtins/__init__.pyi +50 -10
  280. nodeitems_utils/__init__.pyi +58 -10
  281. rna_info/__init__.pyi +230 -26
  282. rna_keymap_ui/__init__.pyi +29 -6
  283. rna_prop_ui/__init__.pyi +69 -12
  284. rna_xml/__init__.pyi +29 -6
  285. sys_info/__init__.pyi +4 -1
  286. bpy_extras/bmesh_utils/__init__.pyi +0 -6
  287. bpy_extras/extensions/__init__.pyi +0 -4
  288. bpy_extras/extensions/junction_module/__init__.pyi +0 -12
  289. bpy_extras/node_shader_utils/__init__.pyi +0 -131
  290. bpy_extras/wm_utils/__init__.pyi +0 -4
  291. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
  292. fake_bpy_module-20240224.dist-info/RECORD +0 -349
  293. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
@@ -1,669 +1,2497 @@
1
1
  import typing
2
2
  import bpy_types
3
- import rna_prop_ui
4
3
 
5
4
  GenericType = typing.TypeVar("GenericType")
6
5
 
7
- class CurveButtonsPanel:
8
- bl_context: typing.Any
9
- bl_region_type: typing.Any
10
- bl_space_type: typing.Any
11
-
12
- def poll(self, context): ...
13
-
14
6
  class CurveButtonsPanelActive(CurveButtonsPanel):
7
+ """ """
8
+
15
9
  bl_context: typing.Any
10
+ """ """
11
+
16
12
  bl_region_type: typing.Any
13
+ """ """
14
+
17
15
  bl_space_type: typing.Any
16
+ """ """
17
+
18
+ def poll(self, context):
19
+ """
18
20
 
19
- def poll(self, context): ...
21
+ :param context:
22
+ """
23
+ ...
20
24
 
21
25
  class CurveButtonsPanelCurve(CurveButtonsPanel):
26
+ """ """
27
+
22
28
  bl_context: typing.Any
29
+ """ """
30
+
23
31
  bl_region_type: typing.Any
32
+ """ """
33
+
24
34
  bl_space_type: typing.Any
35
+ """ """
36
+
37
+ def poll(self, context):
38
+ """
25
39
 
26
- def poll(self, context): ...
40
+ :param context:
41
+ """
42
+ ...
27
43
 
28
44
  class CurveButtonsPanelSurface(CurveButtonsPanel):
45
+ """ """
46
+
29
47
  bl_context: typing.Any
48
+ """ """
49
+
30
50
  bl_region_type: typing.Any
51
+ """ """
52
+
31
53
  bl_space_type: typing.Any
54
+ """ """
55
+
56
+ def poll(self, context):
57
+ """
32
58
 
33
- def poll(self, context): ...
59
+ :param context:
60
+ """
61
+ ...
34
62
 
35
63
  class CurveButtonsPanelText(CurveButtonsPanel):
64
+ """ """
65
+
36
66
  bl_context: typing.Any
67
+ """ """
68
+
37
69
  bl_region_type: typing.Any
70
+ """ """
71
+
38
72
  bl_space_type: typing.Any
73
+ """ """
74
+
75
+ def poll(self, context):
76
+ """
39
77
 
40
- def poll(self, context): ...
78
+ :param context:
79
+ """
80
+ ...
81
+
82
+ class DATA_PT_active_spline(bpy_types._GenericUI):
83
+ """ """
41
84
 
42
- class DATA_PT_context_curve(CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
43
85
  bl_context: typing.Any
86
+ """ """
87
+
44
88
  bl_label: typing.Any
89
+ """ """
90
+
45
91
  bl_options: typing.Any
92
+ """ """
93
+
46
94
  bl_region_type: typing.Any
95
+ """ """
96
+
47
97
  bl_rna: typing.Any
98
+ """ """
99
+
48
100
  bl_space_type: typing.Any
101
+ """ """
102
+
49
103
  id_data: typing.Any
104
+ """ """
105
+
106
+ def append(self, draw_func):
107
+ """
108
+
109
+ :param draw_func:
110
+ """
111
+ ...
112
+
113
+ def as_pointer(self):
114
+ """ """
115
+ ...
116
+
117
+ def bl_rna_get_subclass(self):
118
+ """ """
119
+ ...
120
+
121
+ def bl_rna_get_subclass_py(self):
122
+ """ """
123
+ ...
124
+
125
+ def draw(self, context):
126
+ """
127
+
128
+ :param context:
129
+ """
130
+ ...
131
+
132
+ def driver_add(self):
133
+ """ """
134
+ ...
135
+
136
+ def driver_remove(self):
137
+ """ """
138
+ ...
139
+
140
+ def get(self):
141
+ """ """
142
+ ...
143
+
144
+ def id_properties_clear(self):
145
+ """ """
146
+ ...
147
+
148
+ def id_properties_ensure(self):
149
+ """ """
150
+ ...
151
+
152
+ def id_properties_ui(self):
153
+ """ """
154
+ ...
155
+
156
+ def is_extended(self):
157
+ """ """
158
+ ...
159
+
160
+ def is_property_hidden(self):
161
+ """ """
162
+ ...
163
+
164
+ def is_property_overridable_library(self):
165
+ """ """
166
+ ...
167
+
168
+ def is_property_readonly(self):
169
+ """ """
170
+ ...
171
+
172
+ def is_property_set(self):
173
+ """ """
174
+ ...
175
+
176
+ def items(self):
177
+ """ """
178
+ ...
179
+
180
+ def keyframe_delete(self):
181
+ """ """
182
+ ...
183
+
184
+ def keyframe_insert(self):
185
+ """ """
186
+ ...
187
+
188
+ def keys(self):
189
+ """ """
190
+ ...
191
+
192
+ def path_from_id(self):
193
+ """ """
194
+ ...
195
+
196
+ def path_resolve(self):
197
+ """ """
198
+ ...
199
+
200
+ def poll(self, context):
201
+ """
202
+
203
+ :param context:
204
+ """
205
+ ...
206
+
207
+ def pop(self):
208
+ """ """
209
+ ...
210
+
211
+ def prepend(self, draw_func):
212
+ """
213
+
214
+ :param draw_func:
215
+ """
216
+ ...
217
+
218
+ def property_overridable_library_set(self):
219
+ """ """
220
+ ...
221
+
222
+ def property_unset(self):
223
+ """ """
224
+ ...
225
+
226
+ def remove(self, draw_func):
227
+ """
228
+
229
+ :param draw_func:
230
+ """
231
+ ...
232
+
233
+ def type_recast(self):
234
+ """ """
235
+ ...
236
+
237
+ def values(self):
238
+ """ """
239
+ ...
240
+
241
+ class DATA_PT_context_curve(bpy_types._GenericUI):
242
+ """ """
50
243
 
51
- def append(self, draw_func): ...
52
- def as_pointer(self): ...
53
- def bl_rna_get_subclass(self): ...
54
- def bl_rna_get_subclass_py(self): ...
55
- def draw(self, context): ...
56
- def driver_add(self): ...
57
- def driver_remove(self): ...
58
- def get(self): ...
59
- def id_properties_clear(self): ...
60
- def id_properties_ensure(self): ...
61
- def id_properties_ui(self): ...
62
- def is_extended(self): ...
63
- def is_property_hidden(self): ...
64
- def is_property_overridable_library(self): ...
65
- def is_property_readonly(self): ...
66
- def is_property_set(self): ...
67
- def items(self): ...
68
- def keyframe_delete(self): ...
69
- def keyframe_insert(self): ...
70
- def keys(self): ...
71
- def path_from_id(self): ...
72
- def path_resolve(self): ...
73
- def poll(self, context): ...
74
- def pop(self): ...
75
- def prepend(self, draw_func): ...
76
- def property_overridable_library_set(self): ...
77
- def property_unset(self): ...
78
- def remove(self, draw_func): ...
79
- def type_recast(self): ...
80
- def values(self): ...
81
-
82
- class DATA_PT_curve_texture_space(
83
- CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
84
- ):
85
- COMPAT_ENGINES: typing.Any
86
244
  bl_context: typing.Any
245
+ """ """
246
+
87
247
  bl_label: typing.Any
248
+ """ """
249
+
88
250
  bl_options: typing.Any
251
+ """ """
252
+
89
253
  bl_region_type: typing.Any
254
+ """ """
255
+
90
256
  bl_rna: typing.Any
257
+ """ """
258
+
91
259
  bl_space_type: typing.Any
260
+ """ """
261
+
92
262
  id_data: typing.Any
263
+ """ """
264
+
265
+ def append(self, draw_func):
266
+ """
267
+
268
+ :param draw_func:
269
+ """
270
+ ...
271
+
272
+ def as_pointer(self):
273
+ """ """
274
+ ...
275
+
276
+ def bl_rna_get_subclass(self):
277
+ """ """
278
+ ...
279
+
280
+ def bl_rna_get_subclass_py(self):
281
+ """ """
282
+ ...
283
+
284
+ def draw(self, context):
285
+ """
286
+
287
+ :param context:
288
+ """
289
+ ...
290
+
291
+ def driver_add(self):
292
+ """ """
293
+ ...
294
+
295
+ def driver_remove(self):
296
+ """ """
297
+ ...
298
+
299
+ def get(self):
300
+ """ """
301
+ ...
302
+
303
+ def id_properties_clear(self):
304
+ """ """
305
+ ...
306
+
307
+ def id_properties_ensure(self):
308
+ """ """
309
+ ...
310
+
311
+ def id_properties_ui(self):
312
+ """ """
313
+ ...
314
+
315
+ def is_extended(self):
316
+ """ """
317
+ ...
318
+
319
+ def is_property_hidden(self):
320
+ """ """
321
+ ...
322
+
323
+ def is_property_overridable_library(self):
324
+ """ """
325
+ ...
326
+
327
+ def is_property_readonly(self):
328
+ """ """
329
+ ...
330
+
331
+ def is_property_set(self):
332
+ """ """
333
+ ...
334
+
335
+ def items(self):
336
+ """ """
337
+ ...
338
+
339
+ def keyframe_delete(self):
340
+ """ """
341
+ ...
342
+
343
+ def keyframe_insert(self):
344
+ """ """
345
+ ...
346
+
347
+ def keys(self):
348
+ """ """
349
+ ...
350
+
351
+ def path_from_id(self):
352
+ """ """
353
+ ...
354
+
355
+ def path_resolve(self):
356
+ """ """
357
+ ...
358
+
359
+ def poll(self, context):
360
+ """
361
+
362
+ :param context:
363
+ """
364
+ ...
365
+
366
+ def pop(self):
367
+ """ """
368
+ ...
369
+
370
+ def prepend(self, draw_func):
371
+ """
372
+
373
+ :param draw_func:
374
+ """
375
+ ...
376
+
377
+ def property_overridable_library_set(self):
378
+ """ """
379
+ ...
380
+
381
+ def property_unset(self):
382
+ """ """
383
+ ...
384
+
385
+ def remove(self, draw_func):
386
+ """
387
+
388
+ :param draw_func:
389
+ """
390
+ ...
391
+
392
+ def type_recast(self):
393
+ """ """
394
+ ...
395
+
396
+ def values(self):
397
+ """ """
398
+ ...
399
+
400
+ class DATA_PT_curve_texture_space(bpy_types._GenericUI):
401
+ """ """
93
402
 
94
- def append(self, draw_func): ...
95
- def as_pointer(self): ...
96
- def bl_rna_get_subclass(self): ...
97
- def bl_rna_get_subclass_py(self): ...
98
- def draw(self, context): ...
99
- def driver_add(self): ...
100
- def driver_remove(self): ...
101
- def get(self): ...
102
- def id_properties_clear(self): ...
103
- def id_properties_ensure(self): ...
104
- def id_properties_ui(self): ...
105
- def is_extended(self): ...
106
- def is_property_hidden(self): ...
107
- def is_property_overridable_library(self): ...
108
- def is_property_readonly(self): ...
109
- def is_property_set(self): ...
110
- def items(self): ...
111
- def keyframe_delete(self): ...
112
- def keyframe_insert(self): ...
113
- def keys(self): ...
114
- def path_from_id(self): ...
115
- def path_resolve(self): ...
116
- def poll(self, context): ...
117
- def pop(self): ...
118
- def prepend(self, draw_func): ...
119
- def property_overridable_library_set(self): ...
120
- def property_unset(self): ...
121
- def remove(self, draw_func): ...
122
- def type_recast(self): ...
123
- def values(self): ...
124
-
125
- class DATA_PT_custom_props_curve(
126
- CurveButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types.Panel, bpy_types._GenericUI
127
- ):
128
403
  COMPAT_ENGINES: typing.Any
404
+ """ """
405
+
129
406
  bl_context: typing.Any
407
+ """ """
408
+
130
409
  bl_label: typing.Any
410
+ """ """
411
+
131
412
  bl_options: typing.Any
132
- bl_order: typing.Any
133
- bl_region_type: typing.Any
134
- bl_rna: typing.Any
135
- bl_space_type: typing.Any
136
- id_data: typing.Any
413
+ """ """
137
414
 
138
- def append(self, draw_func): ...
139
- def as_pointer(self): ...
140
- def bl_rna_get_subclass(self): ...
141
- def bl_rna_get_subclass_py(self): ...
142
- def draw(self, context): ...
143
- def driver_add(self): ...
144
- def driver_remove(self): ...
145
- def get(self): ...
146
- def id_properties_clear(self): ...
147
- def id_properties_ensure(self): ...
148
- def id_properties_ui(self): ...
149
- def is_extended(self): ...
150
- def is_property_hidden(self): ...
151
- def is_property_overridable_library(self): ...
152
- def is_property_readonly(self): ...
153
- def is_property_set(self): ...
154
- def items(self): ...
155
- def keyframe_delete(self): ...
156
- def keyframe_insert(self): ...
157
- def keys(self): ...
158
- def path_from_id(self): ...
159
- def path_resolve(self): ...
160
- def poll(self, context): ...
161
- def pop(self): ...
162
- def prepend(self, draw_func): ...
163
- def property_overridable_library_set(self): ...
164
- def property_unset(self): ...
165
- def remove(self, draw_func): ...
166
- def type_recast(self): ...
167
- def values(self): ...
168
-
169
- class DATA_PT_shape_curve(CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
170
- bl_context: typing.Any
171
- bl_label: typing.Any
172
415
  bl_region_type: typing.Any
416
+ """ """
417
+
173
418
  bl_rna: typing.Any
419
+ """ """
420
+
174
421
  bl_space_type: typing.Any
422
+ """ """
423
+
175
424
  id_data: typing.Any
425
+ """ """
426
+
427
+ def append(self, draw_func):
428
+ """
429
+
430
+ :param draw_func:
431
+ """
432
+ ...
433
+
434
+ def as_pointer(self):
435
+ """ """
436
+ ...
437
+
438
+ def bl_rna_get_subclass(self):
439
+ """ """
440
+ ...
441
+
442
+ def bl_rna_get_subclass_py(self):
443
+ """ """
444
+ ...
445
+
446
+ def draw(self, context):
447
+ """
448
+
449
+ :param context:
450
+ """
451
+ ...
452
+
453
+ def driver_add(self):
454
+ """ """
455
+ ...
456
+
457
+ def driver_remove(self):
458
+ """ """
459
+ ...
460
+
461
+ def get(self):
462
+ """ """
463
+ ...
464
+
465
+ def id_properties_clear(self):
466
+ """ """
467
+ ...
468
+
469
+ def id_properties_ensure(self):
470
+ """ """
471
+ ...
472
+
473
+ def id_properties_ui(self):
474
+ """ """
475
+ ...
476
+
477
+ def is_extended(self):
478
+ """ """
479
+ ...
480
+
481
+ def is_property_hidden(self):
482
+ """ """
483
+ ...
484
+
485
+ def is_property_overridable_library(self):
486
+ """ """
487
+ ...
488
+
489
+ def is_property_readonly(self):
490
+ """ """
491
+ ...
492
+
493
+ def is_property_set(self):
494
+ """ """
495
+ ...
496
+
497
+ def items(self):
498
+ """ """
499
+ ...
500
+
501
+ def keyframe_delete(self):
502
+ """ """
503
+ ...
504
+
505
+ def keyframe_insert(self):
506
+ """ """
507
+ ...
508
+
509
+ def keys(self):
510
+ """ """
511
+ ...
512
+
513
+ def path_from_id(self):
514
+ """ """
515
+ ...
516
+
517
+ def path_resolve(self):
518
+ """ """
519
+ ...
520
+
521
+ def poll(self, context):
522
+ """
523
+
524
+ :param context:
525
+ """
526
+ ...
527
+
528
+ def pop(self):
529
+ """ """
530
+ ...
531
+
532
+ def prepend(self, draw_func):
533
+ """
534
+
535
+ :param draw_func:
536
+ """
537
+ ...
538
+
539
+ def property_overridable_library_set(self):
540
+ """ """
541
+ ...
542
+
543
+ def property_unset(self):
544
+ """ """
545
+ ...
546
+
547
+ def remove(self, draw_func):
548
+ """
549
+
550
+ :param draw_func:
551
+ """
552
+ ...
553
+
554
+ def type_recast(self):
555
+ """ """
556
+ ...
557
+
558
+ def values(self):
559
+ """ """
560
+ ...
561
+
562
+ class DATA_PT_custom_props_curve(bpy_types._GenericUI):
563
+ """ """
564
+
565
+ COMPAT_ENGINES: typing.Any
566
+ """ """
176
567
 
177
- def append(self, draw_func): ...
178
- def as_pointer(self): ...
179
- def bl_rna_get_subclass(self): ...
180
- def bl_rna_get_subclass_py(self): ...
181
- def draw(self, context): ...
182
- def driver_add(self): ...
183
- def driver_remove(self): ...
184
- def get(self): ...
185
- def id_properties_clear(self): ...
186
- def id_properties_ensure(self): ...
187
- def id_properties_ui(self): ...
188
- def is_extended(self): ...
189
- def is_property_hidden(self): ...
190
- def is_property_overridable_library(self): ...
191
- def is_property_readonly(self): ...
192
- def is_property_set(self): ...
193
- def items(self): ...
194
- def keyframe_delete(self): ...
195
- def keyframe_insert(self): ...
196
- def keys(self): ...
197
- def path_from_id(self): ...
198
- def path_resolve(self): ...
199
- def poll(self, context): ...
200
- def pop(self): ...
201
- def prepend(self, draw_func): ...
202
- def property_overridable_library_set(self): ...
203
- def property_unset(self): ...
204
- def remove(self, draw_func): ...
205
- def type_recast(self): ...
206
- def values(self): ...
207
-
208
- class DATA_PT_active_spline(
209
- CurveButtonsPanelActive, CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
210
- ):
211
568
  bl_context: typing.Any
569
+ """ """
570
+
212
571
  bl_label: typing.Any
572
+ """ """
573
+
213
574
  bl_options: typing.Any
575
+ """ """
576
+
577
+ bl_order: typing.Any
578
+ """ """
579
+
214
580
  bl_region_type: typing.Any
581
+ """ """
582
+
215
583
  bl_rna: typing.Any
584
+ """ """
585
+
216
586
  bl_space_type: typing.Any
587
+ """ """
588
+
217
589
  id_data: typing.Any
590
+ """ """
591
+
592
+ def append(self, draw_func):
593
+ """
594
+
595
+ :param draw_func:
596
+ """
597
+ ...
598
+
599
+ def as_pointer(self):
600
+ """ """
601
+ ...
602
+
603
+ def bl_rna_get_subclass(self):
604
+ """ """
605
+ ...
606
+
607
+ def bl_rna_get_subclass_py(self):
608
+ """ """
609
+ ...
610
+
611
+ def draw(self, context):
612
+ """
613
+
614
+ :param context:
615
+ """
616
+ ...
617
+
618
+ def driver_add(self):
619
+ """ """
620
+ ...
621
+
622
+ def driver_remove(self):
623
+ """ """
624
+ ...
625
+
626
+ def get(self):
627
+ """ """
628
+ ...
629
+
630
+ def id_properties_clear(self):
631
+ """ """
632
+ ...
633
+
634
+ def id_properties_ensure(self):
635
+ """ """
636
+ ...
637
+
638
+ def id_properties_ui(self):
639
+ """ """
640
+ ...
641
+
642
+ def is_extended(self):
643
+ """ """
644
+ ...
645
+
646
+ def is_property_hidden(self):
647
+ """ """
648
+ ...
649
+
650
+ def is_property_overridable_library(self):
651
+ """ """
652
+ ...
653
+
654
+ def is_property_readonly(self):
655
+ """ """
656
+ ...
657
+
658
+ def is_property_set(self):
659
+ """ """
660
+ ...
661
+
662
+ def items(self):
663
+ """ """
664
+ ...
665
+
666
+ def keyframe_delete(self):
667
+ """ """
668
+ ...
669
+
670
+ def keyframe_insert(self):
671
+ """ """
672
+ ...
673
+
674
+ def keys(self):
675
+ """ """
676
+ ...
677
+
678
+ def path_from_id(self):
679
+ """ """
680
+ ...
681
+
682
+ def path_resolve(self):
683
+ """ """
684
+ ...
685
+
686
+ def poll(self, context):
687
+ """
688
+
689
+ :param context:
690
+ """
691
+ ...
692
+
693
+ def pop(self):
694
+ """ """
695
+ ...
696
+
697
+ def prepend(self, draw_func):
698
+ """
699
+
700
+ :param draw_func:
701
+ """
702
+ ...
703
+
704
+ def property_overridable_library_set(self):
705
+ """ """
706
+ ...
707
+
708
+ def property_unset(self):
709
+ """ """
710
+ ...
711
+
712
+ def remove(self, draw_func):
713
+ """
714
+
715
+ :param draw_func:
716
+ """
717
+ ...
718
+
719
+ def type_recast(self):
720
+ """ """
721
+ ...
722
+
723
+ def values(self):
724
+ """ """
725
+ ...
726
+
727
+ class DATA_PT_font(bpy_types._GenericUI):
728
+ """ """
218
729
 
219
- def append(self, draw_func): ...
220
- def as_pointer(self): ...
221
- def bl_rna_get_subclass(self): ...
222
- def bl_rna_get_subclass_py(self): ...
223
- def draw(self, context): ...
224
- def driver_add(self): ...
225
- def driver_remove(self): ...
226
- def get(self): ...
227
- def id_properties_clear(self): ...
228
- def id_properties_ensure(self): ...
229
- def id_properties_ui(self): ...
230
- def is_extended(self): ...
231
- def is_property_hidden(self): ...
232
- def is_property_overridable_library(self): ...
233
- def is_property_readonly(self): ...
234
- def is_property_set(self): ...
235
- def items(self): ...
236
- def keyframe_delete(self): ...
237
- def keyframe_insert(self): ...
238
- def keys(self): ...
239
- def path_from_id(self): ...
240
- def path_resolve(self): ...
241
- def poll(self, context): ...
242
- def pop(self): ...
243
- def prepend(self, draw_func): ...
244
- def property_overridable_library_set(self): ...
245
- def property_unset(self): ...
246
- def remove(self, draw_func): ...
247
- def type_recast(self): ...
248
- def values(self): ...
249
-
250
- class DATA_PT_geometry_curve(
251
- CurveButtonsPanelCurve, CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
252
- ):
253
730
  bl_context: typing.Any
731
+ """ """
732
+
254
733
  bl_label: typing.Any
734
+ """ """
735
+
255
736
  bl_options: typing.Any
737
+ """ """
738
+
256
739
  bl_region_type: typing.Any
740
+ """ """
741
+
257
742
  bl_rna: typing.Any
743
+ """ """
744
+
258
745
  bl_space_type: typing.Any
746
+ """ """
747
+
259
748
  id_data: typing.Any
749
+ """ """
750
+
751
+ def append(self, draw_func):
752
+ """
753
+
754
+ :param draw_func:
755
+ """
756
+ ...
757
+
758
+ def as_pointer(self):
759
+ """ """
760
+ ...
761
+
762
+ def bl_rna_get_subclass(self):
763
+ """ """
764
+ ...
765
+
766
+ def bl_rna_get_subclass_py(self):
767
+ """ """
768
+ ...
769
+
770
+ def draw(self, context):
771
+ """
772
+
773
+ :param context:
774
+ """
775
+ ...
776
+
777
+ def driver_add(self):
778
+ """ """
779
+ ...
780
+
781
+ def driver_remove(self):
782
+ """ """
783
+ ...
784
+
785
+ def get(self):
786
+ """ """
787
+ ...
788
+
789
+ def id_properties_clear(self):
790
+ """ """
791
+ ...
792
+
793
+ def id_properties_ensure(self):
794
+ """ """
795
+ ...
796
+
797
+ def id_properties_ui(self):
798
+ """ """
799
+ ...
800
+
801
+ def is_extended(self):
802
+ """ """
803
+ ...
804
+
805
+ def is_property_hidden(self):
806
+ """ """
807
+ ...
808
+
809
+ def is_property_overridable_library(self):
810
+ """ """
811
+ ...
812
+
813
+ def is_property_readonly(self):
814
+ """ """
815
+ ...
816
+
817
+ def is_property_set(self):
818
+ """ """
819
+ ...
820
+
821
+ def items(self):
822
+ """ """
823
+ ...
824
+
825
+ def keyframe_delete(self):
826
+ """ """
827
+ ...
828
+
829
+ def keyframe_insert(self):
830
+ """ """
831
+ ...
832
+
833
+ def keys(self):
834
+ """ """
835
+ ...
836
+
837
+ def path_from_id(self):
838
+ """ """
839
+ ...
840
+
841
+ def path_resolve(self):
842
+ """ """
843
+ ...
844
+
845
+ def poll(self, context):
846
+ """
847
+
848
+ :param context:
849
+ """
850
+ ...
851
+
852
+ def pop(self):
853
+ """ """
854
+ ...
855
+
856
+ def prepend(self, draw_func):
857
+ """
858
+
859
+ :param draw_func:
860
+ """
861
+ ...
862
+
863
+ def property_overridable_library_set(self):
864
+ """ """
865
+ ...
866
+
867
+ def property_unset(self):
868
+ """ """
869
+ ...
870
+
871
+ def remove(self, draw_func):
872
+ """
873
+
874
+ :param draw_func:
875
+ """
876
+ ...
877
+
878
+ def type_recast(self):
879
+ """ """
880
+ ...
881
+
882
+ def values(self):
883
+ """ """
884
+ ...
885
+
886
+ class DATA_PT_font_transform(bpy_types._GenericUI):
887
+ """ """
260
888
 
261
- def append(self, draw_func): ...
262
- def as_pointer(self): ...
263
- def bl_rna_get_subclass(self): ...
264
- def bl_rna_get_subclass_py(self): ...
265
- def draw(self, context): ...
266
- def driver_add(self): ...
267
- def driver_remove(self): ...
268
- def get(self): ...
269
- def id_properties_clear(self): ...
270
- def id_properties_ensure(self): ...
271
- def id_properties_ui(self): ...
272
- def is_extended(self): ...
273
- def is_property_hidden(self): ...
274
- def is_property_overridable_library(self): ...
275
- def is_property_readonly(self): ...
276
- def is_property_set(self): ...
277
- def items(self): ...
278
- def keyframe_delete(self): ...
279
- def keyframe_insert(self): ...
280
- def keys(self): ...
281
- def path_from_id(self): ...
282
- def path_resolve(self): ...
283
- def poll(self, context): ...
284
- def pop(self): ...
285
- def prepend(self, draw_func): ...
286
- def property_overridable_library_set(self): ...
287
- def property_unset(self): ...
288
- def remove(self, draw_func): ...
289
- def type_recast(self): ...
290
- def values(self): ...
291
-
292
- class DATA_PT_geometry_curve_bevel(
293
- CurveButtonsPanelCurve, CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
294
- ):
295
889
  bl_context: typing.Any
890
+ """ """
891
+
296
892
  bl_label: typing.Any
893
+ """ """
894
+
297
895
  bl_parent_id: typing.Any
896
+ """ """
897
+
298
898
  bl_region_type: typing.Any
899
+ """ """
900
+
299
901
  bl_rna: typing.Any
902
+ """ """
903
+
300
904
  bl_space_type: typing.Any
905
+ """ """
906
+
301
907
  id_data: typing.Any
908
+ """ """
909
+
910
+ def append(self, draw_func):
911
+ """
912
+
913
+ :param draw_func:
914
+ """
915
+ ...
916
+
917
+ def as_pointer(self):
918
+ """ """
919
+ ...
920
+
921
+ def bl_rna_get_subclass(self):
922
+ """ """
923
+ ...
924
+
925
+ def bl_rna_get_subclass_py(self):
926
+ """ """
927
+ ...
928
+
929
+ def draw(self, context):
930
+ """
931
+
932
+ :param context:
933
+ """
934
+ ...
935
+
936
+ def driver_add(self):
937
+ """ """
938
+ ...
939
+
940
+ def driver_remove(self):
941
+ """ """
942
+ ...
943
+
944
+ def get(self):
945
+ """ """
946
+ ...
947
+
948
+ def id_properties_clear(self):
949
+ """ """
950
+ ...
951
+
952
+ def id_properties_ensure(self):
953
+ """ """
954
+ ...
955
+
956
+ def id_properties_ui(self):
957
+ """ """
958
+ ...
959
+
960
+ def is_extended(self):
961
+ """ """
962
+ ...
963
+
964
+ def is_property_hidden(self):
965
+ """ """
966
+ ...
967
+
968
+ def is_property_overridable_library(self):
969
+ """ """
970
+ ...
971
+
972
+ def is_property_readonly(self):
973
+ """ """
974
+ ...
975
+
976
+ def is_property_set(self):
977
+ """ """
978
+ ...
979
+
980
+ def items(self):
981
+ """ """
982
+ ...
983
+
984
+ def keyframe_delete(self):
985
+ """ """
986
+ ...
987
+
988
+ def keyframe_insert(self):
989
+ """ """
990
+ ...
991
+
992
+ def keys(self):
993
+ """ """
994
+ ...
995
+
996
+ def path_from_id(self):
997
+ """ """
998
+ ...
999
+
1000
+ def path_resolve(self):
1001
+ """ """
1002
+ ...
1003
+
1004
+ def poll(self, context):
1005
+ """
1006
+
1007
+ :param context:
1008
+ """
1009
+ ...
1010
+
1011
+ def pop(self):
1012
+ """ """
1013
+ ...
1014
+
1015
+ def prepend(self, draw_func):
1016
+ """
1017
+
1018
+ :param draw_func:
1019
+ """
1020
+ ...
1021
+
1022
+ def property_overridable_library_set(self):
1023
+ """ """
1024
+ ...
1025
+
1026
+ def property_unset(self):
1027
+ """ """
1028
+ ...
1029
+
1030
+ def remove(self, draw_func):
1031
+ """
1032
+
1033
+ :param draw_func:
1034
+ """
1035
+ ...
1036
+
1037
+ def type_recast(self):
1038
+ """ """
1039
+ ...
1040
+
1041
+ def values(self):
1042
+ """ """
1043
+ ...
1044
+
1045
+ class DATA_PT_geometry_curve(bpy_types._GenericUI):
1046
+ """ """
1047
+
1048
+ bl_context: typing.Any
1049
+ """ """
1050
+
1051
+ bl_label: typing.Any
1052
+ """ """
1053
+
1054
+ bl_options: typing.Any
1055
+ """ """
1056
+
1057
+ bl_region_type: typing.Any
1058
+ """ """
302
1059
 
303
- def append(self, draw_func): ...
304
- def as_pointer(self): ...
305
- def bl_rna_get_subclass(self): ...
306
- def bl_rna_get_subclass_py(self): ...
307
- def draw(self, context): ...
308
- def driver_add(self): ...
309
- def driver_remove(self): ...
310
- def get(self): ...
311
- def id_properties_clear(self): ...
312
- def id_properties_ensure(self): ...
313
- def id_properties_ui(self): ...
314
- def is_extended(self): ...
315
- def is_property_hidden(self): ...
316
- def is_property_overridable_library(self): ...
317
- def is_property_readonly(self): ...
318
- def is_property_set(self): ...
319
- def items(self): ...
320
- def keyframe_delete(self): ...
321
- def keyframe_insert(self): ...
322
- def keys(self): ...
323
- def path_from_id(self): ...
324
- def path_resolve(self): ...
325
- def poll(self, context): ...
326
- def pop(self): ...
327
- def prepend(self, draw_func): ...
328
- def property_overridable_library_set(self): ...
329
- def property_unset(self): ...
330
- def remove(self, draw_func): ...
331
- def type_recast(self): ...
332
- def values(self): ...
333
-
334
- class DATA_PT_geometry_curve_start_end(
335
- CurveButtonsPanelCurve, CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
336
- ):
337
- bl_context: typing.Any
338
- bl_label: typing.Any
339
- bl_options: typing.Any
340
- bl_parent_id: typing.Any
341
- bl_region_type: typing.Any
342
1060
  bl_rna: typing.Any
1061
+ """ """
1062
+
343
1063
  bl_space_type: typing.Any
1064
+ """ """
1065
+
344
1066
  id_data: typing.Any
1067
+ """ """
1068
+
1069
+ def append(self, draw_func):
1070
+ """
1071
+
1072
+ :param draw_func:
1073
+ """
1074
+ ...
1075
+
1076
+ def as_pointer(self):
1077
+ """ """
1078
+ ...
1079
+
1080
+ def bl_rna_get_subclass(self):
1081
+ """ """
1082
+ ...
1083
+
1084
+ def bl_rna_get_subclass_py(self):
1085
+ """ """
1086
+ ...
1087
+
1088
+ def draw(self, context):
1089
+ """
1090
+
1091
+ :param context:
1092
+ """
1093
+ ...
1094
+
1095
+ def driver_add(self):
1096
+ """ """
1097
+ ...
1098
+
1099
+ def driver_remove(self):
1100
+ """ """
1101
+ ...
1102
+
1103
+ def get(self):
1104
+ """ """
1105
+ ...
1106
+
1107
+ def id_properties_clear(self):
1108
+ """ """
1109
+ ...
1110
+
1111
+ def id_properties_ensure(self):
1112
+ """ """
1113
+ ...
1114
+
1115
+ def id_properties_ui(self):
1116
+ """ """
1117
+ ...
1118
+
1119
+ def is_extended(self):
1120
+ """ """
1121
+ ...
1122
+
1123
+ def is_property_hidden(self):
1124
+ """ """
1125
+ ...
1126
+
1127
+ def is_property_overridable_library(self):
1128
+ """ """
1129
+ ...
1130
+
1131
+ def is_property_readonly(self):
1132
+ """ """
1133
+ ...
1134
+
1135
+ def is_property_set(self):
1136
+ """ """
1137
+ ...
1138
+
1139
+ def items(self):
1140
+ """ """
1141
+ ...
1142
+
1143
+ def keyframe_delete(self):
1144
+ """ """
1145
+ ...
1146
+
1147
+ def keyframe_insert(self):
1148
+ """ """
1149
+ ...
1150
+
1151
+ def keys(self):
1152
+ """ """
1153
+ ...
1154
+
1155
+ def path_from_id(self):
1156
+ """ """
1157
+ ...
1158
+
1159
+ def path_resolve(self):
1160
+ """ """
1161
+ ...
1162
+
1163
+ def poll(self, context):
1164
+ """
1165
+
1166
+ :param context:
1167
+ """
1168
+ ...
1169
+
1170
+ def pop(self):
1171
+ """ """
1172
+ ...
1173
+
1174
+ def prepend(self, draw_func):
1175
+ """
1176
+
1177
+ :param draw_func:
1178
+ """
1179
+ ...
1180
+
1181
+ def property_overridable_library_set(self):
1182
+ """ """
1183
+ ...
1184
+
1185
+ def property_unset(self):
1186
+ """ """
1187
+ ...
1188
+
1189
+ def remove(self, draw_func):
1190
+ """
1191
+
1192
+ :param draw_func:
1193
+ """
1194
+ ...
1195
+
1196
+ def type_recast(self):
1197
+ """ """
1198
+ ...
1199
+
1200
+ def values(self):
1201
+ """ """
1202
+ ...
1203
+
1204
+ class DATA_PT_geometry_curve_bevel(bpy_types._GenericUI):
1205
+ """ """
345
1206
 
346
- def append(self, draw_func): ...
347
- def as_pointer(self): ...
348
- def bl_rna_get_subclass(self): ...
349
- def bl_rna_get_subclass_py(self): ...
350
- def draw(self, context): ...
351
- def driver_add(self): ...
352
- def driver_remove(self): ...
353
- def get(self): ...
354
- def id_properties_clear(self): ...
355
- def id_properties_ensure(self): ...
356
- def id_properties_ui(self): ...
357
- def is_extended(self): ...
358
- def is_property_hidden(self): ...
359
- def is_property_overridable_library(self): ...
360
- def is_property_readonly(self): ...
361
- def is_property_set(self): ...
362
- def items(self): ...
363
- def keyframe_delete(self): ...
364
- def keyframe_insert(self): ...
365
- def keys(self): ...
366
- def path_from_id(self): ...
367
- def path_resolve(self): ...
368
- def poll(self, context): ...
369
- def pop(self): ...
370
- def prepend(self, draw_func): ...
371
- def property_overridable_library_set(self): ...
372
- def property_unset(self): ...
373
- def remove(self, draw_func): ...
374
- def type_recast(self): ...
375
- def values(self): ...
376
-
377
- class DATA_PT_pathanim(
378
- CurveButtonsPanelCurve, CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
379
- ):
380
1207
  bl_context: typing.Any
1208
+ """ """
1209
+
381
1210
  bl_label: typing.Any
382
- bl_options: typing.Any
1211
+ """ """
1212
+
1213
+ bl_parent_id: typing.Any
1214
+ """ """
1215
+
383
1216
  bl_region_type: typing.Any
1217
+ """ """
1218
+
384
1219
  bl_rna: typing.Any
1220
+ """ """
1221
+
385
1222
  bl_space_type: typing.Any
1223
+ """ """
1224
+
386
1225
  id_data: typing.Any
1226
+ """ """
1227
+
1228
+ def append(self, draw_func):
1229
+ """
1230
+
1231
+ :param draw_func:
1232
+ """
1233
+ ...
1234
+
1235
+ def as_pointer(self):
1236
+ """ """
1237
+ ...
1238
+
1239
+ def bl_rna_get_subclass(self):
1240
+ """ """
1241
+ ...
1242
+
1243
+ def bl_rna_get_subclass_py(self):
1244
+ """ """
1245
+ ...
1246
+
1247
+ def draw(self, context):
1248
+ """
1249
+
1250
+ :param context:
1251
+ """
1252
+ ...
1253
+
1254
+ def driver_add(self):
1255
+ """ """
1256
+ ...
1257
+
1258
+ def driver_remove(self):
1259
+ """ """
1260
+ ...
1261
+
1262
+ def get(self):
1263
+ """ """
1264
+ ...
1265
+
1266
+ def id_properties_clear(self):
1267
+ """ """
1268
+ ...
1269
+
1270
+ def id_properties_ensure(self):
1271
+ """ """
1272
+ ...
1273
+
1274
+ def id_properties_ui(self):
1275
+ """ """
1276
+ ...
1277
+
1278
+ def is_extended(self):
1279
+ """ """
1280
+ ...
1281
+
1282
+ def is_property_hidden(self):
1283
+ """ """
1284
+ ...
1285
+
1286
+ def is_property_overridable_library(self):
1287
+ """ """
1288
+ ...
1289
+
1290
+ def is_property_readonly(self):
1291
+ """ """
1292
+ ...
1293
+
1294
+ def is_property_set(self):
1295
+ """ """
1296
+ ...
1297
+
1298
+ def items(self):
1299
+ """ """
1300
+ ...
1301
+
1302
+ def keyframe_delete(self):
1303
+ """ """
1304
+ ...
1305
+
1306
+ def keyframe_insert(self):
1307
+ """ """
1308
+ ...
1309
+
1310
+ def keys(self):
1311
+ """ """
1312
+ ...
1313
+
1314
+ def path_from_id(self):
1315
+ """ """
1316
+ ...
1317
+
1318
+ def path_resolve(self):
1319
+ """ """
1320
+ ...
1321
+
1322
+ def poll(self, context):
1323
+ """
1324
+
1325
+ :param context:
1326
+ """
1327
+ ...
1328
+
1329
+ def pop(self):
1330
+ """ """
1331
+ ...
1332
+
1333
+ def prepend(self, draw_func):
1334
+ """
1335
+
1336
+ :param draw_func:
1337
+ """
1338
+ ...
1339
+
1340
+ def property_overridable_library_set(self):
1341
+ """ """
1342
+ ...
1343
+
1344
+ def property_unset(self):
1345
+ """ """
1346
+ ...
1347
+
1348
+ def remove(self, draw_func):
1349
+ """
1350
+
1351
+ :param draw_func:
1352
+ """
1353
+ ...
1354
+
1355
+ def type_recast(self):
1356
+ """ """
1357
+ ...
1358
+
1359
+ def values(self):
1360
+ """ """
1361
+ ...
1362
+
1363
+ class DATA_PT_geometry_curve_start_end(bpy_types._GenericUI):
1364
+ """ """
387
1365
 
388
- def append(self, draw_func): ...
389
- def as_pointer(self): ...
390
- def bl_rna_get_subclass(self): ...
391
- def bl_rna_get_subclass_py(self): ...
392
- def draw(self, context): ...
393
- def draw_header(self, context): ...
394
- def driver_add(self): ...
395
- def driver_remove(self): ...
396
- def get(self): ...
397
- def id_properties_clear(self): ...
398
- def id_properties_ensure(self): ...
399
- def id_properties_ui(self): ...
400
- def is_extended(self): ...
401
- def is_property_hidden(self): ...
402
- def is_property_overridable_library(self): ...
403
- def is_property_readonly(self): ...
404
- def is_property_set(self): ...
405
- def items(self): ...
406
- def keyframe_delete(self): ...
407
- def keyframe_insert(self): ...
408
- def keys(self): ...
409
- def path_from_id(self): ...
410
- def path_resolve(self): ...
411
- def poll(self, context): ...
412
- def pop(self): ...
413
- def prepend(self, draw_func): ...
414
- def property_overridable_library_set(self): ...
415
- def property_unset(self): ...
416
- def remove(self, draw_func): ...
417
- def type_recast(self): ...
418
- def values(self): ...
419
-
420
- class DATA_PT_font(
421
- CurveButtonsPanelText, CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
422
- ):
423
1366
  bl_context: typing.Any
1367
+ """ """
1368
+
424
1369
  bl_label: typing.Any
1370
+ """ """
1371
+
425
1372
  bl_options: typing.Any
1373
+ """ """
1374
+
1375
+ bl_parent_id: typing.Any
1376
+ """ """
1377
+
426
1378
  bl_region_type: typing.Any
1379
+ """ """
1380
+
427
1381
  bl_rna: typing.Any
1382
+ """ """
1383
+
428
1384
  bl_space_type: typing.Any
1385
+ """ """
1386
+
429
1387
  id_data: typing.Any
1388
+ """ """
1389
+
1390
+ def append(self, draw_func):
1391
+ """
1392
+
1393
+ :param draw_func:
1394
+ """
1395
+ ...
1396
+
1397
+ def as_pointer(self):
1398
+ """ """
1399
+ ...
1400
+
1401
+ def bl_rna_get_subclass(self):
1402
+ """ """
1403
+ ...
1404
+
1405
+ def bl_rna_get_subclass_py(self):
1406
+ """ """
1407
+ ...
1408
+
1409
+ def draw(self, context):
1410
+ """
1411
+
1412
+ :param context:
1413
+ """
1414
+ ...
1415
+
1416
+ def driver_add(self):
1417
+ """ """
1418
+ ...
1419
+
1420
+ def driver_remove(self):
1421
+ """ """
1422
+ ...
1423
+
1424
+ def get(self):
1425
+ """ """
1426
+ ...
1427
+
1428
+ def id_properties_clear(self):
1429
+ """ """
1430
+ ...
1431
+
1432
+ def id_properties_ensure(self):
1433
+ """ """
1434
+ ...
1435
+
1436
+ def id_properties_ui(self):
1437
+ """ """
1438
+ ...
1439
+
1440
+ def is_extended(self):
1441
+ """ """
1442
+ ...
1443
+
1444
+ def is_property_hidden(self):
1445
+ """ """
1446
+ ...
1447
+
1448
+ def is_property_overridable_library(self):
1449
+ """ """
1450
+ ...
1451
+
1452
+ def is_property_readonly(self):
1453
+ """ """
1454
+ ...
1455
+
1456
+ def is_property_set(self):
1457
+ """ """
1458
+ ...
1459
+
1460
+ def items(self):
1461
+ """ """
1462
+ ...
1463
+
1464
+ def keyframe_delete(self):
1465
+ """ """
1466
+ ...
1467
+
1468
+ def keyframe_insert(self):
1469
+ """ """
1470
+ ...
1471
+
1472
+ def keys(self):
1473
+ """ """
1474
+ ...
1475
+
1476
+ def path_from_id(self):
1477
+ """ """
1478
+ ...
1479
+
1480
+ def path_resolve(self):
1481
+ """ """
1482
+ ...
1483
+
1484
+ def poll(self, context):
1485
+ """
1486
+
1487
+ :param context:
1488
+ """
1489
+ ...
1490
+
1491
+ def pop(self):
1492
+ """ """
1493
+ ...
1494
+
1495
+ def prepend(self, draw_func):
1496
+ """
1497
+
1498
+ :param draw_func:
1499
+ """
1500
+ ...
1501
+
1502
+ def property_overridable_library_set(self):
1503
+ """ """
1504
+ ...
1505
+
1506
+ def property_unset(self):
1507
+ """ """
1508
+ ...
1509
+
1510
+ def remove(self, draw_func):
1511
+ """
1512
+
1513
+ :param draw_func:
1514
+ """
1515
+ ...
1516
+
1517
+ def type_recast(self):
1518
+ """ """
1519
+ ...
1520
+
1521
+ def values(self):
1522
+ """ """
1523
+ ...
1524
+
1525
+ class DATA_PT_paragraph(bpy_types._GenericUI):
1526
+ """ """
430
1527
 
431
- def append(self, draw_func): ...
432
- def as_pointer(self): ...
433
- def bl_rna_get_subclass(self): ...
434
- def bl_rna_get_subclass_py(self): ...
435
- def draw(self, context): ...
436
- def driver_add(self): ...
437
- def driver_remove(self): ...
438
- def get(self): ...
439
- def id_properties_clear(self): ...
440
- def id_properties_ensure(self): ...
441
- def id_properties_ui(self): ...
442
- def is_extended(self): ...
443
- def is_property_hidden(self): ...
444
- def is_property_overridable_library(self): ...
445
- def is_property_readonly(self): ...
446
- def is_property_set(self): ...
447
- def items(self): ...
448
- def keyframe_delete(self): ...
449
- def keyframe_insert(self): ...
450
- def keys(self): ...
451
- def path_from_id(self): ...
452
- def path_resolve(self): ...
453
- def poll(self, context): ...
454
- def pop(self): ...
455
- def prepend(self, draw_func): ...
456
- def property_overridable_library_set(self): ...
457
- def property_unset(self): ...
458
- def remove(self, draw_func): ...
459
- def type_recast(self): ...
460
- def values(self): ...
461
-
462
- class DATA_PT_font_transform(
463
- CurveButtonsPanelText, CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
464
- ):
465
1528
  bl_context: typing.Any
1529
+ """ """
1530
+
466
1531
  bl_label: typing.Any
467
- bl_parent_id: typing.Any
1532
+ """ """
1533
+
468
1534
  bl_region_type: typing.Any
1535
+ """ """
1536
+
469
1537
  bl_rna: typing.Any
1538
+ """ """
1539
+
470
1540
  bl_space_type: typing.Any
1541
+ """ """
1542
+
471
1543
  id_data: typing.Any
1544
+ """ """
1545
+
1546
+ def append(self, draw_func):
1547
+ """
1548
+
1549
+ :param draw_func:
1550
+ """
1551
+ ...
1552
+
1553
+ def as_pointer(self):
1554
+ """ """
1555
+ ...
1556
+
1557
+ def bl_rna_get_subclass(self):
1558
+ """ """
1559
+ ...
1560
+
1561
+ def bl_rna_get_subclass_py(self):
1562
+ """ """
1563
+ ...
1564
+
1565
+ def draw(self, context):
1566
+ """
1567
+
1568
+ :param context:
1569
+ """
1570
+ ...
1571
+
1572
+ def driver_add(self):
1573
+ """ """
1574
+ ...
1575
+
1576
+ def driver_remove(self):
1577
+ """ """
1578
+ ...
1579
+
1580
+ def get(self):
1581
+ """ """
1582
+ ...
1583
+
1584
+ def id_properties_clear(self):
1585
+ """ """
1586
+ ...
1587
+
1588
+ def id_properties_ensure(self):
1589
+ """ """
1590
+ ...
1591
+
1592
+ def id_properties_ui(self):
1593
+ """ """
1594
+ ...
1595
+
1596
+ def is_extended(self):
1597
+ """ """
1598
+ ...
1599
+
1600
+ def is_property_hidden(self):
1601
+ """ """
1602
+ ...
1603
+
1604
+ def is_property_overridable_library(self):
1605
+ """ """
1606
+ ...
1607
+
1608
+ def is_property_readonly(self):
1609
+ """ """
1610
+ ...
1611
+
1612
+ def is_property_set(self):
1613
+ """ """
1614
+ ...
1615
+
1616
+ def items(self):
1617
+ """ """
1618
+ ...
1619
+
1620
+ def keyframe_delete(self):
1621
+ """ """
1622
+ ...
1623
+
1624
+ def keyframe_insert(self):
1625
+ """ """
1626
+ ...
1627
+
1628
+ def keys(self):
1629
+ """ """
1630
+ ...
1631
+
1632
+ def path_from_id(self):
1633
+ """ """
1634
+ ...
1635
+
1636
+ def path_resolve(self):
1637
+ """ """
1638
+ ...
1639
+
1640
+ def poll(self, context):
1641
+ """
1642
+
1643
+ :param context:
1644
+ """
1645
+ ...
1646
+
1647
+ def pop(self):
1648
+ """ """
1649
+ ...
1650
+
1651
+ def prepend(self, draw_func):
1652
+ """
1653
+
1654
+ :param draw_func:
1655
+ """
1656
+ ...
1657
+
1658
+ def property_overridable_library_set(self):
1659
+ """ """
1660
+ ...
1661
+
1662
+ def property_unset(self):
1663
+ """ """
1664
+ ...
1665
+
1666
+ def remove(self, draw_func):
1667
+ """
1668
+
1669
+ :param draw_func:
1670
+ """
1671
+ ...
1672
+
1673
+ def type_recast(self):
1674
+ """ """
1675
+ ...
1676
+
1677
+ def values(self):
1678
+ """ """
1679
+ ...
1680
+
1681
+ class DATA_PT_paragraph_alignment(bpy_types._GenericUI):
1682
+ """ """
472
1683
 
473
- def append(self, draw_func): ...
474
- def as_pointer(self): ...
475
- def bl_rna_get_subclass(self): ...
476
- def bl_rna_get_subclass_py(self): ...
477
- def draw(self, context): ...
478
- def driver_add(self): ...
479
- def driver_remove(self): ...
480
- def get(self): ...
481
- def id_properties_clear(self): ...
482
- def id_properties_ensure(self): ...
483
- def id_properties_ui(self): ...
484
- def is_extended(self): ...
485
- def is_property_hidden(self): ...
486
- def is_property_overridable_library(self): ...
487
- def is_property_readonly(self): ...
488
- def is_property_set(self): ...
489
- def items(self): ...
490
- def keyframe_delete(self): ...
491
- def keyframe_insert(self): ...
492
- def keys(self): ...
493
- def path_from_id(self): ...
494
- def path_resolve(self): ...
495
- def poll(self, context): ...
496
- def pop(self): ...
497
- def prepend(self, draw_func): ...
498
- def property_overridable_library_set(self): ...
499
- def property_unset(self): ...
500
- def remove(self, draw_func): ...
501
- def type_recast(self): ...
502
- def values(self): ...
503
-
504
- class DATA_PT_paragraph(
505
- CurveButtonsPanelText, CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
506
- ):
507
1684
  bl_context: typing.Any
1685
+ """ """
1686
+
508
1687
  bl_label: typing.Any
1688
+ """ """
1689
+
1690
+ bl_parent_id: typing.Any
1691
+ """ """
1692
+
509
1693
  bl_region_type: typing.Any
1694
+ """ """
1695
+
510
1696
  bl_rna: typing.Any
1697
+ """ """
1698
+
511
1699
  bl_space_type: typing.Any
1700
+ """ """
1701
+
512
1702
  id_data: typing.Any
1703
+ """ """
1704
+
1705
+ def append(self, draw_func):
1706
+ """
1707
+
1708
+ :param draw_func:
1709
+ """
1710
+ ...
1711
+
1712
+ def as_pointer(self):
1713
+ """ """
1714
+ ...
1715
+
1716
+ def bl_rna_get_subclass(self):
1717
+ """ """
1718
+ ...
1719
+
1720
+ def bl_rna_get_subclass_py(self):
1721
+ """ """
1722
+ ...
1723
+
1724
+ def draw(self, context):
1725
+ """
1726
+
1727
+ :param context:
1728
+ """
1729
+ ...
1730
+
1731
+ def driver_add(self):
1732
+ """ """
1733
+ ...
1734
+
1735
+ def driver_remove(self):
1736
+ """ """
1737
+ ...
1738
+
1739
+ def get(self):
1740
+ """ """
1741
+ ...
1742
+
1743
+ def id_properties_clear(self):
1744
+ """ """
1745
+ ...
1746
+
1747
+ def id_properties_ensure(self):
1748
+ """ """
1749
+ ...
1750
+
1751
+ def id_properties_ui(self):
1752
+ """ """
1753
+ ...
1754
+
1755
+ def is_extended(self):
1756
+ """ """
1757
+ ...
1758
+
1759
+ def is_property_hidden(self):
1760
+ """ """
1761
+ ...
1762
+
1763
+ def is_property_overridable_library(self):
1764
+ """ """
1765
+ ...
1766
+
1767
+ def is_property_readonly(self):
1768
+ """ """
1769
+ ...
1770
+
1771
+ def is_property_set(self):
1772
+ """ """
1773
+ ...
1774
+
1775
+ def items(self):
1776
+ """ """
1777
+ ...
1778
+
1779
+ def keyframe_delete(self):
1780
+ """ """
1781
+ ...
1782
+
1783
+ def keyframe_insert(self):
1784
+ """ """
1785
+ ...
1786
+
1787
+ def keys(self):
1788
+ """ """
1789
+ ...
1790
+
1791
+ def path_from_id(self):
1792
+ """ """
1793
+ ...
1794
+
1795
+ def path_resolve(self):
1796
+ """ """
1797
+ ...
1798
+
1799
+ def poll(self, context):
1800
+ """
1801
+
1802
+ :param context:
1803
+ """
1804
+ ...
1805
+
1806
+ def pop(self):
1807
+ """ """
1808
+ ...
1809
+
1810
+ def prepend(self, draw_func):
1811
+ """
1812
+
1813
+ :param draw_func:
1814
+ """
1815
+ ...
1816
+
1817
+ def property_overridable_library_set(self):
1818
+ """ """
1819
+ ...
1820
+
1821
+ def property_unset(self):
1822
+ """ """
1823
+ ...
1824
+
1825
+ def remove(self, draw_func):
1826
+ """
1827
+
1828
+ :param draw_func:
1829
+ """
1830
+ ...
1831
+
1832
+ def type_recast(self):
1833
+ """ """
1834
+ ...
1835
+
1836
+ def values(self):
1837
+ """ """
1838
+ ...
1839
+
1840
+ class DATA_PT_paragraph_spacing(bpy_types._GenericUI):
1841
+ """ """
513
1842
 
514
- def append(self, draw_func): ...
515
- def as_pointer(self): ...
516
- def bl_rna_get_subclass(self): ...
517
- def bl_rna_get_subclass_py(self): ...
518
- def draw(self, context): ...
519
- def driver_add(self): ...
520
- def driver_remove(self): ...
521
- def get(self): ...
522
- def id_properties_clear(self): ...
523
- def id_properties_ensure(self): ...
524
- def id_properties_ui(self): ...
525
- def is_extended(self): ...
526
- def is_property_hidden(self): ...
527
- def is_property_overridable_library(self): ...
528
- def is_property_readonly(self): ...
529
- def is_property_set(self): ...
530
- def items(self): ...
531
- def keyframe_delete(self): ...
532
- def keyframe_insert(self): ...
533
- def keys(self): ...
534
- def path_from_id(self): ...
535
- def path_resolve(self): ...
536
- def poll(self, context): ...
537
- def pop(self): ...
538
- def prepend(self, draw_func): ...
539
- def property_overridable_library_set(self): ...
540
- def property_unset(self): ...
541
- def remove(self, draw_func): ...
542
- def type_recast(self): ...
543
- def values(self): ...
544
-
545
- class DATA_PT_paragraph_alignment(
546
- CurveButtonsPanelText, CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
547
- ):
548
1843
  bl_context: typing.Any
1844
+ """ """
1845
+
549
1846
  bl_label: typing.Any
1847
+ """ """
1848
+
550
1849
  bl_parent_id: typing.Any
1850
+ """ """
1851
+
551
1852
  bl_region_type: typing.Any
1853
+ """ """
1854
+
552
1855
  bl_rna: typing.Any
1856
+ """ """
1857
+
553
1858
  bl_space_type: typing.Any
1859
+ """ """
1860
+
554
1861
  id_data: typing.Any
1862
+ """ """
1863
+
1864
+ def append(self, draw_func):
1865
+ """
1866
+
1867
+ :param draw_func:
1868
+ """
1869
+ ...
1870
+
1871
+ def as_pointer(self):
1872
+ """ """
1873
+ ...
1874
+
1875
+ def bl_rna_get_subclass(self):
1876
+ """ """
1877
+ ...
1878
+
1879
+ def bl_rna_get_subclass_py(self):
1880
+ """ """
1881
+ ...
1882
+
1883
+ def draw(self, context):
1884
+ """
1885
+
1886
+ :param context:
1887
+ """
1888
+ ...
1889
+
1890
+ def driver_add(self):
1891
+ """ """
1892
+ ...
1893
+
1894
+ def driver_remove(self):
1895
+ """ """
1896
+ ...
1897
+
1898
+ def get(self):
1899
+ """ """
1900
+ ...
1901
+
1902
+ def id_properties_clear(self):
1903
+ """ """
1904
+ ...
1905
+
1906
+ def id_properties_ensure(self):
1907
+ """ """
1908
+ ...
1909
+
1910
+ def id_properties_ui(self):
1911
+ """ """
1912
+ ...
1913
+
1914
+ def is_extended(self):
1915
+ """ """
1916
+ ...
1917
+
1918
+ def is_property_hidden(self):
1919
+ """ """
1920
+ ...
1921
+
1922
+ def is_property_overridable_library(self):
1923
+ """ """
1924
+ ...
1925
+
1926
+ def is_property_readonly(self):
1927
+ """ """
1928
+ ...
1929
+
1930
+ def is_property_set(self):
1931
+ """ """
1932
+ ...
1933
+
1934
+ def items(self):
1935
+ """ """
1936
+ ...
1937
+
1938
+ def keyframe_delete(self):
1939
+ """ """
1940
+ ...
1941
+
1942
+ def keyframe_insert(self):
1943
+ """ """
1944
+ ...
1945
+
1946
+ def keys(self):
1947
+ """ """
1948
+ ...
1949
+
1950
+ def path_from_id(self):
1951
+ """ """
1952
+ ...
1953
+
1954
+ def path_resolve(self):
1955
+ """ """
1956
+ ...
1957
+
1958
+ def poll(self, context):
1959
+ """
1960
+
1961
+ :param context:
1962
+ """
1963
+ ...
1964
+
1965
+ def pop(self):
1966
+ """ """
1967
+ ...
1968
+
1969
+ def prepend(self, draw_func):
1970
+ """
1971
+
1972
+ :param draw_func:
1973
+ """
1974
+ ...
1975
+
1976
+ def property_overridable_library_set(self):
1977
+ """ """
1978
+ ...
1979
+
1980
+ def property_unset(self):
1981
+ """ """
1982
+ ...
1983
+
1984
+ def remove(self, draw_func):
1985
+ """
1986
+
1987
+ :param draw_func:
1988
+ """
1989
+ ...
1990
+
1991
+ def type_recast(self):
1992
+ """ """
1993
+ ...
1994
+
1995
+ def values(self):
1996
+ """ """
1997
+ ...
1998
+
1999
+ class DATA_PT_pathanim(bpy_types._GenericUI):
2000
+ """ """
555
2001
 
556
- def append(self, draw_func): ...
557
- def as_pointer(self): ...
558
- def bl_rna_get_subclass(self): ...
559
- def bl_rna_get_subclass_py(self): ...
560
- def draw(self, context): ...
561
- def driver_add(self): ...
562
- def driver_remove(self): ...
563
- def get(self): ...
564
- def id_properties_clear(self): ...
565
- def id_properties_ensure(self): ...
566
- def id_properties_ui(self): ...
567
- def is_extended(self): ...
568
- def is_property_hidden(self): ...
569
- def is_property_overridable_library(self): ...
570
- def is_property_readonly(self): ...
571
- def is_property_set(self): ...
572
- def items(self): ...
573
- def keyframe_delete(self): ...
574
- def keyframe_insert(self): ...
575
- def keys(self): ...
576
- def path_from_id(self): ...
577
- def path_resolve(self): ...
578
- def poll(self, context): ...
579
- def pop(self): ...
580
- def prepend(self, draw_func): ...
581
- def property_overridable_library_set(self): ...
582
- def property_unset(self): ...
583
- def remove(self, draw_func): ...
584
- def type_recast(self): ...
585
- def values(self): ...
586
-
587
- class DATA_PT_paragraph_spacing(
588
- CurveButtonsPanelText, CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
589
- ):
590
2002
  bl_context: typing.Any
2003
+ """ """
2004
+
591
2005
  bl_label: typing.Any
592
- bl_parent_id: typing.Any
2006
+ """ """
2007
+
2008
+ bl_options: typing.Any
2009
+ """ """
2010
+
2011
+ bl_region_type: typing.Any
2012
+ """ """
2013
+
2014
+ bl_rna: typing.Any
2015
+ """ """
2016
+
2017
+ bl_space_type: typing.Any
2018
+ """ """
2019
+
2020
+ id_data: typing.Any
2021
+ """ """
2022
+
2023
+ def append(self, draw_func):
2024
+ """
2025
+
2026
+ :param draw_func:
2027
+ """
2028
+ ...
2029
+
2030
+ def as_pointer(self):
2031
+ """ """
2032
+ ...
2033
+
2034
+ def bl_rna_get_subclass(self):
2035
+ """ """
2036
+ ...
2037
+
2038
+ def bl_rna_get_subclass_py(self):
2039
+ """ """
2040
+ ...
2041
+
2042
+ def draw(self, context):
2043
+ """
2044
+
2045
+ :param context:
2046
+ """
2047
+ ...
2048
+
2049
+ def draw_header(self, context):
2050
+ """
2051
+
2052
+ :param context:
2053
+ """
2054
+ ...
2055
+
2056
+ def driver_add(self):
2057
+ """ """
2058
+ ...
2059
+
2060
+ def driver_remove(self):
2061
+ """ """
2062
+ ...
2063
+
2064
+ def get(self):
2065
+ """ """
2066
+ ...
2067
+
2068
+ def id_properties_clear(self):
2069
+ """ """
2070
+ ...
2071
+
2072
+ def id_properties_ensure(self):
2073
+ """ """
2074
+ ...
2075
+
2076
+ def id_properties_ui(self):
2077
+ """ """
2078
+ ...
2079
+
2080
+ def is_extended(self):
2081
+ """ """
2082
+ ...
2083
+
2084
+ def is_property_hidden(self):
2085
+ """ """
2086
+ ...
2087
+
2088
+ def is_property_overridable_library(self):
2089
+ """ """
2090
+ ...
2091
+
2092
+ def is_property_readonly(self):
2093
+ """ """
2094
+ ...
2095
+
2096
+ def is_property_set(self):
2097
+ """ """
2098
+ ...
2099
+
2100
+ def items(self):
2101
+ """ """
2102
+ ...
2103
+
2104
+ def keyframe_delete(self):
2105
+ """ """
2106
+ ...
2107
+
2108
+ def keyframe_insert(self):
2109
+ """ """
2110
+ ...
2111
+
2112
+ def keys(self):
2113
+ """ """
2114
+ ...
2115
+
2116
+ def path_from_id(self):
2117
+ """ """
2118
+ ...
2119
+
2120
+ def path_resolve(self):
2121
+ """ """
2122
+ ...
2123
+
2124
+ def poll(self, context):
2125
+ """
2126
+
2127
+ :param context:
2128
+ """
2129
+ ...
2130
+
2131
+ def pop(self):
2132
+ """ """
2133
+ ...
2134
+
2135
+ def prepend(self, draw_func):
2136
+ """
2137
+
2138
+ :param draw_func:
2139
+ """
2140
+ ...
2141
+
2142
+ def property_overridable_library_set(self):
2143
+ """ """
2144
+ ...
2145
+
2146
+ def property_unset(self):
2147
+ """ """
2148
+ ...
2149
+
2150
+ def remove(self, draw_func):
2151
+ """
2152
+
2153
+ :param draw_func:
2154
+ """
2155
+ ...
2156
+
2157
+ def type_recast(self):
2158
+ """ """
2159
+ ...
2160
+
2161
+ def values(self):
2162
+ """ """
2163
+ ...
2164
+
2165
+ class DATA_PT_shape_curve(bpy_types._GenericUI):
2166
+ """ """
2167
+
2168
+ bl_context: typing.Any
2169
+ """ """
2170
+
2171
+ bl_label: typing.Any
2172
+ """ """
2173
+
593
2174
  bl_region_type: typing.Any
2175
+ """ """
2176
+
594
2177
  bl_rna: typing.Any
2178
+ """ """
2179
+
595
2180
  bl_space_type: typing.Any
2181
+ """ """
2182
+
596
2183
  id_data: typing.Any
2184
+ """ """
2185
+
2186
+ def append(self, draw_func):
2187
+ """
2188
+
2189
+ :param draw_func:
2190
+ """
2191
+ ...
2192
+
2193
+ def as_pointer(self):
2194
+ """ """
2195
+ ...
2196
+
2197
+ def bl_rna_get_subclass(self):
2198
+ """ """
2199
+ ...
2200
+
2201
+ def bl_rna_get_subclass_py(self):
2202
+ """ """
2203
+ ...
2204
+
2205
+ def draw(self, context):
2206
+ """
2207
+
2208
+ :param context:
2209
+ """
2210
+ ...
2211
+
2212
+ def driver_add(self):
2213
+ """ """
2214
+ ...
2215
+
2216
+ def driver_remove(self):
2217
+ """ """
2218
+ ...
2219
+
2220
+ def get(self):
2221
+ """ """
2222
+ ...
2223
+
2224
+ def id_properties_clear(self):
2225
+ """ """
2226
+ ...
2227
+
2228
+ def id_properties_ensure(self):
2229
+ """ """
2230
+ ...
2231
+
2232
+ def id_properties_ui(self):
2233
+ """ """
2234
+ ...
2235
+
2236
+ def is_extended(self):
2237
+ """ """
2238
+ ...
2239
+
2240
+ def is_property_hidden(self):
2241
+ """ """
2242
+ ...
2243
+
2244
+ def is_property_overridable_library(self):
2245
+ """ """
2246
+ ...
2247
+
2248
+ def is_property_readonly(self):
2249
+ """ """
2250
+ ...
2251
+
2252
+ def is_property_set(self):
2253
+ """ """
2254
+ ...
2255
+
2256
+ def items(self):
2257
+ """ """
2258
+ ...
2259
+
2260
+ def keyframe_delete(self):
2261
+ """ """
2262
+ ...
2263
+
2264
+ def keyframe_insert(self):
2265
+ """ """
2266
+ ...
2267
+
2268
+ def keys(self):
2269
+ """ """
2270
+ ...
2271
+
2272
+ def path_from_id(self):
2273
+ """ """
2274
+ ...
2275
+
2276
+ def path_resolve(self):
2277
+ """ """
2278
+ ...
2279
+
2280
+ def poll(self, context):
2281
+ """
2282
+
2283
+ :param context:
2284
+ """
2285
+ ...
2286
+
2287
+ def pop(self):
2288
+ """ """
2289
+ ...
2290
+
2291
+ def prepend(self, draw_func):
2292
+ """
2293
+
2294
+ :param draw_func:
2295
+ """
2296
+ ...
2297
+
2298
+ def property_overridable_library_set(self):
2299
+ """ """
2300
+ ...
2301
+
2302
+ def property_unset(self):
2303
+ """ """
2304
+ ...
2305
+
2306
+ def remove(self, draw_func):
2307
+ """
2308
+
2309
+ :param draw_func:
2310
+ """
2311
+ ...
2312
+
2313
+ def type_recast(self):
2314
+ """ """
2315
+ ...
2316
+
2317
+ def values(self):
2318
+ """ """
2319
+ ...
2320
+
2321
+ class DATA_PT_text_boxes(bpy_types._GenericUI):
2322
+ """ """
597
2323
 
598
- def append(self, draw_func): ...
599
- def as_pointer(self): ...
600
- def bl_rna_get_subclass(self): ...
601
- def bl_rna_get_subclass_py(self): ...
602
- def draw(self, context): ...
603
- def driver_add(self): ...
604
- def driver_remove(self): ...
605
- def get(self): ...
606
- def id_properties_clear(self): ...
607
- def id_properties_ensure(self): ...
608
- def id_properties_ui(self): ...
609
- def is_extended(self): ...
610
- def is_property_hidden(self): ...
611
- def is_property_overridable_library(self): ...
612
- def is_property_readonly(self): ...
613
- def is_property_set(self): ...
614
- def items(self): ...
615
- def keyframe_delete(self): ...
616
- def keyframe_insert(self): ...
617
- def keys(self): ...
618
- def path_from_id(self): ...
619
- def path_resolve(self): ...
620
- def poll(self, context): ...
621
- def pop(self): ...
622
- def prepend(self, draw_func): ...
623
- def property_overridable_library_set(self): ...
624
- def property_unset(self): ...
625
- def remove(self, draw_func): ...
626
- def type_recast(self): ...
627
- def values(self): ...
628
-
629
- class DATA_PT_text_boxes(
630
- CurveButtonsPanelText, CurveButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
631
- ):
632
2324
  bl_context: typing.Any
2325
+ """ """
2326
+
633
2327
  bl_label: typing.Any
2328
+ """ """
2329
+
634
2330
  bl_options: typing.Any
2331
+ """ """
2332
+
635
2333
  bl_region_type: typing.Any
2334
+ """ """
2335
+
636
2336
  bl_rna: typing.Any
2337
+ """ """
2338
+
637
2339
  bl_space_type: typing.Any
2340
+ """ """
2341
+
638
2342
  id_data: typing.Any
2343
+ """ """
2344
+
2345
+ def append(self, draw_func):
2346
+ """
2347
+
2348
+ :param draw_func:
2349
+ """
2350
+ ...
2351
+
2352
+ def as_pointer(self):
2353
+ """ """
2354
+ ...
2355
+
2356
+ def bl_rna_get_subclass(self):
2357
+ """ """
2358
+ ...
2359
+
2360
+ def bl_rna_get_subclass_py(self):
2361
+ """ """
2362
+ ...
2363
+
2364
+ def draw(self, context):
2365
+ """
2366
+
2367
+ :param context:
2368
+ """
2369
+ ...
2370
+
2371
+ def driver_add(self):
2372
+ """ """
2373
+ ...
2374
+
2375
+ def driver_remove(self):
2376
+ """ """
2377
+ ...
2378
+
2379
+ def get(self):
2380
+ """ """
2381
+ ...
2382
+
2383
+ def id_properties_clear(self):
2384
+ """ """
2385
+ ...
2386
+
2387
+ def id_properties_ensure(self):
2388
+ """ """
2389
+ ...
2390
+
2391
+ def id_properties_ui(self):
2392
+ """ """
2393
+ ...
2394
+
2395
+ def is_extended(self):
2396
+ """ """
2397
+ ...
2398
+
2399
+ def is_property_hidden(self):
2400
+ """ """
2401
+ ...
2402
+
2403
+ def is_property_overridable_library(self):
2404
+ """ """
2405
+ ...
2406
+
2407
+ def is_property_readonly(self):
2408
+ """ """
2409
+ ...
2410
+
2411
+ def is_property_set(self):
2412
+ """ """
2413
+ ...
2414
+
2415
+ def items(self):
2416
+ """ """
2417
+ ...
2418
+
2419
+ def keyframe_delete(self):
2420
+ """ """
2421
+ ...
2422
+
2423
+ def keyframe_insert(self):
2424
+ """ """
2425
+ ...
2426
+
2427
+ def keys(self):
2428
+ """ """
2429
+ ...
2430
+
2431
+ def path_from_id(self):
2432
+ """ """
2433
+ ...
2434
+
2435
+ def path_resolve(self):
2436
+ """ """
2437
+ ...
2438
+
2439
+ def poll(self, context):
2440
+ """
2441
+
2442
+ :param context:
2443
+ """
2444
+ ...
2445
+
2446
+ def pop(self):
2447
+ """ """
2448
+ ...
2449
+
2450
+ def prepend(self, draw_func):
2451
+ """
2452
+
2453
+ :param draw_func:
2454
+ """
2455
+ ...
2456
+
2457
+ def property_overridable_library_set(self):
2458
+ """ """
2459
+ ...
2460
+
2461
+ def property_unset(self):
2462
+ """ """
2463
+ ...
2464
+
2465
+ def remove(self, draw_func):
2466
+ """
2467
+
2468
+ :param draw_func:
2469
+ """
2470
+ ...
2471
+
2472
+ def type_recast(self):
2473
+ """ """
2474
+ ...
2475
+
2476
+ def values(self):
2477
+ """ """
2478
+ ...
2479
+
2480
+ class CurveButtonsPanel:
2481
+ """ """
2482
+
2483
+ bl_context: typing.Any
2484
+ """ """
2485
+
2486
+ bl_region_type: typing.Any
2487
+ """ """
2488
+
2489
+ bl_space_type: typing.Any
2490
+ """ """
2491
+
2492
+ def poll(self, context):
2493
+ """
639
2494
 
640
- def append(self, draw_func): ...
641
- def as_pointer(self): ...
642
- def bl_rna_get_subclass(self): ...
643
- def bl_rna_get_subclass_py(self): ...
644
- def draw(self, context): ...
645
- def driver_add(self): ...
646
- def driver_remove(self): ...
647
- def get(self): ...
648
- def id_properties_clear(self): ...
649
- def id_properties_ensure(self): ...
650
- def id_properties_ui(self): ...
651
- def is_extended(self): ...
652
- def is_property_hidden(self): ...
653
- def is_property_overridable_library(self): ...
654
- def is_property_readonly(self): ...
655
- def is_property_set(self): ...
656
- def items(self): ...
657
- def keyframe_delete(self): ...
658
- def keyframe_insert(self): ...
659
- def keys(self): ...
660
- def path_from_id(self): ...
661
- def path_resolve(self): ...
662
- def poll(self, context): ...
663
- def pop(self): ...
664
- def prepend(self, draw_func): ...
665
- def property_overridable_library_set(self): ...
666
- def property_unset(self): ...
667
- def remove(self, draw_func): ...
668
- def type_recast(self): ...
669
- def values(self): ...
2495
+ :param context:
2496
+ """
2497
+ ...