fake-bpy-module 20240905__py3-none-any.whl → 20240906__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_internal/system_info/__init__.pyi +3 -2
- {sys_info → _bpy_internal/system_info/text_generate_runtime}/__init__.pyi +1 -1
- _bpy_internal/system_info/{runtime → url_prefill_runtime}/__init__.pyi +1 -1
- _bpy_internal/system_info/{startup → url_prefill_startup}/__init__.pyi +2 -1
- bl_ui/properties_data_armature/__init__.pyi +36 -0
- bl_ui/properties_data_curve/__init__.pyi +43 -0
- bl_ui/properties_data_curves/__init__.pyi +37 -0
- bl_ui/properties_data_gpencil/__init__.pyi +36 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +36 -0
- bl_ui/properties_data_lattice/__init__.pyi +44 -0
- bl_ui/properties_data_light/__init__.pyi +44 -0
- bl_ui/properties_data_lightprobe/__init__.pyi +34 -0
- bl_ui/properties_data_mesh/__init__.pyi +44 -0
- bl_ui/properties_data_metaball/__init__.pyi +36 -0
- bl_ui/properties_data_speaker/__init__.pyi +37 -0
- bl_ui/properties_data_volume/__init__.pyi +37 -0
- bl_ui/properties_freestyle/__init__.pyi +36 -0
- bl_ui/properties_material_gpencil/__init__.pyi +36 -0
- bl_ui/properties_object/__init__.pyi +36 -0
- bl_ui/properties_particle/__init__.pyi +37 -0
- bl_ui/properties_scene/__init__.pyi +36 -0
- bl_ui/properties_texture/__init__.pyi +51 -0
- bl_ui/properties_world/__init__.pyi +44 -0
- bl_ui/space_properties/__init__.pyi +2 -2
- bpy/types/__init__.pyi +148 -2
- {fake_bpy_module-20240905.dist-info → fake_bpy_module-20240906.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240905.dist-info → fake_bpy_module-20240906.dist-info}/RECORD +30 -31
- {fake_bpy_module-20240905.dist-info → fake_bpy_module-20240906.dist-info}/top_level.txt +0 -1
- freestyle/utils/__init__.pyi +1 -1
- sys_info/py.typed +0 -0
- {fake_bpy_module-20240905.dist-info → fake_bpy_module-20240906.dist-info}/WHEEL +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -43092,6 +43092,48 @@ Property types used in class declarations are all in bpy.props
|
|
|
43092
43092
|
:columns: 2
|
|
43093
43093
|
|
|
43094
43094
|
|
|
43095
|
+
--------------------
|
|
43096
|
+
|
|
43097
|
+
* NodesModifier.node_warnings
|
|
43098
|
+
|
|
43099
|
+
:columns: 2
|
|
43100
|
+
|
|
43101
|
+
|
|
43102
|
+
--------------------
|
|
43103
|
+
|
|
43104
|
+
* bpy_struct.id_data
|
|
43105
|
+
|
|
43106
|
+
:columns: 2
|
|
43107
|
+
|
|
43108
|
+
|
|
43109
|
+
--------------------
|
|
43110
|
+
|
|
43111
|
+
* bpy_struct.as_pointer
|
|
43112
|
+
* bpy_struct.driver_add
|
|
43113
|
+
* bpy_struct.driver_remove
|
|
43114
|
+
* bpy_struct.get
|
|
43115
|
+
* bpy_struct.id_properties_clear
|
|
43116
|
+
* bpy_struct.id_properties_ensure
|
|
43117
|
+
* bpy_struct.id_properties_ui
|
|
43118
|
+
* bpy_struct.is_property_hidden
|
|
43119
|
+
* bpy_struct.is_property_overridable_library
|
|
43120
|
+
* bpy_struct.is_property_readonly
|
|
43121
|
+
* bpy_struct.is_property_set
|
|
43122
|
+
* bpy_struct.items
|
|
43123
|
+
* bpy_struct.keyframe_delete
|
|
43124
|
+
* bpy_struct.keyframe_insert
|
|
43125
|
+
* bpy_struct.keys
|
|
43126
|
+
* bpy_struct.path_from_id
|
|
43127
|
+
* bpy_struct.path_resolve
|
|
43128
|
+
* bpy_struct.pop
|
|
43129
|
+
* bpy_struct.property_overridable_library_set
|
|
43130
|
+
* bpy_struct.property_unset
|
|
43131
|
+
* bpy_struct.type_recast
|
|
43132
|
+
* bpy_struct.values
|
|
43133
|
+
|
|
43134
|
+
:columns: 2
|
|
43135
|
+
|
|
43136
|
+
|
|
43095
43137
|
--------------------
|
|
43096
43138
|
|
|
43097
43139
|
* Material.lineart
|
|
@@ -91149,6 +91191,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
91149
91191
|
* ActionChannelBags.new
|
|
91150
91192
|
* ActionSlots.active
|
|
91151
91193
|
* ActionSlots.new
|
|
91194
|
+
* ActionSlots.remove
|
|
91152
91195
|
* AnimData.action_slot
|
|
91153
91196
|
* AnimData.action_slots
|
|
91154
91197
|
* KeyframeActionStrip.key_insert
|
|
@@ -100944,7 +100987,7 @@ class ActionSlots(bpy_prop_collection[ActionSlot], bpy_struct):
|
|
|
100944
100987
|
"""
|
|
100945
100988
|
|
|
100946
100989
|
def new(self, for_id: ID | None = None) -> ActionSlot:
|
|
100947
|
-
"""Add a slot to the
|
|
100990
|
+
"""Add a slot to the Action
|
|
100948
100991
|
|
|
100949
100992
|
:param for_id: Data-Block, If given, the new slot will be named after this data-block, and limited to animating data-blocks of its type. If ommitted, limiting the ID type will happen as soon as the slot is assigned.
|
|
100950
100993
|
:type for_id: ID | None
|
|
@@ -100953,6 +100996,14 @@ class ActionSlots(bpy_prop_collection[ActionSlot], bpy_struct):
|
|
|
100953
100996
|
"""
|
|
100954
100997
|
...
|
|
100955
100998
|
|
|
100999
|
+
def remove(self, action_slot: ActionSlot | None):
|
|
101000
|
+
"""Remove the slot from the Action, including all animation that is associated with that slot
|
|
101001
|
+
|
|
101002
|
+
:param action_slot: Action Slot, The slot to remove
|
|
101003
|
+
:type action_slot: ActionSlot | None
|
|
101004
|
+
"""
|
|
101005
|
+
...
|
|
101006
|
+
|
|
100956
101007
|
@classmethod
|
|
100957
101008
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
100958
101009
|
"""
|
|
@@ -115025,6 +115076,12 @@ class BevelModifier(Modifier, bpy_struct):
|
|
|
115025
115076
|
:type: CurveProfile
|
|
115026
115077
|
"""
|
|
115027
115078
|
|
|
115079
|
+
edge_weight: str
|
|
115080
|
+
""" Attribute name for edge weight
|
|
115081
|
+
|
|
115082
|
+
:type: str
|
|
115083
|
+
"""
|
|
115084
|
+
|
|
115028
115085
|
face_strength_mode: typing.Literal[
|
|
115029
115086
|
"FSTR_NONE", "FSTR_NEW", "FSTR_AFFECTED", "FSTR_ALL"
|
|
115030
115087
|
]
|
|
@@ -115129,6 +115186,12 @@ class BevelModifier(Modifier, bpy_struct):
|
|
|
115129
115186
|
:type: str
|
|
115130
115187
|
"""
|
|
115131
115188
|
|
|
115189
|
+
vertex_weight: str
|
|
115190
|
+
""" Attribute name for vertex weight
|
|
115191
|
+
|
|
115192
|
+
:type: str
|
|
115193
|
+
"""
|
|
115194
|
+
|
|
115132
115195
|
vmesh_method: typing.Literal["ADJ", "CUTOFF"]
|
|
115133
115196
|
""" The method to use to create the mesh at intersections
|
|
115134
115197
|
|
|
@@ -159373,7 +159436,7 @@ class GeometryNodeWarning(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
159373
159436
|
warning_type: typing.Literal["ERROR", "WARNING", "INFO"]
|
|
159374
159437
|
"""
|
|
159375
159438
|
|
|
159376
|
-
:type: typing.Literal['ERROR','WARNING','INFO']
|
|
159439
|
+
:type: typing.Literal['ERROR', 'WARNING', 'INFO']
|
|
159377
159440
|
"""
|
|
159378
159441
|
|
|
159379
159442
|
@classmethod
|
|
@@ -190499,6 +190562,12 @@ class NodesModifier(Modifier, bpy_struct):
|
|
|
190499
190562
|
:type: NodeTree | None
|
|
190500
190563
|
"""
|
|
190501
190564
|
|
|
190565
|
+
node_warnings: bpy_prop_collection[NodesModifierWarning]
|
|
190566
|
+
"""
|
|
190567
|
+
|
|
190568
|
+
:type: bpy_prop_collection[NodesModifierWarning]
|
|
190569
|
+
"""
|
|
190570
|
+
|
|
190502
190571
|
open_bake_data_blocks_panel: bool
|
|
190503
190572
|
"""
|
|
190504
190573
|
|
|
@@ -190764,6 +190833,45 @@ class NodesModifierPanel(bpy_struct):
|
|
|
190764
190833
|
"""
|
|
190765
190834
|
...
|
|
190766
190835
|
|
|
190836
|
+
class NodesModifierWarning(bpy_struct):
|
|
190837
|
+
"""Warning created during evaluation of a geometry nodes modifier"""
|
|
190838
|
+
|
|
190839
|
+
message: str
|
|
190840
|
+
"""
|
|
190841
|
+
|
|
190842
|
+
:type: str
|
|
190843
|
+
"""
|
|
190844
|
+
|
|
190845
|
+
type: typing.Literal["ERROR", "WARNING", "INFO"]
|
|
190846
|
+
"""
|
|
190847
|
+
|
|
190848
|
+
:type: typing.Literal['ERROR', 'WARNING', 'INFO']
|
|
190849
|
+
"""
|
|
190850
|
+
|
|
190851
|
+
@classmethod
|
|
190852
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
190853
|
+
"""
|
|
190854
|
+
|
|
190855
|
+
:param id: The RNA type identifier.
|
|
190856
|
+
:type id: str | None
|
|
190857
|
+
:param default:
|
|
190858
|
+
:return: The RNA type or default when not found.
|
|
190859
|
+
:rtype: Struct
|
|
190860
|
+
"""
|
|
190861
|
+
...
|
|
190862
|
+
|
|
190863
|
+
@classmethod
|
|
190864
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
190865
|
+
"""
|
|
190866
|
+
|
|
190867
|
+
:param id: The RNA type identifier.
|
|
190868
|
+
:type id: str | None
|
|
190869
|
+
:param default:
|
|
190870
|
+
:return: The class or default when not found.
|
|
190871
|
+
:rtype: typing.Any
|
|
190872
|
+
"""
|
|
190873
|
+
...
|
|
190874
|
+
|
|
190767
190875
|
class NoiseTexture(Texture, ID, bpy_struct):
|
|
190768
190876
|
"""Procedural noise texture"""
|
|
190769
190877
|
|
|
@@ -257794,6 +257902,8 @@ DATA_PT_EEVEE_shadow_contact: bl_ui.properties_data_light.DATA_PT_EEVEE_shadow_c
|
|
|
257794
257902
|
|
|
257795
257903
|
DATA_PT_active_spline: bl_ui.properties_data_curve.DATA_PT_active_spline
|
|
257796
257904
|
|
|
257905
|
+
DATA_PT_armature_animation: bl_ui.properties_data_armature.DATA_PT_armature_animation
|
|
257906
|
+
|
|
257797
257907
|
DATA_PT_bone_collections: bl_ui.properties_data_armature.DATA_PT_bone_collections
|
|
257798
257908
|
|
|
257799
257909
|
DATA_PT_camera: bl_ui.properties_data_camera.DATA_PT_camera
|
|
@@ -257846,8 +257956,12 @@ DATA_PT_context_speaker: bl_ui.properties_data_speaker.DATA_PT_context_speaker
|
|
|
257846
257956
|
|
|
257847
257957
|
DATA_PT_context_volume: bl_ui.properties_data_volume.DATA_PT_context_volume
|
|
257848
257958
|
|
|
257959
|
+
DATA_PT_curve_animation: bl_ui.properties_data_curve.DATA_PT_curve_animation
|
|
257960
|
+
|
|
257849
257961
|
DATA_PT_curve_texture_space: bl_ui.properties_data_curve.DATA_PT_curve_texture_space
|
|
257850
257962
|
|
|
257963
|
+
DATA_PT_curves_animation: bl_ui.properties_data_curves.DATA_PT_curves_animation
|
|
257964
|
+
|
|
257851
257965
|
DATA_PT_curves_surface: bl_ui.properties_data_curves.DATA_PT_curves_surface
|
|
257852
257966
|
|
|
257853
257967
|
DATA_PT_custom_props_arm: bl_ui.properties_data_armature.DATA_PT_custom_props_arm
|
|
@@ -257896,6 +258010,8 @@ DATA_PT_geometry_curve_bevel: bl_ui.properties_data_curve.DATA_PT_geometry_curve
|
|
|
257896
258010
|
|
|
257897
258011
|
DATA_PT_geometry_curve_start_end: bl_ui.properties_data_curve.DATA_PT_geometry_curve_start_end
|
|
257898
258012
|
|
|
258013
|
+
DATA_PT_gpencil_animation: bl_ui.properties_data_gpencil.DATA_PT_gpencil_animation
|
|
258014
|
+
|
|
257899
258015
|
DATA_PT_gpencil_canvas: bl_ui.properties_data_gpencil.DATA_PT_gpencil_canvas
|
|
257900
258016
|
|
|
257901
258017
|
DATA_PT_gpencil_display: bl_ui.properties_data_gpencil.DATA_PT_gpencil_display
|
|
@@ -257924,6 +258040,8 @@ DATA_PT_gpencil_strokes: bl_ui.properties_data_gpencil.DATA_PT_gpencil_strokes
|
|
|
257924
258040
|
|
|
257925
258041
|
DATA_PT_gpencil_vertex_groups: bl_ui.properties_data_gpencil.DATA_PT_gpencil_vertex_groups
|
|
257926
258042
|
|
|
258043
|
+
DATA_PT_grease_pencil_animation: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_animation
|
|
258044
|
+
|
|
257927
258045
|
DATA_PT_grease_pencil_custom_props: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_custom_props
|
|
257928
258046
|
|
|
257929
258047
|
DATA_PT_grease_pencil_layer_masks: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_masks
|
|
@@ -257946,12 +258064,18 @@ DATA_PT_iksolver_itasc: bl_ui.properties_data_armature.DATA_PT_iksolver_itasc
|
|
|
257946
258064
|
|
|
257947
258065
|
DATA_PT_lattice: bl_ui.properties_data_lattice.DATA_PT_lattice
|
|
257948
258066
|
|
|
258067
|
+
DATA_PT_lattice_animation: bl_ui.properties_data_lattice.DATA_PT_lattice_animation
|
|
258068
|
+
|
|
257949
258069
|
DATA_PT_lens: bl_ui.properties_data_camera.DATA_PT_lens
|
|
257950
258070
|
|
|
257951
258071
|
DATA_PT_light: bl_ui.properties_data_light.DATA_PT_light
|
|
257952
258072
|
|
|
258073
|
+
DATA_PT_light_animation: bl_ui.properties_data_light.DATA_PT_light_animation
|
|
258074
|
+
|
|
257953
258075
|
DATA_PT_lightprobe: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe
|
|
257954
258076
|
|
|
258077
|
+
DATA_PT_lightprobe_animation: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_animation
|
|
258078
|
+
|
|
257955
258079
|
DATA_PT_lightprobe_bake: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_bake
|
|
257956
258080
|
|
|
257957
258081
|
DATA_PT_lightprobe_bake_capture: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_bake_capture
|
|
@@ -257976,10 +258100,14 @@ DATA_PT_lightprobe_visibility: bl_ui.properties_data_lightprobe.DATA_PT_lightpro
|
|
|
257976
258100
|
|
|
257977
258101
|
DATA_PT_mball_texture_space: bl_ui.properties_data_metaball.DATA_PT_mball_texture_space
|
|
257978
258102
|
|
|
258103
|
+
DATA_PT_mesh_animation: bl_ui.properties_data_mesh.DATA_PT_mesh_animation
|
|
258104
|
+
|
|
257979
258105
|
DATA_PT_mesh_attributes: bl_ui.properties_data_mesh.DATA_PT_mesh_attributes
|
|
257980
258106
|
|
|
257981
258107
|
DATA_PT_metaball: bl_ui.properties_data_metaball.DATA_PT_metaball
|
|
257982
258108
|
|
|
258109
|
+
DATA_PT_metaball_animation: bl_ui.properties_data_metaball.DATA_PT_metaball_animation
|
|
258110
|
+
|
|
257983
258111
|
DATA_PT_metaball_element: bl_ui.properties_data_metaball.DATA_PT_metaball_element
|
|
257984
258112
|
|
|
257985
258113
|
DATA_PT_modifiers: bl_ui.properties_data_modifier.DATA_PT_modifiers
|
|
@@ -258012,6 +258140,8 @@ DATA_PT_shape_keys: bl_ui.properties_data_mesh.DATA_PT_shape_keys
|
|
|
258012
258140
|
|
|
258013
258141
|
DATA_PT_speaker: bl_ui.properties_data_speaker.DATA_PT_speaker
|
|
258014
258142
|
|
|
258143
|
+
DATA_PT_speaker_animation: bl_ui.properties_data_speaker.DATA_PT_speaker_animation
|
|
258144
|
+
|
|
258015
258145
|
DATA_PT_spot: bl_ui.properties_data_light.DATA_PT_spot
|
|
258016
258146
|
|
|
258017
258147
|
DATA_PT_text_boxes: bl_ui.properties_data_curve.DATA_PT_text_boxes
|
|
@@ -258024,6 +258154,8 @@ DATA_PT_vertex_colors: bl_ui.properties_data_mesh.DATA_PT_vertex_colors
|
|
|
258024
258154
|
|
|
258025
258155
|
DATA_PT_vertex_groups: bl_ui.properties_data_mesh.DATA_PT_vertex_groups
|
|
258026
258156
|
|
|
258157
|
+
DATA_PT_volume_animation: bl_ui.properties_data_volume.DATA_PT_volume_animation
|
|
258158
|
+
|
|
258027
258159
|
DATA_PT_volume_file: bl_ui.properties_data_volume.DATA_PT_volume_file
|
|
258028
258160
|
|
|
258029
258161
|
DATA_PT_volume_grids: bl_ui.properties_data_volume.DATA_PT_volume_grids
|
|
@@ -258440,6 +258572,8 @@ MATERIAL_PT_custom_props: bl_ui.properties_material.MATERIAL_PT_custom_props
|
|
|
258440
258572
|
|
|
258441
258573
|
MATERIAL_PT_freestyle_line: bl_ui.properties_freestyle.MATERIAL_PT_freestyle_line
|
|
258442
258574
|
|
|
258575
|
+
MATERIAL_PT_gpencil_animation: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_animation
|
|
258576
|
+
|
|
258443
258577
|
MATERIAL_PT_gpencil_custom_props: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_custom_props
|
|
258444
258578
|
|
|
258445
258579
|
MATERIAL_PT_gpencil_fillcolor: bl_ui.properties_material_gpencil.MATERIAL_PT_gpencil_fillcolor
|
|
@@ -258790,6 +258924,8 @@ OBJECT_MT_modifier_add_physics: bl_ui.properties_data_modifier.OBJECT_MT_modifie
|
|
|
258790
258924
|
|
|
258791
258925
|
OBJECT_OT_assign_property_defaults: bl_operators.object.OBJECT_OT_assign_property_defaults
|
|
258792
258926
|
|
|
258927
|
+
OBJECT_PT_animation: bl_ui.properties_object.OBJECT_PT_animation
|
|
258928
|
+
|
|
258793
258929
|
OBJECT_PT_bActionConstraint: bl_ui.properties_constraint.OBJECT_PT_bActionConstraint
|
|
258794
258930
|
|
|
258795
258931
|
OBJECT_PT_bActionConstraint_action: bl_ui.properties_constraint.OBJECT_PT_bActionConstraint_action
|
|
@@ -258922,6 +259058,8 @@ OUTLINER_PT_filter: bl_ui.space_outliner.OUTLINER_PT_filter
|
|
|
258922
259058
|
|
|
258923
259059
|
PARTICLE_MT_context_menu: bl_ui.properties_particle.PARTICLE_MT_context_menu
|
|
258924
259060
|
|
|
259061
|
+
PARTICLE_PT_animation: bl_ui.properties_particle.PARTICLE_PT_animation
|
|
259062
|
+
|
|
258925
259063
|
PARTICLE_PT_boidbrain: bl_ui.properties_particle.PARTICLE_PT_boidbrain
|
|
258926
259064
|
|
|
258927
259065
|
PARTICLE_PT_cache: bl_ui.properties_particle.PARTICLE_PT_cache
|
|
@@ -259494,6 +259632,8 @@ SCENE_OT_freestyle_fill_range_by_selection: bl_operators.freestyle.SCENE_OT_free
|
|
|
259494
259632
|
|
|
259495
259633
|
SCENE_OT_freestyle_module_open: bl_operators.freestyle.SCENE_OT_freestyle_module_open
|
|
259496
259634
|
|
|
259635
|
+
SCENE_PT_animation: bl_ui.properties_scene.SCENE_PT_animation
|
|
259636
|
+
|
|
259497
259637
|
SCENE_PT_audio: bl_ui.properties_scene.SCENE_PT_audio
|
|
259498
259638
|
|
|
259499
259639
|
SCENE_PT_custom_props: bl_ui.properties_scene.SCENE_PT_custom_props
|
|
@@ -259696,6 +259836,8 @@ STATUSBAR_HT_header: bl_ui.space_statusbar.STATUSBAR_HT_header
|
|
|
259696
259836
|
|
|
259697
259837
|
TEXTURE_MT_context_menu: bl_ui.properties_texture.TEXTURE_MT_context_menu
|
|
259698
259838
|
|
|
259839
|
+
TEXTURE_PT_animation: bl_ui.properties_texture.TEXTURE_PT_animation
|
|
259840
|
+
|
|
259699
259841
|
TEXTURE_PT_blend: bl_ui.properties_texture.TEXTURE_PT_blend
|
|
259700
259842
|
|
|
259701
259843
|
TEXTURE_PT_clouds: bl_ui.properties_texture.TEXTURE_PT_clouds
|
|
@@ -260828,6 +260970,8 @@ VIEWLAYER_PT_filter: bl_ui.properties_view_layer.VIEWLAYER_PT_filter
|
|
|
260828
260970
|
|
|
260829
260971
|
VIEWLAYER_PT_freestyle: bl_ui.properties_freestyle.VIEWLAYER_PT_freestyle
|
|
260830
260972
|
|
|
260973
|
+
VIEWLAYER_PT_freestyle_animation: bl_ui.properties_freestyle.VIEWLAYER_PT_freestyle_animation
|
|
260974
|
+
|
|
260831
260975
|
VIEWLAYER_PT_freestyle_edge_detection: bl_ui.properties_freestyle.VIEWLAYER_PT_freestyle_edge_detection
|
|
260832
260976
|
|
|
260833
260977
|
VIEWLAYER_PT_freestyle_lineset: bl_ui.properties_freestyle.VIEWLAYER_PT_freestyle_lineset
|
|
@@ -260998,6 +261142,8 @@ WORKSPACE_UL_addons_items: bl_ui.properties_workspace.WORKSPACE_UL_addons_items
|
|
|
260998
261142
|
|
|
260999
261143
|
WORLD_OT_convert_volume_to_mesh: bl_operators.world.WORLD_OT_convert_volume_to_mesh
|
|
261000
261144
|
|
|
261145
|
+
WORLD_PT_animation: bl_ui.properties_world.WORLD_PT_animation
|
|
261146
|
+
|
|
261001
261147
|
WORLD_PT_context_world: bl_ui.properties_world.WORLD_PT_context_world
|
|
261002
261148
|
|
|
261003
261149
|
WORLD_PT_custom_props: bl_ui.properties_world.WORLD_PT_custom_props
|
|
@@ -9,9 +9,10 @@ _bpy_internal/extensions/wheel_manager/__init__.pyi,sha256=slfdVpjluIpcTqn7VUUok
|
|
|
9
9
|
_bpy_internal/freedesktop/__init__.pyi,sha256=QNipRSgzvJClY2YvNaHLy-kc4rVji97kce9b7aWvnkQ,902
|
|
10
10
|
_bpy_internal/grease_pencil/__init__.pyi,sha256=KOyn1tuZwKrKeMUcWE5BxraOORm-w2dlUzhxZFgj7qI,186
|
|
11
11
|
_bpy_internal/grease_pencil/stroke/__init__.pyi,sha256=pSmZSOveqSoj_KmyaqnsIQC9U667fDCX6d8r7sq8CrU,1964
|
|
12
|
-
_bpy_internal/system_info/__init__.pyi,sha256=
|
|
13
|
-
_bpy_internal/system_info/
|
|
14
|
-
_bpy_internal/system_info/
|
|
12
|
+
_bpy_internal/system_info/__init__.pyi,sha256=07ZedWNiBYImwVWqvBZkHXlc8JQo9ISQBJ92MS6mx90,330
|
|
13
|
+
_bpy_internal/system_info/text_generate_runtime/__init__.pyi,sha256=S_tQ0v7P8NkDRE4xV4HqWfrSpuSYZXWBXK7r2AXdMKA,179
|
|
14
|
+
_bpy_internal/system_info/url_prefill_runtime/__init__.pyi,sha256=VQ_5ZC3HGz47eZplhFyH6j5qNQf1C2X1KAJOK2O_bW4,202
|
|
15
|
+
_bpy_internal/system_info/url_prefill_startup/__init__.pyi,sha256=dZmutaI_2XBlTHvQ-rVUiiqvKYGL1NKvPLxg93p9t3w,200
|
|
15
16
|
addon_utils/__init__.pyi,sha256=6nuLKFIk_gWRrBoIcYmaYgVz-1C1pa25incvit-tmhM,2073
|
|
16
17
|
addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
18
|
animsys_refactor/__init__.pyi,sha256=qEnoG9uMeKJWqz3Z5X_MfrJjiskQVPAgGA_UCWT0hVo,748
|
|
@@ -110,33 +111,33 @@ bl_ui/node_add_menu_texture/__init__.pyi,sha256=Zvf84g8WWkz3x8oiy4izvjjl9coG3Ylt
|
|
|
110
111
|
bl_ui/properties_animviz/__init__.pyi,sha256=ymd94X1m7kZxwMkkh20db94wpgADEAMSUjVS4m6b2QA,779
|
|
111
112
|
bl_ui/properties_collection/__init__.pyi,sha256=Gj_Uu-9rqDOfl4QOes7GlUehFjfUPH4Ro8Wj_k7xqVY,4643
|
|
112
113
|
bl_ui/properties_constraint/__init__.pyi,sha256=82LT2Dd9DtPIq8qVW9YAWJldBrbk-ByQALJiA6azFas,64525
|
|
113
|
-
bl_ui/properties_data_armature/__init__.pyi,sha256=
|
|
114
|
+
bl_ui/properties_data_armature/__init__.pyi,sha256=5Hs_7lDSvnXMICQGsEKdwXNaV-bjedAZfPJ3d9pkuQw,13959
|
|
114
115
|
bl_ui/properties_data_bone/__init__.pyi,sha256=hRK5XTqXsuhPEVyL6MJ9CUAwZEAjSzp41zJe74iUnK0,8574
|
|
115
116
|
bl_ui/properties_data_camera/__init__.pyi,sha256=jg48yqJC2u02YD0JazH1646786f5QMffnx3tJmkjv14,12586
|
|
116
|
-
bl_ui/properties_data_curve/__init__.pyi,sha256=
|
|
117
|
-
bl_ui/properties_data_curves/__init__.pyi,sha256=
|
|
117
|
+
bl_ui/properties_data_curve/__init__.pyi,sha256=69TaptTIb8K4Pzlik0PadT8mXp9Qi0wv4-d8CdOVRYU,13686
|
|
118
|
+
bl_ui/properties_data_curves/__init__.pyi,sha256=O86p52Bm4QvjCmWWiXhM-P3cqDMZdZIpNVBDefrEhlk,6270
|
|
118
119
|
bl_ui/properties_data_empty/__init__.pyi,sha256=Kyescm9EWJWMGDEwxG8rfmGWm4_vvEUhtSa0rBI5Uj0,1868
|
|
119
|
-
bl_ui/properties_data_gpencil/__init__.pyi,sha256=
|
|
120
|
-
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=
|
|
121
|
-
bl_ui/properties_data_lattice/__init__.pyi,sha256=
|
|
122
|
-
bl_ui/properties_data_light/__init__.pyi,sha256=
|
|
123
|
-
bl_ui/properties_data_lightprobe/__init__.pyi,sha256=
|
|
124
|
-
bl_ui/properties_data_mesh/__init__.pyi,sha256
|
|
125
|
-
bl_ui/properties_data_metaball/__init__.pyi,sha256=
|
|
120
|
+
bl_ui/properties_data_gpencil/__init__.pyi,sha256=XayRbZ0qMwW_6ppdDtpfpCkpqDIHu3qn8OUebLS6eT4,15022
|
|
121
|
+
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=dq7XZ_NkdqqnAxymIDZnRsAeyPKgg2yTkHUZKBzOp08,11983
|
|
122
|
+
bl_ui/properties_data_lattice/__init__.pyi,sha256=U_RkQPO8eQW5MmcXQ9zdtL9YCCxU8Dw5W_tl3po98_E,3741
|
|
123
|
+
bl_ui/properties_data_light/__init__.pyi,sha256=5izO4y-VDdObGAHHtxYm-QGB-3Z4F9MWPPfYg9-eb2U,11395
|
|
124
|
+
bl_ui/properties_data_lightprobe/__init__.pyi,sha256=gkpaM4pJdYVW5w6gleU5sfXc7eKjzXmczblyeVM62es,11350
|
|
125
|
+
bl_ui/properties_data_mesh/__init__.pyi,sha256=-aYdvZllNsnTZs5zyVFL6QwXXwYOUm9fOcDuiHoIQ6c,17141
|
|
126
|
+
bl_ui/properties_data_metaball/__init__.pyi,sha256=kUtpEGJiZOM_Zy1un02iz0cIdKepnXkDqX8pGhjnWPI,5137
|
|
126
127
|
bl_ui/properties_data_modifier/__init__.pyi,sha256=gMBCCUtsW66vVn_nnmU4kLoPoNUkHlE6WtNjmHt3qqc,8141
|
|
127
128
|
bl_ui/properties_data_pointcloud/__init__.pyi,sha256=VFTFvBIe5WwC0tHnzCrhjRKEcQamybMq-2XLjj-NkbY,4536
|
|
128
129
|
bl_ui/properties_data_shaderfx/__init__.pyi,sha256=cwwpqsjfX3z_ypgxS0uJD90CAGk0rouzh4LCHG_x0Eo,988
|
|
129
|
-
bl_ui/properties_data_speaker/__init__.pyi,sha256=
|
|
130
|
-
bl_ui/properties_data_volume/__init__.pyi,sha256=
|
|
131
|
-
bl_ui/properties_freestyle/__init__.pyi,sha256=
|
|
130
|
+
bl_ui/properties_data_speaker/__init__.pyi,sha256=2UFb0UJF-JwKw60pQ8i4EjVhuKCExWTyoK15oPxHl0Q,5154
|
|
131
|
+
bl_ui/properties_data_volume/__init__.pyi,sha256=ESSbOQllvWxnY-_qsM6nYZTbB28SCfzoXD0zCkWq_44,7532
|
|
132
|
+
bl_ui/properties_freestyle/__init__.pyi,sha256=dWMwDfAiT3-ZvHPdyGX7v96iFZacQBOPBrKtYEhMIMs,24067
|
|
132
133
|
bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=11SgflPY04SBvBuHDOg1I0huK_ZTi2Oz70m7At0EfMM,13385
|
|
133
134
|
bl_ui/properties_mask_common/__init__.pyi,sha256=KW5BFWcrr8gYQknfyisW5w4g3T-6-UDhb2aT7UtGGro,6309
|
|
134
135
|
bl_ui/properties_material/__init__.pyi,sha256=pm48ycIkExon0vOYvXNePTSHFbY3toJfaWLTX5j37tM,14276
|
|
135
|
-
bl_ui/properties_material_gpencil/__init__.pyi,sha256=
|
|
136
|
-
bl_ui/properties_object/__init__.pyi,sha256=
|
|
136
|
+
bl_ui/properties_material_gpencil/__init__.pyi,sha256=M20U1navVNxxW-CyKyGWyWCFK6nMzZK6YQwZYAO7cv0,9122
|
|
137
|
+
bl_ui/properties_object/__init__.pyi,sha256=hIEGbtO_FtpRQwTpMaN_S3BZkgPpRkmbf01IbIFMjl4,12072
|
|
137
138
|
bl_ui/properties_output/__init__.pyi,sha256=r1Yq9PHI3_xxXkqG3-e_kril8toBtIq3ftG-sIK75vU,14609
|
|
138
139
|
bl_ui/properties_paint_common/__init__.pyi,sha256=F4zGGHUTYPb20rxaPMpa6e-T7Ap2RbgWOBIs7RN-t6c,7177
|
|
139
|
-
bl_ui/properties_particle/__init__.pyi,sha256=
|
|
140
|
+
bl_ui/properties_particle/__init__.pyi,sha256=ddRuY-mWLmbTV-Ksm5TScKNypLbB3OPtiZUZm9zP6uA,45943
|
|
140
141
|
bl_ui/properties_physics_cloth/__init__.pyi,sha256=V-Odxb-NWevIUcTSP_N-k_KgLAkJY3F9blb9sfcZiJ0,11304
|
|
141
142
|
bl_ui/properties_physics_common/__init__.pyi,sha256=BrRnXnRpxfsShPUzQJeJQi8YnccNrOdbaSEYmxYG1tg,1479
|
|
142
143
|
bl_ui/properties_physics_dynamicpaint/__init__.pyi,sha256=WkEPbNaKc2FFmPSjz9f1WaQgoePQOpGK7tWkuz0Bz00,20910
|
|
@@ -147,11 +148,11 @@ bl_ui/properties_physics_rigidbody/__init__.pyi,sha256=AQq2iwpSv9CklpYlCC1Ur3lgN
|
|
|
147
148
|
bl_ui/properties_physics_rigidbody_constraint/__init__.pyi,sha256=p8FGiEqLvBv-OPk9MXseGCoZsxBlwhABjT-TjXEuMQk,12095
|
|
148
149
|
bl_ui/properties_physics_softbody/__init__.pyi,sha256=a-jPFngMlHiYX9l9DO8JpkKuYNmJVozT0hJucehRpI8,12283
|
|
149
150
|
bl_ui/properties_render/__init__.pyi,sha256=EfTibGKtq2iSNf6MyZ0tlBn2PS6GAKkt6eaHpEyp3Cs,47189
|
|
150
|
-
bl_ui/properties_scene/__init__.pyi,sha256=
|
|
151
|
-
bl_ui/properties_texture/__init__.pyi,sha256=
|
|
151
|
+
bl_ui/properties_scene/__init__.pyi,sha256=7_yW6DP1qwgzfi-69PZQVs_warAmrB_ImXRG1iiibw4,13237
|
|
152
|
+
bl_ui/properties_texture/__init__.pyi,sha256=f6gDkEET4NchwV47IZs55zuX6CaD0ms8KpFGL_0jXE0,22245
|
|
152
153
|
bl_ui/properties_view_layer/__init__.pyi,sha256=J-Tdez5VI3-BRGLP2dvuDI3ykXM4dxVU8dIWnQ9TMeM,11983
|
|
153
154
|
bl_ui/properties_workspace/__init__.pyi,sha256=FOK4f6JVYYJTO-UyhaisBhh5lq-5meO8KuJ5vOlNkvk,3710
|
|
154
|
-
bl_ui/properties_world/__init__.pyi,sha256=
|
|
155
|
+
bl_ui/properties_world/__init__.pyi,sha256=SrtCrLU1kISx4FlAHqP_Cghm4p8rBwwNqaUv28YIIng,9718
|
|
155
156
|
bl_ui/space_clip/__init__.pyi,sha256=L-eh0dxSRC-BGDBCYxHG_wklhtx7diovHhmy8gozZT4,47758
|
|
156
157
|
bl_ui/space_console/__init__.pyi,sha256=e8IpU4-lBWY4_uozzVjSGkj8q7Mcr4wGeY6vQxGC4sw,3624
|
|
157
158
|
bl_ui/space_dopesheet/__init__.pyi,sha256=3fhcWDi0lvXAJR7mKvTT28TkHRamZAbBsU2guDLWxTo,22096
|
|
@@ -162,7 +163,7 @@ bl_ui/space_info/__init__.pyi,sha256=OA_SjJnHNfv4TBu647shQbZtSryhtfPW849ZDU1uXf0
|
|
|
162
163
|
bl_ui/space_nla/__init__.pyi,sha256=iwfoNM2ZyZfeb4jJR4BNg9ys_RRjo4BKOO-l9bXCzCE,10252
|
|
163
164
|
bl_ui/space_node/__init__.pyi,sha256=AjLKbr3plUzPai2ziAuurU4LoAlek9hYpzeBaiqAdP0,20067
|
|
164
165
|
bl_ui/space_outliner/__init__.pyi,sha256=T8KGIFcvlhXpLegq4i2k0cXNy_B4CnLUnijP-9jyDj0,8735
|
|
165
|
-
bl_ui/space_properties/__init__.pyi,sha256=
|
|
166
|
+
bl_ui/space_properties/__init__.pyi,sha256=7UF8VQxvkXMAFxAfb3UYN73x3W4tEPMn3cmIltEdfXw,2945
|
|
166
167
|
bl_ui/space_sequencer/__init__.pyi,sha256=xcmLEQucjljFbbo1E_F1RwRwytdAOmZXSQM3dxmVnXw,55456
|
|
167
168
|
bl_ui/space_spreadsheet/__init__.pyi,sha256=ldT6OZgfYuEBxUwYZq6INfvix2JNA9MtJ1BWUdyZBzo,1651
|
|
168
169
|
bl_ui/space_statusbar/__init__.pyi,sha256=idjVMqEm8Ii23DepGztLWz_ej7BhUFUAm70M9tdla0U,740
|
|
@@ -276,7 +277,7 @@ bpy/ops/workspace/__init__.pyi,sha256=ouILPZIQntnAJtoyo0MeMfD7p4MX6XX__5nxQuJaVb
|
|
|
276
277
|
bpy/ops/world/__init__.pyi,sha256=fNifYrJKsxpJb6jqQHCJTlf7iNR5fzV1saFRILtDZOE,1029
|
|
277
278
|
bpy/path/__init__.pyi,sha256=J_4vrRw_TTuMW4KHqSHZqYIKfDoCgG6Wv1PIFZx7__4,5612
|
|
278
279
|
bpy/props/__init__.pyi,sha256=5dF03F-bYYW-j5P9eDOgSJ07JYRVwMvjmMjBYjCrjS8,29631
|
|
279
|
-
bpy/types/__init__.pyi,sha256=
|
|
280
|
+
bpy/types/__init__.pyi,sha256=Azrwp9R8UHrvH-Q4UiyEAvpmCsdPHtsojOHNVnLzrQQ,6357055
|
|
280
281
|
bpy/utils/__init__.pyi,sha256=--TTIvXJlO1WRjJS4Jv_EM-XWCp_952xAm3M_O4L5O4,13537
|
|
281
282
|
bpy/utils/previews/__init__.pyi,sha256=0mvcirUV7D4ByWzEUIBVEEJ1VTFhBjBcstllI7L6MRc,2439
|
|
282
283
|
bpy/utils/units/__init__.pyi,sha256=Rdhm-yBFBRp5tGXLRkMjGaQ_LB9GQA3PbvcgGFieCl4,2742
|
|
@@ -311,7 +312,7 @@ freestyle/functions/__init__.pyi,sha256=d7SyUcF7r3MQV3OARbT6cCbENGSmDKT--mkUp5Js
|
|
|
311
312
|
freestyle/predicates/__init__.pyi,sha256=J1vOBMRPvlHuqiErZabCtSgPUz2kzi8Oh_cc_OIMlD8,13860
|
|
312
313
|
freestyle/shaders/__init__.pyi,sha256=_yBIN2vWTq70X_8_MfUe4TqiL1Iri4OYjvIkXRQxG5M,24828
|
|
313
314
|
freestyle/types/__init__.pyi,sha256=i_9VM68H7dzZCYbra4KASlfepVE0_m2Uy2R4vdVNtvY,101225
|
|
314
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
315
|
+
freestyle/utils/__init__.pyi,sha256=pmGuvSAHz2xo_9Qp607oKqghPhTTn6nh2ojbWApur8E,5435
|
|
315
316
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=3zOixayiQsbvJ5xTNYLsaDGUka_q_u5-YQ68KywJWMg,3579
|
|
316
317
|
gpu/__init__.pyi,sha256=6J9JclYf27CZH6F7QVaKgw3V2kUAZ3FJdF8Jp7QbpR8,8068
|
|
317
318
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -358,9 +359,7 @@ rna_prop_ui/__init__.pyi,sha256=Hikjpdi827dJUxkRwRWsTfrhggSL1OmQ7yql-xWh268,1407
|
|
|
358
359
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
360
|
rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
|
|
360
361
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-20240905.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
366
|
-
fake_bpy_module-20240905.dist-info/RECORD,,
|
|
362
|
+
fake_bpy_module-20240906.dist-info/METADATA,sha256=xtQRpuEvgBBlyxcahQ_Y4Icy4EYPN1_qX_Omw7ftA0U,7289
|
|
363
|
+
fake_bpy_module-20240906.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
364
|
+
fake_bpy_module-20240906.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
365
|
+
fake_bpy_module-20240906.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -161,7 +161,7 @@ def material_from_fedge(fe):
|
|
|
161
161
|
...
|
|
162
162
|
|
|
163
163
|
def normal_at_I0D(it): ...
|
|
164
|
-
def pairwise(iterable, types={
|
|
164
|
+
def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
|
|
165
165
|
"""Yields a tuple containing the previous and current object"""
|
|
166
166
|
|
|
167
167
|
...
|
sys_info/py.typed
DELETED
|
File without changes
|
|
File without changes
|