- Home /
How can i tell which version of Unity i have?
How can I tell which version of Unity do I have?
Comment
Thanks a lot guys. Both answers were helpful!
Turns out for about 2 years I had Unity 4.3 Ha.
Can't wait to give 4.6 a try!
Thaks!
Best Answer
Answer by UnityKen · Dec 27, 2014 at 06:40 PM
Command Bar - Help/About Unity... The newest is 4.6.1 (I think)
Answer by Paps O · Dec 27, 2014 at 06:36 PM
All global definition avaible by default are here: http://docs.unity3d.com/Manual/PlatformDependentCompilation.html
Then in your code you can for example the following(assuming it is in c#) There are plenty of variables so...
#if UNITY_4_3
// do some stuff here that are only available in 4.3
#elif UNITY_4_5
// do some stuff here that are only available in 4.5
#else
// otherwise do this stuff instead
#endif
Your answer
