Project dev log by Gary Makinson, an advanced systems-focused game developer specializing in game design, programming, a

Project dev log by Gary Makinson, an advanced systems-focused game developer specializing in game design, programming, a
Lead Developer: Gary Makinson body{ font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif; margin:0; padding:2rem; background:#0f172a; color:#e5e7eb; line-height:1.6; } a{ color:#8b5cf6; text-decoration:none; } h1,h2,h3{ color:#fff; } .breadcrumb{ font-size:.85rem; opacity:.7; margin-bottom:1rem; } article{ max-width:760px; margin:auto; } .meta{ font-size:.85rem; opacity:.75; margin-bottom:1.5rem; } /* SHARE BAR */ .share-bar{ display:flex; gap:.5rem; flex-wrap:wrap; margin:1.5rem 0 2rem; align-items:center; } .share-btn{ padding:.45rem .9rem; border-radius:999px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.05); color:#fff; font-size:.75rem; cursor:pointer; transition:.15s; } .share-btn:hover{ transform:translateY(-1px); background:rgba(255,255,255,.1); } .share-btn.primary{ background:#6366f1; border-color:#6366f1; } #toast{ font-size:.7rem; opacity:.7; margin-left:.4rem; } ul{ padding-left:1.1rem; } Home / Journal

Project Dev Log

Lead Developer: Gary Makinson — Game Design, Programming, Art Direction 2026-01-22 · 1 MIN READ

Share X LinkedIn Copy

Developer

Gary MakinsonAdvanced systems-focused game developer

Overview

This project focuses on strong foundational systems, clarity in gameplay, and long-term scalability.

Mechanics come first. Visual polish follows function.

Development Approach

Ship early. Iterate often. Let real play define direction.

Technical Direction

  • Grid-based world systems
  • Top-down perspective
  • Lightweight assets
  • Balanced XP & progression

Current Focus

  • Gameplay loop refinement
  • System pacing
  • Performance

Notes

Momentum over perfection. Every iteration moves the project forward.

const SHARE_URL = "https://theappguy.app/post/lead-developer-gary-makinson-game-design-programming-art-direction-if-you-want-tell-me-where-this-will-appear"; function nativeShare(){ if(navigator.share){ navigator.share({ title:"Project Dev Log — Gary Makinson", text:"System-driven game development", url:SHARE_URL }).catch(()=>{}); } else { copyLink(); } } function copyLink(){ navigator.clipboard.writeText(SHARE_URL).then(()=>{ const t=document.getElementById("toast"); t.textContent="Link copied"; setTimeout(()=>t.textContent="",1400); }); }
Back to Journal Edit