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 Tihonyuk · Jun 01, 2016 at 02:38 PM · camera2d gamerenderingrender texture

Unity 3D Render Camera Bug!!!

Hi, there

I developing 2D game

I want render 3d models in Unity

I writted some script for render and save png file with alpha channel

 using UnityEngine;
 using UnityEditor;
 using System.Collections;
 using System.IO;
 
 public class PhotoTool : MonoBehaviour 
 {
     
     private string path;
     public bool shot = false;
     public Camera cam;
 
     public string color;
     public Transform unit;
 
     void Start()
     {
         if (path == null)
         {
             SelectDir ();
         }
 
         int angle = 0;
         for (int i = 0; i < 8; i++) 
         {
             Shot ();
             angle += 45;
             unit.localEulerAngles = Vector3.up * angle;
         }
 
 
     }
         
 
     public void Shot()
     {
         int sqr = 512;
 
         RenderTexture tempRT = new RenderTexture(sqr,sqr, 0 );
 
         cam.targetTexture = tempRT;
         cam.Render();
 
         RenderTexture.active = tempRT;
         Texture2D virtualPhoto = new Texture2D(sqr,sqr, TextureFormat.ARGB32, false);
         virtualPhoto.ReadPixels( new Rect(0, 0, sqr,sqr), 0, 0);
 
         RenderTexture.active = null;
         cam.targetTexture = null;
 
         byte[] bytes = virtualPhoto.EncodeToPNG();
 
         File.WriteAllBytes(path + "/"+ unit.name + "_" + color + "_" + unit.transform.localEulerAngles.y + ".png", bytes);
     }
 
     public void SelectDir()
     {
         path = EditorUtility.OpenFolderPanel ("","","");
     }
 
 
 }

So this scripts works, but i get uncorrect render

Look: There is expected result (used simple screenshot)

alt text

But i got this

alt text

So, how to fix this? I checked this on 5.2.2 | 5.3.4 | 5.4.0b but same result

Thanks, Unity Community

1.png (18.0 kB)
solder-sword-human-red-0.png (14.6 kB)
Comment
Add comment · Show 1
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 mikelortega · Jun 01, 2016 at 04:47 PM 0
Share

Is your object's material transparent or fade? Try again with opaque or cutout.

1 Reply

· Add your reply
  • Sort: 
avatar image
2
Best Answer

Answer by Eudaimonium · Jun 01, 2016 at 07:11 PM

This is because you have disabled the "depth buffer". Depth buffer is what your GPU need to know which pixels are in front of the others.

You need to replace this:

 RenderTexture tempRT = new RenderTexture(sqr,sqr, 0 );

... with this:

 RenderTexture tempRT = new RenderTexture(sqr,sqr, 24 );

This tells the GPU that your render texture has 24-bit depth buffer.

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

"Motion vectors" and "depth with normals" from camera's target texture 1 Answer

Pixel perfect render texture sprites moving irreguarly 0 Answers

What is rendered when no camera is in the scene? 1 Answer

Bounding box / camera problem while "sitting" animation 2 Answers

Multiple post processing profiles? 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