fake-bpy-module 20240927__py3-none-any.whl → 20240929__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.
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +220 -200
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/image/__init__.pyi
CHANGED
|
@@ -6,19 +6,19 @@ import bpy.typing
|
|
|
6
6
|
import mathutils
|
|
7
7
|
|
|
8
8
|
def add_render_slot(
|
|
9
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
9
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
):
|
|
13
13
|
"""Add a new render slot
|
|
14
14
|
|
|
15
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
15
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
16
16
|
:type execution_context: int | str | None
|
|
17
17
|
:type undo: bool | None
|
|
18
18
|
"""
|
|
19
19
|
|
|
20
20
|
def change_frame(
|
|
21
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
21
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
22
22
|
execution_context: int | str | None = None,
|
|
23
23
|
undo: bool | None = None,
|
|
24
24
|
*,
|
|
@@ -26,7 +26,7 @@ def change_frame(
|
|
|
26
26
|
):
|
|
27
27
|
"""Interactively change the current frame number
|
|
28
28
|
|
|
29
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
29
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
30
30
|
:type execution_context: int | str | None
|
|
31
31
|
:type undo: bool | None
|
|
32
32
|
:param frame: Frame
|
|
@@ -34,55 +34,55 @@ def change_frame(
|
|
|
34
34
|
"""
|
|
35
35
|
|
|
36
36
|
def clear_render_border(
|
|
37
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
37
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
38
38
|
execution_context: int | str | None = None,
|
|
39
39
|
undo: bool | None = None,
|
|
40
40
|
):
|
|
41
41
|
"""Clear the boundaries of the render region and disable render region
|
|
42
42
|
|
|
43
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
43
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
44
44
|
:type execution_context: int | str | None
|
|
45
45
|
:type undo: bool | None
|
|
46
46
|
"""
|
|
47
47
|
|
|
48
48
|
def clear_render_slot(
|
|
49
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
49
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
50
50
|
execution_context: int | str | None = None,
|
|
51
51
|
undo: bool | None = None,
|
|
52
52
|
):
|
|
53
53
|
"""Clear the currently selected render slot
|
|
54
54
|
|
|
55
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
55
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
56
56
|
:type execution_context: int | str | None
|
|
57
57
|
:type undo: bool | None
|
|
58
58
|
"""
|
|
59
59
|
|
|
60
60
|
def clipboard_copy(
|
|
61
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
61
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
62
62
|
execution_context: int | str | None = None,
|
|
63
63
|
undo: bool | None = None,
|
|
64
64
|
):
|
|
65
65
|
"""Copy the image to the clipboard
|
|
66
66
|
|
|
67
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
67
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
68
68
|
:type execution_context: int | str | None
|
|
69
69
|
:type undo: bool | None
|
|
70
70
|
"""
|
|
71
71
|
|
|
72
72
|
def clipboard_paste(
|
|
73
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
73
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
74
74
|
execution_context: int | str | None = None,
|
|
75
75
|
undo: bool | None = None,
|
|
76
76
|
):
|
|
77
77
|
"""Paste new image from the clipboard
|
|
78
78
|
|
|
79
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
79
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
80
80
|
:type execution_context: int | str | None
|
|
81
81
|
:type undo: bool | None
|
|
82
82
|
"""
|
|
83
83
|
|
|
84
84
|
def convert_to_mesh_plane(
|
|
85
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
85
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
86
86
|
execution_context: int | str | None = None,
|
|
87
87
|
undo: bool | None = None,
|
|
88
88
|
*,
|
|
@@ -105,7 +105,7 @@ def convert_to_mesh_plane(
|
|
|
105
105
|
):
|
|
106
106
|
"""Convert selected reference images to textured mesh plane
|
|
107
107
|
|
|
108
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
108
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
109
109
|
:type execution_context: int | str | None
|
|
110
110
|
:type undo: bool | None
|
|
111
111
|
:param interpolation: Interpolation, Texture interpolation
|
|
@@ -193,7 +193,7 @@ def convert_to_mesh_plane(
|
|
|
193
193
|
"""
|
|
194
194
|
|
|
195
195
|
def curves_point_set(
|
|
196
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
196
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
197
197
|
execution_context: int | str | None = None,
|
|
198
198
|
undo: bool | None = None,
|
|
199
199
|
*,
|
|
@@ -202,7 +202,7 @@ def curves_point_set(
|
|
|
202
202
|
):
|
|
203
203
|
"""Set black point or white point for curves
|
|
204
204
|
|
|
205
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
205
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
206
206
|
:type execution_context: int | str | None
|
|
207
207
|
:type undo: bool | None
|
|
208
208
|
:param point: Point, Set black point or white point for curves
|
|
@@ -212,7 +212,7 @@ def curves_point_set(
|
|
|
212
212
|
"""
|
|
213
213
|
|
|
214
214
|
def cycle_render_slot(
|
|
215
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
215
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
216
216
|
execution_context: int | str | None = None,
|
|
217
217
|
undo: bool | None = None,
|
|
218
218
|
*,
|
|
@@ -220,7 +220,7 @@ def cycle_render_slot(
|
|
|
220
220
|
):
|
|
221
221
|
"""Cycle through all non-void render slots
|
|
222
222
|
|
|
223
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
223
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
224
224
|
:type execution_context: int | str | None
|
|
225
225
|
:type undo: bool | None
|
|
226
226
|
:param reverse: Cycle in Reverse
|
|
@@ -228,7 +228,7 @@ def cycle_render_slot(
|
|
|
228
228
|
"""
|
|
229
229
|
|
|
230
230
|
def external_edit(
|
|
231
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
231
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
232
232
|
execution_context: int | str | None = None,
|
|
233
233
|
undo: bool | None = None,
|
|
234
234
|
*,
|
|
@@ -236,7 +236,7 @@ def external_edit(
|
|
|
236
236
|
):
|
|
237
237
|
"""Edit image in an external application
|
|
238
238
|
|
|
239
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
239
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
240
240
|
:type execution_context: int | str | None
|
|
241
241
|
:type undo: bool | None
|
|
242
242
|
:param filepath: filepath
|
|
@@ -244,7 +244,7 @@ def external_edit(
|
|
|
244
244
|
"""
|
|
245
245
|
|
|
246
246
|
def file_browse(
|
|
247
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
247
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
248
248
|
execution_context: int | str | None = None,
|
|
249
249
|
undo: bool | None = None,
|
|
250
250
|
*,
|
|
@@ -280,7 +280,7 @@ def file_browse(
|
|
|
280
280
|
):
|
|
281
281
|
"""Open an image file browser, hold Shift to open the file, Alt to browse containing directory
|
|
282
282
|
|
|
283
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
283
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
284
284
|
:type execution_context: int | str | None
|
|
285
285
|
:type undo: bool | None
|
|
286
286
|
:param filepath: File Path, Path to file
|
|
@@ -350,7 +350,7 @@ def file_browse(
|
|
|
350
350
|
"""
|
|
351
351
|
|
|
352
352
|
def flip(
|
|
353
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
353
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
354
354
|
execution_context: int | str | None = None,
|
|
355
355
|
undo: bool | None = None,
|
|
356
356
|
*,
|
|
@@ -359,7 +359,7 @@ def flip(
|
|
|
359
359
|
):
|
|
360
360
|
"""Flip the image
|
|
361
361
|
|
|
362
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
362
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
363
363
|
:type execution_context: int | str | None
|
|
364
364
|
:type undo: bool | None
|
|
365
365
|
:param use_flip_x: Horizontal, Flip the image horizontally
|
|
@@ -369,7 +369,7 @@ def flip(
|
|
|
369
369
|
"""
|
|
370
370
|
|
|
371
371
|
def import_as_mesh_planes(
|
|
372
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
372
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
373
373
|
execution_context: int | str | None = None,
|
|
374
374
|
undo: bool | None = None,
|
|
375
375
|
*,
|
|
@@ -424,7 +424,7 @@ def import_as_mesh_planes(
|
|
|
424
424
|
):
|
|
425
425
|
"""Create mesh plane(s) from image files with the appropriate aspect ratio
|
|
426
426
|
|
|
427
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
427
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
428
428
|
:type execution_context: int | str | None
|
|
429
429
|
:type undo: bool | None
|
|
430
430
|
:param interpolation: Interpolation, Texture interpolation
|
|
@@ -640,7 +640,7 @@ def import_as_mesh_planes(
|
|
|
640
640
|
"""
|
|
641
641
|
|
|
642
642
|
def invert(
|
|
643
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
643
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
644
644
|
execution_context: int | str | None = None,
|
|
645
645
|
undo: bool | None = None,
|
|
646
646
|
*,
|
|
@@ -651,7 +651,7 @@ def invert(
|
|
|
651
651
|
):
|
|
652
652
|
"""Invert image's channels
|
|
653
653
|
|
|
654
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
654
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
655
655
|
:type execution_context: int | str | None
|
|
656
656
|
:type undo: bool | None
|
|
657
657
|
:param invert_r: Red, Invert red channel
|
|
@@ -665,19 +665,19 @@ def invert(
|
|
|
665
665
|
"""
|
|
666
666
|
|
|
667
667
|
def match_movie_length(
|
|
668
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
668
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
669
669
|
execution_context: int | str | None = None,
|
|
670
670
|
undo: bool | None = None,
|
|
671
671
|
):
|
|
672
672
|
"""Set image's user's length to the one of this video
|
|
673
673
|
|
|
674
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
674
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
675
675
|
:type execution_context: int | str | None
|
|
676
676
|
:type undo: bool | None
|
|
677
677
|
"""
|
|
678
678
|
|
|
679
679
|
def new(
|
|
680
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
680
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
681
681
|
execution_context: int | str | None = None,
|
|
682
682
|
undo: bool | None = None,
|
|
683
683
|
*,
|
|
@@ -693,7 +693,7 @@ def new(
|
|
|
693
693
|
):
|
|
694
694
|
"""Create a new image
|
|
695
695
|
|
|
696
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
696
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
697
697
|
:type execution_context: int | str | None
|
|
698
698
|
:type undo: bool | None
|
|
699
699
|
:param name: Name, Image data-block name
|
|
@@ -717,7 +717,7 @@ def new(
|
|
|
717
717
|
"""
|
|
718
718
|
|
|
719
719
|
def open(
|
|
720
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
720
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
721
721
|
execution_context: int | str | None = None,
|
|
722
722
|
undo: bool | None = None,
|
|
723
723
|
*,
|
|
@@ -759,7 +759,7 @@ def open(
|
|
|
759
759
|
):
|
|
760
760
|
"""Open image
|
|
761
761
|
|
|
762
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
762
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
763
763
|
:type execution_context: int | str | None
|
|
764
764
|
:type undo: bool | None
|
|
765
765
|
:param allow_path_tokens: Allow the path to contain substitution tokens
|
|
@@ -839,7 +839,7 @@ def open(
|
|
|
839
839
|
"""
|
|
840
840
|
|
|
841
841
|
def open_images(
|
|
842
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
842
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
843
843
|
execution_context: int | str | None = None,
|
|
844
844
|
undo: bool | None = None,
|
|
845
845
|
*,
|
|
@@ -852,7 +852,7 @@ def open_images(
|
|
|
852
852
|
):
|
|
853
853
|
"""Undocumented, consider contributing.
|
|
854
854
|
|
|
855
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
855
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
856
856
|
:type execution_context: int | str | None
|
|
857
857
|
:type undo: bool | None
|
|
858
858
|
:param directory: directory
|
|
@@ -868,79 +868,79 @@ def open_images(
|
|
|
868
868
|
"""
|
|
869
869
|
|
|
870
870
|
def pack(
|
|
871
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
871
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
872
872
|
execution_context: int | str | None = None,
|
|
873
873
|
undo: bool | None = None,
|
|
874
874
|
):
|
|
875
875
|
"""Pack an image as embedded data into the .blend file
|
|
876
876
|
|
|
877
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
877
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
878
878
|
:type execution_context: int | str | None
|
|
879
879
|
:type undo: bool | None
|
|
880
880
|
"""
|
|
881
881
|
|
|
882
882
|
def project_apply(
|
|
883
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
883
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
884
884
|
execution_context: int | str | None = None,
|
|
885
885
|
undo: bool | None = None,
|
|
886
886
|
):
|
|
887
887
|
"""Project edited image back onto the object
|
|
888
888
|
|
|
889
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
889
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
890
890
|
:type execution_context: int | str | None
|
|
891
891
|
:type undo: bool | None
|
|
892
892
|
"""
|
|
893
893
|
|
|
894
894
|
def project_edit(
|
|
895
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
895
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
896
896
|
execution_context: int | str | None = None,
|
|
897
897
|
undo: bool | None = None,
|
|
898
898
|
):
|
|
899
899
|
"""Edit a snapshot of the 3D Viewport in an external image editor
|
|
900
900
|
|
|
901
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
901
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
902
902
|
:type execution_context: int | str | None
|
|
903
903
|
:type undo: bool | None
|
|
904
904
|
"""
|
|
905
905
|
|
|
906
906
|
def read_viewlayers(
|
|
907
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
907
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
908
908
|
execution_context: int | str | None = None,
|
|
909
909
|
undo: bool | None = None,
|
|
910
910
|
):
|
|
911
911
|
"""Read all the current scene's view layers from cache, as needed
|
|
912
912
|
|
|
913
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
913
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
914
914
|
:type execution_context: int | str | None
|
|
915
915
|
:type undo: bool | None
|
|
916
916
|
"""
|
|
917
917
|
|
|
918
918
|
def reload(
|
|
919
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
919
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
920
920
|
execution_context: int | str | None = None,
|
|
921
921
|
undo: bool | None = None,
|
|
922
922
|
):
|
|
923
923
|
"""Reload current image from disk
|
|
924
924
|
|
|
925
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
925
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
926
926
|
:type execution_context: int | str | None
|
|
927
927
|
:type undo: bool | None
|
|
928
928
|
"""
|
|
929
929
|
|
|
930
930
|
def remove_render_slot(
|
|
931
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
931
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
932
932
|
execution_context: int | str | None = None,
|
|
933
933
|
undo: bool | None = None,
|
|
934
934
|
):
|
|
935
935
|
"""Remove the current render slot
|
|
936
936
|
|
|
937
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
937
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
938
938
|
:type execution_context: int | str | None
|
|
939
939
|
:type undo: bool | None
|
|
940
940
|
"""
|
|
941
941
|
|
|
942
942
|
def render_border(
|
|
943
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
943
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
944
944
|
execution_context: int | str | None = None,
|
|
945
945
|
undo: bool | None = None,
|
|
946
946
|
*,
|
|
@@ -952,7 +952,7 @@ def render_border(
|
|
|
952
952
|
):
|
|
953
953
|
"""Set the boundaries of the render region and enable render region
|
|
954
954
|
|
|
955
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
955
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
956
956
|
:type execution_context: int | str | None
|
|
957
957
|
:type undo: bool | None
|
|
958
958
|
:param xmin: X Min
|
|
@@ -968,7 +968,7 @@ def render_border(
|
|
|
968
968
|
"""
|
|
969
969
|
|
|
970
970
|
def replace(
|
|
971
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
971
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
972
972
|
execution_context: int | str | None = None,
|
|
973
973
|
undo: bool | None = None,
|
|
974
974
|
*,
|
|
@@ -1004,7 +1004,7 @@ def replace(
|
|
|
1004
1004
|
):
|
|
1005
1005
|
"""Replace current image by another one from disk
|
|
1006
1006
|
|
|
1007
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1007
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1008
1008
|
:type execution_context: int | str | None
|
|
1009
1009
|
:type undo: bool | None
|
|
1010
1010
|
:param filepath: File Path, Path to file
|
|
@@ -1074,7 +1074,7 @@ def replace(
|
|
|
1074
1074
|
"""
|
|
1075
1075
|
|
|
1076
1076
|
def resize(
|
|
1077
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1077
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1078
1078
|
execution_context: int | str | None = None,
|
|
1079
1079
|
undo: bool | None = None,
|
|
1080
1080
|
*,
|
|
@@ -1082,7 +1082,7 @@ def resize(
|
|
|
1082
1082
|
):
|
|
1083
1083
|
"""Resize the image
|
|
1084
1084
|
|
|
1085
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1085
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1086
1086
|
:type execution_context: int | str | None
|
|
1087
1087
|
:type undo: bool | None
|
|
1088
1088
|
:param size: Size
|
|
@@ -1090,7 +1090,7 @@ def resize(
|
|
|
1090
1090
|
"""
|
|
1091
1091
|
|
|
1092
1092
|
def rotate_orthogonal(
|
|
1093
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1093
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1094
1094
|
execution_context: int | str | None = None,
|
|
1095
1095
|
undo: bool | None = None,
|
|
1096
1096
|
*,
|
|
@@ -1098,7 +1098,7 @@ def rotate_orthogonal(
|
|
|
1098
1098
|
):
|
|
1099
1099
|
"""Rotate the image
|
|
1100
1100
|
|
|
1101
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1101
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1102
1102
|
:type execution_context: int | str | None
|
|
1103
1103
|
:type undo: bool | None
|
|
1104
1104
|
:param degrees: Degrees, Amount of rotation in degrees (90, 180, 270)
|
|
@@ -1115,7 +1115,7 @@ def rotate_orthogonal(
|
|
|
1115
1115
|
"""
|
|
1116
1116
|
|
|
1117
1117
|
def sample(
|
|
1118
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1118
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1119
1119
|
execution_context: int | str | None = None,
|
|
1120
1120
|
undo: bool | None = None,
|
|
1121
1121
|
*,
|
|
@@ -1123,7 +1123,7 @@ def sample(
|
|
|
1123
1123
|
):
|
|
1124
1124
|
"""Use mouse to sample a color in current image
|
|
1125
1125
|
|
|
1126
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1126
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1127
1127
|
:type execution_context: int | str | None
|
|
1128
1128
|
:type undo: bool | None
|
|
1129
1129
|
:param size: Sample Size
|
|
@@ -1131,7 +1131,7 @@ def sample(
|
|
|
1131
1131
|
"""
|
|
1132
1132
|
|
|
1133
1133
|
def sample_line(
|
|
1134
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1134
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1135
1135
|
execution_context: int | str | None = None,
|
|
1136
1136
|
undo: bool | None = None,
|
|
1137
1137
|
*,
|
|
@@ -1144,7 +1144,7 @@ def sample_line(
|
|
|
1144
1144
|
):
|
|
1145
1145
|
"""Sample a line and show it in Scope panels
|
|
1146
1146
|
|
|
1147
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1147
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1148
1148
|
:type execution_context: int | str | None
|
|
1149
1149
|
:type undo: bool | None
|
|
1150
1150
|
:param xstart: X Start
|
|
@@ -1162,31 +1162,31 @@ def sample_line(
|
|
|
1162
1162
|
"""
|
|
1163
1163
|
|
|
1164
1164
|
def save(
|
|
1165
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1165
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1166
1166
|
execution_context: int | str | None = None,
|
|
1167
1167
|
undo: bool | None = None,
|
|
1168
1168
|
):
|
|
1169
1169
|
"""Save the image with current name and settings
|
|
1170
1170
|
|
|
1171
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1171
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1172
1172
|
:type execution_context: int | str | None
|
|
1173
1173
|
:type undo: bool | None
|
|
1174
1174
|
"""
|
|
1175
1175
|
|
|
1176
1176
|
def save_all_modified(
|
|
1177
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1177
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1178
1178
|
execution_context: int | str | None = None,
|
|
1179
1179
|
undo: bool | None = None,
|
|
1180
1180
|
):
|
|
1181
1181
|
"""Save all modified images
|
|
1182
1182
|
|
|
1183
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1183
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1184
1184
|
:type execution_context: int | str | None
|
|
1185
1185
|
:type undo: bool | None
|
|
1186
1186
|
"""
|
|
1187
1187
|
|
|
1188
1188
|
def save_as(
|
|
1189
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1189
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1190
1190
|
execution_context: int | str | None = None,
|
|
1191
1191
|
undo: bool | None = None,
|
|
1192
1192
|
*,
|
|
@@ -1224,7 +1224,7 @@ def save_as(
|
|
|
1224
1224
|
):
|
|
1225
1225
|
"""Save the image with another name and/or settings
|
|
1226
1226
|
|
|
1227
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1227
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1228
1228
|
:type execution_context: int | str | None
|
|
1229
1229
|
:type undo: bool | None
|
|
1230
1230
|
:param save_as_render: Save As Render, Save image with render color management.For display image formats like PNG, apply view and display transform.For intermediate image formats like OpenEXR, use the default render output color space
|
|
@@ -1298,19 +1298,19 @@ def save_as(
|
|
|
1298
1298
|
"""
|
|
1299
1299
|
|
|
1300
1300
|
def save_sequence(
|
|
1301
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1301
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1302
1302
|
execution_context: int | str | None = None,
|
|
1303
1303
|
undo: bool | None = None,
|
|
1304
1304
|
):
|
|
1305
1305
|
"""Save a sequence of images
|
|
1306
1306
|
|
|
1307
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1307
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1308
1308
|
:type execution_context: int | str | None
|
|
1309
1309
|
:type undo: bool | None
|
|
1310
1310
|
"""
|
|
1311
1311
|
|
|
1312
1312
|
def tile_add(
|
|
1313
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1313
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1314
1314
|
execution_context: int | str | None = None,
|
|
1315
1315
|
undo: bool | None = None,
|
|
1316
1316
|
*,
|
|
@@ -1327,7 +1327,7 @@ def tile_add(
|
|
|
1327
1327
|
):
|
|
1328
1328
|
"""Adds a tile to the image
|
|
1329
1329
|
|
|
1330
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1330
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1331
1331
|
:type execution_context: int | str | None
|
|
1332
1332
|
:type undo: bool | None
|
|
1333
1333
|
:param number: Number, UDIM number of the tile
|
|
@@ -1353,7 +1353,7 @@ def tile_add(
|
|
|
1353
1353
|
"""
|
|
1354
1354
|
|
|
1355
1355
|
def tile_fill(
|
|
1356
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1356
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1357
1357
|
execution_context: int | str | None = None,
|
|
1358
1358
|
undo: bool | None = None,
|
|
1359
1359
|
*,
|
|
@@ -1366,7 +1366,7 @@ def tile_fill(
|
|
|
1366
1366
|
):
|
|
1367
1367
|
"""Fill the current tile with a generated image
|
|
1368
1368
|
|
|
1369
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1369
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1370
1370
|
:type execution_context: int | str | None
|
|
1371
1371
|
:type undo: bool | None
|
|
1372
1372
|
:param color: Color, Default fill color
|
|
@@ -1384,19 +1384,19 @@ def tile_fill(
|
|
|
1384
1384
|
"""
|
|
1385
1385
|
|
|
1386
1386
|
def tile_remove(
|
|
1387
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1387
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1388
1388
|
execution_context: int | str | None = None,
|
|
1389
1389
|
undo: bool | None = None,
|
|
1390
1390
|
):
|
|
1391
1391
|
"""Removes a tile from the image
|
|
1392
1392
|
|
|
1393
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1393
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1394
1394
|
:type execution_context: int | str | None
|
|
1395
1395
|
:type undo: bool | None
|
|
1396
1396
|
"""
|
|
1397
1397
|
|
|
1398
1398
|
def unpack(
|
|
1399
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1399
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1400
1400
|
execution_context: int | str | None = None,
|
|
1401
1401
|
undo: bool | None = None,
|
|
1402
1402
|
*,
|
|
@@ -1405,7 +1405,7 @@ def unpack(
|
|
|
1405
1405
|
):
|
|
1406
1406
|
"""Save an image packed in the .blend file to disk
|
|
1407
1407
|
|
|
1408
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1408
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1409
1409
|
:type execution_context: int | str | None
|
|
1410
1410
|
:type undo: bool | None
|
|
1411
1411
|
:param method: Method, How to unpack
|
|
@@ -1415,7 +1415,7 @@ def unpack(
|
|
|
1415
1415
|
"""
|
|
1416
1416
|
|
|
1417
1417
|
def view_all(
|
|
1418
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1418
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1419
1419
|
execution_context: int | str | None = None,
|
|
1420
1420
|
undo: bool | None = None,
|
|
1421
1421
|
*,
|
|
@@ -1423,7 +1423,7 @@ def view_all(
|
|
|
1423
1423
|
):
|
|
1424
1424
|
"""View the entire image
|
|
1425
1425
|
|
|
1426
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1426
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1427
1427
|
:type execution_context: int | str | None
|
|
1428
1428
|
:type undo: bool | None
|
|
1429
1429
|
:param fit_view: Fit View, Fit frame to the viewport
|
|
@@ -1431,19 +1431,19 @@ def view_all(
|
|
|
1431
1431
|
"""
|
|
1432
1432
|
|
|
1433
1433
|
def view_center_cursor(
|
|
1434
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1434
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1435
1435
|
execution_context: int | str | None = None,
|
|
1436
1436
|
undo: bool | None = None,
|
|
1437
1437
|
):
|
|
1438
1438
|
"""Center the view so that the cursor is in the middle of the view
|
|
1439
1439
|
|
|
1440
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1440
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1441
1441
|
:type execution_context: int | str | None
|
|
1442
1442
|
:type undo: bool | None
|
|
1443
1443
|
"""
|
|
1444
1444
|
|
|
1445
1445
|
def view_cursor_center(
|
|
1446
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1446
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1447
1447
|
execution_context: int | str | None = None,
|
|
1448
1448
|
undo: bool | None = None,
|
|
1449
1449
|
*,
|
|
@@ -1451,7 +1451,7 @@ def view_cursor_center(
|
|
|
1451
1451
|
):
|
|
1452
1452
|
"""Set 2D Cursor To Center View location
|
|
1453
1453
|
|
|
1454
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1454
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1455
1455
|
:type execution_context: int | str | None
|
|
1456
1456
|
:type undo: bool | None
|
|
1457
1457
|
:param fit_view: Fit View, Fit frame to the viewport
|
|
@@ -1459,19 +1459,19 @@ def view_cursor_center(
|
|
|
1459
1459
|
"""
|
|
1460
1460
|
|
|
1461
1461
|
def view_ndof(
|
|
1462
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1462
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1463
1463
|
execution_context: int | str | None = None,
|
|
1464
1464
|
undo: bool | None = None,
|
|
1465
1465
|
):
|
|
1466
1466
|
"""Use a 3D mouse device to pan/zoom the view
|
|
1467
1467
|
|
|
1468
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1468
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1469
1469
|
:type execution_context: int | str | None
|
|
1470
1470
|
:type undo: bool | None
|
|
1471
1471
|
"""
|
|
1472
1472
|
|
|
1473
1473
|
def view_pan(
|
|
1474
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1474
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1475
1475
|
execution_context: int | str | None = None,
|
|
1476
1476
|
undo: bool | None = None,
|
|
1477
1477
|
*,
|
|
@@ -1479,7 +1479,7 @@ def view_pan(
|
|
|
1479
1479
|
):
|
|
1480
1480
|
"""Pan the view
|
|
1481
1481
|
|
|
1482
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1482
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1483
1483
|
:type execution_context: int | str | None
|
|
1484
1484
|
:type undo: bool | None
|
|
1485
1485
|
:param offset: Offset, Offset in floating-point units, 1.0 is the width and height of the image
|
|
@@ -1487,19 +1487,19 @@ def view_pan(
|
|
|
1487
1487
|
"""
|
|
1488
1488
|
|
|
1489
1489
|
def view_selected(
|
|
1490
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1490
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1491
1491
|
execution_context: int | str | None = None,
|
|
1492
1492
|
undo: bool | None = None,
|
|
1493
1493
|
):
|
|
1494
1494
|
"""View all selected UVs
|
|
1495
1495
|
|
|
1496
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1496
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1497
1497
|
:type execution_context: int | str | None
|
|
1498
1498
|
:type undo: bool | None
|
|
1499
1499
|
"""
|
|
1500
1500
|
|
|
1501
1501
|
def view_zoom(
|
|
1502
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1502
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1503
1503
|
execution_context: int | str | None = None,
|
|
1504
1504
|
undo: bool | None = None,
|
|
1505
1505
|
*,
|
|
@@ -1508,7 +1508,7 @@ def view_zoom(
|
|
|
1508
1508
|
):
|
|
1509
1509
|
"""Zoom in/out the image
|
|
1510
1510
|
|
|
1511
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1511
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1512
1512
|
:type execution_context: int | str | None
|
|
1513
1513
|
:type undo: bool | None
|
|
1514
1514
|
:param factor: Factor, Zoom factor, values higher than 1.0 zoom in, lower values zoom out
|
|
@@ -1518,7 +1518,7 @@ def view_zoom(
|
|
|
1518
1518
|
"""
|
|
1519
1519
|
|
|
1520
1520
|
def view_zoom_border(
|
|
1521
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1521
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1522
1522
|
execution_context: int | str | None = None,
|
|
1523
1523
|
undo: bool | None = None,
|
|
1524
1524
|
*,
|
|
@@ -1531,7 +1531,7 @@ def view_zoom_border(
|
|
|
1531
1531
|
):
|
|
1532
1532
|
"""Zoom in the view to the nearest item contained in the border
|
|
1533
1533
|
|
|
1534
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1534
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1535
1535
|
:type execution_context: int | str | None
|
|
1536
1536
|
:type undo: bool | None
|
|
1537
1537
|
:param xmin: X Min
|
|
@@ -1549,7 +1549,7 @@ def view_zoom_border(
|
|
|
1549
1549
|
"""
|
|
1550
1550
|
|
|
1551
1551
|
def view_zoom_in(
|
|
1552
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1552
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1553
1553
|
execution_context: int | str | None = None,
|
|
1554
1554
|
undo: bool | None = None,
|
|
1555
1555
|
*,
|
|
@@ -1557,7 +1557,7 @@ def view_zoom_in(
|
|
|
1557
1557
|
):
|
|
1558
1558
|
"""Zoom in the image (centered around 2D cursor)
|
|
1559
1559
|
|
|
1560
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1560
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1561
1561
|
:type execution_context: int | str | None
|
|
1562
1562
|
:type undo: bool | None
|
|
1563
1563
|
:param location: Location, Cursor location in screen coordinates
|
|
@@ -1565,7 +1565,7 @@ def view_zoom_in(
|
|
|
1565
1565
|
"""
|
|
1566
1566
|
|
|
1567
1567
|
def view_zoom_out(
|
|
1568
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1568
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1569
1569
|
execution_context: int | str | None = None,
|
|
1570
1570
|
undo: bool | None = None,
|
|
1571
1571
|
*,
|
|
@@ -1573,7 +1573,7 @@ def view_zoom_out(
|
|
|
1573
1573
|
):
|
|
1574
1574
|
"""Zoom out the image (centered around 2D cursor)
|
|
1575
1575
|
|
|
1576
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1576
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1577
1577
|
:type execution_context: int | str | None
|
|
1578
1578
|
:type undo: bool | None
|
|
1579
1579
|
:param location: Location, Cursor location in screen coordinates
|
|
@@ -1581,7 +1581,7 @@ def view_zoom_out(
|
|
|
1581
1581
|
"""
|
|
1582
1582
|
|
|
1583
1583
|
def view_zoom_ratio(
|
|
1584
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1584
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1585
1585
|
execution_context: int | str | None = None,
|
|
1586
1586
|
undo: bool | None = None,
|
|
1587
1587
|
*,
|
|
@@ -1589,7 +1589,7 @@ def view_zoom_ratio(
|
|
|
1589
1589
|
):
|
|
1590
1590
|
"""Set zoom ratio of the view
|
|
1591
1591
|
|
|
1592
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1592
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1593
1593
|
:type execution_context: int | str | None
|
|
1594
1594
|
:type undo: bool | None
|
|
1595
1595
|
:param ratio: Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out
|