fake-bpy-module 20241009__py3-none-any.whl → 20241010__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:
@@ -143524,52 +143473,6 @@ class GPENCIL_UL_matslots(UIList, bpy_struct):
143524
143473
  :rtype: typing.Any
143525
143474
  """
143526
143475
 
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
143476
  class GPencilFrame(bpy_struct):
143574
143477
  """Collection of related sketches on a particular frame"""
143575
143478
 
@@ -163076,7 +162979,7 @@ class ImageFormatSettings(bpy_struct):
163076
162979
  """
163077
162980
 
163078
162981
  exr_codec: bpy.typing.ExrCodecItems
163079
- """ Codec settings for OpenEXR
162982
+ """ Compression codec settings for OpenEXR
163080
162983
 
163081
162984
  :type: bpy.typing.ExrCodecItems
163082
162985
  """
@@ -178044,8 +177947,11 @@ class NodeSocket(bpy_struct):
178044
177947
  :type: bpy.typing.NodeSocketTypeItems
178045
177948
  """
178046
177949
 
178047
- links: typing.Any
178048
- """ List of node links from or to this socket.(readonly)"""
177950
+ links: NodeLinks | None
177951
+ """ List of node links from or to this socket.(readonly)
177952
+
177953
+ :type: NodeLinks | None
177954
+ """
178049
177955
 
178050
177956
  def draw(self, context: Context | None, layout: UILayout, node: Node, text: str):
178051
177957
  """Draw socket
@@ -178110,8 +178016,11 @@ class NodeSocketBool(NodeSocketStandard, NodeSocket, bpy_struct):
178110
178016
  :type: bool
178111
178017
  """
178112
178018
 
178113
- links: typing.Any
178114
- """ List of node links from or to this socket.(readonly)"""
178019
+ links: NodeLinks | None
178020
+ """ List of node links from or to this socket.(readonly)
178021
+
178022
+ :type: NodeLinks | None
178023
+ """
178115
178024
 
178116
178025
  @classmethod
178117
178026
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178144,8 +178053,11 @@ class NodeSocketCollection(NodeSocketStandard, NodeSocket, bpy_struct):
178144
178053
  :type: Collection | None
178145
178054
  """
178146
178055
 
178147
- links: typing.Any
178148
- """ List of node links from or to this socket.(readonly)"""
178056
+ links: NodeLinks | None
178057
+ """ List of node links from or to this socket.(readonly)
178058
+
178059
+ :type: NodeLinks | None
178060
+ """
178149
178061
 
178150
178062
  @classmethod
178151
178063
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178178,8 +178090,11 @@ class NodeSocketColor(NodeSocketStandard, NodeSocket, bpy_struct):
178178
178090
  :type: bpy_prop_array[float]
178179
178091
  """
178180
178092
 
178181
- links: typing.Any
178182
- """ List of node links from or to this socket.(readonly)"""
178093
+ links: NodeLinks | None
178094
+ """ List of node links from or to this socket.(readonly)
178095
+
178096
+ :type: NodeLinks | None
178097
+ """
178183
178098
 
178184
178099
  @classmethod
178185
178100
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178212,8 +178127,11 @@ class NodeSocketFloat(NodeSocketStandard, NodeSocket, bpy_struct):
178212
178127
  :type: float
178213
178128
  """
178214
178129
 
178215
- links: typing.Any
178216
- """ List of node links from or to this socket.(readonly)"""
178130
+ links: NodeLinks | None
178131
+ """ List of node links from or to this socket.(readonly)
178132
+
178133
+ :type: NodeLinks | None
178134
+ """
178217
178135
 
178218
178136
  @classmethod
178219
178137
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178246,8 +178164,11 @@ class NodeSocketFloatAngle(NodeSocketStandard, NodeSocket, bpy_struct):
178246
178164
  :type: float
178247
178165
  """
178248
178166
 
178249
- links: typing.Any
178250
- """ List of node links from or to this socket.(readonly)"""
178167
+ links: NodeLinks | None
178168
+ """ List of node links from or to this socket.(readonly)
178169
+
178170
+ :type: NodeLinks | None
178171
+ """
178251
178172
 
178252
178173
  @classmethod
178253
178174
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178280,8 +178201,11 @@ class NodeSocketFloatColorTemperature(NodeSocketStandard, NodeSocket, bpy_struct
178280
178201
  :type: float
178281
178202
  """
178282
178203
 
178283
- links: typing.Any
178284
- """ List of node links from or to this socket.(readonly)"""
178204
+ links: NodeLinks | None
178205
+ """ List of node links from or to this socket.(readonly)
178206
+
178207
+ :type: NodeLinks | None
178208
+ """
178285
178209
 
178286
178210
  @classmethod
178287
178211
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178314,8 +178238,11 @@ class NodeSocketFloatDistance(NodeSocketStandard, NodeSocket, bpy_struct):
178314
178238
  :type: float
178315
178239
  """
178316
178240
 
178317
- links: typing.Any
178318
- """ List of node links from or to this socket.(readonly)"""
178241
+ links: NodeLinks | None
178242
+ """ List of node links from or to this socket.(readonly)
178243
+
178244
+ :type: NodeLinks | None
178245
+ """
178319
178246
 
178320
178247
  @classmethod
178321
178248
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178348,8 +178275,11 @@ class NodeSocketFloatFactor(NodeSocketStandard, NodeSocket, bpy_struct):
178348
178275
  :type: float
178349
178276
  """
178350
178277
 
178351
- links: typing.Any
178352
- """ List of node links from or to this socket.(readonly)"""
178278
+ links: NodeLinks | None
178279
+ """ List of node links from or to this socket.(readonly)
178280
+
178281
+ :type: NodeLinks | None
178282
+ """
178353
178283
 
178354
178284
  @classmethod
178355
178285
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178382,8 +178312,11 @@ class NodeSocketFloatFrequency(NodeSocketStandard, NodeSocket, bpy_struct):
178382
178312
  :type: float
178383
178313
  """
178384
178314
 
178385
- links: typing.Any
178386
- """ List of node links from or to this socket.(readonly)"""
178315
+ links: NodeLinks | None
178316
+ """ List of node links from or to this socket.(readonly)
178317
+
178318
+ :type: NodeLinks | None
178319
+ """
178387
178320
 
178388
178321
  @classmethod
178389
178322
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178416,8 +178349,11 @@ class NodeSocketFloatPercentage(NodeSocketStandard, NodeSocket, bpy_struct):
178416
178349
  :type: float
178417
178350
  """
178418
178351
 
178419
- links: typing.Any
178420
- """ List of node links from or to this socket.(readonly)"""
178352
+ links: NodeLinks | None
178353
+ """ List of node links from or to this socket.(readonly)
178354
+
178355
+ :type: NodeLinks | None
178356
+ """
178421
178357
 
178422
178358
  @classmethod
178423
178359
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178450,8 +178386,11 @@ class NodeSocketFloatTime(NodeSocketStandard, NodeSocket, bpy_struct):
178450
178386
  :type: float
178451
178387
  """
178452
178388
 
178453
- links: typing.Any
178454
- """ List of node links from or to this socket.(readonly)"""
178389
+ links: NodeLinks | None
178390
+ """ List of node links from or to this socket.(readonly)
178391
+
178392
+ :type: NodeLinks | None
178393
+ """
178455
178394
 
178456
178395
  @classmethod
178457
178396
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178484,8 +178423,11 @@ class NodeSocketFloatTimeAbsolute(NodeSocketStandard, NodeSocket, bpy_struct):
178484
178423
  :type: float
178485
178424
  """
178486
178425
 
178487
- links: typing.Any
178488
- """ List of node links from or to this socket.(readonly)"""
178426
+ links: NodeLinks | None
178427
+ """ List of node links from or to this socket.(readonly)
178428
+
178429
+ :type: NodeLinks | None
178430
+ """
178489
178431
 
178490
178432
  @classmethod
178491
178433
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178518,8 +178460,11 @@ class NodeSocketFloatUnsigned(NodeSocketStandard, NodeSocket, bpy_struct):
178518
178460
  :type: float
178519
178461
  """
178520
178462
 
178521
- links: typing.Any
178522
- """ List of node links from or to this socket.(readonly)"""
178463
+ links: NodeLinks | None
178464
+ """ List of node links from or to this socket.(readonly)
178465
+
178466
+ :type: NodeLinks | None
178467
+ """
178523
178468
 
178524
178469
  @classmethod
178525
178470
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178552,8 +178497,11 @@ class NodeSocketFloatWavelength(NodeSocketStandard, NodeSocket, bpy_struct):
178552
178497
  :type: float
178553
178498
  """
178554
178499
 
178555
- links: typing.Any
178556
- """ List of node links from or to this socket.(readonly)"""
178500
+ links: NodeLinks | None
178501
+ """ List of node links from or to this socket.(readonly)
178502
+
178503
+ :type: NodeLinks | None
178504
+ """
178557
178505
 
178558
178506
  @classmethod
178559
178507
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178580,8 +178528,11 @@ class NodeSocketFloatWavelength(NodeSocketStandard, NodeSocket, bpy_struct):
178580
178528
  class NodeSocketGeometry(NodeSocketStandard, NodeSocket, bpy_struct):
178581
178529
  """Geometry socket of a node"""
178582
178530
 
178583
- links: typing.Any
178584
- """ List of node links from or to this socket.(readonly)"""
178531
+ links: NodeLinks | None
178532
+ """ List of node links from or to this socket.(readonly)
178533
+
178534
+ :type: NodeLinks | None
178535
+ """
178585
178536
 
178586
178537
  @classmethod
178587
178538
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178614,8 +178565,11 @@ class NodeSocketImage(NodeSocketStandard, NodeSocket, bpy_struct):
178614
178565
  :type: Image | None
178615
178566
  """
178616
178567
 
178617
- links: typing.Any
178618
- """ List of node links from or to this socket.(readonly)"""
178568
+ links: NodeLinks | None
178569
+ """ List of node links from or to this socket.(readonly)
178570
+
178571
+ :type: NodeLinks | None
178572
+ """
178619
178573
 
178620
178574
  @classmethod
178621
178575
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178648,8 +178602,11 @@ class NodeSocketInt(NodeSocketStandard, NodeSocket, bpy_struct):
178648
178602
  :type: int
178649
178603
  """
178650
178604
 
178651
- links: typing.Any
178652
- """ List of node links from or to this socket.(readonly)"""
178605
+ links: NodeLinks | None
178606
+ """ List of node links from or to this socket.(readonly)
178607
+
178608
+ :type: NodeLinks | None
178609
+ """
178653
178610
 
178654
178611
  @classmethod
178655
178612
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178682,8 +178639,11 @@ class NodeSocketIntFactor(NodeSocketStandard, NodeSocket, bpy_struct):
178682
178639
  :type: int
178683
178640
  """
178684
178641
 
178685
- links: typing.Any
178686
- """ List of node links from or to this socket.(readonly)"""
178642
+ links: NodeLinks | None
178643
+ """ List of node links from or to this socket.(readonly)
178644
+
178645
+ :type: NodeLinks | None
178646
+ """
178687
178647
 
178688
178648
  @classmethod
178689
178649
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178716,8 +178676,11 @@ class NodeSocketIntPercentage(NodeSocketStandard, NodeSocket, bpy_struct):
178716
178676
  :type: int
178717
178677
  """
178718
178678
 
178719
- links: typing.Any
178720
- """ List of node links from or to this socket.(readonly)"""
178679
+ links: NodeLinks | None
178680
+ """ List of node links from or to this socket.(readonly)
178681
+
178682
+ :type: NodeLinks | None
178683
+ """
178721
178684
 
178722
178685
  @classmethod
178723
178686
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178750,8 +178713,11 @@ class NodeSocketIntUnsigned(NodeSocketStandard, NodeSocket, bpy_struct):
178750
178713
  :type: int
178751
178714
  """
178752
178715
 
178753
- links: typing.Any
178754
- """ List of node links from or to this socket.(readonly)"""
178716
+ links: NodeLinks | None
178717
+ """ List of node links from or to this socket.(readonly)
178718
+
178719
+ :type: NodeLinks | None
178720
+ """
178755
178721
 
178756
178722
  @classmethod
178757
178723
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178784,8 +178750,11 @@ class NodeSocketMaterial(NodeSocketStandard, NodeSocket, bpy_struct):
178784
178750
  :type: Material | None
178785
178751
  """
178786
178752
 
178787
- links: typing.Any
178788
- """ List of node links from or to this socket.(readonly)"""
178753
+ links: NodeLinks | None
178754
+ """ List of node links from or to this socket.(readonly)
178755
+
178756
+ :type: NodeLinks | None
178757
+ """
178789
178758
 
178790
178759
  @classmethod
178791
178760
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178812,8 +178781,11 @@ class NodeSocketMaterial(NodeSocketStandard, NodeSocket, bpy_struct):
178812
178781
  class NodeSocketMatrix(NodeSocketStandard, NodeSocket, bpy_struct):
178813
178782
  """Matrix value socket of a node"""
178814
178783
 
178815
- links: typing.Any
178816
- """ List of node links from or to this socket.(readonly)"""
178784
+ links: NodeLinks | None
178785
+ """ List of node links from or to this socket.(readonly)
178786
+
178787
+ :type: NodeLinks | None
178788
+ """
178817
178789
 
178818
178790
  @classmethod
178819
178791
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178846,8 +178818,11 @@ class NodeSocketMenu(NodeSocketStandard, NodeSocket, bpy_struct):
178846
178818
  :type: str
178847
178819
  """
178848
178820
 
178849
- links: typing.Any
178850
- """ List of node links from or to this socket.(readonly)"""
178821
+ links: NodeLinks | None
178822
+ """ List of node links from or to this socket.(readonly)
178823
+
178824
+ :type: NodeLinks | None
178825
+ """
178851
178826
 
178852
178827
  @classmethod
178853
178828
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178880,8 +178855,11 @@ class NodeSocketObject(NodeSocketStandard, NodeSocket, bpy_struct):
178880
178855
  :type: Object | None
178881
178856
  """
178882
178857
 
178883
- links: typing.Any
178884
- """ List of node links from or to this socket.(readonly)"""
178858
+ links: NodeLinks | None
178859
+ """ List of node links from or to this socket.(readonly)
178860
+
178861
+ :type: NodeLinks | None
178862
+ """
178885
178863
 
178886
178864
  @classmethod
178887
178865
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178914,8 +178892,11 @@ class NodeSocketRotation(NodeSocketStandard, NodeSocket, bpy_struct):
178914
178892
  :type: mathutils.Euler
178915
178893
  """
178916
178894
 
178917
- links: typing.Any
178918
- """ List of node links from or to this socket.(readonly)"""
178895
+ links: NodeLinks | None
178896
+ """ List of node links from or to this socket.(readonly)
178897
+
178898
+ :type: NodeLinks | None
178899
+ """
178919
178900
 
178920
178901
  @classmethod
178921
178902
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178942,8 +178923,11 @@ class NodeSocketRotation(NodeSocketStandard, NodeSocket, bpy_struct):
178942
178923
  class NodeSocketShader(NodeSocketStandard, NodeSocket, bpy_struct):
178943
178924
  """Shader socket of a node"""
178944
178925
 
178945
- links: typing.Any
178946
- """ List of node links from or to this socket.(readonly)"""
178926
+ links: NodeLinks | None
178927
+ """ List of node links from or to this socket.(readonly)
178928
+
178929
+ :type: NodeLinks | None
178930
+ """
178947
178931
 
178948
178932
  @classmethod
178949
178933
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -178968,8 +178952,11 @@ class NodeSocketShader(NodeSocketStandard, NodeSocket, bpy_struct):
178968
178952
  """
178969
178953
 
178970
178954
  class NodeSocketStandard(NodeSocket, bpy_struct):
178971
- links: typing.Any
178972
- """ List of node links from or to this socket.(readonly)"""
178955
+ links: NodeLinks | None
178956
+ """ List of node links from or to this socket.(readonly)
178957
+
178958
+ :type: NodeLinks | None
178959
+ """
178973
178960
 
178974
178961
  def draw(self, context: Context | None, layout: UILayout, node: Node, text: str):
178975
178962
  """Draw socket
@@ -179034,8 +179021,11 @@ class NodeSocketString(NodeSocketStandard, NodeSocket, bpy_struct):
179034
179021
  :type: str
179035
179022
  """
179036
179023
 
179037
- links: typing.Any
179038
- """ List of node links from or to this socket.(readonly)"""
179024
+ links: NodeLinks | None
179025
+ """ List of node links from or to this socket.(readonly)
179026
+
179027
+ :type: NodeLinks | None
179028
+ """
179039
179029
 
179040
179030
  @classmethod
179041
179031
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179068,8 +179058,11 @@ class NodeSocketStringFilePath(NodeSocketStandard, NodeSocket, bpy_struct):
179068
179058
  :type: str
179069
179059
  """
179070
179060
 
179071
- links: typing.Any
179072
- """ List of node links from or to this socket.(readonly)"""
179061
+ links: NodeLinks | None
179062
+ """ List of node links from or to this socket.(readonly)
179063
+
179064
+ :type: NodeLinks | None
179065
+ """
179073
179066
 
179074
179067
  @classmethod
179075
179068
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179102,8 +179095,11 @@ class NodeSocketTexture(NodeSocketStandard, NodeSocket, bpy_struct):
179102
179095
  :type: Texture | None
179103
179096
  """
179104
179097
 
179105
- links: typing.Any
179106
- """ List of node links from or to this socket.(readonly)"""
179098
+ links: NodeLinks | None
179099
+ """ List of node links from or to this socket.(readonly)
179100
+
179101
+ :type: NodeLinks | None
179102
+ """
179107
179103
 
179108
179104
  @classmethod
179109
179105
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179136,8 +179132,11 @@ class NodeSocketVector(NodeSocketStandard, NodeSocket, bpy_struct):
179136
179132
  :type: bpy_prop_array[float]
179137
179133
  """
179138
179134
 
179139
- links: typing.Any
179140
- """ List of node links from or to this socket.(readonly)"""
179135
+ links: NodeLinks | None
179136
+ """ List of node links from or to this socket.(readonly)
179137
+
179138
+ :type: NodeLinks | None
179139
+ """
179141
179140
 
179142
179141
  @classmethod
179143
179142
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179170,8 +179169,11 @@ class NodeSocketVectorAcceleration(NodeSocketStandard, NodeSocket, bpy_struct):
179170
179169
  :type: mathutils.Vector
179171
179170
  """
179172
179171
 
179173
- links: typing.Any
179174
- """ List of node links from or to this socket.(readonly)"""
179172
+ links: NodeLinks | None
179173
+ """ List of node links from or to this socket.(readonly)
179174
+
179175
+ :type: NodeLinks | None
179176
+ """
179175
179177
 
179176
179178
  @classmethod
179177
179179
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179204,8 +179206,11 @@ class NodeSocketVectorDirection(NodeSocketStandard, NodeSocket, bpy_struct):
179204
179206
  :type: mathutils.Vector
179205
179207
  """
179206
179208
 
179207
- links: typing.Any
179208
- """ List of node links from or to this socket.(readonly)"""
179209
+ links: NodeLinks | None
179210
+ """ List of node links from or to this socket.(readonly)
179211
+
179212
+ :type: NodeLinks | None
179213
+ """
179209
179214
 
179210
179215
  @classmethod
179211
179216
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179238,8 +179243,11 @@ class NodeSocketVectorEuler(NodeSocketStandard, NodeSocket, bpy_struct):
179238
179243
  :type: mathutils.Euler
179239
179244
  """
179240
179245
 
179241
- links: typing.Any
179242
- """ List of node links from or to this socket.(readonly)"""
179246
+ links: NodeLinks | None
179247
+ """ List of node links from or to this socket.(readonly)
179248
+
179249
+ :type: NodeLinks | None
179250
+ """
179243
179251
 
179244
179252
  @classmethod
179245
179253
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179272,8 +179280,11 @@ class NodeSocketVectorTranslation(NodeSocketStandard, NodeSocket, bpy_struct):
179272
179280
  :type: mathutils.Vector
179273
179281
  """
179274
179282
 
179275
- links: typing.Any
179276
- """ List of node links from or to this socket.(readonly)"""
179283
+ links: NodeLinks | None
179284
+ """ List of node links from or to this socket.(readonly)
179285
+
179286
+ :type: NodeLinks | None
179287
+ """
179277
179288
 
179278
179289
  @classmethod
179279
179290
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179306,8 +179317,11 @@ class NodeSocketVectorVelocity(NodeSocketStandard, NodeSocket, bpy_struct):
179306
179317
  :type: mathutils.Vector
179307
179318
  """
179308
179319
 
179309
- links: typing.Any
179310
- """ List of node links from or to this socket.(readonly)"""
179320
+ links: NodeLinks | None
179321
+ """ List of node links from or to this socket.(readonly)
179322
+
179323
+ :type: NodeLinks | None
179324
+ """
179311
179325
 
179312
179326
  @classmethod
179313
179327
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179340,8 +179354,11 @@ class NodeSocketVectorXYZ(NodeSocketStandard, NodeSocket, bpy_struct):
179340
179354
  :type: mathutils.Vector
179341
179355
  """
179342
179356
 
179343
- links: typing.Any
179344
- """ List of node links from or to this socket.(readonly)"""
179357
+ links: NodeLinks | None
179358
+ """ List of node links from or to this socket.(readonly)
179359
+
179360
+ :type: NodeLinks | None
179361
+ """
179345
179362
 
179346
179363
  @classmethod
179347
179364
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -179368,8 +179385,11 @@ class NodeSocketVectorXYZ(NodeSocketStandard, NodeSocket, bpy_struct):
179368
179385
  class NodeSocketVirtual(NodeSocketStandard, NodeSocket, bpy_struct):
179369
179386
  """Virtual socket of a node"""
179370
179387
 
179371
- links: typing.Any
179372
- """ List of node links from or to this socket.(readonly)"""
179388
+ links: NodeLinks | None
179389
+ """ List of node links from or to this socket.(readonly)
179390
+
179391
+ :type: NodeLinks | None
179392
+ """
179373
179393
 
179374
179394
  @classmethod
179375
179395
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -184126,27 +184146,6 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
184126
184146
  def cache_release(self):
184127
184147
  """Release memory used by caches associated with this object. Intended to be used by render engines only."""
184128
184148
 
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
184149
  @classmethod
184151
184150
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
184152
184151
  """
@@ -220238,6 +220237,12 @@ class ToolSettings(bpy_struct):
220238
220237
  :type: bool
220239
220238
  """
220240
220239
 
220240
+ use_snap_grid_absolute: bool
220241
+ """ Absolute grid alignment while translating (based on the pivot center)
220242
+
220243
+ :type: bool
220244
+ """
220245
+
220241
220246
  use_snap_node: bool
220242
220247
  """ Snap Node during transform
220243
220248
 
@@ -230952,8 +230957,6 @@ DATA_PT_context_curve: bl_ui.properties_data_curve.DATA_PT_context_curve
230952
230957
 
230953
230958
  DATA_PT_context_curves: bl_ui.properties_data_curves.DATA_PT_context_curves
230954
230959
 
230955
- DATA_PT_context_gpencil: bl_ui.properties_data_gpencil.DATA_PT_context_gpencil
230956
-
230957
230960
  DATA_PT_context_grease_pencil: bl_ui.properties_data_grease_pencil.DATA_PT_context_grease_pencil
230958
230961
 
230959
230962
  DATA_PT_context_lattice: bl_ui.properties_data_lattice.DATA_PT_context_lattice
@@ -230990,8 +230993,6 @@ DATA_PT_custom_props_curve: bl_ui.properties_data_curve.DATA_PT_custom_props_cur
230990
230993
 
230991
230994
  DATA_PT_custom_props_curves: bl_ui.properties_data_curves.DATA_PT_custom_props_curves
230992
230995
 
230993
- DATA_PT_custom_props_gpencil: bl_ui.properties_data_gpencil.DATA_PT_custom_props_gpencil
230994
-
230995
230996
  DATA_PT_custom_props_lattice: bl_ui.properties_data_lattice.DATA_PT_custom_props_lattice
230996
230997
 
230997
230998
  DATA_PT_custom_props_light: bl_ui.properties_data_light.DATA_PT_custom_props_light
@@ -231026,22 +231027,8 @@ DATA_PT_geometry_curve_bevel: bl_ui.properties_data_curve.DATA_PT_geometry_curve
231026
231027
 
231027
231028
  DATA_PT_geometry_curve_start_end: bl_ui.properties_data_curve.DATA_PT_geometry_curve_start_end
231028
231029
 
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
231030
  DATA_PT_gpencil_modifiers: bl_ui.properties_data_modifier.DATA_PT_gpencil_modifiers
231036
231031
 
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
231032
  DATA_PT_grease_pencil_animation: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_animation
231046
231033
 
231047
231034
  DATA_PT_grease_pencil_attributes: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_attributes
@@ -231304,8 +231291,6 @@ GPENCIL_UL_masks: bl_ui.properties_grease_pencil_common.GPENCIL_UL_masks
231304
231291
 
231305
231292
  GPENCIL_UL_matslots: bl_ui.properties_material_gpencil.GPENCIL_UL_matslots
231306
231293
 
231307
- GPENCIL_UL_vgroups: bl_ui.properties_data_gpencil.GPENCIL_UL_vgroups
231308
-
231309
231294
  GRAPH_HT_header: bl_ui.space_graph.GRAPH_HT_header
231310
231295
 
231311
231296
  GRAPH_MT_channel: bl_ui.space_graph.GRAPH_MT_channel