Steam Callback Pump Scaffold Generator
RunCallbacks placement for client/server, threading notes, feature matrix, regression checklist.
Copy-paste-friendly starter for relaunch-through-Steam behavior and dual-distribution guards.
Pick wrapper and App ID; export Markdown for your repo. Pair with Player.log triage when Init or launch context is unclear.
Generates a minimal early bootstrap pattern. Adjust to your entry point (Player loop script, Boot scene, or native plugin).
using Steamworks;
public static class SteamBootstrap
{
// SteamAPI_RestartAppIfNecessary must run before SteamAPI_Init when applicable.
public static bool TryRestartThroughSteam()
{
return SteamAPI.RestartAppIfNecessary(new AppId_t(uint.Parse("480")));
}
}
// Usage (very early, e.g. before first scene load):
// if (SteamBootstrap.TryRestartThroughSteam()) {
// Application.Quit();
// return;
// }Loading interactive tool…
RunCallbacks placement for client/server, threading notes, feature matrix, regression checklist.
Partner publish vs client cache vs branches — rollout and QA handoff for ‘code works but Steam doesn’t show it’.
Categories, tradability, bundles/consumables — draft itemdef-oriented JSON + policy warnings.
InvalidParam and common codes — ranked causes, path checks, legal/preview metadata checklist.
Storefronts, concurrency, cross-store, cost — scored recommendation and phased migration.
Generate Steamworks-sized PNGs from one master image, ZIP export, safe-area inspector, and policy reminders.