-
-
Save todorok1/2b21c90249433c941cc3a2380be12e0e to your computer and use it in GitHub Desktop.
FindAnyObjectByTypeの確認で使用する継承元のクラス
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| public class BasePikachu : MonoBehaviour | |
| { | |
| public virtual void ShowMessage() | |
| { | |
| Debug.Log("ピカチュウ!"); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment