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,38 +1,125 @@
1
1
  import typing
2
- import bl_ui.properties_animviz
3
2
  import bpy_types
4
- import rna_prop_ui
5
3
 
6
4
  GenericType = typing.TypeVar("GenericType")
7
5
 
8
- class COLLECTION_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
6
+ class COLLECTION_MT_context_menu(bpy_types._GenericUI):
7
+ """ """
8
+
9
9
  bl_label: typing.Any
10
+ """ """
11
+
10
12
  bl_rna: typing.Any
13
+ """ """
14
+
11
15
  id_data: typing.Any
16
+ """ """
17
+
18
+ def append(self, draw_func):
19
+ """
20
+
21
+ :param draw_func:
22
+ """
23
+ ...
24
+
25
+ def as_pointer(self):
26
+ """ """
27
+ ...
28
+
29
+ def bl_rna_get_subclass(self):
30
+ """ """
31
+ ...
32
+
33
+ def bl_rna_get_subclass_py(self):
34
+ """ """
35
+ ...
36
+
37
+ def draw(self, _context):
38
+ """
39
+
40
+ :param _context:
41
+ """
42
+ ...
43
+
44
+ def draw_collapsible(self, context, layout):
45
+ """
46
+
47
+ :param context:
48
+ :param layout:
49
+ """
50
+ ...
51
+
52
+ def draw_preset(self, _context):
53
+ """
54
+
55
+ :param _context:
56
+ """
57
+ ...
58
+
59
+ def driver_add(self):
60
+ """ """
61
+ ...
62
+
63
+ def driver_remove(self):
64
+ """ """
65
+ ...
66
+
67
+ def get(self):
68
+ """ """
69
+ ...
70
+
71
+ def id_properties_clear(self):
72
+ """ """
73
+ ...
74
+
75
+ def id_properties_ensure(self):
76
+ """ """
77
+ ...
78
+
79
+ def id_properties_ui(self):
80
+ """ """
81
+ ...
82
+
83
+ def is_extended(self):
84
+ """ """
85
+ ...
86
+
87
+ def is_property_hidden(self):
88
+ """ """
89
+ ...
90
+
91
+ def is_property_overridable_library(self):
92
+ """ """
93
+ ...
94
+
95
+ def is_property_readonly(self):
96
+ """ """
97
+ ...
98
+
99
+ def is_property_set(self):
100
+ """ """
101
+ ...
102
+
103
+ def items(self):
104
+ """ """
105
+ ...
106
+
107
+ def keyframe_delete(self):
108
+ """ """
109
+ ...
110
+
111
+ def keyframe_insert(self):
112
+ """ """
113
+ ...
114
+
115
+ def keys(self):
116
+ """ """
117
+ ...
118
+
119
+ def path_from_id(self):
120
+ """ """
121
+ ...
12
122
 
13
- def append(self, draw_func): ...
14
- def as_pointer(self): ...
15
- def bl_rna_get_subclass(self): ...
16
- def bl_rna_get_subclass_py(self): ...
17
- def draw(self, _context): ...
18
- def draw_collapsible(self, context, layout): ...
19
- def draw_preset(self, _context): ...
20
- def driver_add(self): ...
21
- def driver_remove(self): ...
22
- def get(self): ...
23
- def id_properties_clear(self): ...
24
- def id_properties_ensure(self): ...
25
- def id_properties_ui(self): ...
26
- def is_extended(self): ...
27
- def is_property_hidden(self): ...
28
- def is_property_overridable_library(self): ...
29
- def is_property_readonly(self): ...
30
- def is_property_set(self): ...
31
- def items(self): ...
32
- def keyframe_delete(self): ...
33
- def keyframe_insert(self): ...
34
- def keys(self): ...
35
- def path_from_id(self): ...
36
123
  def path_menu(
37
124
  self,
38
125
  searchpaths,
@@ -43,556 +130,2136 @@ class COLLECTION_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
43
130
  filter_path,
44
131
  display_name,
45
132
  add_operator,
46
- ): ...
47
- def path_resolve(self): ...
48
- def pop(self): ...
49
- def prepend(self, draw_func): ...
50
- def property_overridable_library_set(self): ...
51
- def property_unset(self): ...
52
- def remove(self, draw_func): ...
53
- def type_recast(self): ...
54
- def values(self): ...
55
-
56
- class OBJECT_PT_motion_paths(
57
- bl_ui.properties_animviz.MotionPathButtonsPanel,
58
- bpy_types.Panel,
59
- bpy_types._GenericUI,
60
- ):
61
- bl_context: typing.Any
62
- bl_label: typing.Any
63
- bl_options: typing.Any
64
- bl_region_type: typing.Any
65
- bl_rna: typing.Any
66
- bl_space_type: typing.Any
67
- id_data: typing.Any
133
+ ):
134
+ """
68
135
 
69
- def append(self, draw_func): ...
70
- def as_pointer(self): ...
71
- def bl_rna_get_subclass(self): ...
72
- def bl_rna_get_subclass_py(self): ...
73
- def draw(self, context): ...
74
- def draw_settings(self, _context, avs, mpath, bones): ...
75
- def driver_add(self): ...
76
- def driver_remove(self): ...
77
- def get(self): ...
78
- def id_properties_clear(self): ...
79
- def id_properties_ensure(self): ...
80
- def id_properties_ui(self): ...
81
- def is_extended(self): ...
82
- def is_property_hidden(self): ...
83
- def is_property_overridable_library(self): ...
84
- def is_property_readonly(self): ...
85
- def is_property_set(self): ...
86
- def items(self): ...
87
- def keyframe_delete(self): ...
88
- def keyframe_insert(self): ...
89
- def keys(self): ...
90
- def path_from_id(self): ...
91
- def path_resolve(self): ...
92
- def poll(self, context): ...
93
- def pop(self): ...
94
- def prepend(self, draw_func): ...
95
- def property_overridable_library_set(self): ...
96
- def property_unset(self): ...
97
- def remove(self, draw_func): ...
98
- def type_recast(self): ...
99
- def values(self): ...
100
-
101
- class OBJECT_PT_motion_paths_display(
102
- bl_ui.properties_animviz.MotionPathButtonsPanel_display,
103
- bpy_types.Panel,
104
- bpy_types._GenericUI,
105
- ):
106
- bl_context: typing.Any
107
- bl_label: typing.Any
108
- bl_options: typing.Any
109
- bl_parent_id: typing.Any
110
- bl_region_type: typing.Any
111
- bl_rna: typing.Any
112
- bl_space_type: typing.Any
113
- id_data: typing.Any
136
+ :param searchpaths:
137
+ :param operator:
138
+ :param props_default:
139
+ :param prop_filepath:
140
+ :param filter_ext:
141
+ :param filter_path:
142
+ :param display_name:
143
+ :param add_operator:
144
+ """
145
+ ...
114
146
 
115
- def append(self, draw_func): ...
116
- def as_pointer(self): ...
117
- def bl_rna_get_subclass(self): ...
118
- def bl_rna_get_subclass_py(self): ...
119
- def draw(self, context): ...
120
- def draw_settings(self, _context, avs, mpath, bones): ...
121
- def driver_add(self): ...
122
- def driver_remove(self): ...
123
- def get(self): ...
124
- def id_properties_clear(self): ...
125
- def id_properties_ensure(self): ...
126
- def id_properties_ui(self): ...
127
- def is_extended(self): ...
128
- def is_property_hidden(self): ...
129
- def is_property_overridable_library(self): ...
130
- def is_property_readonly(self): ...
131
- def is_property_set(self): ...
132
- def items(self): ...
133
- def keyframe_delete(self): ...
134
- def keyframe_insert(self): ...
135
- def keys(self): ...
136
- def path_from_id(self): ...
137
- def path_resolve(self): ...
138
- def poll(self, context): ...
139
- def pop(self): ...
140
- def prepend(self, draw_func): ...
141
- def property_overridable_library_set(self): ...
142
- def property_unset(self): ...
143
- def remove(self, draw_func): ...
144
- def type_recast(self): ...
145
- def values(self): ...
147
+ def path_resolve(self):
148
+ """ """
149
+ ...
146
150
 
147
- class ObjectButtonsPanel:
148
- bl_context: typing.Any
149
- bl_region_type: typing.Any
150
- bl_space_type: typing.Any
151
+ def pop(self):
152
+ """ """
153
+ ...
154
+
155
+ def prepend(self, draw_func):
156
+ """
157
+
158
+ :param draw_func:
159
+ """
160
+ ...
161
+
162
+ def property_overridable_library_set(self):
163
+ """ """
164
+ ...
165
+
166
+ def property_unset(self):
167
+ """ """
168
+ ...
169
+
170
+ def remove(self, draw_func):
171
+ """
172
+
173
+ :param draw_func:
174
+ """
175
+ ...
176
+
177
+ def type_recast(self):
178
+ """ """
179
+ ...
180
+
181
+ def values(self):
182
+ """ """
183
+ ...
184
+
185
+ class OBJECT_PT_collections(bpy_types._GenericUI):
186
+ """ """
151
187
 
152
- class OBJECT_PT_collections(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
153
188
  bl_context: typing.Any
189
+ """ """
190
+
154
191
  bl_label: typing.Any
192
+ """ """
193
+
155
194
  bl_options: typing.Any
195
+ """ """
196
+
156
197
  bl_region_type: typing.Any
198
+ """ """
199
+
157
200
  bl_rna: typing.Any
201
+ """ """
202
+
158
203
  bl_space_type: typing.Any
204
+ """ """
205
+
159
206
  id_data: typing.Any
207
+ """ """
208
+
209
+ def append(self, draw_func):
210
+ """
211
+
212
+ :param draw_func:
213
+ """
214
+ ...
215
+
216
+ def as_pointer(self):
217
+ """ """
218
+ ...
219
+
220
+ def bl_rna_get_subclass(self):
221
+ """ """
222
+ ...
223
+
224
+ def bl_rna_get_subclass_py(self):
225
+ """ """
226
+ ...
227
+
228
+ def draw(self, context):
229
+ """
230
+
231
+ :param context:
232
+ """
233
+ ...
234
+
235
+ def driver_add(self):
236
+ """ """
237
+ ...
238
+
239
+ def driver_remove(self):
240
+ """ """
241
+ ...
242
+
243
+ def get(self):
244
+ """ """
245
+ ...
246
+
247
+ def id_properties_clear(self):
248
+ """ """
249
+ ...
250
+
251
+ def id_properties_ensure(self):
252
+ """ """
253
+ ...
254
+
255
+ def id_properties_ui(self):
256
+ """ """
257
+ ...
258
+
259
+ def is_extended(self):
260
+ """ """
261
+ ...
262
+
263
+ def is_property_hidden(self):
264
+ """ """
265
+ ...
266
+
267
+ def is_property_overridable_library(self):
268
+ """ """
269
+ ...
270
+
271
+ def is_property_readonly(self):
272
+ """ """
273
+ ...
274
+
275
+ def is_property_set(self):
276
+ """ """
277
+ ...
278
+
279
+ def items(self):
280
+ """ """
281
+ ...
282
+
283
+ def keyframe_delete(self):
284
+ """ """
285
+ ...
286
+
287
+ def keyframe_insert(self):
288
+ """ """
289
+ ...
290
+
291
+ def keys(self):
292
+ """ """
293
+ ...
294
+
295
+ def path_from_id(self):
296
+ """ """
297
+ ...
298
+
299
+ def path_resolve(self):
300
+ """ """
301
+ ...
302
+
303
+ def pop(self):
304
+ """ """
305
+ ...
306
+
307
+ def prepend(self, draw_func):
308
+ """
309
+
310
+ :param draw_func:
311
+ """
312
+ ...
313
+
314
+ def property_overridable_library_set(self):
315
+ """ """
316
+ ...
317
+
318
+ def property_unset(self):
319
+ """ """
320
+ ...
321
+
322
+ def remove(self, draw_func):
323
+ """
324
+
325
+ :param draw_func:
326
+ """
327
+ ...
328
+
329
+ def type_recast(self):
330
+ """ """
331
+ ...
332
+
333
+ def values(self):
334
+ """ """
335
+ ...
336
+
337
+ class OBJECT_PT_context_object(bpy_types._GenericUI):
338
+ """ """
160
339
 
161
- def append(self, draw_func): ...
162
- def as_pointer(self): ...
163
- def bl_rna_get_subclass(self): ...
164
- def bl_rna_get_subclass_py(self): ...
165
- def draw(self, context): ...
166
- def driver_add(self): ...
167
- def driver_remove(self): ...
168
- def get(self): ...
169
- def id_properties_clear(self): ...
170
- def id_properties_ensure(self): ...
171
- def id_properties_ui(self): ...
172
- def is_extended(self): ...
173
- def is_property_hidden(self): ...
174
- def is_property_overridable_library(self): ...
175
- def is_property_readonly(self): ...
176
- def is_property_set(self): ...
177
- def items(self): ...
178
- def keyframe_delete(self): ...
179
- def keyframe_insert(self): ...
180
- def keys(self): ...
181
- def path_from_id(self): ...
182
- def path_resolve(self): ...
183
- def pop(self): ...
184
- def prepend(self, draw_func): ...
185
- def property_overridable_library_set(self): ...
186
- def property_unset(self): ...
187
- def remove(self, draw_func): ...
188
- def type_recast(self): ...
189
- def values(self): ...
190
-
191
- class OBJECT_PT_context_object(
192
- ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
193
- ):
194
340
  bl_context: typing.Any
341
+ """ """
342
+
195
343
  bl_label: typing.Any
344
+ """ """
345
+
196
346
  bl_options: typing.Any
347
+ """ """
348
+
197
349
  bl_region_type: typing.Any
350
+ """ """
351
+
198
352
  bl_rna: typing.Any
353
+ """ """
354
+
199
355
  bl_space_type: typing.Any
356
+ """ """
357
+
200
358
  id_data: typing.Any
359
+ """ """
360
+
361
+ def append(self, draw_func):
362
+ """
363
+
364
+ :param draw_func:
365
+ """
366
+ ...
367
+
368
+ def as_pointer(self):
369
+ """ """
370
+ ...
371
+
372
+ def bl_rna_get_subclass(self):
373
+ """ """
374
+ ...
375
+
376
+ def bl_rna_get_subclass_py(self):
377
+ """ """
378
+ ...
379
+
380
+ def draw(self, context):
381
+ """
382
+
383
+ :param context:
384
+ """
385
+ ...
386
+
387
+ def driver_add(self):
388
+ """ """
389
+ ...
390
+
391
+ def driver_remove(self):
392
+ """ """
393
+ ...
394
+
395
+ def get(self):
396
+ """ """
397
+ ...
398
+
399
+ def id_properties_clear(self):
400
+ """ """
401
+ ...
402
+
403
+ def id_properties_ensure(self):
404
+ """ """
405
+ ...
406
+
407
+ def id_properties_ui(self):
408
+ """ """
409
+ ...
410
+
411
+ def is_extended(self):
412
+ """ """
413
+ ...
414
+
415
+ def is_property_hidden(self):
416
+ """ """
417
+ ...
418
+
419
+ def is_property_overridable_library(self):
420
+ """ """
421
+ ...
422
+
423
+ def is_property_readonly(self):
424
+ """ """
425
+ ...
426
+
427
+ def is_property_set(self):
428
+ """ """
429
+ ...
430
+
431
+ def items(self):
432
+ """ """
433
+ ...
434
+
435
+ def keyframe_delete(self):
436
+ """ """
437
+ ...
438
+
439
+ def keyframe_insert(self):
440
+ """ """
441
+ ...
442
+
443
+ def keys(self):
444
+ """ """
445
+ ...
446
+
447
+ def path_from_id(self):
448
+ """ """
449
+ ...
450
+
451
+ def path_resolve(self):
452
+ """ """
453
+ ...
454
+
455
+ def pop(self):
456
+ """ """
457
+ ...
458
+
459
+ def prepend(self, draw_func):
460
+ """
461
+
462
+ :param draw_func:
463
+ """
464
+ ...
465
+
466
+ def property_overridable_library_set(self):
467
+ """ """
468
+ ...
469
+
470
+ def property_unset(self):
471
+ """ """
472
+ ...
473
+
474
+ def remove(self, draw_func):
475
+ """
476
+
477
+ :param draw_func:
478
+ """
479
+ ...
480
+
481
+ def type_recast(self):
482
+ """ """
483
+ ...
484
+
485
+ def values(self):
486
+ """ """
487
+ ...
488
+
489
+ class OBJECT_PT_custom_props(bpy_types._GenericUI):
490
+ """ """
201
491
 
202
- def append(self, draw_func): ...
203
- def as_pointer(self): ...
204
- def bl_rna_get_subclass(self): ...
205
- def bl_rna_get_subclass_py(self): ...
206
- def draw(self, context): ...
207
- def driver_add(self): ...
208
- def driver_remove(self): ...
209
- def get(self): ...
210
- def id_properties_clear(self): ...
211
- def id_properties_ensure(self): ...
212
- def id_properties_ui(self): ...
213
- def is_extended(self): ...
214
- def is_property_hidden(self): ...
215
- def is_property_overridable_library(self): ...
216
- def is_property_readonly(self): ...
217
- def is_property_set(self): ...
218
- def items(self): ...
219
- def keyframe_delete(self): ...
220
- def keyframe_insert(self): ...
221
- def keys(self): ...
222
- def path_from_id(self): ...
223
- def path_resolve(self): ...
224
- def pop(self): ...
225
- def prepend(self, draw_func): ...
226
- def property_overridable_library_set(self): ...
227
- def property_unset(self): ...
228
- def remove(self, draw_func): ...
229
- def type_recast(self): ...
230
- def values(self): ...
231
-
232
- class OBJECT_PT_custom_props(
233
- ObjectButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types.Panel, bpy_types._GenericUI
234
- ):
235
492
  COMPAT_ENGINES: typing.Any
236
- bl_context: typing.Any
237
- bl_label: typing.Any
238
- bl_options: typing.Any
239
- bl_order: typing.Any
240
- bl_region_type: typing.Any
241
- bl_rna: typing.Any
242
- bl_space_type: typing.Any
243
- id_data: typing.Any
493
+ """ """
244
494
 
245
- def append(self, draw_func): ...
246
- def as_pointer(self): ...
247
- def bl_rna_get_subclass(self): ...
248
- def bl_rna_get_subclass_py(self): ...
249
- def draw(self, context): ...
250
- def driver_add(self): ...
251
- def driver_remove(self): ...
252
- def get(self): ...
253
- def id_properties_clear(self): ...
254
- def id_properties_ensure(self): ...
255
- def id_properties_ui(self): ...
256
- def is_extended(self): ...
257
- def is_property_hidden(self): ...
258
- def is_property_overridable_library(self): ...
259
- def is_property_readonly(self): ...
260
- def is_property_set(self): ...
261
- def items(self): ...
262
- def keyframe_delete(self): ...
263
- def keyframe_insert(self): ...
264
- def keys(self): ...
265
- def path_from_id(self): ...
266
- def path_resolve(self): ...
267
- def poll(self, context): ...
268
- def pop(self): ...
269
- def prepend(self, draw_func): ...
270
- def property_overridable_library_set(self): ...
271
- def property_unset(self): ...
272
- def remove(self, draw_func): ...
273
- def type_recast(self): ...
274
- def values(self): ...
275
-
276
- class OBJECT_PT_delta_transform(
277
- ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
278
- ):
279
495
  bl_context: typing.Any
280
- bl_label: typing.Any
281
- bl_options: typing.Any
282
- bl_parent_id: typing.Any
283
- bl_region_type: typing.Any
284
- bl_rna: typing.Any
285
- bl_space_type: typing.Any
286
- id_data: typing.Any
496
+ """ """
287
497
 
288
- def append(self, draw_func): ...
289
- def as_pointer(self): ...
290
- def bl_rna_get_subclass(self): ...
291
- def bl_rna_get_subclass_py(self): ...
292
- def draw(self, context): ...
293
- def driver_add(self): ...
294
- def driver_remove(self): ...
295
- def get(self): ...
296
- def id_properties_clear(self): ...
297
- def id_properties_ensure(self): ...
298
- def id_properties_ui(self): ...
299
- def is_extended(self): ...
300
- def is_property_hidden(self): ...
301
- def is_property_overridable_library(self): ...
302
- def is_property_readonly(self): ...
303
- def is_property_set(self): ...
304
- def items(self): ...
305
- def keyframe_delete(self): ...
306
- def keyframe_insert(self): ...
307
- def keys(self): ...
308
- def path_from_id(self): ...
309
- def path_resolve(self): ...
310
- def pop(self): ...
311
- def prepend(self, draw_func): ...
312
- def property_overridable_library_set(self): ...
313
- def property_unset(self): ...
314
- def remove(self, draw_func): ...
315
- def type_recast(self): ...
316
- def values(self): ...
317
-
318
- class OBJECT_PT_display(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
319
- bl_context: typing.Any
320
498
  bl_label: typing.Any
499
+ """ """
500
+
321
501
  bl_options: typing.Any
502
+ """ """
503
+
322
504
  bl_order: typing.Any
505
+ """ """
506
+
323
507
  bl_region_type: typing.Any
508
+ """ """
509
+
324
510
  bl_rna: typing.Any
511
+ """ """
512
+
325
513
  bl_space_type: typing.Any
514
+ """ """
515
+
326
516
  id_data: typing.Any
517
+ """ """
518
+
519
+ def append(self, draw_func):
520
+ """
521
+
522
+ :param draw_func:
523
+ """
524
+ ...
525
+
526
+ def as_pointer(self):
527
+ """ """
528
+ ...
529
+
530
+ def bl_rna_get_subclass(self):
531
+ """ """
532
+ ...
533
+
534
+ def bl_rna_get_subclass_py(self):
535
+ """ """
536
+ ...
537
+
538
+ def draw(self, context):
539
+ """
540
+
541
+ :param context:
542
+ """
543
+ ...
544
+
545
+ def driver_add(self):
546
+ """ """
547
+ ...
548
+
549
+ def driver_remove(self):
550
+ """ """
551
+ ...
552
+
553
+ def get(self):
554
+ """ """
555
+ ...
556
+
557
+ def id_properties_clear(self):
558
+ """ """
559
+ ...
560
+
561
+ def id_properties_ensure(self):
562
+ """ """
563
+ ...
564
+
565
+ def id_properties_ui(self):
566
+ """ """
567
+ ...
568
+
569
+ def is_extended(self):
570
+ """ """
571
+ ...
572
+
573
+ def is_property_hidden(self):
574
+ """ """
575
+ ...
576
+
577
+ def is_property_overridable_library(self):
578
+ """ """
579
+ ...
580
+
581
+ def is_property_readonly(self):
582
+ """ """
583
+ ...
584
+
585
+ def is_property_set(self):
586
+ """ """
587
+ ...
588
+
589
+ def items(self):
590
+ """ """
591
+ ...
592
+
593
+ def keyframe_delete(self):
594
+ """ """
595
+ ...
596
+
597
+ def keyframe_insert(self):
598
+ """ """
599
+ ...
600
+
601
+ def keys(self):
602
+ """ """
603
+ ...
604
+
605
+ def path_from_id(self):
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 OBJECT_PT_delta_transform(bpy_types._GenericUI):
655
+ """ """
327
656
 
328
- def append(self, draw_func): ...
329
- def as_pointer(self): ...
330
- def bl_rna_get_subclass(self): ...
331
- def bl_rna_get_subclass_py(self): ...
332
- def draw(self, context): ...
333
- def driver_add(self): ...
334
- def driver_remove(self): ...
335
- def get(self): ...
336
- def id_properties_clear(self): ...
337
- def id_properties_ensure(self): ...
338
- def id_properties_ui(self): ...
339
- def is_extended(self): ...
340
- def is_property_hidden(self): ...
341
- def is_property_overridable_library(self): ...
342
- def is_property_readonly(self): ...
343
- def is_property_set(self): ...
344
- def items(self): ...
345
- def keyframe_delete(self): ...
346
- def keyframe_insert(self): ...
347
- def keys(self): ...
348
- def path_from_id(self): ...
349
- def path_resolve(self): ...
350
- def pop(self): ...
351
- def prepend(self, draw_func): ...
352
- def property_overridable_library_set(self): ...
353
- def property_unset(self): ...
354
- def remove(self, draw_func): ...
355
- def type_recast(self): ...
356
- def values(self): ...
357
-
358
- class OBJECT_PT_instancing(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
359
657
  bl_context: typing.Any
658
+ """ """
659
+
360
660
  bl_label: typing.Any
661
+ """ """
662
+
361
663
  bl_options: typing.Any
362
- bl_region_type: typing.Any
363
- bl_rna: typing.Any
364
- bl_space_type: typing.Any
365
- id_data: typing.Any
664
+ """ """
366
665
 
367
- def append(self, draw_func): ...
368
- def as_pointer(self): ...
369
- def bl_rna_get_subclass(self): ...
370
- def bl_rna_get_subclass_py(self): ...
371
- def draw(self, context): ...
372
- def driver_add(self): ...
373
- def driver_remove(self): ...
374
- def get(self): ...
375
- def id_properties_clear(self): ...
376
- def id_properties_ensure(self): ...
377
- def id_properties_ui(self): ...
378
- def is_extended(self): ...
379
- def is_property_hidden(self): ...
380
- def is_property_overridable_library(self): ...
381
- def is_property_readonly(self): ...
382
- def is_property_set(self): ...
383
- def items(self): ...
384
- def keyframe_delete(self): ...
385
- def keyframe_insert(self): ...
386
- def keys(self): ...
387
- def path_from_id(self): ...
388
- def path_resolve(self): ...
389
- def poll(self, context): ...
390
- def pop(self): ...
391
- def prepend(self, draw_func): ...
392
- def property_overridable_library_set(self): ...
393
- def property_unset(self): ...
394
- def remove(self, draw_func): ...
395
- def type_recast(self): ...
396
- def values(self): ...
397
-
398
- class OBJECT_PT_instancing_size(
399
- ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
400
- ):
401
- bl_context: typing.Any
402
- bl_label: typing.Any
403
666
  bl_parent_id: typing.Any
667
+ """ """
668
+
404
669
  bl_region_type: typing.Any
670
+ """ """
671
+
405
672
  bl_rna: typing.Any
673
+ """ """
674
+
406
675
  bl_space_type: typing.Any
676
+ """ """
677
+
407
678
  id_data: typing.Any
679
+ """ """
680
+
681
+ def append(self, draw_func):
682
+ """
683
+
684
+ :param draw_func:
685
+ """
686
+ ...
687
+
688
+ def as_pointer(self):
689
+ """ """
690
+ ...
691
+
692
+ def bl_rna_get_subclass(self):
693
+ """ """
694
+ ...
695
+
696
+ def bl_rna_get_subclass_py(self):
697
+ """ """
698
+ ...
699
+
700
+ def draw(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
+ ...
770
+
771
+ def path_resolve(self):
772
+ """ """
773
+ ...
774
+
775
+ def pop(self):
776
+ """ """
777
+ ...
778
+
779
+ def prepend(self, draw_func):
780
+ """
781
+
782
+ :param draw_func:
783
+ """
784
+ ...
785
+
786
+ def property_overridable_library_set(self):
787
+ """ """
788
+ ...
789
+
790
+ def property_unset(self):
791
+ """ """
792
+ ...
793
+
794
+ def remove(self, draw_func):
795
+ """
796
+
797
+ :param draw_func:
798
+ """
799
+ ...
800
+
801
+ def type_recast(self):
802
+ """ """
803
+ ...
804
+
805
+ def values(self):
806
+ """ """
807
+ ...
808
+
809
+ class OBJECT_PT_display(bpy_types._GenericUI):
810
+ """ """
408
811
 
409
- def append(self, draw_func): ...
410
- def as_pointer(self): ...
411
- def bl_rna_get_subclass(self): ...
412
- def bl_rna_get_subclass_py(self): ...
413
- def draw(self, context): ...
414
- def draw_header(self, context): ...
415
- def driver_add(self): ...
416
- def driver_remove(self): ...
417
- def get(self): ...
418
- def id_properties_clear(self): ...
419
- def id_properties_ensure(self): ...
420
- def id_properties_ui(self): ...
421
- def is_extended(self): ...
422
- def is_property_hidden(self): ...
423
- def is_property_overridable_library(self): ...
424
- def is_property_readonly(self): ...
425
- def is_property_set(self): ...
426
- def items(self): ...
427
- def keyframe_delete(self): ...
428
- def keyframe_insert(self): ...
429
- def keys(self): ...
430
- def path_from_id(self): ...
431
- def path_resolve(self): ...
432
- def poll(self, context): ...
433
- def pop(self): ...
434
- def prepend(self, draw_func): ...
435
- def property_overridable_library_set(self): ...
436
- def property_unset(self): ...
437
- def remove(self, draw_func): ...
438
- def type_recast(self): ...
439
- def values(self): ...
440
-
441
- class OBJECT_PT_lineart(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
442
812
  bl_context: typing.Any
813
+ """ """
814
+
443
815
  bl_label: typing.Any
816
+ """ """
817
+
444
818
  bl_options: typing.Any
819
+ """ """
820
+
445
821
  bl_order: typing.Any
446
- bl_region_type: typing.Any
447
- bl_rna: typing.Any
448
- bl_space_type: typing.Any
449
- id_data: typing.Any
822
+ """ """
450
823
 
451
- def append(self, draw_func): ...
452
- def as_pointer(self): ...
453
- def bl_rna_get_subclass(self): ...
454
- def bl_rna_get_subclass_py(self): ...
455
- def draw(self, context): ...
456
- def driver_add(self): ...
457
- def driver_remove(self): ...
458
- def get(self): ...
459
- def id_properties_clear(self): ...
460
- def id_properties_ensure(self): ...
461
- def id_properties_ui(self): ...
462
- def is_extended(self): ...
463
- def is_property_hidden(self): ...
464
- def is_property_overridable_library(self): ...
465
- def is_property_readonly(self): ...
466
- def is_property_set(self): ...
467
- def items(self): ...
468
- def keyframe_delete(self): ...
469
- def keyframe_insert(self): ...
470
- def keys(self): ...
471
- def path_from_id(self): ...
472
- def path_resolve(self): ...
473
- def poll(self, context): ...
474
- def pop(self): ...
475
- def prepend(self, draw_func): ...
476
- def property_overridable_library_set(self): ...
477
- def property_unset(self): ...
478
- def remove(self, draw_func): ...
479
- def type_recast(self): ...
480
- def values(self): ...
481
-
482
- class OBJECT_PT_relations(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
483
- bl_context: typing.Any
484
- bl_label: typing.Any
485
- bl_options: typing.Any
486
824
  bl_region_type: typing.Any
825
+ """ """
826
+
487
827
  bl_rna: typing.Any
828
+ """ """
829
+
488
830
  bl_space_type: typing.Any
831
+ """ """
832
+
489
833
  id_data: typing.Any
834
+ """ """
835
+
836
+ def append(self, draw_func):
837
+ """
838
+
839
+ :param draw_func:
840
+ """
841
+ ...
842
+
843
+ def as_pointer(self):
844
+ """ """
845
+ ...
846
+
847
+ def bl_rna_get_subclass(self):
848
+ """ """
849
+ ...
850
+
851
+ def bl_rna_get_subclass_py(self):
852
+ """ """
853
+ ...
854
+
855
+ def draw(self, context):
856
+ """
857
+
858
+ :param context:
859
+ """
860
+ ...
861
+
862
+ def driver_add(self):
863
+ """ """
864
+ ...
865
+
866
+ def driver_remove(self):
867
+ """ """
868
+ ...
869
+
870
+ def get(self):
871
+ """ """
872
+ ...
873
+
874
+ def id_properties_clear(self):
875
+ """ """
876
+ ...
877
+
878
+ def id_properties_ensure(self):
879
+ """ """
880
+ ...
881
+
882
+ def id_properties_ui(self):
883
+ """ """
884
+ ...
885
+
886
+ def is_extended(self):
887
+ """ """
888
+ ...
889
+
890
+ def is_property_hidden(self):
891
+ """ """
892
+ ...
893
+
894
+ def is_property_overridable_library(self):
895
+ """ """
896
+ ...
897
+
898
+ def is_property_readonly(self):
899
+ """ """
900
+ ...
901
+
902
+ def is_property_set(self):
903
+ """ """
904
+ ...
905
+
906
+ def items(self):
907
+ """ """
908
+ ...
909
+
910
+ def keyframe_delete(self):
911
+ """ """
912
+ ...
913
+
914
+ def keyframe_insert(self):
915
+ """ """
916
+ ...
917
+
918
+ def keys(self):
919
+ """ """
920
+ ...
921
+
922
+ def path_from_id(self):
923
+ """ """
924
+ ...
925
+
926
+ def path_resolve(self):
927
+ """ """
928
+ ...
929
+
930
+ def pop(self):
931
+ """ """
932
+ ...
933
+
934
+ def prepend(self, draw_func):
935
+ """
936
+
937
+ :param draw_func:
938
+ """
939
+ ...
940
+
941
+ def property_overridable_library_set(self):
942
+ """ """
943
+ ...
944
+
945
+ def property_unset(self):
946
+ """ """
947
+ ...
948
+
949
+ def remove(self, draw_func):
950
+ """
951
+
952
+ :param draw_func:
953
+ """
954
+ ...
955
+
956
+ def type_recast(self):
957
+ """ """
958
+ ...
959
+
960
+ def values(self):
961
+ """ """
962
+ ...
963
+
964
+ class OBJECT_PT_instancing(bpy_types._GenericUI):
965
+ """ """
966
+
967
+ bl_context: typing.Any
968
+ """ """
969
+
970
+ bl_label: typing.Any
971
+ """ """
972
+
973
+ bl_options: typing.Any
974
+ """ """
975
+
976
+ bl_region_type: typing.Any
977
+ """ """
978
+
979
+ bl_rna: typing.Any
980
+ """ """
981
+
982
+ bl_space_type: typing.Any
983
+ """ """
984
+
985
+ id_data: typing.Any
986
+ """ """
987
+
988
+ def append(self, draw_func):
989
+ """
990
+
991
+ :param draw_func:
992
+ """
993
+ ...
994
+
995
+ def as_pointer(self):
996
+ """ """
997
+ ...
998
+
999
+ def bl_rna_get_subclass(self):
1000
+ """ """
1001
+ ...
1002
+
1003
+ def bl_rna_get_subclass_py(self):
1004
+ """ """
1005
+ ...
1006
+
1007
+ def draw(self, context):
1008
+ """
1009
+
1010
+ :param context:
1011
+ """
1012
+ ...
1013
+
1014
+ def driver_add(self):
1015
+ """ """
1016
+ ...
1017
+
1018
+ def driver_remove(self):
1019
+ """ """
1020
+ ...
1021
+
1022
+ def get(self):
1023
+ """ """
1024
+ ...
1025
+
1026
+ def id_properties_clear(self):
1027
+ """ """
1028
+ ...
1029
+
1030
+ def id_properties_ensure(self):
1031
+ """ """
1032
+ ...
1033
+
1034
+ def id_properties_ui(self):
1035
+ """ """
1036
+ ...
1037
+
1038
+ def is_extended(self):
1039
+ """ """
1040
+ ...
1041
+
1042
+ def is_property_hidden(self):
1043
+ """ """
1044
+ ...
1045
+
1046
+ def is_property_overridable_library(self):
1047
+ """ """
1048
+ ...
1049
+
1050
+ def is_property_readonly(self):
1051
+ """ """
1052
+ ...
1053
+
1054
+ def is_property_set(self):
1055
+ """ """
1056
+ ...
1057
+
1058
+ def items(self):
1059
+ """ """
1060
+ ...
1061
+
1062
+ def keyframe_delete(self):
1063
+ """ """
1064
+ ...
1065
+
1066
+ def keyframe_insert(self):
1067
+ """ """
1068
+ ...
1069
+
1070
+ def keys(self):
1071
+ """ """
1072
+ ...
1073
+
1074
+ def path_from_id(self):
1075
+ """ """
1076
+ ...
1077
+
1078
+ def path_resolve(self):
1079
+ """ """
1080
+ ...
1081
+
1082
+ def poll(self, context):
1083
+ """
1084
+
1085
+ :param context:
1086
+ """
1087
+ ...
1088
+
1089
+ def pop(self):
1090
+ """ """
1091
+ ...
1092
+
1093
+ def prepend(self, draw_func):
1094
+ """
1095
+
1096
+ :param draw_func:
1097
+ """
1098
+ ...
1099
+
1100
+ def property_overridable_library_set(self):
1101
+ """ """
1102
+ ...
1103
+
1104
+ def property_unset(self):
1105
+ """ """
1106
+ ...
1107
+
1108
+ def remove(self, draw_func):
1109
+ """
1110
+
1111
+ :param draw_func:
1112
+ """
1113
+ ...
1114
+
1115
+ def type_recast(self):
1116
+ """ """
1117
+ ...
1118
+
1119
+ def values(self):
1120
+ """ """
1121
+ ...
1122
+
1123
+ class OBJECT_PT_instancing_size(bpy_types._GenericUI):
1124
+ """ """
1125
+
1126
+ bl_context: typing.Any
1127
+ """ """
1128
+
1129
+ bl_label: typing.Any
1130
+ """ """
1131
+
1132
+ bl_parent_id: typing.Any
1133
+ """ """
1134
+
1135
+ bl_region_type: typing.Any
1136
+ """ """
1137
+
1138
+ bl_rna: typing.Any
1139
+ """ """
1140
+
1141
+ bl_space_type: typing.Any
1142
+ """ """
1143
+
1144
+ id_data: typing.Any
1145
+ """ """
1146
+
1147
+ def append(self, draw_func):
1148
+ """
1149
+
1150
+ :param draw_func:
1151
+ """
1152
+ ...
1153
+
1154
+ def as_pointer(self):
1155
+ """ """
1156
+ ...
1157
+
1158
+ def bl_rna_get_subclass(self):
1159
+ """ """
1160
+ ...
1161
+
1162
+ def bl_rna_get_subclass_py(self):
1163
+ """ """
1164
+ ...
1165
+
1166
+ def draw(self, context):
1167
+ """
1168
+
1169
+ :param context:
1170
+ """
1171
+ ...
1172
+
1173
+ def draw_header(self, context):
1174
+ """
1175
+
1176
+ :param context:
1177
+ """
1178
+ ...
1179
+
1180
+ def driver_add(self):
1181
+ """ """
1182
+ ...
1183
+
1184
+ def driver_remove(self):
1185
+ """ """
1186
+ ...
1187
+
1188
+ def get(self):
1189
+ """ """
1190
+ ...
1191
+
1192
+ def id_properties_clear(self):
1193
+ """ """
1194
+ ...
1195
+
1196
+ def id_properties_ensure(self):
1197
+ """ """
1198
+ ...
1199
+
1200
+ def id_properties_ui(self):
1201
+ """ """
1202
+ ...
1203
+
1204
+ def is_extended(self):
1205
+ """ """
1206
+ ...
1207
+
1208
+ def is_property_hidden(self):
1209
+ """ """
1210
+ ...
1211
+
1212
+ def is_property_overridable_library(self):
1213
+ """ """
1214
+ ...
1215
+
1216
+ def is_property_readonly(self):
1217
+ """ """
1218
+ ...
1219
+
1220
+ def is_property_set(self):
1221
+ """ """
1222
+ ...
1223
+
1224
+ def items(self):
1225
+ """ """
1226
+ ...
1227
+
1228
+ def keyframe_delete(self):
1229
+ """ """
1230
+ ...
1231
+
1232
+ def keyframe_insert(self):
1233
+ """ """
1234
+ ...
1235
+
1236
+ def keys(self):
1237
+ """ """
1238
+ ...
1239
+
1240
+ def path_from_id(self):
1241
+ """ """
1242
+ ...
1243
+
1244
+ def path_resolve(self):
1245
+ """ """
1246
+ ...
1247
+
1248
+ def poll(self, context):
1249
+ """
1250
+
1251
+ :param context:
1252
+ """
1253
+ ...
1254
+
1255
+ def pop(self):
1256
+ """ """
1257
+ ...
1258
+
1259
+ def prepend(self, draw_func):
1260
+ """
1261
+
1262
+ :param draw_func:
1263
+ """
1264
+ ...
1265
+
1266
+ def property_overridable_library_set(self):
1267
+ """ """
1268
+ ...
1269
+
1270
+ def property_unset(self):
1271
+ """ """
1272
+ ...
1273
+
1274
+ def remove(self, draw_func):
1275
+ """
1276
+
1277
+ :param draw_func:
1278
+ """
1279
+ ...
1280
+
1281
+ def type_recast(self):
1282
+ """ """
1283
+ ...
1284
+
1285
+ def values(self):
1286
+ """ """
1287
+ ...
1288
+
1289
+ class OBJECT_PT_lineart(bpy_types._GenericUI):
1290
+ """ """
1291
+
1292
+ bl_context: typing.Any
1293
+ """ """
1294
+
1295
+ bl_label: typing.Any
1296
+ """ """
1297
+
1298
+ bl_options: typing.Any
1299
+ """ """
1300
+
1301
+ bl_order: typing.Any
1302
+ """ """
1303
+
1304
+ bl_region_type: typing.Any
1305
+ """ """
1306
+
1307
+ bl_rna: typing.Any
1308
+ """ """
1309
+
1310
+ bl_space_type: typing.Any
1311
+ """ """
1312
+
1313
+ id_data: typing.Any
1314
+ """ """
1315
+
1316
+ def append(self, draw_func):
1317
+ """
1318
+
1319
+ :param draw_func:
1320
+ """
1321
+ ...
1322
+
1323
+ def as_pointer(self):
1324
+ """ """
1325
+ ...
1326
+
1327
+ def bl_rna_get_subclass(self):
1328
+ """ """
1329
+ ...
1330
+
1331
+ def bl_rna_get_subclass_py(self):
1332
+ """ """
1333
+ ...
1334
+
1335
+ def draw(self, context):
1336
+ """
1337
+
1338
+ :param context:
1339
+ """
1340
+ ...
1341
+
1342
+ def driver_add(self):
1343
+ """ """
1344
+ ...
1345
+
1346
+ def driver_remove(self):
1347
+ """ """
1348
+ ...
1349
+
1350
+ def get(self):
1351
+ """ """
1352
+ ...
1353
+
1354
+ def id_properties_clear(self):
1355
+ """ """
1356
+ ...
1357
+
1358
+ def id_properties_ensure(self):
1359
+ """ """
1360
+ ...
1361
+
1362
+ def id_properties_ui(self):
1363
+ """ """
1364
+ ...
1365
+
1366
+ def is_extended(self):
1367
+ """ """
1368
+ ...
1369
+
1370
+ def is_property_hidden(self):
1371
+ """ """
1372
+ ...
1373
+
1374
+ def is_property_overridable_library(self):
1375
+ """ """
1376
+ ...
1377
+
1378
+ def is_property_readonly(self):
1379
+ """ """
1380
+ ...
1381
+
1382
+ def is_property_set(self):
1383
+ """ """
1384
+ ...
1385
+
1386
+ def items(self):
1387
+ """ """
1388
+ ...
1389
+
1390
+ def keyframe_delete(self):
1391
+ """ """
1392
+ ...
1393
+
1394
+ def keyframe_insert(self):
1395
+ """ """
1396
+ ...
1397
+
1398
+ def keys(self):
1399
+ """ """
1400
+ ...
1401
+
1402
+ def path_from_id(self):
1403
+ """ """
1404
+ ...
1405
+
1406
+ def path_resolve(self):
1407
+ """ """
1408
+ ...
1409
+
1410
+ def poll(self, context):
1411
+ """
1412
+
1413
+ :param context:
1414
+ """
1415
+ ...
1416
+
1417
+ def pop(self):
1418
+ """ """
1419
+ ...
1420
+
1421
+ def prepend(self, draw_func):
1422
+ """
1423
+
1424
+ :param draw_func:
1425
+ """
1426
+ ...
1427
+
1428
+ def property_overridable_library_set(self):
1429
+ """ """
1430
+ ...
1431
+
1432
+ def property_unset(self):
1433
+ """ """
1434
+ ...
1435
+
1436
+ def remove(self, draw_func):
1437
+ """
1438
+
1439
+ :param draw_func:
1440
+ """
1441
+ ...
1442
+
1443
+ def type_recast(self):
1444
+ """ """
1445
+ ...
1446
+
1447
+ def values(self):
1448
+ """ """
1449
+ ...
1450
+
1451
+ class OBJECT_PT_motion_paths(bpy_types._GenericUI):
1452
+ """ """
1453
+
1454
+ bl_context: typing.Any
1455
+ """ """
490
1456
 
491
- def append(self, draw_func): ...
492
- def as_pointer(self): ...
493
- def bl_rna_get_subclass(self): ...
494
- def bl_rna_get_subclass_py(self): ...
495
- def draw(self, context): ...
496
- def driver_add(self): ...
497
- def driver_remove(self): ...
498
- def get(self): ...
499
- def id_properties_clear(self): ...
500
- def id_properties_ensure(self): ...
501
- def id_properties_ui(self): ...
502
- def is_extended(self): ...
503
- def is_property_hidden(self): ...
504
- def is_property_overridable_library(self): ...
505
- def is_property_readonly(self): ...
506
- def is_property_set(self): ...
507
- def items(self): ...
508
- def keyframe_delete(self): ...
509
- def keyframe_insert(self): ...
510
- def keys(self): ...
511
- def path_from_id(self): ...
512
- def path_resolve(self): ...
513
- def pop(self): ...
514
- def prepend(self, draw_func): ...
515
- def property_overridable_library_set(self): ...
516
- def property_unset(self): ...
517
- def remove(self, draw_func): ...
518
- def type_recast(self): ...
519
- def values(self): ...
520
-
521
- class OBJECT_PT_transform(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
522
- bl_context: typing.Any
523
1457
  bl_label: typing.Any
1458
+ """ """
1459
+
1460
+ bl_options: typing.Any
1461
+ """ """
1462
+
524
1463
  bl_region_type: typing.Any
1464
+ """ """
1465
+
525
1466
  bl_rna: typing.Any
1467
+ """ """
1468
+
526
1469
  bl_space_type: typing.Any
1470
+ """ """
1471
+
527
1472
  id_data: typing.Any
1473
+ """ """
1474
+
1475
+ def append(self, draw_func):
1476
+ """
1477
+
1478
+ :param draw_func:
1479
+ """
1480
+ ...
1481
+
1482
+ def as_pointer(self):
1483
+ """ """
1484
+ ...
1485
+
1486
+ def bl_rna_get_subclass(self):
1487
+ """ """
1488
+ ...
1489
+
1490
+ def bl_rna_get_subclass_py(self):
1491
+ """ """
1492
+ ...
1493
+
1494
+ def draw(self, context):
1495
+ """
1496
+
1497
+ :param context:
1498
+ """
1499
+ ...
1500
+
1501
+ def draw_settings(self, _context, avs, mpath, bones):
1502
+ """
1503
+
1504
+ :param _context:
1505
+ :param avs:
1506
+ :param mpath:
1507
+ :param bones:
1508
+ """
1509
+ ...
1510
+
1511
+ def driver_add(self):
1512
+ """ """
1513
+ ...
1514
+
1515
+ def driver_remove(self):
1516
+ """ """
1517
+ ...
1518
+
1519
+ def get(self):
1520
+ """ """
1521
+ ...
1522
+
1523
+ def id_properties_clear(self):
1524
+ """ """
1525
+ ...
1526
+
1527
+ def id_properties_ensure(self):
1528
+ """ """
1529
+ ...
1530
+
1531
+ def id_properties_ui(self):
1532
+ """ """
1533
+ ...
1534
+
1535
+ def is_extended(self):
1536
+ """ """
1537
+ ...
1538
+
1539
+ def is_property_hidden(self):
1540
+ """ """
1541
+ ...
1542
+
1543
+ def is_property_overridable_library(self):
1544
+ """ """
1545
+ ...
1546
+
1547
+ def is_property_readonly(self):
1548
+ """ """
1549
+ ...
1550
+
1551
+ def is_property_set(self):
1552
+ """ """
1553
+ ...
1554
+
1555
+ def items(self):
1556
+ """ """
1557
+ ...
1558
+
1559
+ def keyframe_delete(self):
1560
+ """ """
1561
+ ...
1562
+
1563
+ def keyframe_insert(self):
1564
+ """ """
1565
+ ...
1566
+
1567
+ def keys(self):
1568
+ """ """
1569
+ ...
1570
+
1571
+ def path_from_id(self):
1572
+ """ """
1573
+ ...
1574
+
1575
+ def path_resolve(self):
1576
+ """ """
1577
+ ...
1578
+
1579
+ def poll(self, context):
1580
+ """
1581
+
1582
+ :param context:
1583
+ """
1584
+ ...
1585
+
1586
+ def pop(self):
1587
+ """ """
1588
+ ...
1589
+
1590
+ def prepend(self, draw_func):
1591
+ """
1592
+
1593
+ :param draw_func:
1594
+ """
1595
+ ...
1596
+
1597
+ def property_overridable_library_set(self):
1598
+ """ """
1599
+ ...
1600
+
1601
+ def property_unset(self):
1602
+ """ """
1603
+ ...
1604
+
1605
+ def remove(self, draw_func):
1606
+ """
1607
+
1608
+ :param draw_func:
1609
+ """
1610
+ ...
1611
+
1612
+ def type_recast(self):
1613
+ """ """
1614
+ ...
1615
+
1616
+ def values(self):
1617
+ """ """
1618
+ ...
1619
+
1620
+ class OBJECT_PT_motion_paths_display(bpy_types._GenericUI):
1621
+ """ """
1622
+
1623
+ bl_context: typing.Any
1624
+ """ """
1625
+
1626
+ bl_label: typing.Any
1627
+ """ """
1628
+
1629
+ bl_options: typing.Any
1630
+ """ """
1631
+
1632
+ bl_parent_id: typing.Any
1633
+ """ """
1634
+
1635
+ bl_region_type: typing.Any
1636
+ """ """
1637
+
1638
+ bl_rna: typing.Any
1639
+ """ """
1640
+
1641
+ bl_space_type: typing.Any
1642
+ """ """
1643
+
1644
+ id_data: typing.Any
1645
+ """ """
1646
+
1647
+ def append(self, draw_func):
1648
+ """
1649
+
1650
+ :param draw_func:
1651
+ """
1652
+ ...
1653
+
1654
+ def as_pointer(self):
1655
+ """ """
1656
+ ...
1657
+
1658
+ def bl_rna_get_subclass(self):
1659
+ """ """
1660
+ ...
1661
+
1662
+ def bl_rna_get_subclass_py(self):
1663
+ """ """
1664
+ ...
1665
+
1666
+ def draw(self, context):
1667
+ """
1668
+
1669
+ :param context:
1670
+ """
1671
+ ...
1672
+
1673
+ def draw_settings(self, _context, avs, mpath, bones):
1674
+ """
1675
+
1676
+ :param _context:
1677
+ :param avs:
1678
+ :param mpath:
1679
+ :param bones:
1680
+ """
1681
+ ...
1682
+
1683
+ def driver_add(self):
1684
+ """ """
1685
+ ...
1686
+
1687
+ def driver_remove(self):
1688
+ """ """
1689
+ ...
1690
+
1691
+ def get(self):
1692
+ """ """
1693
+ ...
1694
+
1695
+ def id_properties_clear(self):
1696
+ """ """
1697
+ ...
1698
+
1699
+ def id_properties_ensure(self):
1700
+ """ """
1701
+ ...
1702
+
1703
+ def id_properties_ui(self):
1704
+ """ """
1705
+ ...
1706
+
1707
+ def is_extended(self):
1708
+ """ """
1709
+ ...
1710
+
1711
+ def is_property_hidden(self):
1712
+ """ """
1713
+ ...
1714
+
1715
+ def is_property_overridable_library(self):
1716
+ """ """
1717
+ ...
1718
+
1719
+ def is_property_readonly(self):
1720
+ """ """
1721
+ ...
1722
+
1723
+ def is_property_set(self):
1724
+ """ """
1725
+ ...
1726
+
1727
+ def items(self):
1728
+ """ """
1729
+ ...
1730
+
1731
+ def keyframe_delete(self):
1732
+ """ """
1733
+ ...
1734
+
1735
+ def keyframe_insert(self):
1736
+ """ """
1737
+ ...
1738
+
1739
+ def keys(self):
1740
+ """ """
1741
+ ...
1742
+
1743
+ def path_from_id(self):
1744
+ """ """
1745
+ ...
1746
+
1747
+ def path_resolve(self):
1748
+ """ """
1749
+ ...
1750
+
1751
+ def poll(self, context):
1752
+ """
1753
+
1754
+ :param context:
1755
+ """
1756
+ ...
1757
+
1758
+ def pop(self):
1759
+ """ """
1760
+ ...
1761
+
1762
+ def prepend(self, draw_func):
1763
+ """
1764
+
1765
+ :param draw_func:
1766
+ """
1767
+ ...
1768
+
1769
+ def property_overridable_library_set(self):
1770
+ """ """
1771
+ ...
1772
+
1773
+ def property_unset(self):
1774
+ """ """
1775
+ ...
1776
+
1777
+ def remove(self, draw_func):
1778
+ """
1779
+
1780
+ :param draw_func:
1781
+ """
1782
+ ...
1783
+
1784
+ def type_recast(self):
1785
+ """ """
1786
+ ...
1787
+
1788
+ def values(self):
1789
+ """ """
1790
+ ...
1791
+
1792
+ class OBJECT_PT_relations(bpy_types._GenericUI):
1793
+ """ """
1794
+
1795
+ bl_context: typing.Any
1796
+ """ """
1797
+
1798
+ bl_label: typing.Any
1799
+ """ """
1800
+
1801
+ bl_options: typing.Any
1802
+ """ """
1803
+
1804
+ bl_region_type: typing.Any
1805
+ """ """
1806
+
1807
+ bl_rna: typing.Any
1808
+ """ """
1809
+
1810
+ bl_space_type: typing.Any
1811
+ """ """
1812
+
1813
+ id_data: typing.Any
1814
+ """ """
1815
+
1816
+ def append(self, draw_func):
1817
+ """
1818
+
1819
+ :param draw_func:
1820
+ """
1821
+ ...
1822
+
1823
+ def as_pointer(self):
1824
+ """ """
1825
+ ...
1826
+
1827
+ def bl_rna_get_subclass(self):
1828
+ """ """
1829
+ ...
1830
+
1831
+ def bl_rna_get_subclass_py(self):
1832
+ """ """
1833
+ ...
1834
+
1835
+ def draw(self, context):
1836
+ """
1837
+
1838
+ :param context:
1839
+ """
1840
+ ...
1841
+
1842
+ def driver_add(self):
1843
+ """ """
1844
+ ...
1845
+
1846
+ def driver_remove(self):
1847
+ """ """
1848
+ ...
1849
+
1850
+ def get(self):
1851
+ """ """
1852
+ ...
1853
+
1854
+ def id_properties_clear(self):
1855
+ """ """
1856
+ ...
1857
+
1858
+ def id_properties_ensure(self):
1859
+ """ """
1860
+ ...
1861
+
1862
+ def id_properties_ui(self):
1863
+ """ """
1864
+ ...
1865
+
1866
+ def is_extended(self):
1867
+ """ """
1868
+ ...
1869
+
1870
+ def is_property_hidden(self):
1871
+ """ """
1872
+ ...
1873
+
1874
+ def is_property_overridable_library(self):
1875
+ """ """
1876
+ ...
1877
+
1878
+ def is_property_readonly(self):
1879
+ """ """
1880
+ ...
1881
+
1882
+ def is_property_set(self):
1883
+ """ """
1884
+ ...
1885
+
1886
+ def items(self):
1887
+ """ """
1888
+ ...
1889
+
1890
+ def keyframe_delete(self):
1891
+ """ """
1892
+ ...
1893
+
1894
+ def keyframe_insert(self):
1895
+ """ """
1896
+ ...
1897
+
1898
+ def keys(self):
1899
+ """ """
1900
+ ...
1901
+
1902
+ def path_from_id(self):
1903
+ """ """
1904
+ ...
1905
+
1906
+ def path_resolve(self):
1907
+ """ """
1908
+ ...
1909
+
1910
+ def pop(self):
1911
+ """ """
1912
+ ...
1913
+
1914
+ def prepend(self, draw_func):
1915
+ """
1916
+
1917
+ :param draw_func:
1918
+ """
1919
+ ...
1920
+
1921
+ def property_overridable_library_set(self):
1922
+ """ """
1923
+ ...
1924
+
1925
+ def property_unset(self):
1926
+ """ """
1927
+ ...
1928
+
1929
+ def remove(self, draw_func):
1930
+ """
1931
+
1932
+ :param draw_func:
1933
+ """
1934
+ ...
1935
+
1936
+ def type_recast(self):
1937
+ """ """
1938
+ ...
1939
+
1940
+ def values(self):
1941
+ """ """
1942
+ ...
1943
+
1944
+ class OBJECT_PT_transform(bpy_types._GenericUI):
1945
+ """ """
1946
+
1947
+ bl_context: typing.Any
1948
+ """ """
1949
+
1950
+ bl_label: typing.Any
1951
+ """ """
1952
+
1953
+ bl_region_type: typing.Any
1954
+ """ """
1955
+
1956
+ bl_rna: typing.Any
1957
+ """ """
1958
+
1959
+ bl_space_type: typing.Any
1960
+ """ """
1961
+
1962
+ id_data: typing.Any
1963
+ """ """
1964
+
1965
+ def append(self, draw_func):
1966
+ """
1967
+
1968
+ :param draw_func:
1969
+ """
1970
+ ...
1971
+
1972
+ def as_pointer(self):
1973
+ """ """
1974
+ ...
1975
+
1976
+ def bl_rna_get_subclass(self):
1977
+ """ """
1978
+ ...
1979
+
1980
+ def bl_rna_get_subclass_py(self):
1981
+ """ """
1982
+ ...
1983
+
1984
+ def draw(self, context):
1985
+ """
1986
+
1987
+ :param context:
1988
+ """
1989
+ ...
1990
+
1991
+ def driver_add(self):
1992
+ """ """
1993
+ ...
1994
+
1995
+ def driver_remove(self):
1996
+ """ """
1997
+ ...
1998
+
1999
+ def get(self):
2000
+ """ """
2001
+ ...
2002
+
2003
+ def id_properties_clear(self):
2004
+ """ """
2005
+ ...
2006
+
2007
+ def id_properties_ensure(self):
2008
+ """ """
2009
+ ...
2010
+
2011
+ def id_properties_ui(self):
2012
+ """ """
2013
+ ...
2014
+
2015
+ def is_extended(self):
2016
+ """ """
2017
+ ...
2018
+
2019
+ def is_property_hidden(self):
2020
+ """ """
2021
+ ...
2022
+
2023
+ def is_property_overridable_library(self):
2024
+ """ """
2025
+ ...
2026
+
2027
+ def is_property_readonly(self):
2028
+ """ """
2029
+ ...
2030
+
2031
+ def is_property_set(self):
2032
+ """ """
2033
+ ...
2034
+
2035
+ def items(self):
2036
+ """ """
2037
+ ...
2038
+
2039
+ def keyframe_delete(self):
2040
+ """ """
2041
+ ...
2042
+
2043
+ def keyframe_insert(self):
2044
+ """ """
2045
+ ...
2046
+
2047
+ def keys(self):
2048
+ """ """
2049
+ ...
2050
+
2051
+ def path_from_id(self):
2052
+ """ """
2053
+ ...
2054
+
2055
+ def path_resolve(self):
2056
+ """ """
2057
+ ...
2058
+
2059
+ def pop(self):
2060
+ """ """
2061
+ ...
2062
+
2063
+ def prepend(self, draw_func):
2064
+ """
2065
+
2066
+ :param draw_func:
2067
+ """
2068
+ ...
2069
+
2070
+ def property_overridable_library_set(self):
2071
+ """ """
2072
+ ...
2073
+
2074
+ def property_unset(self):
2075
+ """ """
2076
+ ...
2077
+
2078
+ def remove(self, draw_func):
2079
+ """
2080
+
2081
+ :param draw_func:
2082
+ """
2083
+ ...
2084
+
2085
+ def type_recast(self):
2086
+ """ """
2087
+ ...
2088
+
2089
+ def values(self):
2090
+ """ """
2091
+ ...
2092
+
2093
+ class OBJECT_PT_visibility(bpy_types._GenericUI):
2094
+ """ """
528
2095
 
529
- def append(self, draw_func): ...
530
- def as_pointer(self): ...
531
- def bl_rna_get_subclass(self): ...
532
- def bl_rna_get_subclass_py(self): ...
533
- def draw(self, context): ...
534
- def driver_add(self): ...
535
- def driver_remove(self): ...
536
- def get(self): ...
537
- def id_properties_clear(self): ...
538
- def id_properties_ensure(self): ...
539
- def id_properties_ui(self): ...
540
- def is_extended(self): ...
541
- def is_property_hidden(self): ...
542
- def is_property_overridable_library(self): ...
543
- def is_property_readonly(self): ...
544
- def is_property_set(self): ...
545
- def items(self): ...
546
- def keyframe_delete(self): ...
547
- def keyframe_insert(self): ...
548
- def keys(self): ...
549
- def path_from_id(self): ...
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 OBJECT_PT_visibility(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
560
2096
  COMPAT_ENGINES: typing.Any
2097
+ """ """
2098
+
561
2099
  bl_context: typing.Any
2100
+ """ """
2101
+
562
2102
  bl_label: typing.Any
2103
+ """ """
2104
+
563
2105
  bl_options: typing.Any
2106
+ """ """
2107
+
564
2108
  bl_region_type: typing.Any
2109
+ """ """
2110
+
565
2111
  bl_rna: typing.Any
2112
+ """ """
2113
+
566
2114
  bl_space_type: typing.Any
2115
+ """ """
2116
+
567
2117
  id_data: typing.Any
2118
+ """ """
2119
+
2120
+ def append(self, draw_func):
2121
+ """
2122
+
2123
+ :param draw_func:
2124
+ """
2125
+ ...
2126
+
2127
+ def as_pointer(self):
2128
+ """ """
2129
+ ...
2130
+
2131
+ def bl_rna_get_subclass(self):
2132
+ """ """
2133
+ ...
2134
+
2135
+ def bl_rna_get_subclass_py(self):
2136
+ """ """
2137
+ ...
2138
+
2139
+ def draw(self, context):
2140
+ """
2141
+
2142
+ :param context:
2143
+ """
2144
+ ...
2145
+
2146
+ def driver_add(self):
2147
+ """ """
2148
+ ...
2149
+
2150
+ def driver_remove(self):
2151
+ """ """
2152
+ ...
2153
+
2154
+ def get(self):
2155
+ """ """
2156
+ ...
2157
+
2158
+ def id_properties_clear(self):
2159
+ """ """
2160
+ ...
2161
+
2162
+ def id_properties_ensure(self):
2163
+ """ """
2164
+ ...
2165
+
2166
+ def id_properties_ui(self):
2167
+ """ """
2168
+ ...
2169
+
2170
+ def is_extended(self):
2171
+ """ """
2172
+ ...
2173
+
2174
+ def is_property_hidden(self):
2175
+ """ """
2176
+ ...
2177
+
2178
+ def is_property_overridable_library(self):
2179
+ """ """
2180
+ ...
568
2181
 
569
- def append(self, draw_func): ...
570
- def as_pointer(self): ...
571
- def bl_rna_get_subclass(self): ...
572
- def bl_rna_get_subclass_py(self): ...
573
- def draw(self, context): ...
574
- def driver_add(self): ...
575
- def driver_remove(self): ...
576
- def get(self): ...
577
- def id_properties_clear(self): ...
578
- def id_properties_ensure(self): ...
579
- def id_properties_ui(self): ...
580
- def is_extended(self): ...
581
- def is_property_hidden(self): ...
582
- def is_property_overridable_library(self): ...
583
- def is_property_readonly(self): ...
584
- def is_property_set(self): ...
585
- def items(self): ...
586
- def keyframe_delete(self): ...
587
- def keyframe_insert(self): ...
588
- def keys(self): ...
589
- def path_from_id(self): ...
590
- def path_resolve(self): ...
591
- def poll(self, context): ...
592
- def pop(self): ...
593
- def prepend(self, draw_func): ...
594
- def property_overridable_library_set(self): ...
595
- def property_unset(self): ...
596
- def remove(self, draw_func): ...
597
- def type_recast(self): ...
598
- def values(self): ...
2182
+ def is_property_readonly(self):
2183
+ """ """
2184
+ ...
2185
+
2186
+ def is_property_set(self):
2187
+ """ """
2188
+ ...
2189
+
2190
+ def items(self):
2191
+ """ """
2192
+ ...
2193
+
2194
+ def keyframe_delete(self):
2195
+ """ """
2196
+ ...
2197
+
2198
+ def keyframe_insert(self):
2199
+ """ """
2200
+ ...
2201
+
2202
+ def keys(self):
2203
+ """ """
2204
+ ...
2205
+
2206
+ def path_from_id(self):
2207
+ """ """
2208
+ ...
2209
+
2210
+ def path_resolve(self):
2211
+ """ """
2212
+ ...
2213
+
2214
+ def poll(self, context):
2215
+ """
2216
+
2217
+ :param context:
2218
+ """
2219
+ ...
2220
+
2221
+ def pop(self):
2222
+ """ """
2223
+ ...
2224
+
2225
+ def prepend(self, draw_func):
2226
+ """
2227
+
2228
+ :param draw_func:
2229
+ """
2230
+ ...
2231
+
2232
+ def property_overridable_library_set(self):
2233
+ """ """
2234
+ ...
2235
+
2236
+ def property_unset(self):
2237
+ """ """
2238
+ ...
2239
+
2240
+ def remove(self, draw_func):
2241
+ """
2242
+
2243
+ :param draw_func:
2244
+ """
2245
+ ...
2246
+
2247
+ def type_recast(self):
2248
+ """ """
2249
+ ...
2250
+
2251
+ def values(self):
2252
+ """ """
2253
+ ...
2254
+
2255
+ class ObjectButtonsPanel:
2256
+ """ """
2257
+
2258
+ bl_context: typing.Any
2259
+ """ """
2260
+
2261
+ bl_region_type: typing.Any
2262
+ """ """
2263
+
2264
+ bl_space_type: typing.Any
2265
+ """ """