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 polda602 · May 09, 2019 at 06:09 PM · uidragui imagedrag-and-dropdrop

How to move UI image between panels

Hello,

I have trouble with changing parents on UI image, when I drag my image to another panel and drop it there, it changes image parent, but when is it vice versa, It doesn't work.

There is my code for UI Image

 public class DragIcons : MonoBehaviour, IDragHandler, IEndDragHandler
 {
     Vector3 startposition;
     public Transform transformParent = null;
     
     //public GameObject itemBeingDraged;
     public void OnBeginDrag(PointerEventData eventData)
     {
         startposition = transform.position;
 
         transformParent = transform.parent;
         transform.SetParent(transform.parent);
 
 
 
         GetComponent<CanvasGroup>().blocksRaycasts = false;
         
     }
 
     public void OnDrag(PointerEventData eventData)
     {
 
         
         transform.position += (Vector3)eventData.delta;
        
     }
 
     public void OnEndDrag(PointerEventData eventData)
     {
         transform.localPosition = transform.localPosition;
         transform.SetParent(transformParent);
         GetComponent<CanvasGroup>().blocksRaycasts = true;
 
     }
 
     
 }

and this is for my second panel

 public class PanelDropzone : MonoBehaviour, IDropHandler
 {
     public void OnDrop(PointerEventData eventData)
     {
         DragIcons di = eventData.pointerDrag.GetComponent<DragIcons>();
         if(di != null)
         {
             di.transformParent = transform;
         }
         
     }
 
     // Start is called before the first frame update
     void Start()
     {
         
     }
 
     // Update is called once per frame
     void Update()
     {
         
     }
 }

When I'm dragging my UI image from panel1 to panel2 it's okay, it change parent to panel2. But when I try drag it back to panel1, the parent of image is still set for panel2 and not for panel1

I watched many tutorials on YT and I was reading throught internet and everywhere is always tutorial like on Inventory or something like this or they are using slots etc. But I don't understand how to do it like this. Thank you.

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 DanielAllison · May 10, 2019 at 11:54 AM 0
Share

It's hard for me to say without seeing your project but I THIN$$anonymous$$ the issue is that the OnDrop method in your PanelDropzone script isn't be called the second time. Your code looks fine, I don't see anything that would stop the parent from being changed so I'm guessing something is stopping the drop event from firing.

$$anonymous$$y best guess is that Panel2 is before Panel1 in the hierarchy which means that when the dragged item is dragged back to original panel the item is now under the panel so the drop code never fires. The workaround here would be something like this:

 public Transform canvasRoot;
 
 public void OnBeginDrag(PointerEventData eventData)
      {
          startposition = transform.position;
  
          transformParent = transform.parent;
 
          //Updates here
          transform.SetParent(canvasRoot);
          transform.SetAsLastSibling();
 
          GetComponent<CanvasGroup>().blocksRaycasts = false;
      }


Where canvas root is assigned to your canvas. This will basically make sure the item you're dragging is always on top of other elements in the canvas. Some additional logic may be needed to set the parent back to transformParent if the item wasn't dragged onto a drop handler.

If this doesn't work, check that the original panel has the PanelDropzone script and check that the panel is a raycast target too.

Let me know if it works or if you've got any other questions.

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

175 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 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

Drag and drop files from the assets folder to another folder not working 0 Answers

OnDrop never gets called 1 Answer

OnDrop called on wrong GameObject 1 Answer

Make sure only parent will be draggable. 0 Answers

When is the OnDrop method called? IDragHandler 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