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 neoking_unity · Jul 15, 2018 at 08:12 PM · positioningvertexprefab-instance

Getting vertices of moved and scaled prefab

I want to get array of vertices of instantiated object and then use it as a feed to raycast over vertices of other mesh. Problem is with getting vertices of that instantiated object. Shortened version of my code:

 prefab_PRE = Resources.Load ("prefabs/street") as GameObject;
 current_position = new Vector3 (2 + highlight.posx, highest_mesh_y + 1f, 2 + highlight.posy);
 prefab = GameObject.Instantiate (prefab_PRE,current_position, rotate_q, current_grass.transform) as GameObject;
 mesh = prefab.GetComponent<MeshFilter> ().sharedMesh;
 mesh = (Mesh)Instantiate (mesh);
 prefab.transform.localScale = new Vector3 (0.2f, 0.2f, 0.2f);
 for (int i = 0; i < mesh.vertices.Length; i++) { //For testing
     Debug.DrawRay (mesh.vertices [i], Vector3.down, Color.green, 10);
 }

Apparently, array mesh.vertices is referring to prefab_PRE's vertices, insted of prefab's (as I wanted it to be). I tried making mesh unique with

 mesh = (Mesh)Instantiate (mesh);

but it hasn't worked as I expected. So how can I get to array of prefab's vertices? alt text

Rays represent vertices of my "untransformed" asset 'street.3ds' (prefab_PRE), while prefab is that hovering road :>. Rays should cover only the road and nothing more.

s.png (159.4 kB)
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
0

Answer by neoking_unity · Jul 18, 2018 at 03:24 PM

Finally I got it. Mesh Filters property .vertices relates to local alignment of vertices of original object. Command:

 prefab.GetComponent<MeshFilter>().sharedMesh.vertices 

refers to vertices of original prefab. Moreover:

  prefab.GetComponent<MeshFilter>().Mesh.vertices

means exactly the same. However, if you want to get unique mesh of prefab and operate on it, u need to get its .mesh, not .sharedMesh. If clone has been scaled, every change of vertex must by "back-scaled" so to speak. For example, if copy has been scaled down 5 times, then desired change of position of vertex has to be upscaled 5 times as well. Its strange, but it works. At least for me.

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

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

144 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 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 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 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

Problems with positioning game objects 0 Answers

Object dont move to the new position on game mode 0 Answers

How to instantiate Object to specific location? 1 Answer

Instantiating gun to FPSCamera, positioning problem 0 Answers

Moving an image on the X axis is not working as it should. 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