fake-bpy-module 20250907__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_ui/space_toolsystem_toolbar/__init__.pyi +1 -0
- bpy/ops/curves/__init__.pyi +54 -0
- bpy/types/__init__.pyi +6 -0
- {fake_bpy_module-20250907.dist-info → fake_bpy_module-20250908.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250907.dist-info → fake_bpy_module-20250908.dist-info}/RECORD +7 -7
- {fake_bpy_module-20250907.dist-info → fake_bpy_module-20250908.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250907.dist-info → fake_bpy_module-20250908.dist-info}/top_level.txt +0 -0
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,
|
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,
|
|
@@ -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
|
|
@@ -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
|