Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit) (+1)

Played through some levels, and couldn't seem to get past the level after killing the fish. Some tips for future games: 

- For the camera follow script or if you're using cinemachine, update the position in LateUpdate and not Update or FixedUpdate.

void LateUpdate()
{
    cameraTransform.position = newPosition;
}

And for the rocket particles, there is an option for the partciels to follow world space, and not local. So the particles won't rotate with the vehicle. The option is called SimulationSpace, and currently it's set to local. Just switch that over to World, and the particles should look a lot better ;)

yeah, unfortunately didn’t have time to make a lot of levels so there’s a serious difficulty spike. Thanks for playing!  Funny enough I’m pretty sure I did do the position logic in late update, the camera is definitely laggy and needed some work though lol, the game is not half as polished as I would have liked. The rocket tip is really helpful too, I put that PS in near the end and didn’t even realize that the particles were doing that since I was so rushed working on other pieces of the project haha, but next jam I’ll remember to mess with it as soon as I do it. 

(+1)

I recommend to cut every corner you possibly can when doing short jams like these. Don't make your own camera, just extend Cinemachine since it's a super good tool for easily customizable camera movement with lots of built in stuff like smoothing, camera shake etc. If you don't know how to extend it properly, you do the next best thing you do know how to do. Toggle on and off GameObjects! Use one cinemachine camera for the play/launch section, and just use the normal camera with movement and zoom for the building part. 

Think like a lazy programmer. 

I’ve never every heard of cinemachine, I’ll be sure to check it out before my next jam

It's made by Unity too ^^