itch.io is community of indie game creators and players

Devlogs

Bug fix 0.1

Rage Runner (Early Access)
A browser game made in HTML5

Platformer.UI (False)

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace Platformer.UI
{
    /// <summary>
    /// A simple controller for switching between UI panels.
    /// </summary>
    public class MainUIController : MonoBehaviour
    {
        public GameObject[] panels;

        public void SetActivePanel(int index)
        {
            for (var i = 0; i < panels.Length; i++)
            {
                var active = i == index;
                var g = panels[i];
                if (g.activeSelf != active) g.SetActive(active);
            }
        }

        void OnEnable()
        {
            SetActivePanel(0);
        }
    }
}

Files

  • Bug fix.zip 10 MB
    Aug 21, 2020
Leave a comment