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

@@ -152,6 +152,32 @@ class DATA_PT_grease_pencil_layer_adjustments(
152
152
  :rtype: typing.Any
153
153
  """
154
154
 
155
+ class DATA_PT_grease_pencil_layer_display(
156
+ GreasePencil_LayerDisplayPanel, LayerDataButtonsPanel, bpy.types.Panel
157
+ ):
158
+ bl_context: typing.Any
159
+ bl_label: typing.Any
160
+ bl_options: typing.Any
161
+ bl_parent_id: typing.Any
162
+ bl_region_type: typing.Any
163
+ bl_rna: typing.Any
164
+ bl_space_type: typing.Any
165
+ id_data: typing.Any
166
+
167
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
168
+ """
169
+
170
+ :return: The RNA type or default when not found.
171
+ :rtype: bpy.types.Struct
172
+ """
173
+
174
+ def bl_rna_get_subclass_py(self) -> typing.Any:
175
+ """
176
+
177
+ :return: The class or default when not found.
178
+ :rtype: typing.Any
179
+ """
180
+
155
181
  class DATA_PT_grease_pencil_layer_masks(
156
182
  GreasePencil_LayerMaskPanel, LayerDataButtonsPanel, bpy.types.Panel
157
183
  ):
@@ -574,6 +600,15 @@ class GreasePencil_LayerAdjustmentsPanel:
574
600
  :param context:
575
601
  """
576
602
 
603
+ class GreasePencil_LayerDisplayPanel:
604
+ bl_label: typing.Any
605
+
606
+ def draw(self, context):
607
+ """
608
+
609
+ :param context:
610
+ """
611
+
577
612
  class GreasePencil_LayerMaskPanel:
578
613
  def draw(self, context):
579
614
  """
@@ -551,6 +551,34 @@ class DOPESHEET_PT_grease_pencil_layer_adjustments(
551
551
  :rtype: typing.Any
552
552
  """
553
553
 
554
+ class DOPESHEET_PT_grease_pencil_layer_display(
555
+ bl_ui.properties_data_grease_pencil.GreasePencil_LayerDisplayPanel,
556
+ GreasePencilLayersDopeSheetPanel,
557
+ bpy.types.Panel,
558
+ ):
559
+ bl_category: typing.Any
560
+ bl_label: typing.Any
561
+ bl_options: typing.Any
562
+ bl_parent_id: typing.Any
563
+ bl_region_type: typing.Any
564
+ bl_rna: typing.Any
565
+ bl_space_type: typing.Any
566
+ id_data: typing.Any
567
+
568
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
569
+ """
570
+
571
+ :return: The RNA type or default when not found.
572
+ :rtype: bpy.types.Struct
573
+ """
574
+
575
+ def bl_rna_get_subclass_py(self) -> typing.Any:
576
+ """
577
+
578
+ :return: The class or default when not found.
579
+ :rtype: typing.Any
580
+ """
581
+
554
582
  class DOPESHEET_PT_grease_pencil_layer_masks(
555
583
  bl_ui.properties_data_grease_pencil.GreasePencil_LayerMaskPanel,
556
584
  GreasePencilLayersDopeSheetPanel,
@@ -1377,6 +1377,15 @@ def set_selection_mode(
1377
1377
  :type mode: bpy.typing.GreasePencilSelectmodeItems | None
1378
1378
  """
1379
1379
 
1380
+ def set_start_point(
1381
+ execution_context: int | str | None = None, undo: bool | None = None
1382
+ ):
1383
+ """Select which point is the beginning of the curve
1384
+
1385
+ :type execution_context: int | str | None
1386
+ :type undo: bool | None
1387
+ """
1388
+
1380
1389
  def set_uniform_opacity(
1381
1390
  execution_context: int | str | None = None,
1382
1391
  undo: bool | None = None,
bpy/types/__init__.pyi CHANGED
@@ -159059,6 +159059,12 @@ class GreasePencilLayer(bpy_struct):
159059
159059
  :type: typing.Literal['REGULAR','HARDLIGHT','ADD','SUBTRACT','MULTIPLY','DIVIDE']
159060
159060
  """
159061
159061
 
159062
+ channel_color: mathutils.Color
159063
+ """
159064
+
159065
+ :type: mathutils.Color
159066
+ """
159067
+
159062
159068
  frames: GreasePencilFrames
159063
159069
  """ Grease Pencil frames
159064
159070
 
@@ -231977,6 +231983,8 @@ DATA_PT_grease_pencil_custom_props: bl_ui.properties_data_grease_pencil.DATA_PT_
231977
231983
 
231978
231984
  DATA_PT_grease_pencil_layer_adjustments: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_adjustments
231979
231985
 
231986
+ DATA_PT_grease_pencil_layer_display: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_display
231987
+
231980
231988
  DATA_PT_grease_pencil_layer_masks: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_masks
231981
231989
 
231982
231990
  DATA_PT_grease_pencil_layer_relations: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_relations
@@ -232141,6 +232149,8 @@ DOPESHEET_PT_filters: bl_ui.space_dopesheet.DOPESHEET_PT_filters
232141
232149
 
232142
232150
  DOPESHEET_PT_grease_pencil_layer_adjustments: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_adjustments
232143
232151
 
232152
+ DOPESHEET_PT_grease_pencil_layer_display: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_display
232153
+
232144
232154
  DOPESHEET_PT_grease_pencil_layer_masks: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_masks
232145
232155
 
232146
232156
  DOPESHEET_PT_grease_pencil_layer_relations: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_relations
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20241209
3
+ Version: 20241210
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
@@ -117,7 +117,7 @@ bl_ui/properties_data_camera/__init__.pyi,sha256=voA4pSpiwEB0_CY454oPQfpwY2Il-wk
117
117
  bl_ui/properties_data_curve/__init__.pyi,sha256=D1xZkuCpaMwurWe-N7UAeEB8Ko8Egsw8fAhfOTQqXJU,12859
118
118
  bl_ui/properties_data_curves/__init__.pyi,sha256=huauSiwT8GBVJrFzp3o6N6aA8ouxecfu6RgHBfc5rJg,5913
119
119
  bl_ui/properties_data_empty/__init__.pyi,sha256=PrWD2bMI4AKOBXS1-GsHXFFeVc12p4siGDQJxdmn95A,1679
120
- bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=9zD7njkiRvAr-uPG1pRessLz8meEpqhExbHf7p0K8Pg,13942
120
+ bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=XveIxVFSEQgJ4oRX9mlPkbZP1AeDwa5g_rQLzfjqRE8,14753
121
121
  bl_ui/properties_data_lattice/__init__.pyi,sha256=duUWwjGBzoTFbhB3BUruazK5qfddVxHJ1UJAtxSSkcs,3442
122
122
  bl_ui/properties_data_light/__init__.pyi,sha256=Q4jh6kmNDqhw5u3An4gSPhlPnzMZMUb-wH_1RrcPsNM,8137
123
123
  bl_ui/properties_data_lightprobe/__init__.pyi,sha256=micXmIresZ3nptUhIKrsUe7dMYQkTd-H2SMi-kkMysg,10705
@@ -154,7 +154,7 @@ bl_ui/properties_workspace/__init__.pyi,sha256=H9ixaD-_K6YbmzvvzDqE8Ca1_jvGeOJ0S
154
154
  bl_ui/properties_world/__init__.pyi,sha256=2BvXUUUI6BdaA61DKNR3xNGGLSiK5kfeHW25x-s4p7w,9145
155
155
  bl_ui/space_clip/__init__.pyi,sha256=I9bHrnPSZnkPYGxKw3tlUqch3FnyL4fpyjIzG-rqpKk,45001
156
156
  bl_ui/space_console/__init__.pyi,sha256=jHE-NegnXq5WiuRTy89jw6hkYwLAjwEJryGzPJ7GrZw,3273
157
- bl_ui/space_dopesheet/__init__.pyi,sha256=1GCQ2DNekJvyEknCS-MxR3ISnR7vBU_E_lM9jEoTz04,17342
157
+ bl_ui/space_dopesheet/__init__.pyi,sha256=1VTtwpoxDb56GB8pt93MAhdybZbLzeWX7Im9VNYLwLg,18072
158
158
  bl_ui/space_filebrowser/__init__.pyi,sha256=mFlZd3CLqrkdD-_nftH3A8f1hVHwHeGUvWBFEpIIoaM,19466
159
159
  bl_ui/space_graph/__init__.pyi,sha256=7XFWtjx8rwzqzsIpnXcZbVgHHp1Xa6gr-GSxy5f7MhI,10909
160
160
  bl_ui/space_image/__init__.pyi,sha256=HO1Je2i9wtBtwirMt8LvXsj3uiMGjHLI8ML2S1zCLqY,44587
@@ -226,7 +226,7 @@ bpy/ops/geometry/__init__.pyi,sha256=vdyhoH2IMzQoryHYxNDxCbSqUJe5PpdakV79koEqJ3g
226
226
  bpy/ops/gizmogroup/__init__.pyi,sha256=lsDnIxuI4uIqJJEiLNmKUuMq2uqlc6HQAqDHY3T9tf8,1262
227
227
  bpy/ops/gpencil/__init__.pyi,sha256=cqeFGa_2tSDBDSWhsWVQVZx5BhHs08wiW4And1rhfVE,4832
228
228
  bpy/ops/graph/__init__.pyi,sha256=3-hSpqGgzSvdUCEfQErcZP3s88fIpcpK0olzKZ9BO0Q,41516
229
- bpy/ops/grease_pencil/__init__.pyi,sha256=PV6Q53HYYtE5GhAZ_yBGqMqS0hB5_ZSaC-OXR-zfKWM,59840
229
+ bpy/ops/grease_pencil/__init__.pyi,sha256=Yd07YsHOAD4Ip7rss4pBvlh1-HMv4ABN-IDawIf9Iy0,60077
230
230
  bpy/ops/image/__init__.pyi,sha256=yedlD6hfJWo0OyDkPOvmnQ0dR7dvIG0IryRKplP2HrM,52227
231
231
  bpy/ops/import_anim/__init__.pyi,sha256=aE1pDcT6TlridpXwg7tF-E3tXLcm83n7j1vVgn_-g7A,3046
232
232
  bpy/ops/import_curve/__init__.pyi,sha256=sDhKpg3cI-y0NYuUo8ey3jb3h-KKergdPUDKlQ-C2iI,485
@@ -275,7 +275,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
275
275
  bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
276
276
  bpy/path/__init__.pyi,sha256=N-QNSw3piTmrzrydYRyWab7GFGOh3BsdaS91x4Kf-Cc,5403
277
277
  bpy/props/__init__.pyi,sha256=eHzPsDSyDTa92O5TvPpi1yflmxv7vVGW_ZocCqudgw4,31027
278
- bpy/types/__init__.pyi,sha256=6G_KEMFkGTYTIKuih45uqcmRlmXNH1giwMCHXCyy3w4,5387903
278
+ bpy/types/__init__.pyi,sha256=Ox6fZK6-1fk6DrwwUtWv-yXo98fkLtVkifmCSLkpSg0,5388200
279
279
  bpy/typing/__init__.pyi,sha256=u2XKjd6ZB1Wjt7JwabxexZdswEZLYR2jQpxzzp6AThg,138679
280
280
  bpy/utils/__init__.pyi,sha256=wvjdEDEtBn5bR5pZG7HnW1ZdL_J-IQYvmB7e4AwTW0s,13537
281
281
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
@@ -311,7 +311,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
311
311
  freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
312
312
  freestyle/shaders/__init__.pyi,sha256=1Ov48B4P7LV3dwjBqHqqqbPFRBZWjENqIDaFb97Qdj0,23835
313
313
  freestyle/types/__init__.pyi,sha256=p6WoVuWvAdGxcKMvxz-IrMbZiBTML9cbjgwgj-QnyI8,100051
314
- freestyle/utils/__init__.pyi,sha256=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
314
+ freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,5108
315
315
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=fPDfiBEjpoqXQhBhmHJ6WxG9oLMItwQ32MxKQz_c9_I,3445
316
316
  gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
317
317
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
358
358
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
359
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
360
360
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
- fake_bpy_module-20241209.dist-info/METADATA,sha256=Nq0IYdN3WbYd4iAvydnpuFnI4n-kaSzabrCgwfSves0,7289
362
- fake_bpy_module-20241209.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
363
- fake_bpy_module-20241209.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
- fake_bpy_module-20241209.dist-info/RECORD,,
361
+ fake_bpy_module-20241210.dist-info/METADATA,sha256=Ge247aXf_0Qhy2pNwwRe1QrLe2Qdli8Se-qizoXrbu8,7289
362
+ fake_bpy_module-20241210.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
363
+ fake_bpy_module-20241210.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
+ fake_bpy_module-20241210.dist-info/RECORD,,
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
124
124
  """get the diffuse RGBA color from an FEdge"""
125
125
 
126
126
  def normal_at_I0D(it): ...
127
- def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
127
+ def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
128
128
  """Yields a tuple containing the previous and current object"""
129
129
 
130
130
  def rgb_to_bw(r, g, b):