Just wondering why in UITweenerEditor.cs ~line 31, this is commented out?
//UITweener.Method method = (UITweener.Method)EditorGUILayout.EnumPopup("Play Method", tw.method);
I actually came to this file to write exactly that, so wondering if there is any reason this might want to be avoided.
Is 'method' obsolete?
Also, may I suggest adding something akin to the following:
UITweener.Method method = (UITweener.Method)EditorGUILayout.EnumPopup("Play Method", tw.method);
bool sc = tw.steeperCurves;
if (method == UITweener.Method.EaseIn || method == UITweener.Method.EaseInOut || method == UITweener.Method.EaseOut)
sc = EditorGUILayout.Toggle("Steeper Curves", tw.steeperCurves);
Though that If statement admittedly isn't the best way to go about it.
Edit: Just saw this:
http://www.tasharen.com/forum/index.php?topic=7799.0I'm thinking either that's quite a coincidence, or this sort of question gets asked a lot.