fake-bpy-module 20240522__py3-none-any.whl → 20240524__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.

@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
7
7
  GenericType2 = typing.TypeVar("GenericType2")
8
8
 
9
9
  class WORLD_OT_convert_volume_to_mesh(bpy_types.Operator):
10
- """Convert the volume of a world to a mesh.The world's volume used to be rendered by EEVEE Legacy. Conversion is needed for it to render properly"""
10
+ """Convert the volume of a world to a mesh. The world's volume used to be rendered by EEVEE Legacy. Conversion is needed for it to render properly"""
11
11
 
12
12
  bl_idname: typing.Any
13
13
  bl_label: typing.Any
@@ -2111,6 +2111,290 @@ class OBJECT_MT_modifier_add_generate(
2111
2111
  """
2112
2112
  ...
2113
2113
 
2114
+ class OBJECT_MT_modifier_add_normals(
2115
+ bpy_types.Menu, ModifierAddMenu, bpy_types._GenericUI
2116
+ ):
2117
+ MODIFIER_TYPES_I18N_CONTEXT: typing.Any
2118
+ MODIFIER_TYPES_TO_ICONS: typing.Any
2119
+ MODIFIER_TYPES_TO_LABELS: typing.Any
2120
+ bl_label: typing.Any
2121
+ bl_options: typing.Any
2122
+ bl_rna: typing.Any
2123
+ id_data: typing.Any
2124
+
2125
+ def append(self, draw_func):
2126
+ """Append a draw function to this menu,
2127
+ takes the same arguments as the menus draw function
2128
+
2129
+ :param draw_func:
2130
+ """
2131
+ ...
2132
+
2133
+ def as_pointer(self) -> int:
2134
+ """Returns the memory address which holds a pointer to Blender's internal data
2135
+
2136
+ :return: int (memory address).
2137
+ :rtype: int
2138
+ """
2139
+ ...
2140
+
2141
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
2142
+ """
2143
+
2144
+ :return: The RNA type or default when not found.
2145
+ :rtype: bpy.types.Struct
2146
+ """
2147
+ ...
2148
+
2149
+ def bl_rna_get_subclass_py(self) -> typing.Any:
2150
+ """
2151
+
2152
+ :return: The class or default when not found.
2153
+ :rtype: typing.Any
2154
+ """
2155
+ ...
2156
+
2157
+ def draw(self, context):
2158
+ """
2159
+
2160
+ :param context:
2161
+ """
2162
+ ...
2163
+
2164
+ def draw_collapsible(self, context, layout):
2165
+ """
2166
+
2167
+ :param context:
2168
+ :param layout:
2169
+ """
2170
+ ...
2171
+
2172
+ def draw_preset(self, _context):
2173
+ """Define these on the subclass:
2174
+ - preset_operator (string)
2175
+ - preset_subdir (string)Optionally:
2176
+ - preset_add_operator (string)
2177
+ - preset_extensions (set of strings)
2178
+ - preset_operator_defaults (dict of keyword args)
2179
+
2180
+ :param _context:
2181
+ """
2182
+ ...
2183
+
2184
+ def driver_add(self) -> bpy.types.FCurve:
2185
+ """Adds driver(s) to the given property
2186
+
2187
+ :return: The driver(s) added.
2188
+ :rtype: bpy.types.FCurve
2189
+ """
2190
+ ...
2191
+
2192
+ def driver_remove(self) -> bool:
2193
+ """Remove driver(s) from the given property
2194
+
2195
+ :return: Success of driver removal.
2196
+ :rtype: bool
2197
+ """
2198
+ ...
2199
+
2200
+ def get(self):
2201
+ """Returns the value of the custom property assigned to key or default
2202
+ when not found (matches Python's dictionary function of the same name).
2203
+
2204
+ """
2205
+ ...
2206
+
2207
+ def id_properties_clear(self):
2208
+ """
2209
+
2210
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
2211
+ """
2212
+ ...
2213
+
2214
+ def id_properties_ensure(self):
2215
+ """
2216
+
2217
+ :return: the parent group for an RNA struct's custom IDProperties.
2218
+ """
2219
+ ...
2220
+
2221
+ def id_properties_ui(self):
2222
+ """
2223
+
2224
+ :return: Return an object used to manage an IDProperty's UI data.
2225
+ """
2226
+ ...
2227
+
2228
+ def is_extended(self): ...
2229
+ def is_property_hidden(self) -> bool:
2230
+ """Check if a property is hidden.
2231
+
2232
+ :return: True when the property is hidden.
2233
+ :rtype: bool
2234
+ """
2235
+ ...
2236
+
2237
+ def is_property_overridable_library(self) -> bool:
2238
+ """Check if a property is overridable.
2239
+
2240
+ :return: True when the property is overridable.
2241
+ :rtype: bool
2242
+ """
2243
+ ...
2244
+
2245
+ def is_property_readonly(self) -> bool:
2246
+ """Check if a property is readonly.
2247
+
2248
+ :return: True when the property is readonly (not writable).
2249
+ :rtype: bool
2250
+ """
2251
+ ...
2252
+
2253
+ def is_property_set(self) -> bool:
2254
+ """Check if a property is set, use for testing operator properties.
2255
+
2256
+ :return: True when the property has been set.
2257
+ :rtype: bool
2258
+ """
2259
+ ...
2260
+
2261
+ def items(self):
2262
+ """Returns the items of this objects custom properties (matches Python's
2263
+ dictionary function of the same name).
2264
+
2265
+ :return: custom property key, value pairs.
2266
+ """
2267
+ ...
2268
+
2269
+ def keyframe_delete(self) -> bool:
2270
+ """Remove a keyframe from this properties fcurve.
2271
+
2272
+ :return: Success of keyframe deletion.
2273
+ :rtype: bool
2274
+ """
2275
+ ...
2276
+
2277
+ def keyframe_insert(self) -> bool:
2278
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
2279
+
2280
+ :return: Success of keyframe insertion.
2281
+ :rtype: bool
2282
+ """
2283
+ ...
2284
+
2285
+ def keys(self):
2286
+ """Returns the keys of this objects custom properties (matches Python's
2287
+ dictionary function of the same name).
2288
+
2289
+ :return: custom property keys.
2290
+ """
2291
+ ...
2292
+
2293
+ def operator_modifier_add(self, layout, mod_type):
2294
+ """
2295
+
2296
+ :param layout:
2297
+ :param mod_type:
2298
+ """
2299
+ ...
2300
+
2301
+ def path_from_id(self) -> str:
2302
+ """Returns the data path from the ID to this object (string).
2303
+
2304
+ :return: The path from `bpy.types.bpy_struct.id_data`
2305
+ to this struct and property (when given).
2306
+ :rtype: str
2307
+ """
2308
+ ...
2309
+
2310
+ def path_menu(
2311
+ self,
2312
+ searchpaths: list[str],
2313
+ operator: str,
2314
+ props_default: dict = None,
2315
+ prop_filepath: str = "filepath",
2316
+ filter_ext: typing.Callable = None,
2317
+ filter_path=None,
2318
+ display_name: typing.Callable = None,
2319
+ add_operator=None,
2320
+ add_operator_props=None,
2321
+ ):
2322
+ """Populate a menu from a list of paths.
2323
+
2324
+ :param searchpaths: Paths to scan.
2325
+ :type searchpaths: list[str]
2326
+ :param operator: The operator id to use with each file.
2327
+ :type operator: str
2328
+ :param props_default: Properties to assign to each operator.
2329
+ :type props_default: dict
2330
+ :param prop_filepath: Optional operator filepath property (defaults to "filepath").
2331
+ :type prop_filepath: str
2332
+ :param filter_ext: Optional callback that takes the file extensions.
2333
+
2334
+ Returning false excludes the file from the list.
2335
+ :type filter_ext: typing.Callable
2336
+ :param filter_path:
2337
+ :param display_name: Optional callback that takes the full path, returns the name to display.
2338
+ :type display_name: typing.Callable
2339
+ :param add_operator:
2340
+ :param add_operator_props:
2341
+ """
2342
+ ...
2343
+
2344
+ def path_resolve(self):
2345
+ """Returns the property from the path, raise an exception when not found."""
2346
+ ...
2347
+
2348
+ def pop(self):
2349
+ """Remove and return the value of the custom property assigned to key or default
2350
+ when not found (matches Python's dictionary function of the same name).
2351
+
2352
+ """
2353
+ ...
2354
+
2355
+ def prepend(self, draw_func):
2356
+ """Prepend a draw function to this menu, takes the same arguments as
2357
+ the menus draw function
2358
+
2359
+ :param draw_func:
2360
+ """
2361
+ ...
2362
+
2363
+ def property_overridable_library_set(self) -> bool:
2364
+ """Define a property as overridable or not (only for custom properties!).
2365
+
2366
+ :return: True when the overridable status of the property was successfully set.
2367
+ :rtype: bool
2368
+ """
2369
+ ...
2370
+
2371
+ def property_unset(self):
2372
+ """Unset a property, will use default value afterward."""
2373
+ ...
2374
+
2375
+ def remove(self, draw_func):
2376
+ """Remove a draw function that has been added to this menu
2377
+
2378
+ :param draw_func:
2379
+ """
2380
+ ...
2381
+
2382
+ def type_recast(self):
2383
+ """Return a new instance, this is needed because types
2384
+ such as textures can be changed at runtime.
2385
+
2386
+ :return: a new instance of this object with the type initialized again.
2387
+ """
2388
+ ...
2389
+
2390
+ def values(self):
2391
+ """Returns the values of this objects custom properties (matches Python's
2392
+ dictionary function of the same name).
2393
+
2394
+ :return: custom property values.
2395
+ """
2396
+ ...
2397
+
2114
2398
  class OBJECT_MT_modifier_add_physics(
2115
2399
  bpy_types.Menu, ModifierAddMenu, bpy_types._GenericUI
2116
2400
  ):
@@ -869,8 +869,10 @@ class _defs_sequencer_generic:
869
869
  translate: typing.Any
870
870
 
871
871
  class _defs_sequencer_select:
872
- box: typing.Any
873
- select: typing.Any
872
+ box_preview: typing.Any
873
+ box_timeline: typing.Any
874
+ select_preview: typing.Any
875
+ select_timeline: typing.Any
874
876
 
875
877
  class _defs_texture_paint:
876
878
  def generate_from_brushes(self, context):
@@ -15981,6 +15981,239 @@ class USERPREF_PT_system_memory(
15981
15981
  """
15982
15982
  ...
15983
15983
 
15984
+ class USERPREF_PT_system_network(
15985
+ bpy_types.Panel, SystemPanel, CenterAlignMixIn, bpy_types._GenericUI
15986
+ ):
15987
+ """Base class for panels to center align contents with some horizontal margin.
15988
+ Deriving classes need to implement a draw_centered(context, layout) function.
15989
+ """
15990
+
15991
+ bl_context: typing.Any
15992
+ bl_label: typing.Any
15993
+ bl_region_type: typing.Any
15994
+ bl_rna: typing.Any
15995
+ bl_space_type: typing.Any
15996
+ id_data: typing.Any
15997
+
15998
+ def append(self, draw_func):
15999
+ """Append a draw function to this menu,
16000
+ takes the same arguments as the menus draw function
16001
+
16002
+ :param draw_func:
16003
+ """
16004
+ ...
16005
+
16006
+ def as_pointer(self) -> int:
16007
+ """Returns the memory address which holds a pointer to Blender's internal data
16008
+
16009
+ :return: int (memory address).
16010
+ :rtype: int
16011
+ """
16012
+ ...
16013
+
16014
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
16015
+ """
16016
+
16017
+ :return: The RNA type or default when not found.
16018
+ :rtype: bpy.types.Struct
16019
+ """
16020
+ ...
16021
+
16022
+ def bl_rna_get_subclass_py(self) -> typing.Any:
16023
+ """
16024
+
16025
+ :return: The class or default when not found.
16026
+ :rtype: typing.Any
16027
+ """
16028
+ ...
16029
+
16030
+ def draw(self, context):
16031
+ """
16032
+
16033
+ :param context:
16034
+ """
16035
+ ...
16036
+
16037
+ def draw_centered(self, context, layout):
16038
+ """
16039
+
16040
+ :param context:
16041
+ :param layout:
16042
+ """
16043
+ ...
16044
+
16045
+ def driver_add(self) -> bpy.types.FCurve:
16046
+ """Adds driver(s) to the given property
16047
+
16048
+ :return: The driver(s) added.
16049
+ :rtype: bpy.types.FCurve
16050
+ """
16051
+ ...
16052
+
16053
+ def driver_remove(self) -> bool:
16054
+ """Remove driver(s) from the given property
16055
+
16056
+ :return: Success of driver removal.
16057
+ :rtype: bool
16058
+ """
16059
+ ...
16060
+
16061
+ def get(self):
16062
+ """Returns the value of the custom property assigned to key or default
16063
+ when not found (matches Python's dictionary function of the same name).
16064
+
16065
+ """
16066
+ ...
16067
+
16068
+ def id_properties_clear(self):
16069
+ """
16070
+
16071
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
16072
+ """
16073
+ ...
16074
+
16075
+ def id_properties_ensure(self):
16076
+ """
16077
+
16078
+ :return: the parent group for an RNA struct's custom IDProperties.
16079
+ """
16080
+ ...
16081
+
16082
+ def id_properties_ui(self):
16083
+ """
16084
+
16085
+ :return: Return an object used to manage an IDProperty's UI data.
16086
+ """
16087
+ ...
16088
+
16089
+ def is_extended(self): ...
16090
+ def is_property_hidden(self) -> bool:
16091
+ """Check if a property is hidden.
16092
+
16093
+ :return: True when the property is hidden.
16094
+ :rtype: bool
16095
+ """
16096
+ ...
16097
+
16098
+ def is_property_overridable_library(self) -> bool:
16099
+ """Check if a property is overridable.
16100
+
16101
+ :return: True when the property is overridable.
16102
+ :rtype: bool
16103
+ """
16104
+ ...
16105
+
16106
+ def is_property_readonly(self) -> bool:
16107
+ """Check if a property is readonly.
16108
+
16109
+ :return: True when the property is readonly (not writable).
16110
+ :rtype: bool
16111
+ """
16112
+ ...
16113
+
16114
+ def is_property_set(self) -> bool:
16115
+ """Check if a property is set, use for testing operator properties.
16116
+
16117
+ :return: True when the property has been set.
16118
+ :rtype: bool
16119
+ """
16120
+ ...
16121
+
16122
+ def items(self):
16123
+ """Returns the items of this objects custom properties (matches Python's
16124
+ dictionary function of the same name).
16125
+
16126
+ :return: custom property key, value pairs.
16127
+ """
16128
+ ...
16129
+
16130
+ def keyframe_delete(self) -> bool:
16131
+ """Remove a keyframe from this properties fcurve.
16132
+
16133
+ :return: Success of keyframe deletion.
16134
+ :rtype: bool
16135
+ """
16136
+ ...
16137
+
16138
+ def keyframe_insert(self) -> bool:
16139
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
16140
+
16141
+ :return: Success of keyframe insertion.
16142
+ :rtype: bool
16143
+ """
16144
+ ...
16145
+
16146
+ def keys(self):
16147
+ """Returns the keys of this objects custom properties (matches Python's
16148
+ dictionary function of the same name).
16149
+
16150
+ :return: custom property keys.
16151
+ """
16152
+ ...
16153
+
16154
+ def path_from_id(self) -> str:
16155
+ """Returns the data path from the ID to this object (string).
16156
+
16157
+ :return: The path from `bpy.types.bpy_struct.id_data`
16158
+ to this struct and property (when given).
16159
+ :rtype: str
16160
+ """
16161
+ ...
16162
+
16163
+ def path_resolve(self):
16164
+ """Returns the property from the path, raise an exception when not found."""
16165
+ ...
16166
+
16167
+ def pop(self):
16168
+ """Remove and return the value of the custom property assigned to key or default
16169
+ when not found (matches Python's dictionary function of the same name).
16170
+
16171
+ """
16172
+ ...
16173
+
16174
+ def prepend(self, draw_func):
16175
+ """Prepend a draw function to this menu, takes the same arguments as
16176
+ the menus draw function
16177
+
16178
+ :param draw_func:
16179
+ """
16180
+ ...
16181
+
16182
+ def property_overridable_library_set(self) -> bool:
16183
+ """Define a property as overridable or not (only for custom properties!).
16184
+
16185
+ :return: True when the overridable status of the property was successfully set.
16186
+ :rtype: bool
16187
+ """
16188
+ ...
16189
+
16190
+ def property_unset(self):
16191
+ """Unset a property, will use default value afterward."""
16192
+ ...
16193
+
16194
+ def remove(self, draw_func):
16195
+ """Remove a draw function that has been added to this menu
16196
+
16197
+ :param draw_func:
16198
+ """
16199
+ ...
16200
+
16201
+ def type_recast(self):
16202
+ """Return a new instance, this is needed because types
16203
+ such as textures can be changed at runtime.
16204
+
16205
+ :return: a new instance of this object with the type initialized again.
16206
+ """
16207
+ ...
16208
+
16209
+ def values(self):
16210
+ """Returns the values of this objects custom properties (matches Python's
16211
+ dictionary function of the same name).
16212
+
16213
+ :return: custom property values.
16214
+ """
16215
+ ...
16216
+
15984
16217
  class USERPREF_PT_system_os_settings(
15985
16218
  bpy_types.Panel, SystemPanel, CenterAlignMixIn, bpy_types._GenericUI
15986
16219
  ):
bpy/app/__init__.pyi CHANGED
@@ -204,6 +204,10 @@ oiio: typing.Any
204
204
  """ Constant value bpy.app.oiio(supported=True, version=(2, 5, 6), version_string=' 2, 5, 6')
205
205
  """
206
206
 
207
+ online_access: typing.Any
208
+ """ Boolean, true when internet access is allowed by Blender & 3rd party scripts (read-only)
209
+ """
210
+
207
211
  opensubdiv: typing.Any
208
212
  """ Constant value bpy.app.opensubdiv(supported=True, version=(3, 6, 0), version_string=' 3, 6, 0')
209
213
  """
@@ -249,6 +249,8 @@ def fill(
249
249
  execution_context: str | int | None = None,
250
250
  undo: bool | None = None,
251
251
  on_back: bool | typing.Any | None = False,
252
+ invert: bool | typing.Any | None = False,
253
+ precision: bool | typing.Any | None = False,
252
254
  ):
253
255
  """Fill with color the shape formed by strokes
254
256
 
@@ -257,6 +259,10 @@ def fill(
257
259
  :type undo: bool | None
258
260
  :param on_back: Draw on Back, Send new stroke to back
259
261
  :type on_back: bool | typing.Any | None
262
+ :param invert: Invert, Find boundary of unfilled instead of filled regions
263
+ :type invert: bool | typing.Any | None
264
+ :param precision: Precision, Use precision movement for extension lines
265
+ :type precision: bool | typing.Any | None
260
266
  """
261
267
 
262
268
  ...
@@ -54,6 +54,20 @@ def animdata_operation(
54
54
 
55
55
  ...
56
56
 
57
+ def clear_filter(
58
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
59
+ execution_context: str | int | None = None,
60
+ undo: bool | None = None,
61
+ ):
62
+ """Clear the search filter
63
+
64
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
65
+ :type execution_context: str | int | None
66
+ :type undo: bool | None
67
+ """
68
+
69
+ ...
70
+
57
71
  def collection_color_tag_set(
58
72
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
59
73
  execution_context: str | int | None = None,
@@ -1213,6 +1227,20 @@ def show_one_level(
1213
1227
 
1214
1228
  ...
1215
1229
 
1230
+ def start_filter(
1231
+ override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1232
+ execution_context: str | int | None = None,
1233
+ undo: bool | None = None,
1234
+ ):
1235
+ """Start entering filter text
1236
+
1237
+ :type override_context: dict[str, typing.Any] | bpy.types.Context | None
1238
+ :type execution_context: str | int | None
1239
+ :type undo: bool | None
1240
+ """
1241
+
1242
+ ...
1243
+
1216
1244
  def unhide_all(
1217
1245
  override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
1218
1246
  execution_context: str | int | None = None,
@@ -339,6 +339,8 @@ def extension_repo_add(
339
339
  undo: bool | None = None,
340
340
  name: str | typing.Any = "",
341
341
  remote_url: str | typing.Any = "",
342
+ use_access_token: bool | typing.Any | None = False,
343
+ access_token: str | typing.Any = "",
342
344
  use_sync_on_startup: bool | typing.Any | None = False,
343
345
  use_custom_directory: bool | typing.Any | None = False,
344
346
  custom_directory: str | typing.Any = "",
@@ -353,6 +355,10 @@ def extension_repo_add(
353
355
  :type name: str | typing.Any
354
356
  :param remote_url: URL, Remote URL to the extension repository, the file-system may be referenced using the file URI scheme: "file://"
355
357
  :type remote_url: str | typing.Any
358
+ :param use_access_token: Requires Access Token, Repository requires an access token
359
+ :type use_access_token: bool | typing.Any | None
360
+ :param access_token: Secret, Personal access token, may be required by some repositories
361
+ :type access_token: str | typing.Any
356
362
  :param use_sync_on_startup: Check for Updates on Startup, Allow Blender to check for updates upon launch
357
363
  :type use_sync_on_startup: bool | typing.Any | None
358
364
  :param use_custom_directory: Custom Directory, Manually set the path for extensions to be stored. When disabled a user's extensions directory is created
@@ -337,7 +337,7 @@ def face_set_edit(
337
337
  active_face_set: typing.Any | None = 1,
338
338
  mode: str | None = "GROW",
339
339
  strength: typing.Any | None = 1.0,
340
- modify_hidden: bool | typing.Any | None = True,
340
+ modify_hidden: bool | typing.Any | None = False,
341
341
  ):
342
342
  """Edits the current active Face Set
343
343
 
@@ -10,7 +10,7 @@ def convert_volume_to_mesh(
10
10
  execution_context: str | int | None = None,
11
11
  undo: bool | None = None,
12
12
  ):
13
- """Convert the volume of a world to a mesh.
13
+ """Convert the volume of a world to a mesh. The world's volume used to be rendered by EEVEE Legacy. Conversion is needed for it to render properly
14
14
 
15
15
  :type override_context: dict[str, typing.Any] | bpy.types.Context | None
16
16
  :type execution_context: str | int | None
bpy/types/__init__.pyi CHANGED
@@ -32365,6 +32365,12 @@ object, placing it into a view layer, selecting it and making it active.
32365
32365
  * bpy.context.active_gpencil_frame
32366
32366
  * GreasePencilv3.layers
32367
32367
  * GreasePencilv3Layers.active_layer
32368
+ * GreasePencilv3Layers.move
32369
+ * GreasePencilv3Layers.move_bottom
32370
+ * GreasePencilv3Layers.move_to_layer_group
32371
+ * GreasePencilv3Layers.move_top
32372
+ * GreasePencilv3Layers.new
32373
+ * GreasePencilv3Layers.remove
32368
32374
 
32369
32375
  :columns: 2
32370
32376
 
@@ -57289,8 +57295,19 @@ of the scene and only show nodes of the renderer they are designed for.
57289
57295
 
57290
57296
  --------------------
57291
57297
 
57298
+ * GreasePencilLayer.parent_group
57292
57299
  * GreasePencilv3.layer_groups
57293
57300
  * GreasePencilv3LayerGroup.active_group
57301
+ * GreasePencilv3LayerGroup.move
57302
+ * GreasePencilv3LayerGroup.move_bottom
57303
+ * GreasePencilv3LayerGroup.move_to_layer_group
57304
+ * GreasePencilv3LayerGroup.move_to_layer_group
57305
+ * GreasePencilv3LayerGroup.move_top
57306
+ * GreasePencilv3LayerGroup.new
57307
+ * GreasePencilv3LayerGroup.new
57308
+ * GreasePencilv3LayerGroup.remove
57309
+ * GreasePencilv3Layers.move_to_layer_group
57310
+ * GreasePencilv3Layers.new
57294
57311
 
57295
57312
  :columns: 2
57296
57313
 
@@ -118059,12 +118076,40 @@ class GreasePencilLayer(bpy_struct):
118059
118076
  :type: bool
118060
118077
  """
118061
118078
 
118079
+ lock_frame: bool
118080
+ """ Lock current frame displayed by layer
118081
+
118082
+ :type: bool
118083
+ """
118084
+
118062
118085
  mask_layers: GreasePencilLayerMasks
118063
118086
  """ List of Masking Layers
118064
118087
 
118065
118088
  :type: GreasePencilLayerMasks
118066
118089
  """
118067
118090
 
118091
+ matrix_local: list[list[float]] | tuple[
118092
+ tuple[float, float, float, float],
118093
+ tuple[float, float, float, float],
118094
+ tuple[float, float, float, float],
118095
+ tuple[float, float, float, float],
118096
+ ] | mathutils.Matrix
118097
+ """ Local transformation matrix of the layer
118098
+
118099
+ :type: list[list[float]] | tuple[tuple[float, float, float, float], tuple[float, float, float, float], tuple[float, float, float, float], tuple[float, float, float, float]] | mathutils.Matrix
118100
+ """
118101
+
118102
+ matrix_parent_inverse: list[list[float]] | tuple[
118103
+ tuple[float, float, float, float],
118104
+ tuple[float, float, float, float],
118105
+ tuple[float, float, float, float],
118106
+ tuple[float, float, float, float],
118107
+ ] | mathutils.Matrix
118108
+ """ Inverse of layer's parent transformation matrix
118109
+
118110
+ :type: list[list[float]] | tuple[tuple[float, float, float, float], tuple[float, float, float, float], tuple[float, float, float, float], tuple[float, float, float, float]] | mathutils.Matrix
118111
+ """
118112
+
118068
118113
  name: str
118069
118114
  """ Layer name
118070
118115
 
@@ -118089,6 +118134,12 @@ class GreasePencilLayer(bpy_struct):
118089
118134
  :type: str
118090
118135
  """
118091
118136
 
118137
+ parent_group: GreasePencilLayerGroup
118138
+ """ The parent layer group this layer is part of
118139
+
118140
+ :type: GreasePencilLayerGroup
118141
+ """
118142
+
118092
118143
  pass_index: int
118093
118144
  """ Index number for the "Layer Index" pass
118094
118145
 
@@ -118107,6 +118158,12 @@ class GreasePencilLayer(bpy_struct):
118107
118158
  :type: list[float] | tuple[float, float, float] | mathutils.Vector
118108
118159
  """
118109
118160
 
118161
+ select: bool
118162
+ """ Layer is selected for editing in the Dope Sheet
118163
+
118164
+ :type: bool
118165
+ """
118166
+
118110
118167
  translation: list[float] | tuple[float, float, float] | mathutils.Vector
118111
118168
  """ Translation of the layer
118112
118169
 
@@ -118489,11 +118546,79 @@ class GreasePencilv3LayerGroup(bpy_struct, bpy_prop_collection[GreasePencilLayer
118489
118546
  """Collection of Grease Pencil layers"""
118490
118547
 
118491
118548
  active_group: typing.Optional[GreasePencilLayerGroup]
118492
- """ Active Grease Pencil layer
118549
+ """ Active Grease Pencil layer group
118493
118550
 
118494
118551
  :type: typing.Optional[GreasePencilLayerGroup]
118495
118552
  """
118496
118553
 
118554
+ def new(
118555
+ self, name: str | typing.Any, parent_group: GreasePencilLayerGroup | None = None
118556
+ ) -> GreasePencilLayerGroup:
118557
+ """Add a new Grease Pencil layer group
118558
+
118559
+ :param name: Name, Name of the layer group
118560
+ :type name: str | typing.Any
118561
+ :param parent_group: The parent layer group the new group will be created in (use None for the main stack)
118562
+ :type parent_group: GreasePencilLayerGroup | None
118563
+ :return: The newly created layer group
118564
+ :rtype: GreasePencilLayerGroup
118565
+ """
118566
+ ...
118567
+
118568
+ def remove(
118569
+ self,
118570
+ layer_group: GreasePencilLayerGroup,
118571
+ keep_children: bool | typing.Any | None = False,
118572
+ ):
118573
+ """Remove a new Grease Pencil layer group
118574
+
118575
+ :param layer_group: The layer group to remove
118576
+ :type layer_group: GreasePencilLayerGroup
118577
+ :param keep_children: Keep the children nodes of the group and only delete the group itself
118578
+ :type keep_children: bool | typing.Any | None
118579
+ """
118580
+ ...
118581
+
118582
+ def move(self, layer_group: GreasePencilLayerGroup, type: str | None):
118583
+ """Move a layer group in the parent layer group or main stack
118584
+
118585
+ :param layer_group: The layer group to move
118586
+ :type layer_group: GreasePencilLayerGroup
118587
+ :param type: Direction of movement
118588
+ :type type: str | None
118589
+ """
118590
+ ...
118591
+
118592
+ def move_top(self, layer_group: GreasePencilLayerGroup):
118593
+ """Move a layer group to the top of the parent layer group or main stack
118594
+
118595
+ :param layer_group: The layer group to move
118596
+ :type layer_group: GreasePencilLayerGroup
118597
+ """
118598
+ ...
118599
+
118600
+ def move_bottom(self, layer_group: GreasePencilLayerGroup):
118601
+ """Move a layer group to the bottom of the parent layer group or main stack
118602
+
118603
+ :param layer_group: The layer group to move
118604
+ :type layer_group: GreasePencilLayerGroup
118605
+ """
118606
+ ...
118607
+
118608
+ def move_to_layer_group(
118609
+ self,
118610
+ layer_group: GreasePencilLayerGroup,
118611
+ parent_group: GreasePencilLayerGroup | None,
118612
+ ):
118613
+ """Move a layer group into a parent layer group
118614
+
118615
+ :param layer_group: The layer group to move
118616
+ :type layer_group: GreasePencilLayerGroup
118617
+ :param parent_group: The parent layer group the layer group will be moved into (use None for the main stack)
118618
+ :type parent_group: GreasePencilLayerGroup | None
118619
+ """
118620
+ ...
118621
+
118497
118622
  @classmethod
118498
118623
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
118499
118624
  """
@@ -118527,6 +118652,71 @@ class GreasePencilv3Layers(bpy_struct, bpy_prop_collection[GreasePencilLayer]):
118527
118652
  :type: typing.Optional[GreasePencilLayer]
118528
118653
  """
118529
118654
 
118655
+ def new(
118656
+ self,
118657
+ name: str | typing.Any,
118658
+ set_active: bool | typing.Any | None = True,
118659
+ layer_group: GreasePencilLayerGroup | None = None,
118660
+ ) -> GreasePencilLayer:
118661
+ """Add a new Grease Pencil layer
118662
+
118663
+ :param name: Name, Name of the layer
118664
+ :type name: str | typing.Any
118665
+ :param set_active: Set Active, Set the newly created layer as the active layer
118666
+ :type set_active: bool | typing.Any | None
118667
+ :param layer_group: The layer group the new layer will be created in (use None for the main stack)
118668
+ :type layer_group: GreasePencilLayerGroup | None
118669
+ :return: The newly created layer
118670
+ :rtype: GreasePencilLayer
118671
+ """
118672
+ ...
118673
+
118674
+ def remove(self, layer: GreasePencilLayer):
118675
+ """Remove a Grease Pencil layer
118676
+
118677
+ :param layer: The layer to remove
118678
+ :type layer: GreasePencilLayer
118679
+ """
118680
+ ...
118681
+
118682
+ def move(self, layer: GreasePencilLayer, type: str | None):
118683
+ """Move a Grease Pencil layer in the layer group or main stack
118684
+
118685
+ :param layer: The layer to move
118686
+ :type layer: GreasePencilLayer
118687
+ :param type: Direction of movement
118688
+ :type type: str | None
118689
+ """
118690
+ ...
118691
+
118692
+ def move_top(self, layer: GreasePencilLayer):
118693
+ """Move a Grease Pencil layer to the top of the layer group or main stack
118694
+
118695
+ :param layer: The layer to move
118696
+ :type layer: GreasePencilLayer
118697
+ """
118698
+ ...
118699
+
118700
+ def move_bottom(self, layer: GreasePencilLayer):
118701
+ """Move a Grease Pencil layer to the bottom of the layer group or main stack
118702
+
118703
+ :param layer: The layer to move
118704
+ :type layer: GreasePencilLayer
118705
+ """
118706
+ ...
118707
+
118708
+ def move_to_layer_group(
118709
+ self, layer: GreasePencilLayer, layer_group: GreasePencilLayerGroup | None
118710
+ ):
118711
+ """Move a Grease Pencil layer into a layer group
118712
+
118713
+ :param layer: The layer to move
118714
+ :type layer: GreasePencilLayer
118715
+ :param layer_group: The layer group the layer will be moved into (use None for the main stack)
118716
+ :type layer_group: GreasePencilLayerGroup | None
118717
+ """
118718
+ ...
118719
+
118530
118720
  @classmethod
118531
118721
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
118532
118722
  """
@@ -133404,6 +133594,12 @@ class PreferencesSystem(bpy_struct):
133404
133594
  :type: bool
133405
133595
  """
133406
133596
 
133597
+ use_online_access: bool
133598
+ """ Allow internet access. Blender may access configured online extension repositories. Installed third party add-ons may access the internet for their own functionality
133599
+
133600
+ :type: bool
133601
+ """
133602
+
133407
133603
  use_overlay_smooth_wire: bool
133408
133604
  """ Enable overlay smooth wires, reducing aliasing
133409
133605
 
@@ -150132,6 +150328,12 @@ class UserAssetLibrary(bpy_struct):
150132
150328
  class UserExtensionRepo(bpy_struct):
150133
150329
  """Settings to define an extension repository"""
150134
150330
 
150331
+ access_token: str
150332
+ """ Personal access token, may be required by some repositories
150333
+
150334
+ :type: str
150335
+ """
150336
+
150135
150337
  custom_directory: str
150136
150338
  """ The local directory containing extensions
150137
150339
 
@@ -150168,6 +150370,12 @@ class UserExtensionRepo(bpy_struct):
150168
150370
  :type: str
150169
150371
  """
150170
150372
 
150373
+ use_access_token: bool
150374
+ """ Repository requires an access token
150375
+
150376
+ :type: bool
150377
+ """
150378
+
150171
150379
  use_cache: bool
150172
150380
  """ Downloaded package files are deleted after installation
150173
150381
 
@@ -180094,13 +180302,6 @@ class SurfaceModifier(Modifier, bpy_struct):
180094
180302
  class TriangulateModifier(Modifier, bpy_struct):
180095
180303
  """Triangulate Mesh"""
180096
180304
 
180097
- keep_custom_normals: bool
180098
- """ Try to preserve custom normals.
180099
- Warning: Depending on chosen triangulation method, shading may not be fully preserved, "Fixed" method usually gives the best result here
180100
-
180101
- :type: bool
180102
- """
180103
-
180104
180305
  min_vertices: int
180105
180306
  """ Triangulate only polygons with vertex count greater than or equal to this number
180106
180307
 
@@ -232753,6 +232954,8 @@ OBJECT_MT_modifier_add_edit: bl_ui.properties_data_modifier.OBJECT_MT_modifier_a
232753
232954
 
232754
232955
  OBJECT_MT_modifier_add_generate: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_generate
232755
232956
 
232957
+ OBJECT_MT_modifier_add_normals: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_normals
232958
+
232756
232959
  OBJECT_MT_modifier_add_physics: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_physics
232757
232960
 
232758
232961
  OBJECT_OT_assign_property_defaults: bl_operators.object.OBJECT_OT_assign_property_defaults
@@ -233919,6 +234122,8 @@ USERPREF_PT_system_cycles_devices: bl_ui.space_userpref.USERPREF_PT_system_cycle
233919
234122
 
233920
234123
  USERPREF_PT_system_memory: bl_ui.space_userpref.USERPREF_PT_system_memory
233921
234124
 
234125
+ USERPREF_PT_system_network: bl_ui.space_userpref.USERPREF_PT_system_network
234126
+
233922
234127
  USERPREF_PT_system_os_settings: bl_ui.space_userpref.USERPREF_PT_system_os_settings
233923
234128
 
233924
234129
  USERPREF_PT_system_sound: bl_ui.space_userpref.USERPREF_PT_system_sound
bpy_types/__init__.pyi CHANGED
@@ -590,7 +590,6 @@ class BoneCollection:
590
590
  ...
591
591
 
592
592
  class Node:
593
- bl_rna: typing.Any
594
593
  id_data: typing.Any
595
594
 
596
595
  def as_pointer(self) -> int:
@@ -693,13 +692,6 @@ class Node:
693
692
  """
694
693
  ...
695
694
 
696
- def is_registered_node_type(self):
697
- """Node.is_registered_node_type()
698
- True if a registered node type
699
-
700
- """
701
- ...
702
-
703
695
  def items(self):
704
696
  """Returns the items of this objects custom properties (matches Python's
705
697
  dictionary function of the same name).
@@ -2721,7 +2713,6 @@ class MeshPolygon:
2721
2713
  ...
2722
2714
 
2723
2715
  class NodeSocket:
2724
- bl_rna: typing.Any
2725
2716
  id_data: typing.Any
2726
2717
  links: typing.Any
2727
2718
 
@@ -4337,7 +4328,6 @@ class PoseBone(_GenericBone):
4337
4328
  ...
4338
4329
 
4339
4330
  class NodeInternal(Node):
4340
- bl_rna: typing.Any
4341
4331
  id_data: typing.Any
4342
4332
 
4343
4333
  def as_pointer(self) -> int:
@@ -4440,13 +4430,6 @@ class NodeInternal(Node):
4440
4430
  """
4441
4431
  ...
4442
4432
 
4443
- def is_registered_node_type(self):
4444
- """Node.is_registered_node_type()
4445
- True if a registered node type
4446
-
4447
- """
4448
- ...
4449
-
4450
4433
  def items(self):
4451
4434
  """Returns the items of this objects custom properties (matches Python's
4452
4435
  dictionary function of the same name).
@@ -5835,7 +5818,6 @@ class RNAMetaPropGroup(RNAMeta):
5835
5818
  ...
5836
5819
 
5837
5820
  class CompositorNode(NodeInternal, Node):
5838
- bl_rna: typing.Any
5839
5821
  id_data: typing.Any
5840
5822
 
5841
5823
  def as_pointer(self) -> int:
@@ -5938,13 +5920,6 @@ class CompositorNode(NodeInternal, Node):
5938
5920
  """
5939
5921
  ...
5940
5922
 
5941
- def is_registered_node_type(self):
5942
- """Node.is_registered_node_type()
5943
- True if a registered node type
5944
-
5945
- """
5946
- ...
5947
-
5948
5923
  def items(self):
5949
5924
  """Returns the items of this objects custom properties (matches Python's
5950
5925
  dictionary function of the same name).
@@ -6034,7 +6009,6 @@ class CompositorNode(NodeInternal, Node):
6034
6009
  ...
6035
6010
 
6036
6011
  class GeometryNode(NodeInternal, Node):
6037
- bl_rna: typing.Any
6038
6012
  id_data: typing.Any
6039
6013
 
6040
6014
  def as_pointer(self) -> int:
@@ -6137,13 +6111,6 @@ class GeometryNode(NodeInternal, Node):
6137
6111
  """
6138
6112
  ...
6139
6113
 
6140
- def is_registered_node_type(self):
6141
- """Node.is_registered_node_type()
6142
- True if a registered node type
6143
-
6144
- """
6145
- ...
6146
-
6147
6114
  def items(self):
6148
6115
  """Returns the items of this objects custom properties (matches Python's
6149
6116
  dictionary function of the same name).
@@ -6232,7 +6199,6 @@ class GeometryNode(NodeInternal, Node):
6232
6199
  ...
6233
6200
 
6234
6201
  class ShaderNode(NodeInternal, Node):
6235
- bl_rna: typing.Any
6236
6202
  id_data: typing.Any
6237
6203
 
6238
6204
  def as_pointer(self) -> int:
@@ -6335,13 +6301,6 @@ class ShaderNode(NodeInternal, Node):
6335
6301
  """
6336
6302
  ...
6337
6303
 
6338
- def is_registered_node_type(self):
6339
- """Node.is_registered_node_type()
6340
- True if a registered node type
6341
-
6342
- """
6343
- ...
6344
-
6345
6304
  def items(self):
6346
6305
  """Returns the items of this objects custom properties (matches Python's
6347
6306
  dictionary function of the same name).
@@ -6430,7 +6389,6 @@ class ShaderNode(NodeInternal, Node):
6430
6389
  ...
6431
6390
 
6432
6391
  class TextureNode(NodeInternal, Node):
6433
- bl_rna: typing.Any
6434
6392
  id_data: typing.Any
6435
6393
 
6436
6394
  def as_pointer(self) -> int:
@@ -6533,13 +6491,6 @@ class TextureNode(NodeInternal, Node):
6533
6491
  """
6534
6492
  ...
6535
6493
 
6536
- def is_registered_node_type(self):
6537
- """Node.is_registered_node_type()
6538
- True if a registered node type
6539
-
6540
- """
6541
- ...
6542
-
6543
6494
  def items(self):
6544
6495
  """Returns the items of this objects custom properties (matches Python's
6545
6496
  dictionary function of the same name).
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240522
3
+ Version: 20240524
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -71,7 +71,7 @@ bl_operators/uvcalc_transform/__init__.pyi,sha256=CbwgnUkyq48X8OGU6qsrzAWAw9Il0q
71
71
  bl_operators/vertexpaint_dirt/__init__.pyi,sha256=E0sI_J6oIOG7jWfLApMwVsqr7Tu3QW84-7cjVCV2ib8,5852
72
72
  bl_operators/view3d/__init__.pyi,sha256=ss9TSl6KFw-BCQbJgL-4X37XkRGFpK0o3eTBypkNkDo,38849
73
73
  bl_operators/wm/__init__.pyi,sha256=MgvypA6vX6TRgZxmdKFByX-HKkw8Tzti57vZEV7DJq0,256882
74
- bl_operators/world/__init__.pyi,sha256=J_TBaR5ai6uYt3evQ99SRHDmTTzWw8RV1VoT778m4Ts,5808
74
+ bl_operators/world/__init__.pyi,sha256=ja4FkQmlqUj7blB1eB3vDaa1a5d2dwCEQhhT0fVAWVE,5809
75
75
  bl_previews_utils/__init__.pyi,sha256=QCEV9HiZ_Nv-soA5ReC2_W1ogkROXmlTPuek5nQli4U,163
76
76
  bl_previews_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
77
  bl_previews_utils/bl_previews_render/__init__.pyi,sha256=aOVogQALl_H3Y1lJDVDKeEArDhR1JqtYIPLVX24Xim8,489
@@ -107,7 +107,7 @@ bl_ui/properties_data_light/__init__.pyi,sha256=EwsrcDlKiuFznnUSsnJAyd2sS1AfUPPI
107
107
  bl_ui/properties_data_lightprobe/__init__.pyi,sha256=CUsSgWQ_xHpFhBFYOhBNkr6sY2IJSPvH2W9y1ljAjEo,76321
108
108
  bl_ui/properties_data_mesh/__init__.pyi,sha256=rI19DYF_m5yferc0L1hpzobx0kEgErJu3gTkHsdWyS4,124657
109
109
  bl_ui/properties_data_metaball/__init__.pyi,sha256=BthfwDgRTIDFDr6m7GsXZ5fEw2_4mdoTnxcu3X4s-oU,29562
110
- bl_ui/properties_data_modifier/__init__.pyi,sha256=cAIg97K5Oj5hLMmuqk5OFfDSr5NUoJHJP8KJX-ZoOUk,64132
110
+ bl_ui/properties_data_modifier/__init__.pyi,sha256=mjahDrFGDFzSmy3Tv_pHiJjXot_aynGQCWtxXwLF8I0,71877
111
111
  bl_ui/properties_data_pointcloud/__init__.pyi,sha256=maOMSNU77OJaCHrTrokTC_jCbRYMsmJiKh6wfzoivmY,31761
112
112
  bl_ui/properties_data_shaderfx/__init__.pyi,sha256=X9ZS7LXcdA8d6rVc7L57XBDmJi-LGeWxrFEH0dpLF7o,5987
113
113
  bl_ui/properties_data_speaker/__init__.pyi,sha256=c0r1uXdDXcBM1YZ4i1_PqP1eT0EVj7H0D_eWIL0HGnA,29650
@@ -153,9 +153,9 @@ bl_ui/space_statusbar/__init__.pyi,sha256=q80IyLA7Sp54zgndJQJXwTCcEybOS3fHe8Zg1U
153
153
  bl_ui/space_text/__init__.pyi,sha256=fexTGNRvDYSx-MZ8pfeGRdnFtzuEDe-08a_FGMJpmfU,111768
154
154
  bl_ui/space_time/__init__.pyi,sha256=RzNnGNgCJBFcntdS6B_N8mRA1zRY68-DSh3F01uC63c,47810
155
155
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=4_lkUFwBtoZqh7hLHCnB3TTrNuUs0eNqG-P-5T1I1sY,5534
156
- bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=Y6an82iogIKbYOyuARJwNxCQs60b9hnLbwRTNylOcXs,20666
156
+ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=58Utj_NKIxdKfz2QueidBGEHqgAZymkf54EauxEwjvw,20743
157
157
  bl_ui/space_topbar/__init__.pyi,sha256=LvwzF5fH-bVgpQRFBmkJe-OnjTb5lYkB_igJsf6RMNM,181978
158
- bl_ui/space_userpref/__init__.pyi,sha256=yj72LaENIF1xe7qCJ46hF7tiW1MnB4sCYaqxOLMICrw,526366
158
+ bl_ui/space_userpref/__init__.pyi,sha256=_JvmmQz2xm_6Fu-GixBNaC_bz36OwfRf5zv1e6PRqCo,532372
159
159
  bl_ui/space_view3d/__init__.pyi,sha256=kYIXHZUsO3A5uuSlhnGy6Y8ZMbGHdXTpwaAM93FruxM,1866328
160
160
  bl_ui/space_view3d_toolbar/__init__.pyi,sha256=xzDDCwY9zbSCYD-mUk3p5DMbfsGp29HlERLquUrUwJs,598646
161
161
  bl_ui/temp_anim_layers/__init__.pyi,sha256=K2L2joXW9oCrHKbEX5ZsLUa3zABZ3NJ32YfJO_uwKSY,5947
@@ -176,7 +176,7 @@ bmesh/types/__init__.pyi,sha256=YnsGoCqfO7eJHZTAD-zGd6wTVy67wHnV80u2sY4tR5k,4008
176
176
  bmesh/utils/__init__.pyi,sha256=z4BFczG2gQpSRC_U5K7tm7bfgoC4Imfvu_zNbBxonGA,6145
177
177
  bpy/__init__.pyi,sha256=_aPxZG75j_LcawPviW9vM5kU2SSZvHl_1VmUWIfHPKE,472
178
178
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
- bpy/app/__init__.pyi,sha256=e2_ZjLbDSQy5401AR1JyISQJHID_q-4GOVTrzBHSVCg,7757
179
+ bpy/app/__init__.pyi,sha256=eMmQNjYx8PhgCG8VCXdUzzWq45gchgi925XFickqkLg,7881
180
180
  bpy/app/handlers/__init__.pyi,sha256=cRisbWZHogBMty6EbTxnZmSvucOyOMwFU_rFtCVPvw4,6182
181
181
  bpy/app/icons/__init__.pyi,sha256=S20lTJ7mFDgVfUSpMIT44yoBscukyO9022RlcBIw260,1079
182
182
  bpy/app/timers/__init__.pyi,sha256=DWJ6sQXDefx6wh1l20rBHcfcLDEoyfzBcbDxPLJxdHc,1798
@@ -212,7 +212,7 @@ bpy/ops/geometry/__init__.pyi,sha256=dQFPQHhsFeozrljXqgFmri42p68_Abmhpc7gFvkVbkg
212
212
  bpy/ops/gizmogroup/__init__.pyi,sha256=VX9VP4gLtmCkqheBqzIEvWDvCmNQTeqb0ElRxX7TUwA,1804
213
213
  bpy/ops/gpencil/__init__.pyi,sha256=TOIrr_69o00FSsJHoB01pI7SP7iCGAVr_7VWIexQ3HU,110017
214
214
  bpy/ops/graph/__init__.pyi,sha256=Tmt9hn51kCWaTU38rfwXGfqyc9sAeV774vAq-Q-NkOU,50817
215
- bpy/ops/grease_pencil/__init__.pyi,sha256=ATUBlysFIj-ru6gLBF_BB8qwxqO6iquueD9Q_SPVUss,42796
215
+ bpy/ops/grease_pencil/__init__.pyi,sha256=J6bl5KCKwpRv9OmuNRZIsa3kaA-xk7R4ZjxQIF78DEI,43135
216
216
  bpy/ops/image/__init__.pyi,sha256=KtopzEpZlRcIBJ1EA6tt2YjBwZLs7CmJ8K_4vgs0HjI,47372
217
217
  bpy/ops/import_anim/__init__.pyi,sha256=tYvFPJA2EALZaahTN98j7-HqUCaIPbWjtc9hSxYV8Mg,3070
218
218
  bpy/ops/import_curve/__init__.pyi,sha256=nhk7suARFpSKCYwC4nbfRx4hm3-vglOjNOXbZ_cx6bk,773
@@ -227,21 +227,21 @@ bpy/ops/mesh/__init__.pyi,sha256=c_9FlzSisET2c9B5GJcIjCDRAK25qwGW0Ys6mNVVN9w,151
227
227
  bpy/ops/nla/__init__.pyi,sha256=v058F7H1WYwudLls2_08YX0N9pYgro3tywYK92_EH1c,24690
228
228
  bpy/ops/node/__init__.pyi,sha256=p7Kvf2VYTWjSQcMM6nTkZOSs2Pv-qkTcW_fLApNk4Uc,63187
229
229
  bpy/ops/object/__init__.pyi,sha256=NoA9z0_JwwPrTaJ-8DrAbY4PT9mqLfS0yIHWp0wqLso,202223
230
- bpy/ops/outliner/__init__.pyi,sha256=vQklnUZnlLCFs6eiDwBccMBXA9WXqB042d6Z-918tXM,37147
230
+ bpy/ops/outliner/__init__.pyi,sha256=vf_8LChbzLXvN12il7N4gWTP2HsGtcSMMMJcqkLVjuU,37908
231
231
  bpy/ops/paint/__init__.pyi,sha256=GNUVhIuJl9OVpIuKC5Y-mmkylfQXR8YWGauGgNZciCE,42225
232
232
  bpy/ops/paintcurve/__init__.pyi,sha256=jd_Q1Qzr1vSiyagWMYc1124MrOuLiTXWDZhz1UpHweM,4401
233
233
  bpy/ops/palette/__init__.pyi,sha256=33nIFwCQ2a0tVRWAybYt1P7K7X6OQcTEkahk1E5TymY,3214
234
234
  bpy/ops/particle/__init__.pyi,sha256=ySmOACKcJJphes_uzCbtswmnUF4qvn7b8zrZtTsLO0U,19192
235
235
  bpy/ops/pose/__init__.pyi,sha256=EVWb4wyt8vdmhy_V5zEKQvh5pP7dYERrmzW8h74aoUo,28319
236
236
  bpy/ops/poselib/__init__.pyi,sha256=p-mS6TH8gZgmGyUFCkEykezOPkl81-hgMjPD_RQj5G0,5573
237
- bpy/ops/preferences/__init__.pyi,sha256=CEFbfeJexC_0l_BMYAFHm0L-ZpQFqnO_nGl_SXqhnbU,27376
237
+ bpy/ops/preferences/__init__.pyi,sha256=AsXCOL8b65RSw-N-XNXtsF8mvQ4t4vSzojZeoH8fFhw,27764
238
238
  bpy/ops/ptcache/__init__.pyi,sha256=kT2prhPjep6y1pCiMYorGaZSLznhcAsv1x2Z5P6vAcI,2980
239
239
  bpy/ops/render/__init__.pyi,sha256=rBznOKTZ68ToZPhqtVbwH13s4-kN2yeeSm8jatNV340,9390
240
240
  bpy/ops/rigidbody/__init__.pyi,sha256=WSqYlpmNjkp-ddZU3gvp65zhyFDg9wIEl7FLvlK64YI,8102
241
241
  bpy/ops/scene/__init__.pyi,sha256=mlKsICN3jXYvsN0RS130Qc3JU15dRtw30YByDyGMSGs,20490
242
242
  bpy/ops/screen/__init__.pyi,sha256=YRRkb5liYhtUIvZ03kfYraPvSVYbXIrR49MGXvI6OPQ,26787
243
243
  bpy/ops/script/__init__.pyi,sha256=2-THLrMehEcjeiMu-LMBorfhrd3V0gyJSV12cyZPVgI,1619
244
- bpy/ops/sculpt/__init__.pyi,sha256=9OO4L6CwKfYjMGmhEJsOmusHfSt6kiEiVgbNXuiPuYM,41637
244
+ bpy/ops/sculpt/__init__.pyi,sha256=YNsTJsc0tpYWKt1ti28pgJhnl4XWiF_nZQZeD76Ett4,41638
245
245
  bpy/ops/sculpt_curves/__init__.pyi,sha256=5-SF_bS8xaO8NAMIowE3aVinEtQ1-x1hpDMvH7VR9rk,3317
246
246
  bpy/ops/sequencer/__init__.pyi,sha256=LaR_dkwmYEj9UjqI2GGKT1NkJfX6KogIeekhXXGSZ8Y,85710
247
247
  bpy/ops/sound/__init__.pyi,sha256=4L_AH6s8oEUffqdUS-MP5y9n2H1gYo_fXeF0y_3qCE0,18107
@@ -258,10 +258,10 @@ bpy/ops/view2d/__init__.pyi,sha256=3NVUfevgxAFQYypk2OH-e0-2ml5YGBHcPIoXzNuVA2M,9
258
258
  bpy/ops/view3d/__init__.pyi,sha256=IBjnCtN958jw1L2LS5tb9KsiWK8u7t4i7yv3ZHI3B8U,41213
259
259
  bpy/ops/wm/__init__.pyi,sha256=-9sdjhR6_6-X48lDCKrq4ykFYGptbFxDdCJsIgimHAk,231808
260
260
  bpy/ops/workspace/__init__.pyi,sha256=seuXXtfGeQcdkEuF2ndx8y-Zhs4wJ99Ac0JTlYKTbcA,3309
261
- bpy/ops/world/__init__.pyi,sha256=gyxTIXas0kIe5J-6S7kl4iPrJkt-NTvhAze_f6a_Q8s,929
261
+ bpy/ops/world/__init__.pyi,sha256=oQBSfyuRh5kGomRoZELd3XHeYFnn1Q4yPobT9GfsefY,1032
262
262
  bpy/path/__init__.pyi,sha256=hDzEsFeXHfkrzJFWxyxpnxiWbm1b64KJWru0jcOgRq8,11497
263
263
  bpy/props/__init__.pyi,sha256=O4aVP7WK6sI-ugD5XeDDLpNfBHulqJh20Kw7jRb2BDc,28779
264
- bpy/types/__init__.pyi,sha256=ZS9AiM5xs-IkMAPf3Pk7OUYTo8auA5sm3BE59wRtcFQ,5232595
264
+ bpy/types/__init__.pyi,sha256=5gpzMKT8nWTtg27aQJTQueFWhDu6RYq3JQEVt0v5uN0,5239498
265
265
  bpy/utils/__init__.pyi,sha256=u9JvsmBzSJyg4CTJr7_0n9CQO_B3ldwQKh25cW_6pZs,17916
266
266
  bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
267
267
  bpy/utils/units/__init__.pyi,sha256=Mf5e9M8OwkE2zC-rs5CVV7NfobaI7LQkU0v7u-z9xwI,2655
@@ -285,7 +285,7 @@ bpy_extras/wm_utils/__init__.pyi,sha256=VjSQe0yOFAlAFGjt5HhvfGBLvSr9tcSpQBiGPRng
285
285
  bpy_extras/wm_utils/progress_report/__init__.pyi,sha256=070Ss6tSU9TOgVBKpGsxtwLhp5Lstj4MV5zieg-p5n8,1872
286
286
  bpy_restrict_state/__init__.pyi,sha256=KAQcdXls9YQGe8u3VyrnC7YNoXgg9kidzvZnYG7bpEA,307
287
287
  bpy_restrict_state/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
288
- bpy_types/__init__.pyi,sha256=RiihWkjehw1cssAR6XAuBDnKMADgOHI4gli8zvI1WCE,173279
288
+ bpy_types/__init__.pyi,sha256=p45VHWkeZLgdKO56U8XEi3x3muEp16e9ooQw3EVbI4A,172242
289
289
  bpy_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
290
290
  console_python/__init__.pyi,sha256=fTcyMA-p95t-3BaMgwXypW6wer1X_Lb-Q3oW5Dfq3cU,704
291
291
  console_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -347,7 +347,7 @@ rna_xml/__init__.pyi,sha256=H-iSwO57zZ_piTZymDIp-ryuojWhwRoX_CT10iAI3rk,602
347
347
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
348
348
  sys_info/__init__.pyi,sha256=9MR_HOycufd8IKZQf-QDqUqE8Aj1D8n_Pfvi9wEKtvo,164
349
349
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
350
- fake_bpy_module-20240522.dist-info/METADATA,sha256=xQCimuhl4-vTSzJ-d5WAwuR04NRlTR2qwWy_h5RNfQo,7109
351
- fake_bpy_module-20240522.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
352
- fake_bpy_module-20240522.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
353
- fake_bpy_module-20240522.dist-info/RECORD,,
350
+ fake_bpy_module-20240524.dist-info/METADATA,sha256=fcx7_Cq0z0nWCmc36nKZTlicfCEeRLkdR5P2F6cyNqg,7109
351
+ fake_bpy_module-20240524.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
352
+ fake_bpy_module-20240524.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
353
+ fake_bpy_module-20240524.dist-info/RECORD,,