Separation Bars on Inspector Question

I have a question about separation bars on Inspector.

My script have lots o Var´s and confusing on Inspector.

there is an solution to separate the var´s via script create separation bars??

691461--24886--$separate bars.jpg

You’d have to design your own GUI by creating a script and placing it in a folder named Editor. Then in that script you could have some thing like:

@CustomEditor( NameOfYourScript )
class TheSameNameAsThisScript extends Editor 
{
     function OnInspectorGUI()
     {
          NameOfYourScript.value = EditorGUILayout.FloatField("what ever name you want", NameOfYourScript.value); 
          //  .
          //  .
          //  .
          EditorGUILayout.Space();
          NameOfYourScript.value2 = EditorGUILayout.FloatField("what ever name you want", NameOfYourScript.value2); 
          //  .
          //  .
          //  .
     }
}

Of course you could use any GUI functions you want, not just spaces and float fields. Can look here for more info on EditorGUILayout. All of the stuff on the left side of that page though is very useful for creating all sorts of extensions/inspectors/editors. You can also use any of the functions you would use in the standard runtime “OnGUI” function too.