您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
30 行
945 B
30 行
945 B
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
using GameplayIngredients.LevelStreaming;
|
|
using NaughtyAttributes;
|
|
|
|
namespace GameplayIngredients.Actions
|
|
{
|
|
public class StreamingLevelAction : ActionBase
|
|
{
|
|
[ReorderableList, Scene]
|
|
public string[] Scenes;
|
|
public string SceneToActivate;
|
|
public LevelStreamingManager.StreamingAction Action = LevelStreamingManager.StreamingAction.Load;
|
|
|
|
public bool ShowUI = false;
|
|
|
|
[ReorderableList]
|
|
public Callable[] OnLoadComplete;
|
|
|
|
public override void Execute(GameObject instigator = null)
|
|
{
|
|
List<string> sceneNames = new List<string>();
|
|
foreach (var scene in Scenes)
|
|
sceneNames.Add(scene);
|
|
Manager.Get<LevelStreamingManager>().LoadScenes(Action, sceneNames.ToArray(), SceneToActivate, ShowUI, OnLoadComplete);
|
|
}
|
|
}
|
|
}
|
|
|