Honestly one of the best platformers I've played in years. I'm playing it on on a little handheld and it works a treat. The level design is consistently great, and I can't get over how deep (but still intuitive) the movement mechanics are. Wonderful game, highly recommended
john tringham
5
Posts
1
Topics
32
Followers
23
Following
A member registered Dec 15, 2015 · View creator page →
Creator of
Get Tardi the Tardigrade back to their home planet!!!!
Adventure
Play in browser
a short one player game about two player games #7DFPS
Interactive Fiction
Play in browser
Recent community posts
MasterPlan community » Suggestions · Created a new topic Setting to change the speed of the clock animation
Hi
Just a suggestion - the timer node on the 0.8 beta has a spinning clock animation, which is pretty cool - but for me it spins too fast and it's quite distracting, especially with a long-running timer. It would be good to have an option to make it complete a rotation once a minute rather than once a second.
I've hardcoded this change on my locally compiled version of masterplan - the change is on line 1603 of contents.go:
...
if tc.Running {
tc.StartButton.IconSrc.X = 144
tc.TimerValue += time.Duration(globals.DeltaTime * float32(time.Second))
tc.Pie.FillPercent += globals.DeltaTime / 60 // Change is here - just added "/ 60"
modeGroup := int(tc.Card.Properties.Get("mode group").AsFloat())
if tc.TimerValue > tc.MaxTime && modeGroup == 1 {
...
Another option would be to have it so the pie is representative of how much time is remaining for the timer - eg. if it's an hour long timer, and 15minutes has elapsed, then the pie would show 25%
Thanks!




