Assets/TerrainToolkit/Editor/TerrainToolkitEditor.cs(1071,82): warning CS0618: UnityEditor.EditorGUILayout.ObjectField(string, UnityEngine.Object, System.Type, params UnityEngine.GUILayoutOption[ ])' is obsolete: Check the docs for the usage of the new parameter ‘allowSceneObjects’.’
I just completed the update to 3.4.0f5 and downloaded the toolkit this morning (I’m doing the SnowLevel tutorial at 3D Buzz)
Should I just wait out the next version of the toolkit?
toolkit is not obsolete but Unity 3.4 has changed part of the editor API in this context which is causing that warning.
they shouldn’t be errors though only warnings.
Obsolete in case of code means “we have replaced this with something new, better, easier, cleaner and will at some point in the future remove this” normally
its a way to tell users of the api that you better should update it if you want to remain future safe without breaking existing functionality from one day to the other (its a word that must be on the “mention an you are fired” list of apple going by the OSX track ;))