LoginSignup
0
0

More than 5 years have passed since last update.

EditorスクリプトはEditor以外で使えない。逆は可能

Posted at

ディレクトリ構成
Assets
┣Test.cs
┗Editor
  ┗TestEdtior.cs

public static class TestEdtior
{
    public static void bbb ()
    {
        Test.aaa(); // これはOK.
    }
}
public static class Test
{
    public static void aaa ()
    {
        //TestEditor.hogehoge(); // これは参照できない.
    }

}
0
0
0

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
0
0