This commit is contained in:
2025-01-06 23:31:47 +03:00
parent d3b899ba93
commit 2061eb9347
14 changed files with 114 additions and 255718 deletions

View File

@@ -10,9 +10,4 @@
<ProjectReference Include="..\Engine\Engine.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="asset\model\" />
<Folder Include="data\" />
</ItemGroup>
</Project>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

File diff suppressed because it is too large Load Diff

View File

@@ -2,7 +2,6 @@
using DoomDeathmatch.Component.MVC.Timer;
using DoomDeathmatch.Component.UI;
using DoomDeathmatch.Scene.GameOver;
using DoomDeathmatch.Scene.Play;
using Engine.Input;
using Engine.Util;

View File

@@ -60,8 +60,12 @@ public class TextInputComponent : Engine.Scene.Component.Component
}
else
{
Input += key.GetChar();
invoke = true;
var charCode = key.GetChar();
if (charCode != '\0')
{
Input += charCode;
invoke = true;
}
}
if (invoke)

View File

@@ -1,5 +1,4 @@
using DoomDeathmatch.Scene;
using DoomDeathmatch.Scene.Main;
using DoomDeathmatch.Scene.Main;
namespace DoomDeathmatch;

View File

@@ -1,13 +1,9 @@
using System.Text.Json;
using DoomDeathmatch.Component.UI;
using DoomDeathmatch.Component.Util;
using DoomDeathmatch.Component.UI;
using DoomDeathmatch.Scene.Play;
using DoomDeathmatch.Script.Score;
using DoomDeathmatch.Script.UI;
using Engine.Graphics.Pipeline;
using Engine.Scene;
using Engine.Scene.Component.BuiltIn;
using Engine.Scene.Component.BuiltIn.Renderer;
using Engine.Util;
using OpenTK.Mathematics;