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 ina · Nov 02, 2011 at 03:49 AM · meshprocedural

Flattening a mesh based on hit.point

How do you flatten a mesh based on the point of impact or hit.point?

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 BerggreenDK · Nov 02, 2011 at 12:11 PM 0
Share

that sounds like the hard way to do it. I believe you could use it with a shader that utilizes displacement map ins$$anonymous$$d? depending on your primary goal ofcause. Just remember that Unity isnt a 3D modeller tool. Its a Game/visualization engine.

avatar image syclamoth · Nov 02, 2011 at 12:16 PM 0
Share

Honestly, I'd do it with a skinned mesh animation. $$anonymous$$ake it in your 3d modelling application of choice, and then blend the animation in when the time comes.

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by Foxis · Nov 02, 2011 at 01:11 PM

If you just need to edit the graphical representation, it is quite easy and not that much of a performance impact. You have the hitpoint, the mesh and the transform, so you can access the vertices like so:

 hittransf = hitinfo.collider.transform;
 tri = hitinfo.triangleIndex;
 verts = hitmesh.vertices;
    tris = hitmesh.triangles;
 thevertex = hittransf.TransformPoint(verts[tris[tri*3]]);

and to modify the vertex you do:

 verts[tris[tri*3+thevertex]] += Vector3.up * ammount;

I just snipped this out of a project, so please take into account that some of the variables above are already set. For example, you need to grab the mesh (hitmesh aboive) and after the operation you need to set the vertices of the mesh to the edited array (verts).

This should get you started. Hope it helps! :)

Comment
Add comment · Show 3 · 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 ina · Nov 02, 2011 at 06:53 PM 0
Share

I guess my question is more specific than accessing the vertices... how do you modify it so the mesh gets flattened in area or point of hit.

avatar image ina · Nov 03, 2011 at 07:45 PM 0
Share

not sure exactly how you got these indices? verts[tris[tri*3+thevertex]]

avatar image Foxis · Nov 04, 2011 at 10:54 AM 0
Share

Take a look again. ;)

The key index is tri, and it is retrieved from tri = hitinfo.triangleIndex. hitinfo is your hit information from the collider involved. tri is then used to get the vertices you want to modify. The last code line above was originally wrapped in a for loop where thevertex was incremented to affect the entire triangle.

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Generate mesh from raycast positions, independent of rotations 0 Answers

Create the visual spring in Unity? 3 Answers

Creating a Pentahedron (a 5 sided shape) Mesh procedurally 1 Answer

Create planar UVs on procedurally generated mesh 1 Answer

What is wrong with this mesh editing code? 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