fake-bpy-module 20241009__py3-none-any.whl → 20241011__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.

bpy/types/__init__.pyi CHANGED
@@ -20369,60 +20369,6 @@ The USDHookExample
20369
20369
  :columns: 2
20370
20370
 
20371
20371
 
20372
- --------------------
20373
-
20374
- * bpy_struct.id_data
20375
- * UIList.bl_idname
20376
- * UIList.list_id
20377
- * UIList.layout_type
20378
- * UIList.use_filter_show
20379
- * UIList.filter_name
20380
- * UIList.use_filter_invert
20381
- * UIList.use_filter_sort_alpha
20382
- * UIList.use_filter_sort_reverse
20383
- * UIList.use_filter_sort_lock
20384
- * UIList.bitflag_filter_item
20385
-
20386
- :columns: 2
20387
-
20388
-
20389
- --------------------
20390
-
20391
- * bpy_struct.as_pointer
20392
- * bpy_struct.driver_add
20393
- * bpy_struct.driver_remove
20394
- * bpy_struct.get
20395
- * bpy_struct.id_properties_clear
20396
- * bpy_struct.id_properties_ensure
20397
- * bpy_struct.id_properties_ui
20398
- * bpy_struct.is_property_hidden
20399
- * bpy_struct.is_property_overridable_library
20400
- * bpy_struct.is_property_readonly
20401
- * bpy_struct.is_property_set
20402
- * bpy_struct.items
20403
- * bpy_struct.keyframe_delete
20404
- * bpy_struct.keyframe_insert
20405
- * bpy_struct.keys
20406
- * bpy_struct.path_from_id
20407
- * bpy_struct.path_resolve
20408
- * bpy_struct.pop
20409
- * bpy_struct.property_overridable_library_set
20410
- * bpy_struct.property_unset
20411
- * bpy_struct.type_recast
20412
- * bpy_struct.values
20413
- * UIList.draw_item
20414
- * UIList.draw_filter
20415
- * UIList.filter_items
20416
- * UIList.append
20417
- * UIList.is_extended
20418
- * UIList.prepend
20419
- * UIList.remove
20420
- * UIList.bl_rna_get_subclass
20421
- * UIList.bl_rna_get_subclass_py
20422
-
20423
- :columns: 2
20424
-
20425
-
20426
20372
  --------------------
20427
20373
 
20428
20374
  * bpy_struct.id_data
@@ -31352,7 +31298,6 @@ object, placing it into a view layer, selecting it and making it active.
31352
31298
  * NodeTreeInterfaceSocketObject.default_value
31353
31299
  * NormalEditModifier.target
31354
31300
  * Object.find_armature
31355
- * Object.generate_gpencil_strokes
31356
31301
  * Object.parent
31357
31302
  * ObjectBase.object
31358
31303
  * ObjectSolverConstraint.camera
@@ -101963,7 +101908,6 @@ import bl_ui.properties_data_camera
101963
101908
  import bl_ui.properties_data_curve
101964
101909
  import bl_ui.properties_data_curves
101965
101910
  import bl_ui.properties_data_empty
101966
- import bl_ui.properties_data_gpencil
101967
101911
  import bl_ui.properties_data_grease_pencil
101968
101912
  import bl_ui.properties_data_lattice
101969
101913
  import bl_ui.properties_data_light
@@ -102022,6 +101966,7 @@ import bl_ui.space_userpref
102022
101966
  import bl_ui.space_view3d
102023
101967
  import bl_ui.space_view3d_toolbar
102024
101968
  import bpy.typing
101969
+ import idprop.types
102025
101970
  import mathutils
102026
101971
 
102027
101972
  class bpy_prop_collection[_GenericType1]:
@@ -102246,10 +102191,11 @@ class bpy_struct[_GenericType1]:
102246
102191
  :return: Remove the parent group for an RNA struct's custom IDProperties.
102247
102192
  """
102248
102193
 
102249
- def id_properties_ensure(self):
102194
+ def id_properties_ensure(self) -> idprop.types.IDPropertyGroup:
102250
102195
  """
102251
102196
 
102252
102197
  :return: the parent group for an RNA struct's custom IDProperties.
102198
+ :rtype: idprop.types.IDPropertyGroup
102253
102199
  """
102254
102200
 
102255
102201
  def id_properties_ui(self, key):
@@ -102297,11 +102243,12 @@ class bpy_struct[_GenericType1]:
102297
102243
  :rtype: bool
102298
102244
  """
102299
102245
 
102300
- def items(self):
102246
+ def items(self) -> idprop.types.IDPropertyGroupViewItems:
102301
102247
  """Returns the items of this objects custom properties (matches Python's
102302
102248
  dictionary function of the same name).
102303
102249
 
102304
102250
  :return: custom property key, value pairs.
102251
+ :rtype: idprop.types.IDPropertyGroupViewItems
102305
102252
  """
102306
102253
 
102307
102254
  def keyframe_delete(
@@ -102367,11 +102314,12 @@ class bpy_struct[_GenericType1]:
102367
102314
  :rtype: bool
102368
102315
  """
102369
102316
 
102370
- def keys(self):
102317
+ def keys(self) -> idprop.types.IDPropertyGroupViewKeys:
102371
102318
  """Returns the keys of this objects custom properties (matches Python's
102372
102319
  dictionary function of the same name).
102373
102320
 
102374
102321
  :return: custom property keys.
102322
+ :rtype: idprop.types.IDPropertyGroupViewKeys
102375
102323
  """
102376
102324
 
102377
102325
  def path_from_id(self, property: str | None = "") -> str:
@@ -102427,11 +102375,12 @@ class bpy_struct[_GenericType1]:
102427
102375
  :return: a new instance of this object with the type initialized again.
102428
102376
  """
102429
102377
 
102430
- def values(self):
102378
+ def values(self) -> idprop.types.IDPropertyGroupViewValues:
102431
102379
  """Returns the values of this objects custom properties (matches Python's
102432
102380
  dictionary function of the same name).
102433
102381
 
102434
102382
  :return: custom property values.
102383
+ :rtype: idprop.types.IDPropertyGroupViewValues
102435
102384
  """
102436
102385
 
102437
102386
  def __getitem__(self, key: int | str) -> typing.Any:
@@ -112591,10 +112540,51 @@ class Action(ID, bpy_struct):
112591
112540
  :type: ActionGroups
112592
112541
  """
112593
112542
 
112594
- id_root: typing.Literal["OBJECT"]
112543
+ id_root: typing.Literal[
112544
+ "ACTION",
112545
+ "ARMATURE",
112546
+ "BRUSH",
112547
+ "CACHEFILE",
112548
+ "CAMERA",
112549
+ "COLLECTION",
112550
+ "CURVE",
112551
+ "CURVES",
112552
+ "FONT",
112553
+ "GREASEPENCIL",
112554
+ "GREASEPENCIL_V3",
112555
+ "IMAGE",
112556
+ "KEY",
112557
+ "LATTICE",
112558
+ "LIBRARY",
112559
+ "LIGHT",
112560
+ "LIGHT_PROBE",
112561
+ "LINESTYLE",
112562
+ "MASK",
112563
+ "MATERIAL",
112564
+ "MESH",
112565
+ "META",
112566
+ "MOVIECLIP",
112567
+ "NODETREE",
112568
+ "OBJECT",
112569
+ "PAINTCURVE",
112570
+ "PALETTE",
112571
+ "PARTICLE",
112572
+ "POINTCLOUD",
112573
+ "SCENE",
112574
+ "SCREEN",
112575
+ "SOUND",
112576
+ "SPEAKER",
112577
+ "TEXT",
112578
+ "TEXTURE",
112579
+ "VOLUME",
112580
+ "WINDOWMANAGER",
112581
+ "WORKSPACE",
112582
+ "WORLD",
112583
+ "UNSPECIFIED",
112584
+ ]
112595
112585
  """ Type of ID block that action can be used on - DO NOT CHANGE UNLESS YOU KNOW WHAT YOU ARE DOING
112596
112586
 
112597
- :type: typing.Literal['OBJECT']
112587
+ :type: typing.Literal['ACTION','ARMATURE','BRUSH','CACHEFILE','CAMERA','COLLECTION','CURVE','CURVES','FONT','GREASEPENCIL','GREASEPENCIL_V3','IMAGE','KEY','LATTICE','LIBRARY','LIGHT','LIGHT_PROBE','LINESTYLE','MASK','MATERIAL','MESH','META','MOVIECLIP','NODETREE','OBJECT','PAINTCURVE','PALETTE','PARTICLE','POINTCLOUD','SCENE','SCREEN','SOUND','SPEAKER','TEXT','TEXTURE','VOLUME','WINDOWMANAGER','WORKSPACE','WORLD','UNSPECIFIED']
112598
112588
  """
112599
112589
 
112600
112590
  is_action_layered: bool
@@ -143524,52 +143514,6 @@ class GPENCIL_UL_matslots(UIList, bpy_struct):
143524
143514
  :rtype: typing.Any
143525
143515
  """
143526
143516
 
143527
- class GPENCIL_UL_vgroups(UIList, bpy_struct):
143528
- def draw_item(
143529
- self,
143530
- _context,
143531
- layout,
143532
- _data,
143533
- item,
143534
- icon,
143535
- _active_data,
143536
- _active_propname,
143537
- _index,
143538
- ):
143539
- """
143540
-
143541
- :param _context:
143542
- :param layout:
143543
- :param _data:
143544
- :param item:
143545
- :param icon:
143546
- :param _active_data:
143547
- :param _active_propname:
143548
- :param _index:
143549
- """
143550
-
143551
- @classmethod
143552
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
143553
- """
143554
-
143555
- :param id: The RNA type identifier.
143556
- :type id: str | None
143557
- :param default:
143558
- :return: The RNA type or default when not found.
143559
- :rtype: Struct
143560
- """
143561
-
143562
- @classmethod
143563
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
143564
- """
143565
-
143566
- :param id: The RNA type identifier.
143567
- :type id: str | None
143568
- :param default:
143569
- :return: The class or default when not found.
143570
- :rtype: typing.Any
143571
- """
143572
-
143573
143517
  class GPencilFrame(bpy_struct):
143574
143518
  """Collection of related sketches on a particular frame"""
143575
143519
 
@@ -163076,7 +163020,7 @@ class ImageFormatSettings(bpy_struct):
163076
163020
  """
163077
163021
 
163078
163022
  exr_codec: bpy.typing.ExrCodecItems
163079
- """ Codec settings for OpenEXR
163023
+ """ Compression codec settings for OpenEXR
163080
163024
 
163081
163025
  :type: bpy.typing.ExrCodecItems
163082
163026
  """
@@ -178044,8 +177988,11 @@ class NodeSocket(bpy_struct):
178044
177988
  :type: bpy.typing.NodeSocketTypeItems
178045
177989
  """
178046
177990
 
178047
- links: typing.Any
178048
- """ List of node links from or to this socket.(readonly)"""
177991
+ links: NodeLinks | None
177992
+ """ List of node links from or to this socket.(readonly)
177993
+
177994
+ :type: NodeLinks | None
177995
+ """
178049
177996
 
178050
177997
  def draw(self, context: Context | None, layout: UILayout, node: Node, text: str):
178051
177998
  """Draw socket
@@ -178110,8 +178057,11 @@ class NodeSocketBool(NodeSocketStandard, NodeSocket, bpy_struct):
178110
178057
  :type: bool
178111
178058
  """
178112
178059
 
178113
- links: typing.Any
178114
- """ List of node links from or to this socket.(readonly)"""
178060
+ links: NodeLinks | None
178061
+ """ List of node links from or to this socket.(readonly)
178062
+
178063
+ :type: NodeLinks | None
178064
+ """
178115
178065
 
178116
178066
  @classmethod
178117
178067
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178144,8 +178094,11 @@ class NodeSocketCollection(NodeSocketStandard, NodeSocket, bpy_struct):
178144
178094
  :type: Collection | None
178145
178095
  """
178146
178096
 
178147
- links: typing.Any
178148
- """ List of node links from or to this socket.(readonly)"""
178097
+ links: NodeLinks | None
178098
+ """ List of node links from or to this socket.(readonly)
178099
+
178100
+ :type: NodeLinks | None
178101
+ """
178149
178102
 
178150
178103
  @classmethod
178151
178104
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178178,8 +178131,11 @@ class NodeSocketColor(NodeSocketStandard, NodeSocket, bpy_struct):
178178
178131
  :type: bpy_prop_array[float]
178179
178132
  """
178180
178133
 
178181
- links: typing.Any
178182
- """ List of node links from or to this socket.(readonly)"""
178134
+ links: NodeLinks | None
178135
+ """ List of node links from or to this socket.(readonly)
178136
+
178137
+ :type: NodeLinks | None
178138
+ """
178183
178139
 
178184
178140
  @classmethod
178185
178141
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178212,8 +178168,11 @@ class NodeSocketFloat(NodeSocketStandard, NodeSocket, bpy_struct):
178212
178168
  :type: float
178213
178169
  """
178214
178170
 
178215
- links: typing.Any
178216
- """ List of node links from or to this socket.(readonly)"""
178171
+ links: NodeLinks | None
178172
+ """ List of node links from or to this socket.(readonly)
178173
+
178174
+ :type: NodeLinks | None
178175
+ """
178217
178176
 
178218
178177
  @classmethod
178219
178178
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178246,8 +178205,11 @@ class NodeSocketFloatAngle(NodeSocketStandard, NodeSocket, bpy_struct):
178246
178205
  :type: float
178247
178206
  """
178248
178207
 
178249
- links: typing.Any
178250
- """ List of node links from or to this socket.(readonly)"""
178208
+ links: NodeLinks | None
178209
+ """ List of node links from or to this socket.(readonly)
178210
+
178211
+ :type: NodeLinks | None
178212
+ """
178251
178213
 
178252
178214
  @classmethod
178253
178215
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178280,8 +178242,11 @@ class NodeSocketFloatColorTemperature(NodeSocketStandard, NodeSocket, bpy_struct
178280
178242
  :type: float
178281
178243
  """
178282
178244
 
178283
- links: typing.Any
178284
- """ List of node links from or to this socket.(readonly)"""
178245
+ links: NodeLinks | None
178246
+ """ List of node links from or to this socket.(readonly)
178247
+
178248
+ :type: NodeLinks | None
178249
+ """
178285
178250
 
178286
178251
  @classmethod
178287
178252
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178314,8 +178279,11 @@ class NodeSocketFloatDistance(NodeSocketStandard, NodeSocket, bpy_struct):
178314
178279
  :type: float
178315
178280
  """
178316
178281
 
178317
- links: typing.Any
178318
- """ List of node links from or to this socket.(readonly)"""
178282
+ links: NodeLinks | None
178283
+ """ List of node links from or to this socket.(readonly)
178284
+
178285
+ :type: NodeLinks | None
178286
+ """
178319
178287
 
178320
178288
  @classmethod
178321
178289
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178348,8 +178316,11 @@ class NodeSocketFloatFactor(NodeSocketStandard, NodeSocket, bpy_struct):
178348
178316
  :type: float
178349
178317
  """
178350
178318
 
178351
- links: typing.Any
178352
- """ List of node links from or to this socket.(readonly)"""
178319
+ links: NodeLinks | None
178320
+ """ List of node links from or to this socket.(readonly)
178321
+
178322
+ :type: NodeLinks | None
178323
+ """
178353
178324
 
178354
178325
  @classmethod
178355
178326
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178382,8 +178353,11 @@ class NodeSocketFloatFrequency(NodeSocketStandard, NodeSocket, bpy_struct):
178382
178353
  :type: float
178383
178354
  """
178384
178355
 
178385
- links: typing.Any
178386
- """ List of node links from or to this socket.(readonly)"""
178356
+ links: NodeLinks | None
178357
+ """ List of node links from or to this socket.(readonly)
178358
+
178359
+ :type: NodeLinks | None
178360
+ """
178387
178361
 
178388
178362
  @classmethod
178389
178363
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178416,8 +178390,11 @@ class NodeSocketFloatPercentage(NodeSocketStandard, NodeSocket, bpy_struct):
178416
178390
  :type: float
178417
178391
  """
178418
178392
 
178419
- links: typing.Any
178420
- """ List of node links from or to this socket.(readonly)"""
178393
+ links: NodeLinks | None
178394
+ """ List of node links from or to this socket.(readonly)
178395
+
178396
+ :type: NodeLinks | None
178397
+ """
178421
178398
 
178422
178399
  @classmethod
178423
178400
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178450,8 +178427,11 @@ class NodeSocketFloatTime(NodeSocketStandard, NodeSocket, bpy_struct):
178450
178427
  :type: float
178451
178428
  """
178452
178429
 
178453
- links: typing.Any
178454
- """ List of node links from or to this socket.(readonly)"""
178430
+ links: NodeLinks | None
178431
+ """ List of node links from or to this socket.(readonly)
178432
+
178433
+ :type: NodeLinks | None
178434
+ """
178455
178435
 
178456
178436
  @classmethod
178457
178437
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178484,8 +178464,11 @@ class NodeSocketFloatTimeAbsolute(NodeSocketStandard, NodeSocket, bpy_struct):
178484
178464
  :type: float
178485
178465
  """
178486
178466
 
178487
- links: typing.Any
178488
- """ List of node links from or to this socket.(readonly)"""
178467
+ links: NodeLinks | None
178468
+ """ List of node links from or to this socket.(readonly)
178469
+
178470
+ :type: NodeLinks | None
178471
+ """
178489
178472
 
178490
178473
  @classmethod
178491
178474
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178518,8 +178501,11 @@ class NodeSocketFloatUnsigned(NodeSocketStandard, NodeSocket, bpy_struct):
178518
178501
  :type: float
178519
178502
  """
178520
178503
 
178521
- links: typing.Any
178522
- """ List of node links from or to this socket.(readonly)"""
178504
+ links: NodeLinks | None
178505
+ """ List of node links from or to this socket.(readonly)
178506
+
178507
+ :type: NodeLinks | None
178508
+ """
178523
178509
 
178524
178510
  @classmethod
178525
178511
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178552,8 +178538,11 @@ class NodeSocketFloatWavelength(NodeSocketStandard, NodeSocket, bpy_struct):
178552
178538
  :type: float
178553
178539
  """
178554
178540
 
178555
- links: typing.Any
178556
- """ List of node links from or to this socket.(readonly)"""
178541
+ links: NodeLinks | None
178542
+ """ List of node links from or to this socket.(readonly)
178543
+
178544
+ :type: NodeLinks | None
178545
+ """
178557
178546
 
178558
178547
  @classmethod
178559
178548
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178580,8 +178569,11 @@ class NodeSocketFloatWavelength(NodeSocketStandard, NodeSocket, bpy_struct):
178580
178569
  class NodeSocketGeometry(NodeSocketStandard, NodeSocket, bpy_struct):
178581
178570
  """Geometry socket of a node"""
178582
178571
 
178583
- links: typing.Any
178584
- """ List of node links from or to this socket.(readonly)"""
178572
+ links: NodeLinks | None
178573
+ """ List of node links from or to this socket.(readonly)
178574
+
178575
+ :type: NodeLinks | None
178576
+ """
178585
178577
 
178586
178578
  @classmethod
178587
178579
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178614,8 +178606,11 @@ class NodeSocketImage(NodeSocketStandard, NodeSocket, bpy_struct):
178614
178606
  :type: Image | None
178615
178607
  """
178616
178608
 
178617
- links: typing.Any
178618
- """ List of node links from or to this socket.(readonly)"""
178609
+ links: NodeLinks | None
178610
+ """ List of node links from or to this socket.(readonly)
178611
+
178612
+ :type: NodeLinks | None
178613
+ """
178619
178614
 
178620
178615
  @classmethod
178621
178616
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178648,8 +178643,11 @@ class NodeSocketInt(NodeSocketStandard, NodeSocket, bpy_struct):
178648
178643
  :type: int
178649
178644
  """
178650
178645
 
178651
- links: typing.Any
178652
- """ List of node links from or to this socket.(readonly)"""
178646
+ links: NodeLinks | None
178647
+ """ List of node links from or to this socket.(readonly)
178648
+
178649
+ :type: NodeLinks | None
178650
+ """
178653
178651
 
178654
178652
  @classmethod
178655
178653
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178682,8 +178680,11 @@ class NodeSocketIntFactor(NodeSocketStandard, NodeSocket, bpy_struct):
178682
178680
  :type: int
178683
178681
  """
178684
178682
 
178685
- links: typing.Any
178686
- """ List of node links from or to this socket.(readonly)"""
178683
+ links: NodeLinks | None
178684
+ """ List of node links from or to this socket.(readonly)
178685
+
178686
+ :type: NodeLinks | None
178687
+ """
178687
178688
 
178688
178689
  @classmethod
178689
178690
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178716,8 +178717,11 @@ class NodeSocketIntPercentage(NodeSocketStandard, NodeSocket, bpy_struct):
178716
178717
  :type: int
178717
178718
  """
178718
178719
 
178719
- links: typing.Any
178720
- """ List of node links from or to this socket.(readonly)"""
178720
+ links: NodeLinks | None
178721
+ """ List of node links from or to this socket.(readonly)
178722
+
178723
+ :type: NodeLinks | None
178724
+ """
178721
178725
 
178722
178726
  @classmethod
178723
178727
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178750,8 +178754,11 @@ class NodeSocketIntUnsigned(NodeSocketStandard, NodeSocket, bpy_struct):
178750
178754
  :type: int
178751
178755
  """
178752
178756
 
178753
- links: typing.Any
178754
- """ List of node links from or to this socket.(readonly)"""
178757
+ links: NodeLinks | None
178758
+ """ List of node links from or to this socket.(readonly)
178759
+
178760
+ :type: NodeLinks | None
178761
+ """
178755
178762
 
178756
178763
  @classmethod
178757
178764
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178784,8 +178791,11 @@ class NodeSocketMaterial(NodeSocketStandard, NodeSocket, bpy_struct):
178784
178791
  :type: Material | None
178785
178792
  """
178786
178793
 
178787
- links: typing.Any
178788
- """ List of node links from or to this socket.(readonly)"""
178794
+ links: NodeLinks | None
178795
+ """ List of node links from or to this socket.(readonly)
178796
+
178797
+ :type: NodeLinks | None
178798
+ """
178789
178799
 
178790
178800
  @classmethod
178791
178801
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178812,8 +178822,11 @@ class NodeSocketMaterial(NodeSocketStandard, NodeSocket, bpy_struct):
178812
178822
  class NodeSocketMatrix(NodeSocketStandard, NodeSocket, bpy_struct):
178813
178823
  """Matrix value socket of a node"""
178814
178824
 
178815
- links: typing.Any
178816
- """ List of node links from or to this socket.(readonly)"""
178825
+ links: NodeLinks | None
178826
+ """ List of node links from or to this socket.(readonly)
178827
+
178828
+ :type: NodeLinks | None
178829
+ """
178817
178830
 
178818
178831
  @classmethod
178819
178832
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178846,8 +178859,11 @@ class NodeSocketMenu(NodeSocketStandard, NodeSocket, bpy_struct):
178846
178859
  :type: str
178847
178860
  """
178848
178861
 
178849
- links: typing.Any
178850
- """ List of node links from or to this socket.(readonly)"""
178862
+ links: NodeLinks | None
178863
+ """ List of node links from or to this socket.(readonly)
178864
+
178865
+ :type: NodeLinks | None
178866
+ """
178851
178867
 
178852
178868
  @classmethod
178853
178869
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178880,8 +178896,11 @@ class NodeSocketObject(NodeSocketStandard, NodeSocket, bpy_struct):
178880
178896
  :type: Object | None
178881
178897
  """
178882
178898
 
178883
- links: typing.Any
178884
- """ List of node links from or to this socket.(readonly)"""
178899
+ links: NodeLinks | None
178900
+ """ List of node links from or to this socket.(readonly)
178901
+
178902
+ :type: NodeLinks | None
178903
+ """
178885
178904
 
178886
178905
  @classmethod
178887
178906
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178914,8 +178933,11 @@ class NodeSocketRotation(NodeSocketStandard, NodeSocket, bpy_struct):
178914
178933
  :type: mathutils.Euler
178915
178934
  """
178916
178935
 
178917
- links: typing.Any
178918
- """ List of node links from or to this socket.(readonly)"""
178936
+ links: NodeLinks | None
178937
+ """ List of node links from or to this socket.(readonly)
178938
+
178939
+ :type: NodeLinks | None
178940
+ """
178919
178941
 
178920
178942
  @classmethod
178921
178943
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178942,8 +178964,11 @@ class NodeSocketRotation(NodeSocketStandard, NodeSocket, bpy_struct):
178942
178964
  class NodeSocketShader(NodeSocketStandard, NodeSocket, bpy_struct):
178943
178965
  """Shader socket of a node"""
178944
178966
 
178945
- links: typing.Any
178946
- """ List of node links from or to this socket.(readonly)"""
178967
+ links: NodeLinks | None
178968
+ """ List of node links from or to this socket.(readonly)
178969
+
178970
+ :type: NodeLinks | None
178971
+ """
178947
178972
 
178948
178973
  @classmethod
178949
178974
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178968,8 +178993,11 @@ class NodeSocketShader(NodeSocketStandard, NodeSocket, bpy_struct):
178968
178993
  """
178969
178994
 
178970
178995
  class NodeSocketStandard(NodeSocket, bpy_struct):
178971
- links: typing.Any
178972
- """ List of node links from or to this socket.(readonly)"""
178996
+ links: NodeLinks | None
178997
+ """ List of node links from or to this socket.(readonly)
178998
+
178999
+ :type: NodeLinks | None
179000
+ """
178973
179001
 
178974
179002
  def draw(self, context: Context | None, layout: UILayout, node: Node, text: str):
178975
179003
  """Draw socket
@@ -179034,8 +179062,11 @@ class NodeSocketString(NodeSocketStandard, NodeSocket, bpy_struct):
179034
179062
  :type: str
179035
179063
  """
179036
179064
 
179037
- links: typing.Any
179038
- """ List of node links from or to this socket.(readonly)"""
179065
+ links: NodeLinks | None
179066
+ """ List of node links from or to this socket.(readonly)
179067
+
179068
+ :type: NodeLinks | None
179069
+ """
179039
179070
 
179040
179071
  @classmethod
179041
179072
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179068,8 +179099,11 @@ class NodeSocketStringFilePath(NodeSocketStandard, NodeSocket, bpy_struct):
179068
179099
  :type: str
179069
179100
  """
179070
179101
 
179071
- links: typing.Any
179072
- """ List of node links from or to this socket.(readonly)"""
179102
+ links: NodeLinks | None
179103
+ """ List of node links from or to this socket.(readonly)
179104
+
179105
+ :type: NodeLinks | None
179106
+ """
179073
179107
 
179074
179108
  @classmethod
179075
179109
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179102,8 +179136,11 @@ class NodeSocketTexture(NodeSocketStandard, NodeSocket, bpy_struct):
179102
179136
  :type: Texture | None
179103
179137
  """
179104
179138
 
179105
- links: typing.Any
179106
- """ List of node links from or to this socket.(readonly)"""
179139
+ links: NodeLinks | None
179140
+ """ List of node links from or to this socket.(readonly)
179141
+
179142
+ :type: NodeLinks | None
179143
+ """
179107
179144
 
179108
179145
  @classmethod
179109
179146
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179136,8 +179173,11 @@ class NodeSocketVector(NodeSocketStandard, NodeSocket, bpy_struct):
179136
179173
  :type: bpy_prop_array[float]
179137
179174
  """
179138
179175
 
179139
- links: typing.Any
179140
- """ List of node links from or to this socket.(readonly)"""
179176
+ links: NodeLinks | None
179177
+ """ List of node links from or to this socket.(readonly)
179178
+
179179
+ :type: NodeLinks | None
179180
+ """
179141
179181
 
179142
179182
  @classmethod
179143
179183
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179170,8 +179210,11 @@ class NodeSocketVectorAcceleration(NodeSocketStandard, NodeSocket, bpy_struct):
179170
179210
  :type: mathutils.Vector
179171
179211
  """
179172
179212
 
179173
- links: typing.Any
179174
- """ List of node links from or to this socket.(readonly)"""
179213
+ links: NodeLinks | None
179214
+ """ List of node links from or to this socket.(readonly)
179215
+
179216
+ :type: NodeLinks | None
179217
+ """
179175
179218
 
179176
179219
  @classmethod
179177
179220
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179204,8 +179247,11 @@ class NodeSocketVectorDirection(NodeSocketStandard, NodeSocket, bpy_struct):
179204
179247
  :type: mathutils.Vector
179205
179248
  """
179206
179249
 
179207
- links: typing.Any
179208
- """ List of node links from or to this socket.(readonly)"""
179250
+ links: NodeLinks | None
179251
+ """ List of node links from or to this socket.(readonly)
179252
+
179253
+ :type: NodeLinks | None
179254
+ """
179209
179255
 
179210
179256
  @classmethod
179211
179257
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179238,8 +179284,11 @@ class NodeSocketVectorEuler(NodeSocketStandard, NodeSocket, bpy_struct):
179238
179284
  :type: mathutils.Euler
179239
179285
  """
179240
179286
 
179241
- links: typing.Any
179242
- """ List of node links from or to this socket.(readonly)"""
179287
+ links: NodeLinks | None
179288
+ """ List of node links from or to this socket.(readonly)
179289
+
179290
+ :type: NodeLinks | None
179291
+ """
179243
179292
 
179244
179293
  @classmethod
179245
179294
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179272,8 +179321,11 @@ class NodeSocketVectorTranslation(NodeSocketStandard, NodeSocket, bpy_struct):
179272
179321
  :type: mathutils.Vector
179273
179322
  """
179274
179323
 
179275
- links: typing.Any
179276
- """ List of node links from or to this socket.(readonly)"""
179324
+ links: NodeLinks | None
179325
+ """ List of node links from or to this socket.(readonly)
179326
+
179327
+ :type: NodeLinks | None
179328
+ """
179277
179329
 
179278
179330
  @classmethod
179279
179331
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179306,8 +179358,11 @@ class NodeSocketVectorVelocity(NodeSocketStandard, NodeSocket, bpy_struct):
179306
179358
  :type: mathutils.Vector
179307
179359
  """
179308
179360
 
179309
- links: typing.Any
179310
- """ List of node links from or to this socket.(readonly)"""
179361
+ links: NodeLinks | None
179362
+ """ List of node links from or to this socket.(readonly)
179363
+
179364
+ :type: NodeLinks | None
179365
+ """
179311
179366
 
179312
179367
  @classmethod
179313
179368
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179340,8 +179395,11 @@ class NodeSocketVectorXYZ(NodeSocketStandard, NodeSocket, bpy_struct):
179340
179395
  :type: mathutils.Vector
179341
179396
  """
179342
179397
 
179343
- links: typing.Any
179344
- """ List of node links from or to this socket.(readonly)"""
179398
+ links: NodeLinks | None
179399
+ """ List of node links from or to this socket.(readonly)
179400
+
179401
+ :type: NodeLinks | None
179402
+ """
179345
179403
 
179346
179404
  @classmethod
179347
179405
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179368,8 +179426,11 @@ class NodeSocketVectorXYZ(NodeSocketStandard, NodeSocket, bpy_struct):
179368
179426
  class NodeSocketVirtual(NodeSocketStandard, NodeSocket, bpy_struct):
179369
179427
  """Virtual socket of a node"""
179370
179428
 
179371
- links: typing.Any
179372
- """ List of node links from or to this socket.(readonly)"""
179429
+ links: NodeLinks | None
179430
+ """ List of node links from or to this socket.(readonly)
179431
+
179432
+ :type: NodeLinks | None
179433
+ """
179373
179434
 
179374
179435
  @classmethod
179375
179436
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -184126,27 +184187,6 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
184126
184187
  def cache_release(self):
184127
184188
  """Release memory used by caches associated with this object. Intended to be used by render engines only."""
184128
184189
 
184129
- def generate_gpencil_strokes(
184130
- self,
184131
- grease_pencil_object: typing_extensions.Self,
184132
- use_collections: bool | None = True,
184133
- scale_thickness: float | None = 1.0,
184134
- sample: float | None = 0.0,
184135
- ) -> bool:
184136
- """Convert a curve object to grease pencil strokes.
184137
-
184138
- :param grease_pencil_object: Grease Pencil object used to create new strokes
184139
- :type grease_pencil_object: typing_extensions.Self
184140
- :param use_collections: Use Collections
184141
- :type use_collections: bool | None
184142
- :param scale_thickness: Thickness scaling factor
184143
- :type scale_thickness: float | None
184144
- :param sample: Sample distance, zero to disable
184145
- :type sample: float | None
184146
- :return: Result
184147
- :rtype: bool
184148
- """
184149
-
184150
184190
  @classmethod
184151
184191
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
184152
184192
  """
@@ -220238,6 +220278,12 @@ class ToolSettings(bpy_struct):
220238
220278
  :type: bool
220239
220279
  """
220240
220280
 
220281
+ use_snap_grid_absolute: bool
220282
+ """ Absolute grid alignment while translating (based on the pivot center)
220283
+
220284
+ :type: bool
220285
+ """
220286
+
220241
220287
  use_snap_node: bool
220242
220288
  """ Snap Node during transform
220243
220289
 
@@ -228211,14 +228257,14 @@ class Window(bpy_struct):
228211
228257
  """
228212
228258
 
228213
228259
  def cursor_modal_set(self, cursor: bpy.typing.WindowCursorItems | None):
228214
- """Restore the previous cursor after calling cursor_modal_set
228260
+ """Set the cursor, so the previous cursor can be restored
228215
228261
 
228216
228262
  :param cursor: cursor
228217
228263
  :type cursor: bpy.typing.WindowCursorItems | None
228218
228264
  """
228219
228265
 
228220
228266
  def cursor_modal_restore(self):
228221
- """cursor_modal_restore"""
228267
+ """Restore the previous cursor after calling cursor_modal_set"""
228222
228268
 
228223
228269
  def event_simulate(
228224
228270
  self,
@@ -230952,8 +230998,6 @@ DATA_PT_context_curve: bl_ui.properties_data_curve.DATA_PT_context_curve
230952
230998
 
230953
230999
  DATA_PT_context_curves: bl_ui.properties_data_curves.DATA_PT_context_curves
230954
231000
 
230955
- DATA_PT_context_gpencil: bl_ui.properties_data_gpencil.DATA_PT_context_gpencil
230956
-
230957
231001
  DATA_PT_context_grease_pencil: bl_ui.properties_data_grease_pencil.DATA_PT_context_grease_pencil
230958
231002
 
230959
231003
  DATA_PT_context_lattice: bl_ui.properties_data_lattice.DATA_PT_context_lattice
@@ -230990,8 +231034,6 @@ DATA_PT_custom_props_curve: bl_ui.properties_data_curve.DATA_PT_custom_props_cur
230990
231034
 
230991
231035
  DATA_PT_custom_props_curves: bl_ui.properties_data_curves.DATA_PT_custom_props_curves
230992
231036
 
230993
- DATA_PT_custom_props_gpencil: bl_ui.properties_data_gpencil.DATA_PT_custom_props_gpencil
230994
-
230995
231037
  DATA_PT_custom_props_lattice: bl_ui.properties_data_lattice.DATA_PT_custom_props_lattice
230996
231038
 
230997
231039
  DATA_PT_custom_props_light: bl_ui.properties_data_light.DATA_PT_custom_props_light
@@ -231026,22 +231068,8 @@ DATA_PT_geometry_curve_bevel: bl_ui.properties_data_curve.DATA_PT_geometry_curve
231026
231068
 
231027
231069
  DATA_PT_geometry_curve_start_end: bl_ui.properties_data_curve.DATA_PT_geometry_curve_start_end
231028
231070
 
231029
- DATA_PT_gpencil_animation: bl_ui.properties_data_gpencil.DATA_PT_gpencil_animation
231030
-
231031
- DATA_PT_gpencil_canvas: bl_ui.properties_data_gpencil.DATA_PT_gpencil_canvas
231032
-
231033
- DATA_PT_gpencil_display: bl_ui.properties_data_gpencil.DATA_PT_gpencil_display
231034
-
231035
231071
  DATA_PT_gpencil_modifiers: bl_ui.properties_data_modifier.DATA_PT_gpencil_modifiers
231036
231072
 
231037
- DATA_PT_gpencil_onion_skinning: bl_ui.properties_data_gpencil.DATA_PT_gpencil_onion_skinning
231038
-
231039
- DATA_PT_gpencil_onion_skinning_custom_colors: bl_ui.properties_data_gpencil.DATA_PT_gpencil_onion_skinning_custom_colors
231040
-
231041
- DATA_PT_gpencil_onion_skinning_display: bl_ui.properties_data_gpencil.DATA_PT_gpencil_onion_skinning_display
231042
-
231043
- DATA_PT_gpencil_strokes: bl_ui.properties_data_gpencil.DATA_PT_gpencil_strokes
231044
-
231045
231073
  DATA_PT_grease_pencil_animation: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_animation
231046
231074
 
231047
231075
  DATA_PT_grease_pencil_attributes: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_attributes
@@ -231304,8 +231332,6 @@ GPENCIL_UL_masks: bl_ui.properties_grease_pencil_common.GPENCIL_UL_masks
231304
231332
 
231305
231333
  GPENCIL_UL_matslots: bl_ui.properties_material_gpencil.GPENCIL_UL_matslots
231306
231334
 
231307
- GPENCIL_UL_vgroups: bl_ui.properties_data_gpencil.GPENCIL_UL_vgroups
231308
-
231309
231335
  GRAPH_HT_header: bl_ui.space_graph.GRAPH_HT_header
231310
231336
 
231311
231337
  GRAPH_MT_channel: bl_ui.space_graph.GRAPH_MT_channel