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 Scheitler · Dec 15, 2017 at 11:55 AM · renderingrendertextureprojection

Issue with using render texture and custom projection matrix

I have a screenshot script that can make a Screenshot in a different resolution and apsect ratio than the App Screen size. Along with that I also offset the camera a bit (Obliqueness). This may not be easy to grasp by I try to describe it.

It works fine in the preview where AdjustCameraViewport is called in Update() but once I make my screenshot the oblique value does not seem to change. So what I wonder is if when I set the renderTarget if that does not update the projection matrix accordingly as I have limited knowledge of these kind of things.

Becuase what happens is when I scale my screen to the render target aspect ratio then the result is correct. If I offset the image horizontally then the value is greater if my screen aspect is smaller than rt.aspect and the olbiqueness is lesser when my screen aspect is bigger. So my conclusion is that the matrix is still the same in some way. Because when I manipulate the obliqueness (seet to 0 or increase by 1000) only in "Line X" it has no effect at all and the previously described results come out.

Here is basically my render call:

 SkyCamera.targetTexture = rt;
 CameraController.AdjustCameraViewport(rt.width, rt.height, false, true);  //Line X
 yield return new WaitForEndOfFrame();
 SkyCamera.Render();

You can see the methods below. You can ignore the fieldOfView part, it works as it should. I can confirm that hob and vob values are correct, I debugged them.

     public void AdjustCameraViewport(float width, float height, bool activeCam = true, bool skyCam = true)
     {
         float aspect = width / height;
         float hob = HoriOblique / aspect;
         float vob = VertOblique * aspect;
 
         if (activeCam)
         {
             CameraScissorRect.SetObliqueness(Camera, hob, vob);
             Camera.fieldOfView = GetAdjustedFov(curFov, aspect);
         }
         if (skyCam)
         {
             CameraScissorRect.SetObliqueness(SkyCamera, hob, vob);
             SkyCamera.fieldOfView = GetAdjustedFov(curFovBackground, aspect);
         }
     }
     
 public    static void SetObliqueness(Camera cam, float horizObl, float vertObl)
     {
             cam.ResetProjectionMatrix();
         Matrix4x4 mat = cam.projectionMatrix;
         mat[0, 2] = horizObl;
         mat[1, 2] = vertObl;
         cam.projectionMatrix = mat;
     }
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

0 Replies

· Add your reply
  • Sort: 

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

124 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

Related Questions

Is there a limit to the number of CustomRenderTexture dependencies? 0 Answers

PC blackscreens when "Failed to create RenderTexture",PC screen goes black when "Failed to create rendertexture" 0 Answers

Projecting part of a unity camera onto a monitor,Projecting certain area of a camera from plane 0 Answers

Blit a material only on the layer rendered by the camera ? 0 Answers

Farther away object turns green 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