made vs thingamabob

This commit is contained in:
OusmBlueNinja 2025-05-06 09:44:08 -05:00
parent 3aa23acd63
commit f43807a3a5
3 changed files with 16 additions and 1 deletions

2
.gitignore vendored
View File

@ -43,6 +43,7 @@
*.idb
*.pdb
# Kernel Module Compile Results
*.mod*
*.cmd
@ -51,4 +52,5 @@ modules.order
Module.symvers
Mkfile.old
dkms.conf
.vs/

View File

@ -16,6 +16,19 @@
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "linux-gcc-x64"
},
{
"name": "main",
"includePath": [
"${default}"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.22621.0",
"compilerPath": "cl.exe"
}
],
"version": 4

View File

@ -687,7 +687,7 @@ void Renderer::DrawAnimator(const AnimationComponent *anim, const core::types::V
entry.sprite = nullptr;
entry.texCoords = glm::vec4(uvMin.x, uvMin.y, uvMax.x, uvMax.y);
SortedDrawEntry drawEntry;
drawEntry.sprite = entry;