Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created August 11, 2020 08:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save todorok1/b9e03beeda0fb92415e66da01c6b9ee4 to your computer and use it in GitHub Desktop.
Save todorok1/b9e03beeda0fb92415e66da01c6b9ee4 to your computer and use it in GitHub Desktop.
SendMessageで呼び出すメソッドのサンプル
/// <Summary>
/// SendMessageで処理が呼び出されるメソッドです。
/// </Summary>
public class SendMessageTarget : MonoBehaviour
{
/// <Summary>
/// SendMessageを使って対象のスクリプトの処理を呼び出します。
/// </Summary>
public void ShowLog()
{
// ログを表示します。
Debug.Log("SendMessageが通知された!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment