Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created January 22, 2026 03:17
Show Gist options
  • Select an option

  • Save todorok1/774d52a7bd72d36484df3df83669f17b to your computer and use it in GitHub Desktop.

Select an option

Save todorok1/774d52a7bd72d36484df3df83669f17b to your computer and use it in GitHub Desktop.
FindAnyObjectByTypeの確認で使用する派生クラス
using UnityEngine;
public class DerivedRaichu : BasePikachu
{
public override void ShowMessage()
{
Debug.Log("ライチュウ!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment