How do I tell documentation articles of a certain class is for certain Unity versions only?

I still don’t know if certain classes are available for older Unity versions.

For example:

Is NetworkBehaviour available for Unity 5.0, or Unity 5.1? Is it also available for Unity 4.6 and below?

I have no idea.

The article here never specify what versions and above do the class becomes available for use.

You can use the history link in the bottom-left.

–Eric

Mind blown. Thank you!

Good call… All I ever do is change:

http://docs.unity3d.com/ScriptReference/Networking.NetworkBehaviour.html

into

http://docs.unity3d.com/500/Documentation/ScriptReference/Networking.NetworkBehaviour.html

or

http://docs.unity3d.com/460/Documentation/ScriptReference/Networking.NetworkBehaviour.html

If I get an error, then I know the page doesn’t live as part of that version. The other thing I do is look at release notes, so, the release notes for 5.1 are here:

http://unity3d.com/unity/whats-new/unity-5.1

and start with UNet descriptions which arrived in the 5.1 release. :wink: