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 glad · May 22, 2017 at 08:09 PM · editor-scriptingeditorwindowsceneview

OnSceneGUI event Use() ates too much :)

Hello!

I am painting on a 2D texture in Editor mode(tex.SetPixels(...)/tex.Apply()). I am painting by cells(15x15). The process is simple: I click on the cell and it changed its color. I could paint by click(one click paints on cell). But it is not comfortable. So I decided to make the following: when I hold the mouse button down the process of painting never stops until I release the mouse. Here are the code that do it:

 void OnSceneGUI(SceneView sceneView)
     {  
         EventType evType = Event.current.type;
         if (Event.current.button == 0)
         {
             switch(evType)
             {
                 case EventType.layout:
                     HandleUtility.AddDefaultControl(GUIUtility.GetControlID(GetHashCode(), FocusType.Passive));
                     break;
 
                 case EventType.mouseDown:
                     lMouseBtnDown = true;
                     break;
 
                 case EventType.mouseUp:
                     lMouseBtnDown = false;
                     break;
 
                 case EventType.mouseDrag:
                     //Event.current.Use();
                     break;
             }
         }
 
         if (lMouseBtnDown)
         {
             OnSceneViewMouseDown();
         }
     }
 
     void OnSceneViewMouseDown()
     {
         Vector3 mousePosition = Event.current.mousePosition;
         Ray ray = HandleUtility.GUIPointToWorldRay(mousePosition);
         mousePosition = ray.origin;
 
         if (dg == null)
             InitDebugGrid();
 
         dg.GridCellPaint(mousePosition, passabilityRate);
         Event.current.Use();
     }

However, this Event.current.Use() ates too much. If I move the mouse across the scene with mouse button down I will not see any result on the screen until I release the button. If I remove .Use() the result of painting would be immediatelly drawn on the screen. But If I remove .Use() also I would select the texture in Scene View. I wonder if there is a possibility to do manual redraw of the SceneView ?

Thank you.

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
Best Answer

Answer by glad · May 23, 2017 at 02:09 PM

The solution is found, however I am not quite sure why it's working. So, if I do it like this everything is gonna be alright:

 void OnSceneGUI(SceneView sceneView)
     {  
         EventType evType = Event.current.type;
         if (Event.current.button == 0)
         {
             switch(evType)
             {
                 case EventType.layout:
                     HandleUtility.AddDefaultControl(GUIUtility.GetControlID(GetHashCode(), FocusType.Passive));
                     break;
 
                 case EventType.mouseDown:
                     lMouseBtnDown = true;
                     break;
 
                 case EventType.mouseUp:
                     lMouseBtnDown = false;
                     OnSceneViewMouseDown();
                     break;
 
                 case EventType.mouseDrag:
                     if (lMouseBtnDown)
                     {
                         OnSceneViewMouseDown();
                     }
                     break;
             }
         }
     }

The only thing I did is moved the if(lMouseButtonDown) block into the mouseDrag event handler.

I appreciate if anyone could make some comment on that solution.

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

74 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

Related Questions

Set Parent EditorScript 1 Answer

Why does the SceneView camera return jittery values? 0 Answers

Error: Unable to load the icon: 'CustomEditorWindow'. (Custom Scene View) 1 Answer

Drawing to scene view from EditorWindow? 2 Answers

Custom scene view in editor window 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