最低限のnamespaceのTest
usingは不要。あれば省略可。
script2にnamespaceは不要。
staticでないならInstanceを作る必要。
-TestScript.cs-
namespace TestSpace {
public class TestScript : MonoBehaviour {
public int a = 1;
}
}
-TestScript2.cs-
public class TestScript2 : MonoBehaviour {
void Start () {
var tt = new TestSpace.TestScript();
Debug.Log(tt.a);
}
}
usingは不要。あれば省略可。
script2にnamespaceは不要。
staticでないならInstanceを作る必要。
-TestScript.cs-
namespace TestSpace {
public class TestScript : MonoBehaviour {
public int a = 1;
}
}
-TestScript2.cs-
public class TestScript2 : MonoBehaviour {
void Start () {
var tt = new TestSpace.TestScript();
Debug.Log(tt.a);
}
}
※コメント投稿者のブログIDはブログ作成者のみに通知されます