fake-bpy-module 20240507__py3-none-any.whl → 20240508__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/ops/export_scene/__init__.pyi +3 -3
- bpy/ops/nla/__init__.pyi +2 -2
- bpy/types/__init__.pyi +286 -35
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240508.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240508.dist-info}/RECORD +7 -7
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240508.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240508.dist-info}/top_level.txt +0 -0
|
@@ -20,12 +20,12 @@ def fbx(
|
|
|
20
20
|
use_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
21
21
|
bake_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
22
22
|
object_types: typing.Optional[typing.Any] = {
|
|
23
|
-
'"LIGHT"',
|
|
24
|
-
'"MESH"',
|
|
25
|
-
'"EMPTY"',
|
|
26
23
|
'"ARMATURE"',
|
|
27
24
|
'"CAMERA"',
|
|
25
|
+
'"EMPTY"',
|
|
26
|
+
'"MESH"',
|
|
28
27
|
'"OTHER"',
|
|
28
|
+
'"LIGHT"',
|
|
29
29
|
},
|
|
30
30
|
use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
31
31
|
use_mesh_modifiers_render: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -101,11 +101,11 @@ def bake(
|
|
|
101
101
|
clean_curves: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
102
102
|
bake_types: typing.Optional[typing.Any] = {'"POSE"'},
|
|
103
103
|
channel_types: typing.Optional[typing.Any] = {
|
|
104
|
-
'"
|
|
104
|
+
'"PROPS"',
|
|
105
105
|
'"ROTATION"',
|
|
106
|
+
'"BBONE"',
|
|
106
107
|
'"SCALE"',
|
|
107
108
|
'"LOCATION"',
|
|
108
|
-
'"PROPS"',
|
|
109
109
|
},
|
|
110
110
|
):
|
|
111
111
|
"""Bake all selected objects location/scale/rotation animation to an action
|
bpy/types/__init__.pyi
CHANGED
|
@@ -41794,7 +41794,6 @@ Base class for integrating USD Hydra based renderers.
|
|
|
41794
41794
|
* AnimDataDrivers.new
|
|
41795
41795
|
* AnimDataDrivers.remove
|
|
41796
41796
|
* AnimationChannelBag.fcurves
|
|
41797
|
-
* KeyframeAnimationStrip.key_insert
|
|
41798
41797
|
* NlaStrip.fcurves
|
|
41799
41798
|
* NlaStripFCurves.find
|
|
41800
41799
|
|
|
@@ -56035,6 +56034,96 @@ Executing the operator will then print all values.
|
|
|
56035
56034
|
:columns: 2
|
|
56036
56035
|
|
|
56037
56036
|
|
|
56037
|
+
--------------------
|
|
56038
|
+
|
|
56039
|
+
* bpy_struct.id_data
|
|
56040
|
+
* Node.type
|
|
56041
|
+
* Node.location
|
|
56042
|
+
* Node.width
|
|
56043
|
+
* Node.height
|
|
56044
|
+
* Node.dimensions
|
|
56045
|
+
* Node.name
|
|
56046
|
+
* Node.label
|
|
56047
|
+
* Node.inputs
|
|
56048
|
+
* Node.outputs
|
|
56049
|
+
* Node.internal_links
|
|
56050
|
+
* Node.parent
|
|
56051
|
+
* Node.use_custom_color
|
|
56052
|
+
* Node.color
|
|
56053
|
+
* Node.select
|
|
56054
|
+
* Node.show_options
|
|
56055
|
+
* Node.show_preview
|
|
56056
|
+
* Node.hide
|
|
56057
|
+
* Node.mute
|
|
56058
|
+
* Node.show_texture
|
|
56059
|
+
* Node.bl_idname
|
|
56060
|
+
* Node.bl_label
|
|
56061
|
+
* Node.bl_description
|
|
56062
|
+
* Node.bl_icon
|
|
56063
|
+
* Node.bl_static_type
|
|
56064
|
+
* Node.bl_width_default
|
|
56065
|
+
* Node.bl_width_min
|
|
56066
|
+
* Node.bl_width_max
|
|
56067
|
+
* Node.bl_height_default
|
|
56068
|
+
* Node.bl_height_min
|
|
56069
|
+
* Node.bl_height_max
|
|
56070
|
+
|
|
56071
|
+
:columns: 2
|
|
56072
|
+
|
|
56073
|
+
|
|
56074
|
+
--------------------
|
|
56075
|
+
|
|
56076
|
+
* bpy_struct.as_pointer
|
|
56077
|
+
* bpy_struct.driver_add
|
|
56078
|
+
* bpy_struct.driver_remove
|
|
56079
|
+
* bpy_struct.get
|
|
56080
|
+
* bpy_struct.id_properties_clear
|
|
56081
|
+
* bpy_struct.id_properties_ensure
|
|
56082
|
+
* bpy_struct.id_properties_ui
|
|
56083
|
+
* bpy_struct.is_property_hidden
|
|
56084
|
+
* bpy_struct.is_property_overridable_library
|
|
56085
|
+
* bpy_struct.is_property_readonly
|
|
56086
|
+
* bpy_struct.is_property_set
|
|
56087
|
+
* bpy_struct.items
|
|
56088
|
+
* bpy_struct.keyframe_delete
|
|
56089
|
+
* bpy_struct.keyframe_insert
|
|
56090
|
+
* bpy_struct.keys
|
|
56091
|
+
* bpy_struct.path_from_id
|
|
56092
|
+
* bpy_struct.path_resolve
|
|
56093
|
+
* bpy_struct.pop
|
|
56094
|
+
* bpy_struct.property_overridable_library_set
|
|
56095
|
+
* bpy_struct.property_unset
|
|
56096
|
+
* bpy_struct.type_recast
|
|
56097
|
+
* bpy_struct.values
|
|
56098
|
+
* Node.socket_value_update
|
|
56099
|
+
* Node.is_registered_node_type
|
|
56100
|
+
* Node.poll
|
|
56101
|
+
* Node.poll_instance
|
|
56102
|
+
* Node.update
|
|
56103
|
+
* Node.insert_link
|
|
56104
|
+
* Node.init
|
|
56105
|
+
* Node.copy
|
|
56106
|
+
* Node.free
|
|
56107
|
+
* Node.draw_buttons
|
|
56108
|
+
* Node.draw_buttons_ext
|
|
56109
|
+
* Node.draw_label
|
|
56110
|
+
* Node.poll
|
|
56111
|
+
* Node.bl_rna_get_subclass
|
|
56112
|
+
* Node.bl_rna_get_subclass_py
|
|
56113
|
+
* NodeInternal.poll
|
|
56114
|
+
* NodeInternal.poll_instance
|
|
56115
|
+
* NodeInternal.update
|
|
56116
|
+
* NodeInternal.draw_buttons
|
|
56117
|
+
* NodeInternal.draw_buttons_ext
|
|
56118
|
+
* NodeInternal.bl_rna_get_subclass
|
|
56119
|
+
* NodeInternal.bl_rna_get_subclass_py
|
|
56120
|
+
* GeometryNode.poll
|
|
56121
|
+
* GeometryNode.bl_rna_get_subclass
|
|
56122
|
+
* GeometryNode.bl_rna_get_subclass_py
|
|
56123
|
+
|
|
56124
|
+
:columns: 2
|
|
56125
|
+
|
|
56126
|
+
|
|
56038
56127
|
--------------------
|
|
56039
56128
|
|
|
56040
56129
|
* bpy_struct.id_data
|
|
@@ -79222,6 +79311,8 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
79222
79311
|
* GeometryNodeSampleCurve.output_template
|
|
79223
79312
|
* GeometryNodeSampleGrid.input_template
|
|
79224
79313
|
* GeometryNodeSampleGrid.output_template
|
|
79314
|
+
* GeometryNodeSampleGridIndex.input_template
|
|
79315
|
+
* GeometryNodeSampleGridIndex.output_template
|
|
79225
79316
|
* GeometryNodeSampleIndex.input_template
|
|
79226
79317
|
* GeometryNodeSampleIndex.output_template
|
|
79227
79318
|
* GeometryNodeSampleNearest.input_template
|
|
@@ -97547,7 +97638,7 @@ import mathutils
|
|
|
97547
97638
|
|
|
97548
97639
|
GenericType = typing.TypeVar("GenericType")
|
|
97549
97640
|
|
|
97550
|
-
class bpy_prop_collection:
|
|
97641
|
+
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
97551
97642
|
"""built-in class used for all collections."""
|
|
97552
97643
|
|
|
97553
97644
|
def find(self, key: typing.Optional[str]) -> int:
|
|
@@ -97579,7 +97670,9 @@ class bpy_prop_collection:
|
|
|
97579
97670
|
"""
|
|
97580
97671
|
...
|
|
97581
97672
|
|
|
97582
|
-
def get(
|
|
97673
|
+
def get(
|
|
97674
|
+
self, key: typing.Optional[str], default=None
|
|
97675
|
+
) -> typing.Optional[GenericType]:
|
|
97583
97676
|
"""Returns the value of the item assigned to key or default when not found
|
|
97584
97677
|
(matches Python's dictionary function of the same name).
|
|
97585
97678
|
|
|
@@ -97587,6 +97680,8 @@ class bpy_prop_collection:
|
|
|
97587
97680
|
:type key: typing.Optional[str]
|
|
97588
97681
|
:param default: Optional argument for the value to return if
|
|
97589
97682
|
key is not found.
|
|
97683
|
+
:return:
|
|
97684
|
+
:rtype: typing.Optional[GenericType]
|
|
97590
97685
|
"""
|
|
97591
97686
|
...
|
|
97592
97687
|
|
|
@@ -97616,7 +97711,61 @@ class bpy_prop_collection:
|
|
|
97616
97711
|
"""
|
|
97617
97712
|
...
|
|
97618
97713
|
|
|
97619
|
-
|
|
97714
|
+
def __getitem__(self, key: typing.Union[int, str]) -> GenericType:
|
|
97715
|
+
"""
|
|
97716
|
+
|
|
97717
|
+
:param key:
|
|
97718
|
+
:type key: typing.Union[int, str]
|
|
97719
|
+
:return:
|
|
97720
|
+
:rtype: GenericType
|
|
97721
|
+
"""
|
|
97722
|
+
...
|
|
97723
|
+
|
|
97724
|
+
def __setitem__(self, key: typing.Union[int, str], value: GenericType):
|
|
97725
|
+
"""
|
|
97726
|
+
|
|
97727
|
+
:param key:
|
|
97728
|
+
:type key: typing.Union[int, str]
|
|
97729
|
+
:param value:
|
|
97730
|
+
:type value: GenericType
|
|
97731
|
+
"""
|
|
97732
|
+
...
|
|
97733
|
+
|
|
97734
|
+
def __delitem__(self, key: typing.Union[int, str]) -> GenericType:
|
|
97735
|
+
"""
|
|
97736
|
+
|
|
97737
|
+
:param key:
|
|
97738
|
+
:type key: typing.Union[int, str]
|
|
97739
|
+
:return:
|
|
97740
|
+
:rtype: GenericType
|
|
97741
|
+
"""
|
|
97742
|
+
...
|
|
97743
|
+
|
|
97744
|
+
def __iter__(self) -> typing.Iterator[GenericType]:
|
|
97745
|
+
"""
|
|
97746
|
+
|
|
97747
|
+
:return:
|
|
97748
|
+
:rtype: typing.Iterator[GenericType]
|
|
97749
|
+
"""
|
|
97750
|
+
...
|
|
97751
|
+
|
|
97752
|
+
def __next__(self) -> GenericType:
|
|
97753
|
+
"""
|
|
97754
|
+
|
|
97755
|
+
:return:
|
|
97756
|
+
:rtype: GenericType
|
|
97757
|
+
"""
|
|
97758
|
+
...
|
|
97759
|
+
|
|
97760
|
+
def __len__(self) -> int:
|
|
97761
|
+
"""
|
|
97762
|
+
|
|
97763
|
+
:return:
|
|
97764
|
+
:rtype: int
|
|
97765
|
+
"""
|
|
97766
|
+
...
|
|
97767
|
+
|
|
97768
|
+
class bpy_struct(typing.Generic[GenericType]):
|
|
97620
97769
|
"""built-in base class for all classes in bpy.types."""
|
|
97621
97770
|
|
|
97622
97771
|
id_data: typing.Any
|
|
@@ -97882,6 +98031,36 @@ class bpy_struct:
|
|
|
97882
98031
|
"""
|
|
97883
98032
|
...
|
|
97884
98033
|
|
|
98034
|
+
def __getitem__(self, key: typing.Union[int, str]) -> typing.Any:
|
|
98035
|
+
"""
|
|
98036
|
+
|
|
98037
|
+
:param key:
|
|
98038
|
+
:type key: typing.Union[int, str]
|
|
98039
|
+
:return:
|
|
98040
|
+
:rtype: typing.Any
|
|
98041
|
+
"""
|
|
98042
|
+
...
|
|
98043
|
+
|
|
98044
|
+
def __setitem__(self, key: typing.Union[int, str], value: typing.Any):
|
|
98045
|
+
"""
|
|
98046
|
+
|
|
98047
|
+
:param key:
|
|
98048
|
+
:type key: typing.Union[int, str]
|
|
98049
|
+
:param value:
|
|
98050
|
+
:type value: typing.Any
|
|
98051
|
+
"""
|
|
98052
|
+
...
|
|
98053
|
+
|
|
98054
|
+
def __delitem__(self, key: typing.Union[int, str]) -> typing.Any:
|
|
98055
|
+
"""
|
|
98056
|
+
|
|
98057
|
+
:param key:
|
|
98058
|
+
:type key: typing.Union[int, str]
|
|
98059
|
+
:return:
|
|
98060
|
+
:rtype: typing.Any
|
|
98061
|
+
"""
|
|
98062
|
+
...
|
|
98063
|
+
|
|
97885
98064
|
class bpy_prop_array(typing.Generic[GenericType]):
|
|
97886
98065
|
""" """
|
|
97887
98066
|
|
|
@@ -99102,6 +99281,30 @@ class Menu:
|
|
|
99102
99281
|
"""
|
|
99103
99282
|
...
|
|
99104
99283
|
|
|
99284
|
+
@classmethod
|
|
99285
|
+
def append(cls, draw_func):
|
|
99286
|
+
"""
|
|
99287
|
+
|
|
99288
|
+
:param draw_func:
|
|
99289
|
+
"""
|
|
99290
|
+
...
|
|
99291
|
+
|
|
99292
|
+
@classmethod
|
|
99293
|
+
def prepend(cls, draw_func):
|
|
99294
|
+
"""
|
|
99295
|
+
|
|
99296
|
+
:param draw_func:
|
|
99297
|
+
"""
|
|
99298
|
+
...
|
|
99299
|
+
|
|
99300
|
+
@classmethod
|
|
99301
|
+
def remove(cls, draw_func):
|
|
99302
|
+
"""
|
|
99303
|
+
|
|
99304
|
+
:param draw_func:
|
|
99305
|
+
"""
|
|
99306
|
+
...
|
|
99307
|
+
|
|
99105
99308
|
class Mesh:
|
|
99106
99309
|
"""Mesh data-block defining geometric surfaces"""
|
|
99107
99310
|
|
|
@@ -102417,6 +102620,12 @@ class AddonPreferences(bpy_struct):
|
|
|
102417
102620
|
:type: typing.Union[str, typing.Any]
|
|
102418
102621
|
"""
|
|
102419
102622
|
|
|
102623
|
+
layout: UILayout
|
|
102624
|
+
"""
|
|
102625
|
+
|
|
102626
|
+
:type: UILayout
|
|
102627
|
+
"""
|
|
102628
|
+
|
|
102420
102629
|
@classmethod
|
|
102421
102630
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> Struct:
|
|
102422
102631
|
"""
|
|
@@ -124272,10 +124481,10 @@ class KeyConfigurations(bpy_struct):
|
|
|
124272
124481
|
context: typing.Optional[typing.Union[str, int]] = "INVOKE_DEFAULT",
|
|
124273
124482
|
properties: typing.Optional[OperatorProperties] = None,
|
|
124274
124483
|
include: typing.Optional[typing.Any] = {
|
|
124275
|
-
'"NDOF"',
|
|
124276
|
-
'"MOUSE"',
|
|
124277
124484
|
'"KEYBOARD"',
|
|
124485
|
+
'"NDOF"',
|
|
124278
124486
|
'"ACTIONZONE"',
|
|
124487
|
+
'"MOUSE"',
|
|
124279
124488
|
},
|
|
124280
124489
|
exclude: typing.Optional[typing.Any] = {},
|
|
124281
124490
|
):
|
|
@@ -124768,10 +124977,10 @@ class KeyMapItems(bpy_struct):
|
|
|
124768
124977
|
idname: typing.Union[str, typing.Any],
|
|
124769
124978
|
properties: typing.Optional[OperatorProperties] = None,
|
|
124770
124979
|
include: typing.Optional[typing.Any] = {
|
|
124771
|
-
'"NDOF"',
|
|
124772
|
-
'"MOUSE"',
|
|
124773
124980
|
'"KEYBOARD"',
|
|
124981
|
+
'"NDOF"',
|
|
124774
124982
|
'"ACTIONZONE"',
|
|
124983
|
+
'"MOUSE"',
|
|
124775
124984
|
},
|
|
124776
124985
|
exclude: typing.Optional[typing.Any] = {},
|
|
124777
124986
|
) -> KeyMapItem:
|
|
@@ -161433,7 +161642,7 @@ class KeyframeAnimationStrip(AnimationStrip, bpy_struct):
|
|
|
161433
161642
|
array_index: typing.Optional[int],
|
|
161434
161643
|
value: typing.Optional[float],
|
|
161435
161644
|
time: typing.Optional[float],
|
|
161436
|
-
) ->
|
|
161645
|
+
) -> bool:
|
|
161437
161646
|
"""key_insert
|
|
161438
161647
|
|
|
161439
161648
|
:param binding: Binding, The binding that identifies which 'thing' should be keyed
|
|
@@ -161446,8 +161655,8 @@ class KeyframeAnimationStrip(AnimationStrip, bpy_struct):
|
|
|
161446
161655
|
:type value: typing.Optional[float]
|
|
161447
161656
|
:param time: Time of the key, Time, in frames, of the key
|
|
161448
161657
|
:type time: typing.Optional[float]
|
|
161449
|
-
:return:
|
|
161450
|
-
:rtype:
|
|
161658
|
+
:return: Success, Whether the key was successfully inserted
|
|
161659
|
+
:rtype: bool
|
|
161451
161660
|
"""
|
|
161452
161661
|
...
|
|
161453
161662
|
|
|
@@ -194552,12 +194761,6 @@ class AreaLight(Light, ID, bpy_struct):
|
|
|
194552
194761
|
:type: float
|
|
194553
194762
|
"""
|
|
194554
194763
|
|
|
194555
|
-
shadow_softness_factor: float
|
|
194556
|
-
""" Scale light shape for smaller penumbra
|
|
194557
|
-
|
|
194558
|
-
:type: float
|
|
194559
|
-
"""
|
|
194560
|
-
|
|
194561
194764
|
shape: typing.Union[str, int]
|
|
194562
194765
|
""" Shape of the area Light
|
|
194563
194766
|
|
|
@@ -194685,12 +194888,6 @@ class PointLight(Light, ID, bpy_struct):
|
|
|
194685
194888
|
:type: float
|
|
194686
194889
|
"""
|
|
194687
194890
|
|
|
194688
|
-
shadow_softness_factor: float
|
|
194689
|
-
""" Scale light shape for smaller penumbra
|
|
194690
|
-
|
|
194691
|
-
:type: float
|
|
194692
|
-
"""
|
|
194693
|
-
|
|
194694
194891
|
use_contact_shadow: bool
|
|
194695
194892
|
""" Use screen space ray-tracing to have correct shadowing near occluder, or for small features that does not appear in shadow maps
|
|
194696
194893
|
|
|
@@ -194800,12 +194997,6 @@ class SpotLight(Light, ID, bpy_struct):
|
|
|
194800
194997
|
:type: float
|
|
194801
194998
|
"""
|
|
194802
194999
|
|
|
194803
|
-
shadow_softness_factor: float
|
|
194804
|
-
""" Scale light shape for smaller penumbra
|
|
194805
|
-
|
|
194806
|
-
:type: float
|
|
194807
|
-
"""
|
|
194808
|
-
|
|
194809
195000
|
show_cone: bool
|
|
194810
195001
|
""" Display transparent cone in 3D view to visualize which objects are contained in it
|
|
194811
195002
|
|
|
@@ -194969,12 +195160,6 @@ class SunLight(Light, ID, bpy_struct):
|
|
|
194969
195160
|
:type: float
|
|
194970
195161
|
"""
|
|
194971
195162
|
|
|
194972
|
-
shadow_softness_factor: float
|
|
194973
|
-
""" Scale light shape for smaller penumbra
|
|
194974
|
-
|
|
194975
|
-
:type: float
|
|
194976
|
-
"""
|
|
194977
|
-
|
|
194978
195163
|
shadow_trace_distance: float
|
|
194979
195164
|
""" Maximum distance a shadow map tracing ray can travel
|
|
194980
195165
|
|
|
@@ -223679,6 +223864,72 @@ class GeometryNodeSampleGrid(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
223679
223864
|
"""
|
|
223680
223865
|
...
|
|
223681
223866
|
|
|
223867
|
+
class GeometryNodeSampleGridIndex(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
223868
|
+
"""Retrieve volume grid values at specific voxels"""
|
|
223869
|
+
|
|
223870
|
+
data_type: typing.Union[str, int]
|
|
223871
|
+
""" Node socket data type
|
|
223872
|
+
|
|
223873
|
+
:type: typing.Union[str, int]
|
|
223874
|
+
"""
|
|
223875
|
+
|
|
223876
|
+
@classmethod
|
|
223877
|
+
def is_registered_node_type(cls) -> bool:
|
|
223878
|
+
"""True if a registered node type
|
|
223879
|
+
|
|
223880
|
+
:return: Result
|
|
223881
|
+
:rtype: bool
|
|
223882
|
+
"""
|
|
223883
|
+
...
|
|
223884
|
+
|
|
223885
|
+
@classmethod
|
|
223886
|
+
def input_template(cls, index: typing.Optional[int]) -> NodeInternalSocketTemplate:
|
|
223887
|
+
"""Input socket template
|
|
223888
|
+
|
|
223889
|
+
:param index: Index
|
|
223890
|
+
:type index: typing.Optional[int]
|
|
223891
|
+
:return: result
|
|
223892
|
+
:rtype: NodeInternalSocketTemplate
|
|
223893
|
+
"""
|
|
223894
|
+
...
|
|
223895
|
+
|
|
223896
|
+
@classmethod
|
|
223897
|
+
def output_template(cls, index: typing.Optional[int]) -> NodeInternalSocketTemplate:
|
|
223898
|
+
"""Output socket template
|
|
223899
|
+
|
|
223900
|
+
:param index: Index
|
|
223901
|
+
:type index: typing.Optional[int]
|
|
223902
|
+
:return: result
|
|
223903
|
+
:rtype: NodeInternalSocketTemplate
|
|
223904
|
+
"""
|
|
223905
|
+
...
|
|
223906
|
+
|
|
223907
|
+
@classmethod
|
|
223908
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> Struct:
|
|
223909
|
+
"""
|
|
223910
|
+
|
|
223911
|
+
:param id: The RNA type identifier.
|
|
223912
|
+
:type id: typing.Optional[str]
|
|
223913
|
+
:param default:
|
|
223914
|
+
:return: The RNA type or default when not found.
|
|
223915
|
+
:rtype: Struct
|
|
223916
|
+
"""
|
|
223917
|
+
...
|
|
223918
|
+
|
|
223919
|
+
@classmethod
|
|
223920
|
+
def bl_rna_get_subclass_py(
|
|
223921
|
+
cls, id: typing.Optional[str], default=None
|
|
223922
|
+
) -> typing.Any:
|
|
223923
|
+
"""
|
|
223924
|
+
|
|
223925
|
+
:param id: The RNA type identifier.
|
|
223926
|
+
:type id: typing.Optional[str]
|
|
223927
|
+
:param default:
|
|
223928
|
+
:return: The class or default when not found.
|
|
223929
|
+
:rtype: typing.Any
|
|
223930
|
+
"""
|
|
223931
|
+
...
|
|
223932
|
+
|
|
223682
223933
|
class GeometryNodeSampleIndex(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
223683
223934
|
"""Retrieve values from specific geometry elements"""
|
|
223684
223935
|
|
|
@@ -366,7 +366,7 @@ bpy/ops/export_anim/__init__.pyi,sha256=0IogQVQXsp9G7kyI5JtxOuFJWBg4MmEqK5Wz8ehl
|
|
|
366
366
|
bpy/ops/export_anim/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
367
|
bpy/ops/export_mesh/__init__.pyi,sha256=g-ly7MhwZagMZDhISeopxZ4mafvL7SAOZJ82kRr_uu8,3023
|
|
368
368
|
bpy/ops/export_mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
369
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
369
|
+
bpy/ops/export_scene/__init__.pyi,sha256=Z9-yWC5LBMi2ud6EJqpgO7kpv5TZKMOx-RHV_j3ynro,48978
|
|
370
370
|
bpy/ops/export_scene/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
371
371
|
bpy/ops/file/__init__.pyi,sha256=oJ_cnxgkGpmc6T6XujhgxqGpl58UABapHlLv27yGl7U,30920
|
|
372
372
|
bpy/ops/file/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -408,7 +408,7 @@ bpy/ops/mball/__init__.pyi,sha256=AuChtWVSrHuEk3JuYc2bJhxsLJpbmlWgENwV93ISDO0,62
|
|
|
408
408
|
bpy/ops/mball/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
409
409
|
bpy/ops/mesh/__init__.pyi,sha256=-jX4QanNDVYtcAaGC3q2jlgltNqfIDqmcu6U7QydqC4,181614
|
|
410
410
|
bpy/ops/mesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
411
|
-
bpy/ops/nla/__init__.pyi,sha256=
|
|
411
|
+
bpy/ops/nla/__init__.pyi,sha256=8eAFZP7MSn9z_b0mIgRjXPItqL-qUNvWAm3jb-d6LAc,29427
|
|
412
412
|
bpy/ops/nla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
413
413
|
bpy/ops/node/__init__.pyi,sha256=Teo0e6YTazie1Z8GRci3dIq3JltOWZ1J368fnaliVcE,75452
|
|
414
414
|
bpy/ops/node/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -482,7 +482,7 @@ bpy/path/__init__.pyi,sha256=sZMxM2jeuZMbQOzNmFS4jlYHCnr-of5PN8XT5t6vg7M,7169
|
|
|
482
482
|
bpy/path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
483
483
|
bpy/props/__init__.pyi,sha256=FXgbYoK8g8h7efFV8tL9R7E6tPI1MjJzyRC9rJ_sYnw,31482
|
|
484
484
|
bpy/props/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
485
|
-
bpy/types/__init__.pyi,sha256
|
|
485
|
+
bpy/types/__init__.pyi,sha256=-A-2d9Zh-QYI5bf_OWtHM9dsa07VrSOdyJq7BBJZpv8,5529253
|
|
486
486
|
bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
487
487
|
bpy/utils/__init__.pyi,sha256=MtlLDnlInvRAEUqg7RVOZ49o6ncgLDgknamY1wr-hyI,13069
|
|
488
488
|
bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -612,7 +612,7 @@ rna_xml/__init__.pyi,sha256=12yOlLxfl-1hZ6MN5TCak3gGdgz4TknNjZ4OuoJE7x4,578
|
|
|
612
612
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
613
613
|
sys_info/__init__.pyi,sha256=5cKQiE7NFvOTsjdqB7pO7uflClATfF-90sCEeo9JOO8,110
|
|
614
614
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
615
|
-
fake_bpy_module-
|
|
616
|
-
fake_bpy_module-
|
|
617
|
-
fake_bpy_module-
|
|
618
|
-
fake_bpy_module-
|
|
615
|
+
fake_bpy_module-20240508.dist-info/METADATA,sha256=HzhTkTyl1zuWr6eTAtN8Jt60BmJJy7v1oNQ7pngFfQQ,7008
|
|
616
|
+
fake_bpy_module-20240508.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
617
|
+
fake_bpy_module-20240508.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
618
|
+
fake_bpy_module-20240508.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|