26 lines
645 B
C#
26 lines
645 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace Ichni.Editor
|
|
{
|
|
public partial class ResolutionHints : MonoBehaviour
|
|
{
|
|
public Image safeAreaFrame;
|
|
public GameObject judgeLineHints;
|
|
}
|
|
|
|
public partial class ResolutionHints
|
|
{
|
|
public void SetJudgeLineHints()
|
|
{
|
|
judgeLineHints.SetActive(!judgeLineHints.gameObject.activeSelf);
|
|
}
|
|
|
|
public void SetSafeAreaFrame()
|
|
{
|
|
safeAreaFrame.gameObject.SetActive(!safeAreaFrame.gameObject.activeSelf);
|
|
}
|
|
}
|
|
} |