fake-bpy-module 20240724__py3-none-any.whl → 20240726__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/wm/__init__.pyi +1 -0
- bl_ui/generic_ui_list/__init__.pyi +3 -3
- bl_ui/temp_anim_layers/__init__.pyi +0 -2
- bpy/ops/grease_pencil/__init__.pyi +63 -0
- bpy/ops/wm/__init__.pyi +0 -3
- bpy/types/__init__.pyi +17 -9
- {fake_bpy_module-20240724.dist-info → fake_bpy_module-20240726.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240724.dist-info → fake_bpy_module-20240726.dist-info}/RECORD +10 -10
- {fake_bpy_module-20240724.dist-info → fake_bpy_module-20240726.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240724.dist-info → fake_bpy_module-20240726.dist-info}/top_level.txt +0 -0
bl_operators/wm/__init__.pyi
CHANGED
|
@@ -136,9 +136,9 @@ def draw_ui_list(
|
|
|
136
136
|
context: bpy.types.Context,
|
|
137
137
|
class_name: str = "UI_UL_list",
|
|
138
138
|
*,
|
|
139
|
-
unique_id: str
|
|
140
|
-
list_path: str
|
|
141
|
-
active_index_path: str
|
|
139
|
+
unique_id: str,
|
|
140
|
+
list_path: str,
|
|
141
|
+
active_index_path: str,
|
|
142
142
|
insertion_operators: bool = True,
|
|
143
143
|
move_operators: str = True,
|
|
144
144
|
menu_class_name: str = "",
|
|
@@ -1505,6 +1505,69 @@ def stroke_switch_direction(
|
|
|
1505
1505
|
|
|
1506
1506
|
...
|
|
1507
1507
|
|
|
1508
|
+
def trace_image(
|
|
1509
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1510
|
+
execution_context: int | str | None = None,
|
|
1511
|
+
undo: bool | None = None,
|
|
1512
|
+
*,
|
|
1513
|
+
target: str | None = "NEW",
|
|
1514
|
+
radius: float | None = 0.01,
|
|
1515
|
+
threshold: float | None = 0.5,
|
|
1516
|
+
turnpolicy: str | None = "MINORITY",
|
|
1517
|
+
mode: str | None = "SINGLE",
|
|
1518
|
+
use_current_frame: bool | None = True,
|
|
1519
|
+
frame_number: int | None = 0,
|
|
1520
|
+
):
|
|
1521
|
+
"""Extract Grease Pencil strokes from image
|
|
1522
|
+
|
|
1523
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1524
|
+
:type execution_context: int | str | None
|
|
1525
|
+
:type undo: bool | None
|
|
1526
|
+
:param target: Target Object, Target grease pencil
|
|
1527
|
+
:type target: str | None
|
|
1528
|
+
:param radius: Radius
|
|
1529
|
+
:type radius: float | None
|
|
1530
|
+
:param threshold: Color Threshold, Determine the lightness threshold above which strokes are generated
|
|
1531
|
+
:type threshold: float | None
|
|
1532
|
+
:param turnpolicy: Turn Policy, Determines how to resolve ambiguities during decomposition of bitmaps into paths
|
|
1533
|
+
|
|
1534
|
+
FOREGROUND
|
|
1535
|
+
Foreground -- Prefers to connect foreground components.
|
|
1536
|
+
|
|
1537
|
+
BACKGROUND
|
|
1538
|
+
Background -- Prefers to connect background components.
|
|
1539
|
+
|
|
1540
|
+
LEFT
|
|
1541
|
+
Left -- Always take a left turn.
|
|
1542
|
+
|
|
1543
|
+
RIGHT
|
|
1544
|
+
Right -- Always take a right turn.
|
|
1545
|
+
|
|
1546
|
+
MINORITY
|
|
1547
|
+
Minority -- Prefers to connect the color that occurs least frequently in the local neighborhood of the current position.
|
|
1548
|
+
|
|
1549
|
+
MAJORITY
|
|
1550
|
+
Majority -- Prefers to connect the color that occurs most frequently in the local neighborhood of the current position.
|
|
1551
|
+
|
|
1552
|
+
RANDOM
|
|
1553
|
+
Random -- Choose pseudo-randomly.
|
|
1554
|
+
:type turnpolicy: str | None
|
|
1555
|
+
:param mode: Mode, Determines if trace simple image or full sequence
|
|
1556
|
+
|
|
1557
|
+
SINGLE
|
|
1558
|
+
Single -- Trace the current frame of the image.
|
|
1559
|
+
|
|
1560
|
+
SEQUENCE
|
|
1561
|
+
Sequence -- Trace full sequence.
|
|
1562
|
+
:type mode: str | None
|
|
1563
|
+
:param use_current_frame: Start At Current Frame, Trace Image starting in current image frame
|
|
1564
|
+
:type use_current_frame: bool | None
|
|
1565
|
+
:param frame_number: Trace Frame, Used to trace only one frame of the image sequence, set to zero to trace all
|
|
1566
|
+
:type frame_number: int | None
|
|
1567
|
+
"""
|
|
1568
|
+
|
|
1569
|
+
...
|
|
1570
|
+
|
|
1508
1571
|
def weight_brush_stroke(
|
|
1509
1572
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1510
1573
|
execution_context: int | str | None = None,
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -4926,7 +4926,6 @@ def url_open_preset(
|
|
|
4926
4926
|
undo: bool | None = None,
|
|
4927
4927
|
*,
|
|
4928
4928
|
type: str | None = "",
|
|
4929
|
-
id: str = "",
|
|
4930
4929
|
):
|
|
4931
4930
|
"""Open a preset website in the web browser
|
|
4932
4931
|
|
|
@@ -4935,8 +4934,6 @@ def url_open_preset(
|
|
|
4935
4934
|
:type undo: bool | None
|
|
4936
4935
|
:param type: Site
|
|
4937
4936
|
:type type: str | None
|
|
4938
|
-
:param id: Identifier, Optional identifier
|
|
4939
|
-
:type id: str
|
|
4940
4937
|
"""
|
|
4941
4938
|
|
|
4942
4939
|
...
|
bpy/types/__init__.pyi
CHANGED
|
@@ -10498,6 +10498,8 @@
|
|
|
10498
10498
|
* ActionChannelBags.new
|
|
10499
10499
|
* ActionSlots.active
|
|
10500
10500
|
* ActionSlots.new
|
|
10501
|
+
* AnimData.action_slot
|
|
10502
|
+
* AnimData.action_slots
|
|
10501
10503
|
* KeyframeActionStrip.key_insert
|
|
10502
10504
|
|
|
10503
10505
|
:columns: 2
|
|
@@ -24491,6 +24493,7 @@ Menu.poll function.
|
|
|
24491
24493
|
--------------------
|
|
24492
24494
|
|
|
24493
24495
|
* ThemeStyle.panel_title
|
|
24496
|
+
* ThemeStyle.tooltip
|
|
24494
24497
|
* ThemeStyle.widget
|
|
24495
24498
|
|
|
24496
24499
|
:columns: 2
|
|
@@ -86714,7 +86717,6 @@ Executing the operator will then print all values.
|
|
|
86714
86717
|
* Pose.blend_pose_from_action
|
|
86715
86718
|
* SpaceDopeSheetEditor.action
|
|
86716
86719
|
* WindowManager.poselib_previous_action
|
|
86717
|
-
* WindowManager.selected_action
|
|
86718
86720
|
|
|
86719
86721
|
:columns: 2
|
|
86720
86722
|
|
|
@@ -112076,10 +112078,10 @@ class AnimData(bpy_struct):
|
|
|
112076
112078
|
:type: float
|
|
112077
112079
|
"""
|
|
112078
112080
|
|
|
112079
|
-
action_slot:
|
|
112081
|
+
action_slot: ActionSlot | None
|
|
112080
112082
|
""" The slot identifies which sub-set of the Action is considered to be for this data-block, and its name is used to find the right slot when assigning an Action
|
|
112081
112083
|
|
|
112082
|
-
:type:
|
|
112084
|
+
:type: ActionSlot | None
|
|
112083
112085
|
"""
|
|
112084
112086
|
|
|
112085
112087
|
action_slot_handle: int
|
|
@@ -112094,6 +112096,12 @@ class AnimData(bpy_struct):
|
|
|
112094
112096
|
:type: str
|
|
112095
112097
|
"""
|
|
112096
112098
|
|
|
112099
|
+
action_slots: bpy_prop_collection[ActionSlot]
|
|
112100
|
+
""" The list of slots in this animation data-block
|
|
112101
|
+
|
|
112102
|
+
:type: bpy_prop_collection[ActionSlot]
|
|
112103
|
+
"""
|
|
112104
|
+
|
|
112097
112105
|
action_tweak_storage: Action | None
|
|
112098
112106
|
""" Slot to temporarily hold the main action while in tweak mode
|
|
112099
112107
|
|
|
@@ -223100,6 +223108,12 @@ class ThemeStyle(bpy_struct):
|
|
|
223100
223108
|
:type: ThemeFontStyle
|
|
223101
223109
|
"""
|
|
223102
223110
|
|
|
223111
|
+
tooltip: ThemeFontStyle
|
|
223112
|
+
"""
|
|
223113
|
+
|
|
223114
|
+
:type: ThemeFontStyle
|
|
223115
|
+
"""
|
|
223116
|
+
|
|
223103
223117
|
widget: ThemeFontStyle
|
|
223104
223118
|
"""
|
|
223105
223119
|
|
|
@@ -233729,12 +233743,6 @@ class WindowManager(ID, bpy_struct):
|
|
|
233729
233743
|
:type: str | typing.Any
|
|
233730
233744
|
"""
|
|
233731
233745
|
|
|
233732
|
-
selected_action: Action | None
|
|
233733
|
-
""" Action assigned to the active Object
|
|
233734
|
-
|
|
233735
|
-
:type: Action | None
|
|
233736
|
-
"""
|
|
233737
|
-
|
|
233738
233746
|
windows: bpy_prop_collection[Window]
|
|
233739
233747
|
""" Open windows
|
|
233740
233748
|
|
|
@@ -80,7 +80,7 @@ bl_operators/uvcalc_lightmap/__init__.pyi,sha256=zpnZlq7hYA8Lmf_cxkVpkLDg6kMOzf6
|
|
|
80
80
|
bl_operators/uvcalc_transform/__init__.pyi,sha256=sImxo_yd14yzprUclXZsQWj7q-7wC-V2_9aApkXZDXw,3895
|
|
81
81
|
bl_operators/vertexpaint_dirt/__init__.pyi,sha256=OGgUOn63Ntsxe4SuyAJTd0a2AFQ9Y-tYVN_uBQ-vmVQ,1110
|
|
82
82
|
bl_operators/view3d/__init__.pyi,sha256=TvlVSJwTfIGToNCWmiB0UqXXaQlnd7lzjHn_LkPi__0,7027
|
|
83
|
-
bl_operators/wm/__init__.pyi,sha256
|
|
83
|
+
bl_operators/wm/__init__.pyi,sha256=-X_C9htp0BUK6afuouHUHOBsPJH2O5YzSMJMx_8urQE,34358
|
|
84
84
|
bl_operators/world/__init__.pyi,sha256=av-vZ5MpCwv5r0DXb2xgyI9CL7UZqvkBHiNcM8R4oBA,1067
|
|
85
85
|
bl_previews_utils/__init__.pyi,sha256=bliTWVjIBYbTZvNehQMryYukMASj4f78ACq452w9DFA,188
|
|
86
86
|
bl_previews_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -95,7 +95,7 @@ bl_ui/__init__.pyi,sha256=Hvra4-a4Zh3fNm8xpO37ldrhvwW02DtEH_gEzYI1O1g,5380
|
|
|
95
95
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
96
|
bl_ui/anim/__init__.pyi,sha256=Wx2gzS5aZoOW2y5OiabmSdWP7nPcnbM9E1pxuNASURk,741
|
|
97
97
|
bl_ui/asset_shelf/__init__.pyi,sha256=TCTpS8yv3Anod0KVBWyJFATKbhzYo8h8seXDr4j-ZHc,904
|
|
98
|
-
bl_ui/generic_ui_list/__init__.pyi,sha256=
|
|
98
|
+
bl_ui/generic_ui_list/__init__.pyi,sha256=DQ3z-4CuOTQo89EGqLOXeWtPa_jKC6HOy-fUF3GY91w,4394
|
|
99
99
|
bl_ui/node_add_menu/__init__.pyi,sha256=TKsixTXR9RlzzYtvIMMR5iWx--0nyWihvBOr_m_HINE,1246
|
|
100
100
|
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=qeB3Q_pulxhb90bJg6oqcooVOraMqaxvn7cxeZxj4JI,11102
|
|
101
101
|
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=GxHzxyPYnUB5GOISVlYfWRZOuCGapWZp9xl5-7g37CE,30433
|
|
@@ -168,7 +168,7 @@ bl_ui/space_topbar/__init__.pyi,sha256=JeTpm65HjAyvi6cGk4DlhlrErnmaMi4Ko5u0RyeV0
|
|
|
168
168
|
bl_ui/space_userpref/__init__.pyi,sha256=VBDZ-UTou5eq3zvpDaqa3BGm-NlUgqZh-SaaXiQurqU,82505
|
|
169
169
|
bl_ui/space_view3d/__init__.pyi,sha256=qgnCnZf4bWSpQJN5yVNPrIeuASHhu0MREkR6J9NvVMQ,173580
|
|
170
170
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=mEIN12EkfZcTZD2APV05s6BABxi6gOzqXUzahxzJNm8,80870
|
|
171
|
-
bl_ui/temp_anim_layers/__init__.pyi,sha256=
|
|
171
|
+
bl_ui/temp_anim_layers/__init__.pyi,sha256=cPcRrl12m0HeCrRJd3YncBwj3IkHoJX01OfEi3GSS-k,937
|
|
172
172
|
bl_ui/utils/__init__.pyi,sha256=OrumGsAE1S8zBxb80PtYlulQjeAcKneShcJLU-giz5o,612
|
|
173
173
|
bl_ui_utils/__init__.pyi,sha256=vgXVU4nsCF3zhnHE_SDR6uStqs5xYYCgdthPIk1KigI,205
|
|
174
174
|
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -222,7 +222,7 @@ bpy/ops/geometry/__init__.pyi,sha256=k_UzjNCq3OZzWFfOg2Q6qgSw78HELzW4IHH4Vu6RiAw
|
|
|
222
222
|
bpy/ops/gizmogroup/__init__.pyi,sha256=_h2xG2u0gb4KPmAn3DnBC9ERO2NJqiAXeeH4kGyi3Ms,1706
|
|
223
223
|
bpy/ops/gpencil/__init__.pyi,sha256=WQ_kmpacqzoGdpPqZds_43nNz8koeIjUy0CDn7m68es,107438
|
|
224
224
|
bpy/ops/graph/__init__.pyi,sha256=Yzrm-K3D0g2FehtRtf9TevKQIUvbXUpyvYtItgWGmXw,49912
|
|
225
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
225
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=3RzCgZ9541gPo3ZN1YgpMejj4o3RJuTqydVynbetk08,50233
|
|
226
226
|
bpy/ops/image/__init__.pyi,sha256=IuEU6nfl103qOKX0R45PjyFMtXYx2Hvy9ujW0c4q_X8,57772
|
|
227
227
|
bpy/ops/import_anim/__init__.pyi,sha256=sc5jYBSzFy-LM8137hRPNlOPeVGrjXCxIe80ZUpP_r8,2922
|
|
228
228
|
bpy/ops/import_curve/__init__.pyi,sha256=iE5haqhq6lCoqK39ir0DO88JQChanDbRw9EDcmVvB94,753
|
|
@@ -266,12 +266,12 @@ bpy/ops/uilist/__init__.pyi,sha256=WhityU_t7v5Lnvs10fCIeOpmR5Ws77bX1PkhL1tAhCE,2
|
|
|
266
266
|
bpy/ops/uv/__init__.pyi,sha256=x4V-n92PiXPDnKvFMb2CTBj7eXKOYFQfblXkgM-6DA4,48977
|
|
267
267
|
bpy/ops/view2d/__init__.pyi,sha256=gXNF0dBhiPqX3rOb40Ev8J1sX2TDbve35FAQSfcF1XQ,9356
|
|
268
268
|
bpy/ops/view3d/__init__.pyi,sha256=Tmxe1tUhHtqfUWqnFAin2o9g9E4IAVw0n9DBexKXG5s,40607
|
|
269
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
269
|
+
bpy/ops/wm/__init__.pyi,sha256=rRmGAxeuganS1mtTQn68alZb8CFCE6TJLwd7i33jgMg,215908
|
|
270
270
|
bpy/ops/workspace/__init__.pyi,sha256=OSELKT_HUs2W6cOk2wOigZgkbieGezMVWTi45f4x-Ik,3289
|
|
271
271
|
bpy/ops/world/__init__.pyi,sha256=_z3cX9CYV0nTmSiSQcC82nRiXYriWMcHomfxmSl2GxM,1057
|
|
272
272
|
bpy/path/__init__.pyi,sha256=eHZZMKEe97JZsx7p5YzG8YtEJ6X7T2gVtMUO8oRFevU,5924
|
|
273
273
|
bpy/props/__init__.pyi,sha256=Ve1JEXbDvR1jPFE21dZEQQaBz15sdZ0IG-N3CVxtV40,29575
|
|
274
|
-
bpy/types/__init__.pyi,sha256=
|
|
274
|
+
bpy/types/__init__.pyi,sha256=uEXz0mLGbXZmAB0XyF1sW560z5AQfsYIJiY_8Z9jVaY,5276951
|
|
275
275
|
bpy/utils/__init__.pyi,sha256=rG2EBRXMb8Mzr99UoscRuEqtAQHYqRMob8vYyaRF6-g,13752
|
|
276
276
|
bpy/utils/previews/__init__.pyi,sha256=0mvcirUV7D4ByWzEUIBVEEJ1VTFhBjBcstllI7L6MRc,2439
|
|
277
277
|
bpy/utils/units/__init__.pyi,sha256=2OtqF54xi6peGyNeSGkuaLpytf2EESF753zqooe8bwc,2719
|
|
@@ -355,7 +355,7 @@ rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
|
|
|
355
355
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
356
356
|
sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
|
|
357
357
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
|
-
fake_bpy_module-
|
|
359
|
-
fake_bpy_module-
|
|
360
|
-
fake_bpy_module-
|
|
361
|
-
fake_bpy_module-
|
|
358
|
+
fake_bpy_module-20240726.dist-info/METADATA,sha256=hKBilBlWHFFJDTMwnaqM6JW9Vm_yekxWaTzMz6D8Rzg,7188
|
|
359
|
+
fake_bpy_module-20240726.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
|
360
|
+
fake_bpy_module-20240726.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
361
|
+
fake_bpy_module-20240726.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|