TAP M-roll created

pull/13/head
Ishaan Bhardwaj 2020-11-12 16:52:40 -05:00
parent 3b0fdba27d
commit 9f61b139fd
1 changed files with 1 additions and 8 deletions

View File

@ -305,16 +305,9 @@ MarathonA2Game.rollOpacityFunction = function(age)
else return 1 - (age - 240) / 60 end
end
MarathonA2Game.mRollOpacityFunction = function(age)
if age > 4 then return 0
else return 1 - age / 4 end
end
function MarathonA2Game:drawGrid(ruleset)
if self.clear and not (self.completed or self.game_over) then
if self:qualifiesForMRoll() then
self.grid:drawInvisible(self.mRollOpacityFunction)
else
if not self:qualifiesForMRoll() then
self.grid:drawInvisible(self.rollOpacityFunction)
end
else