fake-bpy-module 20240524__py3-none-any.whl → 20240528__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/__init__.pyi +1 -0
- bl_operators/image_as_planes/__init__.pyi +457 -0
- bl_operators/userpref/__init__.pyi +0 -214
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/properties_render/__init__.pyi +1 -1
- bpy/app/__init__.pyi +5 -1
- bpy/ops/action/__init__.pyi +21 -0
- bpy/ops/anim/__init__.pyi +34 -0
- bpy/ops/armature/__init__.pyi +31 -0
- bpy/ops/asset/__init__.pyi +5 -0
- bpy/ops/bl_pkg/__init__.pyi +28 -17
- bpy/ops/boid/__init__.pyi +1 -0
- bpy/ops/brush/__init__.pyi +6 -0
- bpy/ops/buttons/__init__.pyi +2 -0
- bpy/ops/cachefile/__init__.pyi +3 -0
- bpy/ops/camera/__init__.pyi +2 -0
- bpy/ops/clip/__init__.pyi +49 -0
- bpy/ops/cloth/__init__.pyi +1 -0
- bpy/ops/collection/__init__.pyi +7 -0
- bpy/ops/console/__init__.pyi +11 -0
- bpy/ops/constraint/__init__.pyi +15 -0
- bpy/ops/curve/__init__.pyi +28 -0
- bpy/ops/curves/__init__.pyi +14 -0
- bpy/ops/cycles/__init__.pyi +2 -0
- bpy/ops/dpaint/__init__.pyi +2 -0
- bpy/ops/ed/__init__.pyi +3 -0
- bpy/ops/export_anim/__init__.pyi +1 -0
- bpy/ops/export_scene/__init__.pyi +20 -3
- bpy/ops/file/__init__.pyi +14 -0
- bpy/ops/fluid/__init__.pyi +1 -0
- bpy/ops/font/__init__.pyi +13 -0
- bpy/ops/geometry/__init__.pyi +7 -0
- bpy/ops/gizmogroup/__init__.pyi +1 -0
- bpy/ops/gpencil/__init__.pyi +106 -0
- bpy/ops/graph/__init__.pyi +47 -0
- bpy/ops/grease_pencil/__init__.pyi +52 -0
- bpy/ops/image/__init__.pyi +308 -0
- bpy/ops/import_anim/__init__.pyi +1 -0
- bpy/ops/import_curve/__init__.pyi +1 -0
- bpy/ops/import_scene/__init__.pyi +2 -0
- bpy/ops/info/__init__.pyi +3 -0
- bpy/ops/lattice/__init__.pyi +5 -0
- bpy/ops/marker/__init__.pyi +9 -0
- bpy/ops/mask/__init__.pyi +22 -0
- bpy/ops/mball/__init__.pyi +7 -0
- bpy/ops/mesh/__init__.pyi +134 -0
- bpy/ops/nla/__init__.pyi +20 -0
- bpy/ops/node/__init__.pyi +47 -0
- bpy/ops/object/__init__.pyi +174 -0
- bpy/ops/outliner/__init__.pyi +25 -0
- bpy/ops/paint/__init__.pyi +39 -0
- bpy/ops/paintcurve/__init__.pyi +4 -0
- bpy/ops/palette/__init__.pyi +4 -0
- bpy/ops/particle/__init__.pyi +17 -0
- bpy/ops/pose/__init__.pyi +24 -0
- bpy/ops/poselib/__init__.pyi +4 -0
- bpy/ops/preferences/__init__.pyi +26 -14
- bpy/ops/ptcache/__init__.pyi +2 -0
- bpy/ops/render/__init__.pyi +9 -0
- bpy/ops/rigidbody/__init__.pyi +7 -0
- bpy/ops/scene/__init__.pyi +16 -0
- bpy/ops/screen/__init__.pyi +21 -0
- bpy/ops/script/__init__.pyi +2 -0
- bpy/ops/sculpt/__init__.pyi +25 -0
- bpy/ops/sculpt_curves/__init__.pyi +3 -0
- bpy/ops/sequencer/__init__.pyi +57 -0
- bpy/ops/sound/__init__.pyi +4 -0
- bpy/ops/spreadsheet/__init__.pyi +2 -0
- bpy/ops/surface/__init__.pyi +6 -0
- bpy/ops/text/__init__.pyi +18 -0
- bpy/ops/text_editor/__init__.pyi +1 -0
- bpy/ops/texture/__init__.pyi +1 -0
- bpy/ops/transform/__init__.pyi +25 -0
- bpy/ops/ui/__init__.pyi +13 -0
- bpy/ops/uilist/__init__.pyi +3 -0
- bpy/ops/uv/__init__.pyi +40 -0
- bpy/ops/view2d/__init__.pyi +11 -0
- bpy/ops/view3d/__init__.pyi +30 -0
- bpy/ops/wm/__init__.pyi +114 -0
- bpy/ops/workspace/__init__.pyi +1 -0
- bpy/path/__init__.pyi +6 -6
- bpy/props/__init__.pyi +11 -1
- bpy/types/__init__.pyi +393 -334
- bpy/utils/__init__.pyi +10 -8
- bpy_extras/anim_utils/__init__.pyi +3 -3
- bpy_extras/view3d_utils/__init__.pyi +2 -0
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240528.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240528.dist-info}/RECORD +93 -92
- gpu/types/__init__.pyi +4 -2
- gpu_extras/batch/__init__.pyi +1 -1
- gpu_extras/presets/__init__.pyi +1 -1
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240528.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240528.dist-info}/top_level.txt +0 -0
bpy/utils/__init__.pyi
CHANGED
|
@@ -18,7 +18,7 @@ from . import units
|
|
|
18
18
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
19
19
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
20
20
|
|
|
21
|
-
def app_template_paths(path: str | None = None):
|
|
21
|
+
def app_template_paths(*, path: str | None = None):
|
|
22
22
|
"""Returns valid application template paths.
|
|
23
23
|
|
|
24
24
|
:param path: Optional subdir.
|
|
@@ -68,7 +68,7 @@ def escape_identifier(string: str | None) -> str:
|
|
|
68
68
|
|
|
69
69
|
...
|
|
70
70
|
|
|
71
|
-
def execfile(filepath: str | None, mod=None):
|
|
71
|
+
def execfile(filepath: str | None, *, mod=None):
|
|
72
72
|
"""Execute a file path as a Python script.
|
|
73
73
|
|
|
74
74
|
:param filepath: Path of the script to execute.
|
|
@@ -116,9 +116,10 @@ def is_path_builtin(path: str | None) -> bool:
|
|
|
116
116
|
|
|
117
117
|
def keyconfig_init(): ...
|
|
118
118
|
def keyconfig_init(): ...
|
|
119
|
-
def keyconfig_set(filepath, report=None): ...
|
|
119
|
+
def keyconfig_set(filepath, *, report=None): ...
|
|
120
120
|
def keyconfig_set(filepath, report=None): ...
|
|
121
121
|
def load_scripts(
|
|
122
|
+
*,
|
|
122
123
|
reload_scripts: bool | None = False,
|
|
123
124
|
refresh_scripts: bool | None = False,
|
|
124
125
|
extensions: bool | None = True,
|
|
@@ -252,7 +253,7 @@ def modules_from_path(path: str | None, loaded_modules: set | None) -> list:
|
|
|
252
253
|
|
|
253
254
|
...
|
|
254
255
|
|
|
255
|
-
def preset_find(name, preset_path, display_name=False, ext=".py"): ...
|
|
256
|
+
def preset_find(name, preset_path, *, display_name=False, ext=".py"): ...
|
|
256
257
|
def preset_find(name, preset_path, display_name=False, ext=".py"): ...
|
|
257
258
|
def preset_paths(subdir: str | None) -> list:
|
|
258
259
|
"""Returns a list of paths for a specific preset.
|
|
@@ -368,7 +369,7 @@ def register_submodule_factory(
|
|
|
368
369
|
...
|
|
369
370
|
|
|
370
371
|
def register_tool(
|
|
371
|
-
tool_cls, after=None, separator: bool | None = False, group: bool | None = False
|
|
372
|
+
tool_cls, *, after=None, separator: bool | None = False, group: bool | None = False
|
|
372
373
|
):
|
|
373
374
|
"""Register a tool in the toolbar.
|
|
374
375
|
|
|
@@ -423,6 +424,7 @@ def script_path_user():
|
|
|
423
424
|
...
|
|
424
425
|
|
|
425
426
|
def script_paths(
|
|
427
|
+
*,
|
|
426
428
|
subdir: str | None = None,
|
|
427
429
|
user_pref: bool | None = True,
|
|
428
430
|
check_all: bool | None = False,
|
|
@@ -467,7 +469,7 @@ def script_paths_pref():
|
|
|
467
469
|
|
|
468
470
|
...
|
|
469
471
|
|
|
470
|
-
def smpte_from_frame(frame: int | None, fps=None, fps_base=None) -> str:
|
|
472
|
+
def smpte_from_frame(frame: int | None, *, fps=None, fps_base=None) -> str:
|
|
471
473
|
"""Returns an SMPTE formatted string from the frame:
|
|
472
474
|
HH:MM:SS:FF.If fps and fps_base are not given the current scene is used.
|
|
473
475
|
|
|
@@ -491,7 +493,7 @@ def smpte_from_frame(frame: int | None, fps=None, fps_base=None) -> str:
|
|
|
491
493
|
|
|
492
494
|
...
|
|
493
495
|
|
|
494
|
-
def smpte_from_seconds(time: int | float | None, fps=None, fps_base=None) -> str:
|
|
496
|
+
def smpte_from_seconds(time: int | float | None, *, fps=None, fps_base=None) -> str:
|
|
495
497
|
"""Returns an SMPTE formatted string from the time:
|
|
496
498
|
HH:MM:SS:FF.If fps and fps_base are not given the current scene is used.
|
|
497
499
|
|
|
@@ -571,7 +573,7 @@ def unregister_manual_map(manual_hook): ...
|
|
|
571
573
|
def unregister_tool(tool_cls): ...
|
|
572
574
|
def unregister_tool(tool_cls): ...
|
|
573
575
|
def user_resource(
|
|
574
|
-
resource_type, path: str | None = "", create: bool | None = False
|
|
576
|
+
resource_type, *, path: str | None = "", create: bool | None = False
|
|
575
577
|
) -> str:
|
|
576
578
|
"""Return a user resource path (normally from the users home directory).
|
|
577
579
|
|
|
@@ -74,7 +74,7 @@ class KeyframesCo:
|
|
|
74
74
|
...
|
|
75
75
|
|
|
76
76
|
def bake_action(
|
|
77
|
-
obj: bpy.types.Object, action: bpy.types.Action | None, frames, bake_options
|
|
77
|
+
obj: bpy.types.Object, *, action: bpy.types.Action | None, frames, bake_options
|
|
78
78
|
) -> bpy.types.Action:
|
|
79
79
|
"""
|
|
80
80
|
|
|
@@ -108,7 +108,7 @@ def bake_action(
|
|
|
108
108
|
...
|
|
109
109
|
|
|
110
110
|
def bake_action_iter(
|
|
111
|
-
obj: bpy.types.Object, action: bpy.types.Action | None, bake_options
|
|
111
|
+
obj: bpy.types.Object, *, action: bpy.types.Action | None, bake_options
|
|
112
112
|
) -> bpy.types.Action:
|
|
113
113
|
"""An coroutine that bakes action for a single object.
|
|
114
114
|
|
|
@@ -142,7 +142,7 @@ def bake_action_iter(
|
|
|
142
142
|
...
|
|
143
143
|
|
|
144
144
|
def bake_action_objects(
|
|
145
|
-
object_action_pairs, frames, bake_options
|
|
145
|
+
object_action_pairs, *, frames, bake_options
|
|
146
146
|
) -> typing.Iterable[bpy.types.Action]:
|
|
147
147
|
"""A version of `bake_action_objects_iter` that takes frames and returns the output.
|
|
148
148
|
|
|
@@ -10,6 +10,7 @@ def location_3d_to_region_2d(
|
|
|
10
10
|
region: bpy.types.Region,
|
|
11
11
|
rv3d: bpy.types.RegionView3D,
|
|
12
12
|
coord: mathutils.Vector,
|
|
13
|
+
*,
|
|
13
14
|
default=None,
|
|
14
15
|
) -> mathutils.Vector:
|
|
15
16
|
"""Return the region relative 2d location of a 3d position.
|
|
@@ -104,6 +105,7 @@ def region_2d_to_origin_3d(
|
|
|
104
105
|
region: bpy.types.Region,
|
|
105
106
|
rv3d: bpy.types.RegionView3D,
|
|
106
107
|
coord: mathutils.Vector,
|
|
108
|
+
*,
|
|
107
109
|
clamp: float | None = None,
|
|
108
110
|
) -> mathutils.Vector:
|
|
109
111
|
"""Return the 3d view origin from the region relative 2d coords.
|
|
@@ -39,7 +39,7 @@ bl_keymap_utils/platform_helpers/__init__.pyi,sha256=ci6vSYCsPzQO3YH5vUfNfH4eBDa
|
|
|
39
39
|
bl_keymap_utils/versioning/__init__.pyi,sha256=AZyKh9N2EgPBt87ChwU8iT8pyksXb_dA2p6hfqGOPuM,192
|
|
40
40
|
bl_math/__init__.pyi,sha256=o_oPlFAp1hTlRyvAlka15u6nRV6cPChvsVubcdyk8yo,1693
|
|
41
41
|
bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
-
bl_operators/__init__.pyi,sha256=
|
|
42
|
+
bl_operators/__init__.pyi,sha256=guCs8pt7k4PlkvnQ0a-fpT2k96_uYwSqL0DvCPt__9E,956
|
|
43
43
|
bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
44
|
bl_operators/add_mesh_torus/__init__.pyi,sha256=8raOz9P8nJEXU-K8RyiWR27RhyRE5AqKmW2pLH52wDI,6282
|
|
45
45
|
bl_operators/anim/__init__.pyi,sha256=RhYCJ_I-ydS4uPbKGrKxNa20fN5AgsKwfy0TNRGrs1g,45160
|
|
@@ -53,6 +53,7 @@ bl_operators/file/__init__.pyi,sha256=lCHSSwRdxWJS-E9RPpjokRNQJ4CVNwiN07GmQjDhOv
|
|
|
53
53
|
bl_operators/freestyle/__init__.pyi,sha256=Ax-GQSX3f5jWhs0-PUtfh0UEx8VzrJyDEPGFpnT5ncw,22721
|
|
54
54
|
bl_operators/geometry_nodes/__init__.pyi,sha256=vgkY9xchYC2YiwhvAyIGMWHLhAq048U4evATOC1VWHg,23355
|
|
55
55
|
bl_operators/image/__init__.pyi,sha256=cb5DFv5wj2BMQ866H4sDoTt3CAyRRq59N2Zu0Yvc9wI,27155
|
|
56
|
+
bl_operators/image_as_planes/__init__.pyi,sha256=ozqGpvrWgErK59TmVG5W3BJ-gfK_FIGzqB_BbCCmek4,10883
|
|
56
57
|
bl_operators/mesh/__init__.pyi,sha256=JPC60NQkcETdg11bbEpq6pO8D_y4MLGYlqHa9bIwvW0,16903
|
|
57
58
|
bl_operators/node/__init__.pyi,sha256=05DJVtgVxGs1svvRDsDUB9sd899c3iwXSu1BpFP2BOk,57860
|
|
58
59
|
bl_operators/object/__init__.pyi,sha256=Xq_PjOU1nNU1TrdsPqe8MBhgH4WFK5_R9yu3xImHB_Q,83651
|
|
@@ -64,7 +65,7 @@ bl_operators/rigidbody/__init__.pyi,sha256=-Gl_y3xFDz2Y9E2zj8rvYhUT8d1qQRD9jxnWy
|
|
|
64
65
|
bl_operators/screen_play_rendered_anim/__init__.pyi,sha256=lbEYzhEBGDDagSaZjGPIFoyE5rxiy3eZ76TtLxVtF_c,5653
|
|
65
66
|
bl_operators/sequencer/__init__.pyi,sha256=B7rBXOEzCgbXVw9hAgv3ISRCHZBpXjV8G46HQgGGhdU,45445
|
|
66
67
|
bl_operators/spreadsheet/__init__.pyi,sha256=DpAvxhsv328YAOmvAgczcn0nVCrRLiAw9I0AgOUnyLM,5864
|
|
67
|
-
bl_operators/userpref/__init__.pyi,sha256=
|
|
68
|
+
bl_operators/userpref/__init__.pyi,sha256=NOhAl05uCjjBexDB4tAy6cwOVmxz5Qfuixz-Zx13qX0,137311
|
|
68
69
|
bl_operators/uvcalc_follow_active/__init__.pyi,sha256=5wljjUofULbcGLAxu1SPo3VHMUwo-Mn0N_qVIhoK4s8,5918
|
|
69
70
|
bl_operators/uvcalc_lightmap/__init__.pyi,sha256=S4Qd8hIuR4QphYKkqWNzer-XlR6RZFsPQgzTeQ_Kvgc,6808
|
|
70
71
|
bl_operators/uvcalc_transform/__init__.pyi,sha256=CbwgnUkyq48X8OGU6qsrzAWAw9Il0qGAl6HHN8e4Oyo,13387
|
|
@@ -85,7 +86,7 @@ bl_ui/__init__.pyi,sha256=N3pzoct8D3cGDvatLnpVixZlbZGI-vSC5tmTQ_NsXBw,20136
|
|
|
85
86
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
86
87
|
bl_ui/anim/__init__.pyi,sha256=Q3Bo73WhK6fLXhWspPQ6IrlX3z6vxvBsUUH2ME0I4vo,7590
|
|
87
88
|
bl_ui/asset_shelf/__init__.pyi,sha256=HztdIjmsqLm_jhZhChKREICK86WnEKPMW0HAd3gfb-A,5887
|
|
88
|
-
bl_ui/generic_ui_list/__init__.pyi,sha256=
|
|
89
|
+
bl_ui/generic_ui_list/__init__.pyi,sha256=wiHVG8tUGH08FXberdkon893hE-KQOC-wcQdPhQRIds,19691
|
|
89
90
|
bl_ui/node_add_menu/__init__.pyi,sha256=_1Dpb7cpJospC3e8yqCW71ZSafv5hLG3CsvzBb5hTGc,8092
|
|
90
91
|
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=EeOd9zPegDOKOTPFA31q92ZZvdcMBUfDUEpx7YdiHuw,134520
|
|
91
92
|
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=93G3_29MLoy3VJYOeB1Nx6IWk80LMbRDDuB_2C5KxDA,358371
|
|
@@ -130,7 +131,7 @@ bl_ui/properties_physics_geometry_nodes/__init__.pyi,sha256=jt_gDXfetoJFIgfPPrYN
|
|
|
130
131
|
bl_ui/properties_physics_rigidbody/__init__.pyi,sha256=n0DxWT-bMHFgeXRjhmS8sonosHzlTj7FLZDL15huXh0,47402
|
|
131
132
|
bl_ui/properties_physics_rigidbody_constraint/__init__.pyi,sha256=TOP5bfYxJT9ODJCuNOhmaiQOXbCP34KtmD4NZ9CKh14,76970
|
|
132
133
|
bl_ui/properties_physics_softbody/__init__.pyi,sha256=5PnubTFLmo6iixuWUthXsUdb0PBSJDPfwcHBc_PfW1Q,88813
|
|
133
|
-
bl_ui/properties_render/__init__.pyi,sha256=
|
|
134
|
+
bl_ui/properties_render/__init__.pyi,sha256=OlVEpdx2ifZSheguaW726-0OaCS8HN-buHf6ilrwKJc,313636
|
|
134
135
|
bl_ui/properties_scene/__init__.pyi,sha256=I-GM-Rjcfj_XEMsKEQCF4p8p36FEM79x2BiR1lbd41M,88352
|
|
135
136
|
bl_ui/properties_texture/__init__.pyi,sha256=PgGQ19M8yGcQ_7cOQRcRMATDqVopMgG9DnDdJ3fwXCI,155155
|
|
136
137
|
bl_ui/properties_view_layer/__init__.pyi,sha256=7VaANgELkWMUrEot7qAxAAabEI91is4B1ksAPtUCt_o,107128
|
|
@@ -176,98 +177,98 @@ bmesh/types/__init__.pyi,sha256=YnsGoCqfO7eJHZTAD-zGd6wTVy67wHnV80u2sY4tR5k,4008
|
|
|
176
177
|
bmesh/utils/__init__.pyi,sha256=z4BFczG2gQpSRC_U5K7tm7bfgoC4Imfvu_zNbBxonGA,6145
|
|
177
178
|
bpy/__init__.pyi,sha256=_aPxZG75j_LcawPviW9vM5kU2SSZvHl_1VmUWIfHPKE,472
|
|
178
179
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
179
|
-
bpy/app/__init__.pyi,sha256=
|
|
180
|
+
bpy/app/__init__.pyi,sha256=pj0HIrral4fzdbeDqQ9LykXek4cco7rHvxOR-4gK0V8,8010
|
|
180
181
|
bpy/app/handlers/__init__.pyi,sha256=cRisbWZHogBMty6EbTxnZmSvucOyOMwFU_rFtCVPvw4,6182
|
|
181
182
|
bpy/app/icons/__init__.pyi,sha256=S20lTJ7mFDgVfUSpMIT44yoBscukyO9022RlcBIw260,1079
|
|
182
183
|
bpy/app/timers/__init__.pyi,sha256=DWJ6sQXDefx6wh1l20rBHcfcLDEoyfzBcbDxPLJxdHc,1798
|
|
183
184
|
bpy/app/translations/__init__.pyi,sha256=WGPnipHE0xa8pZGS6y1oyqFSVANXmo0PZu_1wnrDQq4,6490
|
|
184
185
|
bpy/msgbus/__init__.pyi,sha256=em1PtP7CussRqslJkcEC_sVvxSe87T0OJcJwbfn3uhY,2693
|
|
185
186
|
bpy/ops/__init__.pyi,sha256=3GvGuBz-_5B2fzNTXKX4MuPi7WsuTs5wJWQAoiBlsfQ,4642
|
|
186
|
-
bpy/ops/action/__init__.pyi,sha256=
|
|
187
|
-
bpy/ops/anim/__init__.pyi,sha256=
|
|
188
|
-
bpy/ops/armature/__init__.pyi,sha256=
|
|
189
|
-
bpy/ops/asset/__init__.pyi,sha256=
|
|
190
|
-
bpy/ops/bl_pkg/__init__.pyi,sha256=
|
|
191
|
-
bpy/ops/boid/__init__.pyi,sha256=
|
|
192
|
-
bpy/ops/brush/__init__.pyi,sha256=
|
|
193
|
-
bpy/ops/buttons/__init__.pyi,sha256=
|
|
194
|
-
bpy/ops/cachefile/__init__.pyi,sha256=
|
|
195
|
-
bpy/ops/camera/__init__.pyi,sha256=
|
|
196
|
-
bpy/ops/clip/__init__.pyi,sha256=
|
|
197
|
-
bpy/ops/cloth/__init__.pyi,sha256=
|
|
198
|
-
bpy/ops/collection/__init__.pyi,sha256=
|
|
199
|
-
bpy/ops/console/__init__.pyi,sha256=
|
|
200
|
-
bpy/ops/constraint/__init__.pyi,sha256=
|
|
201
|
-
bpy/ops/curve/__init__.pyi,sha256=
|
|
202
|
-
bpy/ops/curves/__init__.pyi,sha256=
|
|
203
|
-
bpy/ops/cycles/__init__.pyi,sha256=
|
|
204
|
-
bpy/ops/dpaint/__init__.pyi,sha256=
|
|
205
|
-
bpy/ops/ed/__init__.pyi,sha256=
|
|
206
|
-
bpy/ops/export_anim/__init__.pyi,sha256=
|
|
207
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
208
|
-
bpy/ops/file/__init__.pyi,sha256=
|
|
209
|
-
bpy/ops/fluid/__init__.pyi,sha256=
|
|
210
|
-
bpy/ops/font/__init__.pyi,sha256=
|
|
211
|
-
bpy/ops/geometry/__init__.pyi,sha256=
|
|
212
|
-
bpy/ops/gizmogroup/__init__.pyi,sha256=
|
|
213
|
-
bpy/ops/gpencil/__init__.pyi,sha256=
|
|
214
|
-
bpy/ops/graph/__init__.pyi,sha256=
|
|
215
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
216
|
-
bpy/ops/image/__init__.pyi,sha256=
|
|
217
|
-
bpy/ops/import_anim/__init__.pyi,sha256=
|
|
218
|
-
bpy/ops/import_curve/__init__.pyi,sha256=
|
|
219
|
-
bpy/ops/import_scene/__init__.pyi,sha256=
|
|
220
|
-
bpy/ops/info/__init__.pyi,sha256=
|
|
221
|
-
bpy/ops/lattice/__init__.pyi,sha256=
|
|
222
|
-
bpy/ops/marker/__init__.pyi,sha256=
|
|
223
|
-
bpy/ops/mask/__init__.pyi,sha256=
|
|
187
|
+
bpy/ops/action/__init__.pyi,sha256=nRLL95up__VixyieDezDYGsA1KvNtcHWnVIje_FCWHo,23479
|
|
188
|
+
bpy/ops/anim/__init__.pyi,sha256=2qv4g94GNtItv44Tarx71Ze_D3SXV2oaWQu-nswmD3s,31453
|
|
189
|
+
bpy/ops/armature/__init__.pyi,sha256=o-KRX6CMtgtK8fL6wY7L7UixyKrRgL4eIQstCiTUcCQ,28126
|
|
190
|
+
bpy/ops/asset/__init__.pyi,sha256=1ysK1ySmzrJOdmRl2p4KhyxAr7oPYbBKYrUPyQ608I8,11972
|
|
191
|
+
bpy/ops/bl_pkg/__init__.pyi,sha256=3gL7yrpbAgRbzYD4H9vuw20fmEF17PNmBFT6TyDLRv0,14360
|
|
192
|
+
bpy/ops/boid/__init__.pyi,sha256=0MiuhwVXCF05NgImhy39SWnxYJXTS0lAjhnJqDsNH8U,3325
|
|
193
|
+
bpy/ops/brush/__init__.pyi,sha256=EujkeQ-lPqTSGmaL5wO34jemrd3e4LnzQsbeFIwpoHY,4851
|
|
194
|
+
bpy/ops/buttons/__init__.pyi,sha256=0dx1bS3H_AT4OgevUmi4rIcYWtD6ixMom7gB_RBh9vI,10837
|
|
195
|
+
bpy/ops/cachefile/__init__.pyi,sha256=_2Vy2nnajHAvRaItBeUchZBp4zQpYvUU3iQIm28mttI,10550
|
|
196
|
+
bpy/ops/camera/__init__.pyi,sha256=nKP9IVE6bqcZ-jDtOEUFRca_xk55K8_C1qc3h4lJ7yE,1967
|
|
197
|
+
bpy/ops/clip/__init__.pyi,sha256=38EKX7_FPCB1-yZB3_PTteXP-iDQa_hvJuFGx8wmoKA,58229
|
|
198
|
+
bpy/ops/cloth/__init__.pyi,sha256=kGlTwSDl3SG9Ontr3Aiidhqv1YoEDenY8IM_hyhWsgQ,950
|
|
199
|
+
bpy/ops/collection/__init__.pyi,sha256=pTPCbpawbUuIu-h7V4TlcayPsLZrtulLE5vr1n_BVN8,4702
|
|
200
|
+
bpy/ops/console/__init__.pyi,sha256=U7q9tKbAVarrTdahkGreDt8PTL_AwdQuEAvC0TZXexM,10665
|
|
201
|
+
bpy/ops/constraint/__init__.pyi,sha256=Fsy8QS-Cr3OPrCjV4MYwEvERBKduUDLlrlTgKbCSs-o,14565
|
|
202
|
+
bpy/ops/curve/__init__.pyi,sha256=phGxmvyT3Wkmm6H2gScUIb5NwVlb2Xc6W5wLHOoF5ZQ,34710
|
|
203
|
+
bpy/ops/curves/__init__.pyi,sha256=xWIQxdZitqgw1adRsD78vZYYxbFuhpR3g7a5pYrCn8c,18120
|
|
204
|
+
bpy/ops/cycles/__init__.pyi,sha256=3ZXMstGXnb20JuFOwVgk-XEMbUKUV_prlFI19qw7QLk,2440
|
|
205
|
+
bpy/ops/dpaint/__init__.pyi,sha256=X6BzZRMR_KnbeRXwt3tYpY6zdwg0YOm_NVq6ABF_0q0,2314
|
|
206
|
+
bpy/ops/ed/__init__.pyi,sha256=xxJyGMLV0zGruKqEMRuwppSfc3gYal6JITPuEvsTwCg,9462
|
|
207
|
+
bpy/ops/export_anim/__init__.pyi,sha256=xlFFDeLOQsp4Ab2aHxhZk7j4NpU_My9ZFjY1RLqDErw,2292
|
|
208
|
+
bpy/ops/export_scene/__init__.pyi,sha256=p_XJIeh_xHYklrbQ0cRJOEcLQXpEktxIw6oNu7Lj-1Q,40017
|
|
209
|
+
bpy/ops/file/__init__.pyi,sha256=lNVEvaCV60_92aACUAWDVKMlqWhI60VKn1K13TXlW7c,25833
|
|
210
|
+
bpy/ops/fluid/__init__.pyi,sha256=XutbeF9tzrWSWUKYGUzB32JUIkTWUK65kwHJdfd4rTs,5788
|
|
211
|
+
bpy/ops/font/__init__.pyi,sha256=gykWhH9rVOwaJ0LF7yFwtvMmayRK_s4sGtMek5JO7RM,18752
|
|
212
|
+
bpy/ops/geometry/__init__.pyi,sha256=_gSRsu9AyyatyHuesVngOfvcZqCv8jzxlpe6pueDXuk,7084
|
|
213
|
+
bpy/ops/gizmogroup/__init__.pyi,sha256=Ipf0EiUj6DNqELzUmT9L29xlxa_dJVEL4SHMwAn0Y7U,1811
|
|
214
|
+
bpy/ops/gpencil/__init__.pyi,sha256=ShfIEvGCX0VAZAXu_ZBjIEBKSdL2WEKRJ9Ey6ZYXWp4,110759
|
|
215
|
+
bpy/ops/graph/__init__.pyi,sha256=i7_J7wulwYA6GBEAwwXqxcWdqhhbKKH4wlf1l3tTZp4,51146
|
|
216
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=1xd8c1dC093iV1Fj9NKeVzFOgcWS_84pbJrch6uyMfY,43499
|
|
217
|
+
bpy/ops/image/__init__.pyi,sha256=NyIJd2712utUpp3yvYIwnld0-JEDvGezBiizueqWJgA,57158
|
|
218
|
+
bpy/ops/import_anim/__init__.pyi,sha256=qE-7vFBqrPotlOmnLDQOyYOSl4WLRKaPCPcCrYMaTsM,3077
|
|
219
|
+
bpy/ops/import_curve/__init__.pyi,sha256=rr7nXkdLDU458TbnqtuKl_gLH1PE8_SPhJLlvFeIdXQ,780
|
|
220
|
+
bpy/ops/import_scene/__init__.pyi,sha256=udxbhrNGZiq5VZG6kUtyiJIx5Wc8POcVBwmTf_Re3H4,9748
|
|
221
|
+
bpy/ops/info/__init__.pyi,sha256=kqpkAcJewdtxxs_cxaOE6k1u_rp-Y11Wf0CJSQ0iERQ,4312
|
|
222
|
+
bpy/ops/lattice/__init__.pyi,sha256=k4gS_vNCXdC3P6zarKWFx4_eiEX9bjD0pIlDtqxqDgw,4753
|
|
223
|
+
bpy/ops/marker/__init__.pyi,sha256=eH5DbhMm-zAtgspVzzptawEHRPB4VqAQdao7TM4Iv8s,7369
|
|
224
|
+
bpy/ops/mask/__init__.pyi,sha256=qjoiuKLI2AcbHo9IZOi7R78TI2tLwBt_64rR3I-fbb8,22684
|
|
224
225
|
bpy/ops/material/__init__.pyi,sha256=diY67Y7yjs_KAaw4opetqSpq3X0_UUxfFrB765qDu9s,1282
|
|
225
|
-
bpy/ops/mball/__init__.pyi,sha256=
|
|
226
|
-
bpy/ops/mesh/__init__.pyi,sha256=
|
|
227
|
-
bpy/ops/nla/__init__.pyi,sha256=
|
|
228
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
229
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
230
|
-
bpy/ops/outliner/__init__.pyi,sha256=
|
|
231
|
-
bpy/ops/paint/__init__.pyi,sha256=
|
|
232
|
-
bpy/ops/paintcurve/__init__.pyi,sha256=
|
|
233
|
-
bpy/ops/palette/__init__.pyi,sha256=
|
|
234
|
-
bpy/ops/particle/__init__.pyi,sha256=
|
|
235
|
-
bpy/ops/pose/__init__.pyi,sha256=
|
|
236
|
-
bpy/ops/poselib/__init__.pyi,sha256=
|
|
237
|
-
bpy/ops/preferences/__init__.pyi,sha256=
|
|
238
|
-
bpy/ops/ptcache/__init__.pyi,sha256=
|
|
239
|
-
bpy/ops/render/__init__.pyi,sha256=
|
|
240
|
-
bpy/ops/rigidbody/__init__.pyi,sha256=
|
|
241
|
-
bpy/ops/scene/__init__.pyi,sha256=
|
|
242
|
-
bpy/ops/screen/__init__.pyi,sha256=
|
|
243
|
-
bpy/ops/script/__init__.pyi,sha256=
|
|
244
|
-
bpy/ops/sculpt/__init__.pyi,sha256=
|
|
245
|
-
bpy/ops/sculpt_curves/__init__.pyi,sha256=
|
|
246
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
247
|
-
bpy/ops/sound/__init__.pyi,sha256=
|
|
248
|
-
bpy/ops/spreadsheet/__init__.pyi,sha256=
|
|
249
|
-
bpy/ops/surface/__init__.pyi,sha256=
|
|
250
|
-
bpy/ops/text/__init__.pyi,sha256=
|
|
251
|
-
bpy/ops/text_editor/__init__.pyi,sha256=
|
|
252
|
-
bpy/ops/texture/__init__.pyi,sha256=
|
|
253
|
-
bpy/ops/transform/__init__.pyi,sha256=
|
|
254
|
-
bpy/ops/ui/__init__.pyi,sha256=
|
|
255
|
-
bpy/ops/uilist/__init__.pyi,sha256=
|
|
256
|
-
bpy/ops/uv/__init__.pyi,sha256=
|
|
257
|
-
bpy/ops/view2d/__init__.pyi,sha256=
|
|
258
|
-
bpy/ops/view3d/__init__.pyi,sha256=
|
|
259
|
-
bpy/ops/wm/__init__.pyi,sha256
|
|
260
|
-
bpy/ops/workspace/__init__.pyi,sha256=
|
|
226
|
+
bpy/ops/mball/__init__.pyi,sha256=5sEckOoSOtp5wVgm5Ku3AFqLsalbakKnQRb_nw2CIPQ,5363
|
|
227
|
+
bpy/ops/mesh/__init__.pyi,sha256=vAwZG4If8_HcI2itSsuwWUI6d6DQsSD-9N_IY4qve7Q,152717
|
|
228
|
+
bpy/ops/nla/__init__.pyi,sha256=a4vYr0QhDT_RT4IZ3Sx_rGwT9I_EatjT5MJVHDxr5Zc,24830
|
|
229
|
+
bpy/ops/node/__init__.pyi,sha256=FhYSReHCJveNo_d8_GA_YfjVS37vng523shkfymjQsY,63516
|
|
230
|
+
bpy/ops/object/__init__.pyi,sha256=qCRfDeCf0O8dWcOeknubOqd5eDi3ZGfIkdxuhdhNM_E,203441
|
|
231
|
+
bpy/ops/outliner/__init__.pyi,sha256=n8Q6GW-wxi-6qdR8xQnUbDkAdHyHMOEvAOO1CEivVNY,38083
|
|
232
|
+
bpy/ops/paint/__init__.pyi,sha256=azTMmc_XSgiU96ZYbnBbIbXqEs4R69qMiJbSDnw3nCA,42498
|
|
233
|
+
bpy/ops/paintcurve/__init__.pyi,sha256=Eat1jYEzC-3BlQKziEuG5bNxkH0H-FnoGgWudgtjP3s,4429
|
|
234
|
+
bpy/ops/palette/__init__.pyi,sha256=u9tZ8XDsvYDat6saVOnYamMZE2DmoA8wVy2Xrhe4hxc,3242
|
|
235
|
+
bpy/ops/particle/__init__.pyi,sha256=KM0jEarxDnf3hX3rRpd1Z1_kdK2HqAr1tL73gg_k10Q,19311
|
|
236
|
+
bpy/ops/pose/__init__.pyi,sha256=mqsVKeA9KkA-jkRH7vPGBN3c2N26KaxkETTsUFjCq6I,28487
|
|
237
|
+
bpy/ops/poselib/__init__.pyi,sha256=vCPnvumEaXz4Y1auI84M3LZlxwkn6QxrEySLN-WCAdM,5601
|
|
238
|
+
bpy/ops/preferences/__init__.pyi,sha256=Q4EqyrifunlMxmT7eboiEHM3w0zk-E-tpd3UnJKXWLk,27564
|
|
239
|
+
bpy/ops/ptcache/__init__.pyi,sha256=JgTQWCVZKGU5AwjolNF3_KTqCxHZEwsUvTPhGGeRHE8,2994
|
|
240
|
+
bpy/ops/render/__init__.pyi,sha256=3OknEVEx8r7M8xgFl8WRv-3SOhNW6uWnoqarfOFF_AE,9453
|
|
241
|
+
bpy/ops/rigidbody/__init__.pyi,sha256=wgV7Jq0sgSQn-qC57e6wuYu17QcxXwU8oXRjo_YP3fA,8151
|
|
242
|
+
bpy/ops/scene/__init__.pyi,sha256=MXrToYykNwB1vSYnQmqJXF0swzvECvYj37f58n4Yf4E,20602
|
|
243
|
+
bpy/ops/screen/__init__.pyi,sha256=lHXSgaSB6oKByehgZBduXe6Nv8DmiotYu2h-tpay9Jw,26934
|
|
244
|
+
bpy/ops/script/__init__.pyi,sha256=Yg2WRKkTvzrpBiCcy77SDfkuY7Qxq6uBD0lEo9mkFhs,1633
|
|
245
|
+
bpy/ops/sculpt/__init__.pyi,sha256=6G3pfnLtn3NN3vUvZbAh7WMsoe46RJSbwQ9vqZtJRS4,41813
|
|
246
|
+
bpy/ops/sculpt_curves/__init__.pyi,sha256=ufQg_opTgwY0g59Yy2oh2auXl11OLg3TzLr4YCmADxY,3338
|
|
247
|
+
bpy/ops/sequencer/__init__.pyi,sha256=tdZ9eaMVrchlcB7g4TFOHMJWgjpVj9lsKT9zc6xoiUk,86109
|
|
248
|
+
bpy/ops/sound/__init__.pyi,sha256=RzKMg9NWcSY0tKfGuLdc0iK3FP7Xg0hDbJBFenCgHEs,18135
|
|
249
|
+
bpy/ops/spreadsheet/__init__.pyi,sha256=K3hbJEewWyK4jNSUm1DWZIM5DBoFmfc1Q_MeyS95ac8,2149
|
|
250
|
+
bpy/ops/surface/__init__.pyi,sha256=cBp80x-0GCPLMifyLn6O4loLq0ratuCkXd0XvKm1HqI,9327
|
|
251
|
+
bpy/ops/text/__init__.pyi,sha256=wTzVdzPF2Yjk_flVUopagH5yVXEJ5tadjo5OStOOLGM,27491
|
|
252
|
+
bpy/ops/text_editor/__init__.pyi,sha256=h8yZOrLbJVOTq9k-wSMpG20pPQiz-B7FC1xkVvYl6CA,956
|
|
253
|
+
bpy/ops/texture/__init__.pyi,sha256=JjIpi9tLETxA0-4uSqabElbhw762r3aQKl6ssPJlWus,1765
|
|
254
|
+
bpy/ops/transform/__init__.pyi,sha256=YIEHORQxBbqip5t85NRqAjDaMGMfIC8IPT0i8CuGHcE,60818
|
|
255
|
+
bpy/ops/ui/__init__.pyi,sha256=zXRTIQbBEHz4FpgylMZePvBJN_GxsQ2jOuvn5nNW5SI,17225
|
|
256
|
+
bpy/ops/uilist/__init__.pyi,sha256=9ytWQscNFgH5W2P_LkDd3a0cgwFYHuV1-hwDF93B0xo,2288
|
|
257
|
+
bpy/ops/uv/__init__.pyi,sha256=R9bIqvl8-WCE7Z8x509wIXIyxQdENKDWr4u653NuiwI,49976
|
|
258
|
+
bpy/ops/view2d/__init__.pyi,sha256=Usi9Cm-xlvMl7P5glqa3sSBzBOJMMGM1XRGd3xXDWY8,9859
|
|
259
|
+
bpy/ops/view3d/__init__.pyi,sha256=gf0IdzIjY8opBO-BfqpASKS5hnL1aUr5LChyRkI5vhA,41423
|
|
260
|
+
bpy/ops/wm/__init__.pyi,sha256=L0K3L_b2ww7no9mmAqhXRebuYH2ZTJ0hoglxeksOSbM,234089
|
|
261
|
+
bpy/ops/workspace/__init__.pyi,sha256=O3PaD_cD6Mv9UW0cELyVLGmEoeEeDUT5Jr0bAXoYy1o,3316
|
|
261
262
|
bpy/ops/world/__init__.pyi,sha256=oQBSfyuRh5kGomRoZELd3XHeYFnn1Q4yPobT9GfsefY,1032
|
|
262
|
-
bpy/path/__init__.pyi,sha256=
|
|
263
|
-
bpy/props/__init__.pyi,sha256=
|
|
264
|
-
bpy/types/__init__.pyi,sha256=
|
|
265
|
-
bpy/utils/__init__.pyi,sha256=
|
|
263
|
+
bpy/path/__init__.pyi,sha256=TCTgOnuXD7CqqQHMNY-w8MiKEKIMhNa7-tTsIiJXTIc,11515
|
|
264
|
+
bpy/props/__init__.pyi,sha256=9d0KIRbsOtE60Tpmccw4O73Rg0IXihFMB1d5fTvr_Y4,28852
|
|
265
|
+
bpy/types/__init__.pyi,sha256=B3pdVS60awP0kGurWUWht0PYeI9Ef3yl9AxOD_Axgic,5239348
|
|
266
|
+
bpy/utils/__init__.pyi,sha256=WGjbHKCv8J1WZ_QZKE0cwYin6usM2Ei-KcW9q6V4LZQ,17954
|
|
266
267
|
bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
|
|
267
268
|
bpy/utils/units/__init__.pyi,sha256=Mf5e9M8OwkE2zC-rs5CVV7NfobaI7LQkU0v7u-z9xwI,2655
|
|
268
269
|
bpy_extras/__init__.pyi,sha256=mSQGV3OnBDLrI9Bur-VUrKNXrE7dQbDDnQwb40kdi5I,862
|
|
269
270
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
270
|
-
bpy_extras/anim_utils/__init__.pyi,sha256=
|
|
271
|
+
bpy_extras/anim_utils/__init__.pyi,sha256=Pb5RVTJOzWISrzotW51h2Ay62nm8r-E_SGbea_3axRM,6019
|
|
271
272
|
bpy_extras/asset_utils/__init__.pyi,sha256=N77-s-Zxsx0un4ltucalnLMJU21CcDWG_vqcVGkUDwI,955
|
|
272
273
|
bpy_extras/bmesh_utils/__init__.pyi,sha256=pBU1N3HAuF8SQHYbl2a2vdb04cyJy7exwJe9_j9xdyA,533
|
|
273
274
|
bpy_extras/extensions/__init__.pyi,sha256=7X21tOIZzQFyf4jd_v40SOkYEgKUteHyjAKBkaErywU,160
|
|
@@ -280,7 +281,7 @@ bpy_extras/mesh_utils/__init__.pyi,sha256=hwDtuy8c0IMx7iCwigLdOeYgKKJTQQ_MXasLRG
|
|
|
280
281
|
bpy_extras/node_shader_utils/__init__.pyi,sha256=Pbi9HZ9hyWArfAuG0vbRjciQslKIkn6gmfGNvuDO53E,6084
|
|
281
282
|
bpy_extras/node_utils/__init__.pyi,sha256=PSP_0PoJ5bVt-0YNw8uu5Jh1NPwYCRJ2fWB9Qffw2JM,753
|
|
282
283
|
bpy_extras/object_utils/__init__.pyi,sha256=6DlYs4gl5p8Xootyif7_LV7xCpWJfSu-vTV2GtcHRRk,6448
|
|
283
|
-
bpy_extras/view3d_utils/__init__.pyi,sha256=
|
|
284
|
+
bpy_extras/view3d_utils/__init__.pyi,sha256=7_IGJ5UypAL7x2RdNhbzKDWvNnDQ5lNCa6EQwVpnkM4,6868
|
|
284
285
|
bpy_extras/wm_utils/__init__.pyi,sha256=VjSQe0yOFAlAFGjt5HhvfGBLvSr9tcSpQBiGPRng2dc,160
|
|
285
286
|
bpy_extras/wm_utils/progress_report/__init__.pyi,sha256=070Ss6tSU9TOgVBKpGsxtwLhp5Lstj4MV5zieg-p5n8,1872
|
|
286
287
|
bpy_restrict_state/__init__.pyi,sha256=KAQcdXls9YQGe8u3VyrnC7YNoXgg9kidzvZnYG7bpEA,307
|
|
@@ -309,11 +310,11 @@ gpu/select/__init__.pyi,sha256=V5-adTC_Tbh3vWMPQJ0sxYCfL52niDmwx5s_LpyG7vE,284
|
|
|
309
310
|
gpu/shader/__init__.pyi,sha256=MQzDvV_CWZcy8jRS0ABFKaBk9pSCkedgVYH2QGy8Qx8,2102
|
|
310
311
|
gpu/state/__init__.pyi,sha256=6Dtc3vf9O31yblw-Ok9eInMWTABZMMqJvLJq7gvGlAM,4534
|
|
311
312
|
gpu/texture/__init__.pyi,sha256=c5A7PiYqQcUMgtzVoD9dmFY8oaZPqeWDkajaJ0poe7Q,718
|
|
312
|
-
gpu/types/__init__.pyi,sha256=
|
|
313
|
+
gpu/types/__init__.pyi,sha256=N87m69bJKgeJwf4hIrEmB8UrnAfCPFiuJj1TvJpH3Qo,27360
|
|
313
314
|
gpu_extras/__init__.pyi,sha256=txr5heejqCgJPJ2WFGNJ7_o9k_npFLrxLMus8XDW_t4,261
|
|
314
315
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
315
|
-
gpu_extras/batch/__init__.pyi,sha256=
|
|
316
|
-
gpu_extras/presets/__init__.pyi,sha256=
|
|
316
|
+
gpu_extras/batch/__init__.pyi,sha256=DtRbEiiuiGRMtFPTktmS_CNQrxQ0zWHPjIZ4LrtrDn0,738
|
|
317
|
+
gpu_extras/presets/__init__.pyi,sha256=0859tcRCVpODwWlD8bPwt47sSvy8xjheg7qrudbbd5M,1476
|
|
317
318
|
graphviz_export/__init__.pyi,sha256=3haoS7nfDbpbYtgPWQ2QAvHLVdSFv5GHDZ-f39zABlg,283
|
|
318
319
|
graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
319
320
|
idprop/__init__.pyi,sha256=6ItabO7iF7Q07EdD6ZW1N3mczKKiCNXS8haamCdUbHk,150
|
|
@@ -347,7 +348,7 @@ rna_xml/__init__.pyi,sha256=H-iSwO57zZ_piTZymDIp-ryuojWhwRoX_CT10iAI3rk,602
|
|
|
347
348
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
348
349
|
sys_info/__init__.pyi,sha256=9MR_HOycufd8IKZQf-QDqUqE8Aj1D8n_Pfvi9wEKtvo,164
|
|
349
350
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
350
|
-
fake_bpy_module-
|
|
351
|
-
fake_bpy_module-
|
|
352
|
-
fake_bpy_module-
|
|
353
|
-
fake_bpy_module-
|
|
351
|
+
fake_bpy_module-20240528.dist-info/METADATA,sha256=SrAkVyfQ7yZrlwFb4AE0jwNtlDJy_SjyY7hwl0oCJcA,7109
|
|
352
|
+
fake_bpy_module-20240528.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
353
|
+
fake_bpy_module-20240528.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
354
|
+
fake_bpy_module-20240528.dist-info/RECORD,,
|
gpu/types/__init__.pyi
CHANGED
|
@@ -25,7 +25,7 @@ class GPUBatch:
|
|
|
25
25
|
...
|
|
26
26
|
|
|
27
27
|
def draw_instanced(
|
|
28
|
-
self, program: GPUShader, instance_start: int = 0, instance_count: int = 0
|
|
28
|
+
self, program: GPUShader, *, instance_start: int = 0, instance_count: int = 0
|
|
29
29
|
):
|
|
30
30
|
"""Draw multiple instances of the drawing program with the parameters assigned
|
|
31
31
|
to the batch. In the vertex shader, gl_InstanceID will contain the instance
|
|
@@ -42,7 +42,9 @@ class GPUBatch:
|
|
|
42
42
|
"""
|
|
43
43
|
...
|
|
44
44
|
|
|
45
|
-
def draw_range(
|
|
45
|
+
def draw_range(
|
|
46
|
+
self, program: GPUShader, *, elem_start: int = 0, elem_count: int = 0
|
|
47
|
+
):
|
|
46
48
|
"""Run the drawing program with the parameters assigned to the batch. Only draw
|
|
47
49
|
the elem_count elements of the index buffer starting at elem_start
|
|
48
50
|
|
gpu_extras/batch/__init__.pyi
CHANGED
|
@@ -6,7 +6,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
6
6
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
7
7
|
|
|
8
8
|
def batch_for_shader(
|
|
9
|
-
shader: gpu.types.GPUShader, type: str, content: dict, indices=None
|
|
9
|
+
shader: gpu.types.GPUShader, type: str, content: dict, *, indices=None
|
|
10
10
|
) -> gpu.types.GPUBatch:
|
|
11
11
|
"""Return a batch already configured and compatible with the shader.
|
|
12
12
|
|
gpu_extras/presets/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def draw_circle_2d(
|
|
10
|
-
position: mathutils.Vector, color, radius: float, segments: int | None = None
|
|
10
|
+
position: mathutils.Vector, color, radius: float, *, segments: int | None = None
|
|
11
11
|
):
|
|
12
12
|
"""Draw a circle.
|
|
13
13
|
|
|
File without changes
|
|
File without changes
|