You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
636 B
23 lines
636 B
using UnityEngine; |
|
using UnityEditor; |
|
using System.Collections; |
|
|
|
namespace Fungus |
|
{ |
|
|
|
public class FungusScriptMenuItems |
|
{ |
|
[MenuItem("GameObject/Fungus/Fungus Script")] |
|
static void CreateFungusScript() |
|
{ |
|
GameObject newFungusScriptGO = new GameObject(); |
|
newFungusScriptGO.name = "FungusScript"; |
|
FungusScript fungusScript = newFungusScriptGO.AddComponent<FungusScript>(); |
|
Sequence sequence = Undo.AddComponent<Sequence>(newFungusScriptGO); |
|
fungusScript.startSequence = sequence; |
|
fungusScript.selectedSequence = sequence; |
|
Undo.RegisterCreatedObjectUndo(newFungusScriptGO, "Create Fungus Script"); |
|
} |
|
} |
|
|
|
} |