Malevolent Planet Unity2d Day1 To Day3 Public Link Jun 2026

This public link is valid for 7 days and shares a thread, including any personal information you added. This link or copies made by others cannot be deleted. If you share with third parties, their policies apply. Can’t copy the link right now. Try again later.

using UnityEngine; public class PatrollingEnemy : MonoBehaviour [SerializeField] private float speed = 2f; [SerializeField] private Transform[] patrolPoints; private int currentPointIndex = 0; void Update() if (patrolPoints.Length == 0) return; Transform targetPoint = patrolPoints[currentPointIndex]; transform.position = Vector2.MoveTowards(transform.position, targetPoint.position, speed * Time.deltaTime); if (Vector2.Distance(transform.position, targetPoint.position) < 0.2f) currentPointIndex = (currentPointIndex + 1) % patrolPoints.Length; FlipDirection(); void FlipDirection() Vector3 localScale = transform.localScale; localScale.x *= -1; transform.localScale = localScale; Use code with caution. Public Link and Prototype Access

(Note: Ensure your browser supports WebGL 2.0 for the best experience during the Day 3 build.) What’s Next?

What aspect of creating a 2D space shooter in Unity is most challenging for you? Let me know, and I can provide more in-depth code examples or tips! Share public link

On the second day, we focused on implementing the game's core mechanics: malevolent planet unity2d day1 to day3 public link

On Day 2, the focus shifted to creating and implementing game assets. The team worked on:

To gather community feedback early, the project was optimized for the web: Switched to WebGL via Unity Build Settings.

From a game design perspective, the Malevolent Planet public demo (days 1–3) achieves malevolence through . Key techniques observed in the Unity 2D build:

Open the Package Manager and install the package. Create an Input Action asset named PlayerControls . Map a Vector2 Action named Move to the WASD keys. 3. Physics-Based Player Controller This public link is valid for 7 days

Note: This build is a public release and contains mature content intended for adult audiences.

: Introduced the Garden area, though early builds faced some feedback regarding inconsistent movement and grid alignment. Day 2: The Classroom & Interactions Focus : Expanded social systems and NPC depth.

The new Unity version fundamentally redefines the player's experience. The goal was to create a world that feels more alive, more explorable, and more immersive:

: Art displayed at full resolution compared to earlier internal tests. Story Progression Can’t copy the link right now

Changed Compression Method to Brotli and stripped unused engine code via managed code stripping.

The Malevolent Planet 2D Unity project, developed by Alwiane, transitioned from a text-based format to a 2D engine to focus on visual storytelling and scene exploration. Early development focused on implementing 2D movement, restructuring the narrative toward ship repair, and utilizing hub-based exploration rather than an open world. Access the latest public build and community discussions via Patreon and Steam Patreon .

During Day 2, we encountered several challenges:

To share your Day 1 to Day 3 prototype with mentors, team members, or the public, you need to deploy it to a web-accessible format. Step 1: Build Settings Configuration In Unity, go to .

The complete Unity project files, assets, and daily build snapshots are hosted publicly for the community. You can download the source code, review the commits, or play the WebGL prototype directly in your browser.