This commit is contained in:
DepressedTWM 2026-08-21 11:00:17 +04:00
parent 784bd1006c
commit 20c4c61614
2 changed files with 10 additions and 1 deletions

View file

@ -20,6 +20,7 @@ module Settings
:scaling_mode => 0,
:vsync => 0,
:max_firefly_count => 30,
:max_shrimp_count => 0,
:footprints => true,
:footsplashes => true,
@ -256,6 +257,14 @@ class Window_Settings
:min => 0,
:max => 30
},
{
:type => :slider,
:name => "Density of shrims (!EXPEREMENTAL!)",
:parameter => :max_shrimp_count,
:icon => [1, 1],
:min => 0,
:max => 80
},
{
:type => :bool,
:name => "Footprints",

View file

@ -263,7 +263,7 @@ class Spriteset_Map
layer = :front
when :shrimp
klass = Particle_Shrimp
count = 80
count = Settings[:max_shrimp_count]
layer = :back
else
raise 'invalid particle type'