fake-bpy-module 20241014__py3-none-any.whl → 20241016__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.
- bl_operators/presets/__init__.pyi +1 -1
- bl_ui/properties_grease_pencil_common/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +25 -0
- bpy/ops/grease_pencil/__init__.pyi +11 -11
- bpy/ops/object/__init__.pyi +5 -5
- bpy/ops/scene/__init__.pyi +1 -1
- bpy/ops/wm/__init__.pyi +3 -3
- bpy/types/__init__.pyi +53 -49
- bpy/typing/__init__.pyi +4 -4
- {fake_bpy_module-20241014.dist-info → fake_bpy_module-20241016.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241014.dist-info → fake_bpy_module-20241016.dist-info}/RECORD +13 -13
- {fake_bpy_module-20241014.dist-info → fake_bpy_module-20241016.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241014.dist-info → fake_bpy_module-20241016.dist-info}/top_level.txt +0 -0
|
@@ -223,7 +223,7 @@ class AddPresetGpencilBrush(AddPresetBase, bpy.types.Operator):
|
|
|
223
223
|
"""
|
|
224
224
|
|
|
225
225
|
class AddPresetGpencilMaterial(AddPresetBase, bpy.types.Operator):
|
|
226
|
-
"""Add or remove
|
|
226
|
+
"""Add or remove Grease Pencil material preset"""
|
|
227
227
|
|
|
228
228
|
bl_idname: typing.Any
|
|
229
229
|
bl_label: typing.Any
|
|
@@ -186,6 +186,31 @@ class GPENCIL_UL_masks(bpy.types.UIList):
|
|
|
186
186
|
:param _index:
|
|
187
187
|
"""
|
|
188
188
|
|
|
189
|
+
class GREASE_PENCIL_MT_draw_delete(bpy.types.Menu):
|
|
190
|
+
bl_label: typing.Any
|
|
191
|
+
bl_rna: typing.Any
|
|
192
|
+
id_data: typing.Any
|
|
193
|
+
|
|
194
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
195
|
+
"""
|
|
196
|
+
|
|
197
|
+
:return: The RNA type or default when not found.
|
|
198
|
+
:rtype: bpy.types.Struct
|
|
199
|
+
"""
|
|
200
|
+
|
|
201
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
202
|
+
"""
|
|
203
|
+
|
|
204
|
+
:return: The class or default when not found.
|
|
205
|
+
:rtype: typing.Any
|
|
206
|
+
"""
|
|
207
|
+
|
|
208
|
+
def draw(self, _context):
|
|
209
|
+
"""
|
|
210
|
+
|
|
211
|
+
:param _context:
|
|
212
|
+
"""
|
|
213
|
+
|
|
189
214
|
class GREASE_PENCIL_MT_layer_active(bpy.types.Menu):
|
|
190
215
|
bl_label: typing.Any
|
|
191
216
|
bl_rna: typing.Any
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -2297,6 +2297,31 @@ class VIEW3D_MT_grease_pencil_assign_material(bpy.types.Menu):
|
|
|
2297
2297
|
:param context:
|
|
2298
2298
|
"""
|
|
2299
2299
|
|
|
2300
|
+
class VIEW3D_MT_grease_pencil_sculpt_automasking_pie(bpy.types.Menu):
|
|
2301
|
+
bl_label: typing.Any
|
|
2302
|
+
bl_rna: typing.Any
|
|
2303
|
+
id_data: typing.Any
|
|
2304
|
+
|
|
2305
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2306
|
+
"""
|
|
2307
|
+
|
|
2308
|
+
:return: The RNA type or default when not found.
|
|
2309
|
+
:rtype: bpy.types.Struct
|
|
2310
|
+
"""
|
|
2311
|
+
|
|
2312
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2313
|
+
"""
|
|
2314
|
+
|
|
2315
|
+
:return: The class or default when not found.
|
|
2316
|
+
:rtype: typing.Any
|
|
2317
|
+
"""
|
|
2318
|
+
|
|
2319
|
+
def draw(self, context):
|
|
2320
|
+
"""
|
|
2321
|
+
|
|
2322
|
+
:param context:
|
|
2323
|
+
"""
|
|
2324
|
+
|
|
2300
2325
|
class VIEW3D_MT_greasepencil_edit_context_menu(bpy.types.Menu):
|
|
2301
2326
|
bl_label: typing.Any
|
|
2302
2327
|
bl_rna: typing.Any
|
|
@@ -34,7 +34,7 @@ def bake_grease_pencil_animation(
|
|
|
34
34
|
project_type: typing.Literal["KEEP", "FRONT", "SIDE", "TOP", "VIEW", "CURSOR"]
|
|
35
35
|
| None = "KEEP",
|
|
36
36
|
):
|
|
37
|
-
"""Bake
|
|
37
|
+
"""Bake Grease Pencil object transform to Grease Pencil keyframes
|
|
38
38
|
|
|
39
39
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
40
40
|
:type execution_context: int | str | None
|
|
@@ -378,7 +378,7 @@ def interpolate(
|
|
|
378
378
|
smooth_steps: int | None = 1,
|
|
379
379
|
smooth_factor: float | None = 0.0,
|
|
380
380
|
):
|
|
381
|
-
"""Interpolate
|
|
381
|
+
"""Interpolate Grease Pencil strokes between frames
|
|
382
382
|
|
|
383
383
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
384
384
|
:type execution_context: int | str | None
|
|
@@ -486,7 +486,7 @@ def interpolate_sequence(
|
|
|
486
486
|
ELASTIC
|
|
487
487
|
Elastic -- Exponentially decaying sine wave, like an elastic band.
|
|
488
488
|
:type type: typing.Literal['LINEAR','CUSTOM','SINE','QUAD','CUBIC','QUART','QUINT','EXPO','CIRC','BACK','BOUNCE','ELASTIC'] | None
|
|
489
|
-
:param easing: Easing, Which ends of the segment between the preceding and following
|
|
489
|
+
:param easing: Easing, Which ends of the segment between the preceding and following Grease Pencil frames easing interpolation is applied to
|
|
490
490
|
:type easing: bpy.typing.BeztripleInterpolationEasingItems | None
|
|
491
491
|
:param back: Back, Amount of overshoot for 'back' easing
|
|
492
492
|
:type back: float | None
|
|
@@ -1007,7 +1007,7 @@ def primitive_arc(
|
|
|
1007
1007
|
type: typing.Literal["BOX", "LINE", "POLYLINE", "CIRCLE", "ARC", "CURVE"]
|
|
1008
1008
|
| None = "ARC",
|
|
1009
1009
|
):
|
|
1010
|
-
"""Create predefined
|
|
1010
|
+
"""Create predefined Grease Pencil stroke arcs
|
|
1011
1011
|
|
|
1012
1012
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1013
1013
|
:type execution_context: int | str | None
|
|
@@ -1027,7 +1027,7 @@ def primitive_box(
|
|
|
1027
1027
|
type: typing.Literal["BOX", "LINE", "POLYLINE", "CIRCLE", "ARC", "CURVE"]
|
|
1028
1028
|
| None = "BOX",
|
|
1029
1029
|
):
|
|
1030
|
-
"""Create predefined
|
|
1030
|
+
"""Create predefined Grease Pencil stroke boxes
|
|
1031
1031
|
|
|
1032
1032
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1033
1033
|
:type execution_context: int | str | None
|
|
@@ -1047,7 +1047,7 @@ def primitive_circle(
|
|
|
1047
1047
|
type: typing.Literal["BOX", "LINE", "POLYLINE", "CIRCLE", "ARC", "CURVE"]
|
|
1048
1048
|
| None = "CIRCLE",
|
|
1049
1049
|
):
|
|
1050
|
-
"""Create predefined
|
|
1050
|
+
"""Create predefined Grease Pencil stroke circles
|
|
1051
1051
|
|
|
1052
1052
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1053
1053
|
:type execution_context: int | str | None
|
|
@@ -1067,7 +1067,7 @@ def primitive_curve(
|
|
|
1067
1067
|
type: typing.Literal["BOX", "LINE", "POLYLINE", "CIRCLE", "ARC", "CURVE"]
|
|
1068
1068
|
| None = "CURVE",
|
|
1069
1069
|
):
|
|
1070
|
-
"""Create predefined
|
|
1070
|
+
"""Create predefined Grease Pencil stroke curve shapes
|
|
1071
1071
|
|
|
1072
1072
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1073
1073
|
:type execution_context: int | str | None
|
|
@@ -1087,7 +1087,7 @@ def primitive_line(
|
|
|
1087
1087
|
type: typing.Literal["BOX", "LINE", "POLYLINE", "CIRCLE", "ARC", "CURVE"]
|
|
1088
1088
|
| None = "LINE",
|
|
1089
1089
|
):
|
|
1090
|
-
"""Create predefined
|
|
1090
|
+
"""Create predefined Grease Pencil stroke lines
|
|
1091
1091
|
|
|
1092
1092
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1093
1093
|
:type execution_context: int | str | None
|
|
@@ -1107,7 +1107,7 @@ def primitive_polyline(
|
|
|
1107
1107
|
type: typing.Literal["BOX", "LINE", "POLYLINE", "CIRCLE", "ARC", "CURVE"]
|
|
1108
1108
|
| None = "POLYLINE",
|
|
1109
1109
|
):
|
|
1110
|
-
"""Create predefined
|
|
1110
|
+
"""Create predefined Grease Pencil stroke polylines
|
|
1111
1111
|
|
|
1112
1112
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1113
1113
|
:type execution_context: int | str | None
|
|
@@ -1389,7 +1389,7 @@ def separate(
|
|
|
1389
1389
|
*,
|
|
1390
1390
|
mode: typing.Literal["SELECTED", "MATERIAL", "LAYER"] | None = "SELECTED",
|
|
1391
1391
|
):
|
|
1392
|
-
"""Separate the selected geometry into a new
|
|
1392
|
+
"""Separate the selected geometry into a new Grease Pencil object
|
|
1393
1393
|
|
|
1394
1394
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1395
1395
|
:type execution_context: int | str | None
|
|
@@ -1802,7 +1802,7 @@ def trace_image(
|
|
|
1802
1802
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1803
1803
|
:type execution_context: int | str | None
|
|
1804
1804
|
:type undo: bool | None
|
|
1805
|
-
:param target: Target Object, Target
|
|
1805
|
+
:param target: Target Object, Target Grease Pencil
|
|
1806
1806
|
:type target: typing.Literal['NEW','SELECTED'] | None
|
|
1807
1807
|
:param radius: Radius
|
|
1808
1808
|
:type radius: float | None
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -1641,16 +1641,16 @@ def grease_pencil_add(
|
|
|
1641
1641
|
:type undo: bool | None
|
|
1642
1642
|
:param type: Type
|
|
1643
1643
|
:type type: bpy.typing.ObjectGpencilTypeItems | None
|
|
1644
|
-
:param use_in_front: Show In Front, Show Line Art
|
|
1644
|
+
:param use_in_front: Show In Front, Show Line Art Grease Pencil in front of everything
|
|
1645
1645
|
:type use_in_front: bool | None
|
|
1646
1646
|
:param stroke_depth_offset: Stroke Offset, Stroke offset for the Line Art modifier
|
|
1647
1647
|
:type stroke_depth_offset: float | None
|
|
1648
|
-
:param use_lights: Use Lights, Use lights for this
|
|
1648
|
+
:param use_lights: Use Lights, Use lights for this Grease Pencil object
|
|
1649
1649
|
:type use_lights: bool | None
|
|
1650
1650
|
:param stroke_depth_order: Stroke Depth Order, Defines how the strokes are ordered in 3D space (for objects not displayed 'In Front')
|
|
1651
1651
|
|
|
1652
1652
|
2D
|
|
1653
|
-
2D Layers -- Display strokes using
|
|
1653
|
+
2D Layers -- Display strokes using Grease Pencil layers to define order.
|
|
1654
1654
|
|
|
1655
1655
|
3D
|
|
1656
1656
|
3D Location -- Display strokes using real 3D position in 3D space.
|
|
@@ -2348,7 +2348,7 @@ def lineart_clear(
|
|
|
2348
2348
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2349
2349
|
:type execution_context: int | str | None
|
|
2350
2350
|
:type undo: bool | None
|
|
2351
|
-
:param clear_all: Clear All, Clear all
|
|
2351
|
+
:param clear_all: Clear All, Clear all Line Art modifier bakes
|
|
2352
2352
|
:type clear_all: bool | None
|
|
2353
2353
|
"""
|
|
2354
2354
|
|
|
@@ -4232,7 +4232,7 @@ def shaderfx_remove(
|
|
|
4232
4232
|
shaderfx: str = "",
|
|
4233
4233
|
report: bool | None = False,
|
|
4234
4234
|
):
|
|
4235
|
-
"""Remove a effect from the active
|
|
4235
|
+
"""Remove a effect from the active Grease Pencil object
|
|
4236
4236
|
|
|
4237
4237
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
4238
4238
|
:type execution_context: int | str | None
|
bpy/ops/scene/__init__.pyi
CHANGED
|
@@ -362,7 +362,7 @@ def gpencil_material_preset_add(
|
|
|
362
362
|
remove_name: bool | None = False,
|
|
363
363
|
remove_active: bool | None = False,
|
|
364
364
|
):
|
|
365
|
-
"""Add or remove
|
|
365
|
+
"""Add or remove Grease Pencil material preset
|
|
366
366
|
|
|
367
367
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
368
368
|
:type execution_context: int | str | None
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -1500,7 +1500,7 @@ def grease_pencil_export_pdf(
|
|
|
1500
1500
|
use_uniform_width: bool | None = False,
|
|
1501
1501
|
frame_mode: typing.Literal["ACTIVE", "SELECTED", "SCENE"] | None = "ACTIVE",
|
|
1502
1502
|
):
|
|
1503
|
-
"""Export
|
|
1503
|
+
"""Export Grease Pencil to PDF
|
|
1504
1504
|
|
|
1505
1505
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1506
1506
|
:type execution_context: int | str | None
|
|
@@ -1628,7 +1628,7 @@ def grease_pencil_export_svg(
|
|
|
1628
1628
|
use_uniform_width: bool | None = False,
|
|
1629
1629
|
use_clip_camera: bool | None = False,
|
|
1630
1630
|
):
|
|
1631
|
-
"""Export
|
|
1631
|
+
"""Export Grease Pencil to SVG
|
|
1632
1632
|
|
|
1633
1633
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1634
1634
|
:type execution_context: int | str | None
|
|
@@ -1748,7 +1748,7 @@ def grease_pencil_import_svg(
|
|
|
1748
1748
|
scale: float | None = 10.0,
|
|
1749
1749
|
use_scene_unit: bool | None = False,
|
|
1750
1750
|
):
|
|
1751
|
-
"""Import SVG into
|
|
1751
|
+
"""Import SVG into Grease Pencil
|
|
1752
1752
|
|
|
1753
1753
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1754
1754
|
:type execution_context: int | str | None
|
bpy/types/__init__.pyi
CHANGED
|
@@ -103869,7 +103869,7 @@ class BlendDataBrushes(bpy_prop_collection[Brush], bpy_struct):
|
|
|
103869
103869
|
"""
|
|
103870
103870
|
|
|
103871
103871
|
def create_gpencil_data(self, brush: Brush):
|
|
103872
|
-
"""Add
|
|
103872
|
+
"""Add Grease Pencil brush settings
|
|
103873
103873
|
|
|
103874
103874
|
:param brush: Brush
|
|
103875
103875
|
:type brush: Brush
|
|
@@ -104234,7 +104234,7 @@ class BlendDataGreasePencils(bpy_prop_collection[GreasePencil], bpy_struct):
|
|
|
104234
104234
|
"""
|
|
104235
104235
|
|
|
104236
104236
|
class BlendDataGreasePencilsV3(bpy_prop_collection[GreasePencilv3], bpy_struct):
|
|
104237
|
-
"""Collection of
|
|
104237
|
+
"""Collection of Grease Pencils"""
|
|
104238
104238
|
|
|
104239
104239
|
def tag(self, value: bool | None):
|
|
104240
104240
|
"""tag
|
|
@@ -104244,11 +104244,11 @@ class BlendDataGreasePencilsV3(bpy_prop_collection[GreasePencilv3], bpy_struct):
|
|
|
104244
104244
|
"""
|
|
104245
104245
|
|
|
104246
104246
|
def new(self, name: str) -> GreasePencilv3:
|
|
104247
|
-
"""Add a new
|
|
104247
|
+
"""Add a new Grease Pencil datablock to the main database
|
|
104248
104248
|
|
|
104249
104249
|
:param name: New name for the data-block
|
|
104250
104250
|
:type name: str
|
|
104251
|
-
:return: New
|
|
104251
|
+
:return: New Grease Pencil data-block
|
|
104252
104252
|
:rtype: GreasePencilv3
|
|
104253
104253
|
"""
|
|
104254
104254
|
|
|
@@ -104259,15 +104259,15 @@ class BlendDataGreasePencilsV3(bpy_prop_collection[GreasePencilv3], bpy_struct):
|
|
|
104259
104259
|
do_id_user: bool | None = True,
|
|
104260
104260
|
do_ui_user: bool | None = True,
|
|
104261
104261
|
):
|
|
104262
|
-
"""Remove a
|
|
104262
|
+
"""Remove a Grease Pencil instance from the current blendfile
|
|
104263
104263
|
|
|
104264
104264
|
:param grease_pencil: Grease Pencil to remove
|
|
104265
104265
|
:type grease_pencil: GreasePencilv3
|
|
104266
|
-
:param do_unlink: Unlink all usages of this
|
|
104266
|
+
:param do_unlink: Unlink all usages of this Grease Pencil before deleting it
|
|
104267
104267
|
:type do_unlink: bool | None
|
|
104268
|
-
:param do_id_user: Decrement user counter of all datablocks used by this
|
|
104268
|
+
:param do_id_user: Decrement user counter of all datablocks used by this Grease Pencil
|
|
104269
104269
|
:type do_id_user: bool | None
|
|
104270
|
-
:param do_ui_user: Make sure interface does not reference this
|
|
104270
|
+
:param do_ui_user: Make sure interface does not reference this Grease Pencil
|
|
104271
104271
|
:type do_ui_user: bool | None
|
|
104272
104272
|
"""
|
|
104273
104273
|
|
|
@@ -104816,14 +104816,14 @@ class BlendDataMaterials(bpy_prop_collection[Material], bpy_struct):
|
|
|
104816
104816
|
"""
|
|
104817
104817
|
|
|
104818
104818
|
def create_gpencil_data(self, material: Material):
|
|
104819
|
-
"""Add
|
|
104819
|
+
"""Add Grease Pencil material settings
|
|
104820
104820
|
|
|
104821
104821
|
:param material: Material
|
|
104822
104822
|
:type material: Material
|
|
104823
104823
|
"""
|
|
104824
104824
|
|
|
104825
104825
|
def remove_gpencil_data(self, material: Material):
|
|
104826
|
-
"""Remove
|
|
104826
|
+
"""Remove Grease Pencil material settings
|
|
104827
104827
|
|
|
104828
104828
|
:param material: Material
|
|
104829
104829
|
:type material: Material
|
|
@@ -107092,7 +107092,7 @@ class GreasePencilFrames(bpy_prop_collection[GreasePencilFrame], bpy_struct):
|
|
|
107092
107092
|
"""
|
|
107093
107093
|
|
|
107094
107094
|
class GreasePencilLayerMasks(bpy_prop_collection[GreasePencilLayerMask], bpy_struct):
|
|
107095
|
-
"""Collection of
|
|
107095
|
+
"""Collection of Grease Pencil masking layers"""
|
|
107096
107096
|
|
|
107097
107097
|
active_mask_index: int | None
|
|
107098
107098
|
""" Active index in layer mask array
|
|
@@ -118338,7 +118338,7 @@ class Brush(ID, bpy_struct):
|
|
|
118338
118338
|
"""
|
|
118339
118339
|
|
|
118340
118340
|
use_paint_grease_pencil: bool
|
|
118341
|
-
""" Use this brush in
|
|
118341
|
+
""" Use this brush in Grease Pencil drawing mode
|
|
118342
118342
|
|
|
118343
118343
|
:type: bool
|
|
118344
118344
|
"""
|
|
@@ -118494,7 +118494,7 @@ class Brush(ID, bpy_struct):
|
|
|
118494
118494
|
"""
|
|
118495
118495
|
|
|
118496
118496
|
use_vertex_grease_pencil: bool
|
|
118497
|
-
""" Use this brush in
|
|
118497
|
+
""" Use this brush in Grease Pencil vertex color mode
|
|
118498
118498
|
|
|
118499
118499
|
:type: bool
|
|
118500
118500
|
"""
|
|
@@ -118994,7 +118994,7 @@ class BrushCurvesSculptSettings(bpy_struct):
|
|
|
118994
118994
|
"""
|
|
118995
118995
|
|
|
118996
118996
|
class BrushGpencilSettings(bpy_struct):
|
|
118997
|
-
"""Settings for
|
|
118997
|
+
"""Settings for Grease Pencil brush"""
|
|
118998
118998
|
|
|
118999
118999
|
active_smooth_factor: float | None
|
|
119000
119000
|
""" Amount of smoothing while drawing
|
|
@@ -133570,12 +133570,6 @@ class DopeSheet(bpy_struct):
|
|
|
133570
133570
|
:type: str
|
|
133571
133571
|
"""
|
|
133572
133572
|
|
|
133573
|
-
show_all_slots: bool
|
|
133574
|
-
""" Show all the Action's Slots
|
|
133575
|
-
|
|
133576
|
-
:type: bool
|
|
133577
|
-
"""
|
|
133578
|
-
|
|
133579
133573
|
show_armatures: bool
|
|
133580
133574
|
""" Include visualization of armature related animation data
|
|
133581
133575
|
|
|
@@ -133708,6 +133702,12 @@ class DopeSheet(bpy_struct):
|
|
|
133708
133702
|
:type: bool
|
|
133709
133703
|
"""
|
|
133710
133704
|
|
|
133705
|
+
show_only_slot_of_active_object: bool
|
|
133706
|
+
""" Only show the slot of the active Object. Otherwise show all the Action's Slots
|
|
133707
|
+
|
|
133708
|
+
:type: bool
|
|
133709
|
+
"""
|
|
133710
|
+
|
|
133711
133711
|
show_particles: bool
|
|
133712
133712
|
""" Include visualization of particle related animation data
|
|
133713
133713
|
|
|
@@ -137158,7 +137158,7 @@ class FileAssetSelectIDFilter(bpy_struct):
|
|
|
137158
137158
|
"""
|
|
137159
137159
|
|
|
137160
137160
|
experimental_filter_grease_pencil: bool
|
|
137161
|
-
""" Show Grease
|
|
137161
|
+
""" Show Grease Pencil data-blocks
|
|
137162
137162
|
|
|
137163
137163
|
:type: bool
|
|
137164
137164
|
"""
|
|
@@ -137666,7 +137666,7 @@ class FileSelectIDFilter(bpy_struct):
|
|
|
137666
137666
|
"""
|
|
137667
137667
|
|
|
137668
137668
|
filter_grease_pencil: bool
|
|
137669
|
-
""" Show Grease
|
|
137669
|
+
""" Show Grease Pencil data-blocks
|
|
137670
137670
|
|
|
137671
137671
|
:type: bool
|
|
137672
137672
|
"""
|
|
@@ -149158,7 +149158,7 @@ class GeometryNodeInputNamedAttribute(GeometryNode, NodeInternal, Node, bpy_stru
|
|
|
149158
149158
|
class GeometryNodeInputNamedLayerSelection(
|
|
149159
149159
|
GeometryNode, NodeInternal, Node, bpy_struct
|
|
149160
149160
|
):
|
|
149161
|
-
"""Output a selection of a
|
|
149161
|
+
"""Output a selection of a Grease Pencil layer"""
|
|
149162
149162
|
|
|
149163
149163
|
@classmethod
|
|
149164
149164
|
def is_registered_node_type(cls) -> bool:
|
|
@@ -150203,7 +150203,7 @@ class GeometryNodeMergeByDistance(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
150203
150203
|
"""
|
|
150204
150204
|
|
|
150205
150205
|
class GeometryNodeMergeLayers(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
150206
|
-
"""Join groups of
|
|
150206
|
+
"""Join groups of Grease Pencil layers into one"""
|
|
150207
150207
|
|
|
150208
150208
|
mode: typing.Literal["MERGE_BY_NAME", "MERGE_BY_ID"]
|
|
150209
150209
|
""" Determines how to choose which layers are merged
|
|
@@ -158705,7 +158705,7 @@ class GreasePencilLineartModifier(Modifier, bpy_struct):
|
|
|
158705
158705
|
"""
|
|
158706
158706
|
|
|
158707
158707
|
use_edge_mark: bool
|
|
158708
|
-
""" Generate strokes from
|
|
158708
|
+
""" Generate strokes from Freestyle marked edges
|
|
158709
158709
|
|
|
158710
158710
|
:type: bool
|
|
158711
158711
|
"""
|
|
@@ -158717,7 +158717,7 @@ class GreasePencilLineartModifier(Modifier, bpy_struct):
|
|
|
158717
158717
|
"""
|
|
158718
158718
|
|
|
158719
158719
|
use_face_mark: bool
|
|
158720
|
-
""" Filter feature lines using
|
|
158720
|
+
""" Filter feature lines using Freestyle face marks
|
|
158721
158721
|
|
|
158722
158722
|
:type: bool
|
|
158723
158723
|
"""
|
|
@@ -160062,6 +160062,12 @@ class GreasePencilSimplifyModifier(Modifier, bpy_struct):
|
|
|
160062
160062
|
:type: typing.Literal['FIXED','ADAPTIVE','SAMPLE','MERGE']
|
|
160063
160063
|
"""
|
|
160064
160064
|
|
|
160065
|
+
open_influence_panel: bool
|
|
160066
|
+
"""
|
|
160067
|
+
|
|
160068
|
+
:type: bool
|
|
160069
|
+
"""
|
|
160070
|
+
|
|
160065
160071
|
sharp_threshold: float
|
|
160066
160072
|
""" Preserve corners that have sharper angle than this threshold
|
|
160067
160073
|
|
|
@@ -171383,13 +171389,13 @@ class Material(ID, bpy_struct):
|
|
|
171383
171389
|
"""
|
|
171384
171390
|
|
|
171385
171391
|
grease_pencil: MaterialGPencilStyle
|
|
171386
|
-
""" Grease
|
|
171392
|
+
""" Grease Pencil color settings for material
|
|
171387
171393
|
|
|
171388
171394
|
:type: MaterialGPencilStyle
|
|
171389
171395
|
"""
|
|
171390
171396
|
|
|
171391
171397
|
is_grease_pencil: bool
|
|
171392
|
-
""" True if this material has
|
|
171398
|
+
""" True if this material has Grease Pencil data
|
|
171393
171399
|
|
|
171394
171400
|
:type: bool
|
|
171395
171401
|
"""
|
|
@@ -174469,7 +174475,7 @@ class MovieClip(ID, bpy_struct):
|
|
|
174469
174475
|
"""
|
|
174470
174476
|
|
|
174471
174477
|
grease_pencil: GreasePencil | None
|
|
174472
|
-
""" Grease
|
|
174478
|
+
""" Grease Pencil data for this movie clip
|
|
174473
174479
|
|
|
174474
174480
|
:type: GreasePencil | None
|
|
174475
174481
|
"""
|
|
@@ -175783,7 +175789,7 @@ class MovieTrackingSettings(bpy_struct):
|
|
|
175783
175789
|
"""
|
|
175784
175790
|
|
|
175785
175791
|
use_default_mask: bool
|
|
175786
|
-
""" Use a
|
|
175792
|
+
""" Use a Grease Pencil data-block as a mask to use only specified areas of pattern when tracking
|
|
175787
175793
|
|
|
175788
175794
|
:type: bool
|
|
175789
175795
|
"""
|
|
@@ -176001,7 +176007,7 @@ class MovieTrackingTrack(bpy_struct):
|
|
|
176001
176007
|
"""
|
|
176002
176008
|
|
|
176003
176009
|
grease_pencil: GreasePencil | None
|
|
176004
|
-
""" Grease
|
|
176010
|
+
""" Grease Pencil data for this track
|
|
176005
176011
|
|
|
176006
176012
|
:type: GreasePencil | None
|
|
176007
176013
|
"""
|
|
@@ -176123,7 +176129,7 @@ class MovieTrackingTrack(bpy_struct):
|
|
|
176123
176129
|
"""
|
|
176124
176130
|
|
|
176125
176131
|
use_mask: bool
|
|
176126
|
-
""" Use a
|
|
176132
|
+
""" Use a Grease Pencil data-block as a mask to use only specified areas of pattern when tracking
|
|
176127
176133
|
|
|
176128
176134
|
:type: bool
|
|
176129
176135
|
"""
|
|
@@ -183683,7 +183689,7 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
|
|
|
183683
183689
|
"""
|
|
183684
183690
|
|
|
183685
183691
|
use_grease_pencil_lights: bool
|
|
183686
|
-
""" Lights affect
|
|
183692
|
+
""" Lights affect Grease Pencil object
|
|
183687
183693
|
|
|
183688
183694
|
:type: bool
|
|
183689
183695
|
"""
|
|
@@ -190100,12 +190106,6 @@ class PreferencesExperimental(bpy_struct):
|
|
|
190100
190106
|
:type: bool
|
|
190101
190107
|
"""
|
|
190102
190108
|
|
|
190103
|
-
use_animation_baklava: bool
|
|
190104
|
-
""" The new 'layered' Action can contain the animation for multiple data-blocks at once
|
|
190105
|
-
|
|
190106
|
-
:type: bool
|
|
190107
|
-
"""
|
|
190108
|
-
|
|
190109
190109
|
use_asset_indexing: bool
|
|
190110
190110
|
""" Disable the asset indexer, to force every asset library refresh to completely reread assets from disk
|
|
190111
190111
|
|
|
@@ -198453,7 +198453,7 @@ class SequencerToolSettings(bpy_struct):
|
|
|
198453
198453
|
"""
|
|
198454
198454
|
|
|
198455
198455
|
class ShaderFx(bpy_struct):
|
|
198456
|
-
"""Effect affecting the
|
|
198456
|
+
"""Effect affecting the Grease Pencil object"""
|
|
198457
198457
|
|
|
198458
198458
|
name: str
|
|
198459
198459
|
""" Effect name
|
|
@@ -208097,7 +208097,7 @@ class SpaceImageEditor(Space, bpy_struct):
|
|
|
208097
208097
|
"""
|
|
208098
208098
|
|
|
208099
208099
|
grease_pencil: GreasePencil | None
|
|
208100
|
-
""" Grease
|
|
208100
|
+
""" Grease Pencil data for this space
|
|
208101
208101
|
|
|
208102
208102
|
:type: GreasePencil | None
|
|
208103
208103
|
"""
|
|
@@ -209036,7 +209036,7 @@ class SpaceOutliner(Space, bpy_struct):
|
|
|
209036
209036
|
"""
|
|
209037
209037
|
|
|
209038
209038
|
use_filter_object_grease_pencil: bool
|
|
209039
|
-
""" Show
|
|
209039
|
+
""" Show Grease Pencil objects
|
|
209040
209040
|
|
|
209041
209041
|
:type: bool
|
|
209042
209042
|
"""
|
|
@@ -210298,7 +210298,7 @@ class SpaceView3D(Space, bpy_struct):
|
|
|
210298
210298
|
"""
|
|
210299
210299
|
|
|
210300
210300
|
show_object_select_grease_pencil: bool
|
|
210301
|
-
""" Allow selection of
|
|
210301
|
+
""" Allow selection of Grease Pencil objects
|
|
210302
210302
|
|
|
210303
210303
|
:type: bool
|
|
210304
210304
|
"""
|
|
@@ -210394,7 +210394,7 @@ class SpaceView3D(Space, bpy_struct):
|
|
|
210394
210394
|
"""
|
|
210395
210395
|
|
|
210396
210396
|
show_object_viewport_grease_pencil: bool
|
|
210397
|
-
""" Show
|
|
210397
|
+
""" Show Grease Pencil objects
|
|
210398
210398
|
|
|
210399
210399
|
:type: bool
|
|
210400
210400
|
"""
|
|
@@ -219780,7 +219780,7 @@ class ToolSettings(bpy_struct):
|
|
|
219780
219780
|
"""
|
|
219781
219781
|
|
|
219782
219782
|
gpencil_interpolate: GPencilInterpolateSettings
|
|
219783
|
-
""" Settings for
|
|
219783
|
+
""" Settings for Grease Pencil interpolation tools
|
|
219784
219784
|
|
|
219785
219785
|
:type: GPencilInterpolateSettings
|
|
219786
219786
|
"""
|
|
@@ -222972,7 +222972,7 @@ class UILayout(bpy_struct):
|
|
|
222972
222972
|
"""Show bone collections tree"""
|
|
222973
222973
|
|
|
222974
222974
|
def template_grease_pencil_layer_tree(self):
|
|
222975
|
-
"""View of the active
|
|
222975
|
+
"""View of the active Grease Pencil layer tree"""
|
|
222976
222976
|
|
|
222977
222977
|
def template_node_tree_interface(self, interface: NodeTreeInterface):
|
|
222978
222978
|
"""Show a node tree interface
|
|
@@ -226141,7 +226141,7 @@ class View3DOverlay(bpy_struct):
|
|
|
226141
226141
|
"""
|
|
226142
226142
|
|
|
226143
226143
|
use_gpencil_grid: bool
|
|
226144
|
-
""" Display a grid over
|
|
226144
|
+
""" Display a grid over Grease Pencil paper
|
|
226145
226145
|
|
|
226146
226146
|
:type: bool
|
|
226147
226147
|
"""
|
|
@@ -230026,7 +230026,7 @@ class XrSessionSettings(bpy_struct):
|
|
|
230026
230026
|
"""
|
|
230027
230027
|
|
|
230028
230028
|
show_object_select_grease_pencil: bool
|
|
230029
|
-
""" Allow selection of
|
|
230029
|
+
""" Allow selection of Grease Pencil objects
|
|
230030
230030
|
|
|
230031
230031
|
:type: bool
|
|
230032
230032
|
"""
|
|
@@ -230122,7 +230122,7 @@ class XrSessionSettings(bpy_struct):
|
|
|
230122
230122
|
"""
|
|
230123
230123
|
|
|
230124
230124
|
show_object_viewport_grease_pencil: bool
|
|
230125
|
-
""" Show
|
|
230125
|
+
""" Show Grease Pencil objects
|
|
230126
230126
|
|
|
230127
230127
|
:type: bool
|
|
230128
230128
|
"""
|
|
@@ -231380,6 +231380,8 @@ GRAPH_PT_snapping: bl_ui.space_graph.GRAPH_PT_snapping
|
|
|
231380
231380
|
|
|
231381
231381
|
GREASE_PENCIL_MT_Layers: bl_ui.space_view3d.GREASE_PENCIL_MT_Layers
|
|
231382
231382
|
|
|
231383
|
+
GREASE_PENCIL_MT_draw_delete: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_MT_draw_delete
|
|
231384
|
+
|
|
231383
231385
|
GREASE_PENCIL_MT_grease_pencil_add_layer_extra: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_MT_grease_pencil_add_layer_extra
|
|
231384
231386
|
|
|
231385
231387
|
GREASE_PENCIL_MT_group_context_menu: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_MT_group_context_menu
|
|
@@ -233396,6 +233398,8 @@ VIEW3D_MT_grease_pencil_add: bl_ui.space_view3d.VIEW3D_MT_grease_pencil_add
|
|
|
233396
233398
|
|
|
233397
233399
|
VIEW3D_MT_grease_pencil_assign_material: bl_ui.space_view3d.VIEW3D_MT_grease_pencil_assign_material
|
|
233398
233400
|
|
|
233401
|
+
VIEW3D_MT_grease_pencil_sculpt_automasking_pie: bl_ui.space_view3d.VIEW3D_MT_grease_pencil_sculpt_automasking_pie
|
|
233402
|
+
|
|
233399
233403
|
VIEW3D_MT_greasepencil_edit_context_menu: bl_ui.space_view3d.VIEW3D_MT_greasepencil_edit_context_menu
|
|
233400
233404
|
|
|
233401
233405
|
VIEW3D_MT_greasepencil_material_active: bl_ui.space_view3d.VIEW3D_MT_greasepencil_material_active
|
bpy/typing/__init__.pyi
CHANGED
|
@@ -2245,9 +2245,9 @@ type ObjectEmptyDrawtypeItems = typing.Literal[
|
|
|
2245
2245
|
"IMAGE", # Image.
|
|
2246
2246
|
]
|
|
2247
2247
|
type ObjectGpencilTypeItems = typing.Literal[
|
|
2248
|
-
"EMPTY", # Blank.Create an empty
|
|
2248
|
+
"EMPTY", # Blank.Create an empty Grease Pencil object.
|
|
2249
2249
|
"STROKE", # Stroke.Create a simple stroke with basic colors.
|
|
2250
|
-
"MONKEY", # Monkey.Construct a Suzanne
|
|
2250
|
+
"MONKEY", # Monkey.Construct a Suzanne Grease Pencil object.
|
|
2251
2251
|
"LINEART_SCENE", # Scene Line Art.Quickly set up Line Art for the entire scene.
|
|
2252
2252
|
"LINEART_COLLECTION", # Collection Line Art.Quickly set up Line Art for the active collection.
|
|
2253
2253
|
"LINEART_OBJECT", # Object Line Art.Quickly set up Line Art for the active object.
|
|
@@ -2334,9 +2334,9 @@ type ObjectModifierTypeItems = typing.Literal[
|
|
|
2334
2334
|
"WAVE", # Wave.Adds a ripple-like motion to an object's geometry.
|
|
2335
2335
|
"VOLUME_DISPLACE", # Volume Displace.Deform volume based on noise or other vector fields.
|
|
2336
2336
|
"GREASE_PENCIL_HOOK", # Hook.Deform stroke points using objects.
|
|
2337
|
-
"GREASE_PENCIL_NOISE", # Noise.Generate noise wobble in
|
|
2337
|
+
"GREASE_PENCIL_NOISE", # Noise.Generate noise wobble in Grease Pencil strokes.
|
|
2338
2338
|
"GREASE_PENCIL_OFFSET", # Offset.Change stroke location, rotation, or scale.
|
|
2339
|
-
"GREASE_PENCIL_SMOOTH", # Smooth.Smooth
|
|
2339
|
+
"GREASE_PENCIL_SMOOTH", # Smooth.Smooth Grease Pencil strokes.
|
|
2340
2340
|
"GREASE_PENCIL_THICKNESS", # Thickness.Change stroke thickness.
|
|
2341
2341
|
"GREASE_PENCIL_LATTICE", # Lattice.Deform strokes using a lattice object.
|
|
2342
2342
|
"GREASE_PENCIL_DASH", # Dot Dash.Generate dot-dash styled strokes.
|
|
@@ -76,7 +76,7 @@ bl_operators/object/__init__.pyi,sha256=2MCam5rUDHiwmbRk-vRt6O5xUvdl2kmJYITxR1-I
|
|
|
76
76
|
bl_operators/object_align/__init__.pyi,sha256=3nLD1etgjd0Z_1AzoKRZr5Qh9rjSr0G3dQccUv3zdoo,996
|
|
77
77
|
bl_operators/object_quick_effects/__init__.pyi,sha256=lhAf-ssg32uKw6fxLZxAd9ctaxeO5DzDlB3Od13jvDk,3029
|
|
78
78
|
bl_operators/object_randomize_transform/__init__.pyi,sha256=q7IElAjkzAQK-FmMA1pVN2vYSHk88gm9TeG-w4wX_PQ,916
|
|
79
|
-
bl_operators/presets/__init__.pyi,sha256=
|
|
79
|
+
bl_operators/presets/__init__.pyi,sha256=I7qcV7be-Bb98R3HMINJxLLH8uxzBbfSA9tJHtwO1aY,18337
|
|
80
80
|
bl_operators/rigidbody/__init__.pyi,sha256=HJuSXsZix0eL5moJHM-O1J7eX1FWpHeHJ2Oygla1b7M,2442
|
|
81
81
|
bl_operators/screen_play_rendered_anim/__init__.pyi,sha256=MOD1mKBiPdwnNbOljdS0tu8IlSBh9E20hV7dg3iBbfM,766
|
|
82
82
|
bl_operators/sequencer/__init__.pyi,sha256=qpj0JTdqKUlW6GQWv8GpHWxVZXlHUSwQLWKZaH019tY,7736
|
|
@@ -129,7 +129,7 @@ bl_ui/properties_data_shaderfx/__init__.pyi,sha256=qheRKCM-zgYYTypVdyJrjqgmD1yBX
|
|
|
129
129
|
bl_ui/properties_data_speaker/__init__.pyi,sha256=YRayS4IxkfcvwOAJlqfSL4kjzBcaqo3gf-hmM0fcVeo,4857
|
|
130
130
|
bl_ui/properties_data_volume/__init__.pyi,sha256=w6ct8kb74x8X0l1vLq6Ymq-fzezD387sQv-lBH7wohM,7115
|
|
131
131
|
bl_ui/properties_freestyle/__init__.pyi,sha256=JxNJb9q2e8hRqNb7ynucmV5GKCG7y_HdQJgc9z9Th8w,22822
|
|
132
|
-
bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=
|
|
132
|
+
bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=1CrD74PLE_vQfIld10Ki0scxp-iBzLk9skpB2v7Twok,8434
|
|
133
133
|
bl_ui/properties_mask_common/__init__.pyi,sha256=-Ae0CtS1OQZRwJ38l1xj-115MJo9xEQieAarliMc40s,5796
|
|
134
134
|
bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsCPcV4kXWe0,13499
|
|
135
135
|
bl_ui/properties_material_gpencil/__init__.pyi,sha256=zfCV8bG4-NABgQNpZjhRRR4Ttr0qS2H17seuJlJgX4c,8621
|
|
@@ -172,7 +172,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLB
|
|
|
172
172
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=hyZX3v4vN-0nUrbXuSFbRMElaNuZtIvGMJfAjTaErt0,9927
|
|
173
173
|
bl_ui/space_topbar/__init__.pyi,sha256=tVupsHc6IdA1o_axDcB1Cbf0o8ARZzgLncMXgguQnWY,15316
|
|
174
174
|
bl_ui/space_userpref/__init__.pyi,sha256=EGCdnPQ4iTmERhhzHcb3l-QZBQpZGoGjHMGeTlcyryY,79706
|
|
175
|
-
bl_ui/space_view3d/__init__.pyi,sha256=
|
|
175
|
+
bl_ui/space_view3d/__init__.pyi,sha256=HyTTm0awNZtEwDNkDYINCyklRpnXy0Rfr07ki5TGt3A,155025
|
|
176
176
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=h2PDlE_56tCymRzbSaAf7mu7TIKoSghVjswczMjIG48,76293
|
|
177
177
|
bl_ui/utils/__init__.pyi,sha256=qkgl-AlZI3QD4UUITGIvN9PbifOI4BPkZBpu7WyxMBw,483
|
|
178
178
|
bl_ui_utils/__init__.pyi,sha256=ZOo9_bgn1c9NiCNalhTplCD2IChG67rU_V3BeG0k4pE,93
|
|
@@ -226,7 +226,7 @@ bpy/ops/geometry/__init__.pyi,sha256=Ix8MGXa5gZBQT3aWGmDfrKPx-MTtmloRflfwiHicuTU
|
|
|
226
226
|
bpy/ops/gizmogroup/__init__.pyi,sha256=OFN5NNvr_HFc_L7pvjSWKY_D8nF2_Ue8z6nGjB-_xac,1595
|
|
227
227
|
bpy/ops/gpencil/__init__.pyi,sha256=xef0m8m4jVKzqncUi9CezsXgqES8iAYJzcEKtDfTXTY,6112
|
|
228
228
|
bpy/ops/graph/__init__.pyi,sha256=uH--tIvXthUVXBm5vcmpGw_OgRG5mMZ8ITttZBqUDSo,51543
|
|
229
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
229
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=_weJmedsJoTzxJljcHi4BBnU6Co0oFOxjpXHiUa67ZM,74880
|
|
230
230
|
bpy/ops/image/__init__.pyi,sha256=dJQe9-vHnpLHxDqXWfx3Yq9CyIHKkCBsxf4-vS1rmu8,59838
|
|
231
231
|
bpy/ops/import_anim/__init__.pyi,sha256=7BExOyxBpXdbfQQN_foBI0FIfqHte9U1nfWEvNKYH0Y,3216
|
|
232
232
|
bpy/ops/import_curve/__init__.pyi,sha256=U3eiL0CsWblWZe8O58JOxSXhr2sgHRHKwVzozIMsck4,651
|
|
@@ -240,7 +240,7 @@ bpy/ops/mball/__init__.pyi,sha256=jqOLev5gvBK4fx9CLXj1qxWyTp3z0kqVG1Fxk4Mnzn8,53
|
|
|
240
240
|
bpy/ops/mesh/__init__.pyi,sha256=a_x0zfWW8LcwXgWU2yFYE4DXlW3N5XeMrXscL73LOT4,157018
|
|
241
241
|
bpy/ops/nla/__init__.pyi,sha256=uhpT_iNKbnI3zN0dI3_w4ZuEeBSGy_2Z4eUsTTj3z48,24221
|
|
242
242
|
bpy/ops/node/__init__.pyi,sha256=3P5RJJLhHtwason9eKv2W9UAU16jKsiipNFstrmKNDQ,69731
|
|
243
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
243
|
+
bpy/ops/object/__init__.pyi,sha256=iyMPRIB-U81MU8Yk9Ni-A_CQEVMpMR2ZLADmQAVeCG8,203427
|
|
244
244
|
bpy/ops/outliner/__init__.pyi,sha256=o5OxwPlRmadDEhvCUSmt8u1aJ8euFSCV-UYCknYymdI,38952
|
|
245
245
|
bpy/ops/paint/__init__.pyi,sha256=CwUI97PIYq0-IiQu9oZBP1cvc62P4wSTDyPbnILs5EI,44921
|
|
246
246
|
bpy/ops/paintcurve/__init__.pyi,sha256=ej9Ou29-VVY4oHCAsSmdBtOjcO0ZQpQdsBSzfDKYMJw,4261
|
|
@@ -252,7 +252,7 @@ bpy/ops/preferences/__init__.pyi,sha256=B--ej4NgSwevsHrzn0DGXvZQSa3ZuHZ9olIctybj
|
|
|
252
252
|
bpy/ops/ptcache/__init__.pyi,sha256=UXfqM90z4atRrWfj-u_OG0wi7OgvMzs0r8usiBp5Sow,2811
|
|
253
253
|
bpy/ops/render/__init__.pyi,sha256=qgjTSltZ5-pvjFibfkbuahh5PPzPKe1Feo1lRzuxUMQ,9427
|
|
254
254
|
bpy/ops/rigidbody/__init__.pyi,sha256=kH3fZft8NevNiVP44o_RMGUqx0bj4e1k3ADbJYM3_90,8647
|
|
255
|
-
bpy/ops/scene/__init__.pyi,sha256=
|
|
255
|
+
bpy/ops/scene/__init__.pyi,sha256=ZCDXo6ygGlCoFNgXs5BixfFTalKQJk48Tn5JKFK4EN4,19445
|
|
256
256
|
bpy/ops/screen/__init__.pyi,sha256=brjCQalre8Km7BxXPI6t0j3NBggA1IrsiOwNZ9AmhKc,26004
|
|
257
257
|
bpy/ops/script/__init__.pyi,sha256=qJGs4LY_-NgCKFwGkOBwvig0LFr5v72A9nL-LQ21HrY,1460
|
|
258
258
|
bpy/ops/sculpt/__init__.pyi,sha256=s4QH5ISS9KMBMQ7vCjHP1U7GbC_Pu-pyvNeqB5OftC0,52345
|
|
@@ -270,13 +270,13 @@ bpy/ops/uilist/__init__.pyi,sha256=L4xQFB8gZEK8eR2tymJBIVwALoVQLh9gwGkIjDzORyI,2
|
|
|
270
270
|
bpy/ops/uv/__init__.pyi,sha256=ociGOFaeH4aChcVFMtC167ZWtM4roFQveDgKiqbAK3c,52706
|
|
271
271
|
bpy/ops/view2d/__init__.pyi,sha256=UWYslz64I_HIULKVyiYd9bVK38ypxss_9EZySgQkyuI,9137
|
|
272
272
|
bpy/ops/view3d/__init__.pyi,sha256=2lr2OOlmYao1DxhG3UugV_WXB8IViYGBL5WXvxHUXOE,41228
|
|
273
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
273
|
+
bpy/ops/wm/__init__.pyi,sha256=g26a1xh5Yzzbdx4KjqQ5Ib9bMWI4MBmOl39wSQP7FJI,230860
|
|
274
274
|
bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJY,3133
|
|
275
275
|
bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
|
|
276
276
|
bpy/path/__init__.pyi,sha256=lXSqQ4p4zukM_-6TaN4v7lNWFVY0xbYGMkOVLpkbpsI,5444
|
|
277
277
|
bpy/props/__init__.pyi,sha256=eVVh1KTFtNf6c-4uSWt4wANzTv1RvN2I2FQ7ewdrKCQ,31045
|
|
278
|
-
bpy/types/__init__.pyi,sha256=
|
|
279
|
-
bpy/typing/__init__.pyi,sha256=
|
|
278
|
+
bpy/types/__init__.pyi,sha256=9rwzJneiIGdsDXj39MANS96W5ftIzkeWoY0Pkp0zZoA,5368456
|
|
279
|
+
bpy/typing/__init__.pyi,sha256=l9zIo04M9gyNPPOCFAvFDOwgWgd-dyKCv5yGV6bx41Y,138523
|
|
280
280
|
bpy/utils/__init__.pyi,sha256=AEb3oVPPh_gqLyKORj6rsxDPWvXIHjqp_eME3z98GcM,13117
|
|
281
281
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
282
282
|
bpy/utils/units/__init__.pyi,sha256=r9G6UXferw_5pDijn-FmpyhYSnEng3_y-5apdkPAKl0,2631
|
|
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
358
358
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
359
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
360
360
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
|
-
fake_bpy_module-
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
361
|
+
fake_bpy_module-20241016.dist-info/METADATA,sha256=d6CIsqAWugSR6AVXRJcJvuevJPutR9nCoBndZXHRTWc,7204
|
|
362
|
+
fake_bpy_module-20241016.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
363
|
+
fake_bpy_module-20241016.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
364
|
+
fake_bpy_module-20241016.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|