Answer by Democide
Another way to handle this, which works well if your objects don't move, is to save the position of the object before you start the animation. Like so: startPosition = transform.localPosition;...
View ArticleAnswer by Democide
What you can do is get the button and then check for the corresponding axis, like so: if (Input.GetButtonDown("Horizontal") && Input.GetAxisRaw("Horizontal") > 0) { // Move to the right }...
View ArticleAnswer by Democide
I've also had this issue, and decided to build a different solution: Toggle Buttons. ![alt text][1] It provides a better overview over the flags set but takes up more space in the Editor. You can check...
View ArticleAnswer by Democide
You might want to look into the [FormerlySerializedAs("m_MyVariable")] attribute Blog: http://blogs.unity3d.com/2015/02/03/renaming-serialized-fields/ API:...
View ArticleAnswer by Democide
All you need to really do is use the "isExpanded" field on the SerializedProperty: http://docs.unity3d.com/ScriptReference/SerializedProperty-isExpanded.html for example as such: public override void...
View Article