Unity3D

What is the difference between AndroidJavaClass.Call and AndroidJavaObject.Call

일등하이 2015. 6. 17. 17:10
반응형

Answering my own question - after doing some research, it seems that the two methods are the same.

AndroidJavaClass inherits from AndroidJavaObject, but does not override the Call method. This means the Call method for this class is exactly the same one as for AndroidJavaObject.

Note that when using an AndroidJavaClass, using the Call method has no effect, since no object instance was initialized (one can only use CallStatic or the generic CallStatic).

http://answers.unity3d.com/questions/715007/what-is-the-difference-between-androidjavaclasscal.html

반응형