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.
- addon_utils/__init__.pyi +54 -10
- animsys_refactor/__init__.pyi +36 -6
- aud/__init__.pyi +132 -125
- bgl/__init__.pyi +2545 -546
- bl_app_override/__init__.pyi +14 -3
- bl_app_override/helpers/__init__.pyi +24 -2
- bl_app_template_utils/__init__.pyi +19 -4
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
- bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
- bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
- bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
- bl_i18n_utils/merge_po/__init__.pyi +4 -1
- bl_i18n_utils/settings/__init__.pyi +53 -6
- bl_i18n_utils/utils/__init__.pyi +332 -44
- bl_i18n_utils/utils_cli/__init__.pyi +29 -6
- bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
- bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
- bl_keymap_utils/io/__init__.pyi +44 -9
- bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
- bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
- bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
- bl_keymap_utils/versioning/__init__.pyi +4 -1
- bl_math/__init__.pyi +3 -3
- bl_operators/__init__.pyi +9 -2
- bl_operators/add_mesh_torus/__init__.pyi +171 -37
- bl_operators/anim/__init__.pyi +1065 -226
- bl_operators/assets/__init__.pyi +427 -92
- bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
- bl_operators/clip/__init__.pyi +1342 -287
- bl_operators/console/__init__.pyi +647 -140
- bl_operators/constraint/__init__.pyi +524 -112
- bl_operators/file/__init__.pyi +396 -84
- bl_operators/freestyle/__init__.pyi +532 -113
- bl_operators/geometry_nodes/__init__.pyi +2412 -596
- bl_operators/image/__init__.pyi +380 -82
- bl_operators/mesh/__init__.pyi +401 -85
- bl_operators/node/__init__.pyi +1756 -384
- bl_operators/object/__init__.pyi +2022 -552
- bl_operators/object_align/__init__.pyi +145 -31
- bl_operators/object_quick_effects/__init__.pyi +555 -124
- bl_operators/object_randomize_transform/__init__.pyi +136 -32
- bl_operators/presets/__init__.pyi +3516 -708
- bl_operators/rigidbody/__init__.pyi +401 -85
- bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
- bl_operators/sequencer/__init__.pyi +731 -149
- bl_operators/spreadsheet/__init__.pyi +145 -30
- bl_operators/userpref/__init__.pyi +3416 -824
- bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
- bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
- bl_operators/uvcalc_transform/__init__.pyi +344 -73
- bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
- bl_operators/view3d/__init__.pyi +697 -146
- bl_operators/wm/__init__.pyi +6287 -1533
- bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
- bl_rna_utils/data_path/__init__.pyi +12 -2
- bl_text_utils/external_editor/__init__.pyi +4 -1
- bl_ui/__init__.pyi +504 -106
- bl_ui/anim/__init__.pyi +164 -33
- bl_ui/asset_shelf/__init__.pyi +146 -31
- bl_ui/generic_ui_list/__init__.pyi +471 -99
- bl_ui/node_add_menu/__init__.pyi +196 -40
- bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
- bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
- bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
- bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
- bl_ui/properties_animviz/__init__.pyi +32 -2
- bl_ui/properties_collection/__init__.pyi +787 -179
- bl_ui/properties_constraint/__init__.pyi +28635 -5523
- bl_ui/properties_data_armature/__init__.pyi +1905 -448
- bl_ui/properties_data_bone/__init__.pyi +1560 -336
- bl_ui/properties_data_camera/__init__.pyi +2269 -494
- bl_ui/properties_data_curve/__init__.pyi +2362 -534
- bl_ui/properties_data_curves/__init__.pyi +951 -203
- bl_ui/properties_data_empty/__init__.pyi +317 -69
- bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
- bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
- bl_ui/properties_data_lattice/__init__.pyi +472 -104
- bl_ui/properties_data_light/__init__.pyi +1570 -337
- bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
- bl_ui/properties_data_mesh/__init__.pyi +3205 -767
- bl_ui/properties_data_metaball/__init__.pyi +774 -170
- bl_ui/properties_data_modifier/__init__.pyi +1554 -328
- bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
- bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
- bl_ui/properties_data_speaker/__init__.pyi +782 -168
- bl_ui/properties_data_volume/__init__.pyi +1243 -281
- bl_ui/properties_freestyle/__init__.pyi +4071 -1030
- bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
- bl_ui/properties_mask_common/__init__.pyi +1256 -249
- bl_ui/properties_material/__init__.pyi +2351 -542
- bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
- bl_ui/properties_object/__init__.pyi +2179 -512
- bl_ui/properties_output/__init__.pyi +2956 -705
- bl_ui/properties_paint_common/__init__.pyi +947 -140
- bl_ui/properties_particle/__init__.pyi +8322 -1970
- bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
- bl_ui/properties_physics_common/__init__.pyi +200 -44
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
- bl_ui/properties_physics_field/__init__.pyi +1695 -364
- bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
- bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
- bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
- bl_ui/properties_render/__init__.pyi +8312 -1933
- bl_ui/properties_scene/__init__.pyi +2211 -539
- bl_ui/properties_texture/__init__.pyi +4185 -1013
- bl_ui/properties_view_layer/__init__.pyi +2803 -664
- bl_ui/properties_workspace/__init__.pyi +626 -148
- bl_ui/properties_world/__init__.pyi +1092 -234
- bl_ui/space_clip/__init__.pyi +11475 -2805
- bl_ui/space_console/__init__.pyi +967 -202
- bl_ui/space_dopesheet/__init__.pyi +4260 -966
- bl_ui/space_filebrowser/__init__.pyi +4852 -1187
- bl_ui/space_graph/__init__.pyi +3251 -702
- bl_ui/space_image/__init__.pyi +12219 -2968
- bl_ui/space_info/__init__.pyi +964 -200
- bl_ui/space_nla/__init__.pyi +2756 -584
- bl_ui/space_node/__init__.pyi +5661 -1265
- bl_ui/space_outliner/__init__.pyi +2294 -478
- bl_ui/space_properties/__init__.pyi +417 -92
- bl_ui/space_sequencer/__init__.pyi +12436 -3009
- bl_ui/space_spreadsheet/__init__.pyi +184 -36
- bl_ui/space_statusbar/__init__.pyi +135 -30
- bl_ui/space_text/__init__.pyi +2556 -542
- bl_ui/space_time/__init__.pyi +1151 -243
- bl_ui/space_toolsystem_common/__init__.pyi +368 -66
- bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
- bl_ui/space_topbar/__init__.pyi +4214 -887
- bl_ui/space_userpref/__init__.pyi +13920 -3468
- bl_ui/space_view3d/__init__.pyi +43701 -10599
- bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
- bl_ui/utils/__init__.pyi +42 -4
- bl_ui_utils/bug_report_url/__init__.pyi +4 -1
- bl_ui_utils/layout/__init__.pyi +4 -1
- blend_render_info/__init__.pyi +13 -3
- blf/__init__.pyi +5 -7
- bmesh/__init__.pyi +7 -7
- bmesh/geometry/__init__.pyi +5 -5
- bmesh/ops/__init__.pyi +490 -504
- bmesh/types/__init__.pyi +268 -262
- bmesh/utils/__init__.pyi +55 -55
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +4 -5
- bpy/app/handlers/__init__.pyi +36 -36
- bpy/app/icons/__init__.pyi +8 -10
- bpy/app/timers/__init__.pyi +9 -11
- bpy/app/translations/__init__.pyi +20 -22
- bpy/msgbus/__init__.pyi +3 -12
- bpy/ops/action/__init__.pyi +350 -305
- bpy/ops/anim/__init__.pyi +464 -426
- bpy/ops/armature/__init__.pyi +392 -360
- bpy/ops/asset/__init__.pyi +166 -129
- bpy/ops/boid/__init__.pyi +64 -37
- bpy/ops/brush/__init__.pyi +78 -72
- bpy/ops/buttons/__init__.pyi +136 -122
- bpy/ops/cachefile/__init__.pyi +128 -123
- bpy/ops/camera/__init__.pyi +22 -24
- bpy/ops/clip/__init__.pyi +844 -735
- bpy/ops/cloth/__init__.pyi +10 -11
- bpy/ops/collection/__init__.pyi +38 -38
- bpy/ops/console/__init__.pyi +170 -141
- bpy/ops/constraint/__init__.pyi +156 -159
- bpy/ops/curve/__init__.pyi +518 -461
- bpy/ops/curves/__init__.pyi +188 -159
- bpy/ops/cycles/__init__.pyi +20 -18
- bpy/ops/dpaint/__init__.pyi +40 -30
- bpy/ops/ed/__init__.pyi +136 -107
- bpy/ops/export_anim/__init__.pyi +18 -19
- bpy/ops/export_mesh/__init__.pyi +26 -27
- bpy/ops/export_scene/__init__.pyi +313 -334
- bpy/ops/file/__init__.pyi +394 -304
- bpy/ops/fluid/__init__.pyi +114 -63
- bpy/ops/font/__init__.pyi +272 -245
- bpy/ops/geometry/__init__.pyi +92 -87
- bpy/ops/gizmogroup/__init__.pyi +24 -21
- bpy/ops/gpencil/__init__.pyi +1530 -1476
- bpy/ops/graph/__init__.pyi +680 -659
- bpy/ops/grease_pencil/__init__.pyi +510 -390
- bpy/ops/image/__init__.pyi +650 -603
- bpy/ops/import_anim/__init__.pyi +26 -27
- bpy/ops/import_curve/__init__.pyi +6 -7
- bpy/ops/import_mesh/__init__.pyi +18 -21
- bpy/ops/import_scene/__init__.pyi +86 -95
- bpy/ops/info/__init__.pyi +68 -55
- bpy/ops/lattice/__init__.pyi +70 -63
- bpy/ops/marker/__init__.pyi +110 -111
- bpy/ops/mask/__init__.pyi +352 -308
- bpy/ops/material/__init__.pyi +24 -12
- bpy/ops/mball/__init__.pyi +72 -75
- bpy/ops/mesh/__init__.pyi +2052 -2088
- bpy/ops/nla/__init__.pyi +369 -313
- bpy/ops/node/__init__.pyi +944 -805
- bpy/ops/object/__init__.pyi +2662 -2461
- bpy/ops/outliner/__init__.pyi +582 -431
- bpy/ops/paint/__init__.pyi +605 -516
- bpy/ops/paintcurve/__init__.pyi +72 -60
- bpy/ops/palette/__init__.pyi +54 -46
- bpy/ops/particle/__init__.pyi +302 -245
- bpy/ops/pose/__init__.pyi +366 -330
- bpy/ops/poselib/__init__.pyi +78 -64
- bpy/ops/preferences/__init__.pyi +361 -341
- bpy/ops/ptcache/__init__.pyi +56 -38
- bpy/ops/render/__init__.pyi +120 -117
- bpy/ops/rigidbody/__init__.pyi +114 -97
- bpy/ops/scene/__init__.pyi +302 -240
- bpy/ops/screen/__init__.pyi +414 -363
- bpy/ops/script/__init__.pyi +20 -18
- bpy/ops/sculpt/__init__.pyi +414 -452
- bpy/ops/sculpt_curves/__init__.pyi +42 -43
- bpy/ops/sequencer/__init__.pyi +1094 -1053
- bpy/ops/sound/__init__.pyi +214 -206
- bpy/ops/spreadsheet/__init__.pyi +34 -28
- bpy/ops/surface/__init__.pyi +108 -114
- bpy/ops/text/__init__.pyi +432 -350
- bpy/ops/text_editor/__init__.pyi +10 -11
- bpy/ops/texture/__init__.pyi +32 -21
- bpy/ops/transform/__init__.pyi +801 -854
- bpy/ops/ui/__init__.pyi +254 -185
- bpy/ops/uilist/__init__.pyi +20 -23
- bpy/ops/uv/__init__.pyi +618 -626
- bpy/ops/view2d/__init__.pyi +162 -161
- bpy/ops/view3d/__init__.pyi +669 -658
- bpy/ops/wm/__init__.pyi +2433 -2415
- bpy/ops/workspace/__init__.pyi +54 -31
- bpy/ops/world/__init__.pyi +8 -4
- bpy/path/__init__.pyi +111 -68
- bpy/props/__init__.pyi +263 -267
- bpy/types/__init__.pyi +86789 -85719
- bpy/utils/__init__.pyi +265 -123
- bpy/utils/previews/__init__.pyi +103 -17
- bpy/utils/units/__init__.pyi +19 -22
- bpy_extras/__init__.pyi +0 -4
- bpy_extras/anim_utils/__init__.pyi +11 -46
- bpy_extras/asset_utils/__init__.pyi +3 -12
- bpy_extras/id_map_utils/__init__.pyi +0 -2
- bpy_extras/image_utils/__init__.pyi +2 -2
- bpy_extras/io_utils/__init__.pyi +30 -27
- bpy_extras/keyconfig_utils/__init__.pyi +4 -1
- bpy_extras/mesh_utils/__init__.pyi +18 -18
- bpy_extras/node_utils/__init__.pyi +4 -3
- bpy_extras/object_utils/__init__.pyi +25 -26
- bpy_extras/view3d_utils/__init__.pyi +33 -38
- bpy_restrict_state/__init__.pyi +14 -1
- bpy_types/__init__.pyi +3873 -997
- console_python/__init__.pyi +41 -7
- console_shell/__init__.pyi +24 -5
- {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
- fake_bpy_module-20240326.dist-info/RECORD +343 -0
- {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +50 -52
- freestyle/functions/__init__.pyi +303 -207
- freestyle/predicates/__init__.pyi +299 -115
- freestyle/shaders/__init__.pyi +49 -80
- freestyle/types/__init__.pyi +465 -472
- freestyle/utils/ContextFunctions/__init__.pyi +9 -9
- freestyle/utils/__init__.pyi +28 -18
- gpu/capabilities/__init__.pyi +27 -19
- gpu/matrix/__init__.pyi +14 -16
- gpu/platform/__init__.pyi +5 -5
- gpu/shader/__init__.pyi +2 -5
- gpu/state/__init__.pyi +1 -1
- gpu/texture/__init__.pyi +3 -3
- gpu/types/__init__.pyi +54 -85
- gpu_extras/batch/__init__.pyi +27 -5
- gpu_extras/presets/__init__.pyi +52 -14
- graphviz_export/__init__.pyi +9 -2
- idprop/types/__init__.pyi +36 -12
- imbuf/__init__.pyi +8 -9
- imbuf/types/__init__.pyi +8 -15
- keyingsets_builtins/__init__.pyi +3149 -701
- keyingsets_utils/__init__.pyi +69 -14
- mathutils/__init__.pyi +502 -427
- mathutils/bvhtree/__init__.pyi +28 -32
- mathutils/geometry/__init__.pyi +177 -186
- mathutils/kdtree/__init__.pyi +16 -18
- mathutils/noise/__init__.pyi +47 -48
- nodeitems_builtins/__init__.pyi +50 -10
- nodeitems_utils/__init__.pyi +58 -10
- rna_info/__init__.pyi +230 -26
- rna_keymap_ui/__init__.pyi +29 -6
- rna_prop_ui/__init__.pyi +69 -12
- rna_xml/__init__.pyi +29 -6
- sys_info/__init__.pyi +4 -1
- bpy_extras/bmesh_utils/__init__.pyi +0 -6
- bpy_extras/extensions/__init__.pyi +0 -4
- bpy_extras/extensions/junction_module/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +0 -131
- bpy_extras/wm_utils/__init__.pyi +0 -4
- bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
- fake_bpy_module-20240224.dist-info/RECORD +0 -349
- {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
bpy/ops/font/__init__.pyi
CHANGED
|
@@ -4,212 +4,213 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def case_set(
|
|
7
|
-
override_context=None,
|
|
8
|
-
execution_context=None,
|
|
9
|
-
undo=None,
|
|
10
|
-
|
|
11
|
-
case: typing.Optional[typing.Any] = "LOWER",
|
|
7
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
|
+
execution_context: typing.Union[str, int] = None,
|
|
9
|
+
undo: bool = None,
|
|
10
|
+
case: typing.Any = "LOWER",
|
|
12
11
|
):
|
|
13
12
|
"""Set font case
|
|
14
13
|
|
|
15
|
-
:type override_context: typing.
|
|
16
|
-
:type execution_context: typing.
|
|
17
|
-
:type undo:
|
|
14
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
15
|
+
:type execution_context: typing.Union[str, int]
|
|
16
|
+
:type undo: bool
|
|
18
17
|
:param case: Case, Lower or upper case
|
|
19
|
-
:type case: typing.
|
|
18
|
+
:type case: typing.Any
|
|
20
19
|
"""
|
|
21
20
|
|
|
22
21
|
...
|
|
23
22
|
|
|
24
|
-
def case_toggle(
|
|
23
|
+
def case_toggle(
|
|
24
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
25
|
+
execution_context: typing.Union[str, int] = None,
|
|
26
|
+
undo: bool = None,
|
|
27
|
+
):
|
|
25
28
|
"""Toggle font case
|
|
26
29
|
|
|
27
|
-
:type override_context: typing.
|
|
28
|
-
:type execution_context: typing.
|
|
29
|
-
:type undo:
|
|
30
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
31
|
+
:type execution_context: typing.Union[str, int]
|
|
32
|
+
:type undo: bool
|
|
30
33
|
"""
|
|
31
34
|
|
|
32
35
|
...
|
|
33
36
|
|
|
34
37
|
def change_character(
|
|
35
|
-
override_context=None,
|
|
36
|
-
execution_context=None,
|
|
37
|
-
undo=None,
|
|
38
|
-
|
|
39
|
-
delta: typing.Optional[typing.Any] = 1,
|
|
38
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
39
|
+
execution_context: typing.Union[str, int] = None,
|
|
40
|
+
undo: bool = None,
|
|
41
|
+
delta: typing.Any = 1,
|
|
40
42
|
):
|
|
41
43
|
"""Change font character code
|
|
42
44
|
|
|
43
|
-
:type override_context: typing.
|
|
44
|
-
:type execution_context: typing.
|
|
45
|
-
:type undo:
|
|
45
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
46
|
+
:type execution_context: typing.Union[str, int]
|
|
47
|
+
:type undo: bool
|
|
46
48
|
:param delta: Delta, Number to increase or decrease character code with
|
|
47
|
-
:type delta: typing.
|
|
49
|
+
:type delta: typing.Any
|
|
48
50
|
"""
|
|
49
51
|
|
|
50
52
|
...
|
|
51
53
|
|
|
52
54
|
def change_spacing(
|
|
53
|
-
override_context=None,
|
|
54
|
-
execution_context=None,
|
|
55
|
-
undo=None,
|
|
56
|
-
|
|
57
|
-
delta: typing.Optional[typing.Any] = 1.0,
|
|
55
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
56
|
+
execution_context: typing.Union[str, int] = None,
|
|
57
|
+
undo: bool = None,
|
|
58
|
+
delta: typing.Any = 1.0,
|
|
58
59
|
):
|
|
59
60
|
"""Change font spacing
|
|
60
61
|
|
|
61
|
-
:type override_context: typing.
|
|
62
|
-
:type execution_context: typing.
|
|
63
|
-
:type undo:
|
|
62
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
63
|
+
:type execution_context: typing.Union[str, int]
|
|
64
|
+
:type undo: bool
|
|
64
65
|
:param delta: Delta, Amount to decrease or increase character spacing with
|
|
65
|
-
:type delta: typing.
|
|
66
|
+
:type delta: typing.Any
|
|
66
67
|
"""
|
|
67
68
|
|
|
68
69
|
...
|
|
69
70
|
|
|
70
71
|
def delete(
|
|
71
|
-
override_context=None,
|
|
72
|
-
execution_context=None,
|
|
73
|
-
undo=None,
|
|
74
|
-
|
|
75
|
-
type: typing.Optional[typing.Any] = "PREVIOUS_CHARACTER",
|
|
72
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
73
|
+
execution_context: typing.Union[str, int] = None,
|
|
74
|
+
undo: bool = None,
|
|
75
|
+
type: typing.Any = "PREVIOUS_CHARACTER",
|
|
76
76
|
):
|
|
77
77
|
"""Delete text by cursor position
|
|
78
78
|
|
|
79
|
-
:type override_context: typing.
|
|
80
|
-
:type execution_context: typing.
|
|
81
|
-
:type undo:
|
|
79
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
80
|
+
:type execution_context: typing.Union[str, int]
|
|
81
|
+
:type undo: bool
|
|
82
82
|
:param type: Type, Which part of the text to delete
|
|
83
|
-
:type type: typing.
|
|
83
|
+
:type type: typing.Any
|
|
84
84
|
"""
|
|
85
85
|
|
|
86
86
|
...
|
|
87
87
|
|
|
88
|
-
def line_break(
|
|
88
|
+
def line_break(
|
|
89
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
90
|
+
execution_context: typing.Union[str, int] = None,
|
|
91
|
+
undo: bool = None,
|
|
92
|
+
):
|
|
89
93
|
"""Insert line break at cursor position
|
|
90
94
|
|
|
91
|
-
:type override_context: typing.
|
|
92
|
-
:type execution_context: typing.
|
|
93
|
-
:type undo:
|
|
95
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
96
|
+
:type execution_context: typing.Union[str, int]
|
|
97
|
+
:type undo: bool
|
|
94
98
|
"""
|
|
95
99
|
|
|
96
100
|
...
|
|
97
101
|
|
|
98
102
|
def move(
|
|
99
|
-
override_context=None,
|
|
100
|
-
execution_context=None,
|
|
101
|
-
undo=None,
|
|
102
|
-
|
|
103
|
-
type: typing.Optional[typing.Any] = "LINE_BEGIN",
|
|
103
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
104
|
+
execution_context: typing.Union[str, int] = None,
|
|
105
|
+
undo: bool = None,
|
|
106
|
+
type: typing.Any = "LINE_BEGIN",
|
|
104
107
|
):
|
|
105
108
|
"""Move cursor to position type
|
|
106
109
|
|
|
107
|
-
:type override_context: typing.
|
|
108
|
-
:type execution_context: typing.
|
|
109
|
-
:type undo:
|
|
110
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
111
|
+
:type execution_context: typing.Union[str, int]
|
|
112
|
+
:type undo: bool
|
|
110
113
|
:param type: Type, Where to move cursor to
|
|
111
|
-
:type type: typing.
|
|
114
|
+
:type type: typing.Any
|
|
112
115
|
"""
|
|
113
116
|
|
|
114
117
|
...
|
|
115
118
|
|
|
116
119
|
def move_select(
|
|
117
|
-
override_context=None,
|
|
118
|
-
execution_context=None,
|
|
119
|
-
undo=None,
|
|
120
|
-
|
|
121
|
-
type: typing.Optional[typing.Any] = "LINE_BEGIN",
|
|
120
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
121
|
+
execution_context: typing.Union[str, int] = None,
|
|
122
|
+
undo: bool = None,
|
|
123
|
+
type: typing.Any = "LINE_BEGIN",
|
|
122
124
|
):
|
|
123
125
|
"""Move the cursor while selecting
|
|
124
126
|
|
|
125
|
-
:type override_context: typing.
|
|
126
|
-
:type execution_context: typing.
|
|
127
|
-
:type undo:
|
|
127
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
128
|
+
:type execution_context: typing.Union[str, int]
|
|
129
|
+
:type undo: bool
|
|
128
130
|
:param type: Type, Where to move cursor to, to make a selection
|
|
129
|
-
:type type: typing.
|
|
131
|
+
:type type: typing.Any
|
|
130
132
|
"""
|
|
131
133
|
|
|
132
134
|
...
|
|
133
135
|
|
|
134
136
|
def open(
|
|
135
|
-
override_context=None,
|
|
136
|
-
execution_context=None,
|
|
137
|
-
undo=None,
|
|
138
|
-
*,
|
|
137
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
138
|
+
execution_context: typing.Union[str, int] = None,
|
|
139
|
+
undo: bool = None,
|
|
139
140
|
filepath: typing.Union[str, typing.Any] = "",
|
|
140
|
-
hide_props_region: typing.
|
|
141
|
-
check_existing: typing.
|
|
142
|
-
filter_blender: typing.
|
|
143
|
-
filter_backup: typing.
|
|
144
|
-
filter_image: typing.
|
|
145
|
-
filter_movie: typing.
|
|
146
|
-
filter_python: typing.
|
|
147
|
-
filter_font: typing.
|
|
148
|
-
filter_sound: typing.
|
|
149
|
-
filter_text: typing.
|
|
150
|
-
filter_archive: typing.
|
|
151
|
-
filter_btx: typing.
|
|
152
|
-
filter_collada: typing.
|
|
153
|
-
filter_alembic: typing.
|
|
154
|
-
filter_usd: typing.
|
|
155
|
-
filter_obj: typing.
|
|
156
|
-
filter_volume: typing.
|
|
157
|
-
filter_folder: typing.
|
|
158
|
-
filter_blenlib: typing.
|
|
159
|
-
filemode: typing.
|
|
160
|
-
relative_path: typing.
|
|
161
|
-
display_type: typing.
|
|
162
|
-
sort_method: typing.
|
|
141
|
+
hide_props_region: typing.Union[bool, typing.Any] = True,
|
|
142
|
+
check_existing: typing.Union[bool, typing.Any] = False,
|
|
143
|
+
filter_blender: typing.Union[bool, typing.Any] = False,
|
|
144
|
+
filter_backup: typing.Union[bool, typing.Any] = False,
|
|
145
|
+
filter_image: typing.Union[bool, typing.Any] = False,
|
|
146
|
+
filter_movie: typing.Union[bool, typing.Any] = False,
|
|
147
|
+
filter_python: typing.Union[bool, typing.Any] = False,
|
|
148
|
+
filter_font: typing.Union[bool, typing.Any] = True,
|
|
149
|
+
filter_sound: typing.Union[bool, typing.Any] = False,
|
|
150
|
+
filter_text: typing.Union[bool, typing.Any] = False,
|
|
151
|
+
filter_archive: typing.Union[bool, typing.Any] = False,
|
|
152
|
+
filter_btx: typing.Union[bool, typing.Any] = False,
|
|
153
|
+
filter_collada: typing.Union[bool, typing.Any] = False,
|
|
154
|
+
filter_alembic: typing.Union[bool, typing.Any] = False,
|
|
155
|
+
filter_usd: typing.Union[bool, typing.Any] = False,
|
|
156
|
+
filter_obj: typing.Union[bool, typing.Any] = False,
|
|
157
|
+
filter_volume: typing.Union[bool, typing.Any] = False,
|
|
158
|
+
filter_folder: typing.Union[bool, typing.Any] = True,
|
|
159
|
+
filter_blenlib: typing.Union[bool, typing.Any] = False,
|
|
160
|
+
filemode: typing.Any = 9,
|
|
161
|
+
relative_path: typing.Union[bool, typing.Any] = True,
|
|
162
|
+
display_type: typing.Any = "THUMBNAIL",
|
|
163
|
+
sort_method: typing.Union[str, int, typing.Any] = "",
|
|
163
164
|
):
|
|
164
165
|
"""Load a new font from a file
|
|
165
166
|
|
|
166
|
-
:type override_context: typing.
|
|
167
|
-
:type execution_context: typing.
|
|
168
|
-
:type undo:
|
|
167
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
168
|
+
:type execution_context: typing.Union[str, int]
|
|
169
|
+
:type undo: bool
|
|
169
170
|
:param filepath: File Path, Path to file
|
|
170
171
|
:type filepath: typing.Union[str, typing.Any]
|
|
171
172
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
172
|
-
:type hide_props_region: typing.
|
|
173
|
+
:type hide_props_region: typing.Union[bool, typing.Any]
|
|
173
174
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
174
|
-
:type check_existing: typing.
|
|
175
|
+
:type check_existing: typing.Union[bool, typing.Any]
|
|
175
176
|
:param filter_blender: Filter .blend files
|
|
176
|
-
:type filter_blender: typing.
|
|
177
|
+
:type filter_blender: typing.Union[bool, typing.Any]
|
|
177
178
|
:param filter_backup: Filter .blend files
|
|
178
|
-
:type filter_backup: typing.
|
|
179
|
+
:type filter_backup: typing.Union[bool, typing.Any]
|
|
179
180
|
:param filter_image: Filter image files
|
|
180
|
-
:type filter_image: typing.
|
|
181
|
+
:type filter_image: typing.Union[bool, typing.Any]
|
|
181
182
|
:param filter_movie: Filter movie files
|
|
182
|
-
:type filter_movie: typing.
|
|
183
|
+
:type filter_movie: typing.Union[bool, typing.Any]
|
|
183
184
|
:param filter_python: Filter Python files
|
|
184
|
-
:type filter_python: typing.
|
|
185
|
+
:type filter_python: typing.Union[bool, typing.Any]
|
|
185
186
|
:param filter_font: Filter font files
|
|
186
|
-
:type filter_font: typing.
|
|
187
|
+
:type filter_font: typing.Union[bool, typing.Any]
|
|
187
188
|
:param filter_sound: Filter sound files
|
|
188
|
-
:type filter_sound: typing.
|
|
189
|
+
:type filter_sound: typing.Union[bool, typing.Any]
|
|
189
190
|
:param filter_text: Filter text files
|
|
190
|
-
:type filter_text: typing.
|
|
191
|
+
:type filter_text: typing.Union[bool, typing.Any]
|
|
191
192
|
:param filter_archive: Filter archive files
|
|
192
|
-
:type filter_archive: typing.
|
|
193
|
+
:type filter_archive: typing.Union[bool, typing.Any]
|
|
193
194
|
:param filter_btx: Filter btx files
|
|
194
|
-
:type filter_btx: typing.
|
|
195
|
+
:type filter_btx: typing.Union[bool, typing.Any]
|
|
195
196
|
:param filter_collada: Filter COLLADA files
|
|
196
|
-
:type filter_collada: typing.
|
|
197
|
+
:type filter_collada: typing.Union[bool, typing.Any]
|
|
197
198
|
:param filter_alembic: Filter Alembic files
|
|
198
|
-
:type filter_alembic: typing.
|
|
199
|
+
:type filter_alembic: typing.Union[bool, typing.Any]
|
|
199
200
|
:param filter_usd: Filter USD files
|
|
200
|
-
:type filter_usd: typing.
|
|
201
|
+
:type filter_usd: typing.Union[bool, typing.Any]
|
|
201
202
|
:param filter_obj: Filter OBJ files
|
|
202
|
-
:type filter_obj: typing.
|
|
203
|
+
:type filter_obj: typing.Union[bool, typing.Any]
|
|
203
204
|
:param filter_volume: Filter OpenVDB volume files
|
|
204
|
-
:type filter_volume: typing.
|
|
205
|
+
:type filter_volume: typing.Union[bool, typing.Any]
|
|
205
206
|
:param filter_folder: Filter folders
|
|
206
|
-
:type filter_folder: typing.
|
|
207
|
+
:type filter_folder: typing.Union[bool, typing.Any]
|
|
207
208
|
:param filter_blenlib: Filter Blender IDs
|
|
208
|
-
:type filter_blenlib: typing.
|
|
209
|
+
:type filter_blenlib: typing.Union[bool, typing.Any]
|
|
209
210
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
210
|
-
:type filemode: typing.
|
|
211
|
+
:type filemode: typing.Any
|
|
211
212
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
212
|
-
:type relative_path: typing.
|
|
213
|
+
:type relative_path: typing.Union[bool, typing.Any]
|
|
213
214
|
:param display_type: Display Type
|
|
214
215
|
|
|
215
216
|
DEFAULT
|
|
@@ -223,227 +224,246 @@ def open(
|
|
|
223
224
|
|
|
224
225
|
THUMBNAIL
|
|
225
226
|
Thumbnails -- Display files as thumbnails.
|
|
226
|
-
:type display_type: typing.
|
|
227
|
+
:type display_type: typing.Any
|
|
227
228
|
:param sort_method: File sorting mode
|
|
228
|
-
:type sort_method: typing.
|
|
229
|
+
:type sort_method: typing.Union[str, int, typing.Any]
|
|
229
230
|
"""
|
|
230
231
|
|
|
231
232
|
...
|
|
232
233
|
|
|
233
|
-
def select_all(
|
|
234
|
+
def select_all(
|
|
235
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
236
|
+
execution_context: typing.Union[str, int] = None,
|
|
237
|
+
undo: bool = None,
|
|
238
|
+
):
|
|
234
239
|
"""Select all text
|
|
235
240
|
|
|
236
|
-
:type override_context: typing.
|
|
237
|
-
:type execution_context: typing.
|
|
238
|
-
:type undo:
|
|
241
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
242
|
+
:type execution_context: typing.Union[str, int]
|
|
243
|
+
:type undo: bool
|
|
239
244
|
"""
|
|
240
245
|
|
|
241
246
|
...
|
|
242
247
|
|
|
243
|
-
def select_word(
|
|
248
|
+
def select_word(
|
|
249
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
250
|
+
execution_context: typing.Union[str, int] = None,
|
|
251
|
+
undo: bool = None,
|
|
252
|
+
):
|
|
244
253
|
"""Select word under cursor
|
|
245
254
|
|
|
246
|
-
:type override_context: typing.
|
|
247
|
-
:type execution_context: typing.
|
|
248
|
-
:type undo:
|
|
255
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
256
|
+
:type execution_context: typing.Union[str, int]
|
|
257
|
+
:type undo: bool
|
|
249
258
|
"""
|
|
250
259
|
|
|
251
260
|
...
|
|
252
261
|
|
|
253
|
-
def selection_set(
|
|
262
|
+
def selection_set(
|
|
263
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
264
|
+
execution_context: typing.Union[str, int] = None,
|
|
265
|
+
undo: bool = None,
|
|
266
|
+
):
|
|
254
267
|
"""Set cursor selection
|
|
255
268
|
|
|
256
|
-
:type override_context: typing.
|
|
257
|
-
:type execution_context: typing.
|
|
258
|
-
:type undo:
|
|
269
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
270
|
+
:type execution_context: typing.Union[str, int]
|
|
271
|
+
:type undo: bool
|
|
259
272
|
"""
|
|
260
273
|
|
|
261
274
|
...
|
|
262
275
|
|
|
263
276
|
def style_set(
|
|
264
|
-
override_context=None,
|
|
265
|
-
execution_context=None,
|
|
266
|
-
undo=None,
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
clear: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
277
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
278
|
+
execution_context: typing.Union[str, int] = None,
|
|
279
|
+
undo: bool = None,
|
|
280
|
+
style: typing.Any = "BOLD",
|
|
281
|
+
clear: typing.Union[bool, typing.Any] = False,
|
|
270
282
|
):
|
|
271
283
|
"""Set font style
|
|
272
284
|
|
|
273
|
-
:type override_context: typing.
|
|
274
|
-
:type execution_context: typing.
|
|
275
|
-
:type undo:
|
|
285
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
286
|
+
:type execution_context: typing.Union[str, int]
|
|
287
|
+
:type undo: bool
|
|
276
288
|
:param style: Style, Style to set selection to
|
|
277
|
-
:type style: typing.
|
|
289
|
+
:type style: typing.Any
|
|
278
290
|
:param clear: Clear, Clear style rather than setting it
|
|
279
|
-
:type clear: typing.
|
|
291
|
+
:type clear: typing.Union[bool, typing.Any]
|
|
280
292
|
"""
|
|
281
293
|
|
|
282
294
|
...
|
|
283
295
|
|
|
284
296
|
def style_toggle(
|
|
285
|
-
override_context=None,
|
|
286
|
-
execution_context=None,
|
|
287
|
-
undo=None,
|
|
288
|
-
|
|
289
|
-
style: typing.Optional[typing.Any] = "BOLD",
|
|
297
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
298
|
+
execution_context: typing.Union[str, int] = None,
|
|
299
|
+
undo: bool = None,
|
|
300
|
+
style: typing.Any = "BOLD",
|
|
290
301
|
):
|
|
291
302
|
"""Toggle font style
|
|
292
303
|
|
|
293
|
-
:type override_context: typing.
|
|
294
|
-
:type execution_context: typing.
|
|
295
|
-
:type undo:
|
|
304
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
305
|
+
:type execution_context: typing.Union[str, int]
|
|
306
|
+
:type undo: bool
|
|
296
307
|
:param style: Style, Style to set selection to
|
|
297
|
-
:type style: typing.
|
|
308
|
+
:type style: typing.Any
|
|
298
309
|
"""
|
|
299
310
|
|
|
300
311
|
...
|
|
301
312
|
|
|
302
|
-
def text_copy(
|
|
313
|
+
def text_copy(
|
|
314
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
315
|
+
execution_context: typing.Union[str, int] = None,
|
|
316
|
+
undo: bool = None,
|
|
317
|
+
):
|
|
303
318
|
"""Copy selected text to clipboard
|
|
304
319
|
|
|
305
|
-
:type override_context: typing.
|
|
306
|
-
:type execution_context: typing.
|
|
307
|
-
:type undo:
|
|
320
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
321
|
+
:type execution_context: typing.Union[str, int]
|
|
322
|
+
:type undo: bool
|
|
308
323
|
"""
|
|
309
324
|
|
|
310
325
|
...
|
|
311
326
|
|
|
312
|
-
def text_cut(
|
|
327
|
+
def text_cut(
|
|
328
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
329
|
+
execution_context: typing.Union[str, int] = None,
|
|
330
|
+
undo: bool = None,
|
|
331
|
+
):
|
|
313
332
|
"""Cut selected text to clipboard
|
|
314
333
|
|
|
315
|
-
:type override_context: typing.
|
|
316
|
-
:type execution_context: typing.
|
|
317
|
-
:type undo:
|
|
334
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
335
|
+
:type execution_context: typing.Union[str, int]
|
|
336
|
+
:type undo: bool
|
|
318
337
|
"""
|
|
319
338
|
|
|
320
339
|
...
|
|
321
340
|
|
|
322
341
|
def text_insert(
|
|
323
|
-
override_context=None,
|
|
324
|
-
execution_context=None,
|
|
325
|
-
undo=None,
|
|
326
|
-
*,
|
|
342
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
343
|
+
execution_context: typing.Union[str, int] = None,
|
|
344
|
+
undo: bool = None,
|
|
327
345
|
text: typing.Union[str, typing.Any] = "",
|
|
328
|
-
accent: typing.
|
|
346
|
+
accent: typing.Union[bool, typing.Any] = False,
|
|
329
347
|
):
|
|
330
348
|
"""Insert text at cursor position
|
|
331
349
|
|
|
332
|
-
:type override_context: typing.
|
|
333
|
-
:type execution_context: typing.
|
|
334
|
-
:type undo:
|
|
350
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
351
|
+
:type execution_context: typing.Union[str, int]
|
|
352
|
+
:type undo: bool
|
|
335
353
|
:param text: Text, Text to insert at the cursor position
|
|
336
354
|
:type text: typing.Union[str, typing.Any]
|
|
337
355
|
:param accent: Accent Mode, Next typed character will strike through previous, for special character input
|
|
338
|
-
:type accent: typing.
|
|
356
|
+
:type accent: typing.Union[bool, typing.Any]
|
|
339
357
|
"""
|
|
340
358
|
|
|
341
359
|
...
|
|
342
360
|
|
|
343
|
-
def text_insert_unicode(
|
|
361
|
+
def text_insert_unicode(
|
|
362
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
363
|
+
execution_context: typing.Union[str, int] = None,
|
|
364
|
+
undo: bool = None,
|
|
365
|
+
):
|
|
344
366
|
"""Insert Unicode Character
|
|
345
367
|
|
|
346
|
-
:type override_context: typing.
|
|
347
|
-
:type execution_context: typing.
|
|
348
|
-
:type undo:
|
|
368
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
369
|
+
:type execution_context: typing.Union[str, int]
|
|
370
|
+
:type undo: bool
|
|
349
371
|
"""
|
|
350
372
|
|
|
351
373
|
...
|
|
352
374
|
|
|
353
375
|
def text_paste(
|
|
354
|
-
override_context=None,
|
|
355
|
-
execution_context=None,
|
|
356
|
-
undo=None,
|
|
357
|
-
|
|
358
|
-
selection: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
376
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
377
|
+
execution_context: typing.Union[str, int] = None,
|
|
378
|
+
undo: bool = None,
|
|
379
|
+
selection: typing.Union[bool, typing.Any] = False,
|
|
359
380
|
):
|
|
360
381
|
"""Paste text from clipboard
|
|
361
382
|
|
|
362
|
-
:type override_context: typing.
|
|
363
|
-
:type execution_context: typing.
|
|
364
|
-
:type undo:
|
|
383
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
384
|
+
:type execution_context: typing.Union[str, int]
|
|
385
|
+
:type undo: bool
|
|
365
386
|
:param selection: Selection, Paste text selected elsewhere rather than copied (X11/Wayland only)
|
|
366
|
-
:type selection: typing.
|
|
387
|
+
:type selection: typing.Union[bool, typing.Any]
|
|
367
388
|
"""
|
|
368
389
|
|
|
369
390
|
...
|
|
370
391
|
|
|
371
392
|
def text_paste_from_file(
|
|
372
|
-
override_context=None,
|
|
373
|
-
execution_context=None,
|
|
374
|
-
undo=None,
|
|
375
|
-
*,
|
|
393
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
394
|
+
execution_context: typing.Union[str, int] = None,
|
|
395
|
+
undo: bool = None,
|
|
376
396
|
filepath: typing.Union[str, typing.Any] = "",
|
|
377
|
-
hide_props_region: typing.
|
|
378
|
-
check_existing: typing.
|
|
379
|
-
filter_blender: typing.
|
|
380
|
-
filter_backup: typing.
|
|
381
|
-
filter_image: typing.
|
|
382
|
-
filter_movie: typing.
|
|
383
|
-
filter_python: typing.
|
|
384
|
-
filter_font: typing.
|
|
385
|
-
filter_sound: typing.
|
|
386
|
-
filter_text: typing.
|
|
387
|
-
filter_archive: typing.
|
|
388
|
-
filter_btx: typing.
|
|
389
|
-
filter_collada: typing.
|
|
390
|
-
filter_alembic: typing.
|
|
391
|
-
filter_usd: typing.
|
|
392
|
-
filter_obj: typing.
|
|
393
|
-
filter_volume: typing.
|
|
394
|
-
filter_folder: typing.
|
|
395
|
-
filter_blenlib: typing.
|
|
396
|
-
filemode: typing.
|
|
397
|
-
display_type: typing.
|
|
398
|
-
sort_method: typing.
|
|
397
|
+
hide_props_region: typing.Union[bool, typing.Any] = True,
|
|
398
|
+
check_existing: typing.Union[bool, typing.Any] = False,
|
|
399
|
+
filter_blender: typing.Union[bool, typing.Any] = False,
|
|
400
|
+
filter_backup: typing.Union[bool, typing.Any] = False,
|
|
401
|
+
filter_image: typing.Union[bool, typing.Any] = False,
|
|
402
|
+
filter_movie: typing.Union[bool, typing.Any] = False,
|
|
403
|
+
filter_python: typing.Union[bool, typing.Any] = False,
|
|
404
|
+
filter_font: typing.Union[bool, typing.Any] = False,
|
|
405
|
+
filter_sound: typing.Union[bool, typing.Any] = False,
|
|
406
|
+
filter_text: typing.Union[bool, typing.Any] = True,
|
|
407
|
+
filter_archive: typing.Union[bool, typing.Any] = False,
|
|
408
|
+
filter_btx: typing.Union[bool, typing.Any] = False,
|
|
409
|
+
filter_collada: typing.Union[bool, typing.Any] = False,
|
|
410
|
+
filter_alembic: typing.Union[bool, typing.Any] = False,
|
|
411
|
+
filter_usd: typing.Union[bool, typing.Any] = False,
|
|
412
|
+
filter_obj: typing.Union[bool, typing.Any] = False,
|
|
413
|
+
filter_volume: typing.Union[bool, typing.Any] = False,
|
|
414
|
+
filter_folder: typing.Union[bool, typing.Any] = True,
|
|
415
|
+
filter_blenlib: typing.Union[bool, typing.Any] = False,
|
|
416
|
+
filemode: typing.Any = 9,
|
|
417
|
+
display_type: typing.Any = "DEFAULT",
|
|
418
|
+
sort_method: typing.Union[str, int, typing.Any] = "",
|
|
399
419
|
):
|
|
400
420
|
"""Paste contents from file
|
|
401
421
|
|
|
402
|
-
:type override_context: typing.
|
|
403
|
-
:type execution_context: typing.
|
|
404
|
-
:type undo:
|
|
422
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
423
|
+
:type execution_context: typing.Union[str, int]
|
|
424
|
+
:type undo: bool
|
|
405
425
|
:param filepath: File Path, Path to file
|
|
406
426
|
:type filepath: typing.Union[str, typing.Any]
|
|
407
427
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
408
|
-
:type hide_props_region: typing.
|
|
428
|
+
:type hide_props_region: typing.Union[bool, typing.Any]
|
|
409
429
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
410
|
-
:type check_existing: typing.
|
|
430
|
+
:type check_existing: typing.Union[bool, typing.Any]
|
|
411
431
|
:param filter_blender: Filter .blend files
|
|
412
|
-
:type filter_blender: typing.
|
|
432
|
+
:type filter_blender: typing.Union[bool, typing.Any]
|
|
413
433
|
:param filter_backup: Filter .blend files
|
|
414
|
-
:type filter_backup: typing.
|
|
434
|
+
:type filter_backup: typing.Union[bool, typing.Any]
|
|
415
435
|
:param filter_image: Filter image files
|
|
416
|
-
:type filter_image: typing.
|
|
436
|
+
:type filter_image: typing.Union[bool, typing.Any]
|
|
417
437
|
:param filter_movie: Filter movie files
|
|
418
|
-
:type filter_movie: typing.
|
|
438
|
+
:type filter_movie: typing.Union[bool, typing.Any]
|
|
419
439
|
:param filter_python: Filter Python files
|
|
420
|
-
:type filter_python: typing.
|
|
440
|
+
:type filter_python: typing.Union[bool, typing.Any]
|
|
421
441
|
:param filter_font: Filter font files
|
|
422
|
-
:type filter_font: typing.
|
|
442
|
+
:type filter_font: typing.Union[bool, typing.Any]
|
|
423
443
|
:param filter_sound: Filter sound files
|
|
424
|
-
:type filter_sound: typing.
|
|
444
|
+
:type filter_sound: typing.Union[bool, typing.Any]
|
|
425
445
|
:param filter_text: Filter text files
|
|
426
|
-
:type filter_text: typing.
|
|
446
|
+
:type filter_text: typing.Union[bool, typing.Any]
|
|
427
447
|
:param filter_archive: Filter archive files
|
|
428
|
-
:type filter_archive: typing.
|
|
448
|
+
:type filter_archive: typing.Union[bool, typing.Any]
|
|
429
449
|
:param filter_btx: Filter btx files
|
|
430
|
-
:type filter_btx: typing.
|
|
450
|
+
:type filter_btx: typing.Union[bool, typing.Any]
|
|
431
451
|
:param filter_collada: Filter COLLADA files
|
|
432
|
-
:type filter_collada: typing.
|
|
452
|
+
:type filter_collada: typing.Union[bool, typing.Any]
|
|
433
453
|
:param filter_alembic: Filter Alembic files
|
|
434
|
-
:type filter_alembic: typing.
|
|
454
|
+
:type filter_alembic: typing.Union[bool, typing.Any]
|
|
435
455
|
:param filter_usd: Filter USD files
|
|
436
|
-
:type filter_usd: typing.
|
|
456
|
+
:type filter_usd: typing.Union[bool, typing.Any]
|
|
437
457
|
:param filter_obj: Filter OBJ files
|
|
438
|
-
:type filter_obj: typing.
|
|
458
|
+
:type filter_obj: typing.Union[bool, typing.Any]
|
|
439
459
|
:param filter_volume: Filter OpenVDB volume files
|
|
440
|
-
:type filter_volume: typing.
|
|
460
|
+
:type filter_volume: typing.Union[bool, typing.Any]
|
|
441
461
|
:param filter_folder: Filter folders
|
|
442
|
-
:type filter_folder: typing.
|
|
462
|
+
:type filter_folder: typing.Union[bool, typing.Any]
|
|
443
463
|
:param filter_blenlib: Filter Blender IDs
|
|
444
|
-
:type filter_blenlib: typing.
|
|
464
|
+
:type filter_blenlib: typing.Union[bool, typing.Any]
|
|
445
465
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
446
|
-
:type filemode: typing.
|
|
466
|
+
:type filemode: typing.Any
|
|
447
467
|
:param display_type: Display Type
|
|
448
468
|
|
|
449
469
|
DEFAULT
|
|
@@ -457,47 +477,54 @@ def text_paste_from_file(
|
|
|
457
477
|
|
|
458
478
|
THUMBNAIL
|
|
459
479
|
Thumbnails -- Display files as thumbnails.
|
|
460
|
-
:type display_type: typing.
|
|
480
|
+
:type display_type: typing.Any
|
|
461
481
|
:param sort_method: File sorting mode
|
|
462
|
-
:type sort_method: typing.
|
|
482
|
+
:type sort_method: typing.Union[str, int, typing.Any]
|
|
463
483
|
"""
|
|
464
484
|
|
|
465
485
|
...
|
|
466
486
|
|
|
467
|
-
def textbox_add(
|
|
487
|
+
def textbox_add(
|
|
488
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
489
|
+
execution_context: typing.Union[str, int] = None,
|
|
490
|
+
undo: bool = None,
|
|
491
|
+
):
|
|
468
492
|
"""Add a new text box
|
|
469
493
|
|
|
470
|
-
:type override_context: typing.
|
|
471
|
-
:type execution_context: typing.
|
|
472
|
-
:type undo:
|
|
494
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
495
|
+
:type execution_context: typing.Union[str, int]
|
|
496
|
+
:type undo: bool
|
|
473
497
|
"""
|
|
474
498
|
|
|
475
499
|
...
|
|
476
500
|
|
|
477
501
|
def textbox_remove(
|
|
478
|
-
override_context=None,
|
|
479
|
-
execution_context=None,
|
|
480
|
-
undo=None,
|
|
481
|
-
|
|
482
|
-
index: typing.Optional[typing.Any] = 0,
|
|
502
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
503
|
+
execution_context: typing.Union[str, int] = None,
|
|
504
|
+
undo: bool = None,
|
|
505
|
+
index: typing.Any = 0,
|
|
483
506
|
):
|
|
484
507
|
"""Remove the text box
|
|
485
508
|
|
|
486
|
-
:type override_context: typing.
|
|
487
|
-
:type execution_context: typing.
|
|
488
|
-
:type undo:
|
|
509
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
510
|
+
:type execution_context: typing.Union[str, int]
|
|
511
|
+
:type undo: bool
|
|
489
512
|
:param index: Index, The current text box
|
|
490
|
-
:type index: typing.
|
|
513
|
+
:type index: typing.Any
|
|
491
514
|
"""
|
|
492
515
|
|
|
493
516
|
...
|
|
494
517
|
|
|
495
|
-
def unlink(
|
|
518
|
+
def unlink(
|
|
519
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
520
|
+
execution_context: typing.Union[str, int] = None,
|
|
521
|
+
undo: bool = None,
|
|
522
|
+
):
|
|
496
523
|
"""Unlink active font data-block
|
|
497
524
|
|
|
498
|
-
:type override_context: typing.
|
|
499
|
-
:type execution_context: typing.
|
|
500
|
-
:type undo:
|
|
525
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
526
|
+
:type execution_context: typing.Union[str, int]
|
|
527
|
+
:type undo: bool
|
|
501
528
|
"""
|
|
502
529
|
|
|
503
530
|
...
|