fake-bpy-module 20240620__py3-none-any.whl → 20240621__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_userpref/__init__.pyi +225 -0
- bpy/ops/action/__init__.pyi +50 -50
- bpy/ops/anim/__init__.pyi +94 -94
- bpy/ops/armature/__init__.pyi +54 -54
- bpy/ops/asset/__init__.pyi +50 -50
- bpy/ops/brush/__init__.pyi +10 -10
- bpy/ops/buttons/__init__.pyi +88 -88
- bpy/ops/cachefile/__init__.pyi +88 -88
- bpy/ops/camera/__init__.pyi +14 -14
- bpy/ops/clip/__init__.pyi +175 -174
- bpy/ops/cloth/__init__.pyi +6 -6
- bpy/ops/collection/__init__.pyi +8 -8
- bpy/ops/console/__init__.pyi +26 -26
- bpy/ops/constraint/__init__.pyi +42 -42
- bpy/ops/curve/__init__.pyi +167 -122
- bpy/ops/curves/__init__.pyi +75 -58
- bpy/ops/cycles/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +50 -50
- bpy/ops/export_anim/__init__.pyi +14 -14
- bpy/ops/export_scene/__init__.pyi +250 -250
- bpy/ops/extensions/__init__.pyi +73 -73
- bpy/ops/file/__init__.pyi +94 -94
- bpy/ops/fluid/__init__.pyi +6 -6
- bpy/ops/font/__init__.pyi +100 -100
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +10 -10
- bpy/ops/gpencil/__init__.pyi +411 -410
- bpy/ops/graph/__init__.pyi +194 -194
- bpy/ops/grease_pencil/__init__.pyi +100 -100
- bpy/ops/image/__init__.pyi +399 -390
- bpy/ops/import_anim/__init__.pyi +16 -16
- bpy/ops/import_curve/__init__.pyi +4 -4
- bpy/ops/import_scene/__init__.pyi +56 -56
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +34 -34
- bpy/ops/mask/__init__.pyi +63 -62
- bpy/ops/mball/__init__.pyi +12 -12
- bpy/ops/mesh/__init__.pyi +893 -790
- bpy/ops/nla/__init__.pyi +70 -70
- bpy/ops/node/__init__.pyi +192 -192
- bpy/ops/object/__init__.pyi +1013 -840
- bpy/ops/outliner/__init__.pyi +44 -44
- bpy/ops/paint/__init__.pyi +169 -168
- bpy/ops/paintcurve/__init__.pyi +12 -12
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +34 -34
- bpy/ops/pose/__init__.pyi +60 -60
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +150 -150
- bpy/ops/ptcache/__init__.pyi +4 -4
- bpy/ops/render/__init__.pyi +56 -56
- bpy/ops/rigidbody/__init__.pyi +8 -8
- bpy/ops/scene/__init__.pyi +20 -20
- bpy/ops/screen/__init__.pyi +128 -128
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +207 -202
- bpy/ops/sculpt_curves/__init__.pyi +12 -12
- bpy/ops/sequencer/__init__.pyi +465 -464
- bpy/ops/sound/__init__.pyi +154 -154
- bpy/ops/spreadsheet/__init__.pyi +6 -6
- bpy/ops/surface/__init__.pyi +109 -60
- bpy/ops/text/__init__.pyi +110 -110
- bpy/ops/text_editor/__init__.pyi +6 -6
- bpy/ops/transform/__init__.pyi +628 -566
- bpy/ops/ui/__init__.pyi +25 -24
- bpy/ops/uilist/__init__.pyi +12 -12
- bpy/ops/uv/__init__.pyi +235 -234
- bpy/ops/view2d/__init__.pyi +72 -72
- bpy/ops/view3d/__init__.pyi +144 -144
- bpy/ops/wm/__init__.pyi +1813 -1806
- bpy/ops/workspace/__init__.pyi +4 -4
- bpy/types/__init__.pyi +1611 -1802
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +77 -77
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
bpy/ops/text/__init__.pyi
CHANGED
|
@@ -74,8 +74,8 @@ def cursor_set(
|
|
|
74
74
|
execution_context: int | str | None = None,
|
|
75
75
|
undo: bool | None = None,
|
|
76
76
|
*,
|
|
77
|
-
x:
|
|
78
|
-
y:
|
|
77
|
+
x: int | None = 0,
|
|
78
|
+
y: int | None = 0,
|
|
79
79
|
):
|
|
80
80
|
"""Set cursor position
|
|
81
81
|
|
|
@@ -83,9 +83,9 @@ def cursor_set(
|
|
|
83
83
|
:type execution_context: int | str | None
|
|
84
84
|
:type undo: bool | None
|
|
85
85
|
:param x: X
|
|
86
|
-
:type x:
|
|
86
|
+
:type x: int | None
|
|
87
87
|
:param y: Y
|
|
88
|
-
:type y:
|
|
88
|
+
:type y: int | None
|
|
89
89
|
"""
|
|
90
90
|
|
|
91
91
|
...
|
|
@@ -197,7 +197,7 @@ def insert(
|
|
|
197
197
|
execution_context: int | str | None = None,
|
|
198
198
|
undo: bool | None = None,
|
|
199
199
|
*,
|
|
200
|
-
text: str
|
|
200
|
+
text: str = "",
|
|
201
201
|
):
|
|
202
202
|
"""Insert text at cursor position
|
|
203
203
|
|
|
@@ -205,7 +205,7 @@ def insert(
|
|
|
205
205
|
:type execution_context: int | str | None
|
|
206
206
|
:type undo: bool | None
|
|
207
207
|
:param text: Text, Text to insert at the cursor position
|
|
208
|
-
:type text: str
|
|
208
|
+
:type text: str
|
|
209
209
|
"""
|
|
210
210
|
|
|
211
211
|
...
|
|
@@ -215,7 +215,7 @@ def jump(
|
|
|
215
215
|
execution_context: int | str | None = None,
|
|
216
216
|
undo: bool | None = None,
|
|
217
217
|
*,
|
|
218
|
-
line:
|
|
218
|
+
line: int | None = 1,
|
|
219
219
|
):
|
|
220
220
|
"""Jump cursor to line
|
|
221
221
|
|
|
@@ -223,7 +223,7 @@ def jump(
|
|
|
223
223
|
:type execution_context: int | str | None
|
|
224
224
|
:type undo: bool | None
|
|
225
225
|
:param line: Line, Line number to jump to
|
|
226
|
-
:type line:
|
|
226
|
+
:type line: int | None
|
|
227
227
|
"""
|
|
228
228
|
|
|
229
229
|
...
|
|
@@ -233,9 +233,9 @@ def jump_to_file_at_point(
|
|
|
233
233
|
execution_context: int | str | None = None,
|
|
234
234
|
undo: bool | None = None,
|
|
235
235
|
*,
|
|
236
|
-
filepath: str
|
|
237
|
-
line:
|
|
238
|
-
column:
|
|
236
|
+
filepath: str = "",
|
|
237
|
+
line: int | None = 0,
|
|
238
|
+
column: int | None = 0,
|
|
239
239
|
):
|
|
240
240
|
"""Jump to a file for the text editor
|
|
241
241
|
|
|
@@ -243,11 +243,11 @@ def jump_to_file_at_point(
|
|
|
243
243
|
:type execution_context: int | str | None
|
|
244
244
|
:type undo: bool | None
|
|
245
245
|
:param filepath: Filepath
|
|
246
|
-
:type filepath: str
|
|
246
|
+
:type filepath: str
|
|
247
247
|
:param line: Line, Line to jump to
|
|
248
|
-
:type line:
|
|
248
|
+
:type line: int | None
|
|
249
249
|
:param column: Column, Column to jump to
|
|
250
|
-
:type column:
|
|
250
|
+
:type column: int | None
|
|
251
251
|
"""
|
|
252
252
|
|
|
253
253
|
...
|
|
@@ -367,30 +367,30 @@ def open(
|
|
|
367
367
|
execution_context: int | str | None = None,
|
|
368
368
|
undo: bool | None = None,
|
|
369
369
|
*,
|
|
370
|
-
filepath: str
|
|
371
|
-
hide_props_region: bool |
|
|
372
|
-
check_existing: bool |
|
|
373
|
-
filter_blender: bool |
|
|
374
|
-
filter_backup: bool |
|
|
375
|
-
filter_image: bool |
|
|
376
|
-
filter_movie: bool |
|
|
377
|
-
filter_python: bool |
|
|
378
|
-
filter_font: bool |
|
|
379
|
-
filter_sound: bool |
|
|
380
|
-
filter_text: bool |
|
|
381
|
-
filter_archive: bool |
|
|
382
|
-
filter_btx: bool |
|
|
383
|
-
filter_collada: bool |
|
|
384
|
-
filter_alembic: bool |
|
|
385
|
-
filter_usd: bool |
|
|
386
|
-
filter_obj: bool |
|
|
387
|
-
filter_volume: bool |
|
|
388
|
-
filter_folder: bool |
|
|
389
|
-
filter_blenlib: bool |
|
|
390
|
-
filemode:
|
|
370
|
+
filepath: str = "",
|
|
371
|
+
hide_props_region: bool | None = True,
|
|
372
|
+
check_existing: bool | None = False,
|
|
373
|
+
filter_blender: bool | None = False,
|
|
374
|
+
filter_backup: bool | None = False,
|
|
375
|
+
filter_image: bool | None = False,
|
|
376
|
+
filter_movie: bool | None = False,
|
|
377
|
+
filter_python: bool | None = True,
|
|
378
|
+
filter_font: bool | None = False,
|
|
379
|
+
filter_sound: bool | None = False,
|
|
380
|
+
filter_text: bool | None = True,
|
|
381
|
+
filter_archive: bool | None = False,
|
|
382
|
+
filter_btx: bool | None = False,
|
|
383
|
+
filter_collada: bool | None = False,
|
|
384
|
+
filter_alembic: bool | None = False,
|
|
385
|
+
filter_usd: bool | None = False,
|
|
386
|
+
filter_obj: bool | None = False,
|
|
387
|
+
filter_volume: bool | None = False,
|
|
388
|
+
filter_folder: bool | None = True,
|
|
389
|
+
filter_blenlib: bool | None = False,
|
|
390
|
+
filemode: int | None = 9,
|
|
391
391
|
display_type: str | None = "DEFAULT",
|
|
392
392
|
sort_method: str | None = "",
|
|
393
|
-
internal: bool |
|
|
393
|
+
internal: bool | None = False,
|
|
394
394
|
):
|
|
395
395
|
"""Open a new text data-block
|
|
396
396
|
|
|
@@ -398,47 +398,47 @@ def open(
|
|
|
398
398
|
:type execution_context: int | str | None
|
|
399
399
|
:type undo: bool | None
|
|
400
400
|
:param filepath: File Path, Path to file
|
|
401
|
-
:type filepath: str
|
|
401
|
+
:type filepath: str
|
|
402
402
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
403
|
-
:type hide_props_region: bool |
|
|
403
|
+
:type hide_props_region: bool | None
|
|
404
404
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
405
|
-
:type check_existing: bool |
|
|
405
|
+
:type check_existing: bool | None
|
|
406
406
|
:param filter_blender: Filter .blend files
|
|
407
|
-
:type filter_blender: bool |
|
|
407
|
+
:type filter_blender: bool | None
|
|
408
408
|
:param filter_backup: Filter .blend files
|
|
409
|
-
:type filter_backup: bool |
|
|
409
|
+
:type filter_backup: bool | None
|
|
410
410
|
:param filter_image: Filter image files
|
|
411
|
-
:type filter_image: bool |
|
|
411
|
+
:type filter_image: bool | None
|
|
412
412
|
:param filter_movie: Filter movie files
|
|
413
|
-
:type filter_movie: bool |
|
|
413
|
+
:type filter_movie: bool | None
|
|
414
414
|
:param filter_python: Filter Python files
|
|
415
|
-
:type filter_python: bool |
|
|
415
|
+
:type filter_python: bool | None
|
|
416
416
|
:param filter_font: Filter font files
|
|
417
|
-
:type filter_font: bool |
|
|
417
|
+
:type filter_font: bool | None
|
|
418
418
|
:param filter_sound: Filter sound files
|
|
419
|
-
:type filter_sound: bool |
|
|
419
|
+
:type filter_sound: bool | None
|
|
420
420
|
:param filter_text: Filter text files
|
|
421
|
-
:type filter_text: bool |
|
|
421
|
+
:type filter_text: bool | None
|
|
422
422
|
:param filter_archive: Filter archive files
|
|
423
|
-
:type filter_archive: bool |
|
|
423
|
+
:type filter_archive: bool | None
|
|
424
424
|
:param filter_btx: Filter btx files
|
|
425
|
-
:type filter_btx: bool |
|
|
425
|
+
:type filter_btx: bool | None
|
|
426
426
|
:param filter_collada: Filter COLLADA files
|
|
427
|
-
:type filter_collada: bool |
|
|
427
|
+
:type filter_collada: bool | None
|
|
428
428
|
:param filter_alembic: Filter Alembic files
|
|
429
|
-
:type filter_alembic: bool |
|
|
429
|
+
:type filter_alembic: bool | None
|
|
430
430
|
:param filter_usd: Filter USD files
|
|
431
|
-
:type filter_usd: bool |
|
|
431
|
+
:type filter_usd: bool | None
|
|
432
432
|
:param filter_obj: Filter OBJ files
|
|
433
|
-
:type filter_obj: bool |
|
|
433
|
+
:type filter_obj: bool | None
|
|
434
434
|
:param filter_volume: Filter OpenVDB volume files
|
|
435
|
-
:type filter_volume: bool |
|
|
435
|
+
:type filter_volume: bool | None
|
|
436
436
|
:param filter_folder: Filter folders
|
|
437
|
-
:type filter_folder: bool |
|
|
437
|
+
:type filter_folder: bool | None
|
|
438
438
|
:param filter_blenlib: Filter Blender IDs
|
|
439
|
-
:type filter_blenlib: bool |
|
|
439
|
+
:type filter_blenlib: bool | None
|
|
440
440
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
441
|
-
:type filemode:
|
|
441
|
+
:type filemode: int | None
|
|
442
442
|
:param display_type: Display Type
|
|
443
443
|
|
|
444
444
|
DEFAULT
|
|
@@ -471,7 +471,7 @@ def open(
|
|
|
471
471
|
Size -- Sort files by size.
|
|
472
472
|
:type sort_method: str | None
|
|
473
473
|
:param internal: Make Internal, Make text file internal after loading
|
|
474
|
-
:type internal: bool |
|
|
474
|
+
:type internal: bool | None
|
|
475
475
|
"""
|
|
476
476
|
|
|
477
477
|
...
|
|
@@ -495,7 +495,7 @@ def paste(
|
|
|
495
495
|
execution_context: int | str | None = None,
|
|
496
496
|
undo: bool | None = None,
|
|
497
497
|
*,
|
|
498
|
-
selection: bool |
|
|
498
|
+
selection: bool | None = False,
|
|
499
499
|
):
|
|
500
500
|
"""Paste text from clipboard
|
|
501
501
|
|
|
@@ -503,7 +503,7 @@ def paste(
|
|
|
503
503
|
:type execution_context: int | str | None
|
|
504
504
|
:type undo: bool | None
|
|
505
505
|
:param selection: Selection, Paste text selected elsewhere rather than copied (X11/Wayland only)
|
|
506
|
-
:type selection: bool |
|
|
506
|
+
:type selection: bool | None
|
|
507
507
|
"""
|
|
508
508
|
|
|
509
509
|
...
|
|
@@ -541,7 +541,7 @@ def replace(
|
|
|
541
541
|
execution_context: int | str | None = None,
|
|
542
542
|
undo: bool | None = None,
|
|
543
543
|
*,
|
|
544
|
-
all: bool |
|
|
544
|
+
all: bool | None = False,
|
|
545
545
|
):
|
|
546
546
|
"""Replace text with the specified text
|
|
547
547
|
|
|
@@ -549,7 +549,7 @@ def replace(
|
|
|
549
549
|
:type execution_context: int | str | None
|
|
550
550
|
:type undo: bool | None
|
|
551
551
|
:param all: Replace All, Replace all occurrences
|
|
552
|
-
:type all: bool |
|
|
552
|
+
:type all: bool | None
|
|
553
553
|
"""
|
|
554
554
|
|
|
555
555
|
...
|
|
@@ -619,27 +619,27 @@ def save_as(
|
|
|
619
619
|
execution_context: int | str | None = None,
|
|
620
620
|
undo: bool | None = None,
|
|
621
621
|
*,
|
|
622
|
-
filepath: str
|
|
623
|
-
hide_props_region: bool |
|
|
624
|
-
check_existing: bool |
|
|
625
|
-
filter_blender: bool |
|
|
626
|
-
filter_backup: bool |
|
|
627
|
-
filter_image: bool |
|
|
628
|
-
filter_movie: bool |
|
|
629
|
-
filter_python: bool |
|
|
630
|
-
filter_font: bool |
|
|
631
|
-
filter_sound: bool |
|
|
632
|
-
filter_text: bool |
|
|
633
|
-
filter_archive: bool |
|
|
634
|
-
filter_btx: bool |
|
|
635
|
-
filter_collada: bool |
|
|
636
|
-
filter_alembic: bool |
|
|
637
|
-
filter_usd: bool |
|
|
638
|
-
filter_obj: bool |
|
|
639
|
-
filter_volume: bool |
|
|
640
|
-
filter_folder: bool |
|
|
641
|
-
filter_blenlib: bool |
|
|
642
|
-
filemode:
|
|
622
|
+
filepath: str = "",
|
|
623
|
+
hide_props_region: bool | None = True,
|
|
624
|
+
check_existing: bool | None = True,
|
|
625
|
+
filter_blender: bool | None = False,
|
|
626
|
+
filter_backup: bool | None = False,
|
|
627
|
+
filter_image: bool | None = False,
|
|
628
|
+
filter_movie: bool | None = False,
|
|
629
|
+
filter_python: bool | None = True,
|
|
630
|
+
filter_font: bool | None = False,
|
|
631
|
+
filter_sound: bool | None = False,
|
|
632
|
+
filter_text: bool | None = True,
|
|
633
|
+
filter_archive: bool | None = False,
|
|
634
|
+
filter_btx: bool | None = False,
|
|
635
|
+
filter_collada: bool | None = False,
|
|
636
|
+
filter_alembic: bool | None = False,
|
|
637
|
+
filter_usd: bool | None = False,
|
|
638
|
+
filter_obj: bool | None = False,
|
|
639
|
+
filter_volume: bool | None = False,
|
|
640
|
+
filter_folder: bool | None = True,
|
|
641
|
+
filter_blenlib: bool | None = False,
|
|
642
|
+
filemode: int | None = 9,
|
|
643
643
|
display_type: str | None = "DEFAULT",
|
|
644
644
|
sort_method: str | None = "",
|
|
645
645
|
):
|
|
@@ -649,47 +649,47 @@ def save_as(
|
|
|
649
649
|
:type execution_context: int | str | None
|
|
650
650
|
:type undo: bool | None
|
|
651
651
|
:param filepath: File Path, Path to file
|
|
652
|
-
:type filepath: str
|
|
652
|
+
:type filepath: str
|
|
653
653
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
654
|
-
:type hide_props_region: bool |
|
|
654
|
+
:type hide_props_region: bool | None
|
|
655
655
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
656
|
-
:type check_existing: bool |
|
|
656
|
+
:type check_existing: bool | None
|
|
657
657
|
:param filter_blender: Filter .blend files
|
|
658
|
-
:type filter_blender: bool |
|
|
658
|
+
:type filter_blender: bool | None
|
|
659
659
|
:param filter_backup: Filter .blend files
|
|
660
|
-
:type filter_backup: bool |
|
|
660
|
+
:type filter_backup: bool | None
|
|
661
661
|
:param filter_image: Filter image files
|
|
662
|
-
:type filter_image: bool |
|
|
662
|
+
:type filter_image: bool | None
|
|
663
663
|
:param filter_movie: Filter movie files
|
|
664
|
-
:type filter_movie: bool |
|
|
664
|
+
:type filter_movie: bool | None
|
|
665
665
|
:param filter_python: Filter Python files
|
|
666
|
-
:type filter_python: bool |
|
|
666
|
+
:type filter_python: bool | None
|
|
667
667
|
:param filter_font: Filter font files
|
|
668
|
-
:type filter_font: bool |
|
|
668
|
+
:type filter_font: bool | None
|
|
669
669
|
:param filter_sound: Filter sound files
|
|
670
|
-
:type filter_sound: bool |
|
|
670
|
+
:type filter_sound: bool | None
|
|
671
671
|
:param filter_text: Filter text files
|
|
672
|
-
:type filter_text: bool |
|
|
672
|
+
:type filter_text: bool | None
|
|
673
673
|
:param filter_archive: Filter archive files
|
|
674
|
-
:type filter_archive: bool |
|
|
674
|
+
:type filter_archive: bool | None
|
|
675
675
|
:param filter_btx: Filter btx files
|
|
676
|
-
:type filter_btx: bool |
|
|
676
|
+
:type filter_btx: bool | None
|
|
677
677
|
:param filter_collada: Filter COLLADA files
|
|
678
|
-
:type filter_collada: bool |
|
|
678
|
+
:type filter_collada: bool | None
|
|
679
679
|
:param filter_alembic: Filter Alembic files
|
|
680
|
-
:type filter_alembic: bool |
|
|
680
|
+
:type filter_alembic: bool | None
|
|
681
681
|
:param filter_usd: Filter USD files
|
|
682
|
-
:type filter_usd: bool |
|
|
682
|
+
:type filter_usd: bool | None
|
|
683
683
|
:param filter_obj: Filter OBJ files
|
|
684
|
-
:type filter_obj: bool |
|
|
684
|
+
:type filter_obj: bool | None
|
|
685
685
|
:param filter_volume: Filter OpenVDB volume files
|
|
686
|
-
:type filter_volume: bool |
|
|
686
|
+
:type filter_volume: bool | None
|
|
687
687
|
:param filter_folder: Filter folders
|
|
688
|
-
:type filter_folder: bool |
|
|
688
|
+
:type filter_folder: bool | None
|
|
689
689
|
:param filter_blenlib: Filter Blender IDs
|
|
690
|
-
:type filter_blenlib: bool |
|
|
690
|
+
:type filter_blenlib: bool | None
|
|
691
691
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
692
|
-
:type filemode:
|
|
692
|
+
:type filemode: int | None
|
|
693
693
|
:param display_type: Display Type
|
|
694
694
|
|
|
695
695
|
DEFAULT
|
|
@@ -715,7 +715,7 @@ def scroll(
|
|
|
715
715
|
execution_context: int | str | None = None,
|
|
716
716
|
undo: bool | None = None,
|
|
717
717
|
*,
|
|
718
|
-
lines:
|
|
718
|
+
lines: int | None = 1,
|
|
719
719
|
):
|
|
720
720
|
"""Undocumented, consider contributing.
|
|
721
721
|
|
|
@@ -723,7 +723,7 @@ def scroll(
|
|
|
723
723
|
:type execution_context: int | str | None
|
|
724
724
|
:type undo: bool | None
|
|
725
725
|
:param lines: Lines, Number of lines to scroll
|
|
726
|
-
:type lines:
|
|
726
|
+
:type lines: int | None
|
|
727
727
|
"""
|
|
728
728
|
|
|
729
729
|
...
|
|
@@ -733,7 +733,7 @@ def scroll_bar(
|
|
|
733
733
|
execution_context: int | str | None = None,
|
|
734
734
|
undo: bool | None = None,
|
|
735
735
|
*,
|
|
736
|
-
lines:
|
|
736
|
+
lines: int | None = 1,
|
|
737
737
|
):
|
|
738
738
|
"""Undocumented, consider contributing.
|
|
739
739
|
|
|
@@ -741,7 +741,7 @@ def scroll_bar(
|
|
|
741
741
|
:type execution_context: int | str | None
|
|
742
742
|
:type undo: bool | None
|
|
743
743
|
:param lines: Lines, Number of lines to scroll
|
|
744
|
-
:type lines:
|
|
744
|
+
:type lines: int | None
|
|
745
745
|
"""
|
|
746
746
|
|
|
747
747
|
...
|
|
@@ -821,7 +821,7 @@ def to_3d_object(
|
|
|
821
821
|
execution_context: int | str | None = None,
|
|
822
822
|
undo: bool | None = None,
|
|
823
823
|
*,
|
|
824
|
-
split_lines: bool |
|
|
824
|
+
split_lines: bool | None = False,
|
|
825
825
|
):
|
|
826
826
|
"""Create 3D text object from active text data-block
|
|
827
827
|
|
|
@@ -829,7 +829,7 @@ def to_3d_object(
|
|
|
829
829
|
:type execution_context: int | str | None
|
|
830
830
|
:type undo: bool | None
|
|
831
831
|
:param split_lines: Split Lines, Create one object per line in the text
|
|
832
|
-
:type split_lines: bool |
|
|
832
|
+
:type split_lines: bool | None
|
|
833
833
|
"""
|
|
834
834
|
|
|
835
835
|
...
|
bpy/ops/text_editor/__init__.pyi
CHANGED
|
@@ -10,9 +10,9 @@ def preset_add(
|
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
13
|
-
name: str
|
|
14
|
-
remove_name: bool |
|
|
15
|
-
remove_active: bool |
|
|
13
|
+
name: str = "",
|
|
14
|
+
remove_name: bool | None = False,
|
|
15
|
+
remove_active: bool | None = False,
|
|
16
16
|
):
|
|
17
17
|
"""Add or remove a Text Editor Preset
|
|
18
18
|
|
|
@@ -20,11 +20,11 @@ def preset_add(
|
|
|
20
20
|
:type execution_context: int | str | None
|
|
21
21
|
:type undo: bool | None
|
|
22
22
|
:param name: Name, Name of the preset, used to make the path name
|
|
23
|
-
:type name: str
|
|
23
|
+
:type name: str
|
|
24
24
|
:param remove_name: remove_name
|
|
25
|
-
:type remove_name: bool |
|
|
25
|
+
:type remove_name: bool | None
|
|
26
26
|
:param remove_active: remove_active
|
|
27
|
-
:type remove_active: bool |
|
|
27
|
+
:type remove_active: bool | None
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
30
|
...
|