您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
27 行
542 B
27 行
542 B
using UnityEngine.InputSystem;
|
|
using UnityEngine;
|
|
|
|
public class ClearLists : MonoBehaviour
|
|
{
|
|
public ScenesData scenesData;
|
|
public bool ClearOnStart;
|
|
|
|
void Awake()
|
|
{
|
|
if (ClearOnStart)
|
|
{
|
|
scenesData.ClearScenesLists();
|
|
}
|
|
|
|
}
|
|
|
|
void Update()
|
|
{
|
|
//We can clear lists by pressing c
|
|
//Just for test purpose
|
|
if (Keyboard.current.cKey.wasPressedThisFrame)
|
|
{
|
|
scenesData.ClearScenesLists();
|
|
}
|
|
}
|
|
}
|