fake-bpy-module 20240917__py3-none-any.whl → 20240918__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/grease_pencil/__init__.pyi +99 -0
- bpy/types/__init__.pyi +46 -109
- {fake_bpy_module-20240917.dist-info → fake_bpy_module-20240918.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240917.dist-info → fake_bpy_module-20240918.dist-info}/RECORD +6 -6
- {fake_bpy_module-20240917.dist-info → fake_bpy_module-20240918.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240917.dist-info → fake_bpy_module-20240918.dist-info}/top_level.txt +0 -0
|
@@ -350,6 +350,105 @@ def interpolate(
|
|
|
350
350
|
:type smooth_factor: float | None
|
|
351
351
|
"""
|
|
352
352
|
|
|
353
|
+
def interpolate_sequence(
|
|
354
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
355
|
+
execution_context: int | str | None = None,
|
|
356
|
+
undo: bool | None = None,
|
|
357
|
+
*,
|
|
358
|
+
step: int | None = 1,
|
|
359
|
+
layers: typing.Literal["ACTIVE", "ALL"] | None = "ACTIVE",
|
|
360
|
+
interpolate_selected_only: bool | None = False,
|
|
361
|
+
exclude_breakdowns: bool | None = False,
|
|
362
|
+
flip: typing.Literal["NONE", "FLIP", "AUTO"] | None = "AUTO",
|
|
363
|
+
smooth_steps: int | None = 1,
|
|
364
|
+
smooth_factor: float | None = 0.0,
|
|
365
|
+
type: typing.Literal[
|
|
366
|
+
"LINEAR",
|
|
367
|
+
"CUSTOM",
|
|
368
|
+
"SINE",
|
|
369
|
+
"QUAD",
|
|
370
|
+
"CUBIC",
|
|
371
|
+
"QUART",
|
|
372
|
+
"QUINT",
|
|
373
|
+
"EXPO",
|
|
374
|
+
"CIRC",
|
|
375
|
+
"BACK",
|
|
376
|
+
"BOUNCE",
|
|
377
|
+
"ELASTIC",
|
|
378
|
+
]
|
|
379
|
+
| None = "LINEAR",
|
|
380
|
+
easing: bpy.typing.BeztripleInterpolationEasingItems | None = "EASE_IN",
|
|
381
|
+
back: float | None = 1.702,
|
|
382
|
+
amplitude: float | None = 0.15,
|
|
383
|
+
period: float | None = 0.15,
|
|
384
|
+
):
|
|
385
|
+
"""Generate 'in-betweens' to smoothly interpolate between Grease Pencil frames
|
|
386
|
+
|
|
387
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
388
|
+
:type execution_context: int | str | None
|
|
389
|
+
:type undo: bool | None
|
|
390
|
+
:param step: Step, Number of frames between generated interpolated frames
|
|
391
|
+
:type step: int | None
|
|
392
|
+
:param layers: Layer, Layers included in the interpolation
|
|
393
|
+
:type layers: typing.Literal['ACTIVE','ALL'] | None
|
|
394
|
+
:param interpolate_selected_only: Only Selected, Interpolate only selected strokes
|
|
395
|
+
:type interpolate_selected_only: bool | None
|
|
396
|
+
:param exclude_breakdowns: Exclude Breakdowns, Exclude existing Breakdowns keyframes as interpolation extremes
|
|
397
|
+
:type exclude_breakdowns: bool | None
|
|
398
|
+
:param flip: Flip Mode, Invert destination stroke to match start and end with source stroke
|
|
399
|
+
:type flip: typing.Literal['NONE','FLIP','AUTO'] | None
|
|
400
|
+
:param smooth_steps: Iterations, Number of times to smooth newly created strokes
|
|
401
|
+
:type smooth_steps: int | None
|
|
402
|
+
:param smooth_factor: Smooth, Amount of smoothing to apply to interpolated strokes, to reduce jitter/noise
|
|
403
|
+
:type smooth_factor: float | None
|
|
404
|
+
:param type: Type, Interpolation method to use the next time 'Interpolate Sequence' is run
|
|
405
|
+
|
|
406
|
+
LINEAR
|
|
407
|
+
Linear -- Straight-line interpolation between A and B (i.e. no ease in/out).
|
|
408
|
+
|
|
409
|
+
CUSTOM
|
|
410
|
+
Custom -- Custom interpolation defined using a curve map.
|
|
411
|
+
|
|
412
|
+
SINE
|
|
413
|
+
Sinusoidal -- Sinusoidal easing (weakest, almost linear but with a slight curvature).
|
|
414
|
+
|
|
415
|
+
QUAD
|
|
416
|
+
Quadratic -- Quadratic easing.
|
|
417
|
+
|
|
418
|
+
CUBIC
|
|
419
|
+
Cubic -- Cubic easing.
|
|
420
|
+
|
|
421
|
+
QUART
|
|
422
|
+
Quartic -- Quartic easing.
|
|
423
|
+
|
|
424
|
+
QUINT
|
|
425
|
+
Quintic -- Quintic easing.
|
|
426
|
+
|
|
427
|
+
EXPO
|
|
428
|
+
Exponential -- Exponential easing (dramatic).
|
|
429
|
+
|
|
430
|
+
CIRC
|
|
431
|
+
Circular -- Circular easing (strongest and most dynamic).
|
|
432
|
+
|
|
433
|
+
BACK
|
|
434
|
+
Back -- Cubic easing with overshoot and settle.
|
|
435
|
+
|
|
436
|
+
BOUNCE
|
|
437
|
+
Bounce -- Exponentially decaying parabolic bounce, like when objects collide.
|
|
438
|
+
|
|
439
|
+
ELASTIC
|
|
440
|
+
Elastic -- Exponentially decaying sine wave, like an elastic band.
|
|
441
|
+
:type type: typing.Literal['LINEAR','CUSTOM','SINE','QUAD','CUBIC','QUART','QUINT','EXPO','CIRC','BACK','BOUNCE','ELASTIC'] | None
|
|
442
|
+
:param easing: Easing, Which ends of the segment between the preceding and following grease pencil frames easing interpolation is applied to
|
|
443
|
+
:type easing: bpy.typing.BeztripleInterpolationEasingItems | None
|
|
444
|
+
:param back: Back, Amount of overshoot for 'back' easing
|
|
445
|
+
:type back: float | None
|
|
446
|
+
:param amplitude: Amplitude, Amount to boost elastic bounces for 'elastic' easing
|
|
447
|
+
:type amplitude: float | None
|
|
448
|
+
:param period: Period, Time between bounces for elastic easing
|
|
449
|
+
:type period: float | None
|
|
450
|
+
"""
|
|
451
|
+
|
|
353
452
|
def layer_active(
|
|
354
453
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
355
454
|
execution_context: int | str | None = None,
|
bpy/types/__init__.pyi
CHANGED
|
@@ -46366,8 +46366,8 @@ Executing the operator will then print all values.
|
|
|
46366
46366
|
|
|
46367
46367
|
* ActionChannelBags.new
|
|
46368
46368
|
* ActionChannelBags.remove
|
|
46369
|
-
*
|
|
46370
|
-
*
|
|
46369
|
+
* ActionStrip.channelbags
|
|
46370
|
+
* ActionStrip.channels
|
|
46371
46371
|
|
|
46372
46372
|
:columns: 2
|
|
46373
46373
|
|
|
@@ -51568,44 +51568,6 @@ Executing the operator will then print all values.
|
|
|
51568
51568
|
:columns: 2
|
|
51569
51569
|
|
|
51570
51570
|
|
|
51571
|
-
--------------------
|
|
51572
|
-
|
|
51573
|
-
* bpy_struct.id_data
|
|
51574
|
-
* ActionStrip.type
|
|
51575
|
-
|
|
51576
|
-
:columns: 2
|
|
51577
|
-
|
|
51578
|
-
|
|
51579
|
-
--------------------
|
|
51580
|
-
|
|
51581
|
-
* bpy_struct.as_pointer
|
|
51582
|
-
* bpy_struct.driver_add
|
|
51583
|
-
* bpy_struct.driver_remove
|
|
51584
|
-
* bpy_struct.get
|
|
51585
|
-
* bpy_struct.id_properties_clear
|
|
51586
|
-
* bpy_struct.id_properties_ensure
|
|
51587
|
-
* bpy_struct.id_properties_ui
|
|
51588
|
-
* bpy_struct.is_property_hidden
|
|
51589
|
-
* bpy_struct.is_property_overridable_library
|
|
51590
|
-
* bpy_struct.is_property_readonly
|
|
51591
|
-
* bpy_struct.is_property_set
|
|
51592
|
-
* bpy_struct.items
|
|
51593
|
-
* bpy_struct.keyframe_delete
|
|
51594
|
-
* bpy_struct.keyframe_insert
|
|
51595
|
-
* bpy_struct.keys
|
|
51596
|
-
* bpy_struct.path_from_id
|
|
51597
|
-
* bpy_struct.path_resolve
|
|
51598
|
-
* bpy_struct.pop
|
|
51599
|
-
* bpy_struct.property_overridable_library_set
|
|
51600
|
-
* bpy_struct.property_unset
|
|
51601
|
-
* bpy_struct.type_recast
|
|
51602
|
-
* bpy_struct.values
|
|
51603
|
-
* ActionStrip.bl_rna_get_subclass
|
|
51604
|
-
* ActionStrip.bl_rna_get_subclass_py
|
|
51605
|
-
|
|
51606
|
-
:columns: 2
|
|
51607
|
-
|
|
51608
|
-
|
|
51609
51571
|
--------------------
|
|
51610
51572
|
|
|
51611
51573
|
* bpy_struct.id_data
|
|
@@ -91078,7 +91040,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
91078
91040
|
|
|
91079
91041
|
--------------------
|
|
91080
91042
|
|
|
91081
|
-
*
|
|
91043
|
+
* ActionStrip.channelbags
|
|
91082
91044
|
|
|
91083
91045
|
:columns: 2
|
|
91084
91046
|
|
|
@@ -92098,9 +92060,9 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
92098
92060
|
* ActionSlots.active
|
|
92099
92061
|
* ActionSlots.new
|
|
92100
92062
|
* ActionSlots.remove
|
|
92063
|
+
* ActionStrip.key_insert
|
|
92101
92064
|
* AnimData.action_slot
|
|
92102
92065
|
* AnimData.action_slots
|
|
92103
|
-
* KeyframeActionStrip.key_insert
|
|
92104
92066
|
* NlaStrip.action_slot
|
|
92105
92067
|
* NlaStrip.action_slots
|
|
92106
92068
|
|
|
@@ -111653,12 +111615,51 @@ class ActionSlot(bpy_struct):
|
|
|
111653
111615
|
"""
|
|
111654
111616
|
|
|
111655
111617
|
class ActionStrip(bpy_struct):
|
|
111618
|
+
channelbags: ActionChannelBags
|
|
111619
|
+
"""
|
|
111620
|
+
|
|
111621
|
+
:type: ActionChannelBags
|
|
111622
|
+
"""
|
|
111623
|
+
|
|
111656
111624
|
type: typing.Literal["KEYFRAME"]
|
|
111657
111625
|
"""
|
|
111658
111626
|
|
|
111659
111627
|
:type: typing.Literal['KEYFRAME']
|
|
111660
111628
|
"""
|
|
111661
111629
|
|
|
111630
|
+
def channels(self, slot_handle: int | None) -> ActionChannelBag:
|
|
111631
|
+
"""Find the ActionChannelBag for a specific Slot
|
|
111632
|
+
|
|
111633
|
+
:param slot_handle: Slot Handle, Number that identifies a specific action slot
|
|
111634
|
+
:type slot_handle: int | None
|
|
111635
|
+
:return: Channels
|
|
111636
|
+
:rtype: ActionChannelBag
|
|
111637
|
+
"""
|
|
111638
|
+
|
|
111639
|
+
def key_insert(
|
|
111640
|
+
self,
|
|
111641
|
+
slot: ActionSlot | None,
|
|
111642
|
+
data_path: str,
|
|
111643
|
+
array_index: int | None,
|
|
111644
|
+
value: float | None,
|
|
111645
|
+
time: float | None,
|
|
111646
|
+
) -> bool:
|
|
111647
|
+
"""key_insert
|
|
111648
|
+
|
|
111649
|
+
:param slot: Slot, The slot that identifies which 'thing' should be keyed
|
|
111650
|
+
:type slot: ActionSlot | None
|
|
111651
|
+
:param data_path: Data Path, F-Curve data path
|
|
111652
|
+
:type data_path: str
|
|
111653
|
+
:param array_index: Array Index, Index of the animated array element, or -1 if the property is not an array
|
|
111654
|
+
:type array_index: int | None
|
|
111655
|
+
:param value: Value to key, Value of the animated property
|
|
111656
|
+
:type value: float | None
|
|
111657
|
+
:param time: Time of the key, Time, in frames, of the key
|
|
111658
|
+
:type time: float | None
|
|
111659
|
+
:return: Success, Whether the key was successfully inserted
|
|
111660
|
+
:rtype: bool
|
|
111661
|
+
"""
|
|
111662
|
+
|
|
111662
111663
|
@classmethod
|
|
111663
111664
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
111664
111665
|
"""
|
|
@@ -162582,70 +162583,6 @@ class Keyframe(bpy_struct):
|
|
|
162582
162583
|
:rtype: typing.Any
|
|
162583
162584
|
"""
|
|
162584
162585
|
|
|
162585
|
-
class KeyframeActionStrip(ActionStrip, bpy_struct):
|
|
162586
|
-
"""Strip with a set of F-Curves for each action slot"""
|
|
162587
|
-
|
|
162588
|
-
channelbags: ActionChannelBags
|
|
162589
|
-
"""
|
|
162590
|
-
|
|
162591
|
-
:type: ActionChannelBags
|
|
162592
|
-
"""
|
|
162593
|
-
|
|
162594
|
-
def channels(self, slot_handle: int | None) -> ActionChannelBag:
|
|
162595
|
-
"""Find the ActionChannelBag for a specific Slot
|
|
162596
|
-
|
|
162597
|
-
:param slot_handle: Slot Handle, Number that identifies a specific action slot
|
|
162598
|
-
:type slot_handle: int | None
|
|
162599
|
-
:return: Channels
|
|
162600
|
-
:rtype: ActionChannelBag
|
|
162601
|
-
"""
|
|
162602
|
-
|
|
162603
|
-
def key_insert(
|
|
162604
|
-
self,
|
|
162605
|
-
slot: ActionSlot | None,
|
|
162606
|
-
data_path: str,
|
|
162607
|
-
array_index: int | None,
|
|
162608
|
-
value: float | None,
|
|
162609
|
-
time: float | None,
|
|
162610
|
-
) -> bool:
|
|
162611
|
-
"""key_insert
|
|
162612
|
-
|
|
162613
|
-
:param slot: Slot, The slot that identifies which 'thing' should be keyed
|
|
162614
|
-
:type slot: ActionSlot | None
|
|
162615
|
-
:param data_path: Data Path, F-Curve data path
|
|
162616
|
-
:type data_path: str
|
|
162617
|
-
:param array_index: Array Index, Index of the animated array element, or -1 if the property is not an array
|
|
162618
|
-
:type array_index: int | None
|
|
162619
|
-
:param value: Value to key, Value of the animated property
|
|
162620
|
-
:type value: float | None
|
|
162621
|
-
:param time: Time of the key, Time, in frames, of the key
|
|
162622
|
-
:type time: float | None
|
|
162623
|
-
:return: Success, Whether the key was successfully inserted
|
|
162624
|
-
:rtype: bool
|
|
162625
|
-
"""
|
|
162626
|
-
|
|
162627
|
-
@classmethod
|
|
162628
|
-
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
162629
|
-
"""
|
|
162630
|
-
|
|
162631
|
-
:param id: The RNA type identifier.
|
|
162632
|
-
:type id: str | None
|
|
162633
|
-
:param default:
|
|
162634
|
-
:return: The RNA type or default when not found.
|
|
162635
|
-
:rtype: Struct
|
|
162636
|
-
"""
|
|
162637
|
-
|
|
162638
|
-
@classmethod
|
|
162639
|
-
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
162640
|
-
"""
|
|
162641
|
-
|
|
162642
|
-
:param id: The RNA type identifier.
|
|
162643
|
-
:type id: str | None
|
|
162644
|
-
:param default:
|
|
162645
|
-
:return: The class or default when not found.
|
|
162646
|
-
:rtype: typing.Any
|
|
162647
|
-
"""
|
|
162648
|
-
|
|
162649
162586
|
class KeyingSet(bpy_struct):
|
|
162650
162587
|
"""Settings that should be keyframed together"""
|
|
162651
162588
|
|
|
@@ -200998,13 +200935,13 @@ class ShaderNodeTexBrick(ShaderNode, NodeInternal, Node, bpy_struct):
|
|
|
200998
200935
|
"""
|
|
200999
200936
|
|
|
201000
200937
|
squash: float
|
|
201001
|
-
""" Factor to adjust the brick
|
|
200938
|
+
""" Factor to adjust the brick's width for particular rows determined by the Offset Frequency
|
|
201002
200939
|
|
|
201003
200940
|
:type: float
|
|
201004
200941
|
"""
|
|
201005
200942
|
|
|
201006
200943
|
squash_frequency: int
|
|
201007
|
-
""" How often rows consist of
|
|
200944
|
+
""" How often rows consist of "squished" bricks
|
|
201008
200945
|
|
|
201009
200946
|
:type: int
|
|
201010
200947
|
"""
|
|
@@ -211299,7 +211236,7 @@ class TextureNodeBricks(TextureNode, NodeInternal, Node, bpy_struct):
|
|
|
211299
211236
|
"""
|
|
211300
211237
|
|
|
211301
211238
|
squash: float
|
|
211302
|
-
""" Factor to adjust the brick
|
|
211239
|
+
""" Factor to adjust the brick's width for particular rows determined by the Offset Frequency
|
|
211303
211240
|
|
|
211304
211241
|
:type: float
|
|
211305
211242
|
"""
|
|
@@ -227,7 +227,7 @@ bpy/ops/geometry/__init__.pyi,sha256=5ItSsrN3bGvrspDcvkP_ad_5wYMsIKjgBdtwsZ8qyVQ
|
|
|
227
227
|
bpy/ops/gizmogroup/__init__.pyi,sha256=5BhbMktKxCAcli4TVr2Es06wAGLXHX74fNgPM2YEeTA,1664
|
|
228
228
|
bpy/ops/gpencil/__init__.pyi,sha256=5uFRvVhzcxyEd1_Ez3TWGk5-HdRmrsVUHtI6OakKKWw,106110
|
|
229
229
|
bpy/ops/graph/__init__.pyi,sha256=22Zl9bitYy-_OHq7VpExcPCgJtpM9x2NjCkAQWCm_8w,50730
|
|
230
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
230
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=lk67uJ1YfwYbLwXrm0P1wQXcNvOYVPWkiSfJZwY4_HE,63019
|
|
231
231
|
bpy/ops/image/__init__.pyi,sha256=PaQTAK2-CI8vwaurH0xPga972WY3UvI3rQAj8JVhLNo,59249
|
|
232
232
|
bpy/ops/import_anim/__init__.pyi,sha256=CpXwlgkUCYCoO8Ft22pqjIoJ7KgnvElLGZ7X5hqhMqA,3299
|
|
233
233
|
bpy/ops/import_curve/__init__.pyi,sha256=MdJrsU3hAoeFvFEoCJWB48gDQ57-wYbgQUSdO3SFS3A,734
|
|
@@ -276,7 +276,7 @@ bpy/ops/workspace/__init__.pyi,sha256=N3uQf3eYbGlIlTqthqc6N69TCvBi-SmxXCH8GLV-ti
|
|
|
276
276
|
bpy/ops/world/__init__.pyi,sha256=K3fYZgPYXVbFluCdb4kdprc_jeL5FyxEc_cBnSHIBpg,1015
|
|
277
277
|
bpy/path/__init__.pyi,sha256=spEkOkkdGUGsjGXlhxQD6pQYttj2OEvIu_xurlHRhJY,5499
|
|
278
278
|
bpy/props/__init__.pyi,sha256=8BAhHyAQjGfUSnFR7WlPF6a6hXiwmKgQvfvIN1gZnI0,29536
|
|
279
|
-
bpy/types/__init__.pyi,sha256=
|
|
279
|
+
bpy/types/__init__.pyi,sha256=LnBOnR36Cah0Fo0okbIT7NbGeZRj9RTxWtUj7nC3RIA,5311383
|
|
280
280
|
bpy/typing/__init__.pyi,sha256=AMxpmCxLOmK81jpAmC6wreGhX15naHGEAThLn3AdilI,54308
|
|
281
281
|
bpy/utils/__init__.pyi,sha256=eRH_LptFruPjTR0_1fQJ0WEetKTcZHblC5A0ZvOK3js,13214
|
|
282
282
|
bpy/utils/previews/__init__.pyi,sha256=Y28DInfByVAVwhh_xaDZJTZHHxKN-xx4hl2ulO2dA4c,2377
|
|
@@ -359,7 +359,7 @@ rna_prop_ui/__init__.pyi,sha256=Ci_6Iu0iI1Cls7T3pAODDzDgytYK7SGpUvKTeXEQlNc,1378
|
|
|
359
359
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
360
|
rna_xml/__init__.pyi,sha256=njhax4JCSOZrAcxAQfy7gGHrsLRyX6yspwtPhcR7nnE,674
|
|
361
361
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
362
|
+
fake_bpy_module-20240918.dist-info/METADATA,sha256=zngMei0lE3-oJwLMngnDU4FMf1t0SUDUSq6cEpk1Qgk,7289
|
|
363
|
+
fake_bpy_module-20240918.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
364
|
+
fake_bpy_module-20240918.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
365
|
+
fake_bpy_module-20240918.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|