Super Knight : Enter the Dungeon
 
 
 
 
sked/Assets/Script/Common/UI/EnableTheBottom.cs

11 lines
211 B

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class EnableTheBottom : MonoBehaviour
{
private void OnEnable()
{
transform.SetAsFirstSibling();
}
}