fake-bpy-module-latest 20260115__py3-none-any.whl → 20260117__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.
- _bpy_internal/__init__.pyi +2 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/platform/__init__.pyi +5 -0
- bl_operators/node/__init__.pyi +14 -0
- bpy/app/__init__.pyi +4 -0
- bpy/stub_internal/rna_enums/__init__.pyi +2 -0
- bpy/types/__init__.pyi +763 -198
- {fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260117.dist-info}/METADATA +1 -1
- {fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260117.dist-info}/RECORD +14 -11
- freestyle/utils/__init__.pyi +1 -1
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260117.dist-info}/WHEEL +0 -0
- {fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260117.dist-info}/top_level.txt +0 -0
_bpy_internal/__init__.pyi
CHANGED
|
@@ -6,6 +6,7 @@ from . import addons as addons
|
|
|
6
6
|
from . import assets as assets
|
|
7
7
|
from . import disk_file_hash_service as disk_file_hash_service
|
|
8
8
|
from . import extensions as extensions
|
|
9
|
-
from . import
|
|
9
|
+
from . import filesystem as filesystem
|
|
10
10
|
from . import grease_pencil as grease_pencil
|
|
11
|
+
from . import platform as platform
|
|
11
12
|
from . import system_info as system_info
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import collections.abc
|
|
3
|
+
import typing_extensions
|
|
4
|
+
import numpy.typing as npt
|
|
5
|
+
|
|
6
|
+
class MutexAcquisitionError:
|
|
7
|
+
"""Raised when mutex_lock_and_open_with_retry() cannot obtain a lock."""
|
|
8
|
+
|
|
9
|
+
args: typing.Any
|
|
10
|
+
|
|
11
|
+
def mutex_lock_and_open(file_path, mode) -> None:
|
|
12
|
+
"""Obtain an exclusive lock on a file.Create a file on disk, and immediately lock it for exclusive use by this
|
|
13
|
+
process.
|
|
14
|
+
|
|
15
|
+
:return: If the file was opened & locked succesfully, a tuple (file,
|
|
16
|
+
unlocker) is returned. Otherwise returns None. The caller should call
|
|
17
|
+
unlocker(file) to unlock the mutex.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
def mutex_lock_and_open_with_retry(
|
|
21
|
+
file_path, mode, *, max_tries, wait_time_sec
|
|
22
|
+
) -> None:
|
|
23
|
+
"""Obtain an exclusive lock on a file, retrying when that fails.See mutex_lock_and_open() for the lock semantics, and the first two parameters.
|
|
24
|
+
|
|
25
|
+
:param max_tries: number of times the code attempts to acquire the lock.
|
|
26
|
+
:return: A tuple (file, unlocker) is returned. The caller should call
|
|
27
|
+
unlocker(file) to unlock the mutex.
|
|
28
|
+
"""
|
bl_operators/node/__init__.pyi
CHANGED
|
@@ -564,6 +564,13 @@ class NODE_OT_swap_zone(NodeSwapOperator, ZoneOperator, _bpy_types.Operator):
|
|
|
564
564
|
:param context:
|
|
565
565
|
"""
|
|
566
566
|
|
|
567
|
+
@staticmethod
|
|
568
|
+
def get_child_items(node) -> None:
|
|
569
|
+
"""
|
|
570
|
+
|
|
571
|
+
:param node:
|
|
572
|
+
"""
|
|
573
|
+
|
|
567
574
|
@staticmethod
|
|
568
575
|
def get_zone_pair(tree, node) -> None:
|
|
569
576
|
"""
|
|
@@ -572,6 +579,13 @@ class NODE_OT_swap_zone(NodeSwapOperator, ZoneOperator, _bpy_types.Operator):
|
|
|
572
579
|
:param node:
|
|
573
580
|
"""
|
|
574
581
|
|
|
582
|
+
def transfer_zone_sockets(self, old_node, new_node) -> None:
|
|
583
|
+
"""
|
|
584
|
+
|
|
585
|
+
:param old_node:
|
|
586
|
+
:param new_node:
|
|
587
|
+
"""
|
|
588
|
+
|
|
575
589
|
class NODE_OT_tree_path_parent(_bpy_types.Operator):
|
|
576
590
|
"""Go to parent node tree"""
|
|
577
591
|
|
bpy/app/__init__.pyi
CHANGED
|
@@ -122,6 +122,10 @@ build_type: bytes
|
|
|
122
122
|
""" The type of build (Release, Debug)
|
|
123
123
|
"""
|
|
124
124
|
|
|
125
|
+
cachedir: None | str
|
|
126
|
+
""" String, the cache directory used by blender (read-only).If the parent of the cache folder (i.e. the part of the path that is not Blender-specific) does not exist, returns None.
|
|
127
|
+
"""
|
|
128
|
+
|
|
125
129
|
debug: bool
|
|
126
130
|
""" Boolean, for debug info (started with --debug / --debug-* matching this attribute name).
|
|
127
131
|
"""
|
|
@@ -2606,6 +2606,7 @@ type PropertySubtypeItems = typing.Literal[
|
|
|
2606
2606
|
"UNSIGNED", # Unsigned.
|
|
2607
2607
|
"PERCENTAGE", # Percentage.A percentage between 0 and 100.
|
|
2608
2608
|
"FACTOR", # Factor.A factor between 0.0 and 1.0.
|
|
2609
|
+
"MASS", # Mass.A mass, based on scene unit settings.
|
|
2609
2610
|
"ANGLE", # Angle.A rotational value specified in radians.
|
|
2610
2611
|
"TIME", # Time (Scene Relative).Time specified in frames, converted to seconds based on scene frame rate.
|
|
2611
2612
|
"TIME_ABSOLUTE", # Time (Absolute).Time specified in seconds, independent of the scene.
|
|
@@ -2657,6 +2658,7 @@ type PropertySubtypeNumberItems = typing.Literal[
|
|
|
2657
2658
|
"UNSIGNED", # Unsigned.
|
|
2658
2659
|
"PERCENTAGE", # Percentage.A percentage between 0 and 100.
|
|
2659
2660
|
"FACTOR", # Factor.A factor between 0.0 and 1.0.
|
|
2661
|
+
"MASS", # Mass.A mass, based on scene unit settings.
|
|
2660
2662
|
"ANGLE", # Angle.A rotational value specified in radians.
|
|
2661
2663
|
"TIME", # Time (Scene Relative).Time specified in frames, converted to seconds based on scene frame rate.
|
|
2662
2664
|
"TIME_ABSOLUTE", # Time (Absolute).Time specified in seconds, independent of the scene.
|
bpy/types/__init__.pyi
CHANGED
|
@@ -7278,6 +7278,7 @@ Types with Custom Property Support <bpy_types_custom_properties>
|
|
|
7278
7278
|
* NodeTreeInterfaceSocketFloatDistance.draw
|
|
7279
7279
|
* NodeTreeInterfaceSocketFloatFactor.draw
|
|
7280
7280
|
* NodeTreeInterfaceSocketFloatFrequency.draw
|
|
7281
|
+
* NodeTreeInterfaceSocketFloatMass.draw
|
|
7281
7282
|
* NodeTreeInterfaceSocketFloatPercentage.draw
|
|
7282
7283
|
* NodeTreeInterfaceSocketFloatTime.draw
|
|
7283
7284
|
* NodeTreeInterfaceSocketFloatTimeAbsolute.draw
|
|
@@ -17592,6 +17593,8 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
17592
17593
|
* NodeTreeInterfaceSocketFloatFactor.init_socket
|
|
17593
17594
|
* NodeTreeInterfaceSocketFloatFrequency.from_socket
|
|
17594
17595
|
* NodeTreeInterfaceSocketFloatFrequency.init_socket
|
|
17596
|
+
* NodeTreeInterfaceSocketFloatMass.from_socket
|
|
17597
|
+
* NodeTreeInterfaceSocketFloatMass.init_socket
|
|
17595
17598
|
* NodeTreeInterfaceSocketFloatPercentage.from_socket
|
|
17596
17599
|
* NodeTreeInterfaceSocketFloatPercentage.init_socket
|
|
17597
17600
|
* NodeTreeInterfaceSocketFloatTime.from_socket
|
|
@@ -22483,6 +22486,80 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
22483
22486
|
:columns: 2
|
|
22484
22487
|
|
|
22485
22488
|
|
|
22489
|
+
--------------------
|
|
22490
|
+
|
|
22491
|
+
* bpy_struct.id_data
|
|
22492
|
+
* NodeSocket.name
|
|
22493
|
+
* NodeSocket.label
|
|
22494
|
+
* NodeSocket.identifier
|
|
22495
|
+
* NodeSocket.description
|
|
22496
|
+
* NodeSocket.is_output
|
|
22497
|
+
* NodeSocket.select
|
|
22498
|
+
* NodeSocket.hide
|
|
22499
|
+
* NodeSocket.enabled
|
|
22500
|
+
* NodeSocket.link_limit
|
|
22501
|
+
* NodeSocket.is_linked
|
|
22502
|
+
* NodeSocket.is_unavailable
|
|
22503
|
+
* NodeSocket.is_multi_input
|
|
22504
|
+
* NodeSocket.show_expanded
|
|
22505
|
+
* NodeSocket.is_inactive
|
|
22506
|
+
* NodeSocket.is_icon_visible
|
|
22507
|
+
* NodeSocket.hide_value
|
|
22508
|
+
* NodeSocket.pin_gizmo
|
|
22509
|
+
* NodeSocket.node
|
|
22510
|
+
* NodeSocket.type
|
|
22511
|
+
* NodeSocket.display_shape
|
|
22512
|
+
* NodeSocket.inferred_structure_type
|
|
22513
|
+
* NodeSocket.bl_idname
|
|
22514
|
+
* NodeSocket.bl_label
|
|
22515
|
+
* NodeSocket.bl_subtype_label
|
|
22516
|
+
* NodeSocket.links
|
|
22517
|
+
* NodeSocketStandard.links
|
|
22518
|
+
|
|
22519
|
+
:columns: 2
|
|
22520
|
+
|
|
22521
|
+
|
|
22522
|
+
--------------------
|
|
22523
|
+
|
|
22524
|
+
* bpy_struct.as_pointer
|
|
22525
|
+
* bpy_struct.driver_add
|
|
22526
|
+
* bpy_struct.driver_remove
|
|
22527
|
+
* bpy_struct.get
|
|
22528
|
+
* bpy_struct.id_properties_clear
|
|
22529
|
+
* bpy_struct.id_properties_ensure
|
|
22530
|
+
* bpy_struct.id_properties_ui
|
|
22531
|
+
* bpy_struct.is_property_hidden
|
|
22532
|
+
* bpy_struct.is_property_overridable_library
|
|
22533
|
+
* bpy_struct.is_property_readonly
|
|
22534
|
+
* bpy_struct.is_property_set
|
|
22535
|
+
* bpy_struct.items
|
|
22536
|
+
* bpy_struct.keyframe_delete
|
|
22537
|
+
* bpy_struct.keyframe_insert
|
|
22538
|
+
* bpy_struct.keys
|
|
22539
|
+
* bpy_struct.path_from_id
|
|
22540
|
+
* bpy_struct.path_from_module
|
|
22541
|
+
* bpy_struct.path_resolve
|
|
22542
|
+
* bpy_struct.pop
|
|
22543
|
+
* bpy_struct.property_overridable_library_set
|
|
22544
|
+
* bpy_struct.property_unset
|
|
22545
|
+
* bpy_struct.rna_ancestors
|
|
22546
|
+
* bpy_struct.type_recast
|
|
22547
|
+
* bpy_struct.values
|
|
22548
|
+
* NodeSocket.bl_system_properties_get
|
|
22549
|
+
* NodeSocket.draw
|
|
22550
|
+
* NodeSocket.draw_color
|
|
22551
|
+
* NodeSocket.draw_color_simple
|
|
22552
|
+
* NodeSocket.bl_rna_get_subclass
|
|
22553
|
+
* NodeSocket.bl_rna_get_subclass_py
|
|
22554
|
+
* NodeSocketStandard.draw
|
|
22555
|
+
* NodeSocketStandard.draw_color
|
|
22556
|
+
* NodeSocketStandard.draw_color_simple
|
|
22557
|
+
* NodeSocketStandard.bl_rna_get_subclass
|
|
22558
|
+
* NodeSocketStandard.bl_rna_get_subclass_py
|
|
22559
|
+
|
|
22560
|
+
:columns: 2
|
|
22561
|
+
|
|
22562
|
+
|
|
22486
22563
|
--------------------
|
|
22487
22564
|
|
|
22488
22565
|
* bpy_struct.id_data
|
|
@@ -33822,6 +33899,8 @@ It demonstrates:
|
|
|
33822
33899
|
* NodeEvaluateClosure.output_template
|
|
33823
33900
|
* NodeFrame.input_template
|
|
33824
33901
|
* NodeFrame.output_template
|
|
33902
|
+
* NodeGetBundleItem.input_template
|
|
33903
|
+
* NodeGetBundleItem.output_template
|
|
33825
33904
|
* NodeGroup.input_template
|
|
33826
33905
|
* NodeGroup.output_template
|
|
33827
33906
|
* NodeGroupInput.input_template
|
|
@@ -33834,6 +33913,8 @@ It demonstrates:
|
|
|
33834
33913
|
* NodeReroute.output_template
|
|
33835
33914
|
* NodeSeparateBundle.input_template
|
|
33836
33915
|
* NodeSeparateBundle.output_template
|
|
33916
|
+
* NodeStoreBundleItem.input_template
|
|
33917
|
+
* NodeStoreBundleItem.output_template
|
|
33837
33918
|
* ShaderNodeAddShader.input_template
|
|
33838
33919
|
* ShaderNodeAddShader.output_template
|
|
33839
33920
|
* ShaderNodeAmbientOcclusion.input_template
|
|
@@ -39324,6 +39405,39 @@ Operator.draw method for layout and display.
|
|
|
39324
39405
|
--------------------
|
|
39325
39406
|
|
|
39326
39407
|
* bpy_struct.id_data
|
|
39408
|
+
* Node.type
|
|
39409
|
+
* Node.location
|
|
39410
|
+
* Node.location_absolute
|
|
39411
|
+
* Node.width
|
|
39412
|
+
* Node.height
|
|
39413
|
+
* Node.dimensions
|
|
39414
|
+
* Node.name
|
|
39415
|
+
* Node.label
|
|
39416
|
+
* Node.inputs
|
|
39417
|
+
* Node.outputs
|
|
39418
|
+
* Node.internal_links
|
|
39419
|
+
* Node.parent
|
|
39420
|
+
* Node.warning_propagation
|
|
39421
|
+
* Node.use_custom_color
|
|
39422
|
+
* Node.color
|
|
39423
|
+
* Node.color_tag
|
|
39424
|
+
* Node.select
|
|
39425
|
+
* Node.show_options
|
|
39426
|
+
* Node.show_preview
|
|
39427
|
+
* Node.hide
|
|
39428
|
+
* Node.mute
|
|
39429
|
+
* Node.show_texture
|
|
39430
|
+
* Node.bl_idname
|
|
39431
|
+
* Node.bl_label
|
|
39432
|
+
* Node.bl_description
|
|
39433
|
+
* Node.bl_icon
|
|
39434
|
+
* Node.bl_static_type
|
|
39435
|
+
* Node.bl_width_default
|
|
39436
|
+
* Node.bl_width_min
|
|
39437
|
+
* Node.bl_width_max
|
|
39438
|
+
* Node.bl_height_default
|
|
39439
|
+
* Node.bl_height_min
|
|
39440
|
+
* Node.bl_height_max
|
|
39327
39441
|
|
|
39328
39442
|
:columns: 2
|
|
39329
39443
|
|
|
@@ -39354,132 +39468,194 @@ Operator.draw method for layout and display.
|
|
|
39354
39468
|
* bpy_struct.rna_ancestors
|
|
39355
39469
|
* bpy_struct.type_recast
|
|
39356
39470
|
* bpy_struct.values
|
|
39357
|
-
|
|
39358
|
-
|
|
39359
|
-
|
|
39360
|
-
|
|
39361
|
-
|
|
39362
|
-
|
|
39363
|
-
*
|
|
39364
|
-
|
|
39365
|
-
|
|
39366
|
-
|
|
39367
|
-
|
|
39368
|
-
|
|
39369
|
-
|
|
39370
|
-
*
|
|
39371
|
-
*
|
|
39372
|
-
*
|
|
39373
|
-
*
|
|
39374
|
-
*
|
|
39375
|
-
*
|
|
39376
|
-
*
|
|
39377
|
-
*
|
|
39378
|
-
*
|
|
39379
|
-
*
|
|
39380
|
-
*
|
|
39381
|
-
*
|
|
39382
|
-
|
|
39383
|
-
|
|
39384
|
-
|
|
39385
|
-
|
|
39386
|
-
|
|
39387
|
-
|
|
39388
|
-
*
|
|
39389
|
-
|
|
39390
|
-
|
|
39391
|
-
|
|
39392
|
-
|
|
39393
|
-
|
|
39394
|
-
|
|
39395
|
-
*
|
|
39396
|
-
*
|
|
39397
|
-
|
|
39398
|
-
|
|
39399
|
-
|
|
39400
|
-
|
|
39401
|
-
|
|
39402
|
-
|
|
39403
|
-
* bpy_struct.
|
|
39404
|
-
* bpy_struct.
|
|
39405
|
-
* bpy_struct.
|
|
39406
|
-
* bpy_struct.
|
|
39407
|
-
* bpy_struct.
|
|
39408
|
-
* bpy_struct.
|
|
39409
|
-
* bpy_struct.
|
|
39410
|
-
* bpy_struct.
|
|
39411
|
-
* bpy_struct.
|
|
39412
|
-
* bpy_struct.
|
|
39413
|
-
* bpy_struct.
|
|
39414
|
-
* bpy_struct.
|
|
39415
|
-
* bpy_struct.
|
|
39416
|
-
* bpy_struct.
|
|
39417
|
-
* bpy_struct.
|
|
39418
|
-
* bpy_struct.
|
|
39419
|
-
|
|
39420
|
-
|
|
39421
|
-
|
|
39422
|
-
|
|
39423
|
-
|
|
39424
|
-
|
|
39425
|
-
*
|
|
39426
|
-
|
|
39427
|
-
|
|
39428
|
-
|
|
39429
|
-
|
|
39430
|
-
|
|
39431
|
-
|
|
39432
|
-
*
|
|
39433
|
-
*
|
|
39434
|
-
*
|
|
39435
|
-
*
|
|
39436
|
-
*
|
|
39437
|
-
*
|
|
39438
|
-
|
|
39439
|
-
|
|
39440
|
-
|
|
39441
|
-
|
|
39442
|
-
|
|
39443
|
-
|
|
39444
|
-
*
|
|
39445
|
-
*
|
|
39446
|
-
*
|
|
39447
|
-
*
|
|
39448
|
-
*
|
|
39449
|
-
*
|
|
39450
|
-
*
|
|
39451
|
-
|
|
39452
|
-
|
|
39453
|
-
|
|
39454
|
-
|
|
39455
|
-
|
|
39456
|
-
|
|
39457
|
-
*
|
|
39458
|
-
*
|
|
39459
|
-
|
|
39460
|
-
|
|
39461
|
-
|
|
39462
|
-
|
|
39463
|
-
|
|
39464
|
-
|
|
39465
|
-
* bpy_struct.
|
|
39466
|
-
* bpy_struct.
|
|
39467
|
-
* bpy_struct.
|
|
39468
|
-
* bpy_struct.
|
|
39469
|
-
* bpy_struct.
|
|
39470
|
-
* bpy_struct.
|
|
39471
|
-
* bpy_struct.
|
|
39472
|
-
* bpy_struct.
|
|
39473
|
-
* bpy_struct.
|
|
39474
|
-
* bpy_struct.
|
|
39475
|
-
* bpy_struct.
|
|
39476
|
-
* bpy_struct.
|
|
39477
|
-
* bpy_struct.
|
|
39478
|
-
* bpy_struct.
|
|
39479
|
-
* bpy_struct.
|
|
39480
|
-
* bpy_struct.
|
|
39481
|
-
*
|
|
39482
|
-
*
|
|
39471
|
+
* Node.bl_system_properties_get
|
|
39472
|
+
* Node.socket_value_update
|
|
39473
|
+
* Node.is_registered_node_type
|
|
39474
|
+
* Node.poll
|
|
39475
|
+
* Node.poll_instance
|
|
39476
|
+
* Node.update
|
|
39477
|
+
* Node.insert_link
|
|
39478
|
+
* Node.init
|
|
39479
|
+
* Node.copy
|
|
39480
|
+
* Node.free
|
|
39481
|
+
* Node.draw_buttons
|
|
39482
|
+
* Node.draw_buttons_ext
|
|
39483
|
+
* Node.draw_label
|
|
39484
|
+
* Node.debug_zone_body_lazy_function_graph
|
|
39485
|
+
* Node.debug_zone_lazy_function_graph
|
|
39486
|
+
* Node.poll
|
|
39487
|
+
* Node.bl_rna_get_subclass
|
|
39488
|
+
* Node.bl_rna_get_subclass_py
|
|
39489
|
+
* NodeInternal.poll
|
|
39490
|
+
* NodeInternal.poll_instance
|
|
39491
|
+
* NodeInternal.update
|
|
39492
|
+
* NodeInternal.draw_buttons
|
|
39493
|
+
* NodeInternal.draw_buttons_ext
|
|
39494
|
+
* NodeInternal.bl_rna_get_subclass
|
|
39495
|
+
* NodeInternal.bl_rna_get_subclass_py
|
|
39496
|
+
|
|
39497
|
+
:columns: 2
|
|
39498
|
+
|
|
39499
|
+
|
|
39500
|
+
--------------------
|
|
39501
|
+
|
|
39502
|
+
* bpy_struct.id_data
|
|
39503
|
+
|
|
39504
|
+
:columns: 2
|
|
39505
|
+
|
|
39506
|
+
|
|
39507
|
+
--------------------
|
|
39508
|
+
|
|
39509
|
+
* bpy_struct.as_pointer
|
|
39510
|
+
* bpy_struct.driver_add
|
|
39511
|
+
* bpy_struct.driver_remove
|
|
39512
|
+
* bpy_struct.get
|
|
39513
|
+
* bpy_struct.id_properties_clear
|
|
39514
|
+
* bpy_struct.id_properties_ensure
|
|
39515
|
+
* bpy_struct.id_properties_ui
|
|
39516
|
+
* bpy_struct.is_property_hidden
|
|
39517
|
+
* bpy_struct.is_property_overridable_library
|
|
39518
|
+
* bpy_struct.is_property_readonly
|
|
39519
|
+
* bpy_struct.is_property_set
|
|
39520
|
+
* bpy_struct.items
|
|
39521
|
+
* bpy_struct.keyframe_delete
|
|
39522
|
+
* bpy_struct.keyframe_insert
|
|
39523
|
+
* bpy_struct.keys
|
|
39524
|
+
* bpy_struct.path_from_id
|
|
39525
|
+
* bpy_struct.path_from_module
|
|
39526
|
+
* bpy_struct.path_resolve
|
|
39527
|
+
* bpy_struct.pop
|
|
39528
|
+
* bpy_struct.property_overridable_library_set
|
|
39529
|
+
* bpy_struct.property_unset
|
|
39530
|
+
* bpy_struct.rna_ancestors
|
|
39531
|
+
* bpy_struct.type_recast
|
|
39532
|
+
* bpy_struct.values
|
|
39533
|
+
|
|
39534
|
+
:columns: 2
|
|
39535
|
+
|
|
39536
|
+
|
|
39537
|
+
--------------------
|
|
39538
|
+
|
|
39539
|
+
* KeyConfig.keymaps
|
|
39540
|
+
|
|
39541
|
+
:columns: 2
|
|
39542
|
+
|
|
39543
|
+
|
|
39544
|
+
--------------------
|
|
39545
|
+
|
|
39546
|
+
* bpy_struct.id_data
|
|
39547
|
+
* NodeSocket.name
|
|
39548
|
+
* NodeSocket.label
|
|
39549
|
+
* NodeSocket.identifier
|
|
39550
|
+
* NodeSocket.description
|
|
39551
|
+
* NodeSocket.is_output
|
|
39552
|
+
* NodeSocket.select
|
|
39553
|
+
* NodeSocket.hide
|
|
39554
|
+
* NodeSocket.enabled
|
|
39555
|
+
* NodeSocket.link_limit
|
|
39556
|
+
* NodeSocket.is_linked
|
|
39557
|
+
* NodeSocket.is_unavailable
|
|
39558
|
+
* NodeSocket.is_multi_input
|
|
39559
|
+
* NodeSocket.show_expanded
|
|
39560
|
+
* NodeSocket.is_inactive
|
|
39561
|
+
* NodeSocket.is_icon_visible
|
|
39562
|
+
* NodeSocket.hide_value
|
|
39563
|
+
* NodeSocket.pin_gizmo
|
|
39564
|
+
* NodeSocket.node
|
|
39565
|
+
* NodeSocket.type
|
|
39566
|
+
* NodeSocket.display_shape
|
|
39567
|
+
* NodeSocket.inferred_structure_type
|
|
39568
|
+
* NodeSocket.bl_idname
|
|
39569
|
+
* NodeSocket.bl_label
|
|
39570
|
+
* NodeSocket.bl_subtype_label
|
|
39571
|
+
* NodeSocket.links
|
|
39572
|
+
* NodeSocketStandard.links
|
|
39573
|
+
|
|
39574
|
+
:columns: 2
|
|
39575
|
+
|
|
39576
|
+
|
|
39577
|
+
--------------------
|
|
39578
|
+
|
|
39579
|
+
* bpy_struct.as_pointer
|
|
39580
|
+
* bpy_struct.driver_add
|
|
39581
|
+
* bpy_struct.driver_remove
|
|
39582
|
+
* bpy_struct.get
|
|
39583
|
+
* bpy_struct.id_properties_clear
|
|
39584
|
+
* bpy_struct.id_properties_ensure
|
|
39585
|
+
* bpy_struct.id_properties_ui
|
|
39586
|
+
* bpy_struct.is_property_hidden
|
|
39587
|
+
* bpy_struct.is_property_overridable_library
|
|
39588
|
+
* bpy_struct.is_property_readonly
|
|
39589
|
+
* bpy_struct.is_property_set
|
|
39590
|
+
* bpy_struct.items
|
|
39591
|
+
* bpy_struct.keyframe_delete
|
|
39592
|
+
* bpy_struct.keyframe_insert
|
|
39593
|
+
* bpy_struct.keys
|
|
39594
|
+
* bpy_struct.path_from_id
|
|
39595
|
+
* bpy_struct.path_from_module
|
|
39596
|
+
* bpy_struct.path_resolve
|
|
39597
|
+
* bpy_struct.pop
|
|
39598
|
+
* bpy_struct.property_overridable_library_set
|
|
39599
|
+
* bpy_struct.property_unset
|
|
39600
|
+
* bpy_struct.rna_ancestors
|
|
39601
|
+
* bpy_struct.type_recast
|
|
39602
|
+
* bpy_struct.values
|
|
39603
|
+
* NodeSocket.bl_system_properties_get
|
|
39604
|
+
* NodeSocket.draw
|
|
39605
|
+
* NodeSocket.draw_color
|
|
39606
|
+
* NodeSocket.draw_color_simple
|
|
39607
|
+
* NodeSocket.bl_rna_get_subclass
|
|
39608
|
+
* NodeSocket.bl_rna_get_subclass_py
|
|
39609
|
+
* NodeSocketStandard.draw
|
|
39610
|
+
* NodeSocketStandard.draw_color
|
|
39611
|
+
* NodeSocketStandard.draw_color_simple
|
|
39612
|
+
* NodeSocketStandard.bl_rna_get_subclass
|
|
39613
|
+
* NodeSocketStandard.bl_rna_get_subclass_py
|
|
39614
|
+
|
|
39615
|
+
:columns: 2
|
|
39616
|
+
|
|
39617
|
+
|
|
39618
|
+
--------------------
|
|
39619
|
+
|
|
39620
|
+
* bpy_struct.id_data
|
|
39621
|
+
* ShaderFx.name
|
|
39622
|
+
* ShaderFx.type
|
|
39623
|
+
* ShaderFx.show_viewport
|
|
39624
|
+
* ShaderFx.show_render
|
|
39625
|
+
* ShaderFx.show_in_editmode
|
|
39626
|
+
* ShaderFx.show_expanded
|
|
39627
|
+
|
|
39628
|
+
:columns: 2
|
|
39629
|
+
|
|
39630
|
+
|
|
39631
|
+
--------------------
|
|
39632
|
+
|
|
39633
|
+
* bpy_struct.as_pointer
|
|
39634
|
+
* bpy_struct.driver_add
|
|
39635
|
+
* bpy_struct.driver_remove
|
|
39636
|
+
* bpy_struct.get
|
|
39637
|
+
* bpy_struct.id_properties_clear
|
|
39638
|
+
* bpy_struct.id_properties_ensure
|
|
39639
|
+
* bpy_struct.id_properties_ui
|
|
39640
|
+
* bpy_struct.is_property_hidden
|
|
39641
|
+
* bpy_struct.is_property_overridable_library
|
|
39642
|
+
* bpy_struct.is_property_readonly
|
|
39643
|
+
* bpy_struct.is_property_set
|
|
39644
|
+
* bpy_struct.items
|
|
39645
|
+
* bpy_struct.keyframe_delete
|
|
39646
|
+
* bpy_struct.keyframe_insert
|
|
39647
|
+
* bpy_struct.keys
|
|
39648
|
+
* bpy_struct.path_from_id
|
|
39649
|
+
* bpy_struct.path_from_module
|
|
39650
|
+
* bpy_struct.path_resolve
|
|
39651
|
+
* bpy_struct.pop
|
|
39652
|
+
* bpy_struct.property_overridable_library_set
|
|
39653
|
+
* bpy_struct.property_unset
|
|
39654
|
+
* bpy_struct.rna_ancestors
|
|
39655
|
+
* bpy_struct.type_recast
|
|
39656
|
+
* bpy_struct.values
|
|
39657
|
+
* ShaderFx.bl_rna_get_subclass
|
|
39658
|
+
* ShaderFx.bl_rna_get_subclass_py
|
|
39483
39659
|
|
|
39484
39660
|
:columns: 2
|
|
39485
39661
|
|
|
@@ -52538,6 +52714,7 @@ Operator.draw method for layout and display.
|
|
|
52538
52714
|
* NodeTreeInterfaceSocketFloatDistance.draw
|
|
52539
52715
|
* NodeTreeInterfaceSocketFloatFactor.draw
|
|
52540
52716
|
* NodeTreeInterfaceSocketFloatFrequency.draw
|
|
52717
|
+
* NodeTreeInterfaceSocketFloatMass.draw
|
|
52541
52718
|
* NodeTreeInterfaceSocketFloatPercentage.draw
|
|
52542
52719
|
* NodeTreeInterfaceSocketFloatTime.draw
|
|
52543
52720
|
* NodeTreeInterfaceSocketFloatTimeAbsolute.draw
|
|
@@ -63803,6 +63980,8 @@ print(positions_data)
|
|
|
63803
63980
|
* NodeTreeInterfaceSocketFloatFactor.init_socket
|
|
63804
63981
|
* NodeTreeInterfaceSocketFloatFrequency.from_socket
|
|
63805
63982
|
* NodeTreeInterfaceSocketFloatFrequency.init_socket
|
|
63983
|
+
* NodeTreeInterfaceSocketFloatMass.from_socket
|
|
63984
|
+
* NodeTreeInterfaceSocketFloatMass.init_socket
|
|
63806
63985
|
* NodeTreeInterfaceSocketFloatPercentage.from_socket
|
|
63807
63986
|
* NodeTreeInterfaceSocketFloatPercentage.init_socket
|
|
63808
63987
|
* NodeTreeInterfaceSocketFloatTime.from_socket
|
|
@@ -74489,6 +74668,74 @@ To return a list of the data-blocks that are animated by a specific slot of an A
|
|
|
74489
74668
|
:columns: 2
|
|
74490
74669
|
|
|
74491
74670
|
|
|
74671
|
+
--------------------
|
|
74672
|
+
|
|
74673
|
+
* bpy_struct.id_data
|
|
74674
|
+
* NodeTreeInterfaceItem.item_type
|
|
74675
|
+
* NodeTreeInterfaceItem.parent
|
|
74676
|
+
* NodeTreeInterfaceItem.position
|
|
74677
|
+
* NodeTreeInterfaceItem.index
|
|
74678
|
+
* NodeTreeInterfaceSocket.name
|
|
74679
|
+
* NodeTreeInterfaceSocket.identifier
|
|
74680
|
+
* NodeTreeInterfaceSocket.description
|
|
74681
|
+
* NodeTreeInterfaceSocket.socket_type
|
|
74682
|
+
* NodeTreeInterfaceSocket.in_out
|
|
74683
|
+
* NodeTreeInterfaceSocket.hide_value
|
|
74684
|
+
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
74685
|
+
* NodeTreeInterfaceSocket.force_non_field
|
|
74686
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
74687
|
+
* NodeTreeInterfaceSocket.is_panel_toggle
|
|
74688
|
+
* NodeTreeInterfaceSocket.layer_selection_field
|
|
74689
|
+
* NodeTreeInterfaceSocket.menu_expanded
|
|
74690
|
+
* NodeTreeInterfaceSocket.optional_label
|
|
74691
|
+
* NodeTreeInterfaceSocket.select
|
|
74692
|
+
* NodeTreeInterfaceSocket.attribute_domain
|
|
74693
|
+
* NodeTreeInterfaceSocket.default_attribute_name
|
|
74694
|
+
* NodeTreeInterfaceSocket.structure_type
|
|
74695
|
+
* NodeTreeInterfaceSocket.default_input
|
|
74696
|
+
* NodeTreeInterfaceSocket.bl_socket_idname
|
|
74697
|
+
|
|
74698
|
+
:columns: 2
|
|
74699
|
+
|
|
74700
|
+
|
|
74701
|
+
--------------------
|
|
74702
|
+
|
|
74703
|
+
* bpy_struct.as_pointer
|
|
74704
|
+
* bpy_struct.driver_add
|
|
74705
|
+
* bpy_struct.driver_remove
|
|
74706
|
+
* bpy_struct.get
|
|
74707
|
+
* bpy_struct.id_properties_clear
|
|
74708
|
+
* bpy_struct.id_properties_ensure
|
|
74709
|
+
* bpy_struct.id_properties_ui
|
|
74710
|
+
* bpy_struct.is_property_hidden
|
|
74711
|
+
* bpy_struct.is_property_overridable_library
|
|
74712
|
+
* bpy_struct.is_property_readonly
|
|
74713
|
+
* bpy_struct.is_property_set
|
|
74714
|
+
* bpy_struct.items
|
|
74715
|
+
* bpy_struct.keyframe_delete
|
|
74716
|
+
* bpy_struct.keyframe_insert
|
|
74717
|
+
* bpy_struct.keys
|
|
74718
|
+
* bpy_struct.path_from_id
|
|
74719
|
+
* bpy_struct.path_from_module
|
|
74720
|
+
* bpy_struct.path_resolve
|
|
74721
|
+
* bpy_struct.pop
|
|
74722
|
+
* bpy_struct.property_overridable_library_set
|
|
74723
|
+
* bpy_struct.property_unset
|
|
74724
|
+
* bpy_struct.rna_ancestors
|
|
74725
|
+
* bpy_struct.type_recast
|
|
74726
|
+
* bpy_struct.values
|
|
74727
|
+
* NodeTreeInterfaceItem.bl_rna_get_subclass
|
|
74728
|
+
* NodeTreeInterfaceItem.bl_rna_get_subclass_py
|
|
74729
|
+
* NodeTreeInterfaceSocket.bl_system_properties_get
|
|
74730
|
+
* NodeTreeInterfaceSocket.draw
|
|
74731
|
+
* NodeTreeInterfaceSocket.init_socket
|
|
74732
|
+
* NodeTreeInterfaceSocket.from_socket
|
|
74733
|
+
* NodeTreeInterfaceSocket.bl_rna_get_subclass
|
|
74734
|
+
* NodeTreeInterfaceSocket.bl_rna_get_subclass_py
|
|
74735
|
+
|
|
74736
|
+
:columns: 2
|
|
74737
|
+
|
|
74738
|
+
|
|
74492
74739
|
--------------------
|
|
74493
74740
|
|
|
74494
74741
|
* bpy_struct.id_data
|
|
@@ -94029,6 +94276,101 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
94029
94276
|
:columns: 2
|
|
94030
94277
|
|
|
94031
94278
|
|
|
94279
|
+
--------------------
|
|
94280
|
+
|
|
94281
|
+
* bpy_struct.id_data
|
|
94282
|
+
* Node.type
|
|
94283
|
+
* Node.location
|
|
94284
|
+
* Node.location_absolute
|
|
94285
|
+
* Node.width
|
|
94286
|
+
* Node.height
|
|
94287
|
+
* Node.dimensions
|
|
94288
|
+
* Node.name
|
|
94289
|
+
* Node.label
|
|
94290
|
+
* Node.inputs
|
|
94291
|
+
* Node.outputs
|
|
94292
|
+
* Node.internal_links
|
|
94293
|
+
* Node.parent
|
|
94294
|
+
* Node.warning_propagation
|
|
94295
|
+
* Node.use_custom_color
|
|
94296
|
+
* Node.color
|
|
94297
|
+
* Node.color_tag
|
|
94298
|
+
* Node.select
|
|
94299
|
+
* Node.show_options
|
|
94300
|
+
* Node.show_preview
|
|
94301
|
+
* Node.hide
|
|
94302
|
+
* Node.mute
|
|
94303
|
+
* Node.show_texture
|
|
94304
|
+
* Node.bl_idname
|
|
94305
|
+
* Node.bl_label
|
|
94306
|
+
* Node.bl_description
|
|
94307
|
+
* Node.bl_icon
|
|
94308
|
+
* Node.bl_static_type
|
|
94309
|
+
* Node.bl_width_default
|
|
94310
|
+
* Node.bl_width_min
|
|
94311
|
+
* Node.bl_width_max
|
|
94312
|
+
* Node.bl_height_default
|
|
94313
|
+
* Node.bl_height_min
|
|
94314
|
+
* Node.bl_height_max
|
|
94315
|
+
|
|
94316
|
+
:columns: 2
|
|
94317
|
+
|
|
94318
|
+
|
|
94319
|
+
--------------------
|
|
94320
|
+
|
|
94321
|
+
* bpy_struct.as_pointer
|
|
94322
|
+
* bpy_struct.driver_add
|
|
94323
|
+
* bpy_struct.driver_remove
|
|
94324
|
+
* bpy_struct.get
|
|
94325
|
+
* bpy_struct.id_properties_clear
|
|
94326
|
+
* bpy_struct.id_properties_ensure
|
|
94327
|
+
* bpy_struct.id_properties_ui
|
|
94328
|
+
* bpy_struct.is_property_hidden
|
|
94329
|
+
* bpy_struct.is_property_overridable_library
|
|
94330
|
+
* bpy_struct.is_property_readonly
|
|
94331
|
+
* bpy_struct.is_property_set
|
|
94332
|
+
* bpy_struct.items
|
|
94333
|
+
* bpy_struct.keyframe_delete
|
|
94334
|
+
* bpy_struct.keyframe_insert
|
|
94335
|
+
* bpy_struct.keys
|
|
94336
|
+
* bpy_struct.path_from_id
|
|
94337
|
+
* bpy_struct.path_from_module
|
|
94338
|
+
* bpy_struct.path_resolve
|
|
94339
|
+
* bpy_struct.pop
|
|
94340
|
+
* bpy_struct.property_overridable_library_set
|
|
94341
|
+
* bpy_struct.property_unset
|
|
94342
|
+
* bpy_struct.rna_ancestors
|
|
94343
|
+
* bpy_struct.type_recast
|
|
94344
|
+
* bpy_struct.values
|
|
94345
|
+
* Node.bl_system_properties_get
|
|
94346
|
+
* Node.socket_value_update
|
|
94347
|
+
* Node.is_registered_node_type
|
|
94348
|
+
* Node.poll
|
|
94349
|
+
* Node.poll_instance
|
|
94350
|
+
* Node.update
|
|
94351
|
+
* Node.insert_link
|
|
94352
|
+
* Node.init
|
|
94353
|
+
* Node.copy
|
|
94354
|
+
* Node.free
|
|
94355
|
+
* Node.draw_buttons
|
|
94356
|
+
* Node.draw_buttons_ext
|
|
94357
|
+
* Node.draw_label
|
|
94358
|
+
* Node.debug_zone_body_lazy_function_graph
|
|
94359
|
+
* Node.debug_zone_lazy_function_graph
|
|
94360
|
+
* Node.poll
|
|
94361
|
+
* Node.bl_rna_get_subclass
|
|
94362
|
+
* Node.bl_rna_get_subclass_py
|
|
94363
|
+
* NodeInternal.poll
|
|
94364
|
+
* NodeInternal.poll_instance
|
|
94365
|
+
* NodeInternal.update
|
|
94366
|
+
* NodeInternal.draw_buttons
|
|
94367
|
+
* NodeInternal.draw_buttons_ext
|
|
94368
|
+
* NodeInternal.bl_rna_get_subclass
|
|
94369
|
+
* NodeInternal.bl_rna_get_subclass_py
|
|
94370
|
+
|
|
94371
|
+
:columns: 2
|
|
94372
|
+
|
|
94373
|
+
|
|
94032
94374
|
--------------------
|
|
94033
94375
|
|
|
94034
94376
|
* bpy_struct.id_data
|
|
@@ -176493,7 +176835,10 @@ class Mesh(ID, bpy_struct):
|
|
|
176493
176835
|
def edge_creases_remove(self) -> None: ...
|
|
176494
176836
|
def from_pydata(
|
|
176495
176837
|
self,
|
|
176496
|
-
vertices: collections.abc.Iterable[
|
|
176838
|
+
vertices: collections.abc.Iterable[
|
|
176839
|
+
collections.abc.Sequence[float] | mathutils.Vector
|
|
176840
|
+
]
|
|
176841
|
+
| None,
|
|
176497
176842
|
edges: collections.abc.Iterable[collections.abc.Sequence[int]] | None,
|
|
176498
176843
|
faces: collections.abc.Iterable[collections.abc.Sequence[int]] | None,
|
|
176499
176844
|
shade_flat=True,
|
|
@@ -180413,39 +180758,115 @@ class NodeEvaluateClosureOutputItem(bpy_struct):
|
|
|
180413
180758
|
:return: The class or default when not found.
|
|
180414
180759
|
"""
|
|
180415
180760
|
|
|
180416
|
-
class NodeFrame(NodeInternal, Node, bpy_struct):
|
|
180417
|
-
"""Collect related nodes together in a common area. Useful for organization when the re-usability of a node group is not required"""
|
|
180418
|
-
|
|
180419
|
-
label_size: int
|
|
180420
|
-
""" Font size to use for displaying the label"""
|
|
180421
|
-
|
|
180422
|
-
shrink: bool
|
|
180423
|
-
""" Shrink the frame to minimal bounding box"""
|
|
180424
|
-
|
|
180425
|
-
text: Text | None
|
|
180426
|
-
|
|
180427
|
-
@classmethod
|
|
180428
|
-
def is_registered_node_type(cls) -> bool:
|
|
180429
|
-
"""True if a registered node type
|
|
180430
|
-
|
|
180431
|
-
:return: Result
|
|
180432
|
-
"""
|
|
180433
|
-
|
|
180434
|
-
@classmethod
|
|
180435
|
-
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
180436
|
-
"""Input socket template
|
|
180761
|
+
class NodeFrame(NodeInternal, Node, bpy_struct):
|
|
180762
|
+
"""Collect related nodes together in a common area. Useful for organization when the re-usability of a node group is not required"""
|
|
180763
|
+
|
|
180764
|
+
label_size: int
|
|
180765
|
+
""" Font size to use for displaying the label"""
|
|
180766
|
+
|
|
180767
|
+
shrink: bool
|
|
180768
|
+
""" Shrink the frame to minimal bounding box"""
|
|
180769
|
+
|
|
180770
|
+
text: Text | None
|
|
180771
|
+
|
|
180772
|
+
@classmethod
|
|
180773
|
+
def is_registered_node_type(cls) -> bool:
|
|
180774
|
+
"""True if a registered node type
|
|
180775
|
+
|
|
180776
|
+
:return: Result
|
|
180777
|
+
"""
|
|
180778
|
+
|
|
180779
|
+
@classmethod
|
|
180780
|
+
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
180781
|
+
"""Input socket template
|
|
180782
|
+
|
|
180783
|
+
:param index: Index
|
|
180784
|
+
:return: result
|
|
180785
|
+
"""
|
|
180786
|
+
|
|
180787
|
+
@classmethod
|
|
180788
|
+
def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
180789
|
+
"""Output socket template
|
|
180790
|
+
|
|
180791
|
+
:param index: Index
|
|
180792
|
+
:return: result
|
|
180793
|
+
"""
|
|
180794
|
+
|
|
180795
|
+
@classmethod
|
|
180796
|
+
def bl_rna_get_subclass(
|
|
180797
|
+
cls,
|
|
180798
|
+
id: str | None,
|
|
180799
|
+
default=None,
|
|
180800
|
+
/,
|
|
180801
|
+
) -> Struct:
|
|
180802
|
+
"""
|
|
180803
|
+
|
|
180804
|
+
:param id: The RNA type identifier.
|
|
180805
|
+
:param default:
|
|
180806
|
+
:return: The RNA type or default when not found.
|
|
180807
|
+
"""
|
|
180808
|
+
|
|
180809
|
+
@classmethod
|
|
180810
|
+
def bl_rna_get_subclass_py(
|
|
180811
|
+
cls,
|
|
180812
|
+
id: str | None,
|
|
180813
|
+
default=None,
|
|
180814
|
+
/,
|
|
180815
|
+
) -> typing.Any:
|
|
180816
|
+
"""
|
|
180817
|
+
|
|
180818
|
+
:param id: The RNA type identifier.
|
|
180819
|
+
:param default:
|
|
180820
|
+
:return: The class or default when not found.
|
|
180821
|
+
"""
|
|
180822
|
+
|
|
180823
|
+
class NodeFunctionFormatStringItem(bpy_struct):
|
|
180824
|
+
color: bpy_prop_array[float]
|
|
180825
|
+
""" Color of the corresponding socket type in the node editor"""
|
|
180826
|
+
|
|
180827
|
+
name: str
|
|
180828
|
+
socket_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
180829
|
+
|
|
180830
|
+
@classmethod
|
|
180831
|
+
def bl_rna_get_subclass(
|
|
180832
|
+
cls,
|
|
180833
|
+
id: str | None,
|
|
180834
|
+
default=None,
|
|
180835
|
+
/,
|
|
180836
|
+
) -> Struct:
|
|
180837
|
+
"""
|
|
180838
|
+
|
|
180839
|
+
:param id: The RNA type identifier.
|
|
180840
|
+
:param default:
|
|
180841
|
+
:return: The RNA type or default when not found.
|
|
180842
|
+
"""
|
|
180843
|
+
|
|
180844
|
+
@classmethod
|
|
180845
|
+
def bl_rna_get_subclass_py(
|
|
180846
|
+
cls,
|
|
180847
|
+
id: str | None,
|
|
180848
|
+
default=None,
|
|
180849
|
+
/,
|
|
180850
|
+
) -> typing.Any:
|
|
180851
|
+
"""
|
|
180852
|
+
|
|
180853
|
+
:param id: The RNA type identifier.
|
|
180854
|
+
:param default:
|
|
180855
|
+
:return: The class or default when not found.
|
|
180856
|
+
"""
|
|
180857
|
+
|
|
180858
|
+
class NodeGeometryBakeItem(bpy_struct):
|
|
180859
|
+
attribute_domain: bpy.stub_internal.rna_enums.AttributeDomainItems
|
|
180860
|
+
""" Attribute domain where the attribute is stored in the baked data"""
|
|
180437
180861
|
|
|
180438
|
-
|
|
180439
|
-
|
|
180440
|
-
"""
|
|
180862
|
+
color: bpy_prop_array[float]
|
|
180863
|
+
""" Color of the corresponding socket type in the node editor"""
|
|
180441
180864
|
|
|
180442
|
-
|
|
180443
|
-
|
|
180444
|
-
"""Output socket template
|
|
180865
|
+
is_attribute: bool
|
|
180866
|
+
""" Bake item is an attribute stored on a geometry"""
|
|
180445
180867
|
|
|
180446
|
-
|
|
180447
|
-
|
|
180448
|
-
"""
|
|
180868
|
+
name: str
|
|
180869
|
+
socket_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
180449
180870
|
|
|
180450
180871
|
@classmethod
|
|
180451
180872
|
def bl_rna_get_subclass(
|
|
@@ -180475,12 +180896,12 @@ class NodeFrame(NodeInternal, Node, bpy_struct):
|
|
|
180475
180896
|
:return: The class or default when not found.
|
|
180476
180897
|
"""
|
|
180477
180898
|
|
|
180478
|
-
class
|
|
180899
|
+
class NodeGeometryCaptureAttributeItem(bpy_struct):
|
|
180479
180900
|
color: bpy_prop_array[float]
|
|
180480
180901
|
""" Color of the corresponding socket type in the node editor"""
|
|
180481
180902
|
|
|
180903
|
+
data_type: bpy.stub_internal.rna_enums.AttributeTypeItems
|
|
180482
180904
|
name: str
|
|
180483
|
-
socket_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
180484
180905
|
|
|
180485
180906
|
@classmethod
|
|
180486
180907
|
def bl_rna_get_subclass(
|
|
@@ -180510,16 +180931,13 @@ class NodeFunctionFormatStringItem(bpy_struct):
|
|
|
180510
180931
|
:return: The class or default when not found.
|
|
180511
180932
|
"""
|
|
180512
180933
|
|
|
180513
|
-
class
|
|
180514
|
-
|
|
180515
|
-
"""
|
|
180934
|
+
class NodeGeometryViewerItem(bpy_struct):
|
|
180935
|
+
auto_remove: bool
|
|
180936
|
+
""" Remove the item automatically when it is unlinked"""
|
|
180516
180937
|
|
|
180517
180938
|
color: bpy_prop_array[float]
|
|
180518
180939
|
""" Color of the corresponding socket type in the node editor"""
|
|
180519
180940
|
|
|
180520
|
-
is_attribute: bool
|
|
180521
|
-
""" Bake item is an attribute stored on a geometry"""
|
|
180522
|
-
|
|
180523
180941
|
name: str
|
|
180524
180942
|
socket_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
180525
180943
|
|
|
@@ -180551,50 +180969,37 @@ class NodeGeometryBakeItem(bpy_struct):
|
|
|
180551
180969
|
:return: The class or default when not found.
|
|
180552
180970
|
"""
|
|
180553
180971
|
|
|
180554
|
-
class
|
|
180555
|
-
|
|
180556
|
-
""" Color of the corresponding socket type in the node editor"""
|
|
180972
|
+
class NodeGetBundleItem(NodeInternal, Node, bpy_struct):
|
|
180973
|
+
"""Retrieve a bundle item by path."""
|
|
180557
180974
|
|
|
180558
|
-
|
|
180559
|
-
|
|
180975
|
+
socket_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
180976
|
+
""" Value may be implicitly converted if the type does not match"""
|
|
180977
|
+
|
|
180978
|
+
structure_type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
|
|
180979
|
+
""" What kind of higher order types are expected to flow through this socket"""
|
|
180560
180980
|
|
|
180561
180981
|
@classmethod
|
|
180562
|
-
def
|
|
180563
|
-
|
|
180564
|
-
id: str | None,
|
|
180565
|
-
default=None,
|
|
180566
|
-
/,
|
|
180567
|
-
) -> Struct:
|
|
180568
|
-
"""
|
|
180982
|
+
def is_registered_node_type(cls) -> bool:
|
|
180983
|
+
"""True if a registered node type
|
|
180569
180984
|
|
|
180570
|
-
:
|
|
180571
|
-
:param default:
|
|
180572
|
-
:return: The RNA type or default when not found.
|
|
180985
|
+
:return: Result
|
|
180573
180986
|
"""
|
|
180574
180987
|
|
|
180575
180988
|
@classmethod
|
|
180576
|
-
def
|
|
180577
|
-
|
|
180578
|
-
id: str | None,
|
|
180579
|
-
default=None,
|
|
180580
|
-
/,
|
|
180581
|
-
) -> typing.Any:
|
|
180582
|
-
"""
|
|
180989
|
+
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
180990
|
+
"""Input socket template
|
|
180583
180991
|
|
|
180584
|
-
:param
|
|
180585
|
-
:
|
|
180586
|
-
:return: The class or default when not found.
|
|
180992
|
+
:param index: Index
|
|
180993
|
+
:return: result
|
|
180587
180994
|
"""
|
|
180588
180995
|
|
|
180589
|
-
|
|
180590
|
-
|
|
180591
|
-
|
|
180592
|
-
|
|
180593
|
-
color: bpy_prop_array[float]
|
|
180594
|
-
""" Color of the corresponding socket type in the node editor"""
|
|
180996
|
+
@classmethod
|
|
180997
|
+
def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
180998
|
+
"""Output socket template
|
|
180595
180999
|
|
|
180596
|
-
|
|
180597
|
-
|
|
181000
|
+
:param index: Index
|
|
181001
|
+
:return: result
|
|
181002
|
+
"""
|
|
180598
181003
|
|
|
180599
181004
|
@classmethod
|
|
180600
181005
|
def bl_rna_get_subclass(
|
|
@@ -181713,6 +182118,41 @@ class NodeSocketFloatFrequency(NodeSocketStandard, NodeSocket, bpy_struct):
|
|
|
181713
182118
|
:return: The class or default when not found.
|
|
181714
182119
|
"""
|
|
181715
182120
|
|
|
182121
|
+
class NodeSocketFloatMass(NodeSocketStandard, NodeSocket, bpy_struct):
|
|
182122
|
+
"""Floating-point number socket of a node"""
|
|
182123
|
+
|
|
182124
|
+
default_value: float
|
|
182125
|
+
links: NodeLinks | None
|
|
182126
|
+
""" List of node links from or to this socket.(readonly)"""
|
|
182127
|
+
|
|
182128
|
+
@classmethod
|
|
182129
|
+
def bl_rna_get_subclass(
|
|
182130
|
+
cls,
|
|
182131
|
+
id: str | None,
|
|
182132
|
+
default=None,
|
|
182133
|
+
/,
|
|
182134
|
+
) -> Struct:
|
|
182135
|
+
"""
|
|
182136
|
+
|
|
182137
|
+
:param id: The RNA type identifier.
|
|
182138
|
+
:param default:
|
|
182139
|
+
:return: The RNA type or default when not found.
|
|
182140
|
+
"""
|
|
182141
|
+
|
|
182142
|
+
@classmethod
|
|
182143
|
+
def bl_rna_get_subclass_py(
|
|
182144
|
+
cls,
|
|
182145
|
+
id: str | None,
|
|
182146
|
+
default=None,
|
|
182147
|
+
/,
|
|
182148
|
+
) -> typing.Any:
|
|
182149
|
+
"""
|
|
182150
|
+
|
|
182151
|
+
:param id: The RNA type identifier.
|
|
182152
|
+
:param default:
|
|
182153
|
+
:return: The class or default when not found.
|
|
182154
|
+
"""
|
|
182155
|
+
|
|
181716
182156
|
class NodeSocketFloatPercentage(NodeSocketStandard, NodeSocket, bpy_struct):
|
|
181717
182157
|
"""Floating-point number socket of a node"""
|
|
181718
182158
|
|
|
@@ -183620,6 +184060,64 @@ class NodeSocketVirtual(NodeSocketStandard, NodeSocket, bpy_struct):
|
|
|
183620
184060
|
:return: The class or default when not found.
|
|
183621
184061
|
"""
|
|
183622
184062
|
|
|
184063
|
+
class NodeStoreBundleItem(NodeInternal, Node, bpy_struct):
|
|
184064
|
+
"""Store a bundle item by path and data type."""
|
|
184065
|
+
|
|
184066
|
+
socket_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
184067
|
+
structure_type: bpy.stub_internal.rna_enums.NodeSocketStructureTypeItems
|
|
184068
|
+
""" What kind of higher order types are expected to flow through this socket"""
|
|
184069
|
+
|
|
184070
|
+
@classmethod
|
|
184071
|
+
def is_registered_node_type(cls) -> bool:
|
|
184072
|
+
"""True if a registered node type
|
|
184073
|
+
|
|
184074
|
+
:return: Result
|
|
184075
|
+
"""
|
|
184076
|
+
|
|
184077
|
+
@classmethod
|
|
184078
|
+
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
184079
|
+
"""Input socket template
|
|
184080
|
+
|
|
184081
|
+
:param index: Index
|
|
184082
|
+
:return: result
|
|
184083
|
+
"""
|
|
184084
|
+
|
|
184085
|
+
@classmethod
|
|
184086
|
+
def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
184087
|
+
"""Output socket template
|
|
184088
|
+
|
|
184089
|
+
:param index: Index
|
|
184090
|
+
:return: result
|
|
184091
|
+
"""
|
|
184092
|
+
|
|
184093
|
+
@classmethod
|
|
184094
|
+
def bl_rna_get_subclass(
|
|
184095
|
+
cls,
|
|
184096
|
+
id: str | None,
|
|
184097
|
+
default=None,
|
|
184098
|
+
/,
|
|
184099
|
+
) -> Struct:
|
|
184100
|
+
"""
|
|
184101
|
+
|
|
184102
|
+
:param id: The RNA type identifier.
|
|
184103
|
+
:param default:
|
|
184104
|
+
:return: The RNA type or default when not found.
|
|
184105
|
+
"""
|
|
184106
|
+
|
|
184107
|
+
@classmethod
|
|
184108
|
+
def bl_rna_get_subclass_py(
|
|
184109
|
+
cls,
|
|
184110
|
+
id: str | None,
|
|
184111
|
+
default=None,
|
|
184112
|
+
/,
|
|
184113
|
+
) -> typing.Any:
|
|
184114
|
+
"""
|
|
184115
|
+
|
|
184116
|
+
:param id: The RNA type identifier.
|
|
184117
|
+
:param default:
|
|
184118
|
+
:return: The class or default when not found.
|
|
184119
|
+
"""
|
|
184120
|
+
|
|
183623
184121
|
class NodeTree(ID, bpy_struct):
|
|
183624
184122
|
"""Node tree consisting of linked nodes used for shading, textures and compositing"""
|
|
183625
184123
|
|
|
@@ -184780,6 +185278,73 @@ class NodeTreeInterfaceSocketFloatFrequency(
|
|
|
184780
185278
|
:return: The class or default when not found.
|
|
184781
185279
|
"""
|
|
184782
185280
|
|
|
185281
|
+
class NodeTreeInterfaceSocketFloatMass(
|
|
185282
|
+
NodeTreeInterfaceSocket, NodeTreeInterfaceItem, bpy_struct
|
|
185283
|
+
):
|
|
185284
|
+
"""Floating-point number socket of a node"""
|
|
185285
|
+
|
|
185286
|
+
default_value: float
|
|
185287
|
+
""" Input value used for unconnected socket"""
|
|
185288
|
+
|
|
185289
|
+
max_value: float
|
|
185290
|
+
""" Maximum value"""
|
|
185291
|
+
|
|
185292
|
+
min_value: float
|
|
185293
|
+
""" Minimum value"""
|
|
185294
|
+
|
|
185295
|
+
subtype: str
|
|
185296
|
+
""" Subtype of the default value"""
|
|
185297
|
+
|
|
185298
|
+
def draw(self, context: Context, layout: UILayout) -> None:
|
|
185299
|
+
"""Draw interface socket settings
|
|
185300
|
+
|
|
185301
|
+
:param context:
|
|
185302
|
+
:param layout: Layout, Layout in the UI
|
|
185303
|
+
"""
|
|
185304
|
+
|
|
185305
|
+
def init_socket(self, node: Node, socket: NodeSocket, data_path: str) -> None:
|
|
185306
|
+
"""Initialize a node socket instance
|
|
185307
|
+
|
|
185308
|
+
:param node: Node, Node of the socket to initialize
|
|
185309
|
+
:param socket: Socket, Socket to initialize
|
|
185310
|
+
:param data_path: Data Path, Path to specialized socket data
|
|
185311
|
+
"""
|
|
185312
|
+
|
|
185313
|
+
def from_socket(self, node: Node, socket: NodeSocket) -> None:
|
|
185314
|
+
"""Setup template parameters from an existing socket
|
|
185315
|
+
|
|
185316
|
+
:param node: Node, Node of the original socket
|
|
185317
|
+
:param socket: Socket, Original socket
|
|
185318
|
+
"""
|
|
185319
|
+
|
|
185320
|
+
@classmethod
|
|
185321
|
+
def bl_rna_get_subclass(
|
|
185322
|
+
cls,
|
|
185323
|
+
id: str | None,
|
|
185324
|
+
default=None,
|
|
185325
|
+
/,
|
|
185326
|
+
) -> Struct:
|
|
185327
|
+
"""
|
|
185328
|
+
|
|
185329
|
+
:param id: The RNA type identifier.
|
|
185330
|
+
:param default:
|
|
185331
|
+
:return: The RNA type or default when not found.
|
|
185332
|
+
"""
|
|
185333
|
+
|
|
185334
|
+
@classmethod
|
|
185335
|
+
def bl_rna_get_subclass_py(
|
|
185336
|
+
cls,
|
|
185337
|
+
id: str | None,
|
|
185338
|
+
default=None,
|
|
185339
|
+
/,
|
|
185340
|
+
) -> typing.Any:
|
|
185341
|
+
"""
|
|
185342
|
+
|
|
185343
|
+
:param id: The RNA type identifier.
|
|
185344
|
+
:param default:
|
|
185345
|
+
:return: The class or default when not found.
|
|
185346
|
+
"""
|
|
185347
|
+
|
|
184783
185348
|
class NodeTreeInterfaceSocketFloatPercentage(
|
|
184784
185349
|
NodeTreeInterfaceSocket, NodeTreeInterfaceItem, bpy_struct
|
|
184785
185350
|
):
|
{fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260117.dist-info}/RECORD
RENAMED
|
@@ -31,7 +31,7 @@ _bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
31
31
|
_bl_ui_utils/layout/__init__.pyi,sha256=diIx4fYNx0-cCb582pWqI4VWUb1zl5--IG-OXvtCdd0,215
|
|
32
32
|
_blendfile_header/__init__.pyi,sha256=KNh8jqVO-nkop6SCeeSsVlsXn8ZrlLQyjmeJZvqyDes,1503
|
|
33
33
|
_blendfile_header/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
_bpy_internal/__init__.pyi,sha256=
|
|
34
|
+
_bpy_internal/__init__.pyi,sha256=YlFme36Yqb_zoOglu7i72nlnNSSoAo6VtPAcfOyCREk,413
|
|
35
35
|
_bpy_internal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
36
|
_bpy_internal/addons/__init__.pyi,sha256=s4opQQDWvCt1h0JSU6xojviEDXk-b4zoOUGizdrg-3A,114
|
|
37
37
|
_bpy_internal/addons/cli/__init__.pyi,sha256=4bhW_Ern-FwNR2AjuKoAzFy3mRSBvkMS_rUbN2IyeJY,138
|
|
@@ -46,9 +46,12 @@ _bpy_internal/extensions/__init__.pyi,sha256=WITpwHv5YB5MhSXLQ1F6Eb07h1sdKl3jh9r
|
|
|
46
46
|
_bpy_internal/extensions/junction_module/__init__.pyi,sha256=HLTAcbvk_Gz3ew5wkrMX6vhvJxAVhHmaAp8hJ1xe7g0,1027
|
|
47
47
|
_bpy_internal/extensions/stale_file_manager/__init__.pyi,sha256=XX8gqh2o8Edkz8jo4wTBd3oIzn-91ps-qLeReMe7-NE,785
|
|
48
48
|
_bpy_internal/extensions/wheel_manager/__init__.pyi,sha256=iof2eWA4COe-HySkeiyqsDRQ-rLRt0fWRKL9znHrVQg,976
|
|
49
|
-
_bpy_internal/
|
|
49
|
+
_bpy_internal/filesystem/__init__.pyi,sha256=RlMx0tsZQZhs34XVezFOXTgBAdfQVo-uiBhrSBqHurA,122
|
|
50
|
+
_bpy_internal/filesystem/locking/__init__.pyi,sha256=YegMhtQqF3QF16E9PjAWBkj0qdGnHW9AqeIUkNIlaNc,1050
|
|
50
51
|
_bpy_internal/grease_pencil/__init__.pyi,sha256=4YIHrnLvkVHJW3S7fz8xYyAakqsDCnxvaQfuZiUUvFc,120
|
|
51
52
|
_bpy_internal/grease_pencil/stroke/__init__.pyi,sha256=WZyvmOADIF0IC_aQHaQUnxSJ_nfF75phpIuLwxwWRhM,2192
|
|
53
|
+
_bpy_internal/platform/__init__.pyi,sha256=0AcS2goUqkNAe5SwRtQNb_N8V_LHI7WIHvq6C0cZfZs,130
|
|
54
|
+
_bpy_internal/platform/freedesktop/__init__.pyi,sha256=l2TbFg6Eg3d6Jrn2vIPRtmg8fHaL_4hHtjF9SSarDw0,926
|
|
52
55
|
_bpy_internal/system_info/__init__.pyi,sha256=U0qDEDvXTA0KHyhqeNNd4eLbsn3quigyg1qJD-OeV4E,264
|
|
53
56
|
_bpy_internal/system_info/text_generate_runtime/__init__.pyi,sha256=synyefSRdKBV1Yen5e1NoxwWeP2yiYQ2uoCk3EX_7HE,121
|
|
54
57
|
_bpy_internal/system_info/url_prefill_runtime/__init__.pyi,sha256=BkoZMVSr2fWZuinL28e9e7PUTYiWEBwEHhUgPCJWyMs,144
|
|
@@ -110,7 +113,7 @@ bl_operators/grease_pencil/__init__.pyi,sha256=aYuRtDCkR5cWIZ9YZ1PfrfsCpsnewS9D-
|
|
|
110
113
|
bl_operators/image/__init__.pyi,sha256=Q0BfMC_waIJh2Bd1OnVnWD-fOHQHHqHORsYskeKf72k,3242
|
|
111
114
|
bl_operators/image_as_planes/__init__.pyi,sha256=2ZQE5QfI0WJ7g6Ilhb94O8fGv82ytyi0Tl2m9mtobSw,4684
|
|
112
115
|
bl_operators/mesh/__init__.pyi,sha256=_oPv0pZKG3wnDCyjLJKkVQ4RStIw2rHpJjGuKz3P3WY,1510
|
|
113
|
-
bl_operators/node/__init__.pyi,sha256=
|
|
116
|
+
bl_operators/node/__init__.pyi,sha256=6M7LfnYJPx3w6bzttBWSqJqICbE2XIdrVzHB4U_C4fo,17957
|
|
114
117
|
bl_operators/node_editor/__init__.pyi,sha256=nXKuGcFgA7viFPwVoXogOT1iClUnXhtrK_rZTTXJ2Go,136
|
|
115
118
|
bl_operators/node_editor/node_functions/__init__.pyi,sha256=lvnouyugGqmyzgLR8aRsLj823dK3wC22vEu8lucNhJI,626
|
|
116
119
|
bl_operators/object/__init__.pyi,sha256=gxWZIVsZSLmnGqPzrPYdyjIgXoR52zeAZLh1Wl0haSo,10820
|
|
@@ -222,7 +225,7 @@ bmesh/types/__init__.pyi,sha256=s6DSyfmVKmnKx1GzKnTZajl_Ni7UkN0LZNbmJFVtx4Y,3981
|
|
|
222
225
|
bmesh/utils/__init__.pyi,sha256=LNxIl4-PECWMRk6rvR7v7_6ipypEVc1-Kx-ujzZxR5M,5531
|
|
223
226
|
bpy/__init__.pyi,sha256=2c24IZe013Q0UbFSvpU9JKRYusCUwGYTXbNDx17dK5g,490
|
|
224
227
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
|
-
bpy/app/__init__.pyi,sha256=
|
|
228
|
+
bpy/app/__init__.pyi,sha256=QzLt2Ydy0ksVLxYOnDmBohdnTyjYRbhmYCTof7hBFuQ,8919
|
|
226
229
|
bpy/app/handlers/__init__.pyi,sha256=vxcj3vFmnFwA2JI8EdkC7ABpZkKNQs5AVadOyAamNe4,8062
|
|
227
230
|
bpy/app/icons/__init__.pyi,sha256=3qIiozVL2TnlE1vZotNGuxX5DDrr1PsN6UWJCeUkJ8E,798
|
|
228
231
|
bpy/app/timers/__init__.pyi,sha256=VuykhQjGUw3Y7i1Ssy0vkBzAAdRJSMwJft4Ml1Fa8-g,1522
|
|
@@ -309,8 +312,8 @@ bpy/ops/world/__init__.pyi,sha256=AUIC-ONsc4QHX5bL5rUHEibn4kejjgsFbaJ66NGQztM,51
|
|
|
309
312
|
bpy/path/__init__.pyi,sha256=jgXGlVLUTr15BhcgCVnkz6WlJp4yjpHhJc4TJAXSbsU,4632
|
|
310
313
|
bpy/props/__init__.pyi,sha256=BFnRoY78kkf6szROPfp4HSETs8yEgMeKE4QeSd2vDrs,41820
|
|
311
314
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
312
|
-
bpy/stub_internal/rna_enums/__init__.pyi,sha256=
|
|
313
|
-
bpy/types/__init__.pyi,sha256=
|
|
315
|
+
bpy/stub_internal/rna_enums/__init__.pyi,sha256=qwmvb4vKgXjyUx69cDNAssAsbkYCVs1ODFOk4wl9yMY,144112
|
|
316
|
+
bpy/types/__init__.pyi,sha256=y-a-n_TEtkkfC4LhVjz_3cmmQWR5xUNMPvsbKTp0_EU,5381461
|
|
314
317
|
bpy/utils/__init__.pyi,sha256=z2RE91bnjKGSocTVMkIrZ1HS9Q5UUC_u1eo3Kv1DVzs,13054
|
|
315
318
|
bpy/utils/previews/__init__.pyi,sha256=ByUvnneVHqE8dr5c1-hYsf-6qaKWdU0KP0IbwA5QN00,2028
|
|
316
319
|
bpy/utils/units/__init__.pyi,sha256=CbBgOpnx48WP0flNilskhsmA7YCAnbbj07vr3OXlMG8,2214
|
|
@@ -337,7 +340,7 @@ freestyle/functions/__init__.pyi,sha256=VIOR7rzJk4cKlroiL1wyjn9ryN-gEBYy_5X2LLIs
|
|
|
337
340
|
freestyle/predicates/__init__.pyi,sha256=mzuSrIsB8yriP9gADA7L5aKabIWLpk1F5iRb4vp2T2A,11559
|
|
338
341
|
freestyle/shaders/__init__.pyi,sha256=elfbSCX1X1jVvNdRBz7ODmbpj5-rhCKrdZnw6MRx4K4,22112
|
|
339
342
|
freestyle/types/__init__.pyi,sha256=M4Kdyr57Ipyu5IshKDRbfnKzxnCM9gy2Af44ktm-E8s,88233
|
|
340
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
343
|
+
freestyle/utils/__init__.pyi,sha256=GH1hFYnOGbqsxBsOMNElGYhwjHbF7pKVdCEZKyQ5Mdk,5050
|
|
341
344
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=Gaa6QxLegxyZMDEdscucxbMlk6dBfIfBh7SMzMw8GjM,2926
|
|
342
345
|
gpu/__init__.pyi,sha256=TLoatdrTMM6vfjnbuQA6cW38ARW5nuLa4Y-eicnJU5Q,8900
|
|
343
346
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -376,7 +379,7 @@ rna_keymap_ui/__init__.pyi,sha256=HjNXbu5w-94HLbvVQlEWXV3JVrgWpNz9jiJ3mzGMCNg,48
|
|
|
376
379
|
rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
377
380
|
rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
378
381
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
379
|
-
fake_bpy_module_latest-
|
|
380
|
-
fake_bpy_module_latest-
|
|
381
|
-
fake_bpy_module_latest-
|
|
382
|
-
fake_bpy_module_latest-
|
|
382
|
+
fake_bpy_module_latest-20260117.dist-info/METADATA,sha256=6d-n65jWb52sNp7XfAorsPrhC0fXXnWV9bAvt558DVc,7739
|
|
383
|
+
fake_bpy_module_latest-20260117.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
384
|
+
fake_bpy_module_latest-20260117.dist-info/top_level.txt,sha256=LGIXuHDoaVTgSTMScq2hvwZRtozSAzYE7RqrFaRqT6o,553
|
|
385
|
+
fake_bpy_module_latest-20260117.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -119,7 +119,7 @@ def material_from_fedge(fe) -> None:
|
|
|
119
119
|
"""get the diffuse RGBA color from an FEdge"""
|
|
120
120
|
|
|
121
121
|
def normal_at_I0D(it) -> None: ...
|
|
122
|
-
def pairwise(iterable, types={
|
|
122
|
+
def pairwise(iterable, types={Stroke, StrokeVertexIterator}) -> None:
|
|
123
123
|
"""Yields a tuple containing the previous and current object"""
|
|
124
124
|
|
|
125
125
|
def rgb_to_bw(r, g, b) -> None:
|
|
File without changes
|
{fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260117.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|