LoginSignup
1
2

More than 5 years have passed since last update.

ある型が継承元クラスを持つかを判定する メモ

Posted at

■引数の型がUnityEngine.ScriptableObjectを持つか判定

public static void GetStringByClassType(System.Type type) 
{
    if(type.IsSubclassOf(typeof(UnityEngine.ScriptableObject)) == true)
    {
        UnityEngine.Debug.Log("**********************************************************");
    }
}
1
2
6

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2