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
-1
Question by Tehnique · Nov 07, 2012 at 09:05 AM · positionboundspivot

How to get distance from position to transform bounds

Hey guys, this has been bugging me for some days now. Quite new to Unity, and it is possible that I misunderstood some concepts, so bear with me, please :).

I am trying to script a camera so that it can orbit a transform and zoom in right to the edge. The focal point of the camera is the transform pivot. The transform does not have the pivot right in the center, so I have to set the minimum distance of the camera as the max(distances between pivot and object bounds).

Is there any way to calculate this?

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 valyard · Nov 07, 2012 at 01:59 PM

Do you use Renderer.bounds? Because it has center property which is the mesh's geometrical center. So you could orbit around it with max(bounds.extents.x, bounds.extents.y, bounds.extents.x) radius.

Comment
Add comment · Show 4 · 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 Tehnique · Nov 07, 2012 at 02:12 PM 0
Share

I do use it, but it seems my camera is centered on the transform pivot and not the geometrical center. I will try to set the camera focus point on the geometrical center and use your sugestion. If it works i will post the script later for other people to use.

avatar image Tehnique · Nov 07, 2012 at 09:37 PM 0
Share

I ended up using this:

 distance$$anonymous$$in = $$anonymous$$athf.$$anonymous$$ax($$anonymous$$athf.Abs(Get$$anonymous$$eshBoundingBox(target).max.x - target.localPosition.x), 
                                 $$anonymous$$athf.Abs(target.localPosition.x - Get$$anonymous$$eshBoundingBox(target).$$anonymous$$.x),
                                 $$anonymous$$athf.Abs(Get$$anonymous$$eshBoundingBox(target).max.y - target.localPosition.y), 
                                 $$anonymous$$athf.Abs(target.localPosition.y - Get$$anonymous$$eshBoundingBox(target).$$anonymous$$.y),
                                 $$anonymous$$athf.Abs(Get$$anonymous$$eshBoundingBox(target).max.z - target.localPosition.z), 
                                 $$anonymous$$athf.Abs(target.localPosition.z - Get$$anonymous$$eshBoundingBox(target).$$anonymous$$.z));


where Get$$anonymous$$eshBoundingBox is:

 static public Bounds Get$$anonymous$$eshBoundingBox(Transform transform) {
         
         GameObject gameObj = transform.gameObject;
         $$anonymous$$eshRenderer[] meshFilter = gameObj.GetComponentsInChildren<$$anonymous$$eshRenderer>();
 
         if (meshFilter.Length>0) 
         {
             Bounds bounds = meshFilter[0].bounds;
             for (int i=1; i<meshFilter.Length; i++) 
             {
                 bounds.Encapsulate(meshFilter[i].bounds);
             }
             return bounds;
         }
         
         else return new Bounds();
 
     }
avatar image valyard Tehnique · Nov 07, 2012 at 10:48 PM 0
Share

Doesn't seem right. You are getting distance aligned with axes, not distance from camera. Also why would you have more than one $$anonymous$$eshRenderer? And it would be a good idea to call Get$$anonymous$$eshBoundingBox just once and save it to a variable.

avatar image Tehnique Tehnique · Nov 08, 2012 at 07:51 AM 0
Share

Distance aligned with axis is what i need. I want the $$anonymous$$imum distance to be the maximum of how much the target extends on any axis.

Agree about using just one $$anonymous$$eshRenderer and calling Get$$anonymous$$eshBoundingBox only once, will change my code.

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

10 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

Related Questions

Please help finding center of object 1 Answer

Procedural object generation, objects overlap each other 1 Answer

modifying renderer.materials resets scaling of renderer.bounds until transform.position is updated 0 Answers

How to grab position and bounds of Trackables in real time (AR Foundation)? 0 Answers

Change Sprite Pivot/Bounds from Script 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