Malevolent Planet Unity2d | Day1 To Day3 Public Link Better
Because this is a demo, players frequently encounter technical problems. Here is how to fix them:
Malevolent Planet Unity 2D Teaser Screenshots + Early GIF - Patreon
Establishment of the "Malevolent" themes, including the introduction of "insane Flora" and darker narrative hooks.
You can view, clone, and test the early prototype build directly via the public repository: malevolent planet unity2d day1 to day3 public link
One of the biggest accomplishments on Day 2 was getting the player controller working smoothly. Our developer was able to implement a simple yet effective movement system that would allow the player to navigate the game world.
Public link build notes (what to include with the demo)
using UnityEngine; using UnityEngine.UI; public class PlanetHurtSystem : MonoBehaviour public float maxHealth = 100f; private float currentHealth; public Slider healthSlider; private bool isOverToxicZone = false; void Start() currentHealth = maxHealth; if (healthSlider != null) healthSlider.maxValue = maxHealth; void Update() if (isOverToxicZone) TakeDamage(15f * Time.deltaTime); public void TakeDamage(float amount) currentHealth -= amount; currentHealth = Mathf.Clamp(currentHealth, 0, maxHealth); if (healthSlider != null) healthSlider.value = currentHealth; if (currentHealth <= 0) Debug.Log("The Planet Consumed You."); // Insert respawn or game over logic here private void OnTriggerEnter2D(Collider2D collision) if (collision.CompareTag("CorruptedTile")) isOverToxicZone = true; private void OnTriggerExit2D(Collider2D collision) if (collision.CompareTag("CorruptedTile")) isOverToxicZone = false; Use code with caution. Because this is a demo, players frequently encounter
Create a script named PatrollingEnemy.cs for a simple roaming threat.
Development of dialogue systems to replace previous text-heavy descriptions, prioritizing interaction within specific scenes. Build Features Summary The public builds typically include: Scene Previews : Previews of alien encounters and "tentacle scenes". Enhanced Resolution
: Early stages of the plot involving ship repair and exploration of the village map. technical guide Our developer was able to implement a simple
The initial day focused on establishing the 2D environment and basic interaction logic.
Technical implementation checklist (Unity2D)
Created a custom Rule Tile for the planet's surface crust. This automatically switches sprites based on neighboring tiles, allowing for rapid level design.