fake-bpy-module 20241217__py3-none-any.whl → 20241218__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.
- bpy/ops/sequencer/__init__.pyi +18 -0
- bpy/types/__init__.pyi +23 -7
- {fake_bpy_module-20241217.dist-info → fake_bpy_module-20241218.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241217.dist-info → fake_bpy_module-20241218.dist-info}/RECORD +7 -7
- nodeitems_builtins/__init__.pyi +0 -6
- {fake_bpy_module-20241217.dist-info → fake_bpy_module-20241218.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241217.dist-info → fake_bpy_module-20241218.dist-info}/top_level.txt +0 -0
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1122,6 +1122,24 @@ def paste(
|
|
|
1122
1122
|
:type keep_offset: bool | None
|
|
1123
1123
|
"""
|
|
1124
1124
|
|
|
1125
|
+
def preview_duplicate_move(
|
|
1126
|
+
execution_context: int | str | None = None,
|
|
1127
|
+
undo: bool | None = None,
|
|
1128
|
+
/,
|
|
1129
|
+
*,
|
|
1130
|
+
SEQUENCER_OT_duplicate: duplicate | None = None,
|
|
1131
|
+
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
1132
|
+
):
|
|
1133
|
+
"""Duplicate selected strips and move them
|
|
1134
|
+
|
|
1135
|
+
:type execution_context: int | str | None
|
|
1136
|
+
:type undo: bool | None
|
|
1137
|
+
:param SEQUENCER_OT_duplicate: Duplicate Strips, Duplicate the selected strips
|
|
1138
|
+
:type SEQUENCER_OT_duplicate: duplicate | None
|
|
1139
|
+
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
1140
|
+
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
1141
|
+
"""
|
|
1142
|
+
|
|
1125
1143
|
def reassign_inputs(
|
|
1126
1144
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
1127
1145
|
):
|
bpy/types/__init__.pyi
CHANGED
|
@@ -159768,6 +159768,22 @@ class GreasePencilLayer(bpy_struct):
|
|
|
159768
159768
|
class GreasePencilLayerGroup(bpy_struct):
|
|
159769
159769
|
"""Group of Grease Pencil layers"""
|
|
159770
159770
|
|
|
159771
|
+
color_tag: typing.Literal[
|
|
159772
|
+
"NONE",
|
|
159773
|
+
"COLOR1",
|
|
159774
|
+
"COLOR2",
|
|
159775
|
+
"COLOR3",
|
|
159776
|
+
"COLOR4",
|
|
159777
|
+
"COLOR5",
|
|
159778
|
+
"COLOR6",
|
|
159779
|
+
"COLOR7",
|
|
159780
|
+
"COLOR8",
|
|
159781
|
+
]
|
|
159782
|
+
"""
|
|
159783
|
+
|
|
159784
|
+
:type: typing.Literal['NONE','COLOR1','COLOR2','COLOR3','COLOR4','COLOR5','COLOR6','COLOR7','COLOR8']
|
|
159785
|
+
"""
|
|
159786
|
+
|
|
159771
159787
|
hide: bool
|
|
159772
159788
|
""" Set layer group visibility
|
|
159773
159789
|
|
|
@@ -178441,10 +178457,10 @@ class Node(bpy_struct):
|
|
|
178441
178457
|
:type: str
|
|
178442
178458
|
"""
|
|
178443
178459
|
|
|
178444
|
-
bl_static_type:
|
|
178445
|
-
"""
|
|
178460
|
+
bl_static_type: str
|
|
178461
|
+
""" Legacy unique node type identifier, redundant with bl_idname property
|
|
178446
178462
|
|
|
178447
|
-
:type:
|
|
178463
|
+
:type: str
|
|
178448
178464
|
"""
|
|
178449
178465
|
|
|
178450
178466
|
bl_width_default: float
|
|
@@ -178591,10 +178607,10 @@ class Node(bpy_struct):
|
|
|
178591
178607
|
:type: bool
|
|
178592
178608
|
"""
|
|
178593
178609
|
|
|
178594
|
-
type:
|
|
178595
|
-
"""
|
|
178610
|
+
type: str
|
|
178611
|
+
""" Legacy unique node type identifier, redundant with bl_idname property
|
|
178596
178612
|
|
|
178597
|
-
:type:
|
|
178613
|
+
:type: str
|
|
178598
178614
|
"""
|
|
178599
178615
|
|
|
178600
178616
|
use_custom_color: bool
|
|
@@ -191684,7 +191700,7 @@ class PreferencesExperimental(bpy_struct):
|
|
|
191684
191700
|
"""Experimental features"""
|
|
191685
191701
|
|
|
191686
191702
|
override_auto_resync: bool
|
|
191687
|
-
""" Disable library overrides automatic resync detection and process on file load (can be useful to help fixing broken files)
|
|
191703
|
+
""" Disable library overrides automatic resync detection and process on file load (can be useful to help fixing broken files). Also see the --disable-liboverride-auto-resync command line option
|
|
191688
191704
|
|
|
191689
191705
|
:type: bool
|
|
191690
191706
|
"""
|
|
@@ -257,7 +257,7 @@ bpy/ops/screen/__init__.pyi,sha256=QMTeZ7KCyQ4Y-HkTrJCfHBMT4pVhxoum5ecBe6lynGw,1
|
|
|
257
257
|
bpy/ops/script/__init__.pyi,sha256=LPFPi3ovQdpV5IVlMnJpo9K3i88q1t6cFnoXnfiJ5HA,978
|
|
258
258
|
bpy/ops/sculpt/__init__.pyi,sha256=rLoR6GFU6ARcuEq-CwBKngSn0xxELfy42WJogo4pXxw,46804
|
|
259
259
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=jDglkug-tn6Esxo-_DrILnCkifpWfQ82x9JE_q0PW-c,2849
|
|
260
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
260
|
+
bpy/ops/sequencer/__init__.pyi,sha256=JfAlUY302zzAhKnXw3W7DZe2gsz_mQ8avZIV9bMv7_c,74706
|
|
261
261
|
bpy/ops/sound/__init__.pyi,sha256=AjwVXW3oYYL0GrRvoEoUzKGKFBP6IY67FhR9jfjLvZ0,16826
|
|
262
262
|
bpy/ops/spreadsheet/__init__.pyi,sha256=q_4fYPoBC6g61Pw7Mz71PQB93vYHxk661B18CvIkguA,1360
|
|
263
263
|
bpy/ops/surface/__init__.pyi,sha256=OD-_jQEOIHzb89OaZ4JLMZlnP7-s4jbY4a2DpI9bA_I,10315
|
|
@@ -275,7 +275,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
|
|
|
275
275
|
bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
|
|
276
276
|
bpy/path/__init__.pyi,sha256=N-QNSw3piTmrzrydYRyWab7GFGOh3BsdaS91x4Kf-Cc,5403
|
|
277
277
|
bpy/props/__init__.pyi,sha256=eHzPsDSyDTa92O5TvPpi1yflmxv7vVGW_ZocCqudgw4,31027
|
|
278
|
-
bpy/types/__init__.pyi,sha256=
|
|
278
|
+
bpy/types/__init__.pyi,sha256=tz5uRgzbG_-B997WIWY3V4D-Io2pVmYXP0fTB3PXBz8,5401398
|
|
279
279
|
bpy/typing/__init__.pyi,sha256=u2XKjd6ZB1Wjt7JwabxexZdswEZLYR2jQpxzzp6AThg,138679
|
|
280
280
|
bpy/utils/__init__.pyi,sha256=wvjdEDEtBn5bR5pZG7HnW1ZdL_J-IQYvmB7e4AwTW0s,13537
|
|
281
281
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
@@ -346,7 +346,7 @@ mathutils/geometry/__init__.pyi,sha256=YU4LyVtd5nl5KJeVsbOcWMNZhJlI9TQWIWJ5V-nrk
|
|
|
346
346
|
mathutils/interpolate/__init__.pyi,sha256=3MR9khGFn6OavD1uxB06mLE8WC2zQdWDDuCTQFt0xMg,393
|
|
347
347
|
mathutils/kdtree/__init__.pyi,sha256=bE3wUvxhvzr3n5ENSAqYQyzPCuQtTsOwtzXtSqqX8go,1862
|
|
348
348
|
mathutils/noise/__init__.pyi,sha256=nDUTZpaghLXZwQG_8sVJnR-vdPeN7qk0p343sAsovgI,12725
|
|
349
|
-
nodeitems_builtins/__init__.pyi,sha256=
|
|
349
|
+
nodeitems_builtins/__init__.pyi,sha256=BOoYcQ2Jmn_o1X4y7fqYUWNd2pyul7WMz6cCYH7y6Z0,432
|
|
350
350
|
nodeitems_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
351
|
nodeitems_utils/__init__.pyi,sha256=F82sRq2Foowt3d9IUxloVB_qg7pTQP5w8qYvMJhwvFs,747
|
|
352
352
|
nodeitems_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
358
358
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
359
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
360
360
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
|
-
fake_bpy_module-
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
361
|
+
fake_bpy_module-20241218.dist-info/METADATA,sha256=uw-bqJDjJJVcRPTcvnY4ZF5QVjt_02pZQqNNzFuBTq8,7289
|
|
362
|
+
fake_bpy_module-20241218.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
363
|
+
fake_bpy_module-20241218.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
364
|
+
fake_bpy_module-20241218.dist-info/RECORD,,
|
nodeitems_builtins/__init__.pyi
CHANGED
|
@@ -20,9 +20,3 @@ class ShaderNodeCategory(SortedNodeCategory):
|
|
|
20
20
|
|
|
21
21
|
:param context:
|
|
22
22
|
"""
|
|
23
|
-
|
|
24
|
-
def group_input_output_item_poll(context): ...
|
|
25
|
-
def group_tools_draw(_self, layout, _context): ...
|
|
26
|
-
def node_group_items(context): ...
|
|
27
|
-
def register(): ...
|
|
28
|
-
def unregister(): ...
|
|
File without changes
|
|
File without changes
|