This content originally appeared on DEV Community and was authored by cutieyunny-tech
I Against Me – My Experimental Indie Journey
Just dropped a new game prototype exploring psychology, mood swings, and self-reflection in gameplay.
Inspired by my own reflections, with nods to the indie psychological genre (looking at you, Melinn ), this project is about breaking norms, remixing ideas, and seeing what happens when you mix personal insight with playful mechanics.
Highlights:
• Multi-perspective gameplay reflecting inner thoughts
• Breaking narrative and design conventions
• A sprinkle of fun remixing (Barbie + zombies = chaos )
It’s not perfect—some screens still polishing—but it’s real, live, and my first big step as a solo dev exploring uncharted territory.
Feedback, thoughts, or just a “cool idea!”—all appreciated. Let’s see where this experiment takes us!
Here is the snippet:
<!DOCTYPE html>
I Against Me – Indie Dev Breakthrough body { font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif; background-color: #1e1e1e; color: #f0f0f0; margin: 20px; line-height: 1.6; } h1 { color: #ff6f61; text-align: center; font-size: 2em; } h2 { color: #ffa500; margin-top: 1.5em; } p { margin: 10px 0; } .highlight { color: #00ffff; font-weight: bold; } .link { color: #ffcc00; text-decoration: none; } .link:hover { text-decoration: underline; } .container { max-width: 800px; margin: auto; background-color: #2a2a2a; padding: 20px; border-radius: 10px; } .emoji { font-size: 1.2em; }
I Against Me – My Experimental Indie Journey
Just dropped a new game prototype exploring psychology, mood swings, and self-reflection in gameplay.
<p>Inspired by my own reflections, with nods to the indie psychological genre (looking at you, Melinn <span class="emoji">😅</span>), this project is about <span class="highlight">breaking norms, remixing ideas, and seeing what happens when you mix personal insight with playful mechanics</span>.</p>
<h2>Highlights:</h2>
<ul>
<li>Multi-perspective gameplay reflecting inner thoughts</li>
<li>Breaking narrative and design conventions</li>
<li>A sprinkle of fun remixing (Barbie + zombies = chaos <span class="emoji">🫰</span>)</li>
</ul>
<p>It’s not perfect—some screens still polishing—but it’s <span class="highlight">real, live, and my first big step as a solo dev</span> exploring uncharted territory.</p>
<p>💡 Feedback, thoughts, or just a “cool idea!”—all appreciated. Let’s see where this experiment takes us!</p>
<p>⭐ Wishlist / follow updates here: <a href="#" class="link">Link Placeholder</a></p>
My codepen URL : https://codepen.io/nad-Yunny/pen/azvgmPG
This content originally appeared on DEV Community and was authored by cutieyunny-tech