您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
19 行
489 B
19 行
489 B
using UnityEngine;
|
|
|
|
namespace GameplayIngredients.Actions
|
|
{
|
|
[HelpURL(Help.URL + "factory")]
|
|
[AddComponentMenu(ComponentMenu.factoryPath + "Factory Spawn Action")]
|
|
[Callable("Game", "Misc/ic-factory.png")]
|
|
public class FactorySpawnAction : ActionBase
|
|
{
|
|
[NonNullCheck]
|
|
public Factory factory;
|
|
|
|
public override void Execute(GameObject instigator = null)
|
|
{
|
|
if (factory != null)
|
|
factory.Spawn();
|
|
}
|
|
}
|
|
}
|