fake-bpy-module 20240321__py3-none-any.whl → 20240324__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +646 -823
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +331 -429
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86446 -87424
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240324.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240321.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/top_level.txt +0 -0
@@ -1,39 +1,61 @@
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(bpy_types.Panel, bl_ui.utils.PresetPanel, 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
+ """ """
18
35
 
19
36
  def append(self, draw_func):
20
37
  """
21
38
 
22
39
  :param draw_func:
23
- :type draw_func:
24
40
  """
25
41
  ...
26
42
 
27
- def as_pointer(self): ...
28
- def bl_rna_get_subclass(self): ...
29
- def bl_rna_get_subclass_py(self): ...
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
+
30
55
  def draw(self, context):
31
56
  """
32
57
 
33
- :param self:
34
- :type self:
35
58
  :param context:
36
- :type context:
37
59
  """
38
60
  ...
39
61
 
@@ -41,9 +63,7 @@ class CAMERA_PT_presets(bpy_types.Panel, bl_ui.utils.PresetPanel, bpy_types._Gen
41
63
  """
42
64
 
43
65
  :param layout:
44
- :type layout:
45
66
  :param text:
46
- :type text:
47
67
  """
48
68
  ...
49
69
 
@@ -51,26 +71,73 @@ class CAMERA_PT_presets(bpy_types.Panel, bl_ui.utils.PresetPanel, bpy_types._Gen
51
71
  """
52
72
 
53
73
  :param layout:
54
- :type layout:
55
- """
56
- ...
57
-
58
- def driver_add(self): ...
59
- def driver_remove(self): ...
60
- def get(self): ...
61
- def id_properties_clear(self): ...
62
- def id_properties_ensure(self): ...
63
- def id_properties_ui(self): ...
64
- def is_extended(self): ...
65
- def is_property_hidden(self): ...
66
- def is_property_overridable_library(self): ...
67
- def is_property_readonly(self): ...
68
- def is_property_set(self): ...
69
- def items(self): ...
70
- def keyframe_delete(self): ...
71
- def keyframe_insert(self): ...
72
- def keys(self): ...
73
- def path_from_id(self): ...
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
+ ...
140
+
74
141
  def path_menu(
75
142
  self,
76
143
  searchpaths,
@@ -84,81 +151,108 @@ class CAMERA_PT_presets(bpy_types.Panel, bl_ui.utils.PresetPanel, bpy_types._Gen
84
151
  ):
85
152
  """
86
153
 
87
- :param self:
88
- :type self:
89
154
  :param searchpaths:
90
- :type searchpaths:
91
155
  :param operator:
92
- :type operator:
93
156
  :param props_default:
94
- :type props_default:
95
157
  :param prop_filepath:
96
- :type prop_filepath:
97
158
  :param filter_ext:
98
- :type filter_ext:
99
159
  :param filter_path:
100
- :type filter_path:
101
160
  :param display_name:
102
- :type display_name:
103
161
  :param add_operator:
104
- :type add_operator:
105
162
  """
106
163
  ...
107
164
 
108
- def path_resolve(self): ...
109
- def pop(self): ...
165
+ def path_resolve(self):
166
+ """ """
167
+ ...
168
+
169
+ def pop(self):
170
+ """ """
171
+ ...
172
+
110
173
  def prepend(self, draw_func):
111
174
  """
112
175
 
113
176
  :param draw_func:
114
- :type draw_func:
115
177
  """
116
178
  ...
117
179
 
118
- def property_overridable_library_set(self): ...
119
- def property_unset(self): ...
180
+ def property_overridable_library_set(self):
181
+ """ """
182
+ ...
183
+
184
+ def property_unset(self):
185
+ """ """
186
+ ...
187
+
120
188
  def remove(self, draw_func):
121
189
  """
122
190
 
123
191
  :param draw_func:
124
- :type draw_func:
125
192
  """
126
193
  ...
127
194
 
128
- def type_recast(self): ...
129
- def values(self): ...
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
+ """ """
130
205
 
131
- class CAMERA_PT_safe_areas_presets(
132
- bpy_types.Panel, bl_ui.utils.PresetPanel, bpy_types._GenericUI
133
- ):
134
206
  COMPAT_ENGINES: typing.Any
207
+ """ """
208
+
135
209
  bl_label: typing.Any
210
+ """ """
211
+
136
212
  bl_region_type: typing.Any
213
+ """ """
214
+
137
215
  bl_rna: typing.Any
216
+ """ """
217
+
138
218
  bl_space_type: typing.Any
219
+ """ """
220
+
139
221
  id_data: typing.Any
222
+ """ """
223
+
140
224
  preset_add_operator: typing.Any
225
+ """ """
226
+
141
227
  preset_operator: typing.Any
228
+ """ """
229
+
142
230
  preset_subdir: typing.Any
231
+ """ """
143
232
 
144
233
  def append(self, draw_func):
145
234
  """
146
235
 
147
236
  :param draw_func:
148
- :type draw_func:
149
237
  """
150
238
  ...
151
239
 
152
- def as_pointer(self): ...
153
- def bl_rna_get_subclass(self): ...
154
- def bl_rna_get_subclass_py(self): ...
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
+
155
252
  def draw(self, context):
156
253
  """
157
254
 
158
- :param self:
159
- :type self:
160
255
  :param context:
161
- :type context:
162
256
  """
163
257
  ...
164
258
 
@@ -166,9 +260,7 @@ class CAMERA_PT_safe_areas_presets(
166
260
  """
167
261
 
168
262
  :param layout:
169
- :type layout:
170
263
  :param text:
171
- :type text:
172
264
  """
173
265
  ...
174
266
 
@@ -176,26 +268,73 @@ class CAMERA_PT_safe_areas_presets(
176
268
  """
177
269
 
178
270
  :param layout:
179
- :type layout:
180
- """
181
- ...
182
-
183
- def driver_add(self): ...
184
- def driver_remove(self): ...
185
- def get(self): ...
186
- def id_properties_clear(self): ...
187
- def id_properties_ensure(self): ...
188
- def id_properties_ui(self): ...
189
- def is_extended(self): ...
190
- def is_property_hidden(self): ...
191
- def is_property_overridable_library(self): ...
192
- def is_property_readonly(self): ...
193
- def is_property_set(self): ...
194
- def items(self): ...
195
- def keyframe_delete(self): ...
196
- def keyframe_insert(self): ...
197
- def keys(self): ...
198
- def path_from_id(self): ...
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
+ ...
337
+
199
338
  def path_menu(
200
339
  self,
201
340
  searchpaths,
@@ -209,1073 +348,2067 @@ class CAMERA_PT_safe_areas_presets(
209
348
  ):
210
349
  """
211
350
 
212
- :param self:
213
- :type self:
214
351
  :param searchpaths:
215
- :type searchpaths:
216
352
  :param operator:
217
- :type operator:
218
353
  :param props_default:
219
- :type props_default:
220
354
  :param prop_filepath:
221
- :type prop_filepath:
222
355
  :param filter_ext:
223
- :type filter_ext:
224
356
  :param filter_path:
225
- :type filter_path:
226
357
  :param display_name:
227
- :type display_name:
228
358
  :param add_operator:
229
- :type add_operator:
230
359
  """
231
360
  ...
232
361
 
233
- def path_resolve(self): ...
234
- def pop(self): ...
362
+ def path_resolve(self):
363
+ """ """
364
+ ...
365
+
366
+ def pop(self):
367
+ """ """
368
+ ...
369
+
235
370
  def prepend(self, draw_func):
236
371
  """
237
372
 
238
373
  :param draw_func:
239
- :type draw_func:
240
374
  """
241
375
  ...
242
376
 
243
- def property_overridable_library_set(self): ...
244
- def property_unset(self): ...
377
+ def property_overridable_library_set(self):
378
+ """ """
379
+ ...
380
+
381
+ def property_unset(self):
382
+ """ """
383
+ ...
384
+
245
385
  def remove(self, draw_func):
246
386
  """
247
387
 
248
388
  :param draw_func:
249
- :type draw_func:
250
389
  """
251
390
  ...
252
391
 
253
- def type_recast(self): ...
254
- def values(self): ...
392
+ def type_recast(self):
393
+ """ """
394
+ ...
395
+
396
+ def values(self):
397
+ """ """
398
+ ...
255
399
 
256
400
  class CameraButtonsPanel:
401
+ """ """
402
+
257
403
  bl_context: typing.Any
404
+ """ """
405
+
258
406
  bl_region_type: typing.Any
407
+ """ """
408
+
259
409
  bl_space_type: typing.Any
410
+ """ """
260
411
 
261
412
  def poll(self, context):
262
413
  """
263
414
 
264
415
  :param context:
265
- :type context:
266
416
  """
267
417
  ...
268
418
 
269
- class DATA_PT_camera(CameraButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
419
+ class DATA_PT_camera(bpy_types._GenericUI):
420
+ """ """
421
+
270
422
  COMPAT_ENGINES: typing.Any
423
+ """ """
424
+
271
425
  bl_context: typing.Any
426
+ """ """
427
+
272
428
  bl_label: typing.Any
429
+ """ """
430
+
273
431
  bl_options: typing.Any
432
+ """ """
433
+
274
434
  bl_region_type: typing.Any
435
+ """ """
436
+
275
437
  bl_rna: typing.Any
438
+ """ """
439
+
276
440
  bl_space_type: typing.Any
441
+ """ """
442
+
277
443
  id_data: typing.Any
444
+ """ """
278
445
 
279
446
  def append(self, draw_func):
280
447
  """
281
448
 
282
449
  :param draw_func:
283
- :type draw_func:
284
450
  """
285
451
  ...
286
452
 
287
- def as_pointer(self): ...
288
- def bl_rna_get_subclass(self): ...
289
- def bl_rna_get_subclass_py(self): ...
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
+
290
465
  def draw(self, context):
291
466
  """
292
467
 
293
- :param self:
294
- :type self:
295
468
  :param context:
296
- :type context:
297
469
  """
298
470
  ...
299
471
 
300
472
  def draw_header_preset(self, _context):
301
473
  """
302
474
 
303
- :param self:
304
- :type self:
305
475
  :param _context:
306
- :type _context:
307
- """
308
- ...
309
-
310
- def driver_add(self): ...
311
- def driver_remove(self): ...
312
- def get(self): ...
313
- def id_properties_clear(self): ...
314
- def id_properties_ensure(self): ...
315
- def id_properties_ui(self): ...
316
- def is_extended(self): ...
317
- def is_property_hidden(self): ...
318
- def is_property_overridable_library(self): ...
319
- def is_property_readonly(self): ...
320
- def is_property_set(self): ...
321
- def items(self): ...
322
- def keyframe_delete(self): ...
323
- def keyframe_insert(self): ...
324
- def keys(self): ...
325
- def path_from_id(self): ...
326
- def path_resolve(self): ...
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
+
327
547
  def poll(self, context):
328
548
  """
329
549
 
330
550
  :param context:
331
- :type context:
332
551
  """
333
552
  ...
334
553
 
335
- def pop(self): ...
554
+ def pop(self):
555
+ """ """
556
+ ...
557
+
336
558
  def prepend(self, draw_func):
337
559
  """
338
560
 
339
561
  :param draw_func:
340
- :type draw_func:
341
562
  """
342
563
  ...
343
564
 
344
- def property_overridable_library_set(self): ...
345
- def property_unset(self): ...
565
+ def property_overridable_library_set(self):
566
+ """ """
567
+ ...
568
+
569
+ def property_unset(self):
570
+ """ """
571
+ ...
572
+
346
573
  def remove(self, draw_func):
347
574
  """
348
575
 
349
576
  :param draw_func:
350
- :type draw_func:
351
577
  """
352
578
  ...
353
579
 
354
- def type_recast(self): ...
355
- def values(self): ...
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
+ """ """
356
590
 
357
- class DATA_PT_camera_background_image(
358
- CameraButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
359
- ):
360
591
  COMPAT_ENGINES: typing.Any
592
+ """ """
593
+
361
594
  bl_context: typing.Any
595
+ """ """
596
+
362
597
  bl_label: typing.Any
598
+ """ """
599
+
363
600
  bl_options: typing.Any
601
+ """ """
602
+
364
603
  bl_region_type: typing.Any
604
+ """ """
605
+
365
606
  bl_rna: typing.Any
607
+ """ """
608
+
366
609
  bl_space_type: typing.Any
610
+ """ """
611
+
367
612
  id_data: typing.Any
613
+ """ """
368
614
 
369
615
  def append(self, draw_func):
370
616
  """
371
617
 
372
618
  :param draw_func:
373
- :type draw_func:
374
619
  """
375
620
  ...
376
621
 
377
- def as_pointer(self): ...
378
- def bl_rna_get_subclass(self): ...
379
- def bl_rna_get_subclass_py(self): ...
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
+
380
634
  def draw(self, context):
381
635
  """
382
636
 
383
- :param self:
384
- :type self:
385
637
  :param context:
386
- :type context:
387
638
  """
388
639
  ...
389
640
 
390
641
  def draw_header(self, context):
391
642
  """
392
643
 
393
- :param self:
394
- :type self:
395
644
  :param context:
396
- :type context:
397
- """
398
- ...
399
-
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
645
  """
646
+ ...
419
647
 
420
- :param context:
421
- :type context:
422
- """
648
+ def driver_add(self):
649
+ """ """
423
650
  ...
424
651
 
425
- def pop(self): ...
426
- def prepend(self, draw_func):
427
- """
652
+ def driver_remove(self):
653
+ """ """
654
+ ...
428
655
 
429
- :param draw_func:
430
- :type draw_func:
431
- """
656
+ def get(self):
657
+ """ """
432
658
  ...
433
659
 
434
- def property_overridable_library_set(self): ...
435
- def property_unset(self): ...
436
- def remove(self, draw_func):
437
- """
660
+ def id_properties_clear(self):
661
+ """ """
662
+ ...
438
663
 
439
- :param draw_func:
440
- :type draw_func:
441
- """
664
+ def id_properties_ensure(self):
665
+ """ """
442
666
  ...
443
667
 
444
- def type_recast(self): ...
445
- def values(self): ...
668
+ def id_properties_ui(self):
669
+ """ """
670
+ ...
446
671
 
447
- class DATA_PT_camera_display(CameraButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
448
- COMPAT_ENGINES: typing.Any
449
- bl_context: typing.Any
450
- bl_label: typing.Any
451
- bl_options: typing.Any
452
- bl_region_type: typing.Any
453
- bl_rna: typing.Any
454
- bl_space_type: typing.Any
455
- id_data: typing.Any
672
+ def is_extended(self):
673
+ """ """
674
+ ...
456
675
 
457
- def append(self, draw_func):
458
- """
676
+ def is_property_hidden(self):
677
+ """ """
678
+ ...
459
679
 
460
- :param draw_func:
461
- :type draw_func:
462
- """
680
+ def is_property_overridable_library(self):
681
+ """ """
463
682
  ...
464
683
 
465
- def as_pointer(self): ...
466
- def bl_rna_get_subclass(self): ...
467
- def bl_rna_get_subclass_py(self): ...
468
- def draw(self, context):
469
- """
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
+ ...
470
715
 
471
- :param self:
472
- :type self:
473
- :param context:
474
- :type context:
475
- """
476
- ...
477
-
478
- def driver_add(self): ...
479
- def driver_remove(self): ...
480
- def get(self): ...
481
- def id_properties_clear(self): ...
482
- def id_properties_ensure(self): ...
483
- def id_properties_ui(self): ...
484
- def is_extended(self): ...
485
- def is_property_hidden(self): ...
486
- def is_property_overridable_library(self): ...
487
- def is_property_readonly(self): ...
488
- def is_property_set(self): ...
489
- def items(self): ...
490
- def keyframe_delete(self): ...
491
- def keyframe_insert(self): ...
492
- def keys(self): ...
493
- def path_from_id(self): ...
494
- def path_resolve(self): ...
495
716
  def poll(self, context):
496
717
  """
497
718
 
498
719
  :param context:
499
- :type context:
500
720
  """
501
721
  ...
502
722
 
503
- def pop(self): ...
723
+ def pop(self):
724
+ """ """
725
+ ...
726
+
504
727
  def prepend(self, draw_func):
505
728
  """
506
729
 
507
730
  :param draw_func:
508
- :type draw_func:
509
731
  """
510
732
  ...
511
733
 
512
- def property_overridable_library_set(self): ...
513
- def property_unset(self): ...
734
+ def property_overridable_library_set(self):
735
+ """ """
736
+ ...
737
+
738
+ def property_unset(self):
739
+ """ """
740
+ ...
741
+
514
742
  def remove(self, draw_func):
515
743
  """
516
744
 
517
745
  :param draw_func:
518
- :type draw_func:
519
746
  """
520
747
  ...
521
748
 
522
- def type_recast(self): ...
523
- def values(self): ...
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
+ """ """
524
759
 
525
- class DATA_PT_camera_display_composition_guides(
526
- CameraButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
527
- ):
528
760
  COMPAT_ENGINES: typing.Any
761
+ """ """
762
+
529
763
  bl_context: typing.Any
764
+ """ """
765
+
530
766
  bl_label: typing.Any
767
+ """ """
768
+
531
769
  bl_options: typing.Any
532
- bl_parent_id: typing.Any
770
+ """ """
771
+
533
772
  bl_region_type: typing.Any
773
+ """ """
774
+
534
775
  bl_rna: typing.Any
776
+ """ """
777
+
535
778
  bl_space_type: typing.Any
779
+ """ """
780
+
536
781
  id_data: typing.Any
782
+ """ """
537
783
 
538
784
  def append(self, draw_func):
539
785
  """
540
786
 
541
787
  :param draw_func:
542
- :type draw_func:
543
788
  """
544
789
  ...
545
790
 
546
- def as_pointer(self): ...
547
- def bl_rna_get_subclass(self): ...
548
- def bl_rna_get_subclass_py(self): ...
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
+
549
803
  def draw(self, context):
550
804
  """
551
805
 
552
- :param self:
553
- :type self:
554
806
  :param context:
555
- :type context:
556
- """
557
- ...
558
-
559
- def driver_add(self): ...
560
- def driver_remove(self): ...
561
- def get(self): ...
562
- def id_properties_clear(self): ...
563
- def id_properties_ensure(self): ...
564
- def id_properties_ui(self): ...
565
- def is_extended(self): ...
566
- def is_property_hidden(self): ...
567
- def is_property_overridable_library(self): ...
568
- def is_property_readonly(self): ...
569
- def is_property_set(self): ...
570
- def items(self): ...
571
- def keyframe_delete(self): ...
572
- def keyframe_insert(self): ...
573
- def keys(self): ...
574
- def path_from_id(self): ...
575
- def path_resolve(self): ...
576
- def poll(self, context):
577
807
  """
808
+ ...
578
809
 
579
- :param context:
580
- :type context:
581
- """
810
+ def driver_add(self):
811
+ """ """
582
812
  ...
583
813
 
584
- def pop(self): ...
585
- def prepend(self, draw_func):
586
- """
814
+ def driver_remove(self):
815
+ """ """
816
+ ...
587
817
 
588
- :param draw_func:
589
- :type draw_func:
590
- """
818
+ def get(self):
819
+ """ """
591
820
  ...
592
821
 
593
- def property_overridable_library_set(self): ...
594
- def property_unset(self): ...
595
- def remove(self, draw_func):
596
- """
822
+ def id_properties_clear(self):
823
+ """ """
824
+ ...
597
825
 
598
- :param draw_func:
599
- :type draw_func:
600
- """
826
+ def id_properties_ensure(self):
827
+ """ """
601
828
  ...
602
829
 
603
- def type_recast(self): ...
604
- def values(self): ...
830
+ def id_properties_ui(self):
831
+ """ """
832
+ ...
605
833
 
606
- class DATA_PT_camera_dof(CameraButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
607
- COMPAT_ENGINES: typing.Any
608
- bl_context: typing.Any
609
- bl_label: typing.Any
610
- bl_options: typing.Any
611
- bl_region_type: typing.Any
612
- bl_rna: typing.Any
613
- bl_space_type: typing.Any
614
- id_data: typing.Any
834
+ def is_extended(self):
835
+ """ """
836
+ ...
615
837
 
616
- def append(self, draw_func):
617
- """
838
+ def is_property_hidden(self):
839
+ """ """
840
+ ...
618
841
 
619
- :param draw_func:
620
- :type draw_func:
621
- """
842
+ def is_property_overridable_library(self):
843
+ """ """
622
844
  ...
623
845
 
624
- def as_pointer(self): ...
625
- def bl_rna_get_subclass(self): ...
626
- def bl_rna_get_subclass_py(self): ...
627
- def draw(self, context):
628
- """
846
+ def is_property_readonly(self):
847
+ """ """
848
+ ...
629
849
 
630
- :param self:
631
- :type self:
632
- :param context:
633
- :type context:
634
- """
850
+ def is_property_set(self):
851
+ """ """
635
852
  ...
636
853
 
637
- def draw_header(self, context):
638
- """
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
+ ...
639
877
 
640
- :param self:
641
- :type self:
642
- :param context:
643
- :type context:
644
- """
645
- ...
646
-
647
- def driver_add(self): ...
648
- def driver_remove(self): ...
649
- def get(self): ...
650
- def id_properties_clear(self): ...
651
- def id_properties_ensure(self): ...
652
- def id_properties_ui(self): ...
653
- def is_extended(self): ...
654
- def is_property_hidden(self): ...
655
- def is_property_overridable_library(self): ...
656
- def is_property_readonly(self): ...
657
- def is_property_set(self): ...
658
- def items(self): ...
659
- def keyframe_delete(self): ...
660
- def keyframe_insert(self): ...
661
- def keys(self): ...
662
- def path_from_id(self): ...
663
- def path_resolve(self): ...
664
878
  def poll(self, context):
665
879
  """
666
880
 
667
881
  :param context:
668
- :type context:
669
882
  """
670
883
  ...
671
884
 
672
- def pop(self): ...
885
+ def pop(self):
886
+ """ """
887
+ ...
888
+
673
889
  def prepend(self, draw_func):
674
890
  """
675
891
 
676
892
  :param draw_func:
677
- :type draw_func:
678
893
  """
679
894
  ...
680
895
 
681
- def property_overridable_library_set(self): ...
682
- def property_unset(self): ...
896
+ def property_overridable_library_set(self):
897
+ """ """
898
+ ...
899
+
900
+ def property_unset(self):
901
+ """ """
902
+ ...
903
+
683
904
  def remove(self, draw_func):
684
905
  """
685
906
 
686
907
  :param draw_func:
687
- :type draw_func:
688
908
  """
689
909
  ...
690
910
 
691
- def type_recast(self): ...
692
- def values(self): ...
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
+ """ """
693
921
 
694
- class DATA_PT_camera_dof_aperture(
695
- CameraButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
696
- ):
697
922
  COMPAT_ENGINES: typing.Any
923
+ """ """
924
+
698
925
  bl_context: typing.Any
926
+ """ """
927
+
699
928
  bl_label: typing.Any
929
+ """ """
930
+
931
+ bl_options: typing.Any
932
+ """ """
933
+
700
934
  bl_parent_id: typing.Any
935
+ """ """
936
+
701
937
  bl_region_type: typing.Any
938
+ """ """
939
+
702
940
  bl_rna: typing.Any
941
+ """ """
942
+
703
943
  bl_space_type: typing.Any
944
+ """ """
945
+
704
946
  id_data: typing.Any
947
+ """ """
705
948
 
706
949
  def append(self, draw_func):
707
950
  """
708
951
 
709
952
  :param draw_func:
710
- :type draw_func:
711
953
  """
712
954
  ...
713
955
 
714
- def as_pointer(self): ...
715
- def bl_rna_get_subclass(self): ...
716
- def bl_rna_get_subclass_py(self): ...
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
+
717
968
  def draw(self, context):
718
969
  """
719
970
 
720
- :param self:
721
- :type self:
722
971
  :param context:
723
- :type context:
724
- """
725
- ...
726
-
727
- def driver_add(self): ...
728
- def driver_remove(self): ...
729
- def get(self): ...
730
- def id_properties_clear(self): ...
731
- def id_properties_ensure(self): ...
732
- def id_properties_ui(self): ...
733
- def is_extended(self): ...
734
- def is_property_hidden(self): ...
735
- def is_property_overridable_library(self): ...
736
- def is_property_readonly(self): ...
737
- def is_property_set(self): ...
738
- def items(self): ...
739
- def keyframe_delete(self): ...
740
- def keyframe_insert(self): ...
741
- def keys(self): ...
742
- def path_from_id(self): ...
743
- def path_resolve(self): ...
744
- def poll(self, context):
745
972
  """
973
+ ...
746
974
 
747
- :param context:
748
- :type context:
749
- """
975
+ def driver_add(self):
976
+ """ """
750
977
  ...
751
978
 
752
- def pop(self): ...
753
- def prepend(self, draw_func):
754
- """
979
+ def driver_remove(self):
980
+ """ """
981
+ ...
755
982
 
756
- :param draw_func:
757
- :type draw_func:
758
- """
983
+ def get(self):
984
+ """ """
759
985
  ...
760
986
 
761
- def property_overridable_library_set(self): ...
762
- def property_unset(self): ...
763
- def remove(self, draw_func):
764
- """
987
+ def id_properties_clear(self):
988
+ """ """
989
+ ...
765
990
 
766
- :param draw_func:
767
- :type draw_func:
768
- """
991
+ def id_properties_ensure(self):
992
+ """ """
769
993
  ...
770
994
 
771
- def type_recast(self): ...
772
- def values(self): ...
995
+ def id_properties_ui(self):
996
+ """ """
997
+ ...
773
998
 
774
- class DATA_PT_camera_safe_areas(
775
- CameraButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
776
- ):
777
- COMPAT_ENGINES: typing.Any
778
- bl_context: typing.Any
779
- bl_label: typing.Any
780
- bl_options: typing.Any
781
- bl_region_type: typing.Any
782
- bl_rna: typing.Any
783
- bl_space_type: typing.Any
784
- id_data: typing.Any
999
+ def is_extended(self):
1000
+ """ """
1001
+ ...
785
1002
 
786
- def append(self, draw_func):
787
- """
1003
+ def is_property_hidden(self):
1004
+ """ """
1005
+ ...
788
1006
 
789
- :param draw_func:
790
- :type draw_func:
791
- """
1007
+ def is_property_overridable_library(self):
1008
+ """ """
792
1009
  ...
793
1010
 
794
- def as_pointer(self): ...
795
- def bl_rna_get_subclass(self): ...
796
- def bl_rna_get_subclass_py(self): ...
797
- def draw(self, context):
798
- """
1011
+ def is_property_readonly(self):
1012
+ """ """
1013
+ ...
799
1014
 
800
- :param self:
801
- :type self:
802
- :param context:
803
- :type context:
804
- """
1015
+ def is_property_set(self):
1016
+ """ """
805
1017
  ...
806
1018
 
807
- def draw_header(self, context):
808
- """
1019
+ def items(self):
1020
+ """ """
1021
+ ...
809
1022
 
810
- :param self:
811
- :type self:
812
- :param context:
813
- :type context:
814
- """
1023
+ def keyframe_delete(self):
1024
+ """ """
815
1025
  ...
816
1026
 
817
- def draw_header_preset(self, _context):
818
- """
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
+ ...
819
1042
 
820
- :param self:
821
- :type self:
822
- :param _context:
823
- :type _context:
824
- """
825
- ...
826
-
827
- def driver_add(self): ...
828
- def driver_remove(self): ...
829
- def get(self): ...
830
- def id_properties_clear(self): ...
831
- def id_properties_ensure(self): ...
832
- def id_properties_ui(self): ...
833
- def is_extended(self): ...
834
- def is_property_hidden(self): ...
835
- def is_property_overridable_library(self): ...
836
- def is_property_readonly(self): ...
837
- def is_property_set(self): ...
838
- def items(self): ...
839
- def keyframe_delete(self): ...
840
- def keyframe_insert(self): ...
841
- def keys(self): ...
842
- def path_from_id(self): ...
843
- def path_resolve(self): ...
844
1043
  def poll(self, context):
845
1044
  """
846
1045
 
847
1046
  :param context:
848
- :type context:
849
1047
  """
850
1048
  ...
851
1049
 
852
- def pop(self): ...
1050
+ def pop(self):
1051
+ """ """
1052
+ ...
1053
+
853
1054
  def prepend(self, draw_func):
854
1055
  """
855
1056
 
856
1057
  :param draw_func:
857
- :type draw_func:
858
1058
  """
859
1059
  ...
860
1060
 
861
- def property_overridable_library_set(self): ...
862
- def property_unset(self): ...
1061
+ def property_overridable_library_set(self):
1062
+ """ """
1063
+ ...
1064
+
1065
+ def property_unset(self):
1066
+ """ """
1067
+ ...
1068
+
863
1069
  def remove(self, draw_func):
864
1070
  """
865
1071
 
866
1072
  :param draw_func:
867
- :type draw_func:
868
1073
  """
869
1074
  ...
870
1075
 
871
- def type_recast(self): ...
872
- def values(self): ...
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
+ """ """
873
1086
 
874
- class DATA_PT_camera_safe_areas_center_cut(
875
- CameraButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
876
- ):
877
1087
  COMPAT_ENGINES: typing.Any
1088
+ """ """
1089
+
878
1090
  bl_context: typing.Any
1091
+ """ """
1092
+
879
1093
  bl_label: typing.Any
1094
+ """ """
1095
+
880
1096
  bl_options: typing.Any
881
- bl_parent_id: typing.Any
1097
+ """ """
1098
+
882
1099
  bl_region_type: typing.Any
1100
+ """ """
1101
+
883
1102
  bl_rna: typing.Any
1103
+ """ """
1104
+
884
1105
  bl_space_type: typing.Any
1106
+ """ """
1107
+
885
1108
  id_data: typing.Any
1109
+ """ """
886
1110
 
887
1111
  def append(self, draw_func):
888
1112
  """
889
1113
 
890
1114
  :param draw_func:
891
- :type draw_func:
892
1115
  """
893
1116
  ...
894
1117
 
895
- def as_pointer(self): ...
896
- def bl_rna_get_subclass(self): ...
897
- def bl_rna_get_subclass_py(self): ...
898
- def draw(self, context):
899
- """
1118
+ def as_pointer(self):
1119
+ """ """
1120
+ ...
900
1121
 
901
- :param self:
902
- :type self:
903
- :param context:
904
- :type context:
905
- """
1122
+ def bl_rna_get_subclass(self):
1123
+ """ """
906
1124
  ...
907
1125
 
908
- def draw_header(self, context):
909
- """
1126
+ def bl_rna_get_subclass_py(self):
1127
+ """ """
1128
+ ...
910
1129
 
911
- :param self:
912
- :type self:
913
- :param context:
914
- :type context:
915
- """
916
- ...
917
-
918
- def driver_add(self): ...
919
- def driver_remove(self): ...
920
- def get(self): ...
921
- def id_properties_clear(self): ...
922
- def id_properties_ensure(self): ...
923
- def id_properties_ui(self): ...
924
- def is_extended(self): ...
925
- def is_property_hidden(self): ...
926
- def is_property_overridable_library(self): ...
927
- def is_property_readonly(self): ...
928
- def is_property_set(self): ...
929
- def items(self): ...
930
- def keyframe_delete(self): ...
931
- def keyframe_insert(self): ...
932
- def keys(self): ...
933
- def path_from_id(self): ...
934
- def path_resolve(self): ...
935
- def poll(self, context):
1130
+ def draw(self, context):
936
1131
  """
937
1132
 
938
1133
  :param context:
939
- :type context:
940
1134
  """
941
1135
  ...
942
1136
 
943
- def pop(self): ...
944
- def prepend(self, draw_func):
1137
+ def draw_header(self, context):
945
1138
  """
946
1139
 
947
- :param draw_func:
948
- :type draw_func:
1140
+ :param context:
949
1141
  """
950
1142
  ...
951
1143
 
952
- def property_overridable_library_set(self): ...
953
- def property_unset(self): ...
954
- def remove(self, draw_func):
955
- """
956
-
957
- :param draw_func:
958
- :type draw_func:
959
- """
1144
+ def driver_add(self):
1145
+ """ """
960
1146
  ...
961
1147
 
962
- def type_recast(self): ...
963
- def values(self): ...
1148
+ def driver_remove(self):
1149
+ """ """
1150
+ ...
964
1151
 
965
- class DATA_PT_camera_stereoscopy(
966
- CameraButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
967
- ):
968
- COMPAT_ENGINES: typing.Any
969
- bl_context: typing.Any
970
- bl_label: typing.Any
971
- bl_region_type: typing.Any
972
- bl_rna: typing.Any
973
- bl_space_type: typing.Any
974
- id_data: typing.Any
1152
+ def get(self):
1153
+ """ """
1154
+ ...
975
1155
 
976
- def append(self, draw_func):
977
- """
1156
+ def id_properties_clear(self):
1157
+ """ """
1158
+ ...
978
1159
 
979
- :param draw_func:
980
- :type draw_func:
981
- """
1160
+ def id_properties_ensure(self):
1161
+ """ """
982
1162
  ...
983
1163
 
984
- def as_pointer(self): ...
985
- def bl_rna_get_subclass(self): ...
986
- def bl_rna_get_subclass_py(self): ...
987
- def draw(self, context):
988
- """
1164
+ def id_properties_ui(self):
1165
+ """ """
1166
+ ...
989
1167
 
990
- :param self:
991
- :type self:
992
- :param context:
993
- :type context:
994
- """
995
- ...
996
-
997
- def driver_add(self): ...
998
- def driver_remove(self): ...
999
- def get(self): ...
1000
- def id_properties_clear(self): ...
1001
- def id_properties_ensure(self): ...
1002
- def id_properties_ui(self): ...
1003
- def is_extended(self): ...
1004
- def is_property_hidden(self): ...
1005
- def is_property_overridable_library(self): ...
1006
- def is_property_readonly(self): ...
1007
- def is_property_set(self): ...
1008
- def items(self): ...
1009
- def keyframe_delete(self): ...
1010
- def keyframe_insert(self): ...
1011
- def keys(self): ...
1012
- def path_from_id(self): ...
1013
- def path_resolve(self): ...
1014
- def poll(self, context):
1015
- """
1168
+ def is_extended(self):
1169
+ """ """
1170
+ ...
1016
1171
 
1017
- :param context:
1018
- :type context:
1019
- """
1172
+ def is_property_hidden(self):
1173
+ """ """
1020
1174
  ...
1021
1175
 
1022
- def pop(self): ...
1023
- def prepend(self, draw_func):
1024
- """
1176
+ def is_property_overridable_library(self):
1177
+ """ """
1178
+ ...
1025
1179
 
1026
- :param draw_func:
1027
- :type draw_func:
1028
- """
1180
+ def is_property_readonly(self):
1181
+ """ """
1029
1182
  ...
1030
1183
 
1031
- def property_overridable_library_set(self): ...
1032
- def property_unset(self): ...
1033
- def remove(self, draw_func):
1034
- """
1184
+ def is_property_set(self):
1185
+ """ """
1186
+ ...
1035
1187
 
1036
- :param draw_func:
1037
- :type draw_func:
1038
- """
1188
+ def items(self):
1189
+ """ """
1039
1190
  ...
1040
1191
 
1041
- def type_recast(self): ...
1042
- def values(self): ...
1192
+ def keyframe_delete(self):
1193
+ """ """
1194
+ ...
1043
1195
 
1044
- class DATA_PT_context_camera(CameraButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1045
- COMPAT_ENGINES: typing.Any
1046
- bl_context: typing.Any
1047
- bl_label: typing.Any
1048
- bl_options: typing.Any
1049
- bl_region_type: typing.Any
1050
- bl_rna: typing.Any
1051
- bl_space_type: typing.Any
1052
- id_data: typing.Any
1196
+ def keyframe_insert(self):
1197
+ """ """
1198
+ ...
1053
1199
 
1054
- def append(self, draw_func):
1055
- """
1200
+ def keys(self):
1201
+ """ """
1202
+ ...
1056
1203
 
1057
- :param draw_func:
1058
- :type draw_func:
1059
- """
1204
+ def path_from_id(self):
1205
+ """ """
1060
1206
  ...
1061
1207
 
1062
- def as_pointer(self): ...
1063
- def bl_rna_get_subclass(self): ...
1064
- def bl_rna_get_subclass_py(self): ...
1065
- def draw(self, context):
1066
- """
1208
+ def path_resolve(self):
1209
+ """ """
1210
+ ...
1067
1211
 
1068
- :param self:
1069
- :type self:
1070
- :param context:
1071
- :type context:
1072
- """
1073
- ...
1074
-
1075
- def driver_add(self): ...
1076
- def driver_remove(self): ...
1077
- def get(self): ...
1078
- def id_properties_clear(self): ...
1079
- def id_properties_ensure(self): ...
1080
- def id_properties_ui(self): ...
1081
- def is_extended(self): ...
1082
- def is_property_hidden(self): ...
1083
- def is_property_overridable_library(self): ...
1084
- def is_property_readonly(self): ...
1085
- def is_property_set(self): ...
1086
- def items(self): ...
1087
- def keyframe_delete(self): ...
1088
- def keyframe_insert(self): ...
1089
- def keys(self): ...
1090
- def path_from_id(self): ...
1091
- def path_resolve(self): ...
1092
1212
  def poll(self, context):
1093
1213
  """
1094
1214
 
1095
1215
  :param context:
1096
- :type context:
1097
1216
  """
1098
1217
  ...
1099
1218
 
1100
- def pop(self): ...
1219
+ def pop(self):
1220
+ """ """
1221
+ ...
1222
+
1101
1223
  def prepend(self, draw_func):
1102
1224
  """
1103
1225
 
1104
1226
  :param draw_func:
1105
- :type draw_func:
1106
1227
  """
1107
1228
  ...
1108
1229
 
1109
- def property_overridable_library_set(self): ...
1110
- def property_unset(self): ...
1230
+ def property_overridable_library_set(self):
1231
+ """ """
1232
+ ...
1233
+
1234
+ def property_unset(self):
1235
+ """ """
1236
+ ...
1237
+
1111
1238
  def remove(self, draw_func):
1112
1239
  """
1113
1240
 
1114
1241
  :param draw_func:
1115
- :type draw_func:
1116
1242
  """
1117
1243
  ...
1118
1244
 
1119
- def type_recast(self): ...
1120
- def values(self): ...
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
+ """ """
1121
1255
 
1122
- class DATA_PT_custom_props_camera(
1123
- CameraButtonsPanel, bpy_types.Panel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
1124
- ):
1125
1256
  COMPAT_ENGINES: typing.Any
1257
+ """ """
1258
+
1126
1259
  bl_context: typing.Any
1260
+ """ """
1261
+
1127
1262
  bl_label: typing.Any
1128
- bl_options: typing.Any
1129
- bl_order: typing.Any
1263
+ """ """
1264
+
1265
+ bl_parent_id: typing.Any
1266
+ """ """
1267
+
1130
1268
  bl_region_type: typing.Any
1269
+ """ """
1270
+
1131
1271
  bl_rna: typing.Any
1272
+ """ """
1273
+
1132
1274
  bl_space_type: typing.Any
1275
+ """ """
1276
+
1133
1277
  id_data: typing.Any
1278
+ """ """
1134
1279
 
1135
1280
  def append(self, draw_func):
1136
1281
  """
1137
1282
 
1138
1283
  :param draw_func:
1139
- :type draw_func:
1140
1284
  """
1141
1285
  ...
1142
1286
 
1143
- def as_pointer(self): ...
1144
- def bl_rna_get_subclass(self): ...
1145
- def bl_rna_get_subclass_py(self): ...
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
+
1146
1299
  def draw(self, context):
1147
1300
  """
1148
1301
 
1149
- :param self:
1150
- :type self:
1151
1302
  :param context:
1152
- :type context:
1153
- """
1154
- ...
1155
-
1156
- def driver_add(self): ...
1157
- def driver_remove(self): ...
1158
- def get(self): ...
1159
- def id_properties_clear(self): ...
1160
- def id_properties_ensure(self): ...
1161
- def id_properties_ui(self): ...
1162
- def is_extended(self): ...
1163
- def is_property_hidden(self): ...
1164
- def is_property_overridable_library(self): ...
1165
- def is_property_readonly(self): ...
1166
- def is_property_set(self): ...
1167
- def items(self): ...
1168
- def keyframe_delete(self): ...
1169
- def keyframe_insert(self): ...
1170
- def keys(self): ...
1171
- def path_from_id(self): ...
1172
- def path_resolve(self): ...
1173
- def poll(self, context):
1174
1303
  """
1304
+ ...
1175
1305
 
1176
- :param context:
1177
- :type context:
1178
- """
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
+ """ """
1420
+
1421
+ bl_context: typing.Any
1422
+ """ """
1423
+
1424
+ bl_label: typing.Any
1425
+ """ """
1426
+
1427
+ bl_options: typing.Any
1428
+ """ """
1429
+
1430
+ bl_region_type: typing.Any
1431
+ """ """
1432
+
1433
+ bl_rna: typing.Any
1434
+ """ """
1435
+
1436
+ bl_space_type: typing.Any
1437
+ """ """
1438
+
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
+ """ """
1593
+
1594
+ COMPAT_ENGINES: typing.Any
1595
+ """ """
1596
+
1597
+ bl_context: typing.Any
1598
+ """ """
1599
+
1600
+ bl_label: typing.Any
1601
+ """ """
1602
+
1603
+ bl_options: typing.Any
1604
+ """ """
1605
+
1606
+ bl_parent_id: typing.Any
1607
+ """ """
1608
+
1609
+ bl_region_type: typing.Any
1610
+ """ """
1611
+
1612
+ bl_rna: typing.Any
1613
+ """ """
1614
+
1615
+ bl_space_type: typing.Any
1616
+ """ """
1617
+
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
+ """ """
1765
+
1766
+ COMPAT_ENGINES: typing.Any
1767
+ """ """
1768
+
1769
+ bl_context: typing.Any
1770
+ """ """
1771
+
1772
+ bl_label: typing.Any
1773
+ """ """
1774
+
1775
+ bl_region_type: typing.Any
1776
+ """ """
1777
+
1778
+ bl_rna: typing.Any
1779
+ """ """
1780
+
1781
+ bl_space_type: typing.Any
1782
+ """ """
1783
+
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
+ """ """
1924
+
1925
+ COMPAT_ENGINES: typing.Any
1926
+ """ """
1927
+
1928
+ bl_context: typing.Any
1929
+ """ """
1930
+
1931
+ bl_label: typing.Any
1932
+ """ """
1933
+
1934
+ bl_options: typing.Any
1935
+ """ """
1936
+
1937
+ bl_region_type: typing.Any
1938
+ """ """
1939
+
1940
+ bl_rna: typing.Any
1941
+ """ """
1942
+
1943
+ bl_space_type: typing.Any
1944
+ """ """
1945
+
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
+ """ """
2086
+
2087
+ COMPAT_ENGINES: typing.Any
2088
+ """ """
2089
+
2090
+ bl_context: typing.Any
2091
+ """ """
2092
+
2093
+ bl_label: typing.Any
2094
+ """ """
2095
+
2096
+ bl_options: typing.Any
2097
+ """ """
2098
+
2099
+ bl_order: typing.Any
2100
+ """ """
2101
+
2102
+ bl_region_type: typing.Any
2103
+ """ """
2104
+
2105
+ bl_rna: typing.Any
2106
+ """ """
2107
+
2108
+ bl_space_type: typing.Any
2109
+ """ """
2110
+
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
+ """ """
1179
2217
  ...
1180
2218
 
1181
- def pop(self): ...
1182
2219
  def prepend(self, draw_func):
1183
2220
  """
1184
2221
 
1185
2222
  :param draw_func:
1186
- :type draw_func:
1187
2223
  """
1188
2224
  ...
1189
2225
 
1190
- def property_overridable_library_set(self): ...
1191
- def property_unset(self): ...
2226
+ def property_overridable_library_set(self):
2227
+ """ """
2228
+ ...
2229
+
2230
+ def property_unset(self):
2231
+ """ """
2232
+ ...
2233
+
1192
2234
  def remove(self, draw_func):
1193
2235
  """
1194
2236
 
1195
2237
  :param draw_func:
1196
- :type draw_func:
1197
2238
  """
1198
2239
  ...
1199
2240
 
1200
- def type_recast(self): ...
1201
- def values(self): ...
2241
+ def type_recast(self):
2242
+ """ """
2243
+ ...
2244
+
2245
+ def values(self):
2246
+ """ """
2247
+ ...
2248
+
2249
+ class DATA_PT_lens(bpy_types._GenericUI):
2250
+ """ """
1202
2251
 
1203
- class DATA_PT_lens(CameraButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1204
2252
  COMPAT_ENGINES: typing.Any
2253
+ """ """
2254
+
1205
2255
  bl_context: typing.Any
2256
+ """ """
2257
+
1206
2258
  bl_label: typing.Any
2259
+ """ """
2260
+
1207
2261
  bl_region_type: typing.Any
2262
+ """ """
2263
+
1208
2264
  bl_rna: typing.Any
2265
+ """ """
2266
+
1209
2267
  bl_space_type: typing.Any
2268
+ """ """
2269
+
1210
2270
  bl_translation_context: typing.Any
2271
+ """ """
2272
+
1211
2273
  id_data: typing.Any
2274
+ """ """
1212
2275
 
1213
2276
  def append(self, draw_func):
1214
2277
  """
1215
2278
 
1216
2279
  :param draw_func:
1217
- :type draw_func:
1218
2280
  """
1219
2281
  ...
1220
2282
 
1221
- def as_pointer(self): ...
1222
- def bl_rna_get_subclass(self): ...
1223
- def bl_rna_get_subclass_py(self): ...
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
+
1224
2295
  def draw(self, context):
1225
2296
  """
1226
2297
 
1227
- :param self:
1228
- :type self:
1229
2298
  :param context:
1230
- :type context:
1231
- """
1232
- ...
1233
-
1234
- def driver_add(self): ...
1235
- def driver_remove(self): ...
1236
- def get(self): ...
1237
- def id_properties_clear(self): ...
1238
- def id_properties_ensure(self): ...
1239
- def id_properties_ui(self): ...
1240
- def is_extended(self): ...
1241
- def is_property_hidden(self): ...
1242
- def is_property_overridable_library(self): ...
1243
- def is_property_readonly(self): ...
1244
- def is_property_set(self): ...
1245
- def items(self): ...
1246
- def keyframe_delete(self): ...
1247
- def keyframe_insert(self): ...
1248
- def keys(self): ...
1249
- def path_from_id(self): ...
1250
- def path_resolve(self): ...
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
+
1251
2370
  def poll(self, context):
1252
2371
  """
1253
2372
 
1254
2373
  :param context:
1255
- :type context:
1256
2374
  """
1257
2375
  ...
1258
2376
 
1259
- def pop(self): ...
2377
+ def pop(self):
2378
+ """ """
2379
+ ...
2380
+
1260
2381
  def prepend(self, draw_func):
1261
2382
  """
1262
2383
 
1263
2384
  :param draw_func:
1264
- :type draw_func:
1265
2385
  """
1266
2386
  ...
1267
2387
 
1268
- def property_overridable_library_set(self): ...
1269
- def property_unset(self): ...
2388
+ def property_overridable_library_set(self):
2389
+ """ """
2390
+ ...
2391
+
2392
+ def property_unset(self):
2393
+ """ """
2394
+ ...
2395
+
1270
2396
  def remove(self, draw_func):
1271
2397
  """
1272
2398
 
1273
2399
  :param draw_func:
1274
- :type draw_func:
1275
2400
  """
1276
2401
  ...
1277
2402
 
1278
- def type_recast(self): ...
1279
- def values(self): ...
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
+ """ """
1280
2413
 
1281
- def draw_display_safe_settings(layout, safe_data, settings): ...
2414
+ ...