fake-bpy-module 20240523__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.

@@ -724,7 +724,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, bpy_types.Operator):
724
724
 
725
725
  def draw_ui_list(
726
726
  layout: bpy.types.UILayout,
727
- context: bpy_types.Context,
727
+ context: bpy.types.Context,
728
728
  class_name: str = "UI_UL_list",
729
729
  unique_id: str = None,
730
730
  list_path: str = None,
@@ -739,7 +739,7 @@ def draw_ui_list(
739
739
  :param layout: UILayout to draw the list in.
740
740
  :type layout: bpy.types.UILayout
741
741
  :param context: Blender context to get the list data from.
742
- :type context: bpy_types.Context
742
+ :type context: bpy.types.Context
743
743
  :param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
744
744
  :type class_name: str
745
745
  :param unique_id: Unique identifier to differentiate this from other UI lists.
@@ -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
  ):
@@ -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,
@@ -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
 
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
 
@@ -180106,13 +180302,6 @@ class SurfaceModifier(Modifier, bpy_struct):
180106
180302
  class TriangulateModifier(Modifier, bpy_struct):
180107
180303
  """Triangulate Mesh"""
180108
180304
 
180109
- keep_custom_normals: bool
180110
- """ Try to preserve custom normals.
180111
- Warning: Depending on chosen triangulation method, shading may not be fully preserved, "Fixed" method usually gives the best result here
180112
-
180113
- :type: bool
180114
- """
180115
-
180116
180305
  min_vertices: int
180117
180306
  """ Triangulate only polygons with vertex count greater than or equal to this number
180118
180307
 
@@ -232765,6 +232954,8 @@ OBJECT_MT_modifier_add_edit: bl_ui.properties_data_modifier.OBJECT_MT_modifier_a
232765
232954
 
232766
232955
  OBJECT_MT_modifier_add_generate: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_generate
232767
232956
 
232957
+ OBJECT_MT_modifier_add_normals: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_normals
232958
+
232768
232959
  OBJECT_MT_modifier_add_physics: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_physics
232769
232960
 
232770
232961
  OBJECT_OT_assign_property_defaults: bl_operators.object.OBJECT_OT_assign_property_defaults
@@ -233931,6 +234122,8 @@ USERPREF_PT_system_cycles_devices: bl_ui.space_userpref.USERPREF_PT_system_cycle
233931
234122
 
233932
234123
  USERPREF_PT_system_memory: bl_ui.space_userpref.USERPREF_PT_system_memory
233933
234124
 
234125
+ USERPREF_PT_system_network: bl_ui.space_userpref.USERPREF_PT_system_network
234126
+
233934
234127
  USERPREF_PT_system_os_settings: bl_ui.space_userpref.USERPREF_PT_system_os_settings
233935
234128
 
233936
234129
  USERPREF_PT_system_sound: bl_ui.space_userpref.USERPREF_PT_system_sound
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240523
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
@@ -85,7 +85,7 @@ bl_ui/__init__.pyi,sha256=N3pzoct8D3cGDvatLnpVixZlbZGI-vSC5tmTQ_NsXBw,20136
85
85
  bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
86
  bl_ui/anim/__init__.pyi,sha256=Q3Bo73WhK6fLXhWspPQ6IrlX3z6vxvBsUUH2ME0I4vo,7590
87
87
  bl_ui/asset_shelf/__init__.pyi,sha256=HztdIjmsqLm_jhZhChKREICK86WnEKPMW0HAd3gfb-A,5887
88
- bl_ui/generic_ui_list/__init__.pyi,sha256=wiHVG8tUGH08FXberdkon893hE-KQOC-wcQdPhQRIds,19691
88
+ bl_ui/generic_ui_list/__init__.pyi,sha256=EUU1e9QwH_ucdvgMuKWj6khISfKiRabgZOS_NtiYovw,19691
89
89
  bl_ui/node_add_menu/__init__.pyi,sha256=_1Dpb7cpJospC3e8yqCW71ZSafv5hLG3CsvzBb5hTGc,8092
90
90
  bl_ui/node_add_menu_compositor/__init__.pyi,sha256=EeOd9zPegDOKOTPFA31q92ZZvdcMBUfDUEpx7YdiHuw,134520
91
91
  bl_ui/node_add_menu_geometry/__init__.pyi,sha256=93G3_29MLoy3VJYOeB1Nx6IWk80LMbRDDuB_2C5KxDA,358371
@@ -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
@@ -155,7 +155,7 @@ bl_ui/space_time/__init__.pyi,sha256=RzNnGNgCJBFcntdS6B_N8mRA1zRY68-DSh3F01uC63c
155
155
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=4_lkUFwBtoZqh7hLHCnB3TTrNuUs0eNqG-P-5T1I1sY,5534
156
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,7 +227,7 @@ 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
@@ -241,7 +241,7 @@ bpy/ops/rigidbody/__init__.pyi,sha256=WSqYlpmNjkp-ddZU3gvp65zhyFDg9wIEl7FLvlK64Y
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
@@ -261,7 +261,7 @@ bpy/ops/workspace/__init__.pyi,sha256=seuXXtfGeQcdkEuF2ndx8y-Zhs4wJ99Ac0JTlYKTbc
261
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=JTMu0vqP0Lf31cU-gH532yeKIL0xAPZf5nvLH0s3Tac,5232807
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
@@ -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-20240523.dist-info/METADATA,sha256=E96FNBgMjaNtpn7PjWpwTt3lEpsr6FS1EgSBPFQF3wM,7109
351
- fake_bpy_module-20240523.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
352
- fake_bpy_module-20240523.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
353
- fake_bpy_module-20240523.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,,