Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created August 11, 2020 08:35
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/52409f2884e694f26e7b5daf9dfdd12e to your computer and use it in GitHub Desktop.
Save todorok1/52409f2884e694f26e7b5daf9dfdd12e to your computer and use it in GitHub Desktop.
SendMessageの呼び出し元スクリプトのサンプル
/// <Summary>
/// SendMessageを使って対象のスクリプトの処理を呼び出します。
/// </Summary>
public class SendMessageCaller : MonoBehaviour
{
public GameObject targetObj;
void Start()
{
targetObj.SendMessage("ShowLog");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment