fake-bge-module-latest 20241218__py3-none-any.whl → 20241220__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.
- bl_ui/space_sequencer/__init__.pyi +25 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +1 -0
- bpy/ops/sequencer/__init__.pyi +164 -0
- bpy/props/__init__.pyi +1 -0
- bpy/types/__init__.pyi +14 -0
- {fake_bge_module_latest-20241218.dist-info → fake_bge_module_latest-20241220.dist-info}/METADATA +1 -1
- {fake_bge_module_latest-20241218.dist-info → fake_bge_module_latest-20241220.dist-info}/RECORD +10 -10
- nodeitems_builtins/__init__.pyi +3 -0
- {fake_bge_module_latest-20241218.dist-info → fake_bge_module_latest-20241220.dist-info}/WHEEL +0 -0
- {fake_bge_module_latest-20241218.dist-info → fake_bge_module_latest-20241220.dist-info}/top_level.txt +0 -0
|
@@ -857,6 +857,31 @@ class SEQUENCER_MT_strip_retiming(bpy.types.Menu):
|
|
|
857
857
|
:param context:
|
|
858
858
|
"""
|
|
859
859
|
|
|
860
|
+
class SEQUENCER_MT_strip_text(bpy.types.Menu):
|
|
861
|
+
bl_label: typing.Any
|
|
862
|
+
bl_rna: typing.Any
|
|
863
|
+
id_data: typing.Any
|
|
864
|
+
|
|
865
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
866
|
+
"""
|
|
867
|
+
|
|
868
|
+
:return: The RNA type or default when not found.
|
|
869
|
+
:rtype: bpy.types.Struct
|
|
870
|
+
"""
|
|
871
|
+
|
|
872
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
873
|
+
"""
|
|
874
|
+
|
|
875
|
+
:return: The class or default when not found.
|
|
876
|
+
:rtype: typing.Any
|
|
877
|
+
"""
|
|
878
|
+
|
|
879
|
+
def draw(self, context):
|
|
880
|
+
"""
|
|
881
|
+
|
|
882
|
+
:param context:
|
|
883
|
+
"""
|
|
884
|
+
|
|
860
885
|
class SEQUENCER_MT_strip_transform(bpy.types.Menu):
|
|
861
886
|
bl_label: typing.Any
|
|
862
887
|
bl_rna: typing.Any
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -2331,6 +2331,170 @@ def swap_inputs(
|
|
|
2331
2331
|
:type undo: bool | None
|
|
2332
2332
|
"""
|
|
2333
2333
|
|
|
2334
|
+
def text_cursor_move(
|
|
2335
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2336
|
+
execution_context: int | str | None = None,
|
|
2337
|
+
undo: bool | None = None,
|
|
2338
|
+
*,
|
|
2339
|
+
type: typing.Literal[
|
|
2340
|
+
"LINE_BEGIN",
|
|
2341
|
+
"LINE_END",
|
|
2342
|
+
"TEXT_BEGIN",
|
|
2343
|
+
"TEXT_END",
|
|
2344
|
+
"PREVIOUS_CHARACTER",
|
|
2345
|
+
"NEXT_CHARACTER",
|
|
2346
|
+
"PREVIOUS_WORD",
|
|
2347
|
+
"NEXT_WORD",
|
|
2348
|
+
"PREVIOUS_LINE",
|
|
2349
|
+
"NEXT_LINE",
|
|
2350
|
+
]
|
|
2351
|
+
| None = "LINE_BEGIN",
|
|
2352
|
+
select_text: bool | None = False,
|
|
2353
|
+
):
|
|
2354
|
+
"""Move cursor in text
|
|
2355
|
+
|
|
2356
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2357
|
+
:type execution_context: int | str | None
|
|
2358
|
+
:type undo: bool | None
|
|
2359
|
+
:param type: Type, Where to move cursor to, to make a selection
|
|
2360
|
+
:type type: typing.Literal['LINE_BEGIN','LINE_END','TEXT_BEGIN','TEXT_END','PREVIOUS_CHARACTER','NEXT_CHARACTER','PREVIOUS_WORD','NEXT_WORD','PREVIOUS_LINE','NEXT_LINE'] | None
|
|
2361
|
+
:param select_text: Select Text, Select text while moving cursor
|
|
2362
|
+
:type select_text: bool | None
|
|
2363
|
+
"""
|
|
2364
|
+
|
|
2365
|
+
def text_cursor_set(
|
|
2366
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2367
|
+
execution_context: int | str | None = None,
|
|
2368
|
+
undo: bool | None = None,
|
|
2369
|
+
*,
|
|
2370
|
+
select_text: bool | None = False,
|
|
2371
|
+
):
|
|
2372
|
+
"""Set cursor position in text
|
|
2373
|
+
|
|
2374
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2375
|
+
:type execution_context: int | str | None
|
|
2376
|
+
:type undo: bool | None
|
|
2377
|
+
:param select_text: Select Text, Select text while moving cursor
|
|
2378
|
+
:type select_text: bool | None
|
|
2379
|
+
"""
|
|
2380
|
+
|
|
2381
|
+
def text_delete(
|
|
2382
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2383
|
+
execution_context: int | str | None = None,
|
|
2384
|
+
undo: bool | None = None,
|
|
2385
|
+
*,
|
|
2386
|
+
type: typing.Literal["NEXT_OR_SELECTION", "PREVIOUS_OR_SELECTION"]
|
|
2387
|
+
| None = "NEXT_OR_SELECTION",
|
|
2388
|
+
):
|
|
2389
|
+
"""Delete text at cursor position
|
|
2390
|
+
|
|
2391
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2392
|
+
:type execution_context: int | str | None
|
|
2393
|
+
:type undo: bool | None
|
|
2394
|
+
:param type: Type, Which part of the text to delete
|
|
2395
|
+
:type type: typing.Literal['NEXT_OR_SELECTION','PREVIOUS_OR_SELECTION'] | None
|
|
2396
|
+
"""
|
|
2397
|
+
|
|
2398
|
+
def text_deselect_all(
|
|
2399
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2400
|
+
execution_context: int | str | None = None,
|
|
2401
|
+
undo: bool | None = None,
|
|
2402
|
+
):
|
|
2403
|
+
"""Deselect all characters
|
|
2404
|
+
|
|
2405
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2406
|
+
:type execution_context: int | str | None
|
|
2407
|
+
:type undo: bool | None
|
|
2408
|
+
"""
|
|
2409
|
+
|
|
2410
|
+
def text_edit_copy(
|
|
2411
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2412
|
+
execution_context: int | str | None = None,
|
|
2413
|
+
undo: bool | None = None,
|
|
2414
|
+
):
|
|
2415
|
+
"""Copy text to clipboard
|
|
2416
|
+
|
|
2417
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2418
|
+
:type execution_context: int | str | None
|
|
2419
|
+
:type undo: bool | None
|
|
2420
|
+
"""
|
|
2421
|
+
|
|
2422
|
+
def text_edit_cut(
|
|
2423
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2424
|
+
execution_context: int | str | None = None,
|
|
2425
|
+
undo: bool | None = None,
|
|
2426
|
+
):
|
|
2427
|
+
"""Cut text to clipboard
|
|
2428
|
+
|
|
2429
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2430
|
+
:type execution_context: int | str | None
|
|
2431
|
+
:type undo: bool | None
|
|
2432
|
+
"""
|
|
2433
|
+
|
|
2434
|
+
def text_edit_mode_toggle(
|
|
2435
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2436
|
+
execution_context: int | str | None = None,
|
|
2437
|
+
undo: bool | None = None,
|
|
2438
|
+
):
|
|
2439
|
+
"""Toggle text editing
|
|
2440
|
+
|
|
2441
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2442
|
+
:type execution_context: int | str | None
|
|
2443
|
+
:type undo: bool | None
|
|
2444
|
+
"""
|
|
2445
|
+
|
|
2446
|
+
def text_edit_paste(
|
|
2447
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2448
|
+
execution_context: int | str | None = None,
|
|
2449
|
+
undo: bool | None = None,
|
|
2450
|
+
):
|
|
2451
|
+
"""Paste text to clipboard
|
|
2452
|
+
|
|
2453
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2454
|
+
:type execution_context: int | str | None
|
|
2455
|
+
:type undo: bool | None
|
|
2456
|
+
"""
|
|
2457
|
+
|
|
2458
|
+
def text_insert(
|
|
2459
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2460
|
+
execution_context: int | str | None = None,
|
|
2461
|
+
undo: bool | None = None,
|
|
2462
|
+
*,
|
|
2463
|
+
string: str = "",
|
|
2464
|
+
):
|
|
2465
|
+
"""Insert text at cursor position
|
|
2466
|
+
|
|
2467
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2468
|
+
:type execution_context: int | str | None
|
|
2469
|
+
:type undo: bool | None
|
|
2470
|
+
:param string: String, String to be inserted at cursor position
|
|
2471
|
+
:type string: str
|
|
2472
|
+
"""
|
|
2473
|
+
|
|
2474
|
+
def text_line_break(
|
|
2475
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2476
|
+
execution_context: int | str | None = None,
|
|
2477
|
+
undo: bool | None = None,
|
|
2478
|
+
):
|
|
2479
|
+
"""Insert line break at cursor position
|
|
2480
|
+
|
|
2481
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2482
|
+
:type execution_context: int | str | None
|
|
2483
|
+
:type undo: bool | None
|
|
2484
|
+
"""
|
|
2485
|
+
|
|
2486
|
+
def text_select_all(
|
|
2487
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2488
|
+
execution_context: int | str | None = None,
|
|
2489
|
+
undo: bool | None = None,
|
|
2490
|
+
):
|
|
2491
|
+
"""Select all characters
|
|
2492
|
+
|
|
2493
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2494
|
+
:type execution_context: int | str | None
|
|
2495
|
+
:type undo: bool | None
|
|
2496
|
+
"""
|
|
2497
|
+
|
|
2334
2498
|
def unlock(
|
|
2335
2499
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2336
2500
|
execution_context: int | str | None = None,
|
bpy/props/__init__.pyi
CHANGED
|
@@ -578,6 +578,7 @@ def PointerProperty(
|
|
|
578
578
|
:param tags: Enumerator of tags that are defined by parent class.
|
|
579
579
|
:param poll: function to be called to determine whether an item is valid for this property.
|
|
580
580
|
The function must take 2 values (self, object) and return Bool.
|
|
581
|
+
Note that the poll return value will be checked only when assigning an item from the UI, but it is still possible to assign an "invalid" item to the property directly.
|
|
581
582
|
:type poll: collections.abc.Callable | None
|
|
582
583
|
:param update: Function to be called when this value is modified,
|
|
583
584
|
This function must take 2 values (self, context) and return None.
|
bpy/types/__init__.pyi
CHANGED
|
@@ -229538,6 +229538,12 @@ class ThemeSequenceEditor(bpy_struct):
|
|
|
229538
229538
|
:type: mathutils.Color
|
|
229539
229539
|
"""
|
|
229540
229540
|
|
|
229541
|
+
selected_text: bpy_prop_array[float]
|
|
229542
|
+
""" Text strip editing selection
|
|
229543
|
+
|
|
229544
|
+
:type: bpy_prop_array[float]
|
|
229545
|
+
"""
|
|
229546
|
+
|
|
229541
229547
|
space: ThemeSpaceGeneric
|
|
229542
229548
|
""" Settings for space
|
|
229543
229549
|
|
|
@@ -229556,6 +229562,12 @@ class ThemeSequenceEditor(bpy_struct):
|
|
|
229556
229562
|
:type: mathutils.Color
|
|
229557
229563
|
"""
|
|
229558
229564
|
|
|
229565
|
+
text_strip_cursor: bpy_prop_array[float]
|
|
229566
|
+
""" Text strip editing cursor
|
|
229567
|
+
|
|
229568
|
+
:type: bpy_prop_array[float]
|
|
229569
|
+
"""
|
|
229570
|
+
|
|
229559
229571
|
time_marker_line: bpy_prop_array[float]
|
|
229560
229572
|
"""
|
|
229561
229573
|
|
|
@@ -244505,6 +244517,8 @@ SEQUENCER_MT_strip_movie: bl_ui.space_sequencer.SEQUENCER_MT_strip_movie
|
|
|
244505
244517
|
|
|
244506
244518
|
SEQUENCER_MT_strip_retiming: bl_ui.space_sequencer.SEQUENCER_MT_strip_retiming
|
|
244507
244519
|
|
|
244520
|
+
SEQUENCER_MT_strip_text: bl_ui.space_sequencer.SEQUENCER_MT_strip_text
|
|
244521
|
+
|
|
244508
244522
|
SEQUENCER_MT_strip_transform: bl_ui.space_sequencer.SEQUENCER_MT_strip_transform
|
|
244509
244523
|
|
|
244510
244524
|
SEQUENCER_MT_view: bl_ui.space_sequencer.SEQUENCER_MT_view
|
{fake_bge_module_latest-20241218.dist-info → fake_bge_module_latest-20241220.dist-info}/RECORD
RENAMED
|
@@ -187,13 +187,13 @@ bl_ui/space_nla/__init__.pyi,sha256=uT7nGRBlJlDS-wYZGGGuMs17DK-_XsYoa1qkop7ZVyM,
|
|
|
187
187
|
bl_ui/space_node/__init__.pyi,sha256=Xt9bLUvCW9iWdm7PI972n2pUebqYNkN8UfcPdsaonpI,18027
|
|
188
188
|
bl_ui/space_outliner/__init__.pyi,sha256=o_7H2lQtpKIncGyBU2lL7SHOp-emrqicrRoOBkjwMIg,8090
|
|
189
189
|
bl_ui/space_properties/__init__.pyi,sha256=U4lQ2UupgDfM0RBCSQrI-MlmNG2pOtBxwn5gED-7jzU,2708
|
|
190
|
-
bl_ui/space_sequencer/__init__.pyi,sha256=
|
|
190
|
+
bl_ui/space_sequencer/__init__.pyi,sha256=majDM6-RLT5xfu4BZHiVlqQzVXu08qIStiQ-3Nv5nJk,55215
|
|
191
191
|
bl_ui/space_spreadsheet/__init__.pyi,sha256=FcAaZ7hZHyyk9EmM8YuVaDZhFFafRUPbrnXftJ74xMY,1450
|
|
192
192
|
bl_ui/space_statusbar/__init__.pyi,sha256=uz_efXSX0cK9jOf_V-GCveZ1JWid8rae4wYEvLZ3QkY,613
|
|
193
193
|
bl_ui/space_text/__init__.pyi,sha256=1aSfU5sGr_d229bH1QMwLPCcrTpGjWIpvPzb4Tu7ueY,9868
|
|
194
194
|
bl_ui/space_time/__init__.pyi,sha256=CsHClliVjg_FdPpaJzh2EgWkPTMZ0-_l0DCEXhx0fP8,4723
|
|
195
195
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLBFC8ORj0S5ZWcs,3185
|
|
196
|
-
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=
|
|
196
|
+
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=amIcQArvjsuZ7iHNMO3EETPZ1LXkSGRjIwTLtqDkJbk,9946
|
|
197
197
|
bl_ui/space_topbar/__init__.pyi,sha256=tVupsHc6IdA1o_axDcB1Cbf0o8ARZzgLncMXgguQnWY,15316
|
|
198
198
|
bl_ui/space_userpref/__init__.pyi,sha256=iLYc94VUBgP3dE6whoVFktEjvqAE-oLGDbtey9Y4L0E,79675
|
|
199
199
|
bl_ui/space_view3d/__init__.pyi,sha256=rEdRAL_GqVB9ZENgJZg8GgfZUJbn66MJ8juZuLyOBb4,155552
|
|
@@ -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=
|
|
285
|
+
bpy/ops/sequencer/__init__.pyi,sha256=lcxXricEmh9e-8rNoPj4ruSaErhiCtOvehlFFm3V3uE,94019
|
|
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
|
|
@@ -299,8 +299,8 @@ bpy/ops/wm/__init__.pyi,sha256=qZIVpmo960-MeNzY2luRjFGcQaZLO4M0BnjtvY3Zcx8,23223
|
|
|
299
299
|
bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJY,3133
|
|
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
|
-
bpy/props/__init__.pyi,sha256=
|
|
303
|
-
bpy/types/__init__.pyi,sha256=
|
|
302
|
+
bpy/props/__init__.pyi,sha256=Do_cp_VuSfmXp66VbLhesCH-sI_OgR5St-TpauUFo1c,30889
|
|
303
|
+
bpy/types/__init__.pyi,sha256=h4aI6TA3EBfJD5MNBnA1v27G0KsvB4MfEYprLbhLK6k,5629169
|
|
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=
|
|
374
|
+
nodeitems_builtins/__init__.pyi,sha256=UEiW_FT6HF0dl6FrM3-n3OnTE1SiufVzyyLjCsGCqPc,475
|
|
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-
|
|
387
|
-
fake_bge_module_latest-
|
|
388
|
-
fake_bge_module_latest-
|
|
389
|
-
fake_bge_module_latest-
|
|
386
|
+
fake_bge_module_latest-20241220.dist-info/METADATA,sha256=wQ3eyjE1vjUNAVr9z8bHLb58Q3BERbXoq1djQ2bzy7Y,4794
|
|
387
|
+
fake_bge_module_latest-20241220.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
388
|
+
fake_bge_module_latest-20241220.dist-info/top_level.txt,sha256=G2g8DM6N1EXHQhWiW_lc0Dp7Tmqpop00oo_f2rdLQOU,520
|
|
389
|
+
fake_bge_module_latest-20241220.dist-info/RECORD,,
|
nodeitems_builtins/__init__.pyi
CHANGED
{fake_bge_module_latest-20241218.dist-info → fake_bge_module_latest-20241220.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|