Public Link - Malevolent Planet Unity2d Day1 To Day3
Once you survive 3 minutes against The Lithosphere, a cutscene triggers. Your ship’s AI says: "The planet is a single organism. You are inside its stomach." The screen cuts to black, and the demo ends with a link to purchase the full game.
As they began working on their game, they started to notice strange occurrences. The Unity2D editor would freeze randomly, and the team's communication seemed to be faltering. It was as if the project itself was resisting their efforts.
Implement a top-down movement script. The character should move in 8 directions using Rigidbody2D and Input.GetAxis .
: You can check for sporadic public demo builds or play older versions directly in your browser on the official SugarMint Patreon Garden Release Page . malevolent planet unity2d day1 to day3 public link
Initial efforts were made to resolve performance bugs specifically for browser-based play. Day 2: The "Classroom" Update
Select from the platform list and click Switch Platform .
using UnityEngine; public class HazardSpawner : MonoBehaviour [SerializeField] private GameObject sporePrefab; [SerializeField] private Transform playerTransform; [SerializeField] private float spawnInterval = 3f; [SerializeField] private float spawnRadius = 15f; void Start() InvokeRepeating(nameof(SpawnSpore), spawnInterval, spawnInterval); void SpawnSpore() if (playerTransform == null) return; Vector2 randomDirection = Random.insideUnitCircle.normalized * spawnRadius; Vector3 spawnPosition = new Vector3(playerTransform.position.x + randomDirection.x, playerTransform.position.y + randomDirection.y, 0); Instantiate(sporePrefab, spawnPosition, Quaternion.identity); Use code with caution. Public Link & Source Code Once you survive 3 minutes against The Lithosphere,
Day-by-day breakdown
Day 1 — Arrival & Tutorial (45–60 minutes play)
At the end of this guide, you will find instructions on how to generate your public itch.io link to share your progress with the community. As they began working on their game, they
Your goal in Day 1 is simple: survive the first night. The public link disables save points, so failing Day 1 means restarting.
https://unity.com/MalevolentPlanet (Do not open at your own risk)
The world of game development is a thrilling and challenging journey, especially when it comes to creating a 2D game with Unity. In this article, we will follow the development process of a Unity2D game called "Malevolent Planet" from Day 1 to Day 3, and provide a public link to experience the game for yourself.










