15 lines
280 B
C#
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();
|
|
}
|
|
}
|
|
} |