Files
Cielonos/Assets/Shift - Complete Sci-Fi UI/Scripts/Other/UIElementInFront.cs
SoulliesOfficial 6d7ebc5825 Passion & UI
2026-06-12 17:11:39 -04:00

15 lines
280 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
namespace Michsky.UI.Shift
{
public class UIElementInFront : MonoBehaviour
{
void Start()
{
transform.SetAsLastSibling();
}
}
}