fake-bpy-module 20250905__py3-none-any.whl → 20250906__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/properties_render/__init__.pyi +31 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +2 -0
- bl_ui/space_userpref/__init__.pyi +36 -0
- bpy/ops/sequencer/__init__.pyi +42 -0
- bpy/ops/wm/__init__.pyi +18 -0
- bpy/types/__init__.pyi +277 -0
- {fake_bpy_module-20250905.dist-info → fake_bpy_module-20250906.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250905.dist-info → fake_bpy_module-20250906.dist-info}/RECORD +11 -11
- mathutils/__init__.pyi +28 -0
- {fake_bpy_module-20250905.dist-info → fake_bpy_module-20250906.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250905.dist-info → fake_bpy_module-20250906.dist-info}/top_level.txt +0 -0
|
@@ -162,6 +162,37 @@ class RENDER_PT_color_management_white_balance_presets(
|
|
|
162
162
|
:rtype: typing.Any
|
|
163
163
|
"""
|
|
164
164
|
|
|
165
|
+
class RENDER_PT_color_management_working_space(RenderButtonsPanel, _bpy_types.Panel):
|
|
166
|
+
COMPAT_ENGINES: typing.Any
|
|
167
|
+
bl_context: typing.Any
|
|
168
|
+
bl_label: typing.Any
|
|
169
|
+
bl_options: typing.Any
|
|
170
|
+
bl_parent_id: typing.Any
|
|
171
|
+
bl_region_type: typing.Any
|
|
172
|
+
bl_rna: typing.Any
|
|
173
|
+
bl_space_type: typing.Any
|
|
174
|
+
id_data: typing.Any
|
|
175
|
+
|
|
176
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
177
|
+
"""
|
|
178
|
+
|
|
179
|
+
:return: The RNA type or default when not found.
|
|
180
|
+
:rtype: bpy.types.Struct
|
|
181
|
+
"""
|
|
182
|
+
|
|
183
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
184
|
+
"""
|
|
185
|
+
|
|
186
|
+
:return: The class or default when not found.
|
|
187
|
+
:rtype: typing.Any
|
|
188
|
+
"""
|
|
189
|
+
|
|
190
|
+
def draw(self, context) -> None:
|
|
191
|
+
"""
|
|
192
|
+
|
|
193
|
+
:param context:
|
|
194
|
+
"""
|
|
195
|
+
|
|
165
196
|
class RENDER_PT_context(_bpy_types.Panel):
|
|
166
197
|
bl_context: typing.Any
|
|
167
198
|
bl_label: typing.Any
|
|
@@ -1445,6 +1445,42 @@ class USERPREF_PT_input_touchpad(CenterAlignMixIn, InputPanel, _bpy_types.Panel)
|
|
|
1445
1445
|
:param context:
|
|
1446
1446
|
"""
|
|
1447
1447
|
|
|
1448
|
+
class USERPREF_PT_interface_accessibility(
|
|
1449
|
+
CenterAlignMixIn, InterfacePanel, _bpy_types.Panel
|
|
1450
|
+
):
|
|
1451
|
+
"""Base class for panels to center align contents with some horizontal margin.
|
|
1452
|
+
Deriving classes need to implement a draw_centered(context, layout) function.
|
|
1453
|
+
"""
|
|
1454
|
+
|
|
1455
|
+
bl_context: typing.Any
|
|
1456
|
+
bl_label: typing.Any
|
|
1457
|
+
bl_options: typing.Any
|
|
1458
|
+
bl_region_type: typing.Any
|
|
1459
|
+
bl_rna: typing.Any
|
|
1460
|
+
bl_space_type: typing.Any
|
|
1461
|
+
id_data: typing.Any
|
|
1462
|
+
|
|
1463
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1464
|
+
"""
|
|
1465
|
+
|
|
1466
|
+
:return: The RNA type or default when not found.
|
|
1467
|
+
:rtype: bpy.types.Struct
|
|
1468
|
+
"""
|
|
1469
|
+
|
|
1470
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1471
|
+
"""
|
|
1472
|
+
|
|
1473
|
+
:return: The class or default when not found.
|
|
1474
|
+
:rtype: typing.Any
|
|
1475
|
+
"""
|
|
1476
|
+
|
|
1477
|
+
def draw_centered(self, context, layout) -> None:
|
|
1478
|
+
"""
|
|
1479
|
+
|
|
1480
|
+
:param context:
|
|
1481
|
+
:param layout:
|
|
1482
|
+
"""
|
|
1483
|
+
|
|
1448
1484
|
class USERPREF_PT_interface_display(CenterAlignMixIn, InterfacePanel, _bpy_types.Panel):
|
|
1449
1485
|
"""Base class for panels to center align contents with some horizontal margin.
|
|
1450
1486
|
Deriving classes need to implement a draw_centered(context, layout) function.
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1199,6 +1199,8 @@ def paste(
|
|
|
1199
1199
|
/,
|
|
1200
1200
|
*,
|
|
1201
1201
|
keep_offset: bool | None = False,
|
|
1202
|
+
x: int | None = 0,
|
|
1203
|
+
y: int | None = 0,
|
|
1202
1204
|
) -> None:
|
|
1203
1205
|
"""Paste strips from the internal clipboard
|
|
1204
1206
|
|
|
@@ -1206,6 +1208,10 @@ def paste(
|
|
|
1206
1208
|
:type undo: bool | None
|
|
1207
1209
|
:param keep_offset: Keep Offset, Keep strip offset relative to the current frame when pasting
|
|
1208
1210
|
:type keep_offset: bool | None
|
|
1211
|
+
:param x: X
|
|
1212
|
+
:type x: int | None
|
|
1213
|
+
:param y: Y
|
|
1214
|
+
:type y: int | None
|
|
1209
1215
|
"""
|
|
1210
1216
|
|
|
1211
1217
|
def preview_duplicate_move(
|
|
@@ -1808,6 +1814,42 @@ def select_handles(
|
|
|
1808
1814
|
:type side: typing.Literal['LEFT','RIGHT','BOTH','LEFT_NEIGHBOR','RIGHT_NEIGHBOR','BOTH_NEIGHBORS'] | None
|
|
1809
1815
|
"""
|
|
1810
1816
|
|
|
1817
|
+
def select_lasso(
|
|
1818
|
+
execution_context: int | str | None = None,
|
|
1819
|
+
undo: bool | None = None,
|
|
1820
|
+
/,
|
|
1821
|
+
*,
|
|
1822
|
+
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1823
|
+
use_smooth_stroke: bool | None = False,
|
|
1824
|
+
smooth_stroke_factor: float | None = 0.75,
|
|
1825
|
+
smooth_stroke_radius: int | None = 35,
|
|
1826
|
+
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
1827
|
+
) -> None:
|
|
1828
|
+
"""Select strips using lasso selection
|
|
1829
|
+
|
|
1830
|
+
:type execution_context: int | str | None
|
|
1831
|
+
:type undo: bool | None
|
|
1832
|
+
:param path: Path
|
|
1833
|
+
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
1834
|
+
:param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
|
|
1835
|
+
:type use_smooth_stroke: bool | None
|
|
1836
|
+
:param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
|
|
1837
|
+
:type smooth_stroke_factor: float | None
|
|
1838
|
+
:param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
|
|
1839
|
+
:type smooth_stroke_radius: int | None
|
|
1840
|
+
:param mode: Mode
|
|
1841
|
+
|
|
1842
|
+
SET
|
|
1843
|
+
Set -- Set a new selection.
|
|
1844
|
+
|
|
1845
|
+
ADD
|
|
1846
|
+
Extend -- Extend existing selection.
|
|
1847
|
+
|
|
1848
|
+
SUB
|
|
1849
|
+
Subtract -- Subtract existing selection.
|
|
1850
|
+
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
1851
|
+
"""
|
|
1852
|
+
|
|
1811
1853
|
def select_less(
|
|
1812
1854
|
execution_context: int | str | None = None,
|
|
1813
1855
|
undo: bool | None = None,
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -4223,6 +4223,24 @@ def set_stereo_3d(
|
|
|
4223
4223
|
:type use_sidebyside_crosseyed: bool | None
|
|
4224
4224
|
"""
|
|
4225
4225
|
|
|
4226
|
+
def set_working_color_space(
|
|
4227
|
+
execution_context: int | str | None = None,
|
|
4228
|
+
undo: bool | None = None,
|
|
4229
|
+
/,
|
|
4230
|
+
*,
|
|
4231
|
+
convert_colors: bool | None = True,
|
|
4232
|
+
working_space: str | None = "",
|
|
4233
|
+
) -> None:
|
|
4234
|
+
"""Change the working color space of all colors in this blend file
|
|
4235
|
+
|
|
4236
|
+
:type execution_context: int | str | None
|
|
4237
|
+
:type undo: bool | None
|
|
4238
|
+
:param convert_colors: Convert Colors in All Data-blocks, Change colors in all data-blocks to the new working space
|
|
4239
|
+
:type convert_colors: bool | None
|
|
4240
|
+
:param working_space: Working Space, Color space to set
|
|
4241
|
+
:type working_space: str | None
|
|
4242
|
+
"""
|
|
4243
|
+
|
|
4226
4244
|
def splash(
|
|
4227
4245
|
execution_context: int | str | None = None,
|
|
4228
4246
|
undo: bool | None = None,
|
bpy/types/__init__.pyi
CHANGED
|
@@ -6400,6 +6400,102 @@ The USDHookExample
|
|
|
6400
6400
|
:columns: 2
|
|
6401
6401
|
|
|
6402
6402
|
|
|
6403
|
+
--------------------
|
|
6404
|
+
|
|
6405
|
+
* bpy_struct.id_data
|
|
6406
|
+
* Node.type
|
|
6407
|
+
* Node.location
|
|
6408
|
+
* Node.location_absolute
|
|
6409
|
+
* Node.width
|
|
6410
|
+
* Node.height
|
|
6411
|
+
* Node.dimensions
|
|
6412
|
+
* Node.name
|
|
6413
|
+
* Node.label
|
|
6414
|
+
* Node.inputs
|
|
6415
|
+
* Node.outputs
|
|
6416
|
+
* Node.internal_links
|
|
6417
|
+
* Node.parent
|
|
6418
|
+
* Node.warning_propagation
|
|
6419
|
+
* Node.use_custom_color
|
|
6420
|
+
* Node.color
|
|
6421
|
+
* Node.color_tag
|
|
6422
|
+
* Node.select
|
|
6423
|
+
* Node.show_options
|
|
6424
|
+
* Node.show_preview
|
|
6425
|
+
* Node.hide
|
|
6426
|
+
* Node.mute
|
|
6427
|
+
* Node.show_texture
|
|
6428
|
+
* Node.bl_idname
|
|
6429
|
+
* Node.bl_label
|
|
6430
|
+
* Node.bl_description
|
|
6431
|
+
* Node.bl_icon
|
|
6432
|
+
* Node.bl_static_type
|
|
6433
|
+
* Node.bl_width_default
|
|
6434
|
+
* Node.bl_width_min
|
|
6435
|
+
* Node.bl_width_max
|
|
6436
|
+
* Node.bl_height_default
|
|
6437
|
+
* Node.bl_height_min
|
|
6438
|
+
* Node.bl_height_max
|
|
6439
|
+
|
|
6440
|
+
:columns: 2
|
|
6441
|
+
|
|
6442
|
+
|
|
6443
|
+
--------------------
|
|
6444
|
+
|
|
6445
|
+
* bpy_struct.as_pointer
|
|
6446
|
+
* bpy_struct.driver_add
|
|
6447
|
+
* bpy_struct.driver_remove
|
|
6448
|
+
* bpy_struct.get
|
|
6449
|
+
* bpy_struct.id_properties_clear
|
|
6450
|
+
* bpy_struct.id_properties_ensure
|
|
6451
|
+
* bpy_struct.id_properties_ui
|
|
6452
|
+
* bpy_struct.is_property_hidden
|
|
6453
|
+
* bpy_struct.is_property_overridable_library
|
|
6454
|
+
* bpy_struct.is_property_readonly
|
|
6455
|
+
* bpy_struct.is_property_set
|
|
6456
|
+
* bpy_struct.items
|
|
6457
|
+
* bpy_struct.keyframe_delete
|
|
6458
|
+
* bpy_struct.keyframe_insert
|
|
6459
|
+
* bpy_struct.keys
|
|
6460
|
+
* bpy_struct.path_from_id
|
|
6461
|
+
* bpy_struct.path_resolve
|
|
6462
|
+
* bpy_struct.pop
|
|
6463
|
+
* bpy_struct.property_overridable_library_set
|
|
6464
|
+
* bpy_struct.property_unset
|
|
6465
|
+
* bpy_struct.rna_ancestors
|
|
6466
|
+
* bpy_struct.type_recast
|
|
6467
|
+
* bpy_struct.values
|
|
6468
|
+
* Node.bl_system_properties_get
|
|
6469
|
+
* Node.socket_value_update
|
|
6470
|
+
* Node.is_registered_node_type
|
|
6471
|
+
* Node.poll
|
|
6472
|
+
* Node.poll_instance
|
|
6473
|
+
* Node.update
|
|
6474
|
+
* Node.insert_link
|
|
6475
|
+
* Node.init
|
|
6476
|
+
* Node.copy
|
|
6477
|
+
* Node.free
|
|
6478
|
+
* Node.draw_buttons
|
|
6479
|
+
* Node.draw_buttons_ext
|
|
6480
|
+
* Node.draw_label
|
|
6481
|
+
* Node.debug_zone_body_lazy_function_graph
|
|
6482
|
+
* Node.debug_zone_lazy_function_graph
|
|
6483
|
+
* Node.poll
|
|
6484
|
+
* Node.bl_rna_get_subclass
|
|
6485
|
+
* Node.bl_rna_get_subclass_py
|
|
6486
|
+
* NodeInternal.poll
|
|
6487
|
+
* NodeInternal.poll_instance
|
|
6488
|
+
* NodeInternal.update
|
|
6489
|
+
* NodeInternal.draw_buttons
|
|
6490
|
+
* NodeInternal.draw_buttons_ext
|
|
6491
|
+
* NodeInternal.bl_rna_get_subclass
|
|
6492
|
+
* NodeInternal.bl_rna_get_subclass_py
|
|
6493
|
+
* FunctionNode.bl_rna_get_subclass
|
|
6494
|
+
* FunctionNode.bl_rna_get_subclass_py
|
|
6495
|
+
|
|
6496
|
+
:columns: 2
|
|
6497
|
+
|
|
6498
|
+
|
|
6403
6499
|
--------------------
|
|
6404
6500
|
|
|
6405
6501
|
* bpy_struct.id_data
|
|
@@ -59208,6 +59304,8 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
59208
59304
|
* FunctionNodeSliceString.output_template
|
|
59209
59305
|
* FunctionNodeStringLength.input_template
|
|
59210
59306
|
* FunctionNodeStringLength.output_template
|
|
59307
|
+
* FunctionNodeStringToValue.input_template
|
|
59308
|
+
* FunctionNodeStringToValue.output_template
|
|
59211
59309
|
* FunctionNodeTransformDirection.input_template
|
|
59212
59310
|
* FunctionNodeTransformDirection.output_template
|
|
59213
59311
|
* FunctionNodeTransformPoint.input_template
|
|
@@ -76315,6 +76413,49 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
76315
76413
|
:columns: 2
|
|
76316
76414
|
|
|
76317
76415
|
|
|
76416
|
+
--------------------
|
|
76417
|
+
|
|
76418
|
+
* bpy_struct.id_data
|
|
76419
|
+
|
|
76420
|
+
:columns: 2
|
|
76421
|
+
|
|
76422
|
+
|
|
76423
|
+
--------------------
|
|
76424
|
+
|
|
76425
|
+
* bpy_struct.as_pointer
|
|
76426
|
+
* bpy_struct.driver_add
|
|
76427
|
+
* bpy_struct.driver_remove
|
|
76428
|
+
* bpy_struct.get
|
|
76429
|
+
* bpy_struct.id_properties_clear
|
|
76430
|
+
* bpy_struct.id_properties_ensure
|
|
76431
|
+
* bpy_struct.id_properties_ui
|
|
76432
|
+
* bpy_struct.is_property_hidden
|
|
76433
|
+
* bpy_struct.is_property_overridable_library
|
|
76434
|
+
* bpy_struct.is_property_readonly
|
|
76435
|
+
* bpy_struct.is_property_set
|
|
76436
|
+
* bpy_struct.items
|
|
76437
|
+
* bpy_struct.keyframe_delete
|
|
76438
|
+
* bpy_struct.keyframe_insert
|
|
76439
|
+
* bpy_struct.keys
|
|
76440
|
+
* bpy_struct.path_from_id
|
|
76441
|
+
* bpy_struct.path_resolve
|
|
76442
|
+
* bpy_struct.pop
|
|
76443
|
+
* bpy_struct.property_overridable_library_set
|
|
76444
|
+
* bpy_struct.property_unset
|
|
76445
|
+
* bpy_struct.rna_ancestors
|
|
76446
|
+
* bpy_struct.type_recast
|
|
76447
|
+
* bpy_struct.values
|
|
76448
|
+
|
|
76449
|
+
:columns: 2
|
|
76450
|
+
|
|
76451
|
+
|
|
76452
|
+
--------------------
|
|
76453
|
+
|
|
76454
|
+
* BlendData.colorspace
|
|
76455
|
+
|
|
76456
|
+
:columns: 2
|
|
76457
|
+
|
|
76458
|
+
|
|
76318
76459
|
--------------------
|
|
76319
76460
|
|
|
76320
76461
|
* bpy_struct.id_data
|
|
@@ -128382,6 +128523,12 @@ class BlendData(bpy_struct):
|
|
|
128382
128523
|
:type: BlendDataCollections
|
|
128383
128524
|
"""
|
|
128384
128525
|
|
|
128526
|
+
colorspace: BlendFileColorspace
|
|
128527
|
+
""" Information about the color space used for data-blocks in a blend file
|
|
128528
|
+
|
|
128529
|
+
:type: BlendFileColorspace
|
|
128530
|
+
"""
|
|
128531
|
+
|
|
128385
128532
|
curves: BlendDataCurves
|
|
128386
128533
|
""" Curve data-blocks
|
|
128387
128534
|
|
|
@@ -128696,6 +128843,53 @@ class BlendData(bpy_struct):
|
|
|
128696
128843
|
:rtype: dict[ID]
|
|
128697
128844
|
"""
|
|
128698
128845
|
|
|
128846
|
+
class BlendFileColorspace(bpy_struct):
|
|
128847
|
+
"""Information about the color space used for data-blocks in a blend file"""
|
|
128848
|
+
|
|
128849
|
+
is_missing_opencolorio_config: bool
|
|
128850
|
+
""" A color space, view or display was not found, which likely means the OpenColorIO config used to create this blend file is missing
|
|
128851
|
+
|
|
128852
|
+
:type: bool
|
|
128853
|
+
"""
|
|
128854
|
+
|
|
128855
|
+
working_space: typing.Literal["Linear Rec.709", "Linear Rec.2020", "ACEScg"]
|
|
128856
|
+
""" Color space used for all scene linear colors in this file, and for compositing, shader and geometry nodes processing
|
|
128857
|
+
|
|
128858
|
+
:type: typing.Literal['Linear Rec.709','Linear Rec.2020','ACEScg']
|
|
128859
|
+
"""
|
|
128860
|
+
|
|
128861
|
+
@classmethod
|
|
128862
|
+
def bl_rna_get_subclass(
|
|
128863
|
+
cls,
|
|
128864
|
+
id: str | None,
|
|
128865
|
+
default=None,
|
|
128866
|
+
/,
|
|
128867
|
+
) -> Struct:
|
|
128868
|
+
"""
|
|
128869
|
+
|
|
128870
|
+
:param id: The RNA type identifier.
|
|
128871
|
+
:type id: str | None
|
|
128872
|
+
:param default:
|
|
128873
|
+
:return: The RNA type or default when not found.
|
|
128874
|
+
:rtype: Struct
|
|
128875
|
+
"""
|
|
128876
|
+
|
|
128877
|
+
@classmethod
|
|
128878
|
+
def bl_rna_get_subclass_py(
|
|
128879
|
+
cls,
|
|
128880
|
+
id: str | None,
|
|
128881
|
+
default=None,
|
|
128882
|
+
/,
|
|
128883
|
+
) -> typing.Any:
|
|
128884
|
+
"""
|
|
128885
|
+
|
|
128886
|
+
:param id: The RNA type identifier.
|
|
128887
|
+
:type id: str | None
|
|
128888
|
+
:param default:
|
|
128889
|
+
:return: The class or default when not found.
|
|
128890
|
+
:rtype: typing.Any
|
|
128891
|
+
"""
|
|
128892
|
+
|
|
128699
128893
|
class BlendImportContext(bpy_struct):
|
|
128700
128894
|
"""Contextual data for a blendfile library/linked-data related operation. Currently only exposed as read-only data for the pre/post blendimport handlers"""
|
|
128701
128895
|
|
|
@@ -158204,6 +158398,73 @@ class FunctionNodeStringLength(FunctionNode, NodeInternal, Node, bpy_struct):
|
|
|
158204
158398
|
:rtype: typing.Any
|
|
158205
158399
|
"""
|
|
158206
158400
|
|
|
158401
|
+
class FunctionNodeStringToValue(FunctionNode, NodeInternal, Node, bpy_struct):
|
|
158402
|
+
data_type: typing.Literal["FLOAT", "INT"]
|
|
158403
|
+
"""
|
|
158404
|
+
|
|
158405
|
+
:type: typing.Literal['FLOAT','INT']
|
|
158406
|
+
"""
|
|
158407
|
+
|
|
158408
|
+
@classmethod
|
|
158409
|
+
def is_registered_node_type(cls) -> bool:
|
|
158410
|
+
"""True if a registered node type
|
|
158411
|
+
|
|
158412
|
+
:return: Result
|
|
158413
|
+
:rtype: bool
|
|
158414
|
+
"""
|
|
158415
|
+
|
|
158416
|
+
@classmethod
|
|
158417
|
+
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
158418
|
+
"""Input socket template
|
|
158419
|
+
|
|
158420
|
+
:param index: Index
|
|
158421
|
+
:type index: int | None
|
|
158422
|
+
:return: result
|
|
158423
|
+
:rtype: NodeInternalSocketTemplate
|
|
158424
|
+
"""
|
|
158425
|
+
|
|
158426
|
+
@classmethod
|
|
158427
|
+
def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
158428
|
+
"""Output socket template
|
|
158429
|
+
|
|
158430
|
+
:param index: Index
|
|
158431
|
+
:type index: int | None
|
|
158432
|
+
:return: result
|
|
158433
|
+
:rtype: NodeInternalSocketTemplate
|
|
158434
|
+
"""
|
|
158435
|
+
|
|
158436
|
+
@classmethod
|
|
158437
|
+
def bl_rna_get_subclass(
|
|
158438
|
+
cls,
|
|
158439
|
+
id: str | None,
|
|
158440
|
+
default=None,
|
|
158441
|
+
/,
|
|
158442
|
+
) -> Struct:
|
|
158443
|
+
"""
|
|
158444
|
+
|
|
158445
|
+
:param id: The RNA type identifier.
|
|
158446
|
+
:type id: str | None
|
|
158447
|
+
:param default:
|
|
158448
|
+
:return: The RNA type or default when not found.
|
|
158449
|
+
:rtype: Struct
|
|
158450
|
+
"""
|
|
158451
|
+
|
|
158452
|
+
@classmethod
|
|
158453
|
+
def bl_rna_get_subclass_py(
|
|
158454
|
+
cls,
|
|
158455
|
+
id: str | None,
|
|
158456
|
+
default=None,
|
|
158457
|
+
/,
|
|
158458
|
+
) -> typing.Any:
|
|
158459
|
+
"""
|
|
158460
|
+
|
|
158461
|
+
:param id: The RNA type identifier.
|
|
158462
|
+
:type id: str | None
|
|
158463
|
+
:param default:
|
|
158464
|
+
:return: The class or default when not found.
|
|
158465
|
+
:rtype: typing.Any
|
|
158466
|
+
"""
|
|
158467
|
+
|
|
158207
158468
|
class FunctionNodeTransformDirection(FunctionNode, NodeInternal, Node, bpy_struct):
|
|
158208
158469
|
@classmethod
|
|
158209
158470
|
def is_registered_node_type(cls) -> bool:
|
|
@@ -217800,6 +218061,12 @@ class PreferencesView(bpy_struct):
|
|
|
217800
218061
|
:type: bool
|
|
217801
218062
|
"""
|
|
217802
218063
|
|
|
218064
|
+
show_number_arrows: bool
|
|
218065
|
+
""" Display arrows in numeric input fields for increasing or decreasing values
|
|
218066
|
+
|
|
218067
|
+
:type: bool
|
|
218068
|
+
"""
|
|
218069
|
+
|
|
217803
218070
|
show_object_info: bool
|
|
217804
218071
|
""" Include the name of the active object and the current frame number in the text info overlay
|
|
217805
218072
|
|
|
@@ -217917,6 +218184,12 @@ It improves shape readability of very dense meshes, but increases eye fatigue wh
|
|
|
217917
218184
|
:type: bool
|
|
217918
218185
|
"""
|
|
217919
218186
|
|
|
218187
|
+
use_reduce_motion: bool
|
|
218188
|
+
""" Avoid animations and other motion effects in the interface
|
|
218189
|
+
|
|
218190
|
+
:type: bool
|
|
218191
|
+
"""
|
|
218192
|
+
|
|
217920
218193
|
use_save_prompt: bool
|
|
217921
218194
|
""" Ask for confirmation when quitting with unsaved changes
|
|
217922
218195
|
|
|
@@ -262821,6 +263094,8 @@ RENDER_PT_color_management_white_balance: bl_ui.properties_render.RENDER_PT_colo
|
|
|
262821
263094
|
|
|
262822
263095
|
RENDER_PT_color_management_white_balance_presets: bl_ui.properties_render.RENDER_PT_color_management_white_balance_presets
|
|
262823
263096
|
|
|
263097
|
+
RENDER_PT_color_management_working_space: bl_ui.properties_render.RENDER_PT_color_management_working_space
|
|
263098
|
+
|
|
262824
263099
|
RENDER_PT_context: bl_ui.properties_render.RENDER_PT_context
|
|
262825
263100
|
|
|
262826
263101
|
RENDER_PT_eevee_clamping: bl_ui.properties_render.RENDER_PT_eevee_clamping
|
|
@@ -263425,6 +263700,8 @@ USERPREF_PT_input_tablet: bl_ui.space_userpref.USERPREF_PT_input_tablet
|
|
|
263425
263700
|
|
|
263426
263701
|
USERPREF_PT_input_touchpad: bl_ui.space_userpref.USERPREF_PT_input_touchpad
|
|
263427
263702
|
|
|
263703
|
+
USERPREF_PT_interface_accessibility: bl_ui.space_userpref.USERPREF_PT_interface_accessibility
|
|
263704
|
+
|
|
263428
263705
|
USERPREF_PT_interface_display: bl_ui.space_userpref.USERPREF_PT_interface_display
|
|
263429
263706
|
|
|
263430
263707
|
USERPREF_PT_interface_editors: bl_ui.space_userpref.USERPREF_PT_interface_editors
|
|
@@ -152,7 +152,7 @@ bl_ui/properties_physics_geometry_nodes/__init__.pyi,sha256=wwZk5RczcJpcic_IlB3S
|
|
|
152
152
|
bl_ui/properties_physics_rigidbody/__init__.pyi,sha256=NKpR1KwtJ4Smwp-fWYramd2NpyuG9uyMPOxMA1qid2Q,7166
|
|
153
153
|
bl_ui/properties_physics_rigidbody_constraint/__init__.pyi,sha256=ifICU22ACuhpGu9dHU5BOt4PmniIYb_uOQ8OK70pKps,11632
|
|
154
154
|
bl_ui/properties_physics_softbody/__init__.pyi,sha256=5gBmYEQkEj_oaPDstR-tpGDPnOpZevFjjP1oZOBAAb4,11818
|
|
155
|
-
bl_ui/properties_render/__init__.pyi,sha256=
|
|
155
|
+
bl_ui/properties_render/__init__.pyi,sha256=JbVoi0vdRHOd9taFbyUHqTlHLPw0WA0mHtpuIqGI6BQ,36078
|
|
156
156
|
bl_ui/properties_scene/__init__.pyi,sha256=oDH81lIx1eqx9Ke0TvYEI_96MLAGI5ohqJPfNCfwYbw,13487
|
|
157
157
|
bl_ui/properties_texture/__init__.pyi,sha256=XCawtPI3e5z7m6O0bXj9jsDjmVUnirET2RJW76rXmWw,21388
|
|
158
158
|
bl_ui/properties_view_layer/__init__.pyi,sha256=fOeLxpa2sL-GH16yp4DLHoDjIwEJTbi7E8k-qHy0OMU,10898
|
|
@@ -175,9 +175,9 @@ 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=GRk_2WFjHcwTA6vr9VuJI5e3umW6RrX2FdfiCrV9_YA,10761
|
|
179
179
|
bl_ui/space_topbar/__init__.pyi,sha256=9MO703ewWr9Av2UGhd_tTQK8Okq8N3qw2SXOhZodeTk,15642
|
|
180
|
-
bl_ui/space_userpref/__init__.pyi,sha256=
|
|
180
|
+
bl_ui/space_userpref/__init__.pyi,sha256=u95zjkh77q4EWr3AfnZRjryl11SX_X9hQR-091164ck,81754
|
|
181
181
|
bl_ui/space_view3d/__init__.pyi,sha256=sBby33ozbCunGLmCtaroL-zOGOzesPuAmQjmhkAOT8U,159488
|
|
182
182
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=vrk4yrWBpic1Pn3DxlsNLcFXXwy4RPKM_B0SwiihVV0,64988
|
|
183
183
|
bl_ui/utils/__init__.pyi,sha256=ljnA9UEJuHjOECvmj0JrqHBYqtd8GGy7IaBhwV_pIns,534
|
|
@@ -264,7 +264,7 @@ bpy/ops/screen/__init__.pyi,sha256=JVe5VWQxsb64V0cJ5DATt1h7wlBwW16qhjlQdzoux3s,2
|
|
|
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
|
|
266
266
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=Pp-SNyuO82Y1Ksm2ygzZK14X5Nil2cZUOE798KYG5EE,2919
|
|
267
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
267
|
+
bpy/ops/sequencer/__init__.pyi,sha256=bMQnWCa7j3wV9b6QR2VXZc_GQtV6S_HJTmHtjeJAX6w,90291
|
|
268
268
|
bpy/ops/sound/__init__.pyi,sha256=x0KuxcCFRcLVHsSLxqfNcPi0CyqYVMIUGkBvznDroNk,16665
|
|
269
269
|
bpy/ops/spreadsheet/__init__.pyi,sha256=vJX-uQpmdhiHh6dB9yhaqOKkyQKPpRH1Ay2PSwLTEoQ,2175
|
|
270
270
|
bpy/ops/surface/__init__.pyi,sha256=2zsyLcEMeA71sYw44yeIY6l1dRzf77ITk17JWlz2JTk,10390
|
|
@@ -277,14 +277,14 @@ bpy/ops/uilist/__init__.pyi,sha256=CSwrFuqez9Ia24-_yFa5gAudByRrRqmaQVKrfExyRYc,1
|
|
|
277
277
|
bpy/ops/uv/__init__.pyi,sha256=B5CBO2vL55Kqby1jm_7JOoQ72chuDGLMYWD4HkMHTUc,46532
|
|
278
278
|
bpy/ops/view2d/__init__.pyi,sha256=bXpaqKJa4WVVOib1-e_jWpSirho63ignV5z0LPxfLCs,7173
|
|
279
279
|
bpy/ops/view3d/__init__.pyi,sha256=JET9fsqbX7Yqaf1IYsV2tvT4FwhYMklB_rOnEbG2OK8,31946
|
|
280
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
280
|
+
bpy/ops/wm/__init__.pyi,sha256=1o58PXNIpKFQh_mzlZhgog191pDJB_10KHkBv2DWJtQ,210439
|
|
281
281
|
bpy/ops/workspace/__init__.pyi,sha256=Yfe-bzDigcZkkMulfyDa0wbwqzHBrfp5mn0u_sCN7wo,2418
|
|
282
282
|
bpy/ops/world/__init__.pyi,sha256=VTCqEUTLL6yJroZCNcMYQgEKVmjwkIwIy70vB78rdOM,673
|
|
283
283
|
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=237V50fazRYHGiRV81OQmrvhaMvWKl9WSQvPR5KmFs8,5913396
|
|
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
|
|
@@ -345,7 +345,7 @@ keyingsets_builtins/__init__.pyi,sha256=-KaBlb5p7yAL_oDkOW11aPmIszRJwMxS7qsZ5V5d
|
|
|
345
345
|
keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
346
|
keyingsets_utils/__init__.pyi,sha256=LYwQPxGFL9s9daviMo2DyVIUmjyNRFT1S9cvMGBZ6to,1031
|
|
347
347
|
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
348
|
-
mathutils/__init__.pyi,sha256=
|
|
348
|
+
mathutils/__init__.pyi,sha256=QBvmsVe5brYs9KpGoF1DdHKze2iRn5i3pGapskxYzRU,91364
|
|
349
349
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
350
350
|
mathutils/bvhtree/__init__.pyi,sha256=dwPbU667m_oVBEu4aEcWns2sWl8oSNEII-O0GXxwsDA,5118
|
|
351
351
|
mathutils/geometry/__init__.pyi,sha256=N3LtfyhHPnBim_PgIa5likQdcVxOMDvUC-eTqv70ruY,23817
|
|
@@ -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-20250906.dist-info/METADATA,sha256=yvWz_RHlOmIHmMyqSzgrGF1O-1AZs7oP7Cxzaf9wRc0,7429
|
|
368
|
+
fake_bpy_module-20250906.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
369
|
+
fake_bpy_module-20250906.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
|
|
370
|
+
fake_bpy_module-20250906.dist-info/RECORD,,
|
mathutils/__init__.pyi
CHANGED
|
@@ -123,6 +123,20 @@ class Color:
|
|
|
123
123
|
:rtype: typing_extensions.Self
|
|
124
124
|
"""
|
|
125
125
|
|
|
126
|
+
def from_acescg_to_scene_linear(self) -> typing_extensions.Self:
|
|
127
|
+
"""Convert from ACEScg linear to scene linear color space.
|
|
128
|
+
|
|
129
|
+
:return: A color in scene linear color space.
|
|
130
|
+
:rtype: typing_extensions.Self
|
|
131
|
+
"""
|
|
132
|
+
|
|
133
|
+
def from_rec2020_linear_to_scene_linear(self) -> typing_extensions.Self:
|
|
134
|
+
"""Convert from Rec.2020 linear color space to scene linear color space.
|
|
135
|
+
|
|
136
|
+
:return: A color in scene linear color space.
|
|
137
|
+
:rtype: typing_extensions.Self
|
|
138
|
+
"""
|
|
139
|
+
|
|
126
140
|
def from_rec709_linear_to_scene_linear(self) -> typing_extensions.Self:
|
|
127
141
|
"""Convert from Rec.709 linear color space to scene linear color space.
|
|
128
142
|
|
|
@@ -137,6 +151,20 @@ class Color:
|
|
|
137
151
|
:rtype: typing_extensions.Self
|
|
138
152
|
"""
|
|
139
153
|
|
|
154
|
+
def from_scene_linear_to_acescg(self) -> typing_extensions.Self:
|
|
155
|
+
"""Convert from scene linear to ACEScg linear color space.
|
|
156
|
+
|
|
157
|
+
:return: A color in ACEScg linear color space.
|
|
158
|
+
:rtype: typing_extensions.Self
|
|
159
|
+
"""
|
|
160
|
+
|
|
161
|
+
def from_scene_linear_to_rec2020_linear(self) -> typing_extensions.Self:
|
|
162
|
+
"""Convert from scene linear to Rec.2020 linear color space.
|
|
163
|
+
|
|
164
|
+
:return: A color in Rec.2020 linear color space.
|
|
165
|
+
:rtype: typing_extensions.Self
|
|
166
|
+
"""
|
|
167
|
+
|
|
140
168
|
def from_scene_linear_to_rec709_linear(self) -> typing_extensions.Self:
|
|
141
169
|
"""Convert from scene linear to Rec.709 linear color space.
|
|
142
170
|
|
|
File without changes
|
|
File without changes
|