Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
A jam submission

QuackpocalypseView game page

Nuclear Duck going Global
Submitted by Kisielek (@DawKisiel), TCrier2022 — 1 hour, 5 minutes before the deadline
Add to collection

Play game

Quackpocalypse's itch.io page

Results

CriteriaRankScore*Raw Score
People's Choice#62.7502.750

Ranked from 4 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted

Getting the gravity script working is insane... Did that for one of my projects and it took days to get right.... nice work!

One idea for the objects that weren't facing the correct direction:

You can create a script that can attach to any of the components that spawn on the service. In the Start() function you can then calculate the direction between this object and the planet's center, so transform.position - planet.transform.position (could be the other way around) and then set this direction as the up vector of the object. That way your object will always point up :)