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 kholaHaroon · Aug 25, 2013 at 10:32 PM · animationmesh-morph

how to make a customised head in unity

i have created a head model in 3d max i want to be able to give an interface of entering the diameter of the head and making the head according to that. I am aware that I can do it with mesh morphing but can i get any sample script or any help on how i can do that.

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 aldonaletto · Aug 25, 2013 at 10:41 PM

You could download the Procedural Examples project from Unity: it creates and modifies meshes at runtime, and may help you.

EDITED: I suggested the Procedural Examples because they have scripts that deform meshes - like the script CrumpleMesh.js, for instance. In your case, maybe a mesh scaling function could do the job:

 function ScaleMesh(scaleX: float, scaleY: float, scaleZ: float){
   var mesh: Mesh = GetComponent(MeshFilter).mesh;
   var verts: Vector3[] = mesh.vertices; // get a copy of the vertices
   for (var i=0; i<vertices.Length; i++){
     // scale each vertex
     verts[i] = Vector3.Scale(verts[i], Vector3(scaleX, scaleY, scaleZ));
   }
   mesh.vertices = verts; // assign the scaled vertices to mesh.vertices
   mesh.RecalculateNormals(); // fix mesh normals
   mesh.RecalculateBounds(); // adjust mesh bounds
 }

Place this function in a script attached to some object, then call it passing the scale in each axis in scaleX, scaleY and scaleZ (1 means no change, of course). The result is the same as setting Scale in the Inspector - but changing the field Scale affects the object children as well, specially when the parent is rotated (children get skewed when the scale is non-uniform), while scaling the mesh doesn't have any effect in the children.

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 kholaHaroon · Aug 26, 2013 at 02:10 PM 0
Share

aldonaletto those are just unity files can u tell me about any tutorials or videos on how to use these which will help me in making my custom head.

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

16 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

Related Questions

A node in a childnode? 1 Answer

Make 2d Animation Scene 0 Answers

How can i animate my Object? (bones available) 1 Answer

Animation clips problem 0 Answers

Quick animation question 1 Answer


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