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 /
avatar image
0
Question by Adaira · Jul 10, 2019 at 01:29 AM · camerarenderingvravatar

Render a Avatar head smaller for only one camera

Hello.

I am trying to render a avatars head to a scale of zero, but only for one camera. This is meant for VR and should enable users to upload their own avatars easily and my game just "disables" the head rendering.

I ran into a problem though: I am using OnPreRender and OnPostRender, setting the scale of the head (Retrieved via Animator.GetBoneTransform) to zero and in Post back to it's original.

The result was expected to render the head only for the attached camera to zero, but the scaling never happens. The only thing that does happen, is that child objects move to a different position.

 public Animator Anim;
     private void OnPreRender()
     {
         if (Anim != null)
         {
             Anim.GetBoneTransform(HumanBodyBones.Head).localScale = Vector3.zero;
         }
     }
 
     private void OnPostRender()
     {
         if (Anim != null)
         {
             Anim.GetBoneTransform(HumanBodyBones.Head).localScale = Vector3.one;
         }
     }

Any help or a different solution on how to disable the head would be very appreciated. Thanks.

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 sarahnorthway · Jul 11, 2019 at 07:47 PM

We solved this by putting the head on a custom layer and setting the 1st person camera Culling Mask to ignore that layer.

It worked so well we use it for everything. But now we have so many overlapping dimensions (using cameras with culling masks to peek between them) and custom lighting layers (multiplying the # of possible layers a head could be on) that we've started to run up against the max limit of 32 layers. I wish camera culling worked with Unity's tag system as well!

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 Adaira · Jul 11, 2019 at 08:10 PM 0
Share

Yeah. That sadly doesn't work for me. $$anonymous$$y game let's the users upload their own avatars, which means I would have to assume everyone knows how to use blender or something to separate the head mesh from the body. I mean yes, I could add this restriction, but I would really like to just scale the head down to avoid problems with layers. I know it is possible "somehow"... my solution just seems to be bugged as it does something (moving child objects) but doesn't scale.

Also, if I disable the whole avatar with SetActive, it works flawlessly. The avatar is invisible for only the camera the script runs on. But scaling, position and rotation do not work.

avatar image sarahnorthway Adaira · Jul 11, 2019 at 09:12 PM 0
Share

Ah yes, I can see why you're taking this approach...

avatar image sarahnorthway sarahnorthway · Jul 11, 2019 at 09:13 PM 0
Share

I'd guess Unity doesn't apply scaling/etc right away when animation bones change, and waits until LateUpdate or somesuch to do all the mesh recalculations at once.

I think Animation.Sample might be a way to force it to update the mesh immediately?

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

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

Why Assigned reference in scene mode will change in play mode? 0 Answers

How do I reference the cameraEye in another script 0 Answers

Camera for Monitor is stretched when using VR 1 Answer

How to use two cameras in VR to display 3D object on top of UI panel? 0 Answers

Camera image flickers with SteamVR 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