Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
2f1b80c
Extra colours added from pull request
Nov 18, 2024
3f47df1
Add other pull request, the anti lag one
Nov 18, 2024
fcfd2e9
Fixed the UI graph bugs and game freeze
Nov 18, 2024
18553ac
Optimisations!
Nov 18, 2024
36d4ef9
Reduced hitching
Nov 18, 2024
3cd855e
Getbiodiversity and thread optimisations
Nov 18, 2024
7796bd8
Batching attempt
Nov 18, 2024
157b294
FPS Counter
Nov 19, 2024
fcdee32
Optimisation tests complete
Nov 19, 2024
93ba524
New loading screen!
Nov 19, 2024
97c2fed
Unused paramiter removed
Nov 19, 2024
c7bee57
Actually reduces Jitter
Nov 19, 2024
8e6ea5d
Small graph drawing optimisation
Nov 19, 2024
5db62b0
some floats turned into ints
Nov 19, 2024
4379d1f
most demanding part of the draw function found
Nov 19, 2024
9f71ced
small amount of debugging
Nov 19, 2024
f1f60f1
Fixed duplicates
Nov 19, 2024
78fc2fd
Made me commit it for some reason
Nov 19, 2024
5e16cfc
Revert debugging
Nov 19, 2024
9154bf2
Revert graph-breaking optimisation
Nov 21, 2024
1aa1cdd
Spider class optimisations
Nov 22, 2024
fc86464
Revert back to commit 3
Jan 18, 2025
650b9f9
Tiny changes
Jan 18, 2025
b157a53
Colour caching to improve performace
Jan 18, 2025
036c29b
Frame rate limit for consistent physics
Jan 18, 2025
2698d2f
timing checks
Jan 18, 2025
5e0da3b
Physics optimisations
Jan 18, 2025
a285782
Some more claude optimisation
Jan 18, 2025
c196de7
caching and batching
Jan 18, 2025
e116bdb
Spider colours tweaked!
Jan 19, 2025
c4bc14e
Comment updates
Jan 19, 2025
02d70ba
Optimised slightly
RohanDeBoss Mar 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Player.pde
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class Player{
float[] lag_coor;
float[] velo;
float FRICTION = 0.85;
float ACCEL = 2;
float ACCEL = 1.75;
float R_ACCEL = 0.05;
float THICKNESS = 11;
float EPS = 0.1;
Expand Down
Loading