BaseActor / EventMod

sendEventメソッド

このオブジェクトにイベントを送ります

書式

sendEvent(イベント名,イベントオブジェクト)

イベントの種類一覧

waitEventの例と組み合わせて使ってください。

Sender.tonyu
receiver=new Receiver;
updateEx(60);
print ("fooイベントを送信します...");
receiver.sendEvent("foo","hello");

.