[code] Stage 4: Test Results without documentation & tests

main
Nikolay Petrov 2025-08-24 05:52:25 +05:00
parent 50206bb59d
commit 24e515e80d
24 changed files with 46 additions and 27 deletions

View File

@ -2,6 +2,7 @@
[/Script/EngineSettings.GameMapsSettings]
GameDefaultMap=/Engine/Maps/Templates/OpenWorld
GlobalDefaultGameMode=/Game/Blueprints/BP_TengriGameMode.BP_TengriGameMode_C
[/Script/Engine.RendererSettings]
r.AllowStaticLighting=False

BIN
Content/Blueprints/BP_MainCharacter.uasset (Stored with Git LFS)

Binary file not shown.

BIN
Content/Blueprints/BP_TengriGameMode.uasset (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
Content/Debug/UI/WBP_DebugHUD.uasset (Stored with Git LFS)

Binary file not shown.

BIN
Content/Debug/UI/WBP_TestResult.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Input/Actions/IA_Look.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Input/Actions/IA_Move.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Input/Enums/E_InputDeviceType.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Input/IMC_Default.uasset (Stored with Git LFS)

Binary file not shown.

BIN
Content/Levels/TestLevel.umap (Stored with Git LFS)

Binary file not shown.

Binary file not shown.

View File

@ -5,7 +5,7 @@
import {AddToArray, CreateWidget, GetGameTimeInSeconds, IsValid, Print, RemoveIndexFromArray} from "../../functions.js";
import {WBP_ToastContainer} from "../UI/WBP_ToastContainer.js";
import type {Float, Integer, Text} from "../../types.js";
import {E_MessageType} from "../Enums/E_MessageType.js";
import {E_MessageType} from "../../UI/Enums/E_MessageType.js";
import type {S_ToastMessage} from "../Structs/S_ToastMessage.js";
import type {S_ToastSettings} from "../Structs/S_ToastSettings.js";
import type {WBP_Toast} from "../UI/WBP_Toast.js";

Binary file not shown.

BIN
Content/Toasts/Enums/E_MessageType.uasset (Stored with Git LFS)

Binary file not shown.

View File

@ -1,7 +1,7 @@
// Content/Toasts/Structs/S_ToastMessage.ts
import type {Float, Integer, Text} from "../../types.js";
import type {E_MessageType} from "../Enums/E_MessageType.js";
import type {E_MessageType} from "../../UI/Enums/E_MessageType.js";
export interface S_ToastMessage {
ID: Integer;

Binary file not shown.

View File

@ -1,7 +1,7 @@
// Content/Toasts/UI/WBP_Toast.ts
import {Border, TextBox, Widget} from "../../classes.js";
import {E_MessageType} from "../Enums/E_MessageType.js";
import {E_MessageType} from "../../UI/Enums/E_MessageType.js";
import type {Color, Text} from "../../types.js";
import {IsValid} from "../../functions.js";

BIN
Content/Toasts/UI/WBP_Toast.uasset (Stored with Git LFS)

Binary file not shown.

View File

@ -3,7 +3,7 @@
import {VerticalBox, Widget} from "../../classes.js";
import {ESlateVisibility} from "../../enums.js";
import type {Text} from "../../types.js";
import type {E_MessageType} from "../Enums/E_MessageType.js";
import type {E_MessageType} from "../../UI/Enums/E_MessageType.js";
import {WBP_Toast} from "./WBP_Toast.js";
import {AddToArray, CreateWidget, IsValid, RemoveItemFromArray} from "../../functions.js";

Binary file not shown.

BIN
Content/UI/Enums/E_MessageType.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/UI/Libraries/FL_Colors.uasset (Stored with Git LFS) Normal file

Binary file not shown.