Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)
Hero = {}
Hero.vulnerable = true -- peut etre touché vrai/faux
Herovie = Hero.timerVulneralbe

function love.update(dt)
 if tirCollide(Hero) then
  if Hero.vulnerable then
   Hero.vie = Hero.vie - 1
   Herovulnerable = false
  else
   Hero.timerVulneralbe =    Hero.timerVulneralbe + 60*dt
   if Hero.timerVulneralbe >= 30 then
   Hero.timerVulneralbe = 0
   Herovulnerable = true
  end
 end
end

Merci de la proposition, mais je viens juste de publier l'update où j'implémente la fonction ;)