On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

The game is very fun, it doesn't need to have cool detailled sprites, i'm sure you could do a nice game with some basic art done by yourself, the turret system is nice to have, maybe focusing on that could help differentiate your game from vampire survivors. 

How did you do the trick that the game goes auto full screen when you first click? I want that for my game.

thanks for the kind words

>How did you do the trick that the game goes auto full screen when you first click? I want that for my game.

Funnily I'd rather it only did that in desktop builds, not web, and just never tracked it down to fix it since the build time is so long. Seems like the code is:

if ( [the save data for the toggle says to use windowed mode] ) {

    Screen.fullScreenMode = FullScreenMode.Windowed;

} else {

    Screen.SetResolution(Screen.currentResolution.width, Screen.currentResolution.height, FullScreenMode.FullScreenWindow);

}

And I just call that code when the game starts, and the save data defaults to fullscreen on.

I do not remember why I use Screen.SetResolution() instead of just "Screen.fullScreenMode = FullScreenMode.FullScreenWindow;" but I guess try both if you're not getting the results you want, lol