fake-bpy-module 20240812__py3-none-any.whl → 20240813__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/space_view3d/__init__.pyi +31 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +110 -110
- 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 +166 -166
- 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 +208 -208
- bpy/ops/object/__init__.pyi +473 -473
- 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 +72 -72
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +174 -174
- 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 +64 -64
- 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 +226 -226
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +44 -34
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/RECORD +83 -83
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/top_level.txt +0 -0
bpy/ops/image/__init__.pyi
CHANGED
|
@@ -8,13 +8,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
8
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
9
|
|
|
10
10
|
def add_render_slot(
|
|
11
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
11
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
12
12
|
execution_context: int | str | None = None,
|
|
13
13
|
undo: bool | None = None,
|
|
14
14
|
):
|
|
15
15
|
"""Add a new render slot
|
|
16
16
|
|
|
17
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
18
18
|
:type execution_context: int | str | None
|
|
19
19
|
:type undo: bool | None
|
|
20
20
|
"""
|
|
@@ -22,7 +22,7 @@ def add_render_slot(
|
|
|
22
22
|
...
|
|
23
23
|
|
|
24
24
|
def change_frame(
|
|
25
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
25
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
26
26
|
execution_context: int | str | None = None,
|
|
27
27
|
undo: bool | None = None,
|
|
28
28
|
*,
|
|
@@ -30,7 +30,7 @@ def change_frame(
|
|
|
30
30
|
):
|
|
31
31
|
"""Interactively change the current frame number
|
|
32
32
|
|
|
33
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
33
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
34
34
|
:type execution_context: int | str | None
|
|
35
35
|
:type undo: bool | None
|
|
36
36
|
:param frame: Frame
|
|
@@ -40,13 +40,13 @@ def change_frame(
|
|
|
40
40
|
...
|
|
41
41
|
|
|
42
42
|
def clear_render_border(
|
|
43
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
43
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
44
44
|
execution_context: int | str | None = None,
|
|
45
45
|
undo: bool | None = None,
|
|
46
46
|
):
|
|
47
47
|
"""Clear the boundaries of the render region and disable render region
|
|
48
48
|
|
|
49
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
49
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
50
50
|
:type execution_context: int | str | None
|
|
51
51
|
:type undo: bool | None
|
|
52
52
|
"""
|
|
@@ -54,13 +54,13 @@ def clear_render_border(
|
|
|
54
54
|
...
|
|
55
55
|
|
|
56
56
|
def clear_render_slot(
|
|
57
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
57
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
58
58
|
execution_context: int | str | None = None,
|
|
59
59
|
undo: bool | None = None,
|
|
60
60
|
):
|
|
61
61
|
"""Clear the currently selected render slot
|
|
62
62
|
|
|
63
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
63
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
64
64
|
:type execution_context: int | str | None
|
|
65
65
|
:type undo: bool | None
|
|
66
66
|
"""
|
|
@@ -68,13 +68,13 @@ def clear_render_slot(
|
|
|
68
68
|
...
|
|
69
69
|
|
|
70
70
|
def clipboard_copy(
|
|
71
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
71
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
72
72
|
execution_context: int | str | None = None,
|
|
73
73
|
undo: bool | None = None,
|
|
74
74
|
):
|
|
75
75
|
"""Copy the image to the clipboard
|
|
76
76
|
|
|
77
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
77
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
78
78
|
:type execution_context: int | str | None
|
|
79
79
|
:type undo: bool | None
|
|
80
80
|
"""
|
|
@@ -82,13 +82,13 @@ def clipboard_copy(
|
|
|
82
82
|
...
|
|
83
83
|
|
|
84
84
|
def clipboard_paste(
|
|
85
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
85
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
86
86
|
execution_context: int | str | None = None,
|
|
87
87
|
undo: bool | None = None,
|
|
88
88
|
):
|
|
89
89
|
"""Paste new image from the clipboard
|
|
90
90
|
|
|
91
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
91
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
92
92
|
:type execution_context: int | str | None
|
|
93
93
|
:type undo: bool | None
|
|
94
94
|
"""
|
|
@@ -96,7 +96,7 @@ def clipboard_paste(
|
|
|
96
96
|
...
|
|
97
97
|
|
|
98
98
|
def convert_to_mesh_plane(
|
|
99
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
99
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
100
100
|
execution_context: int | str | None = None,
|
|
101
101
|
undo: bool | None = None,
|
|
102
102
|
*,
|
|
@@ -119,7 +119,7 @@ def convert_to_mesh_plane(
|
|
|
119
119
|
):
|
|
120
120
|
"""Convert selected reference images to textured mesh plane
|
|
121
121
|
|
|
122
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
122
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
123
123
|
:type execution_context: int | str | None
|
|
124
124
|
:type undo: bool | None
|
|
125
125
|
:param interpolation: Interpolation, Texture interpolation
|
|
@@ -209,7 +209,7 @@ def convert_to_mesh_plane(
|
|
|
209
209
|
...
|
|
210
210
|
|
|
211
211
|
def curves_point_set(
|
|
212
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
212
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
213
213
|
execution_context: int | str | None = None,
|
|
214
214
|
undo: bool | None = None,
|
|
215
215
|
*,
|
|
@@ -218,7 +218,7 @@ def curves_point_set(
|
|
|
218
218
|
):
|
|
219
219
|
"""Set black point or white point for curves
|
|
220
220
|
|
|
221
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
221
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
222
222
|
:type execution_context: int | str | None
|
|
223
223
|
:type undo: bool | None
|
|
224
224
|
:param point: Point, Set black point or white point for curves
|
|
@@ -230,7 +230,7 @@ def curves_point_set(
|
|
|
230
230
|
...
|
|
231
231
|
|
|
232
232
|
def cycle_render_slot(
|
|
233
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
233
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
234
234
|
execution_context: int | str | None = None,
|
|
235
235
|
undo: bool | None = None,
|
|
236
236
|
*,
|
|
@@ -238,7 +238,7 @@ def cycle_render_slot(
|
|
|
238
238
|
):
|
|
239
239
|
"""Cycle through all non-void render slots
|
|
240
240
|
|
|
241
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
241
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
242
242
|
:type execution_context: int | str | None
|
|
243
243
|
:type undo: bool | None
|
|
244
244
|
:param reverse: Cycle in Reverse
|
|
@@ -248,7 +248,7 @@ def cycle_render_slot(
|
|
|
248
248
|
...
|
|
249
249
|
|
|
250
250
|
def external_edit(
|
|
251
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
251
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
252
252
|
execution_context: int | str | None = None,
|
|
253
253
|
undo: bool | None = None,
|
|
254
254
|
*,
|
|
@@ -256,7 +256,7 @@ def external_edit(
|
|
|
256
256
|
):
|
|
257
257
|
"""Edit image in an external application
|
|
258
258
|
|
|
259
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
259
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
260
260
|
:type execution_context: int | str | None
|
|
261
261
|
:type undo: bool | None
|
|
262
262
|
:param filepath: filepath
|
|
@@ -266,7 +266,7 @@ def external_edit(
|
|
|
266
266
|
...
|
|
267
267
|
|
|
268
268
|
def file_browse(
|
|
269
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
269
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
270
270
|
execution_context: int | str | None = None,
|
|
271
271
|
undo: bool | None = None,
|
|
272
272
|
*,
|
|
@@ -302,7 +302,7 @@ def file_browse(
|
|
|
302
302
|
):
|
|
303
303
|
"""Open an image file browser, hold Shift to open the file, Alt to browse containing directory
|
|
304
304
|
|
|
305
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
305
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
306
306
|
:type execution_context: int | str | None
|
|
307
307
|
:type undo: bool | None
|
|
308
308
|
:param filepath: File Path, Path to file
|
|
@@ -374,7 +374,7 @@ def file_browse(
|
|
|
374
374
|
...
|
|
375
375
|
|
|
376
376
|
def flip(
|
|
377
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
377
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
378
378
|
execution_context: int | str | None = None,
|
|
379
379
|
undo: bool | None = None,
|
|
380
380
|
*,
|
|
@@ -383,7 +383,7 @@ def flip(
|
|
|
383
383
|
):
|
|
384
384
|
"""Flip the image
|
|
385
385
|
|
|
386
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
386
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
387
387
|
:type execution_context: int | str | None
|
|
388
388
|
:type undo: bool | None
|
|
389
389
|
:param use_flip_x: Horizontal, Flip the image horizontally
|
|
@@ -395,7 +395,7 @@ def flip(
|
|
|
395
395
|
...
|
|
396
396
|
|
|
397
397
|
def import_as_mesh_planes(
|
|
398
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
398
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
399
399
|
execution_context: int | str | None = None,
|
|
400
400
|
undo: bool | None = None,
|
|
401
401
|
*,
|
|
@@ -450,7 +450,7 @@ def import_as_mesh_planes(
|
|
|
450
450
|
):
|
|
451
451
|
"""Create mesh plane(s) from image files with the appropriate aspect ratio
|
|
452
452
|
|
|
453
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
453
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
454
454
|
:type execution_context: int | str | None
|
|
455
455
|
:type undo: bool | None
|
|
456
456
|
:param interpolation: Interpolation, Texture interpolation
|
|
@@ -668,7 +668,7 @@ def import_as_mesh_planes(
|
|
|
668
668
|
...
|
|
669
669
|
|
|
670
670
|
def invert(
|
|
671
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
671
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
672
672
|
execution_context: int | str | None = None,
|
|
673
673
|
undo: bool | None = None,
|
|
674
674
|
*,
|
|
@@ -679,7 +679,7 @@ def invert(
|
|
|
679
679
|
):
|
|
680
680
|
"""Invert image's channels
|
|
681
681
|
|
|
682
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
682
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
683
683
|
:type execution_context: int | str | None
|
|
684
684
|
:type undo: bool | None
|
|
685
685
|
:param invert_r: Red, Invert red channel
|
|
@@ -695,13 +695,13 @@ def invert(
|
|
|
695
695
|
...
|
|
696
696
|
|
|
697
697
|
def match_movie_length(
|
|
698
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
698
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
699
699
|
execution_context: int | str | None = None,
|
|
700
700
|
undo: bool | None = None,
|
|
701
701
|
):
|
|
702
702
|
"""Set image's user's length to the one of this video
|
|
703
703
|
|
|
704
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
704
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
705
705
|
:type execution_context: int | str | None
|
|
706
706
|
:type undo: bool | None
|
|
707
707
|
"""
|
|
@@ -709,7 +709,7 @@ def match_movie_length(
|
|
|
709
709
|
...
|
|
710
710
|
|
|
711
711
|
def new(
|
|
712
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
712
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
713
713
|
execution_context: int | str | None = None,
|
|
714
714
|
undo: bool | None = None,
|
|
715
715
|
*,
|
|
@@ -725,7 +725,7 @@ def new(
|
|
|
725
725
|
):
|
|
726
726
|
"""Create a new image
|
|
727
727
|
|
|
728
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
728
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
729
729
|
:type execution_context: int | str | None
|
|
730
730
|
:type undo: bool | None
|
|
731
731
|
:param name: Name, Image data-block name
|
|
@@ -751,7 +751,7 @@ def new(
|
|
|
751
751
|
...
|
|
752
752
|
|
|
753
753
|
def open(
|
|
754
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
754
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
755
755
|
execution_context: int | str | None = None,
|
|
756
756
|
undo: bool | None = None,
|
|
757
757
|
*,
|
|
@@ -793,7 +793,7 @@ def open(
|
|
|
793
793
|
):
|
|
794
794
|
"""Open image
|
|
795
795
|
|
|
796
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
796
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
797
797
|
:type execution_context: int | str | None
|
|
798
798
|
:type undo: bool | None
|
|
799
799
|
:param allow_path_tokens: Allow the path to contain substitution tokens
|
|
@@ -875,7 +875,7 @@ def open(
|
|
|
875
875
|
...
|
|
876
876
|
|
|
877
877
|
def open_images(
|
|
878
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
878
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
879
879
|
execution_context: int | str | None = None,
|
|
880
880
|
undo: bool | None = None,
|
|
881
881
|
*,
|
|
@@ -888,7 +888,7 @@ def open_images(
|
|
|
888
888
|
):
|
|
889
889
|
"""Undocumented, consider contributing.
|
|
890
890
|
|
|
891
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
891
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
892
892
|
:type execution_context: int | str | None
|
|
893
893
|
:type undo: bool | None
|
|
894
894
|
:param directory: directory
|
|
@@ -906,13 +906,13 @@ def open_images(
|
|
|
906
906
|
...
|
|
907
907
|
|
|
908
908
|
def pack(
|
|
909
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
909
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
910
910
|
execution_context: int | str | None = None,
|
|
911
911
|
undo: bool | None = None,
|
|
912
912
|
):
|
|
913
913
|
"""Pack an image as embedded data into the .blend file
|
|
914
914
|
|
|
915
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
915
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
916
916
|
:type execution_context: int | str | None
|
|
917
917
|
:type undo: bool | None
|
|
918
918
|
"""
|
|
@@ -920,13 +920,13 @@ def pack(
|
|
|
920
920
|
...
|
|
921
921
|
|
|
922
922
|
def project_apply(
|
|
923
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
923
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
924
924
|
execution_context: int | str | None = None,
|
|
925
925
|
undo: bool | None = None,
|
|
926
926
|
):
|
|
927
927
|
"""Project edited image back onto the object
|
|
928
928
|
|
|
929
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
929
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
930
930
|
:type execution_context: int | str | None
|
|
931
931
|
:type undo: bool | None
|
|
932
932
|
"""
|
|
@@ -934,13 +934,13 @@ def project_apply(
|
|
|
934
934
|
...
|
|
935
935
|
|
|
936
936
|
def project_edit(
|
|
937
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
937
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
938
938
|
execution_context: int | str | None = None,
|
|
939
939
|
undo: bool | None = None,
|
|
940
940
|
):
|
|
941
941
|
"""Edit a snapshot of the 3D Viewport in an external image editor
|
|
942
942
|
|
|
943
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
943
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
944
944
|
:type execution_context: int | str | None
|
|
945
945
|
:type undo: bool | None
|
|
946
946
|
"""
|
|
@@ -948,13 +948,13 @@ def project_edit(
|
|
|
948
948
|
...
|
|
949
949
|
|
|
950
950
|
def read_viewlayers(
|
|
951
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
951
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
952
952
|
execution_context: int | str | None = None,
|
|
953
953
|
undo: bool | None = None,
|
|
954
954
|
):
|
|
955
955
|
"""Read all the current scene's view layers from cache, as needed
|
|
956
956
|
|
|
957
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
957
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
958
958
|
:type execution_context: int | str | None
|
|
959
959
|
:type undo: bool | None
|
|
960
960
|
"""
|
|
@@ -962,13 +962,13 @@ def read_viewlayers(
|
|
|
962
962
|
...
|
|
963
963
|
|
|
964
964
|
def reload(
|
|
965
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
965
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
966
966
|
execution_context: int | str | None = None,
|
|
967
967
|
undo: bool | None = None,
|
|
968
968
|
):
|
|
969
969
|
"""Reload current image from disk
|
|
970
970
|
|
|
971
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
971
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
972
972
|
:type execution_context: int | str | None
|
|
973
973
|
:type undo: bool | None
|
|
974
974
|
"""
|
|
@@ -976,13 +976,13 @@ def reload(
|
|
|
976
976
|
...
|
|
977
977
|
|
|
978
978
|
def remove_render_slot(
|
|
979
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
979
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
980
980
|
execution_context: int | str | None = None,
|
|
981
981
|
undo: bool | None = None,
|
|
982
982
|
):
|
|
983
983
|
"""Remove the current render slot
|
|
984
984
|
|
|
985
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
985
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
986
986
|
:type execution_context: int | str | None
|
|
987
987
|
:type undo: bool | None
|
|
988
988
|
"""
|
|
@@ -990,7 +990,7 @@ def remove_render_slot(
|
|
|
990
990
|
...
|
|
991
991
|
|
|
992
992
|
def render_border(
|
|
993
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
993
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
994
994
|
execution_context: int | str | None = None,
|
|
995
995
|
undo: bool | None = None,
|
|
996
996
|
*,
|
|
@@ -1002,7 +1002,7 @@ def render_border(
|
|
|
1002
1002
|
):
|
|
1003
1003
|
"""Set the boundaries of the render region and enable render region
|
|
1004
1004
|
|
|
1005
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1005
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1006
1006
|
:type execution_context: int | str | None
|
|
1007
1007
|
:type undo: bool | None
|
|
1008
1008
|
:param xmin: X Min
|
|
@@ -1020,7 +1020,7 @@ def render_border(
|
|
|
1020
1020
|
...
|
|
1021
1021
|
|
|
1022
1022
|
def replace(
|
|
1023
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1023
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1024
1024
|
execution_context: int | str | None = None,
|
|
1025
1025
|
undo: bool | None = None,
|
|
1026
1026
|
*,
|
|
@@ -1056,7 +1056,7 @@ def replace(
|
|
|
1056
1056
|
):
|
|
1057
1057
|
"""Replace current image by another one from disk
|
|
1058
1058
|
|
|
1059
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1059
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1060
1060
|
:type execution_context: int | str | None
|
|
1061
1061
|
:type undo: bool | None
|
|
1062
1062
|
:param filepath: File Path, Path to file
|
|
@@ -1128,7 +1128,7 @@ def replace(
|
|
|
1128
1128
|
...
|
|
1129
1129
|
|
|
1130
1130
|
def resize(
|
|
1131
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1131
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1132
1132
|
execution_context: int | str | None = None,
|
|
1133
1133
|
undo: bool | None = None,
|
|
1134
1134
|
*,
|
|
@@ -1136,7 +1136,7 @@ def resize(
|
|
|
1136
1136
|
):
|
|
1137
1137
|
"""Resize the image
|
|
1138
1138
|
|
|
1139
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1139
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1140
1140
|
:type execution_context: int | str | None
|
|
1141
1141
|
:type undo: bool | None
|
|
1142
1142
|
:param size: Size
|
|
@@ -1146,7 +1146,7 @@ def resize(
|
|
|
1146
1146
|
...
|
|
1147
1147
|
|
|
1148
1148
|
def rotate_orthogonal(
|
|
1149
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1149
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1150
1150
|
execution_context: int | str | None = None,
|
|
1151
1151
|
undo: bool | None = None,
|
|
1152
1152
|
*,
|
|
@@ -1154,7 +1154,7 @@ def rotate_orthogonal(
|
|
|
1154
1154
|
):
|
|
1155
1155
|
"""Rotate the image
|
|
1156
1156
|
|
|
1157
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1157
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1158
1158
|
:type execution_context: int | str | None
|
|
1159
1159
|
:type undo: bool | None
|
|
1160
1160
|
:param degrees: Degrees, Amount of rotation in degrees (90, 180, 270)
|
|
@@ -1173,7 +1173,7 @@ def rotate_orthogonal(
|
|
|
1173
1173
|
...
|
|
1174
1174
|
|
|
1175
1175
|
def sample(
|
|
1176
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1176
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1177
1177
|
execution_context: int | str | None = None,
|
|
1178
1178
|
undo: bool | None = None,
|
|
1179
1179
|
*,
|
|
@@ -1181,7 +1181,7 @@ def sample(
|
|
|
1181
1181
|
):
|
|
1182
1182
|
"""Use mouse to sample a color in current image
|
|
1183
1183
|
|
|
1184
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1184
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1185
1185
|
:type execution_context: int | str | None
|
|
1186
1186
|
:type undo: bool | None
|
|
1187
1187
|
:param size: Sample Size
|
|
@@ -1191,7 +1191,7 @@ def sample(
|
|
|
1191
1191
|
...
|
|
1192
1192
|
|
|
1193
1193
|
def sample_line(
|
|
1194
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1194
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1195
1195
|
execution_context: int | str | None = None,
|
|
1196
1196
|
undo: bool | None = None,
|
|
1197
1197
|
*,
|
|
@@ -1204,7 +1204,7 @@ def sample_line(
|
|
|
1204
1204
|
):
|
|
1205
1205
|
"""Sample a line and show it in Scope panels
|
|
1206
1206
|
|
|
1207
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1207
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1208
1208
|
:type execution_context: int | str | None
|
|
1209
1209
|
:type undo: bool | None
|
|
1210
1210
|
:param xstart: X Start
|
|
@@ -1224,13 +1224,13 @@ def sample_line(
|
|
|
1224
1224
|
...
|
|
1225
1225
|
|
|
1226
1226
|
def save(
|
|
1227
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1227
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1228
1228
|
execution_context: int | str | None = None,
|
|
1229
1229
|
undo: bool | None = None,
|
|
1230
1230
|
):
|
|
1231
1231
|
"""Save the image with current name and settings
|
|
1232
1232
|
|
|
1233
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1233
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1234
1234
|
:type execution_context: int | str | None
|
|
1235
1235
|
:type undo: bool | None
|
|
1236
1236
|
"""
|
|
@@ -1238,13 +1238,13 @@ def save(
|
|
|
1238
1238
|
...
|
|
1239
1239
|
|
|
1240
1240
|
def save_all_modified(
|
|
1241
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1241
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1242
1242
|
execution_context: int | str | None = None,
|
|
1243
1243
|
undo: bool | None = None,
|
|
1244
1244
|
):
|
|
1245
1245
|
"""Save all modified images
|
|
1246
1246
|
|
|
1247
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1247
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1248
1248
|
:type execution_context: int | str | None
|
|
1249
1249
|
:type undo: bool | None
|
|
1250
1250
|
"""
|
|
@@ -1252,7 +1252,7 @@ def save_all_modified(
|
|
|
1252
1252
|
...
|
|
1253
1253
|
|
|
1254
1254
|
def save_as(
|
|
1255
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1255
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1256
1256
|
execution_context: int | str | None = None,
|
|
1257
1257
|
undo: bool | None = None,
|
|
1258
1258
|
*,
|
|
@@ -1290,7 +1290,7 @@ def save_as(
|
|
|
1290
1290
|
):
|
|
1291
1291
|
"""Save the image with another name and/or settings
|
|
1292
1292
|
|
|
1293
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1293
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1294
1294
|
:type execution_context: int | str | None
|
|
1295
1295
|
:type undo: bool | None
|
|
1296
1296
|
: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
|
|
@@ -1366,13 +1366,13 @@ def save_as(
|
|
|
1366
1366
|
...
|
|
1367
1367
|
|
|
1368
1368
|
def save_sequence(
|
|
1369
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1369
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1370
1370
|
execution_context: int | str | None = None,
|
|
1371
1371
|
undo: bool | None = None,
|
|
1372
1372
|
):
|
|
1373
1373
|
"""Save a sequence of images
|
|
1374
1374
|
|
|
1375
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1375
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1376
1376
|
:type execution_context: int | str | None
|
|
1377
1377
|
:type undo: bool | None
|
|
1378
1378
|
"""
|
|
@@ -1380,7 +1380,7 @@ def save_sequence(
|
|
|
1380
1380
|
...
|
|
1381
1381
|
|
|
1382
1382
|
def tile_add(
|
|
1383
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1383
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1384
1384
|
execution_context: int | str | None = None,
|
|
1385
1385
|
undo: bool | None = None,
|
|
1386
1386
|
*,
|
|
@@ -1397,7 +1397,7 @@ def tile_add(
|
|
|
1397
1397
|
):
|
|
1398
1398
|
"""Adds a tile to the image
|
|
1399
1399
|
|
|
1400
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1400
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1401
1401
|
:type execution_context: int | str | None
|
|
1402
1402
|
:type undo: bool | None
|
|
1403
1403
|
:param number: Number, UDIM number of the tile
|
|
@@ -1425,7 +1425,7 @@ def tile_add(
|
|
|
1425
1425
|
...
|
|
1426
1426
|
|
|
1427
1427
|
def tile_fill(
|
|
1428
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1428
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1429
1429
|
execution_context: int | str | None = None,
|
|
1430
1430
|
undo: bool | None = None,
|
|
1431
1431
|
*,
|
|
@@ -1438,7 +1438,7 @@ def tile_fill(
|
|
|
1438
1438
|
):
|
|
1439
1439
|
"""Fill the current tile with a generated image
|
|
1440
1440
|
|
|
1441
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1441
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1442
1442
|
:type execution_context: int | str | None
|
|
1443
1443
|
:type undo: bool | None
|
|
1444
1444
|
:param color: Color, Default fill color
|
|
@@ -1458,13 +1458,13 @@ def tile_fill(
|
|
|
1458
1458
|
...
|
|
1459
1459
|
|
|
1460
1460
|
def tile_remove(
|
|
1461
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1461
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1462
1462
|
execution_context: int | str | None = None,
|
|
1463
1463
|
undo: bool | None = None,
|
|
1464
1464
|
):
|
|
1465
1465
|
"""Removes a tile from the image
|
|
1466
1466
|
|
|
1467
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1467
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1468
1468
|
:type execution_context: int | str | None
|
|
1469
1469
|
:type undo: bool | None
|
|
1470
1470
|
"""
|
|
@@ -1472,7 +1472,7 @@ def tile_remove(
|
|
|
1472
1472
|
...
|
|
1473
1473
|
|
|
1474
1474
|
def unpack(
|
|
1475
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1475
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1476
1476
|
execution_context: int | str | None = None,
|
|
1477
1477
|
undo: bool | None = None,
|
|
1478
1478
|
*,
|
|
@@ -1484,7 +1484,7 @@ def unpack(
|
|
|
1484
1484
|
):
|
|
1485
1485
|
"""Save an image packed in the .blend file to disk
|
|
1486
1486
|
|
|
1487
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1487
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1488
1488
|
:type execution_context: int | str | None
|
|
1489
1489
|
:type undo: bool | None
|
|
1490
1490
|
:param method: Method, How to unpack
|
|
@@ -1496,7 +1496,7 @@ def unpack(
|
|
|
1496
1496
|
...
|
|
1497
1497
|
|
|
1498
1498
|
def view_all(
|
|
1499
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1499
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1500
1500
|
execution_context: int | str | None = None,
|
|
1501
1501
|
undo: bool | None = None,
|
|
1502
1502
|
*,
|
|
@@ -1504,7 +1504,7 @@ def view_all(
|
|
|
1504
1504
|
):
|
|
1505
1505
|
"""View the entire image
|
|
1506
1506
|
|
|
1507
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1507
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1508
1508
|
:type execution_context: int | str | None
|
|
1509
1509
|
:type undo: bool | None
|
|
1510
1510
|
:param fit_view: Fit View, Fit frame to the viewport
|
|
@@ -1514,13 +1514,13 @@ def view_all(
|
|
|
1514
1514
|
...
|
|
1515
1515
|
|
|
1516
1516
|
def view_center_cursor(
|
|
1517
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1517
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1518
1518
|
execution_context: int | str | None = None,
|
|
1519
1519
|
undo: bool | None = None,
|
|
1520
1520
|
):
|
|
1521
1521
|
"""Center the view so that the cursor is in the middle of the view
|
|
1522
1522
|
|
|
1523
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1523
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1524
1524
|
:type execution_context: int | str | None
|
|
1525
1525
|
:type undo: bool | None
|
|
1526
1526
|
"""
|
|
@@ -1528,7 +1528,7 @@ def view_center_cursor(
|
|
|
1528
1528
|
...
|
|
1529
1529
|
|
|
1530
1530
|
def view_cursor_center(
|
|
1531
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1531
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1532
1532
|
execution_context: int | str | None = None,
|
|
1533
1533
|
undo: bool | None = None,
|
|
1534
1534
|
*,
|
|
@@ -1536,7 +1536,7 @@ def view_cursor_center(
|
|
|
1536
1536
|
):
|
|
1537
1537
|
"""Set 2D Cursor To Center View location
|
|
1538
1538
|
|
|
1539
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1539
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1540
1540
|
:type execution_context: int | str | None
|
|
1541
1541
|
:type undo: bool | None
|
|
1542
1542
|
:param fit_view: Fit View, Fit frame to the viewport
|
|
@@ -1546,13 +1546,13 @@ def view_cursor_center(
|
|
|
1546
1546
|
...
|
|
1547
1547
|
|
|
1548
1548
|
def view_ndof(
|
|
1549
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1549
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1550
1550
|
execution_context: int | str | None = None,
|
|
1551
1551
|
undo: bool | None = None,
|
|
1552
1552
|
):
|
|
1553
1553
|
"""Use a 3D mouse device to pan/zoom the view
|
|
1554
1554
|
|
|
1555
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1555
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1556
1556
|
:type execution_context: int | str | None
|
|
1557
1557
|
:type undo: bool | None
|
|
1558
1558
|
"""
|
|
@@ -1560,7 +1560,7 @@ def view_ndof(
|
|
|
1560
1560
|
...
|
|
1561
1561
|
|
|
1562
1562
|
def view_pan(
|
|
1563
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1563
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1564
1564
|
execution_context: int | str | None = None,
|
|
1565
1565
|
undo: bool | None = None,
|
|
1566
1566
|
*,
|
|
@@ -1568,7 +1568,7 @@ def view_pan(
|
|
|
1568
1568
|
):
|
|
1569
1569
|
"""Pan the view
|
|
1570
1570
|
|
|
1571
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1571
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1572
1572
|
:type execution_context: int | str | None
|
|
1573
1573
|
:type undo: bool | None
|
|
1574
1574
|
:param offset: Offset, Offset in floating-point units, 1.0 is the width and height of the image
|
|
@@ -1578,13 +1578,13 @@ def view_pan(
|
|
|
1578
1578
|
...
|
|
1579
1579
|
|
|
1580
1580
|
def view_selected(
|
|
1581
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1581
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1582
1582
|
execution_context: int | str | None = None,
|
|
1583
1583
|
undo: bool | None = None,
|
|
1584
1584
|
):
|
|
1585
1585
|
"""View all selected UVs
|
|
1586
1586
|
|
|
1587
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1587
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1588
1588
|
:type execution_context: int | str | None
|
|
1589
1589
|
:type undo: bool | None
|
|
1590
1590
|
"""
|
|
@@ -1592,7 +1592,7 @@ def view_selected(
|
|
|
1592
1592
|
...
|
|
1593
1593
|
|
|
1594
1594
|
def view_zoom(
|
|
1595
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1595
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1596
1596
|
execution_context: int | str | None = None,
|
|
1597
1597
|
undo: bool | None = None,
|
|
1598
1598
|
*,
|
|
@@ -1601,7 +1601,7 @@ def view_zoom(
|
|
|
1601
1601
|
):
|
|
1602
1602
|
"""Zoom in/out the image
|
|
1603
1603
|
|
|
1604
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1604
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1605
1605
|
:type execution_context: int | str | None
|
|
1606
1606
|
:type undo: bool | None
|
|
1607
1607
|
:param factor: Factor, Zoom factor, values higher than 1.0 zoom in, lower values zoom out
|
|
@@ -1613,7 +1613,7 @@ def view_zoom(
|
|
|
1613
1613
|
...
|
|
1614
1614
|
|
|
1615
1615
|
def view_zoom_border(
|
|
1616
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1616
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1617
1617
|
execution_context: int | str | None = None,
|
|
1618
1618
|
undo: bool | None = None,
|
|
1619
1619
|
*,
|
|
@@ -1626,7 +1626,7 @@ def view_zoom_border(
|
|
|
1626
1626
|
):
|
|
1627
1627
|
"""Zoom in the view to the nearest item contained in the border
|
|
1628
1628
|
|
|
1629
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1629
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1630
1630
|
:type execution_context: int | str | None
|
|
1631
1631
|
:type undo: bool | None
|
|
1632
1632
|
:param xmin: X Min
|
|
@@ -1646,7 +1646,7 @@ def view_zoom_border(
|
|
|
1646
1646
|
...
|
|
1647
1647
|
|
|
1648
1648
|
def view_zoom_in(
|
|
1649
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1649
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1650
1650
|
execution_context: int | str | None = None,
|
|
1651
1651
|
undo: bool | None = None,
|
|
1652
1652
|
*,
|
|
@@ -1654,7 +1654,7 @@ def view_zoom_in(
|
|
|
1654
1654
|
):
|
|
1655
1655
|
"""Zoom in the image (centered around 2D cursor)
|
|
1656
1656
|
|
|
1657
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1657
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1658
1658
|
:type execution_context: int | str | None
|
|
1659
1659
|
:type undo: bool | None
|
|
1660
1660
|
:param location: Location, Cursor location in screen coordinates
|
|
@@ -1664,7 +1664,7 @@ def view_zoom_in(
|
|
|
1664
1664
|
...
|
|
1665
1665
|
|
|
1666
1666
|
def view_zoom_out(
|
|
1667
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1667
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1668
1668
|
execution_context: int | str | None = None,
|
|
1669
1669
|
undo: bool | None = None,
|
|
1670
1670
|
*,
|
|
@@ -1672,7 +1672,7 @@ def view_zoom_out(
|
|
|
1672
1672
|
):
|
|
1673
1673
|
"""Zoom out the image (centered around 2D cursor)
|
|
1674
1674
|
|
|
1675
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1675
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1676
1676
|
:type execution_context: int | str | None
|
|
1677
1677
|
:type undo: bool | None
|
|
1678
1678
|
:param location: Location, Cursor location in screen coordinates
|
|
@@ -1682,7 +1682,7 @@ def view_zoom_out(
|
|
|
1682
1682
|
...
|
|
1683
1683
|
|
|
1684
1684
|
def view_zoom_ratio(
|
|
1685
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1685
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1686
1686
|
execution_context: int | str | None = None,
|
|
1687
1687
|
undo: bool | None = None,
|
|
1688
1688
|
*,
|
|
@@ -1690,7 +1690,7 @@ def view_zoom_ratio(
|
|
|
1690
1690
|
):
|
|
1691
1691
|
"""Set zoom ratio of the view
|
|
1692
1692
|
|
|
1693
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1693
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1694
1694
|
:type execution_context: int | str | None
|
|
1695
1695
|
:type undo: bool | None
|
|
1696
1696
|
:param ratio: Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out
|