feat: COLISIONS

This commit is contained in:
AfonsoCMSousa
2026-03-24 00:49:09 +00:00
parent 2b9aa3922e
commit 45ed43a968
4 changed files with 99 additions and 29 deletions
+1 -1
View File
@@ -21,6 +21,6 @@ void main() {
vec4 clip_pos = uMVP * vec4(aPos, 1.0);
gl_Position = clip_pos;
float base_size = 0.2 + size;
float base_size = 0.5 + (size * 2000);
gl_PointSize = max(1.0, base_size / clip_pos.w);
}