Malevolent Planet Unity2d Day1 To Day3 Public Fixed
) and supports cross-platform play across Windows, MacOS, Android, and web browsers. Protagonist : Players follow
, whose story begins at the International Space Academy as she prepares for her departure into space. Gameplay Mechanics
: The Unity version introduced mouse and keyboard-driven movement, a gallery system, and a branching narrative where choices determine the character's "purity" or submission to planetary temptations. Development Progression: Day 1 to Day 3 In the context of the April 2025 Public Build
and earlier devlogs, the initial "days" or stages of the demo focus on establishing the setting and core loops: Day 1: The Academy & Foundations
: Establishing the narrative "gaps" missing from the original text game. malevolent planet unity2d day1 to day3 public fixed
: Emma’s adventures within the International Space Academy, serving as a tutorial for movement and basic interaction. Day 2: Exploration & Encounter Introductions
: Expanding the open-world village map and introducing the primary conflict.
: Introduction of the game's choices-matter system. Players encounter early NSFW previews, such as "Shower Content" and "Erotic Posing," which were enabled in recent public builds. Day 3: The "Malevolent" Shift : The transition from the Academy to the alien environment. Highlights
: In recent fixed builds, this includes the "Alien Tentacle" scene preview and high-resolution art updates. It marks the point where the player must choose between "establishing themselves" on the planet or focusing on the main story plot of ship repair. Technical "Fixed" Updates Optimization : Recent public builds fixed issues regarding ) and supports cross-platform play across Windows, MacOS,
to prevent hardware strain (coil whine) and improved art resolution to full HD. Save System
: In current public demos, saving is often disabled or "fixed" to specific scenes to prevent technical bugs when loading across different versions. You can track further updates or play the demo through the Malevolent Planet 2D Patreon Steam Community Hub available during the Academy phase? Malevolent Planet Unity 2D Teaser Screenshots + Early GIF
5. Critical Analysis: The "Malevolent Planet" Genre Specifics
Analyzing the content (Planet exploration/Visual Novel), we identify specific design patterns required for this genre in Unity 2D:
Day 1: The Crash and the Canvas
The project began with the basics: establishing the eerie tone of a world that wants you dead. The primary goal for Day 1 was setting up the "public fixed" core architecture—the foundation that ensures the game runs smoothly for everyone, regardless of hardware. The Environment: I created the Parallax Scrolling System
- The Environment: I created the Parallax Scrolling System. Using three layers of hand-painted toxic fog and jagged mountain silhouettes, I established the illusion of depth. The "Malevolent" part of the title needed to be felt immediately—the background moves slowly, like a stalking predator.
- The Controller: I implemented a physics-based movement controller using Unity’s
Rigidbody2D. Instead of floaty movement, I went for heavy, grounded steps to simulate high gravity. - The Bug: Initially, the character would stick to walls. I spent the last two hours of Day 1 fixing the friction physics. The "public fixed" aspect started here—I needed to ensure input latency was non-existent so the platforming felt fair, even if the planet isn't.
Goals by day
- Day 1: Stabilize core systems & get a reproducible Public Fixed build exporting successfully.
- Day 2: Implement/verify gameplay fixes and polish critical UX.
- Day 3: QA, optimize, final export and release checklist.
4. Day 3: The "Public Fixed" Phase – Serialization & Persistence
The phrase "Public Fixed" in the tutorial title usually implies a correction of common Unity serialization errors. This section covers the deepest technical hurdles in the series: Saving and Loading.
Day 1: Setting Up the Unity Project and Basic Scene
Step 1: Create a New Unity Project
- Open Unity Hub and create a new 2D project. Name it "MalevolentPlanet".
Step 2: Setting Up the Scene
- Create a new scene by going to
File>New Scene. Name it "MainScene". - Add a basic background. You can use a simple color or a texture. For simplicity, let's use a color: Add a
Spritegame object by right-clicking in the Hierarchy panel, selecting2D Object>Sprite. Name it "Background". - Change its
Sprite Renderercolor to a dark or ominous color representing the malevolent planet's atmosphere.
Step 3: Create the Planet
- Create another
Spriteand name it "Planet". You can use a circle sprite for simplicity. - Scale it to represent a planet. You might want to add a
Rigidbody2Dand a collider (likeCircle Collider 2D) to it if you plan to add physics.
Abstract
This paper analyzes the development lifecycle of a 2D narrative-driven game prototype, specifically examining the workflow often titled "Day 1 to Day 3" in rapid development tutorials. By dissecting the "Malevolent Planet" approach, we explore the transition from monolithic "God Classes" to a modular, data-driven architecture. This document serves as a deep dive into the code structure required to build a robust Visual Novel/RPG engine in Unity within a 72-hour development window.