Compile() public method

public Compile ( string outPutPath ) : void
outPutPath string
return void
Ejemplo n.º 1
0
        void Compile()
        {
            string path = EditorUtility.SaveFilePanel("OutPut Path", XEditorSetting.PluginPath, codeObject.className + ".cs", "cs");

            codeObject.Compile(path);
        }