Status
SteamPeaks
ChartsSalesUpcomingPatchesNewsCalculator
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
NewsSteam's own announcements 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 festsUpcomingPatchesNewsRecordsTrendingSignals
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 DemoNewsDevlog: A Place to Mess Around
Community

Devlog: A Place to Mess Around

Droning On Demo · published 23 May 2026, 20:27 UTC

All newsPlayers around this dateRead on Steam

Most of Droning On is structured. The Bootcamp mode teaches you the language one concept at a time. Puzzle mode hands you a problem that requires unique solutions. Endurance throws the maze-solving problem at you in a way that gives you an endless stream of challenges. All of that is great, but none of it is the kind of space where you can just... try things.

The Sandbox

The Sandbox is a single open level with no objective, no timer, and no failure state. It's split into a few themed zones, each built around a different category of mechanic. Most things in the level have a reset button right next to them, so once you've solved (or broken) something, you can reset them without needing to reload the level.

  • Hazard Zone: Every hazard in the game is grouped into one zone. Want to see what move() does when you walk straight into a spike trap? Now you can, on purpose, as many times as you want.

  • Interactable Zone: Stations, barriers, switches, sliding tiles, and everything else Gizmo can interact with. Each complex interaction (sliding tiles, match cards, minesweeper) has a button next to it to easily reset it - re-randomizing it each time. A good place to test scripts that need to get the state of an interactable, or try solving algorithms in a smaller space.

  • Maze Zone: A regeneratable maze for simple pathfinding scripts. Each maze entrance has a button that generates a new layout within the bounds of that section. Useful when you want to know if your solution actually generalizes or if it just happens to work for the layout you wrote it for.

  • Theater Zone: A staging area with green/blue screen toggles and a skybox toggle button. Mostly, it's there for screenshots and showing off.

Why?

Programming is a discipline you learn better by doing. You can read about a function all day, but you don't actually understand it until you've tried to use it in practice. The structured parts of Droning On are great at guiding that process, but they're also, by design, on rails. The sandbox is the one place that isn't.

It's the place where you can pull a function out of its context and see how it behaves. Run the same script against five different maze layouts, step into a hazard, and see what happens. Loop a beep() because it's funny or make bit-style music. Sometimes, the most useful thing someone can do is poke at a mechanic until they understand it, and there should be a space that allows for that.

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 news
Community5 Sep 2026Devlog: Skip AheadBootcamp 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 alrea…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…