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