fake-bpy-module 20250906__py3-none-any.whl → 20250908__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/presets/__init__.pyi +1 -1
- bl_ui/space_toolsystem_toolbar/__init__.pyi +1 -0
- bpy/ops/curves/__init__.pyi +54 -0
- bpy/ops/grease_pencil/__init__.pyi +1 -1
- bpy/ops/object/__init__.pyi +1 -1
- bpy/ops/pose/__init__.pyi +1 -1
- bpy/ops/scene/__init__.pyi +1 -1
- bpy/types/__init__.pyi +7 -1
- {fake_bpy_module-20250906.dist-info → fake_bpy_module-20250908.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250906.dist-info → fake_bpy_module-20250908.dist-info}/RECORD +12 -12
- {fake_bpy_module-20250906.dist-info → fake_bpy_module-20250908.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250906.dist-info → fake_bpy_module-20250908.dist-info}/top_level.txt +0 -0
|
@@ -198,7 +198,7 @@ class AddPresetFluid(AddPresetBase, _bpy_types.Operator):
|
|
|
198
198
|
"""
|
|
199
199
|
|
|
200
200
|
class AddPresetGpencilBrush(AddPresetBase, _bpy_types.Operator):
|
|
201
|
-
"""Add or remove
|
|
201
|
+
"""Add or remove Grease Pencil brush preset"""
|
|
202
202
|
|
|
203
203
|
bl_idname: typing.Any
|
|
204
204
|
bl_label: typing.Any
|
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -322,6 +322,60 @@ def handle_type_set(
|
|
|
322
322
|
:type type: typing.Literal['AUTO','VECTOR','ALIGN','FREE_ALIGN','TOGGLE_FREE_ALIGN'] | None
|
|
323
323
|
"""
|
|
324
324
|
|
|
325
|
+
def pen(
|
|
326
|
+
execution_context: int | str | None = None,
|
|
327
|
+
undo: bool | None = None,
|
|
328
|
+
/,
|
|
329
|
+
*,
|
|
330
|
+
extend: bool | None = False,
|
|
331
|
+
deselect: bool | None = False,
|
|
332
|
+
toggle: bool | None = False,
|
|
333
|
+
deselect_all: bool | None = False,
|
|
334
|
+
select_passthrough: bool | None = False,
|
|
335
|
+
extrude_point: bool | None = False,
|
|
336
|
+
extrude_handle: typing.Literal["AUTO", "VECTOR"] | None = "VECTOR",
|
|
337
|
+
delete_point: bool | None = False,
|
|
338
|
+
insert_point: bool | None = False,
|
|
339
|
+
move_segment: bool | None = False,
|
|
340
|
+
select_point: bool | None = False,
|
|
341
|
+
move_point: bool | None = False,
|
|
342
|
+
cycle_handle_type: bool | None = False,
|
|
343
|
+
radius: float | None = 0.01,
|
|
344
|
+
) -> None:
|
|
345
|
+
"""Construct and edit Bézier curves
|
|
346
|
+
|
|
347
|
+
:type execution_context: int | str | None
|
|
348
|
+
:type undo: bool | None
|
|
349
|
+
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
350
|
+
:type extend: bool | None
|
|
351
|
+
:param deselect: Deselect, Remove from selection
|
|
352
|
+
:type deselect: bool | None
|
|
353
|
+
:param toggle: Toggle Selection, Toggle the selection
|
|
354
|
+
:type toggle: bool | None
|
|
355
|
+
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
356
|
+
:type deselect_all: bool | None
|
|
357
|
+
:param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
|
|
358
|
+
:type select_passthrough: bool | None
|
|
359
|
+
:param extrude_point: Extrude Point, Add a point connected to the last selected point
|
|
360
|
+
:type extrude_point: bool | None
|
|
361
|
+
:param extrude_handle: Extrude Handle Type, Type of the extruded handle
|
|
362
|
+
:type extrude_handle: typing.Literal['AUTO','VECTOR'] | None
|
|
363
|
+
:param delete_point: Delete Point, Delete an existing point
|
|
364
|
+
:type delete_point: bool | None
|
|
365
|
+
:param insert_point: Insert Point, Insert Point into a curve segment
|
|
366
|
+
:type insert_point: bool | None
|
|
367
|
+
:param move_segment: Move Segment, Delete an existing point
|
|
368
|
+
:type move_segment: bool | None
|
|
369
|
+
:param select_point: Select Point, Select a point or its handles
|
|
370
|
+
:type select_point: bool | None
|
|
371
|
+
:param move_point: Move Point, Move a point or its handles
|
|
372
|
+
:type move_point: bool | None
|
|
373
|
+
:param cycle_handle_type: Cycle Handle Type, Cycle between all four handle types
|
|
374
|
+
:type cycle_handle_type: bool | None
|
|
375
|
+
:param radius: Radius
|
|
376
|
+
:type radius: float | None
|
|
377
|
+
"""
|
|
378
|
+
|
|
325
379
|
def sculptmode_toggle(
|
|
326
380
|
execution_context: int | str | None = None,
|
|
327
381
|
undo: bool | None = None,
|
|
@@ -1579,7 +1579,7 @@ def set_handle_type(
|
|
|
1579
1579
|
type: typing.Literal["AUTO", "VECTOR", "ALIGN", "FREE_ALIGN", "TOGGLE_FREE_ALIGN"]
|
|
1580
1580
|
| None = "AUTO",
|
|
1581
1581
|
) -> None:
|
|
1582
|
-
"""Set the handle type for
|
|
1582
|
+
"""Set the handle type for Bézier curves
|
|
1583
1583
|
|
|
1584
1584
|
:type execution_context: int | str | None
|
|
1585
1585
|
:type undo: bool | None
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -3341,7 +3341,7 @@ def paths_calculate(
|
|
|
3341
3341
|
|
|
3342
3342
|
:type execution_context: int | str | None
|
|
3343
3343
|
:type undo: bool | None
|
|
3344
|
-
:param display_type: Display
|
|
3344
|
+
:param display_type: Display Type
|
|
3345
3345
|
:type display_type: bpy.stub_internal.rna_enums.MotionpathDisplayTypeItems | None
|
|
3346
3346
|
:param range: Computation Range
|
|
3347
3347
|
:type range: bpy.stub_internal.rna_enums.MotionpathRangeItems | None
|
bpy/ops/pose/__init__.pyi
CHANGED
|
@@ -380,7 +380,7 @@ def paths_calculate(
|
|
|
380
380
|
|
|
381
381
|
:type execution_context: int | str | None
|
|
382
382
|
:type undo: bool | None
|
|
383
|
-
:param display_type: Display
|
|
383
|
+
:param display_type: Display Type
|
|
384
384
|
:type display_type: bpy.stub_internal.rna_enums.MotionpathDisplayTypeItems | None
|
|
385
385
|
:param range: Computation Range
|
|
386
386
|
:type range: bpy.stub_internal.rna_enums.MotionpathRangeItems | None
|
bpy/ops/scene/__init__.pyi
CHANGED
|
@@ -336,7 +336,7 @@ def gpencil_brush_preset_add(
|
|
|
336
336
|
remove_name: bool | None = False,
|
|
337
337
|
remove_active: bool | None = False,
|
|
338
338
|
) -> None:
|
|
339
|
-
"""Add or remove
|
|
339
|
+
"""Add or remove Grease Pencil brush preset
|
|
340
340
|
|
|
341
341
|
:type execution_context: int | str | None
|
|
342
342
|
:type undo: bool | None
|
bpy/types/__init__.pyi
CHANGED
|
@@ -128858,6 +128858,12 @@ class BlendFileColorspace(bpy_struct):
|
|
|
128858
128858
|
:type: typing.Literal['Linear Rec.709','Linear Rec.2020','ACEScg']
|
|
128859
128859
|
"""
|
|
128860
128860
|
|
|
128861
|
+
working_space_interop_id: str
|
|
128862
|
+
""" Unique identifier for common color spaces, as defined by the Color Interop Forum. May be empty if there is no interop ID for the working space. Common values are lin_rec709_scene, lin_rec2020_scene and lin_ap1_scene (for ACEScg)
|
|
128863
|
+
|
|
128864
|
+
:type: str
|
|
128865
|
+
"""
|
|
128866
|
+
|
|
128861
128867
|
@classmethod
|
|
128862
128868
|
def bl_rna_get_subclass(
|
|
128863
128869
|
cls,
|
|
@@ -216619,7 +216625,7 @@ class PreferencesEdit(bpy_struct):
|
|
|
216619
216625
|
"""
|
|
216620
216626
|
|
|
216621
216627
|
use_duplicate_grease_pencil: bool
|
|
216622
|
-
""" Causes
|
|
216628
|
+
""" Causes Grease Pencil data to be duplicated with the object
|
|
216623
216629
|
|
|
216624
216630
|
:type: bool
|
|
216625
216631
|
"""
|
|
@@ -82,7 +82,7 @@ bl_operators/object/__init__.pyi,sha256=WL-2d1wfdQWpEW5HLAoydXAZ-hTS1XNuCvvBbBZk
|
|
|
82
82
|
bl_operators/object_align/__init__.pyi,sha256=cIFVbPyqmsT_0mzCab_nbOajR4tBKzwz0QTyrGluEJ4,1082
|
|
83
83
|
bl_operators/object_quick_effects/__init__.pyi,sha256=1yY2UcQxHNhD90DRUjZy1kXxp4EEG0YDiaQN33ChReg,3150
|
|
84
84
|
bl_operators/object_randomize_transform/__init__.pyi,sha256=DUSXoHa6pZWxEVxnPJNTPKetPFRKe4SbYwlmMdTJAjU,986
|
|
85
|
-
bl_operators/presets/__init__.pyi,sha256
|
|
85
|
+
bl_operators/presets/__init__.pyi,sha256=-aEk2FzvujA7gdePcaqNkv8ToVvwzIk_OrVbrlWAK9Y,18551
|
|
86
86
|
bl_operators/rigidbody/__init__.pyi,sha256=eSVtc3PeZ93b3R-2ZShmd-T10oJV5h-0_h5fu_dUvTU,2546
|
|
87
87
|
bl_operators/screen_play_rendered_anim/__init__.pyi,sha256=HoI-vH19KlkNOhJq0xt2EsVJ7lJwgfwqFqc8bY8S1eI,828
|
|
88
88
|
bl_operators/sequencer/__init__.pyi,sha256=xmS2cuJovjFXVsMwf_GHrsQwupoICmx5yqtsexkl6fY,7896
|
|
@@ -175,7 +175,7 @@ bl_ui/space_statusbar/__init__.pyi,sha256=V-oUoxSsgIpi-jzqct_gz2vjFYkIqOffmuI4W7
|
|
|
175
175
|
bl_ui/space_text/__init__.pyi,sha256=k864SRJgY7mgqqsu8KAhNGilMHMgMzjew1aeEHTtiYo,8996
|
|
176
176
|
bl_ui/space_time/__init__.pyi,sha256=VwvieO14tuq0m-kYHJXz6maKEmQRAD7J2tQUrdNqI9E,4620
|
|
177
177
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=0wapsLJDJuc7K6B5kjWvB9_dWN5e3_6WNWf_ZEChlmk,3436
|
|
178
|
-
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=
|
|
178
|
+
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=dQwdOGNAgnkffHQ0H8OIoyMkvBldyI7aC_8e4oM-WJE,10781
|
|
179
179
|
bl_ui/space_topbar/__init__.pyi,sha256=9MO703ewWr9Av2UGhd_tTQK8Okq8N3qw2SXOhZodeTk,15642
|
|
180
180
|
bl_ui/space_userpref/__init__.pyi,sha256=u95zjkh77q4EWr3AfnZRjryl11SX_X9hQR-091164ck,81754
|
|
181
181
|
bl_ui/space_view3d/__init__.pyi,sha256=sBby33ozbCunGLmCtaroL-zOGOzesPuAmQjmhkAOT8U,159488
|
|
@@ -218,7 +218,7 @@ bpy/ops/collection/__init__.pyi,sha256=jYzYuIsq_H8P0xB0c5LGVRBOMkVrkCCxZgeQWItiT
|
|
|
218
218
|
bpy/ops/console/__init__.pyi,sha256=J0C91N5SOZJyqgdsP4cRVsi0VWB4WsicmB7f3o7nBtc,7667
|
|
219
219
|
bpy/ops/constraint/__init__.pyi,sha256=xXAGzEua07ldnVtUs1sFkCmSR01qStTdMZ0z4E-IXl0,12048
|
|
220
220
|
bpy/ops/curve/__init__.pyi,sha256=lSHR_PQ9PxJUcqwJYxvY2gKi_6sgkc05U91bJD--7-0,29421
|
|
221
|
-
bpy/ops/curves/__init__.pyi,sha256=
|
|
221
|
+
bpy/ops/curves/__init__.pyi,sha256=WhuUjpiSfvNLwrCciPwxCdDzuTumABZmgQhwy9tRuN4,18970
|
|
222
222
|
bpy/ops/cycles/__init__.pyi,sha256=ltPk5-40G7apmbFuKiDbeRxCwg3FsKP-Hk3Y5XtwYQ8,1795
|
|
223
223
|
bpy/ops/dpaint/__init__.pyi,sha256=GhrndgrnnljHoo5StXuwo2ulGG8B3yLWx-1bsJiEKCE,1682
|
|
224
224
|
bpy/ops/ed/__init__.pyi,sha256=wLtlE0feDn7m_M5HetFeyY0ZgsFPlkFW6TSUt1leKjM,7248
|
|
@@ -232,7 +232,7 @@ bpy/ops/geometry/__init__.pyi,sha256=6XA77z_tOSTs3MwmsEK1WI53E_61kURrxvYnHqYBTAI
|
|
|
232
232
|
bpy/ops/gizmogroup/__init__.pyi,sha256=fJ82n8AFYtAfDBQIZQ2J6hhM680Uk_71x6KO2lAa3Ck,1323
|
|
233
233
|
bpy/ops/gpencil/__init__.pyi,sha256=kKqt8NtifAenrn2I9DPU0hs4MH-Cgb4ICLLZdhBj6jE,5005
|
|
234
234
|
bpy/ops/graph/__init__.pyi,sha256=YNLtqDBmwwI5-nSoSdUJkBTMMa0_wjsSMYnvTrXzj2c,43175
|
|
235
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
235
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=pCqO4T7foL3XIB8bKnMmAdeLkdGggNKHoKdsMu8djuM,69154
|
|
236
236
|
bpy/ops/image/__init__.pyi,sha256=MrhR6AN9YCSQNdo2WeyxEjczERJF7YfCRqNdEReiwAA,50655
|
|
237
237
|
bpy/ops/import_anim/__init__.pyi,sha256=bRBpz8satL8tj-2DVrxVKG6q4HziERb9fwZE9QPERE0,3078
|
|
238
238
|
bpy/ops/import_curve/__init__.pyi,sha256=x6_ydotHUBHRI2ZT5ZIQ7s-70JShBL38melEwMU-00g,831
|
|
@@ -246,20 +246,20 @@ bpy/ops/mball/__init__.pyi,sha256=3avjhyGC4WLxkWeTp16xJjaN3dp05ecbIXJnc2EtXVs,42
|
|
|
246
246
|
bpy/ops/mesh/__init__.pyi,sha256=jOS4UBLsZrHh24SJH5hJgFl-GDV6HM1PCVSQSjUK8Sw,132537
|
|
247
247
|
bpy/ops/nla/__init__.pyi,sha256=xj5WdhNuTLCf0XbePE1XPiPfS78Ea45lA28gOntmOFI,18812
|
|
248
248
|
bpy/ops/node/__init__.pyi,sha256=wz_5UIzSRm3AsL9LMAQGvOrVdx7vemAZDlhR76brKYA,66591
|
|
249
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
249
|
+
bpy/ops/object/__init__.pyi,sha256=Ll59LJ8RY-R_my_-dUYTGYuzLmlpUJETY58gLXrfv7I,172971
|
|
250
250
|
bpy/ops/outliner/__init__.pyi,sha256=ynP3AYcSIvRaROgjkuUMwL2F5P085Q_VVOZjhVC4VeY,29325
|
|
251
251
|
bpy/ops/paint/__init__.pyi,sha256=14ik0wFRdTfSOMWb-ZQBc5FLHtq8xFeGiLMqrmtj374,38326
|
|
252
252
|
bpy/ops/paintcurve/__init__.pyi,sha256=CyJ287wx58BG_V8H0yrKF8f01MUkuQLPMhlbSop8Tlw,3143
|
|
253
253
|
bpy/ops/palette/__init__.pyi,sha256=arZADeq1E2pbQE4cC4GdC9G3mrj31cbU2b4X_jiCdMY,2230
|
|
254
254
|
bpy/ops/particle/__init__.pyi,sha256=yWaqgUeRvSlMs-0msSrT3EHoiDrYXsqeEJDQ7zK9yLo,14503
|
|
255
255
|
bpy/ops/pointcloud/__init__.pyi,sha256=ncp0W4VO2eKWg0w0RbiCMX0T6Pp8lHgkuCozdZYV0cw,3980
|
|
256
|
-
bpy/ops/pose/__init__.pyi,sha256=
|
|
256
|
+
bpy/ops/pose/__init__.pyi,sha256=A3-d0foPDJrVEdxWK27m7rtwsv3jvgzG3vrn39YC6S0,28170
|
|
257
257
|
bpy/ops/poselib/__init__.pyi,sha256=DOXa3tG3CV3zzklAPwfwqnbWwSZ0Cxv6E71a6Hs0oLQ,6451
|
|
258
258
|
bpy/ops/preferences/__init__.pyi,sha256=ExaBIhejgkAc7k2DPX7S8II-gEXFmfZOoQVcw_Iom0E,19795
|
|
259
259
|
bpy/ops/ptcache/__init__.pyi,sha256=alDSJmgA1aKoMo46EDHirj_L-9Xc7RvfCh27DRnRuWc,1834
|
|
260
260
|
bpy/ops/render/__init__.pyi,sha256=CaNY2941_VXzPCw8Ul_1x-DYcnpjt9-vUmscqbIM15Y,7603
|
|
261
261
|
bpy/ops/rigidbody/__init__.pyi,sha256=v64_7HMafJtwLVXcSTnPOLtjSGmKECr3nq80TRtDWhU,6971
|
|
262
|
-
bpy/ops/scene/__init__.pyi,sha256=
|
|
262
|
+
bpy/ops/scene/__init__.pyi,sha256=NoezoIil56K989Z2JgdR0xIclzZApS5FimH7AlLrPJk,15611
|
|
263
263
|
bpy/ops/screen/__init__.pyi,sha256=JVe5VWQxsb64V0cJ5DATt1h7wlBwW16qhjlQdzoux3s,20369
|
|
264
264
|
bpy/ops/script/__init__.pyi,sha256=xMWzlcdSykwWgk_ck_Mnv6pbex532LfNek21C_cWAjU,1047
|
|
265
265
|
bpy/ops/sculpt/__init__.pyi,sha256=hG_cuhBwa_WW7u_k9zObI0VoWkCkL8KK1r6kj7V5YKY,51567
|
|
@@ -284,7 +284,7 @@ bpy/path/__init__.pyi,sha256=Phd8a6fB3496L7_LUhdwPNwkh3qy_4O-MS5br9RMfO0,5536
|
|
|
284
284
|
bpy/props/__init__.pyi,sha256=NSOu8SY2_uXzyQ55AEuvhZGHY-4IZjDT3qqtszfLfwI,50980
|
|
285
285
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
286
286
|
bpy/stub_internal/rna_enums/__init__.pyi,sha256=cccGqmWM38q4vdyIjUmKbaXWFJayGAyZJAq5EOdVZBc,143214
|
|
287
|
-
bpy/types/__init__.pyi,sha256=
|
|
287
|
+
bpy/types/__init__.pyi,sha256=jQ_tIO5GP6KXGhn_I9VxUrW33FS8x4t6nSICZ5Kpq08,5913692
|
|
288
288
|
bpy/utils/__init__.pyi,sha256=GGYp2g381aOdE7tWXvRGVbmhijbfgt4wGAtJGgbvyJg,15526
|
|
289
289
|
bpy/utils/previews/__init__.pyi,sha256=iSZemSCPu1S2BjAQO83Z-FqEo1nGHRCEIEduXB6hQhc,2357
|
|
290
290
|
bpy/utils/units/__init__.pyi,sha256=cpE9IZPkYPBexru7R9HQ_c0931d7R7Dvib2Uf7V0JJs,2645
|
|
@@ -364,7 +364,7 @@ rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
|
364
364
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
365
|
rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
|
|
366
366
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
|
-
fake_bpy_module-
|
|
368
|
-
fake_bpy_module-
|
|
369
|
-
fake_bpy_module-
|
|
370
|
-
fake_bpy_module-
|
|
367
|
+
fake_bpy_module-20250908.dist-info/METADATA,sha256=xhdqW614lFfd4tEN-lMz3ty7Tn_1nz4PgEocfupCLCw,7429
|
|
368
|
+
fake_bpy_module-20250908.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
369
|
+
fake_bpy_module-20250908.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
|
|
370
|
+
fake_bpy_module-20250908.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|