Skip to content

Latest commit

 

History

19 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TC Message

Unityで、message-driven processing(メッセージ駆動処理)を実現するプログラムです。

Installation

UPM Package

https://github.com/tik-choco/tc-message.git?path=/Assets/

Usage

登録

Message.Register("○○", Method);
void Method() {}

Message.Register<Vector3>("○○", Method);
void Method(Vector3 position) {}

Message.Register<Vector3, int>("○○", Method);
int Method(Vector3 position) { return 0; }

呼び出し

Message.Call("Method", args...);
var result = Message.Call<int>("Method", args...);
await Message.CallAsync("Method", args...);

About

Unity message-driven processing

Topics

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages