Re-implemented ambient light and bulb glow

This commit is contained in:
Mathew Velasquez 2015-11-22 18:44:06 -05:00
parent c0bf423bbf
commit 4c1dda76f6
5 changed files with 38 additions and 23 deletions

View file

@ -341,12 +341,6 @@ class Scene_Map
#--------------------------------------------------------------------------
# * Lighting operations
#--------------------------------------------------------------------------
def ambient
@spriteset.ambient
end
def ambient=(val)
@spriteset.ambient = val
end
def add_light(id, filename, intensity, x, y)
@spriteset.add_light(id, filename, intensity, x, y)
end
@ -356,9 +350,6 @@ class Scene_Map
def clear_lights
@spriteset.clear_lights
end
def fade_in_bulb
@spriteset.fade_in_bulb
end
#--------------------------------------------------------------------------
# * Particle operations
#--------------------------------------------------------------------------