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