Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • 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 cassius · Apr 01, 2016 at 03:31 PM · inspectorenuminstantiate-game-object

Instantiate GameObject on Enum Selection from Inspector

I'm wondering how to go about instantiating (or destroying) a new GameObject when a specific enum value is selected from it's dropdown menu in the Inspector window, prior to run-time.

Does anyone know how to go about doing this?

Thanks!

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
1
Best Answer

Answer by TreyH · Apr 01, 2016 at 05:59 PM

This will be a pretty basic example to get you started. You can accomplish this in a few different ways, but the most educational seemed to be an introduction to custom inspectors. Create a script called PrimativeSpawner, paste this in:

 using UnityEngine;
 using System.Collections;
 using UnityEditor;
 
 public class PrimativeSpawner : MonoBehaviour {
 
     // Active primative choice
     public UnityEngine.PrimitiveType primativeChoice;
 
     // Spawn a primative based on the enum choice
     public void CreateChosenPrimative()
     {
         // Check what's currently active
         GameObject newPrimative  = GameObject.CreatePrimitive(primativeChoice);
 
         // Print the new thing's name
         Debug.LogFormat("New Primative created!  {0}", newPrimative.name);
     }
 }
 
 // We can use a custom  inspector  for this
 [CustomEditor(typeof(PrimativeSpawner))]
 public class PrimativeSpawnerInspector : Editor
 {
     // Keep track of our current object being  inspected
     public PrimativeSpawner spawner;
 
     // Replace the given inspector gui
     public override void OnInspectorGUI()
     {
         // Draw the given inspector
         this.DrawDefaultInspector();
 
         // Check that it's been initialized
         if (spawner == null)
             spawner = this.serializedObject.targetObject as PrimativeSpawner;
 
         // Simple Button
         if (GUILayout.Button("Spawn Primative"))
             spawner.CreateChosenPrimative();
     }
 }


You'll be able to choose a prefab then create it with a button click in its inspector:

alt text


spawner.png (346.2 kB)
Comment
Add comment · Show 1 · 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 cassius · Apr 01, 2016 at 08:10 PM 0
Share

Awesome! Thanks TreyH. I needed to change the Debug.LogFormat state to just a Debug.Log ins$$anonymous$$d, but other than that this worked for me. I should be able to figure it out from what you've provided. $$anonymous$$arking as Accepted.

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.

Follow this Question

Answers Answers and Comments

42 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

[Inspector] Populate Enum Options with List of Files? 1 Answer

Is "enum x : UInt32" cast to "enum x : int" when serializing? 1 Answer

DropDownList with string array in Editor Inspector 5 Answers

Rename array element name in inspector with enum 0 Answers

Array with multiple variables in Inspector 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges