This commit is contained in:
parent
784bd1006c
commit
20c4c61614
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Reference in New Issue