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 flamy · Oct 01, 2012 at 10:53 AM · guiopenglonpostrender

Coordinate woe OnPostRender/OnGUI, immediate draw?

"Coordinate system changes between OnPostRender and OnGUI while in immediate draw mode"

Hi, i am running in to a strange problem, where The co-ordinate system changes completly between OnPostRender and OnGUI of the same script. It seems like OnPostRender follows World coordinate system and OnGUI follows Screen coordinate system.

I guess u will understand from the following code,

 void OnPostRender()
     {
         if(Event.current.type == EventType.repaint)
         DrawCircle();
     }
     
     void OnGUI()
     {
         
         DrawCircle();
     }
     
     
     
     void DrawCircle()
     {
         zValue = transform.position.z+1;
             
             GL.Begin(GL.LINES);
             GL.Color( new Color(1,0,1,1f) );
             
             for(int i=1;i<360;i+=6)
             {
                 GL.Vertex3 ( 0 + Mathf.Cos ((i-1)*Mathf.Deg2Rad)*radius, 0 + Mathf.Sin((i-1)*Mathf.Deg2Rad)*radius,zValue);
                 GL.Vertex3 ( 0 + Mathf.Cos (i*Mathf.Deg2Rad)*radius, 0 + Mathf.Sin(i*Mathf.Deg2Rad)*radius,zValue);
             }
             
             GL.End();
     }

this script is attached to an orthographic camera, where i am getting 2 different circles. one at the top of the screen and one at the middle of various size, though the radius is the same.

Is it a bug or is this the way GL functions work in unity. Is there a possibility of making it use one fixed co ordinate system.

Comment
Add comment · Show 2
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 hvilela · Oct 01, 2012 at 11:08 AM 0
Share

Please, format your code.

avatar image flamy · Oct 01, 2012 at 11:09 AM 0
Share

my bad it got messed up somehow. Sorry

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

10 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

Related Questions

how to render line between gui element and mouse position 1 Answer

Using GL to display HUD on screen 0 Answers

How can I draw one black pixel in GUI 2 Answers

Disable one GUI Button with my Mouse Scroll Wheel? 1 Answer

Using if/else statements in GUI 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