mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-29 16:37:59 +01:00
33 lines
850 B
C#
33 lines
850 B
C#
|
using UnityEngine;
|
||
|
using System.Collections;
|
||
|
using UnityEngine.SceneManagement;
|
||
|
|
||
|
/// <summary>
|
||
|
/// This component makes it easy to switch scenes or open webpages on click.
|
||
|
/// Requires a InputToEvent component on the camera to forward clicks on screen.
|
||
|
/// </summary>
|
||
|
public class OnClickLoadSomething : MonoBehaviour
|
||
|
{
|
||
|
public enum ResourceTypeOption : byte
|
||
|
{
|
||
|
Scene,
|
||
|
Web
|
||
|
}
|
||
|
|
||
|
public ResourceTypeOption ResourceTypeToLoad = ResourceTypeOption.Scene;
|
||
|
public string ResourceToLoad;
|
||
|
|
||
|
public void OnClick()
|
||
|
{
|
||
|
switch (ResourceTypeToLoad)
|
||
|
{
|
||
|
case ResourceTypeOption.Scene:
|
||
|
SceneManager.LoadScene(ResourceToLoad);
|
||
|
break;
|
||
|
case ResourceTypeOption.Web:
|
||
|
Application.OpenURL(ResourceToLoad);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|