mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-30 17:07:59 +01:00
16 lines
304 B
C#
16 lines
304 B
C#
|
using HutongGames.PlayMaker;
|
||
|
using UnityEngine.SceneManagement;
|
||
|
|
||
|
namespace Fie.PlayMaker
|
||
|
{
|
||
|
[ActionCategory("Friendship is Epic")]
|
||
|
public class FieResultActionForPlaymaker : FsmStateAction
|
||
|
{
|
||
|
public override void OnEnter()
|
||
|
{
|
||
|
SceneManager.LoadScene(0, LoadSceneMode.Single);
|
||
|
Finish();
|
||
|
}
|
||
|
}
|
||
|
}
|