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

View File

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