fake-bge-module-latest 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.
@@ -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,
@@ -1508,6 +1508,18 @@ def set_selection_mode(
1508
1508
  :type mode: bpy.typing.GreasePencilSelectmodeItems | None
1509
1509
  """
1510
1510
 
1511
+ def set_start_point(
1512
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1513
+ execution_context: int | str | None = None,
1514
+ undo: bool | None = None,
1515
+ ):
1516
+ """Select which point is the beginning of the curve
1517
+
1518
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1519
+ :type execution_context: int | str | None
1520
+ :type undo: bool | None
1521
+ """
1522
+
1511
1523
  def set_uniform_opacity(
1512
1524
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1513
1525
  execution_context: int | str | None = None,
bpy/types/__init__.pyi CHANGED
@@ -165346,6 +165346,12 @@ class GreasePencilLayer(bpy_struct):
165346
165346
  :type: typing.Literal['REGULAR','HARDLIGHT','ADD','SUBTRACT','MULTIPLY','DIVIDE']
165347
165347
  """
165348
165348
 
165349
+ channel_color: mathutils.Color
165350
+ """
165351
+
165352
+ :type: mathutils.Color
165353
+ """
165354
+
165349
165355
  frames: GreasePencilFrames
165350
165356
  """ Grease Pencil frames
165351
165357
 
@@ -242266,6 +242272,8 @@ DATA_PT_grease_pencil_custom_props: bl_ui.properties_data_grease_pencil.DATA_PT_
242266
242272
 
242267
242273
  DATA_PT_grease_pencil_layer_adjustments: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_adjustments
242268
242274
 
242275
+ DATA_PT_grease_pencil_layer_display: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_display
242276
+
242269
242277
  DATA_PT_grease_pencil_layer_masks: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_masks
242270
242278
 
242271
242279
  DATA_PT_grease_pencil_layer_relations: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_relations
@@ -242432,6 +242440,8 @@ DOPESHEET_PT_filters: bl_ui.space_dopesheet.DOPESHEET_PT_filters
242432
242440
 
242433
242441
  DOPESHEET_PT_grease_pencil_layer_adjustments: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_adjustments
242434
242442
 
242443
+ DOPESHEET_PT_grease_pencil_layer_display: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_display
242444
+
242435
242445
  DOPESHEET_PT_grease_pencil_layer_masks: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_masks
242436
242446
 
242437
242447
  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-bge-module-latest
3
- Version: 20241209
3
+ Version: 20241210
4
4
  Summary: Collection of the fake Blender Game Engine (BGE) Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -139,7 +139,7 @@ bl_ui/properties_data_camera/__init__.pyi,sha256=W21ncvcxCUOEN_Xr2tCAXp_sK-keytL
139
139
  bl_ui/properties_data_curve/__init__.pyi,sha256=D1xZkuCpaMwurWe-N7UAeEB8Ko8Egsw8fAhfOTQqXJU,12859
140
140
  bl_ui/properties_data_curves/__init__.pyi,sha256=huauSiwT8GBVJrFzp3o6N6aA8ouxecfu6RgHBfc5rJg,5913
141
141
  bl_ui/properties_data_empty/__init__.pyi,sha256=PrWD2bMI4AKOBXS1-GsHXFFeVc12p4siGDQJxdmn95A,1679
142
- bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=9zD7njkiRvAr-uPG1pRessLz8meEpqhExbHf7p0K8Pg,13942
142
+ bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=XveIxVFSEQgJ4oRX9mlPkbZP1AeDwa5g_rQLzfjqRE8,14753
143
143
  bl_ui/properties_data_lattice/__init__.pyi,sha256=duUWwjGBzoTFbhB3BUruazK5qfddVxHJ1UJAtxSSkcs,3442
144
144
  bl_ui/properties_data_light/__init__.pyi,sha256=Q4jh6kmNDqhw5u3An4gSPhlPnzMZMUb-wH_1RrcPsNM,8137
145
145
  bl_ui/properties_data_lightprobe/__init__.pyi,sha256=micXmIresZ3nptUhIKrsUe7dMYQkTd-H2SMi-kkMysg,10705
@@ -177,7 +177,7 @@ bl_ui/properties_workspace/__init__.pyi,sha256=H9ixaD-_K6YbmzvvzDqE8Ca1_jvGeOJ0S
177
177
  bl_ui/properties_world/__init__.pyi,sha256=2BvXUUUI6BdaA61DKNR3xNGGLSiK5kfeHW25x-s4p7w,9145
178
178
  bl_ui/space_clip/__init__.pyi,sha256=I9bHrnPSZnkPYGxKw3tlUqch3FnyL4fpyjIzG-rqpKk,45001
179
179
  bl_ui/space_console/__init__.pyi,sha256=jHE-NegnXq5WiuRTy89jw6hkYwLAjwEJryGzPJ7GrZw,3273
180
- bl_ui/space_dopesheet/__init__.pyi,sha256=1GCQ2DNekJvyEknCS-MxR3ISnR7vBU_E_lM9jEoTz04,17342
180
+ bl_ui/space_dopesheet/__init__.pyi,sha256=1VTtwpoxDb56GB8pt93MAhdybZbLzeWX7Im9VNYLwLg,18072
181
181
  bl_ui/space_filebrowser/__init__.pyi,sha256=mFlZd3CLqrkdD-_nftH3A8f1hVHwHeGUvWBFEpIIoaM,19466
182
182
  bl_ui/space_graph/__init__.pyi,sha256=7XFWtjx8rwzqzsIpnXcZbVgHHp1Xa6gr-GSxy5f7MhI,10909
183
183
  bl_ui/space_image/__init__.pyi,sha256=HO1Je2i9wtBtwirMt8LvXsj3uiMGjHLI8ML2S1zCLqY,44587
@@ -250,7 +250,7 @@ bpy/ops/geometry/__init__.pyi,sha256=Ix8MGXa5gZBQT3aWGmDfrKPx-MTtmloRflfwiHicuTU
250
250
  bpy/ops/gizmogroup/__init__.pyi,sha256=OFN5NNvr_HFc_L7pvjSWKY_D8nF2_Ue8z6nGjB-_xac,1595
251
251
  bpy/ops/gpencil/__init__.pyi,sha256=xef0m8m4jVKzqncUi9CezsXgqES8iAYJzcEKtDfTXTY,6112
252
252
  bpy/ops/graph/__init__.pyi,sha256=My3PsXepSrn3TGQ7ePFoYML5sjzTp8LRqsPqqng7iak,51523
253
- bpy/ops/grease_pencil/__init__.pyi,sha256=3T2rl3sHbhh4-yFql8N5r0NfAgSHLgas2xlm8OKE4PI,76366
253
+ bpy/ops/grease_pencil/__init__.pyi,sha256=IsMN95ekoA2FlDGbKMiiHLXWgt7GiO5d2FG7fmAOxYM,76764
254
254
  bpy/ops/image/__init__.pyi,sha256=SUn2SBcvRXEHMizauJfTVFY8KBvXV_7M2meGZDxEDu8,59838
255
255
  bpy/ops/import_anim/__init__.pyi,sha256=7BExOyxBpXdbfQQN_foBI0FIfqHte9U1nfWEvNKYH0Y,3216
256
256
  bpy/ops/import_curve/__init__.pyi,sha256=U3eiL0CsWblWZe8O58JOxSXhr2sgHRHKwVzozIMsck4,651
@@ -300,7 +300,7 @@ bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJ
300
300
  bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
301
301
  bpy/path/__init__.pyi,sha256=b_M-IUy-VEWMDZJH0bP9P-HHcLLcQo59S1dARRQrP9E,5064
302
302
  bpy/props/__init__.pyi,sha256=TfulJGBHgbMIc1aadTzLWiL6Q2NQdeO9Q4_ePasNesU,30717
303
- bpy/types/__init__.pyi,sha256=UEJfnN85Z6HkXQkCWeC06ma_vPlT6z-aZLMn6JkgMrk,5615334
303
+ bpy/types/__init__.pyi,sha256=by2UlAdWjJ66XMs1B8TbWe3bE4Rg6fI82hm1EjjtHI8,5615631
304
304
  bpy/typing/__init__.pyi,sha256=3KI4vqpVn5OlaoxmsWH9LYKDmNxRYltoP_Jid2cSOnE,139452
305
305
  bpy/utils/__init__.pyi,sha256=XXoE6J8aW13NQ-2FvnFORXyNVUFfO8hSno-xfgJ6ZNI,13078
306
306
  bpy/utils/previews/__init__.pyi,sha256=XEThA7jxMWet1sPTJ3mmngM6LdAdKiIVSZOKbCsbvzw,2217
@@ -383,7 +383,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
383
383
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
384
384
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
385
385
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
386
- fake_bge_module_latest-20241209.dist-info/METADATA,sha256=-aSLOp5hqk-yy2Gux1MhKm8N3FfSgdWC0B7VjlZFviw,4794
387
- fake_bge_module_latest-20241209.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
388
- fake_bge_module_latest-20241209.dist-info/top_level.txt,sha256=G2g8DM6N1EXHQhWiW_lc0Dp7Tmqpop00oo_f2rdLQOU,520
389
- fake_bge_module_latest-20241209.dist-info/RECORD,,
386
+ fake_bge_module_latest-20241210.dist-info/METADATA,sha256=zbRBBari4jCzBAzywZF49DC6IMVTDpR1bUeiDBRiriY,4794
387
+ fake_bge_module_latest-20241210.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
388
+ fake_bge_module_latest-20241210.dist-info/top_level.txt,sha256=G2g8DM6N1EXHQhWiW_lc0Dp7Tmqpop00oo_f2rdLQOU,520
389
+ fake_bge_module_latest-20241210.dist-info/RECORD,,