Malevolent Planet Unity2d -day1 - To Day3 Public ...

Here’s a structured review draft for Malevolent Planet Unity2D - Day 1 to Day 3 Public based on typical early-access or prototype feedback. I’ve assumed it’s a survival or exploration game with hostile environment mechanics. Adjust specifics as needed.


Review: Malevolent Planet Unity2D – Days 1–3 Public Build
Rating: ⭐⭐⭐ (3/5) – Promising but rough

Concept & Atmosphere
The core idea—a sentient, hostile planet—shines through immediately. The 2D art style leans into eerie bioluminescence and jagged terrain, effectively conveying that the world itself is the enemy. Sound design (wind, distant rumbles, organic clicks) builds tension well for a Day 1 build.

Gameplay (First 3 In-Game Days)

Technical State (Public Build)

What Works Well

Needs Improvement

Verdict
Malevolent Planet is an ambitious, atmospheric survival game with a unique antagonist. The first three days show strong design instincts but need bug fixes and better onboarding. If you love punishing exploration and don’t mind early-access jank, dive in. Others should wait for the Day 4 patch.

Playtime for this build: ~2–3 hours to complete three cycles.
Recommendation: Wishlist and check back after stability pass.


Here is some content based on your request:

Malevolent Planet Unity2D - Day 1 to Day 3 Public

Day 1: Project Setup and Initialization

Welcome to the Malevolent Planet Unity2D tutorial series! In this series, we will be creating a 2D platformer game using Unity. On Day 1, we will set up a new Unity project and initialize the basic structure of our game.

Step 1: Create a New Unity Project

Step 2: Set up the Scene

Step 3: Add a Camera

Day 2: Creating the Player and Basic Movement

On Day 2, we will create the player character and implement basic movement.

Step 1: Create the Player

Step 2: Add a Rigidbody2D and Collider

Step 3: Implement Basic Movement

Day 3: Adding Enemy and Basic AI

On Day 3, we will add an enemy character and implement basic AI. Malevolent Planet Unity2D -Day1 to Day3 Public ...

Step 1: Create the Enemy

Step 2: Add a Rigidbody2D and Collider

Step 3: Implement Basic AI

This is just a basic outline of what you can do on each day. You can add more features and complexity as per your requirement.

Here is a sample code for player movement:

using UnityEngine;
public class PlayerMovement : MonoBehaviour
public float speed = 5.0f;
private Rigidbody2D rb;
void Start()
rb = GetComponent<Rigidbody2D>();
void Update()
float horizontalInput = Input.GetAxis("Horizontal");
Vector2 movement = new Vector2(horizontalInput, 0);
rb.velocity = movement * speed;

And here is a sample code for enemy AI:

using UnityEngine;
public class EnemyAI : MonoBehaviour
public float speed = 2.0f;
private Rigidbody2D rb;
void Start()
rb = GetComponent<Rigidbody2D>();
void Update()
float randomDirection = Mathf.Random.Range(-1f, 1f);
Vector2 movement = new Vector2(randomDirection, 0);
rb.velocity = movement * speed;

5. Lessons Learned for Unity2D Malevolent Worlds

  1. Fair randomness > pure difficulty – Visual telegraphing (even 0.2s) makes “malevolent” feel challenging, not broken.
  2. 2D lighting limits – Too many dynamic lights on hostile plants dropped framerate by 30% on mid-range devices; use light cookies sparingly.
  3. Public Day 1-3 is for trust-building – Players will forgive bugs but not unclear hostility.

Day 2: Expansion & The Water Crisis

The Golden Rule: Hydration kills faster than hunger.

On Day 2, the initial relief of survival wears off. Thirst becomes your primary enemy. In the Unity2D public build, water sources are often contaminated or guarded.

Checklist:

  1. Locate Water: Explore slightly further from base. Look for blue shimmering tiles. Use your scanner (if available in this build) to check purity.
  2. Craft a Filter: If the water is "Stagnant," you cannot drink it safely. You will need to craft a Charcoal Filter using burnt wood from your campfire and cloth.
  3. Weaponry: You will likely encounter "Dust Crawlers" (low-level enemies) today. Craft a Spear or Machete using the ore gathered on Day 1.
    • Combat Tip: In 2D, knockback is your friend. Strike enemies to push them away, then step back to avoid their melee range.
  4. Storage: Build a Crate. You are accumulating too many resources to carry. Store excess building materials so you can free up inventory slots for exploration.

Day 2 Goal: Secure a renewable source of clean water and a basic weapon.


Day 1: Project Setup & Player Core

Goal: A responsive, grounded player character that can navigate a 2D world. Here’s a structured review draft for Malevolent Planet

Public Build Checkpoint (End of Day 1):
Movement feels snappy but has momentum. Player can jump (variable height via release timing). No enemies or hazards yet – just a sandbox.

What is "Malevolent Planet Unity2D"?

Before we break down the timeline, let’s set the stage. Malevolent Planet utilizes the Unity Engine’s 2D pipeline to create what developers are calling a "Side-scrolling Survival Panic." Unlike platformers that reward speed, Malevolent Planet rewards patience and paranoia.

You are a crashed surveyor on a planet that doesn't want you there. The air is toxic, the flora is carnivorous, and the local fauna operates on a hive-mind AI. The "Day 1 to Day 3" public build is specifically designed to showcase the game’s opening loop—the grace period before the planet realizes you are alive.

Day 3: Technology & Defense

The Golden Rule: The planet is waking up.

By Day 3, the "easy" mode is over. Enemy spawns increase, and environmental hazards (like Acid Rain or Heatwaves) may trigger. This is the day you establish a permanent foothold.

Checklist:

  1. Advanced Crafting: Build a Research Table. This is the most critical structure in the public build. Use it to analyze "Unknown Artifacts" you may have found.
  2. Power Systems: You should have enough materials to build a Solar Generator or Wind Turbine. Place this behind your shelter. This powers the Electric Fence.
  3. Perimeter Defense: The "Malevolent" aspect of the planet kicks in tonight. Hostile waves will target your base. Place spikes or an electric fence around your shelter.
  4. The Scout: If you have spare rations and a weapon, travel to the edge of the map. Look for a Distress Beacon or a Cave Entrance. This triggers the questline for the mid-game.

Day 3 Goal: Powered base, active defenses, and discovery of the next story objective.


Minimal code sketches (conceptual)

(Pseudocode only — implement according to Unity API and chosen input system.)

Overview: "Malevolent Planet Unity2D — Day 1 to Day 3 (Public)"

This study outlines a concise, actionable plan and summary for developing a small Unity 2D project or tutorial series titled "Malevolent Planet" across Days 1–3. It covers goals, scope, deliverables, technical setup, core mechanics, art/sound needs, and a three-day schedule with tasks, milestones, and testing/checklist items. Assumes a solo or small team aiming for a playable prototype and public-ready demo assets by end of Day 3.

1. Introduction

Malevolent Planet places the player on an alien world where the ground, flora, and native creatures share a single malicious intent. Built in Unity2D with Tilemaps, Cinemachine, and a custom behavior tree system, the game entered a public test phase on [Date]. This report covers Day 1 (launch stability), Day 2 (difficulty spikes), and Day 3 (first patch response).