Gameplay Ingredients是一组用于 Unity 游戏的运行时和编辑器工具:一组脚本的集合,可在制作游戏和原型时简化简单的任务。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

54 行
1.6 KiB

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
namespace GameplayIngredients.Editor
{
public class DiscoverAsset : ScriptableObject
{
[MenuItem("Assets/Create/Discover Asset", priority = 202)]
static void Create()
{
AssetFactory.CreateAssetInProjectWindow<DiscoverAsset>(null, "New DiscoverAsset");
}
[Header("General Properties")]
public string WindowTitle = "Discover";
public Texture2D HeaderTexture;
[Tooltip("Width of the Window, in pixels")]
public int WindowWidth = 640;
[Tooltip("Height of the Window, in pixels")]
public int WindowHeight = 520;
[Tooltip("Width of the Discover List, in pixels")]
public int DiscoverListWidth = 180;
[Header("Show At Startup")]
public bool EnableShowAtStartup = true;
[Tooltip("The name of the preference for auto showing at startup, will be ")]
public string PreferenceName = "Discover";
[Header("Content")]
public string Title = "Welcome!";
[Multiline]
public string Description = "This is a sample body for your discover window.";
[Header("Scenes")]
public DiscoverSceneInfo[] Scenes;
[Header("Debug")]
public bool Debug = false;
}
[System.Serializable]
public struct DiscoverSceneInfo
{
public string Title;
[Multiline]
public string Description;
public EditorSceneSetup SceneSetup;
public SceneAsset SingleScene;
}
}