Day3 Public Link - Malevolent Planet Unity2d Day1 To
Gravity scale set to 0 to prevent top-down characters from falling off the screen. 2. Player Controller Architecture
Day 2 shifted focus to building the hostile alien world using Unity’s 2D Tilemap system and atmospheric lighting. 1. Environment Building
The planet now “learns” from player actions. I added: malevolent planet unity2d day1 to day3 public link
The game's development focuses on the following core features: Player Choice
using UnityEngine; public class PlayerController : MonoBehaviour [SerializeField] private float moveSpeed = 5f; private Rigidbody2D rb; private Vector2 movement; void Start() rb = GetComponent (); void Update() // Capture input during the frame render step movement.x = Input.GetAxisRaw("Horizontal"); movement.y = Input.GetAxisRaw("Vertical"); movement = movement.normalized; void FixedUpdate() // Execute physics updates at a constant rate rb.MovePosition(rb.position + movement * moveSpeed * FixedUpdate.deltaTime); Use code with caution. Day 2: Malevolent Atmosphere & Procedural Tilemaps Gravity scale set to 0 to prevent top-down
Added a Tilemap Collider 2D combined with a Composite Collider 2D on the terrain grid. This merges individual tile squares into one seamless physics geometry, stopping the player physics material from getting stuck on internal seams. 2. Atmospheric Lighting (URP 2D)
While a specific "Day 1 to Day 3" devlog breakdown is not explicitly detailed in public records, the game's development and demo availability can be tracked through its major distribution hubs: Public Access & Store Links Steam Page Day 2: Malevolent Atmosphere & Procedural Tilemaps Added
: Discussions on community boards highlight efforts to balance the main story (repairing a ship) with side content in the village. Summary of Build Platforms Available Content Public Dev Builds Latest previews, full-res art, Android/PC versions Storefront Official wishlist, demo previews Community/Builds Public demo, version comments, dev feedback source code for a specific day's tutorial, or are you trying to the latest public build?
The world is managed by a central grid controller that instantiates cells based on width and height parameters.
Set globally to 16 for consistent retro-grid asset scaling.