fake-bge-module-latest 20241216__py3-none-any.whl → 20241218__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.
@@ -37,42 +37,6 @@ class AddModifierMenu(bpy.types.Operator):
37
37
  :param context:
38
38
  """
39
39
 
40
- class DATA_PT_gpencil_modifiers(ModifierButtonsPanel, bpy.types.Panel):
41
- bl_context: typing.Any
42
- bl_label: typing.Any
43
- bl_options: typing.Any
44
- bl_region_type: typing.Any
45
- bl_rna: typing.Any
46
- bl_space_type: typing.Any
47
- id_data: typing.Any
48
-
49
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
50
- """
51
-
52
- :return: The RNA type or default when not found.
53
- :rtype: bpy.types.Struct
54
- """
55
-
56
- def bl_rna_get_subclass_py(self) -> typing.Any:
57
- """
58
-
59
- :return: The class or default when not found.
60
- :rtype: typing.Any
61
- """
62
-
63
- def draw(self, _context):
64
- """
65
-
66
- :param _context:
67
- """
68
-
69
- @classmethod
70
- def poll(cls, context):
71
- """
72
-
73
- :param context:
74
- """
75
-
76
40
  class DATA_PT_modifiers(ModifierButtonsPanel, bpy.types.Panel):
77
41
  bl_context: typing.Any
78
42
  bl_label: typing.Any
@@ -1196,6 +1196,25 @@ def paste(
1196
1196
  :type keep_offset: bool | None
1197
1197
  """
1198
1198
 
1199
+ def preview_duplicate_move(
1200
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1201
+ execution_context: int | str | None = None,
1202
+ undo: bool | None = None,
1203
+ *,
1204
+ SEQUENCER_OT_duplicate: duplicate | None = None,
1205
+ TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
1206
+ ):
1207
+ """Duplicate selected strips and move them
1208
+
1209
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1210
+ :type execution_context: int | str | None
1211
+ :type undo: bool | None
1212
+ :param SEQUENCER_OT_duplicate: Duplicate Strips, Duplicate the selected strips
1213
+ :type SEQUENCER_OT_duplicate: duplicate | None
1214
+ :param TRANSFORM_OT_translate: Move, Move selected items
1215
+ :type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
1216
+ """
1217
+
1199
1218
  def reassign_inputs(
1200
1219
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1201
1220
  execution_context: int | str | None = None,
bpy/types/__init__.pyi CHANGED
@@ -9076,6 +9076,7 @@ The USDHookExample
9076
9076
  * NodeTree.bl_label
9077
9077
  * NodeTree.bl_description
9078
9078
  * NodeTree.bl_icon
9079
+ * NodeTree.bl_use_group_interface
9079
9080
 
9080
9081
  :columns: 2
9081
9082
 
@@ -61971,6 +61972,7 @@ Base class for integrating USD Hydra based renderers.
61971
61972
  * NodeTree.bl_label
61972
61973
  * NodeTree.bl_description
61973
61974
  * NodeTree.bl_icon
61975
+ * NodeTree.bl_use_group_interface
61974
61976
 
61975
61977
  :columns: 2
61976
61978
 
@@ -91517,6 +91519,7 @@ example of how to create/use filtering/reordering callbacks.
91517
91519
  * NodeTree.bl_label
91518
91520
  * NodeTree.bl_description
91519
91521
  * NodeTree.bl_icon
91522
+ * NodeTree.bl_use_group_interface
91520
91523
 
91521
91524
  :columns: 2
91522
91525
 
@@ -102278,6 +102281,7 @@ FileHandler
102278
102281
  * NodeTree.bl_label
102279
102282
  * NodeTree.bl_description
102280
102283
  * NodeTree.bl_icon
102284
+ * NodeTree.bl_use_group_interface
102281
102285
 
102282
102286
  :columns: 2
102283
102287
 
@@ -166052,6 +166056,22 @@ class GreasePencilLayer(bpy_struct):
166052
166056
  class GreasePencilLayerGroup(bpy_struct):
166053
166057
  """Group of Grease Pencil layers"""
166054
166058
 
166059
+ color_tag: typing.Literal[
166060
+ "NONE",
166061
+ "COLOR1",
166062
+ "COLOR2",
166063
+ "COLOR3",
166064
+ "COLOR4",
166065
+ "COLOR5",
166066
+ "COLOR6",
166067
+ "COLOR7",
166068
+ "COLOR8",
166069
+ ]
166070
+ """
166071
+
166072
+ :type: typing.Literal['NONE','COLOR1','COLOR2','COLOR3','COLOR4','COLOR5','COLOR6','COLOR7','COLOR8']
166073
+ """
166074
+
166055
166075
  hide: bool
166056
166076
  """ Set layer group visibility
166057
166077
 
@@ -185356,10 +185376,10 @@ class Node(bpy_struct):
185356
185376
  :type: str
185357
185377
  """
185358
185378
 
185359
- bl_static_type: typing.Literal["CUSTOM"]
185360
- """ Node type (deprecated, use with care)
185379
+ bl_static_type: str
185380
+ """ Legacy unique node type identifier, redundant with bl_idname property
185361
185381
 
185362
- :type: typing.Literal['CUSTOM']
185382
+ :type: str
185363
185383
  """
185364
185384
 
185365
185385
  bl_width_default: float
@@ -185506,10 +185526,10 @@ class Node(bpy_struct):
185506
185526
  :type: bool
185507
185527
  """
185508
185528
 
185509
- type: typing.Literal["CUSTOM"]
185510
- """ Node type (deprecated, use bl_static_type or bl_idname for the actual identifier string)
185529
+ type: str
185530
+ """ Legacy unique node type identifier, redundant with bl_idname property
185511
185531
 
185512
- :type: typing.Literal['CUSTOM']
185532
+ :type: str
185513
185533
  """
185514
185534
 
185515
185535
  use_custom_color: bool
@@ -188026,6 +188046,12 @@ class NodeTree(ID, bpy_struct):
188026
188046
  :type: str
188027
188047
  """
188028
188048
 
188049
+ bl_use_group_interface: bool
188050
+ """ Determines the visibility of some UI elements related to node groups
188051
+
188052
+ :type: bool
188053
+ """
188054
+
188029
188055
  color_tag: typing.Literal[
188030
188056
  "NONE",
188031
188057
  "ATTRIBUTE",
@@ -198986,7 +199012,7 @@ class PreferencesExperimental(bpy_struct):
198986
199012
  """Experimental features"""
198987
199013
 
198988
199014
  override_auto_resync: bool
198989
- """ Disable library overrides automatic resync detection and process on file load (can be useful to help fixing broken files)
199015
+ """ Disable library overrides automatic resync detection and process on file load (can be useful to help fixing broken files). Also see the --disable-liboverride-auto-resync command line option
198990
199016
 
198991
199017
  :type: bool
198992
199018
  """
@@ -242767,8 +242793,6 @@ DATA_PT_geometry_curve_bevel: bl_ui.properties_data_curve.DATA_PT_geometry_curve
242767
242793
 
242768
242794
  DATA_PT_geometry_curve_start_end: bl_ui.properties_data_curve.DATA_PT_geometry_curve_start_end
242769
242795
 
242770
- DATA_PT_gpencil_modifiers: bl_ui.properties_data_modifier.DATA_PT_gpencil_modifiers
242771
-
242772
242796
  DATA_PT_grease_pencil_animation: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_animation
242773
242797
 
242774
242798
  DATA_PT_grease_pencil_attributes: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_attributes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bge-module-latest
3
- Version: 20241216
3
+ Version: 20241218
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
@@ -145,7 +145,7 @@ bl_ui/properties_data_light/__init__.pyi,sha256=Q4jh6kmNDqhw5u3An4gSPhlPnzMZMUb-
145
145
  bl_ui/properties_data_lightprobe/__init__.pyi,sha256=micXmIresZ3nptUhIKrsUe7dMYQkTd-H2SMi-kkMysg,10705
146
146
  bl_ui/properties_data_mesh/__init__.pyi,sha256=hWBZZPK5TqPdyBAfBdRHRyGNmPbHLDiYGpOpigonZDo,16244
147
147
  bl_ui/properties_data_metaball/__init__.pyi,sha256=GTLKKm2LsSSnLGT4axvIaxl6kfRumd5jEbstYckuVhE,4766
148
- bl_ui/properties_data_modifier/__init__.pyi,sha256=HqgCrPaTqXZAypGbeLujJh5bN79UyiR5ZyEVrk2ZArM,7644
148
+ bl_ui/properties_data_modifier/__init__.pyi,sha256=6qpCFhrlQZqDXa_RPgar562kHiBiCokFtq5umFJX2ac,6878
149
149
  bl_ui/properties_data_pointcloud/__init__.pyi,sha256=k_kGJpcpz11D2Rhs_9kR-P4Rw4SRhi2iC-rau-DxagE,4239
150
150
  bl_ui/properties_data_shaderfx/__init__.pyi,sha256=qheRKCM-zgYYTypVdyJrjqgmD1yBXQVlsrlWUwoHsFg,859
151
151
  bl_ui/properties_data_speaker/__init__.pyi,sha256=YRayS4IxkfcvwOAJlqfSL4kjzBcaqo3gf-hmM0fcVeo,4857
@@ -282,7 +282,7 @@ bpy/ops/screen/__init__.pyi,sha256=brjCQalre8Km7BxXPI6t0j3NBggA1IrsiOwNZ9AmhKc,2
282
282
  bpy/ops/script/__init__.pyi,sha256=qJGs4LY_-NgCKFwGkOBwvig0LFr5v72A9nL-LQ21HrY,1460
283
283
  bpy/ops/sculpt/__init__.pyi,sha256=AqO49L2EOUpUl-jJLNSsUcxu33hdALWR-skG7Ng4_T4,52493
284
284
  bpy/ops/sculpt_curves/__init__.pyi,sha256=dyJOC29OHfquU-sfY9onBzJfAykEmiugfIPF-oO7ENU,3461
285
- bpy/ops/sequencer/__init__.pyi,sha256=4UqqgkCzGRJ2UYYhBJO6H4DRwCCvPB2vaKGvrYAS2-w,87901
285
+ bpy/ops/sequencer/__init__.pyi,sha256=A7GGFSDW_F86v_d8Wd9E5Mo2RueXD4Bpz_ytbyj_bNE,88692
286
286
  bpy/ops/sound/__init__.pyi,sha256=4j-hBCD71S55-TJ9r6307tdu4s_VRLhq_RdpdgXbako,17940
287
287
  bpy/ops/spreadsheet/__init__.pyi,sha256=Nmr0N99wGYPusUlQC4WGJf2E3WETSGDLjnyGZ9yHQUc,2003
288
288
  bpy/ops/surface/__init__.pyi,sha256=hWXTtX4irgUJXJzgBqM5aHqV04qpu6h0pN0YMGJKE2c,11250
@@ -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=Y3CAwyjbxRJ5bgZyOqFZZyZDuRoLbbKUnouaT0OAUFg,5628348
303
+ bpy/types/__init__.pyi,sha256=rBdZbjIU86ptB5nZqt6LkSEXRkF3_pR7zosma-BnGaY,5628854
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
@@ -371,7 +371,7 @@ mathutils/geometry/__init__.pyi,sha256=0zip3XQVFWaYQFyF5LWiFYP6zdU31SLJHq2BEymli
371
371
  mathutils/interpolate/__init__.pyi,sha256=nkP4MKX_cRjTbiXBtnZ6qi0eKyCzD3MNSwL4YvknABU,354
372
372
  mathutils/kdtree/__init__.pyi,sha256=nVAhyduLex6fTfxBhVRwudTbdOElbYXZjVUG1P-zgTA,1601
373
373
  mathutils/noise/__init__.pyi,sha256=YjVyhOr2LpaOINyz6s2werSFOJFT8gH2hcZRg2VTVTo,12626
374
- nodeitems_builtins/__init__.pyi,sha256=gRwW_X7_tLGgO61KqtWfQKCrN67pI1P53HotRBFwD9k,608
374
+ nodeitems_builtins/__init__.pyi,sha256=BOoYcQ2Jmn_o1X4y7fqYUWNd2pyul7WMz6cCYH7y6Z0,432
375
375
  nodeitems_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
376
376
  nodeitems_utils/__init__.pyi,sha256=F82sRq2Foowt3d9IUxloVB_qg7pTQP5w8qYvMJhwvFs,747
377
377
  nodeitems_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -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-20241216.dist-info/METADATA,sha256=pobcSXbC_aKUA6_BPg-qX8IOoPdkJlGR5-ONgRpr4Kc,4794
387
- fake_bge_module_latest-20241216.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
388
- fake_bge_module_latest-20241216.dist-info/top_level.txt,sha256=G2g8DM6N1EXHQhWiW_lc0Dp7Tmqpop00oo_f2rdLQOU,520
389
- fake_bge_module_latest-20241216.dist-info/RECORD,,
386
+ fake_bge_module_latest-20241218.dist-info/METADATA,sha256=buMXGP3Sf7OkwbwHV5NjbNbTTKd2KrA0bFj4sKSXSnk,4794
387
+ fake_bge_module_latest-20241218.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
388
+ fake_bge_module_latest-20241218.dist-info/top_level.txt,sha256=G2g8DM6N1EXHQhWiW_lc0Dp7Tmqpop00oo_f2rdLQOU,520
389
+ fake_bge_module_latest-20241218.dist-info/RECORD,,
@@ -20,9 +20,3 @@ class ShaderNodeCategory(SortedNodeCategory):
20
20
 
21
21
  :param context:
22
22
  """
23
-
24
- def group_input_output_item_poll(context): ...
25
- def group_tools_draw(_self, layout, _context): ...
26
- def node_group_items(context): ...
27
- def register(): ...
28
- def unregister(): ...