• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Phusckidus · Aug 31, 2015 at 12:28 PM · editor-scriptingwizard

Can I prevent OnWizardCreate() from automatically closing the wizard?

I would like the wizard not to close if the user attempts to click "Create", and certain requirements are not fulfilled.

Example Code:

     void OnWizardCreate()
     {
         if (Category != "") 
         {
             PrefabUtility.CreatePrefab("Assets/Resources/" + ArtifactName + ".prefab", upcommingArtifact);
         }
         else
         {
             //Do not close line goes here
             EditorUtility.DisplayDialog("No Category Given", "The cetegory needs to be set", "Ok");
         }
     }

 


Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
4
Best Answer

Answer by Mikilo · Aug 31, 2015 at 12:33 PM

ScriptableWizard provides field "isValid" to disable the "Create" button.

And "errorString" to display a feedback.

 void OnWizardUpdate () {    
     if (Category != "") 
         isValid = true;
     else
     {
         isValid = true;
         errorString = "No Category Given: The cetegory needs to be set";
     }
 }
Comment
Add comment · Show 2 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Phusckidus · Aug 31, 2015 at 03:31 PM 1
Share

Solved the problem for me. Thanks a bunch

avatar image Mikilo · Aug 31, 2015 at 03:54 PM 0
Share

You are welcome!

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Using CustomPropertyDrawer in OnGUI of ScriptableWizard 0 Answers

open wizard on scene load 1 Answer

How do I programmatically assign a GameObject to a prefab? 6 Answers

Which is the easiest technique to produce deliverable editor scripts with closed source code? 2 Answers

Adding to the context menu of the hierarchy tab? 6 Answers

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges