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.
22 lines
450 B
22 lines
450 B
10 years ago
|
using UnityEngine;
|
||
|
using System.Collections;
|
||
|
|
||
|
namespace Fungus
|
||
|
{
|
||
|
[EventHandlerInfo("",
|
||
10 years ago
|
"Message Received",
|
||
|
"The sequence will execute when the specified message is received from a Send Message command.")]
|
||
|
public class MessageReceived : EventHandler
|
||
10 years ago
|
{
|
||
|
public string message;
|
||
|
|
||
|
public void OnSendFungusMessage(string message)
|
||
|
{
|
||
|
if (this.message == message)
|
||
|
{
|
||
|
ExecuteSequence();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|