はじめに
「Unity-Native-Toasts」を Unity プロジェクトに導入することで
iOS / Android でトースト表示できるようになります
使用例
using UnityEngine; using UnityNative.Toasts; public class Example : MonoBehaviour { private static readonly IUnityNativeToasts m_toasts; static Example() { m_toasts = UnityNativeToasts.Create(); } public void ShowLongToast() { m_toasts.ShowLongToast("ピカチュウ"); } public void ShowShortToast() { m_toasts.ShowShortToast("ピカチュウ"); } }