Status
SteamPeaks
ChartsSalesUpcomingPatchesEventsCalculator
New on SteamEvery app, DLC and depot the minute Steam creates itAppsEvery app on Steam, newest change firstPackagesSubs and bundles, and what each containsDepotsDepots, manifests and install sizesTagsSteam's user tags and the games under themDevelopers & publishersCompanies and their cataloguesTechnologiesEngines, SDKs and anti-cheat found in the filesChange historyEvery PICS changelist as it lands
SignalsNineteen readings of the whole catalogueCompareAny games side by sideRecordsAll-time peaks and the days they were setReportsWeekly and monthly write-upsAlerts & newsroomWatch a game, get told when it movesSteam statusIs Steam up, right nowWeb API explorerTry the endpoints in the browser
EventsSteam's own events and the sales calendarCalculatorWhat a Steam account is worth, and its pile of shame
/
Sign in
/
SteamPeaks
The ultimate resource for Steam data.
ExploreChartsSalesSales and festsUpcomingPatchesEventsRecordsTrendingSignals
DatabaseAppsPackagesDepotsTagsDevelopersTechnologiesChange history
ToolsCalculatorCompareSearchAlertsSteam statusAPI
SiteMethodologyFAQDiscordSupportSign in via Steam
Not affiliated with Valve or Steam. Game names and artwork belong to their owners. All times UTC.
PrivacyCookiesFair useStatus
Droning On Demo›Events›Devlog: Skip Ahead
Community

Devlog: Skip Ahead

Droning On Demo · published 5 Sep 2026, 19:00 UTC

All eventsPlayers around this dateRead on Steam

Bootcamp is twenty levels long, and it's the front door to everything else in Droning On. Puzzle Mode is behind it. Endurance Mode is behind it. So are the feature unlocks — collections, interactables, hazard detection, functions, classes — which the game hands you one chapter at a time as you earn them.

That's the right structure for someone learning to code. It is a wall for someone who already can. If you write software for a living, being asked to demonstrate a while loop before the game will let you into the more exciting modes. That's not fun; we want fun.

So Bootcamp now has a skip button.

Per Chapter, In Order

The skip isn't one button that eats the whole tutorial. Bootcamp is split into eight chapters — Movement Basics, Detection and Timing, Energy Management, Loops and Patterns, Collections and Scanning, Interactables, Hazards, and Final Integration — and each one has its own skip control on its header.

It works sequentially. A chapter's button only becomes active once everything before it is finished, whether you finished it by playing or by skipping. So you can take the first three chapters at a walk, decide you know exactly how energy budgeting is going to go, skip that one, and keep playing from there. Skipping the entire tutorial is possible; it's eight deliberate clicks, in order, and each one asks you to confirm.

Skipping a chapter still grants everything that chapter teaches. The syntax and functions it would have unlocked get unlocked, and the game shows you the same unlock screen you'd have gotten by earning them, because arriving in Puzzle Mode without the tools the tutorial hands out would make the skip a trap rather than a shortcut.

What A Skip Costs You

This is the part I spent the most time on, because a skip that costs nothing is just a cheat code.

A skipped level is marked complete with deliberately worst-case stats: the slowest possible time, and no energy left over. It counts for progression and nothing else. You didn't beat my developer-best targets, so those payouts stay unclaimed. And critically, a skipped level's time never touches the leaderboards. That's not a display filter; the level carries a flag that says it was skipped, and the upload path refuses it.

Replay a skipped level for real, and the flag clears, the genuine time is recorded, and it uploads like any other run. Since a skip records the worst possible result, any real attempt is an improvement. Nothing is permanently forfeited by skipping — it just stays unearned until you earn it.

The Achievement Question

This one I went back and forth on: should skipping the whole tutorial award the "beat Bootcamp" achievement?

I landed on yes. The achievement marks a gate you've passed, and a player who skipped Bootcamp has genuinely passed it; the entire premise of the feature is that they didn't need it. Being stingy here would mean an experienced player carries a permanent gap in their achievement list as punishment for already knowing the material, which is precisely the audience the feature exists for.

The separate achievement for beating my own developer times on Bootcamp is a different story. That one requires actually being faster than me, and worst-case stats will never clear that bar. Skip all you want; that one still has to be played.

Not In The Demo

Chapter skipping is a full-game feature. The demo is Bootcamp levels 1 through 10, the tutorial is the demo, and a skip button in it would be a button that skips the demo product. In demo builds, the control simply isn't there.

Bootcamp exists because most people who buy this game want to be taught. Some don't. Both of those are fine, and I want the game to be inviting to all who want to code.

Thanks for reading. As always, your feedback is welcome. If you haven't already, drop a wishlist and come hang out in the Discord. It's the best place to share feedback, follow development, and engage.

More from Droning On Demo

Other announcements

All events
Community22 Aug 2026Devlog: Bring Your Own EditorDroning On ships with a code editor. It has syntax highlighting, error underlines, a console, a run/stop button, and it is a perfectly good place to write a solution. It is also, if you are the kind of person who has opinions about editors like me, somebody else's editor. We developers, are fickle. So the scripts aren't locked inside it. They're plain .py files sitting in a folder on your disk,…Community8 Aug 2026Devlog: Puzzle ModeBootcamp teaches you the language one idea at a time. Endurance Mode drops you on a virtual treadmill and speeds it up until you fall off. Puzzle Mode is the thing in the middle, and it's the part of Droning On I've spent the most time actually designing levels. Each level is built around a single idea, each one waiting to see what you do with it. Thirteen Hand-Built Problems Every one of the t…Community25 Jul 2026Devlog: You're Being WatchedA Droning On level used to be a quiet place. Walls, hazards, a grid, and Gizmo, who doesn't move until your code tells him to. Good for concentrating. Bad for atmosphere, and worse for the thing I was after, which is the sense that your maze isn't sitting in a vacuum. It's a test. Something built it, something is watching how you do, and you are not the only robot in the building. So I added dr…