fake-bpy-module 20240320__py3-none-any.whl → 20240322__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +642 -822
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +331 -429
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86358 -87091
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240322.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240320.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/top_level.txt +0 -0
@@ -1,33 +1,43 @@
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
+ """ """
12
17
 
13
18
  def append(self, draw_func):
14
19
  """
15
20
 
16
21
  :param draw_func:
17
- :type draw_func:
18
22
  """
19
23
  ...
20
24
 
21
- def as_pointer(self): ...
22
- def bl_rna_get_subclass(self): ...
23
- def bl_rna_get_subclass_py(self): ...
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
+
24
37
  def draw(self, _context):
25
38
  """
26
39
 
27
- :param self:
28
- :type self:
29
40
  :param _context:
30
- :type _context:
31
41
  """
32
42
  ...
33
43
 
@@ -35,38 +45,81 @@ class COLLECTION_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
35
45
  """
36
46
 
37
47
  :param context:
38
- :type context:
39
48
  :param layout:
40
- :type layout:
41
49
  """
42
50
  ...
43
51
 
44
52
  def draw_preset(self, _context):
45
53
  """
46
54
 
47
- :param self:
48
- :type self:
49
55
  :param _context:
50
- :type _context:
51
- """
52
- ...
53
-
54
- def driver_add(self): ...
55
- def driver_remove(self): ...
56
- def get(self): ...
57
- def id_properties_clear(self): ...
58
- def id_properties_ensure(self): ...
59
- def id_properties_ui(self): ...
60
- def is_extended(self): ...
61
- def is_property_hidden(self): ...
62
- def is_property_overridable_library(self): ...
63
- def is_property_readonly(self): ...
64
- def is_property_set(self): ...
65
- def items(self): ...
66
- def keyframe_delete(self): ...
67
- def keyframe_insert(self): ...
68
- def keys(self): ...
69
- def path_from_id(self): ...
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
+ ...
122
+
70
123
  def path_menu(
71
124
  self,
72
125
  searchpaths,
@@ -80,1068 +133,2133 @@ class COLLECTION_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
80
133
  ):
81
134
  """
82
135
 
83
- :param self:
84
- :type self:
85
136
  :param searchpaths:
86
- :type searchpaths:
87
137
  :param operator:
88
- :type operator:
89
138
  :param props_default:
90
- :type props_default:
91
139
  :param prop_filepath:
92
- :type prop_filepath:
93
140
  :param filter_ext:
94
- :type filter_ext:
95
141
  :param filter_path:
96
- :type filter_path:
97
142
  :param display_name:
98
- :type display_name:
99
143
  :param add_operator:
100
- :type add_operator:
101
144
  """
102
145
  ...
103
146
 
104
- def path_resolve(self): ...
105
- def pop(self): ...
147
+ def path_resolve(self):
148
+ """ """
149
+ ...
150
+
151
+ def pop(self):
152
+ """ """
153
+ ...
154
+
106
155
  def prepend(self, draw_func):
107
156
  """
108
157
 
109
158
  :param draw_func:
110
- :type draw_func:
111
159
  """
112
160
  ...
113
161
 
114
- def property_overridable_library_set(self): ...
115
- def property_unset(self): ...
162
+ def property_overridable_library_set(self):
163
+ """ """
164
+ ...
165
+
166
+ def property_unset(self):
167
+ """ """
168
+ ...
169
+
116
170
  def remove(self, draw_func):
117
171
  """
118
172
 
119
173
  :param draw_func:
120
- :type draw_func:
121
174
  """
122
175
  ...
123
176
 
124
- def type_recast(self): ...
125
- def values(self): ...
177
+ def type_recast(self):
178
+ """ """
179
+ ...
180
+
181
+ def values(self):
182
+ """ """
183
+ ...
184
+
185
+ class OBJECT_PT_collections(bpy_types._GenericUI):
186
+ """ """
126
187
 
127
- class OBJECT_PT_motion_paths(
128
- bpy_types.Panel,
129
- bl_ui.properties_animviz.MotionPathButtonsPanel,
130
- bpy_types._GenericUI,
131
- ):
132
188
  bl_context: typing.Any
189
+ """ """
190
+
133
191
  bl_label: typing.Any
192
+ """ """
193
+
134
194
  bl_options: typing.Any
195
+ """ """
196
+
135
197
  bl_region_type: typing.Any
198
+ """ """
199
+
136
200
  bl_rna: typing.Any
201
+ """ """
202
+
137
203
  bl_space_type: typing.Any
204
+ """ """
205
+
138
206
  id_data: typing.Any
207
+ """ """
139
208
 
140
209
  def append(self, draw_func):
141
210
  """
142
211
 
143
212
  :param draw_func:
144
- :type draw_func:
145
213
  """
146
214
  ...
147
215
 
148
- def as_pointer(self): ...
149
- def bl_rna_get_subclass(self): ...
150
- def bl_rna_get_subclass_py(self): ...
151
- def draw(self, context):
152
- """
216
+ def as_pointer(self):
217
+ """ """
218
+ ...
153
219
 
154
- :param self:
155
- :type self:
156
- :param context:
157
- :type context:
158
- """
220
+ def bl_rna_get_subclass(self):
221
+ """ """
159
222
  ...
160
223
 
161
- def draw_settings(self, _context, avs, mpath, bones):
162
- """
224
+ def bl_rna_get_subclass_py(self):
225
+ """ """
226
+ ...
163
227
 
164
- :param self:
165
- :type self:
166
- :param _context:
167
- :type _context:
168
- :param avs:
169
- :type avs:
170
- :param mpath:
171
- :type mpath:
172
- :param bones:
173
- :type bones:
174
- """
175
- ...
176
-
177
- def driver_add(self): ...
178
- def driver_remove(self): ...
179
- def get(self): ...
180
- def id_properties_clear(self): ...
181
- def id_properties_ensure(self): ...
182
- def id_properties_ui(self): ...
183
- def is_extended(self): ...
184
- def is_property_hidden(self): ...
185
- def is_property_overridable_library(self): ...
186
- def is_property_readonly(self): ...
187
- def is_property_set(self): ...
188
- def items(self): ...
189
- def keyframe_delete(self): ...
190
- def keyframe_insert(self): ...
191
- def keys(self): ...
192
- def path_from_id(self): ...
193
- def path_resolve(self): ...
194
- def poll(self, context):
228
+ def draw(self, context):
195
229
  """
196
230
 
197
231
  :param context:
198
- :type context:
199
232
  """
200
233
  ...
201
234
 
202
- def pop(self): ...
203
- def prepend(self, draw_func):
204
- """
205
-
206
- :param draw_func:
207
- :type draw_func:
208
- """
235
+ def driver_add(self):
236
+ """ """
209
237
  ...
210
238
 
211
- def property_overridable_library_set(self): ...
212
- def property_unset(self): ...
213
- def remove(self, draw_func):
214
- """
215
-
216
- :param draw_func:
217
- :type draw_func:
218
- """
239
+ def driver_remove(self):
240
+ """ """
219
241
  ...
220
242
 
221
- def type_recast(self): ...
222
- def values(self): ...
243
+ def get(self):
244
+ """ """
245
+ ...
223
246
 
224
- class OBJECT_PT_motion_paths_display(
225
- bpy_types.Panel,
226
- bl_ui.properties_animviz.MotionPathButtonsPanel_display,
227
- bpy_types._GenericUI,
228
- ):
229
- bl_context: typing.Any
230
- bl_label: typing.Any
231
- bl_options: typing.Any
232
- bl_parent_id: typing.Any
233
- bl_region_type: typing.Any
234
- bl_rna: typing.Any
235
- bl_space_type: typing.Any
236
- id_data: typing.Any
247
+ def id_properties_clear(self):
248
+ """ """
249
+ ...
237
250
 
238
- def append(self, draw_func):
239
- """
251
+ def id_properties_ensure(self):
252
+ """ """
253
+ ...
240
254
 
241
- :param draw_func:
242
- :type draw_func:
243
- """
255
+ def id_properties_ui(self):
256
+ """ """
244
257
  ...
245
258
 
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
- """
259
+ def is_extended(self):
260
+ """ """
261
+ ...
251
262
 
252
- :param self:
253
- :type self:
254
- :param context:
255
- :type context:
256
- """
263
+ def is_property_hidden(self):
264
+ """ """
257
265
  ...
258
266
 
259
- def draw_settings(self, _context, avs, mpath, bones):
260
- """
267
+ def is_property_overridable_library(self):
268
+ """ """
269
+ ...
261
270
 
262
- :param self:
263
- :type self:
264
- :param _context:
265
- :type _context:
266
- :param avs:
267
- :type avs:
268
- :param mpath:
269
- :type mpath:
270
- :param bones:
271
- :type bones:
272
- """
273
- ...
274
-
275
- def driver_add(self): ...
276
- def driver_remove(self): ...
277
- def get(self): ...
278
- def id_properties_clear(self): ...
279
- def id_properties_ensure(self): ...
280
- def id_properties_ui(self): ...
281
- def is_extended(self): ...
282
- def is_property_hidden(self): ...
283
- def is_property_overridable_library(self): ...
284
- def is_property_readonly(self): ...
285
- def is_property_set(self): ...
286
- def items(self): ...
287
- def keyframe_delete(self): ...
288
- def keyframe_insert(self): ...
289
- def keys(self): ...
290
- def path_from_id(self): ...
291
- def path_resolve(self): ...
292
- def poll(self, context):
293
- """
271
+ def is_property_readonly(self):
272
+ """ """
273
+ ...
294
274
 
295
- :param context:
296
- :type context:
297
- """
275
+ def is_property_set(self):
276
+ """ """
298
277
  ...
299
278
 
300
- def pop(self): ...
301
- def prepend(self, draw_func):
302
- """
279
+ def items(self):
280
+ """ """
281
+ ...
303
282
 
304
- :param draw_func:
305
- :type draw_func:
306
- """
283
+ def keyframe_delete(self):
284
+ """ """
307
285
  ...
308
286
 
309
- def property_overridable_library_set(self): ...
310
- def property_unset(self): ...
311
- def remove(self, draw_func):
312
- """
287
+ def keyframe_insert(self):
288
+ """ """
289
+ ...
313
290
 
314
- :param draw_func:
315
- :type draw_func:
316
- """
291
+ def keys(self):
292
+ """ """
317
293
  ...
318
294
 
319
- def type_recast(self): ...
320
- def values(self): ...
295
+ def path_from_id(self):
296
+ """ """
297
+ ...
321
298
 
322
- class ObjectButtonsPanel:
323
- bl_context: typing.Any
324
- bl_region_type: typing.Any
325
- bl_space_type: typing.Any
299
+ def path_resolve(self):
300
+ """ """
301
+ ...
326
302
 
327
- class OBJECT_PT_collections(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
328
- bl_context: typing.Any
329
- bl_label: typing.Any
330
- bl_options: typing.Any
331
- bl_region_type: typing.Any
332
- bl_rna: typing.Any
333
- bl_space_type: typing.Any
334
- id_data: typing.Any
303
+ def pop(self):
304
+ """ """
305
+ ...
335
306
 
336
- def append(self, draw_func):
307
+ def prepend(self, draw_func):
337
308
  """
338
309
 
339
310
  :param draw_func:
340
- :type draw_func:
341
311
  """
342
312
  ...
343
313
 
344
- def as_pointer(self): ...
345
- def bl_rna_get_subclass(self): ...
346
- def bl_rna_get_subclass_py(self): ...
347
- def draw(self, context):
348
- """
349
-
350
- :param self:
351
- :type self:
352
- :param context:
353
- :type context:
354
- """
355
- ...
356
-
357
- def driver_add(self): ...
358
- def driver_remove(self): ...
359
- def get(self): ...
360
- def id_properties_clear(self): ...
361
- def id_properties_ensure(self): ...
362
- def id_properties_ui(self): ...
363
- def is_extended(self): ...
364
- def is_property_hidden(self): ...
365
- def is_property_overridable_library(self): ...
366
- def is_property_readonly(self): ...
367
- def is_property_set(self): ...
368
- def items(self): ...
369
- def keyframe_delete(self): ...
370
- def keyframe_insert(self): ...
371
- def keys(self): ...
372
- def path_from_id(self): ...
373
- def path_resolve(self): ...
374
- def pop(self): ...
375
- def prepend(self, draw_func):
376
- """
314
+ def property_overridable_library_set(self):
315
+ """ """
316
+ ...
377
317
 
378
- :param draw_func:
379
- :type draw_func:
380
- """
318
+ def property_unset(self):
319
+ """ """
381
320
  ...
382
321
 
383
- def property_overridable_library_set(self): ...
384
- def property_unset(self): ...
385
322
  def remove(self, draw_func):
386
323
  """
387
324
 
388
325
  :param draw_func:
389
- :type draw_func:
390
326
  """
391
327
  ...
392
328
 
393
- def type_recast(self): ...
394
- def values(self): ...
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
+ """ """
395
339
 
396
- class OBJECT_PT_context_object(
397
- ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
398
- ):
399
340
  bl_context: typing.Any
341
+ """ """
342
+
400
343
  bl_label: typing.Any
344
+ """ """
345
+
401
346
  bl_options: typing.Any
347
+ """ """
348
+
402
349
  bl_region_type: typing.Any
350
+ """ """
351
+
403
352
  bl_rna: typing.Any
353
+ """ """
354
+
404
355
  bl_space_type: typing.Any
356
+ """ """
357
+
405
358
  id_data: typing.Any
359
+ """ """
406
360
 
407
361
  def append(self, draw_func):
408
362
  """
409
363
 
410
364
  :param draw_func:
411
- :type draw_func:
412
365
  """
413
366
  ...
414
367
 
415
- def as_pointer(self): ...
416
- def bl_rna_get_subclass(self): ...
417
- def bl_rna_get_subclass_py(self): ...
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
+
418
380
  def draw(self, context):
419
381
  """
420
382
 
421
- :param self:
422
- :type self:
423
383
  :param context:
424
- :type context:
425
- """
426
- ...
427
-
428
- def driver_add(self): ...
429
- def driver_remove(self): ...
430
- def get(self): ...
431
- def id_properties_clear(self): ...
432
- def id_properties_ensure(self): ...
433
- def id_properties_ui(self): ...
434
- def is_extended(self): ...
435
- def is_property_hidden(self): ...
436
- def is_property_overridable_library(self): ...
437
- def is_property_readonly(self): ...
438
- def is_property_set(self): ...
439
- def items(self): ...
440
- def keyframe_delete(self): ...
441
- def keyframe_insert(self): ...
442
- def keys(self): ...
443
- def path_from_id(self): ...
444
- def path_resolve(self): ...
445
- def pop(self): ...
446
- def prepend(self, draw_func):
447
- """
448
-
449
- :param draw_func:
450
- :type draw_func:
451
384
  """
452
385
  ...
453
386
 
454
- def property_overridable_library_set(self): ...
455
- def property_unset(self): ...
456
- def remove(self, draw_func):
457
- """
387
+ def driver_add(self):
388
+ """ """
389
+ ...
458
390
 
459
- :param draw_func:
460
- :type draw_func:
461
- """
391
+ def driver_remove(self):
392
+ """ """
462
393
  ...
463
394
 
464
- def type_recast(self): ...
465
- def values(self): ...
395
+ def get(self):
396
+ """ """
397
+ ...
466
398
 
467
- class OBJECT_PT_custom_props(
468
- ObjectButtonsPanel, bpy_types.Panel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
469
- ):
470
- COMPAT_ENGINES: typing.Any
471
- bl_context: typing.Any
472
- bl_label: typing.Any
473
- bl_options: typing.Any
474
- bl_order: typing.Any
475
- bl_region_type: typing.Any
476
- bl_rna: typing.Any
477
- bl_space_type: typing.Any
478
- id_data: typing.Any
399
+ def id_properties_clear(self):
400
+ """ """
401
+ ...
479
402
 
480
- def append(self, draw_func):
481
- """
403
+ def id_properties_ensure(self):
404
+ """ """
405
+ ...
482
406
 
483
- :param draw_func:
484
- :type draw_func:
485
- """
407
+ def id_properties_ui(self):
408
+ """ """
486
409
  ...
487
410
 
488
- def as_pointer(self): ...
489
- def bl_rna_get_subclass(self): ...
490
- def bl_rna_get_subclass_py(self): ...
491
- def draw(self, context):
492
- """
411
+ def is_extended(self):
412
+ """ """
413
+ ...
493
414
 
494
- :param self:
495
- :type self:
496
- :param context:
497
- :type context:
498
- """
499
- ...
500
-
501
- def driver_add(self): ...
502
- def driver_remove(self): ...
503
- def get(self): ...
504
- def id_properties_clear(self): ...
505
- def id_properties_ensure(self): ...
506
- def id_properties_ui(self): ...
507
- def is_extended(self): ...
508
- def is_property_hidden(self): ...
509
- def is_property_overridable_library(self): ...
510
- def is_property_readonly(self): ...
511
- def is_property_set(self): ...
512
- def items(self): ...
513
- def keyframe_delete(self): ...
514
- def keyframe_insert(self): ...
515
- def keys(self): ...
516
- def path_from_id(self): ...
517
- def path_resolve(self): ...
518
- def poll(self, context):
519
- """
415
+ def is_property_hidden(self):
416
+ """ """
417
+ ...
520
418
 
521
- :param context:
522
- :type context:
523
- """
419
+ def is_property_overridable_library(self):
420
+ """ """
524
421
  ...
525
422
 
526
- def pop(self): ...
527
- def prepend(self, draw_func):
528
- """
423
+ def is_property_readonly(self):
424
+ """ """
425
+ ...
529
426
 
530
- :param draw_func:
531
- :type draw_func:
532
- """
427
+ def is_property_set(self):
428
+ """ """
533
429
  ...
534
430
 
535
- def property_overridable_library_set(self): ...
536
- def property_unset(self): ...
537
- def remove(self, draw_func):
538
- """
431
+ def items(self):
432
+ """ """
433
+ ...
539
434
 
540
- :param draw_func:
541
- :type draw_func:
542
- """
435
+ def keyframe_delete(self):
436
+ """ """
543
437
  ...
544
438
 
545
- def type_recast(self): ...
546
- def values(self): ...
439
+ def keyframe_insert(self):
440
+ """ """
441
+ ...
547
442
 
548
- class OBJECT_PT_delta_transform(
549
- ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
550
- ):
551
- bl_context: typing.Any
552
- bl_label: typing.Any
553
- bl_options: typing.Any
554
- bl_parent_id: typing.Any
555
- bl_region_type: typing.Any
556
- bl_rna: typing.Any
557
- bl_space_type: typing.Any
558
- id_data: typing.Any
443
+ def keys(self):
444
+ """ """
445
+ ...
559
446
 
560
- def append(self, draw_func):
561
- """
447
+ def path_from_id(self):
448
+ """ """
449
+ ...
562
450
 
563
- :param draw_func:
564
- :type draw_func:
565
- """
451
+ def path_resolve(self):
452
+ """ """
566
453
  ...
567
454
 
568
- def as_pointer(self): ...
569
- def bl_rna_get_subclass(self): ...
570
- def bl_rna_get_subclass_py(self): ...
571
- def draw(self, context):
572
- """
455
+ def pop(self):
456
+ """ """
457
+ ...
573
458
 
574
- :param self:
575
- :type self:
576
- :param context:
577
- :type context:
578
- """
579
- ...
580
-
581
- def driver_add(self): ...
582
- def driver_remove(self): ...
583
- def get(self): ...
584
- def id_properties_clear(self): ...
585
- def id_properties_ensure(self): ...
586
- def id_properties_ui(self): ...
587
- def is_extended(self): ...
588
- def is_property_hidden(self): ...
589
- def is_property_overridable_library(self): ...
590
- def is_property_readonly(self): ...
591
- def is_property_set(self): ...
592
- def items(self): ...
593
- def keyframe_delete(self): ...
594
- def keyframe_insert(self): ...
595
- def keys(self): ...
596
- def path_from_id(self): ...
597
- def path_resolve(self): ...
598
- def pop(self): ...
599
459
  def prepend(self, draw_func):
600
460
  """
601
461
 
602
462
  :param draw_func:
603
- :type draw_func:
604
463
  """
605
464
  ...
606
465
 
607
- def property_overridable_library_set(self): ...
608
- def property_unset(self): ...
466
+ def property_overridable_library_set(self):
467
+ """ """
468
+ ...
469
+
470
+ def property_unset(self):
471
+ """ """
472
+ ...
473
+
609
474
  def remove(self, draw_func):
610
475
  """
611
476
 
612
477
  :param draw_func:
613
- :type draw_func:
614
478
  """
615
479
  ...
616
480
 
617
- def type_recast(self): ...
618
- def values(self): ...
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
+ """ """
491
+
492
+ COMPAT_ENGINES: typing.Any
493
+ """ """
619
494
 
620
- class OBJECT_PT_display(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
621
495
  bl_context: typing.Any
496
+ """ """
497
+
622
498
  bl_label: typing.Any
499
+ """ """
500
+
623
501
  bl_options: typing.Any
502
+ """ """
503
+
624
504
  bl_order: typing.Any
505
+ """ """
506
+
625
507
  bl_region_type: typing.Any
508
+ """ """
509
+
626
510
  bl_rna: typing.Any
511
+ """ """
512
+
627
513
  bl_space_type: typing.Any
514
+ """ """
515
+
628
516
  id_data: typing.Any
517
+ """ """
629
518
 
630
519
  def append(self, draw_func):
631
520
  """
632
521
 
633
522
  :param draw_func:
634
- :type draw_func:
635
523
  """
636
524
  ...
637
525
 
638
- def as_pointer(self): ...
639
- def bl_rna_get_subclass(self): ...
640
- def bl_rna_get_subclass_py(self): ...
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
+
641
538
  def draw(self, context):
642
539
  """
643
540
 
644
- :param self:
645
- :type self:
646
541
  :param context:
647
- :type context:
648
- """
649
- ...
650
-
651
- def driver_add(self): ...
652
- def driver_remove(self): ...
653
- def get(self): ...
654
- def id_properties_clear(self): ...
655
- def id_properties_ensure(self): ...
656
- def id_properties_ui(self): ...
657
- def is_extended(self): ...
658
- def is_property_hidden(self): ...
659
- def is_property_overridable_library(self): ...
660
- def is_property_readonly(self): ...
661
- def is_property_set(self): ...
662
- def items(self): ...
663
- def keyframe_delete(self): ...
664
- def keyframe_insert(self): ...
665
- def keys(self): ...
666
- def path_from_id(self): ...
667
- def path_resolve(self): ...
668
- def pop(self): ...
669
- def prepend(self, draw_func):
670
542
  """
543
+ ...
671
544
 
672
- :param draw_func:
673
- :type draw_func:
674
- """
545
+ def driver_add(self):
546
+ """ """
675
547
  ...
676
548
 
677
- def property_overridable_library_set(self): ...
678
- def property_unset(self): ...
679
- def remove(self, draw_func):
680
- """
549
+ def driver_remove(self):
550
+ """ """
551
+ ...
681
552
 
682
- :param draw_func:
683
- :type draw_func:
684
- """
553
+ def get(self):
554
+ """ """
685
555
  ...
686
556
 
687
- def type_recast(self): ...
688
- def values(self): ...
557
+ def id_properties_clear(self):
558
+ """ """
559
+ ...
689
560
 
690
- class OBJECT_PT_instancing(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
691
- bl_context: typing.Any
692
- bl_label: typing.Any
693
- bl_options: typing.Any
694
- bl_region_type: typing.Any
695
- bl_rna: typing.Any
696
- bl_space_type: typing.Any
697
- id_data: typing.Any
561
+ def id_properties_ensure(self):
562
+ """ """
563
+ ...
698
564
 
699
- def append(self, draw_func):
700
- """
565
+ def id_properties_ui(self):
566
+ """ """
567
+ ...
701
568
 
702
- :param draw_func:
703
- :type draw_func:
704
- """
569
+ def is_extended(self):
570
+ """ """
705
571
  ...
706
572
 
707
- def as_pointer(self): ...
708
- def bl_rna_get_subclass(self): ...
709
- def bl_rna_get_subclass_py(self): ...
710
- def draw(self, context):
711
- """
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
+ ...
712
612
 
713
- :param self:
714
- :type self:
715
- :param context:
716
- :type context:
717
- """
718
- ...
719
-
720
- def driver_add(self): ...
721
- def driver_remove(self): ...
722
- def get(self): ...
723
- def id_properties_clear(self): ...
724
- def id_properties_ensure(self): ...
725
- def id_properties_ui(self): ...
726
- def is_extended(self): ...
727
- def is_property_hidden(self): ...
728
- def is_property_overridable_library(self): ...
729
- def is_property_readonly(self): ...
730
- def is_property_set(self): ...
731
- def items(self): ...
732
- def keyframe_delete(self): ...
733
- def keyframe_insert(self): ...
734
- def keys(self): ...
735
- def path_from_id(self): ...
736
- def path_resolve(self): ...
737
613
  def poll(self, context):
738
614
  """
739
615
 
740
616
  :param context:
741
- :type context:
742
617
  """
743
618
  ...
744
619
 
745
- def pop(self): ...
620
+ def pop(self):
621
+ """ """
622
+ ...
623
+
746
624
  def prepend(self, draw_func):
747
625
  """
748
626
 
749
627
  :param draw_func:
750
- :type draw_func:
751
628
  """
752
629
  ...
753
630
 
754
- def property_overridable_library_set(self): ...
755
- def property_unset(self): ...
631
+ def property_overridable_library_set(self):
632
+ """ """
633
+ ...
634
+
635
+ def property_unset(self):
636
+ """ """
637
+ ...
638
+
756
639
  def remove(self, draw_func):
757
640
  """
758
641
 
759
642
  :param draw_func:
760
- :type draw_func:
761
643
  """
762
644
  ...
763
645
 
764
- def type_recast(self): ...
765
- def values(self): ...
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
+ """ """
766
656
 
767
- class OBJECT_PT_instancing_size(
768
- ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
769
- ):
770
657
  bl_context: typing.Any
658
+ """ """
659
+
771
660
  bl_label: typing.Any
661
+ """ """
662
+
663
+ bl_options: typing.Any
664
+ """ """
665
+
772
666
  bl_parent_id: typing.Any
667
+ """ """
668
+
773
669
  bl_region_type: typing.Any
670
+ """ """
671
+
774
672
  bl_rna: typing.Any
673
+ """ """
674
+
775
675
  bl_space_type: typing.Any
676
+ """ """
677
+
776
678
  id_data: typing.Any
679
+ """ """
777
680
 
778
681
  def append(self, draw_func):
779
682
  """
780
683
 
781
684
  :param draw_func:
782
- :type draw_func:
783
685
  """
784
686
  ...
785
687
 
786
- def as_pointer(self): ...
787
- def bl_rna_get_subclass(self): ...
788
- def bl_rna_get_subclass_py(self): ...
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
+
789
700
  def draw(self, context):
790
701
  """
791
702
 
792
- :param self:
793
- :type self:
794
703
  :param context:
795
- :type context:
796
704
  """
797
705
  ...
798
706
 
799
- def draw_header(self, context):
800
- """
707
+ def driver_add(self):
708
+ """ """
709
+ ...
801
710
 
802
- :param self:
803
- :type self:
804
- :param context:
805
- :type context:
806
- """
807
- ...
808
-
809
- def driver_add(self): ...
810
- def driver_remove(self): ...
811
- def get(self): ...
812
- def id_properties_clear(self): ...
813
- def id_properties_ensure(self): ...
814
- def id_properties_ui(self): ...
815
- def is_extended(self): ...
816
- def is_property_hidden(self): ...
817
- def is_property_overridable_library(self): ...
818
- def is_property_readonly(self): ...
819
- def is_property_set(self): ...
820
- def items(self): ...
821
- def keyframe_delete(self): ...
822
- def keyframe_insert(self): ...
823
- def keys(self): ...
824
- def path_from_id(self): ...
825
- def path_resolve(self): ...
826
- def poll(self, context):
827
- """
711
+ def driver_remove(self):
712
+ """ """
713
+ ...
828
714
 
829
- :param context:
830
- :type context:
831
- """
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
+ """ """
832
777
  ...
833
778
 
834
- def pop(self): ...
835
779
  def prepend(self, draw_func):
836
780
  """
837
781
 
838
782
  :param draw_func:
839
- :type draw_func:
840
783
  """
841
784
  ...
842
785
 
843
- def property_overridable_library_set(self): ...
844
- def property_unset(self): ...
786
+ def property_overridable_library_set(self):
787
+ """ """
788
+ ...
789
+
790
+ def property_unset(self):
791
+ """ """
792
+ ...
793
+
845
794
  def remove(self, draw_func):
846
795
  """
847
796
 
848
797
  :param draw_func:
849
- :type draw_func:
850
798
  """
851
799
  ...
852
800
 
853
- def type_recast(self): ...
854
- def values(self): ...
801
+ def type_recast(self):
802
+ """ """
803
+ ...
804
+
805
+ def values(self):
806
+ """ """
807
+ ...
808
+
809
+ class OBJECT_PT_display(bpy_types._GenericUI):
810
+ """ """
855
811
 
856
- class OBJECT_PT_lineart(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
857
812
  bl_context: typing.Any
813
+ """ """
814
+
858
815
  bl_label: typing.Any
816
+ """ """
817
+
859
818
  bl_options: typing.Any
819
+ """ """
820
+
860
821
  bl_order: typing.Any
822
+ """ """
823
+
861
824
  bl_region_type: typing.Any
825
+ """ """
826
+
862
827
  bl_rna: typing.Any
828
+ """ """
829
+
863
830
  bl_space_type: typing.Any
831
+ """ """
832
+
864
833
  id_data: typing.Any
834
+ """ """
865
835
 
866
836
  def append(self, draw_func):
867
837
  """
868
838
 
869
839
  :param draw_func:
870
- :type draw_func:
871
840
  """
872
841
  ...
873
842
 
874
- def as_pointer(self): ...
875
- def bl_rna_get_subclass(self): ...
876
- def bl_rna_get_subclass_py(self): ...
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
+
877
855
  def draw(self, context):
878
856
  """
879
857
 
880
- :param self:
881
- :type self:
882
858
  :param context:
883
- :type context:
884
- """
885
- ...
886
-
887
- def driver_add(self): ...
888
- def driver_remove(self): ...
889
- def get(self): ...
890
- def id_properties_clear(self): ...
891
- def id_properties_ensure(self): ...
892
- def id_properties_ui(self): ...
893
- def is_extended(self): ...
894
- def is_property_hidden(self): ...
895
- def is_property_overridable_library(self): ...
896
- def is_property_readonly(self): ...
897
- def is_property_set(self): ...
898
- def items(self): ...
899
- def keyframe_delete(self): ...
900
- def keyframe_insert(self): ...
901
- def keys(self): ...
902
- def path_from_id(self): ...
903
- def path_resolve(self): ...
904
- def poll(self, context):
905
859
  """
860
+ ...
906
861
 
907
- :param context:
908
- :type context:
909
- """
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
+ """ """
910
932
  ...
911
933
 
912
- def pop(self): ...
913
934
  def prepend(self, draw_func):
914
935
  """
915
936
 
916
937
  :param draw_func:
917
- :type draw_func:
918
938
  """
919
939
  ...
920
940
 
921
- def property_overridable_library_set(self): ...
922
- def property_unset(self): ...
941
+ def property_overridable_library_set(self):
942
+ """ """
943
+ ...
944
+
945
+ def property_unset(self):
946
+ """ """
947
+ ...
948
+
923
949
  def remove(self, draw_func):
924
950
  """
925
951
 
926
952
  :param draw_func:
927
- :type draw_func:
928
953
  """
929
954
  ...
930
955
 
931
- def type_recast(self): ...
932
- def values(self): ...
956
+ def type_recast(self):
957
+ """ """
958
+ ...
959
+
960
+ def values(self):
961
+ """ """
962
+ ...
963
+
964
+ class OBJECT_PT_instancing(bpy_types._GenericUI):
965
+ """ """
933
966
 
934
- class OBJECT_PT_relations(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
935
967
  bl_context: typing.Any
968
+ """ """
969
+
936
970
  bl_label: typing.Any
971
+ """ """
972
+
937
973
  bl_options: typing.Any
974
+ """ """
975
+
938
976
  bl_region_type: typing.Any
977
+ """ """
978
+
939
979
  bl_rna: typing.Any
980
+ """ """
981
+
940
982
  bl_space_type: typing.Any
983
+ """ """
984
+
941
985
  id_data: typing.Any
986
+ """ """
942
987
 
943
988
  def append(self, draw_func):
944
989
  """
945
990
 
946
991
  :param draw_func:
947
- :type draw_func:
948
992
  """
949
993
  ...
950
994
 
951
- def as_pointer(self): ...
952
- def bl_rna_get_subclass(self): ...
953
- def bl_rna_get_subclass_py(self): ...
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
+
954
1007
  def draw(self, context):
955
1008
  """
956
1009
 
957
- :param self:
958
- :type self:
959
1010
  :param context:
960
- :type context:
961
- """
962
- ...
963
-
964
- def driver_add(self): ...
965
- def driver_remove(self): ...
966
- def get(self): ...
967
- def id_properties_clear(self): ...
968
- def id_properties_ensure(self): ...
969
- def id_properties_ui(self): ...
970
- def is_extended(self): ...
971
- def is_property_hidden(self): ...
972
- def is_property_overridable_library(self): ...
973
- def is_property_readonly(self): ...
974
- def is_property_set(self): ...
975
- def items(self): ...
976
- def keyframe_delete(self): ...
977
- def keyframe_insert(self): ...
978
- def keys(self): ...
979
- def path_from_id(self): ...
980
- def path_resolve(self): ...
981
- def pop(self): ...
982
- def prepend(self, draw_func):
983
1011
  """
1012
+ ...
984
1013
 
985
- :param draw_func:
986
- :type draw_func:
987
- """
1014
+ def driver_add(self):
1015
+ """ """
988
1016
  ...
989
1017
 
990
- def property_overridable_library_set(self): ...
991
- def property_unset(self): ...
992
- def remove(self, draw_func):
993
- """
1018
+ def driver_remove(self):
1019
+ """ """
1020
+ ...
994
1021
 
995
- :param draw_func:
996
- :type draw_func:
997
- """
1022
+ def get(self):
1023
+ """ """
998
1024
  ...
999
1025
 
1000
- def type_recast(self): ...
1001
- def values(self): ...
1026
+ def id_properties_clear(self):
1027
+ """ """
1028
+ ...
1002
1029
 
1003
- class OBJECT_PT_transform(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1004
- bl_context: typing.Any
1005
- bl_label: typing.Any
1006
- bl_region_type: typing.Any
1007
- bl_rna: typing.Any
1008
- bl_space_type: typing.Any
1009
- id_data: typing.Any
1030
+ def id_properties_ensure(self):
1031
+ """ """
1032
+ ...
1010
1033
 
1011
- def append(self, draw_func):
1012
- """
1034
+ def id_properties_ui(self):
1035
+ """ """
1036
+ ...
1013
1037
 
1014
- :param draw_func:
1015
- :type draw_func:
1016
- """
1038
+ def is_extended(self):
1039
+ """ """
1017
1040
  ...
1018
1041
 
1019
- def as_pointer(self): ...
1020
- def bl_rna_get_subclass(self): ...
1021
- def bl_rna_get_subclass_py(self): ...
1022
- def draw(self, context):
1023
- """
1042
+ def is_property_hidden(self):
1043
+ """ """
1044
+ ...
1024
1045
 
1025
- :param self:
1026
- :type self:
1027
- :param context:
1028
- :type context:
1029
- """
1030
- ...
1031
-
1032
- def driver_add(self): ...
1033
- def driver_remove(self): ...
1034
- def get(self): ...
1035
- def id_properties_clear(self): ...
1036
- def id_properties_ensure(self): ...
1037
- def id_properties_ui(self): ...
1038
- def is_extended(self): ...
1039
- def is_property_hidden(self): ...
1040
- def is_property_overridable_library(self): ...
1041
- def is_property_readonly(self): ...
1042
- def is_property_set(self): ...
1043
- def items(self): ...
1044
- def keyframe_delete(self): ...
1045
- def keyframe_insert(self): ...
1046
- def keys(self): ...
1047
- def path_from_id(self): ...
1048
- def path_resolve(self): ...
1049
- def pop(self): ...
1050
- def prepend(self, draw_func):
1051
- """
1046
+ def is_property_overridable_library(self):
1047
+ """ """
1048
+ ...
1052
1049
 
1053
- :param draw_func:
1054
- :type draw_func:
1055
- """
1050
+ def is_property_readonly(self):
1051
+ """ """
1056
1052
  ...
1057
1053
 
1058
- def property_overridable_library_set(self): ...
1059
- def property_unset(self): ...
1060
- def remove(self, draw_func):
1061
- """
1054
+ def is_property_set(self):
1055
+ """ """
1056
+ ...
1062
1057
 
1063
- :param draw_func:
1064
- :type draw_func:
1065
- """
1058
+ def items(self):
1059
+ """ """
1066
1060
  ...
1067
1061
 
1068
- def type_recast(self): ...
1069
- def values(self): ...
1062
+ def keyframe_delete(self):
1063
+ """ """
1064
+ ...
1070
1065
 
1071
- class OBJECT_PT_visibility(ObjectButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1072
- COMPAT_ENGINES: typing.Any
1073
- bl_context: typing.Any
1074
- bl_label: typing.Any
1075
- bl_options: typing.Any
1076
- bl_region_type: typing.Any
1077
- bl_rna: typing.Any
1078
- bl_space_type: typing.Any
1079
- id_data: typing.Any
1066
+ def keyframe_insert(self):
1067
+ """ """
1068
+ ...
1080
1069
 
1081
- def append(self, draw_func):
1082
- """
1070
+ def keys(self):
1071
+ """ """
1072
+ ...
1083
1073
 
1084
- :param draw_func:
1085
- :type draw_func:
1086
- """
1074
+ def path_from_id(self):
1075
+ """ """
1087
1076
  ...
1088
1077
 
1089
- def as_pointer(self): ...
1090
- def bl_rna_get_subclass(self): ...
1091
- def bl_rna_get_subclass_py(self): ...
1092
- def draw(self, context):
1093
- """
1078
+ def path_resolve(self):
1079
+ """ """
1080
+ ...
1094
1081
 
1095
- :param self:
1096
- :type self:
1097
- :param context:
1098
- :type context:
1099
- """
1100
- ...
1101
-
1102
- def driver_add(self): ...
1103
- def driver_remove(self): ...
1104
- def get(self): ...
1105
- def id_properties_clear(self): ...
1106
- def id_properties_ensure(self): ...
1107
- def id_properties_ui(self): ...
1108
- def is_extended(self): ...
1109
- def is_property_hidden(self): ...
1110
- def is_property_overridable_library(self): ...
1111
- def is_property_readonly(self): ...
1112
- def is_property_set(self): ...
1113
- def items(self): ...
1114
- def keyframe_delete(self): ...
1115
- def keyframe_insert(self): ...
1116
- def keys(self): ...
1117
- def path_from_id(self): ...
1118
- def path_resolve(self): ...
1119
1082
  def poll(self, context):
1120
1083
  """
1121
1084
 
1122
1085
  :param context:
1123
- :type context:
1124
1086
  """
1125
1087
  ...
1126
1088
 
1127
- def pop(self): ...
1089
+ def pop(self):
1090
+ """ """
1091
+ ...
1092
+
1128
1093
  def prepend(self, draw_func):
1129
1094
  """
1130
1095
 
1131
1096
  :param draw_func:
1132
- :type draw_func:
1133
1097
  """
1134
1098
  ...
1135
1099
 
1136
- def property_overridable_library_set(self): ...
1137
- def property_unset(self): ...
1100
+ def property_overridable_library_set(self):
1101
+ """ """
1102
+ ...
1103
+
1104
+ def property_unset(self):
1105
+ """ """
1106
+ ...
1107
+
1138
1108
  def remove(self, draw_func):
1139
1109
  """
1140
1110
 
1141
1111
  :param draw_func:
1142
- :type draw_func:
1143
1112
  """
1144
1113
  ...
1145
1114
 
1146
- def type_recast(self): ...
1147
- def values(self): ...
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
+ """ """
1456
+
1457
+ bl_label: typing.Any
1458
+ """ """
1459
+
1460
+ bl_options: typing.Any
1461
+ """ """
1462
+
1463
+ bl_region_type: typing.Any
1464
+ """ """
1465
+
1466
+ bl_rna: typing.Any
1467
+ """ """
1468
+
1469
+ bl_space_type: typing.Any
1470
+ """ """
1471
+
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
+ """ """
2095
+
2096
+ COMPAT_ENGINES: typing.Any
2097
+ """ """
2098
+
2099
+ bl_context: typing.Any
2100
+ """ """
2101
+
2102
+ bl_label: typing.Any
2103
+ """ """
2104
+
2105
+ bl_options: typing.Any
2106
+ """ """
2107
+
2108
+ bl_region_type: typing.Any
2109
+ """ """
2110
+
2111
+ bl_rna: typing.Any
2112
+ """ """
2113
+
2114
+ bl_space_type: typing.Any
2115
+ """ """
2116
+
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
+ ...
2181
+
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
+ """ """