fake-bpy-module 20240524__py3-none-any.whl → 20240528__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_operators/__init__.pyi +1 -0
- bl_operators/image_as_planes/__init__.pyi +457 -0
- bl_operators/userpref/__init__.pyi +0 -214
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/properties_render/__init__.pyi +1 -1
- bpy/app/__init__.pyi +5 -1
- bpy/ops/action/__init__.pyi +21 -0
- bpy/ops/anim/__init__.pyi +34 -0
- bpy/ops/armature/__init__.pyi +31 -0
- bpy/ops/asset/__init__.pyi +5 -0
- bpy/ops/bl_pkg/__init__.pyi +28 -17
- bpy/ops/boid/__init__.pyi +1 -0
- bpy/ops/brush/__init__.pyi +6 -0
- bpy/ops/buttons/__init__.pyi +2 -0
- bpy/ops/cachefile/__init__.pyi +3 -0
- bpy/ops/camera/__init__.pyi +2 -0
- bpy/ops/clip/__init__.pyi +49 -0
- bpy/ops/cloth/__init__.pyi +1 -0
- bpy/ops/collection/__init__.pyi +7 -0
- bpy/ops/console/__init__.pyi +11 -0
- bpy/ops/constraint/__init__.pyi +15 -0
- bpy/ops/curve/__init__.pyi +28 -0
- bpy/ops/curves/__init__.pyi +14 -0
- bpy/ops/cycles/__init__.pyi +2 -0
- bpy/ops/dpaint/__init__.pyi +2 -0
- bpy/ops/ed/__init__.pyi +3 -0
- bpy/ops/export_anim/__init__.pyi +1 -0
- bpy/ops/export_scene/__init__.pyi +20 -3
- bpy/ops/file/__init__.pyi +14 -0
- bpy/ops/fluid/__init__.pyi +1 -0
- bpy/ops/font/__init__.pyi +13 -0
- bpy/ops/geometry/__init__.pyi +7 -0
- bpy/ops/gizmogroup/__init__.pyi +1 -0
- bpy/ops/gpencil/__init__.pyi +106 -0
- bpy/ops/graph/__init__.pyi +47 -0
- bpy/ops/grease_pencil/__init__.pyi +52 -0
- bpy/ops/image/__init__.pyi +308 -0
- bpy/ops/import_anim/__init__.pyi +1 -0
- bpy/ops/import_curve/__init__.pyi +1 -0
- bpy/ops/import_scene/__init__.pyi +2 -0
- bpy/ops/info/__init__.pyi +3 -0
- bpy/ops/lattice/__init__.pyi +5 -0
- bpy/ops/marker/__init__.pyi +9 -0
- bpy/ops/mask/__init__.pyi +22 -0
- bpy/ops/mball/__init__.pyi +7 -0
- bpy/ops/mesh/__init__.pyi +134 -0
- bpy/ops/nla/__init__.pyi +20 -0
- bpy/ops/node/__init__.pyi +47 -0
- bpy/ops/object/__init__.pyi +174 -0
- bpy/ops/outliner/__init__.pyi +25 -0
- bpy/ops/paint/__init__.pyi +39 -0
- bpy/ops/paintcurve/__init__.pyi +4 -0
- bpy/ops/palette/__init__.pyi +4 -0
- bpy/ops/particle/__init__.pyi +17 -0
- bpy/ops/pose/__init__.pyi +24 -0
- bpy/ops/poselib/__init__.pyi +4 -0
- bpy/ops/preferences/__init__.pyi +26 -14
- bpy/ops/ptcache/__init__.pyi +2 -0
- bpy/ops/render/__init__.pyi +9 -0
- bpy/ops/rigidbody/__init__.pyi +7 -0
- bpy/ops/scene/__init__.pyi +16 -0
- bpy/ops/screen/__init__.pyi +21 -0
- bpy/ops/script/__init__.pyi +2 -0
- bpy/ops/sculpt/__init__.pyi +25 -0
- bpy/ops/sculpt_curves/__init__.pyi +3 -0
- bpy/ops/sequencer/__init__.pyi +57 -0
- bpy/ops/sound/__init__.pyi +4 -0
- bpy/ops/spreadsheet/__init__.pyi +2 -0
- bpy/ops/surface/__init__.pyi +6 -0
- bpy/ops/text/__init__.pyi +18 -0
- bpy/ops/text_editor/__init__.pyi +1 -0
- bpy/ops/texture/__init__.pyi +1 -0
- bpy/ops/transform/__init__.pyi +25 -0
- bpy/ops/ui/__init__.pyi +13 -0
- bpy/ops/uilist/__init__.pyi +3 -0
- bpy/ops/uv/__init__.pyi +40 -0
- bpy/ops/view2d/__init__.pyi +11 -0
- bpy/ops/view3d/__init__.pyi +30 -0
- bpy/ops/wm/__init__.pyi +114 -0
- bpy/ops/workspace/__init__.pyi +1 -0
- bpy/path/__init__.pyi +6 -6
- bpy/props/__init__.pyi +11 -1
- bpy/types/__init__.pyi +393 -334
- bpy/utils/__init__.pyi +10 -8
- bpy_extras/anim_utils/__init__.pyi +3 -3
- bpy_extras/view3d_utils/__init__.pyi +2 -0
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240528.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240528.dist-info}/RECORD +93 -92
- gpu/types/__init__.pyi +4 -2
- gpu_extras/batch/__init__.pyi +1 -1
- gpu_extras/presets/__init__.pyi +1 -1
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240528.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240528.dist-info}/top_level.txt +0 -0
bpy/ops/image/__init__.pyi
CHANGED
|
@@ -23,6 +23,7 @@ def change_frame(
|
|
|
23
23
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
24
24
|
execution_context: str | int | None = None,
|
|
25
25
|
undo: bool | None = None,
|
|
26
|
+
*,
|
|
26
27
|
frame: typing.Any | None = 0,
|
|
27
28
|
):
|
|
28
29
|
"""Interactively change the current frame number
|
|
@@ -96,6 +97,7 @@ def curves_point_set(
|
|
|
96
97
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
97
98
|
execution_context: str | int | None = None,
|
|
98
99
|
undo: bool | None = None,
|
|
100
|
+
*,
|
|
99
101
|
point: str | None = "BLACK_POINT",
|
|
100
102
|
size: typing.Any | None = 1,
|
|
101
103
|
):
|
|
@@ -116,6 +118,7 @@ def cycle_render_slot(
|
|
|
116
118
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
117
119
|
execution_context: str | int | None = None,
|
|
118
120
|
undo: bool | None = None,
|
|
121
|
+
*,
|
|
119
122
|
reverse: bool | typing.Any | None = False,
|
|
120
123
|
):
|
|
121
124
|
"""Cycle through all non-void render slots
|
|
@@ -133,6 +136,7 @@ def external_edit(
|
|
|
133
136
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
134
137
|
execution_context: str | int | None = None,
|
|
135
138
|
undo: bool | None = None,
|
|
139
|
+
*,
|
|
136
140
|
filepath: str | typing.Any = "",
|
|
137
141
|
):
|
|
138
142
|
"""Edit image in an external application
|
|
@@ -150,6 +154,7 @@ def file_browse(
|
|
|
150
154
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
151
155
|
execution_context: str | int | None = None,
|
|
152
156
|
undo: bool | None = None,
|
|
157
|
+
*,
|
|
153
158
|
filepath: str | typing.Any = "",
|
|
154
159
|
hide_props_region: bool | typing.Any | None = True,
|
|
155
160
|
check_existing: bool | typing.Any | None = False,
|
|
@@ -254,6 +259,7 @@ def flip(
|
|
|
254
259
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
255
260
|
execution_context: str | int | None = None,
|
|
256
261
|
undo: bool | None = None,
|
|
262
|
+
*,
|
|
257
263
|
use_flip_x: bool | typing.Any | None = False,
|
|
258
264
|
use_flip_y: bool | typing.Any | None = False,
|
|
259
265
|
):
|
|
@@ -270,10 +276,291 @@ def flip(
|
|
|
270
276
|
|
|
271
277
|
...
|
|
272
278
|
|
|
279
|
+
def import_as_mesh_planes(
|
|
280
|
+
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
281
|
+
execution_context: str | int | None = None,
|
|
282
|
+
undo: bool | None = None,
|
|
283
|
+
*,
|
|
284
|
+
filepath: str | typing.Any = "",
|
|
285
|
+
align: str | None = "WORLD",
|
|
286
|
+
location: typing.Any | None = (0.0, 0.0, 0.0),
|
|
287
|
+
rotation: typing.Any | None = (0.0, 0.0, 0.0),
|
|
288
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
289
|
+
| None = None,
|
|
290
|
+
directory: str | typing.Any = "",
|
|
291
|
+
filter_image: bool | typing.Any | None = True,
|
|
292
|
+
filter_movie: bool | typing.Any | None = True,
|
|
293
|
+
filter_folder: bool | typing.Any | None = True,
|
|
294
|
+
force_reload: bool | typing.Any | None = False,
|
|
295
|
+
image_sequence: bool | typing.Any | None = False,
|
|
296
|
+
offset: bool | typing.Any | None = True,
|
|
297
|
+
offset_axis: str | None = "X+",
|
|
298
|
+
offset_amount: typing.Any | None = 0.1,
|
|
299
|
+
align_axis: str | None = "CAM_AX",
|
|
300
|
+
prev_align_axis: str | None = "NONE",
|
|
301
|
+
align_track: bool | typing.Any | None = False,
|
|
302
|
+
size_mode: str | None = "ABSOLUTE",
|
|
303
|
+
fill_mode: str | None = "FILL",
|
|
304
|
+
height: typing.Any | None = 1.0,
|
|
305
|
+
factor: typing.Any | None = 600.0,
|
|
306
|
+
shader: str | None = "PRINCIPLED",
|
|
307
|
+
emit_strength: typing.Any | None = 1.0,
|
|
308
|
+
use_transparency: bool | typing.Any | None = True,
|
|
309
|
+
blend_method: str | None = "BLEND",
|
|
310
|
+
shadow_method: str | None = "CLIP",
|
|
311
|
+
use_backface_culling: bool | typing.Any | None = False,
|
|
312
|
+
show_transparent_back: bool | typing.Any | None = True,
|
|
313
|
+
overwrite_material: bool | typing.Any | None = True,
|
|
314
|
+
interpolation: str | None = "Linear",
|
|
315
|
+
extension: str | None = "CLIP",
|
|
316
|
+
alpha_mode: str | None = "STRAIGHT",
|
|
317
|
+
use_auto_refresh: bool | typing.Any | None = True,
|
|
318
|
+
relative: bool | typing.Any | None = True,
|
|
319
|
+
):
|
|
320
|
+
"""Create mesh plane(s) from image files with the appropriate aspect ratio
|
|
321
|
+
|
|
322
|
+
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
323
|
+
:type execution_context: str | int | None
|
|
324
|
+
:type undo: bool | None
|
|
325
|
+
:param filepath: File Path, Filepath used for importing the file
|
|
326
|
+
:type filepath: str | typing.Any
|
|
327
|
+
:param align: Align
|
|
328
|
+
|
|
329
|
+
WORLD
|
|
330
|
+
World -- Align the new object to the world.
|
|
331
|
+
|
|
332
|
+
VIEW
|
|
333
|
+
View -- Align the new object to the view.
|
|
334
|
+
|
|
335
|
+
CURSOR
|
|
336
|
+
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
337
|
+
:type align: str | None
|
|
338
|
+
:param location: Location
|
|
339
|
+
:type location: typing.Any | None
|
|
340
|
+
:param rotation: Rotation
|
|
341
|
+
:type rotation: typing.Any | None
|
|
342
|
+
:param files: files
|
|
343
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
344
|
+
:param directory: directory
|
|
345
|
+
:type directory: str | typing.Any
|
|
346
|
+
:param filter_image: filter_image
|
|
347
|
+
:type filter_image: bool | typing.Any | None
|
|
348
|
+
:param filter_movie: filter_movie
|
|
349
|
+
:type filter_movie: bool | typing.Any | None
|
|
350
|
+
:param filter_folder: filter_folder
|
|
351
|
+
:type filter_folder: bool | typing.Any | None
|
|
352
|
+
:param force_reload: Force Reload, Force reloading of the image if already opened elsewhere in Blender
|
|
353
|
+
:type force_reload: bool | typing.Any | None
|
|
354
|
+
:param image_sequence: Animate Image Sequences, Import sequentially numbered images as an animated image sequence instead of separate planes
|
|
355
|
+
:type image_sequence: bool | typing.Any | None
|
|
356
|
+
:param offset: Offset Planes, Offset Planes From Each Other
|
|
357
|
+
:type offset: bool | typing.Any | None
|
|
358
|
+
:param offset_axis: Orientation, How planes are oriented relative to each others' local axis
|
|
359
|
+
|
|
360
|
+
X+
|
|
361
|
+
X+ -- Side by Side to the Left.
|
|
362
|
+
|
|
363
|
+
Y+
|
|
364
|
+
Y+ -- Side by Side, Downward.
|
|
365
|
+
|
|
366
|
+
Z+
|
|
367
|
+
Z+ -- Stacked Above.
|
|
368
|
+
|
|
369
|
+
X-
|
|
370
|
+
X- -- Side by Side to the Right.
|
|
371
|
+
|
|
372
|
+
Y-
|
|
373
|
+
Y- -- Side by Side, Upward.
|
|
374
|
+
|
|
375
|
+
Z-
|
|
376
|
+
Z- -- Stacked Below.
|
|
377
|
+
:type offset_axis: str | None
|
|
378
|
+
:param offset_amount: Offset, Space between planes
|
|
379
|
+
:type offset_amount: typing.Any | None
|
|
380
|
+
:param align_axis: Align, How to align the planes
|
|
381
|
+
|
|
382
|
+
X+
|
|
383
|
+
X+ -- Facing Positive X.
|
|
384
|
+
|
|
385
|
+
Y+
|
|
386
|
+
Y+ -- Facing Positive Y.
|
|
387
|
+
|
|
388
|
+
Z+
|
|
389
|
+
Z+ (Up) -- Facing Positive Z.
|
|
390
|
+
|
|
391
|
+
X-
|
|
392
|
+
X- -- Facing Negative X.
|
|
393
|
+
|
|
394
|
+
Y-
|
|
395
|
+
Y- -- Facing Negative Y.
|
|
396
|
+
|
|
397
|
+
Z-
|
|
398
|
+
Z- (Down) -- Facing Negative Z.
|
|
399
|
+
|
|
400
|
+
CAM
|
|
401
|
+
Face Camera -- Facing Camera.
|
|
402
|
+
|
|
403
|
+
CAM_AX
|
|
404
|
+
Main Axis -- Facing the Camera's dominant axis.
|
|
405
|
+
:type align_axis: str | None
|
|
406
|
+
:param prev_align_axis: prev_align_axis
|
|
407
|
+
|
|
408
|
+
X+
|
|
409
|
+
X+ -- Facing Positive X.
|
|
410
|
+
|
|
411
|
+
Y+
|
|
412
|
+
Y+ -- Facing Positive Y.
|
|
413
|
+
|
|
414
|
+
Z+
|
|
415
|
+
Z+ (Up) -- Facing Positive Z.
|
|
416
|
+
|
|
417
|
+
X-
|
|
418
|
+
X- -- Facing Negative X.
|
|
419
|
+
|
|
420
|
+
Y-
|
|
421
|
+
Y- -- Facing Negative Y.
|
|
422
|
+
|
|
423
|
+
Z-
|
|
424
|
+
Z- (Down) -- Facing Negative Z.
|
|
425
|
+
|
|
426
|
+
CAM
|
|
427
|
+
Face Camera -- Facing Camera.
|
|
428
|
+
|
|
429
|
+
CAM_AX
|
|
430
|
+
Main Axis -- Facing the Camera's dominant axis.
|
|
431
|
+
|
|
432
|
+
NONE
|
|
433
|
+
Undocumented.
|
|
434
|
+
:type prev_align_axis: str | None
|
|
435
|
+
:param align_track: Track Camera, Always face the camera
|
|
436
|
+
:type align_track: bool | typing.Any | None
|
|
437
|
+
:param size_mode: Size Mode, How the size of the plane is computed
|
|
438
|
+
|
|
439
|
+
ABSOLUTE
|
|
440
|
+
Absolute -- Use absolute size.
|
|
441
|
+
|
|
442
|
+
CAMERA
|
|
443
|
+
Camera Relative -- Scale to the camera frame.
|
|
444
|
+
|
|
445
|
+
DPI
|
|
446
|
+
Dpi -- Use definition of the image as dots per inch.
|
|
447
|
+
|
|
448
|
+
DPBU
|
|
449
|
+
Dots/BU -- Use definition of the image as dots per Blender Unit.
|
|
450
|
+
:type size_mode: str | None
|
|
451
|
+
:param fill_mode: Scale, How large in the camera frame is the plane
|
|
452
|
+
|
|
453
|
+
FILL
|
|
454
|
+
Fill -- Fill camera frame, spilling outside the frame.
|
|
455
|
+
|
|
456
|
+
FIT
|
|
457
|
+
Fit -- Fit entire image within the camera frame.
|
|
458
|
+
:type fill_mode: str | None
|
|
459
|
+
:param height: Height, Height of the created plane
|
|
460
|
+
:type height: typing.Any | None
|
|
461
|
+
:param factor: Definition, Number of pixels per inch or Blender Unit
|
|
462
|
+
:type factor: typing.Any | None
|
|
463
|
+
:param shader: Shader, Node shader to use
|
|
464
|
+
|
|
465
|
+
PRINCIPLED
|
|
466
|
+
Principled -- Principled Shader.
|
|
467
|
+
|
|
468
|
+
SHADELESS
|
|
469
|
+
Shadeless -- Only visible to camera and reflections.
|
|
470
|
+
|
|
471
|
+
EMISSION
|
|
472
|
+
Emit -- Emission Shader.
|
|
473
|
+
:type shader: str | None
|
|
474
|
+
:param emit_strength: Strength, Brightness of Emission Texture
|
|
475
|
+
:type emit_strength: typing.Any | None
|
|
476
|
+
:param use_transparency: Use Alpha, Use alpha channel for transparency
|
|
477
|
+
:type use_transparency: bool | typing.Any | None
|
|
478
|
+
:param blend_method: Blend Mode, Blend Mode for Transparent Faces
|
|
479
|
+
|
|
480
|
+
BLEND
|
|
481
|
+
Blend -- Render polygon transparent, depending on alpha channel of the texture.
|
|
482
|
+
|
|
483
|
+
CLIP
|
|
484
|
+
Clip -- Use the alpha threshold to clip the visibility (binary visibility).
|
|
485
|
+
|
|
486
|
+
HASHED
|
|
487
|
+
Hashed -- Use noise to dither the binary visibility (works well with multi-samples).
|
|
488
|
+
|
|
489
|
+
OPAQUE
|
|
490
|
+
Opaque -- Render surface without transparency.
|
|
491
|
+
:type blend_method: str | None
|
|
492
|
+
:param shadow_method: Shadow Mode, Shadow mapping method
|
|
493
|
+
|
|
494
|
+
CLIP
|
|
495
|
+
Clip -- Use the alpha threshold to clip the visibility (binary visibility).
|
|
496
|
+
|
|
497
|
+
HASHED
|
|
498
|
+
Hashed -- Use noise to dither the binary visibility (works well with multi-samples).
|
|
499
|
+
|
|
500
|
+
OPAQUE
|
|
501
|
+
Opaque -- Material will cast shadows without transparency.
|
|
502
|
+
|
|
503
|
+
NONE
|
|
504
|
+
None -- Material will cast no shadow.
|
|
505
|
+
:type shadow_method: str | None
|
|
506
|
+
:param use_backface_culling: Backface Culling, Use back face culling to hide the back side of faces
|
|
507
|
+
:type use_backface_culling: bool | typing.Any | None
|
|
508
|
+
:param show_transparent_back: Show Backface, Render multiple transparent layers (may introduce transparency sorting problems)
|
|
509
|
+
:type show_transparent_back: bool | typing.Any | None
|
|
510
|
+
:param overwrite_material: Overwrite Material, Overwrite existing Material (based on material name)
|
|
511
|
+
:type overwrite_material: bool | typing.Any | None
|
|
512
|
+
:param interpolation: Interpolation, Texture interpolation
|
|
513
|
+
|
|
514
|
+
Linear
|
|
515
|
+
Linear -- Linear interpolation.
|
|
516
|
+
|
|
517
|
+
Closest
|
|
518
|
+
Closest -- No interpolation (sample closest texel).
|
|
519
|
+
|
|
520
|
+
Cubic
|
|
521
|
+
Cubic -- Cubic interpolation.
|
|
522
|
+
|
|
523
|
+
Smart
|
|
524
|
+
Smart -- Bicubic when magnifying, else bilinear (OSL only).
|
|
525
|
+
:type interpolation: str | None
|
|
526
|
+
:param extension: Extension, How the image is extrapolated past its original bounds
|
|
527
|
+
|
|
528
|
+
CLIP
|
|
529
|
+
Clip -- Clip to image size and set exterior pixels as transparent.
|
|
530
|
+
|
|
531
|
+
EXTEND
|
|
532
|
+
Extend -- Extend by repeating edge pixels of the image.
|
|
533
|
+
|
|
534
|
+
REPEAT
|
|
535
|
+
Repeat -- Cause the image to repeat horizontally and vertically.
|
|
536
|
+
:type extension: str | None
|
|
537
|
+
:param alpha_mode: Alpha Mode, Representation of alpha in the image file, to convert to and from when saving and loading the image
|
|
538
|
+
|
|
539
|
+
STRAIGHT
|
|
540
|
+
Straight -- Store RGB and alpha channels separately with alpha acting as a mask, also known as unassociated alpha. Commonly used by image editing applications and file formats like PNG.
|
|
541
|
+
|
|
542
|
+
PREMUL
|
|
543
|
+
Premultiplied -- Store RGB channels with alpha multiplied in, also known as associated alpha. The natural format for renders and used by file formats like OpenEXR.
|
|
544
|
+
|
|
545
|
+
CHANNEL_PACKED
|
|
546
|
+
Channel Packed -- Different images are packed in the RGB and alpha channels, and they should not affect each other. Channel packing is commonly used by game engines to save memory.
|
|
547
|
+
|
|
548
|
+
NONE
|
|
549
|
+
None -- Ignore alpha channel from the file and make image fully opaque.
|
|
550
|
+
:type alpha_mode: str | None
|
|
551
|
+
:param use_auto_refresh: Auto Refresh, Always refresh image on frame changes
|
|
552
|
+
:type use_auto_refresh: bool | typing.Any | None
|
|
553
|
+
:param relative: Relative Paths, Use relative file paths
|
|
554
|
+
:type relative: bool | typing.Any | None
|
|
555
|
+
"""
|
|
556
|
+
|
|
557
|
+
...
|
|
558
|
+
|
|
273
559
|
def invert(
|
|
274
560
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
275
561
|
execution_context: str | int | None = None,
|
|
276
562
|
undo: bool | None = None,
|
|
563
|
+
*,
|
|
277
564
|
invert_r: bool | typing.Any | None = False,
|
|
278
565
|
invert_g: bool | typing.Any | None = False,
|
|
279
566
|
invert_b: bool | typing.Any | None = False,
|
|
@@ -314,6 +601,7 @@ def new(
|
|
|
314
601
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
315
602
|
execution_context: str | int | None = None,
|
|
316
603
|
undo: bool | None = None,
|
|
604
|
+
*,
|
|
317
605
|
name: str | typing.Any = "Untitled",
|
|
318
606
|
width: typing.Any | None = 1024,
|
|
319
607
|
height: typing.Any | None = 1024,
|
|
@@ -355,6 +643,7 @@ def open(
|
|
|
355
643
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
356
644
|
execution_context: str | int | None = None,
|
|
357
645
|
undo: bool | None = None,
|
|
646
|
+
*,
|
|
358
647
|
allow_path_tokens: bool | typing.Any | None = True,
|
|
359
648
|
filepath: str | typing.Any = "",
|
|
360
649
|
directory: str | typing.Any = "",
|
|
@@ -475,6 +764,7 @@ def open_images(
|
|
|
475
764
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
476
765
|
execution_context: str | int | None = None,
|
|
477
766
|
undo: bool | None = None,
|
|
767
|
+
*,
|
|
478
768
|
directory: str | typing.Any = "",
|
|
479
769
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
480
770
|
| None = None,
|
|
@@ -589,6 +879,7 @@ def render_border(
|
|
|
589
879
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
590
880
|
execution_context: str | int | None = None,
|
|
591
881
|
undo: bool | None = None,
|
|
882
|
+
*,
|
|
592
883
|
xmin: typing.Any | None = 0,
|
|
593
884
|
xmax: typing.Any | None = 0,
|
|
594
885
|
ymin: typing.Any | None = 0,
|
|
@@ -618,6 +909,7 @@ def replace(
|
|
|
618
909
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
619
910
|
execution_context: str | int | None = None,
|
|
620
911
|
undo: bool | None = None,
|
|
912
|
+
*,
|
|
621
913
|
filepath: str | typing.Any = "",
|
|
622
914
|
hide_props_region: bool | typing.Any | None = True,
|
|
623
915
|
check_existing: bool | typing.Any | None = False,
|
|
@@ -722,6 +1014,7 @@ def resize(
|
|
|
722
1014
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
723
1015
|
execution_context: str | int | None = None,
|
|
724
1016
|
undo: bool | None = None,
|
|
1017
|
+
*,
|
|
725
1018
|
size: typing.Any | None = (0, 0),
|
|
726
1019
|
):
|
|
727
1020
|
"""Resize the image
|
|
@@ -739,6 +1032,7 @@ def rotate_orthogonal(
|
|
|
739
1032
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
740
1033
|
execution_context: str | int | None = None,
|
|
741
1034
|
undo: bool | None = None,
|
|
1035
|
+
*,
|
|
742
1036
|
degrees: str | None = "90",
|
|
743
1037
|
):
|
|
744
1038
|
"""Rotate the image
|
|
@@ -765,6 +1059,7 @@ def sample(
|
|
|
765
1059
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
766
1060
|
execution_context: str | int | None = None,
|
|
767
1061
|
undo: bool | None = None,
|
|
1062
|
+
*,
|
|
768
1063
|
size: typing.Any | None = 1,
|
|
769
1064
|
):
|
|
770
1065
|
"""Use mouse to sample a color in current image
|
|
@@ -782,6 +1077,7 @@ def sample_line(
|
|
|
782
1077
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
783
1078
|
execution_context: str | int | None = None,
|
|
784
1079
|
undo: bool | None = None,
|
|
1080
|
+
*,
|
|
785
1081
|
xstart: typing.Any | None = 0,
|
|
786
1082
|
xend: typing.Any | None = 0,
|
|
787
1083
|
ystart: typing.Any | None = 0,
|
|
@@ -842,6 +1138,7 @@ def save_as(
|
|
|
842
1138
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
843
1139
|
execution_context: str | int | None = None,
|
|
844
1140
|
undo: bool | None = None,
|
|
1141
|
+
*,
|
|
845
1142
|
save_as_render: bool | typing.Any | None = False,
|
|
846
1143
|
copy: bool | typing.Any | None = False,
|
|
847
1144
|
allow_path_tokens: bool | typing.Any | None = True,
|
|
@@ -966,6 +1263,7 @@ def tile_add(
|
|
|
966
1263
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
967
1264
|
execution_context: str | int | None = None,
|
|
968
1265
|
undo: bool | None = None,
|
|
1266
|
+
*,
|
|
969
1267
|
number: typing.Any | None = 1002,
|
|
970
1268
|
count: typing.Any | None = 1,
|
|
971
1269
|
label: str | typing.Any = "",
|
|
@@ -1010,6 +1308,7 @@ def tile_fill(
|
|
|
1010
1308
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1011
1309
|
execution_context: str | int | None = None,
|
|
1012
1310
|
undo: bool | None = None,
|
|
1311
|
+
*,
|
|
1013
1312
|
color: typing.Any | None = (0.0, 0.0, 0.0, 1.0),
|
|
1014
1313
|
generated_type: str | None = "BLANK",
|
|
1015
1314
|
width: typing.Any | None = 1024,
|
|
@@ -1056,6 +1355,7 @@ def unpack(
|
|
|
1056
1355
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1057
1356
|
execution_context: str | int | None = None,
|
|
1058
1357
|
undo: bool | None = None,
|
|
1358
|
+
*,
|
|
1059
1359
|
method: str | None = "USE_LOCAL",
|
|
1060
1360
|
id: str | typing.Any = "",
|
|
1061
1361
|
):
|
|
@@ -1076,6 +1376,7 @@ def view_all(
|
|
|
1076
1376
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1077
1377
|
execution_context: str | int | None = None,
|
|
1078
1378
|
undo: bool | None = None,
|
|
1379
|
+
*,
|
|
1079
1380
|
fit_view: bool | typing.Any | None = False,
|
|
1080
1381
|
):
|
|
1081
1382
|
"""View the entire image
|
|
@@ -1107,6 +1408,7 @@ def view_cursor_center(
|
|
|
1107
1408
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1108
1409
|
execution_context: str | int | None = None,
|
|
1109
1410
|
undo: bool | None = None,
|
|
1411
|
+
*,
|
|
1110
1412
|
fit_view: bool | typing.Any | None = False,
|
|
1111
1413
|
):
|
|
1112
1414
|
"""Set 2D Cursor To Center View location
|
|
@@ -1138,6 +1440,7 @@ def view_pan(
|
|
|
1138
1440
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1139
1441
|
execution_context: str | int | None = None,
|
|
1140
1442
|
undo: bool | None = None,
|
|
1443
|
+
*,
|
|
1141
1444
|
offset: typing.Any | None = (0.0, 0.0),
|
|
1142
1445
|
):
|
|
1143
1446
|
"""Pan the view
|
|
@@ -1169,6 +1472,7 @@ def view_zoom(
|
|
|
1169
1472
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1170
1473
|
execution_context: str | int | None = None,
|
|
1171
1474
|
undo: bool | None = None,
|
|
1475
|
+
*,
|
|
1172
1476
|
factor: typing.Any | None = 0.0,
|
|
1173
1477
|
use_cursor_init: bool | typing.Any | None = True,
|
|
1174
1478
|
):
|
|
@@ -1189,6 +1493,7 @@ def view_zoom_border(
|
|
|
1189
1493
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1190
1494
|
execution_context: str | int | None = None,
|
|
1191
1495
|
undo: bool | None = None,
|
|
1496
|
+
*,
|
|
1192
1497
|
xmin: typing.Any | None = 0,
|
|
1193
1498
|
xmax: typing.Any | None = 0,
|
|
1194
1499
|
ymin: typing.Any | None = 0,
|
|
@@ -1221,6 +1526,7 @@ def view_zoom_in(
|
|
|
1221
1526
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1222
1527
|
execution_context: str | int | None = None,
|
|
1223
1528
|
undo: bool | None = None,
|
|
1529
|
+
*,
|
|
1224
1530
|
location: typing.Any | None = (0.0, 0.0),
|
|
1225
1531
|
):
|
|
1226
1532
|
"""Zoom in the image (centered around 2D cursor)
|
|
@@ -1238,6 +1544,7 @@ def view_zoom_out(
|
|
|
1238
1544
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1239
1545
|
execution_context: str | int | None = None,
|
|
1240
1546
|
undo: bool | None = None,
|
|
1547
|
+
*,
|
|
1241
1548
|
location: typing.Any | None = (0.0, 0.0),
|
|
1242
1549
|
):
|
|
1243
1550
|
"""Zoom out the image (centered around 2D cursor)
|
|
@@ -1255,6 +1562,7 @@ def view_zoom_ratio(
|
|
|
1255
1562
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1256
1563
|
execution_context: str | int | None = None,
|
|
1257
1564
|
undo: bool | None = None,
|
|
1565
|
+
*,
|
|
1258
1566
|
ratio: typing.Any | None = 0.0,
|
|
1259
1567
|
):
|
|
1260
1568
|
"""Set zoom ratio of the view
|
bpy/ops/import_anim/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def bvh(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
filepath: str | typing.Any = "",
|
|
13
14
|
filter_glob: str | typing.Any = "*.bvh",
|
|
14
15
|
target: str | None = "ARMATURE",
|
|
@@ -9,6 +9,7 @@ def fbx(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
filepath: str | typing.Any = "",
|
|
13
14
|
directory: str | typing.Any = "",
|
|
14
15
|
filter_glob: str | typing.Any = "*.fbx",
|
|
@@ -117,6 +118,7 @@ def gltf(
|
|
|
117
118
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
118
119
|
execution_context: str | int | None = None,
|
|
119
120
|
undo: bool | None = None,
|
|
121
|
+
*,
|
|
120
122
|
filepath: str | typing.Any = "",
|
|
121
123
|
export_import_convert_lighting_mode: str | None = "SPEC",
|
|
122
124
|
filter_glob: str | typing.Any = "*.glb;*.gltf",
|
bpy/ops/info/__init__.pyi
CHANGED
|
@@ -65,6 +65,7 @@ def select_all(
|
|
|
65
65
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
66
66
|
execution_context: str | int | None = None,
|
|
67
67
|
undo: bool | None = None,
|
|
68
|
+
*,
|
|
68
69
|
action: str | None = "SELECT",
|
|
69
70
|
):
|
|
70
71
|
"""Change selection of all visible reports
|
|
@@ -94,6 +95,7 @@ def select_box(
|
|
|
94
95
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
95
96
|
execution_context: str | int | None = None,
|
|
96
97
|
undo: bool | None = None,
|
|
98
|
+
*,
|
|
97
99
|
xmin: typing.Any | None = 0,
|
|
98
100
|
xmax: typing.Any | None = 0,
|
|
99
101
|
ymin: typing.Any | None = 0,
|
|
@@ -135,6 +137,7 @@ def select_pick(
|
|
|
135
137
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
136
138
|
execution_context: str | int | None = None,
|
|
137
139
|
undo: bool | None = None,
|
|
140
|
+
*,
|
|
138
141
|
report_index: typing.Any | None = 0,
|
|
139
142
|
extend: bool | typing.Any | None = False,
|
|
140
143
|
):
|
bpy/ops/lattice/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def flip(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
axis: str | None = "U",
|
|
13
14
|
):
|
|
14
15
|
"""Mirror all control points without inverting the lattice deform
|
|
@@ -40,6 +41,7 @@ def select_all(
|
|
|
40
41
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
41
42
|
execution_context: str | int | None = None,
|
|
42
43
|
undo: bool | None = None,
|
|
44
|
+
*,
|
|
43
45
|
action: str | None = "TOGGLE",
|
|
44
46
|
):
|
|
45
47
|
"""Change selection of all UVW control points
|
|
@@ -83,6 +85,7 @@ def select_mirror(
|
|
|
83
85
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
84
86
|
execution_context: str | int | None = None,
|
|
85
87
|
undo: bool | None = None,
|
|
88
|
+
*,
|
|
86
89
|
axis: typing.Any | None = {"X"},
|
|
87
90
|
extend: bool | typing.Any | None = False,
|
|
88
91
|
):
|
|
@@ -117,6 +120,7 @@ def select_random(
|
|
|
117
120
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
118
121
|
execution_context: str | int | None = None,
|
|
119
122
|
undo: bool | None = None,
|
|
123
|
+
*,
|
|
120
124
|
ratio: typing.Any | None = 0.5,
|
|
121
125
|
seed: typing.Any | None = 0,
|
|
122
126
|
action: str | None = "SELECT",
|
|
@@ -146,6 +150,7 @@ def select_ungrouped(
|
|
|
146
150
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
147
151
|
execution_context: str | int | None = None,
|
|
148
152
|
undo: bool | None = None,
|
|
153
|
+
*,
|
|
149
154
|
extend: bool | typing.Any | None = False,
|
|
150
155
|
):
|
|
151
156
|
"""Select vertices without a group
|
bpy/ops/marker/__init__.pyi
CHANGED
|
@@ -37,6 +37,7 @@ def delete(
|
|
|
37
37
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
38
38
|
execution_context: str | int | None = None,
|
|
39
39
|
undo: bool | None = None,
|
|
40
|
+
*,
|
|
40
41
|
confirm: bool | typing.Any | None = True,
|
|
41
42
|
):
|
|
42
43
|
"""Delete selected time marker(s)
|
|
@@ -54,6 +55,7 @@ def duplicate(
|
|
|
54
55
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
55
56
|
execution_context: str | int | None = None,
|
|
56
57
|
undo: bool | None = None,
|
|
58
|
+
*,
|
|
57
59
|
frames: typing.Any | None = 0,
|
|
58
60
|
):
|
|
59
61
|
"""Duplicate selected time marker(s)
|
|
@@ -71,6 +73,7 @@ def make_links_scene(
|
|
|
71
73
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
72
74
|
execution_context: str | int | None = None,
|
|
73
75
|
undo: bool | None = None,
|
|
76
|
+
*,
|
|
74
77
|
scene: str | None = "",
|
|
75
78
|
):
|
|
76
79
|
"""Copy selected markers to another scene
|
|
@@ -88,6 +91,7 @@ def move(
|
|
|
88
91
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
89
92
|
execution_context: str | int | None = None,
|
|
90
93
|
undo: bool | None = None,
|
|
94
|
+
*,
|
|
91
95
|
frames: typing.Any | None = 0,
|
|
92
96
|
tweak: bool | typing.Any | None = False,
|
|
93
97
|
):
|
|
@@ -108,6 +112,7 @@ def rename(
|
|
|
108
112
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
109
113
|
execution_context: str | int | None = None,
|
|
110
114
|
undo: bool | None = None,
|
|
115
|
+
*,
|
|
111
116
|
name: str | typing.Any = "RenamedMarker",
|
|
112
117
|
):
|
|
113
118
|
"""Rename first selected time marker
|
|
@@ -125,6 +130,7 @@ def select(
|
|
|
125
130
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
126
131
|
execution_context: str | int | None = None,
|
|
127
132
|
undo: bool | None = None,
|
|
133
|
+
*,
|
|
128
134
|
wait_to_deselect_others: bool | typing.Any | None = False,
|
|
129
135
|
mouse_x: typing.Any | None = 0,
|
|
130
136
|
mouse_y: typing.Any | None = 0,
|
|
@@ -154,6 +160,7 @@ def select_all(
|
|
|
154
160
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
155
161
|
execution_context: str | int | None = None,
|
|
156
162
|
undo: bool | None = None,
|
|
163
|
+
*,
|
|
157
164
|
action: str | None = "TOGGLE",
|
|
158
165
|
):
|
|
159
166
|
"""Change selection of all time markers
|
|
@@ -183,6 +190,7 @@ def select_box(
|
|
|
183
190
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
184
191
|
execution_context: str | int | None = None,
|
|
185
192
|
undo: bool | None = None,
|
|
193
|
+
*,
|
|
186
194
|
xmin: typing.Any | None = 0,
|
|
187
195
|
xmax: typing.Any | None = 0,
|
|
188
196
|
ymin: typing.Any | None = 0,
|
|
@@ -227,6 +235,7 @@ def select_leftright(
|
|
|
227
235
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
228
236
|
execution_context: str | int | None = None,
|
|
229
237
|
undo: bool | None = None,
|
|
238
|
+
*,
|
|
230
239
|
mode: str | None = "LEFT",
|
|
231
240
|
extend: bool | typing.Any | None = False,
|
|
232
241
|
):
|