static void CreateWizard()
    {
        AddressableRenameWizard wizard = ScriptableWizard.DisplayWizard <AddressableRenameWizard>("Rename Adressables", "Apply");

        wizard.append  = EditorPrefs.GetString("ARW_append");
        wizard.search  = EditorPrefs.GetString("ARW_search");
        wizard.replace = EditorPrefs.GetString("ARW_replace");
    }
    static void CreateWizard()
    {
        AddressableRenameWizard wizard = ScriptableWizard.DisplayWizard <AddressableRenameWizard>("Rename Adressables", "Apply");

        wizard.prefix0           = EditorPrefs.GetString("ARW_Prefix0");
        wizard.prefix1           = EditorPrefs.GetString("ARW_Prefix1");
        wizard.prefix2           = EditorPrefs.GetString("ARW_Prefix2");
        wizard.postfix0          = EditorPrefs.GetString("ARW_Postfix0");
        wizard.prependFolderName = EditorPrefs.GetBool("ARW_Prepend", false);
    }