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