Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Obel_X

1
Posts
1
Following
A member registered Apr 02, 2019

Recent community posts

I see another issue in your code.   You  are dealing with the wrong Time.  command. You have to change  the following lines:
if(Time.deltaTime >   lastFire + fireDelay) to   if(Time.time >   lastFire + fireDelay)
and   lastFire = Time.deltaTime; to  lastFire = Time.time;