added command line, added basic character

This commit is contained in:
2025-06-12 00:17:59 +03:00
parent 64c0f41884
commit af4f0c3cad
65 changed files with 262985 additions and 304 deletions

View File

@@ -35,6 +35,7 @@ int assets_build()
build_shader("mesh_frag");
build_shader("mesh_vert");
build_shader("agx_comp");
build_shader("mesh_edge_detection_comp");
CUtlVector<CUtlString> python_args = {
"build/tools/makepak64.py",
CUtlString("build/%s/assets", szGameName),

View File

@@ -87,6 +87,7 @@ void main(uint3 threadId: SV_DispatchThreadID)
color = agxLook(color);
color = agxEotf(color);
color = pow(color,0.45);
color = clamp(color, 0, 1);
g_imageOut[coord] = float4(color,1);
};

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 863 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB