Skip to main content

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

10/10, absurdly fun gameplay and I the feel to everything is great! I've been looking into slowing down time for future project, how did you do it? Is it "just" setting timescale? I got mad hyped as soon as I saw the flesh battle blade with 4 legs and an eye!

(3 edits)

The way we did it in this project is by setting Time.timescale.
We used DoTween in this project so I just used a tween to slow it down. (Smooths the slowdown effect a bit)

I found that slowing down timescale caused stuttering in the motion of the blades, so I also slowed down FixedDeltaTime proportional to the timescale.
The Unity docs describe how to adjust FixedDeltaTime  while adjusting timescale 
-> https://docs.unity3d.com/2021.3/Documentation/ScriptReference/Time-timeScale.htm...

I hope this helped <3

ps. Adjusting the timescale also slows down the audio so we got a speed ramp sound for free ;)

(+1)

Thanks a lot for the answer, it really helped! <3