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 /
  • Help Room /
avatar image
0
Question by Yetter · Jan 15, 2016 at 05:50 PM · buttoncanvasparent

instantiate button set parent

I was fighting with this problem all last night and couldn't figure out the solution. Im making a turnbased RPG, when the abilities button is pressed, a menu should spawn with a button for every ability unlocked. so I've declared both the prefab button and the canvas I want to use as a parent for the button, then I wrote a function to be called whenever the ability menu button is pressed that should instantiate the button and set the parent.

public Button actionButton; public Canvas actionMenu; pubilc void ActionMenuActivate(int abilitiesAvailable){ Instantiate(actionButton); transform.actionButton.SetParent(transform.actionMenu,false);

but the button always shows up far away from my canvas and scene. When I just drop it into the hierarchy on to the actionMenu it works as expected. Any help would be greatly appreciated.

PS any advice on formatting my code on these questions would also be appreciated.

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

2 Replies

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

Answer by vintar · Jan 15, 2016 at 10:28 PM

This should work , but create a prefab of your action button :

 public GameObject actionButton; 
 public Canvas actionMenu; 
 
 pubilc void ActionMenuActivate(int abilitiesAvailable)
 { 
    GameObject obj = Instantiate(actionButton); 
    obj.transform.SetParent(actionMenu.transform,false); 
 }
Comment
Add comment · 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
0

Answer by Yetter · Jan 16, 2016 at 04:02 AM

Well I can't explain it, still isn't working. was almost sure that assigning the instance was gonna fix this problem but I'm still having the exact same issue, the button keeps its RectTransform but it is releative to the world instead of the canvas. Appreciate the input though, Thanks

EDIT: well this is interesting, in the console I have this warning

" Setting the parent of a transform which resides in a prefab is disabled to prevent data corruption. UnityEngine.Transfor:SetParent(Transform,Boolean)"

just to be clear actionMenu is also stored as a prefab

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 vintar · Jan 18, 2016 at 06:00 AM 0
Share

Then you would need to instantiate the canvas as well.

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

37 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

Related Questions

Two buttons are staying in front of every other ui element regardless of where I put them in the hierarchy 1 Answer

UI Button not working? 0 Answers

AddListener fuction throwing a NullReferenceException error 1 Answer

Why does my jump button not work in some scenes 0 Answers

World space canvas buttons are not working? 0 Answers


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