Example #1
0
    public void onClickSavePath()
    {
        string filepath = FileDialogDLL.showSaveFileDialog();

        if (filepath.Length > 0)
        {
            print(filepath);
            //this.mAiPath.save(filepath);
        }
    }
Example #2
0
    public void onClickLoadPath()
    {
        AiPathManager.getInstance().load(@"E:\Git\quick-cocos2d-x-2.2.5-plus-release\project\framework\module\fishing\res\config\table_ai.tab");
        onClickNextPath();
        return;

        string filepath = FileDialogDLL.showOpenFileDialog();

        if (filepath.Length > 0)
        {
            //this.mAiPath = AIPath.loadFromJson(filepath);
            //updateItemList();
        }
    }