Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created August 17, 2020 05:34
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/2b08dc03c1e277c970547a6467827751 to your computer and use it in GitHub Desktop.
Save todorok1/2b08dc03c1e277c970547a6467827751 to your computer and use it in GitHub Desktop.
GetComponentを使用して他のスクリプトのメソッドを呼び出すサンプル
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <Summary>
/// GetComponentを使用して他のスクリプトのメソッドを呼び出します。
/// </Summary>
public class GetComponentCaller : MonoBehaviour
{
public GameObject targetObj;
void Start()
{
targetObj.GetComponent<GetComponentTarget>().ShowLog();
}
void Update()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment