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 CJ-Clark · Oct 03, 2016 at 06:00 AM · renderingopengllinesline drawingcorner

GL.LINES renders in a single quadrant of the screen

Hello,

I've recently thrown together a quick grid renderer using GL.LINES per references here on Unity Answers. It renders, however, it only renders the full screen when an object in my scene is on the screen. If there is no object onscreen, it only renders in the upper right quadrant of the screen. As soon as an object is added or comes onscreen, it shows the entire grid. My render call is hit regardless of what is onscreen.

The grid renderer and objects do not interact in any way. There are no scripts that tie them together. The grid script is on an object in the root of my hierarchy. The object in the image is a child of an empty GameObject. The empty object is also at the root of the hierarchy.

My code is below, to show it's utter simplicity. The commented out lines I pulled from some sample code and appear to make no difference in the render.

Does anyone know what might be causing this? Thanks in advance!

 public void OnRenderObject()
 {
     //GL.PushMatrix();
     //GL.MultMatrix(transform.localToWorldMatrix);
     
     GL.Begin(GL.LINES);
     GL.Color(new Color(1.0f, 1.0f, 1.0f));
 
     //  Horizontal Lines
     for (int y = -50; y < 50; ++y)
     {
         GL.Vertex3(-50.0f, y, 0.0f);
         GL.Vertex3(50.0f, y, 0.0f);
     }
     //  Vertical Lines
     for (int x = -50; x < 50; ++x)
     {
         GL.Vertex3(x, -50.0f, 0.0f);
         GL.Vertex3(x, 50.0f, 0.0f);
     }
     
     GL.End();
     //GL.PopMatrix();
 }

alt text

unity-glline-render.png (38.5 kB)
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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Texture lookup in Surface Shader in pixel space 0 Answers

OpenGL ES 1/2 Jagged edges issue 1 Answer

OpenGL ES 3 VR 1 Answer

general question regarding flexibility of unity3d rendering 0 Answers

GL not working on Mac OS 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