Increased sprite limit

master
Mark 2023-12-27 20:14:42 -08:00
parent c09974ba67
commit 3f92e62724
Signed by: Mark
GPG Key ID: C6D63995FE72FD80
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ use cgmath::Matrix4;
// We can draw at most this many sprites on the screen. // We can draw at most this many sprites on the screen.
// TODO: compile-time option // TODO: compile-time option
pub const SPRITE_INSTANCE_LIMIT: u64 = 100; pub const SPRITE_INSTANCE_LIMIT: u64 = 500;
// Must be small enough to fit in an i32 // Must be small enough to fit in an i32
pub const STARFIELD_INSTANCE_LIMIT: u64 = consts::STARFIELD_COUNT * 24; pub const STARFIELD_INSTANCE_LIMIT: u64 = consts::STARFIELD_COUNT * 24;