Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created August 17, 2020 05: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/7b5337480e3e8c41b68961bc532ff69a to your computer and use it in GitHub Desktop.
Save todorok1/7b5337480e3e8c41b68961bc532ff69a to your computer and use it in GitHub Desktop.
GetComponentを使用してメソッドを呼び出されるスクリプトのサンプル
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <Summary>
/// GetComponentを使用して他のスクリプトからメソッドを呼び出します。
/// </Summary>
public class GetComponentTarget : MonoBehaviour
{
void Start()
{
}
void Update()
{
}
/// <Summary>
/// GetComponentを使用してこのメソッドを呼び出します。
/// </Summary>
public void ShowLog()
{
// ログを表示します。
Debug.Log("GetComponentによるイベントが通知された!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment