Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 TMagDev · Nov 17, 2014 at 05:49 PM · rendererboundscenterindicatortop

Placing a GameObject on top of another GameObject.

Hey everyone,

I'm making a turn based game, similar to Final Fantasy 7, and I want to place a 3D GameObject (not related to GUI) on top of a different GameObject much like in Final Fantasy 7.

Here's an illustration to help: alt text

From what I've been searching so far, I understand that using the renderer.bounds functions is probably the best way to go, but I'm having trouble getting the centered top!

Thank you very much in advance.

final-fantasy-vii-gameplay1.jpg (133.0 kB)
Comment
Add comment · Show 2
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 MrSoad · Nov 17, 2014 at 05:31 PM 0
Share

Get the position Vector3 of the object you want to place it over. Now position your floating object via this position with a +y addition to the Vector3.

avatar image TMagDev · Nov 17, 2014 at 06:05 PM 0
Share

Thanks for the quick answer! I really didn't think about it that way. One more thing! How can I know the height of the GameObject so I can add the precise Y value ins$$anonymous$$d of randomly testing for it?

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by bubzy · Nov 17, 2014 at 06:01 PM

     public GameObject floatyThing;
     bool flashyThing = false;
     float offset = 1f;
     GameObject floaty;
 
     void Start()
     {
         floaty = Instantiate(floatyThing,transform.position+new Vector3(0,offset,0),Quaternion.identity) as GameObject;
         floaty.SetActive(flashyThing);
     }

change the value of offset to move the thingy up and down, and change flashyThing to turn it on and off.

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 bubzy · Nov 17, 2014 at 06:02 PM 0
Share

this is if the flashything is above the unit you have attached the script to, otherwise you will have to do what mrsoad said and find the object.

avatar image TMagDev · Nov 17, 2014 at 06:07 PM 0
Share

Thanks for the answer! That seems to do the trick :) When I was reading your reply and $$anonymous$$rSoad's I came across another issue. How can I know the height of the gameobject so I can add the precise offset value, ins$$anonymous$$d of randomly testing for it?

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

How to get the center point of an object without any renderers? 2 Answers

Bounds.Encapsulate Not Working As Intended 1 Answer

Wrong positions from bounds 1 Answer

How to get the center of an empty parent gameobject? 1 Answer

TextMesh.renderer.bounds.extents not 100% accurate? 2 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