So, I have a drag and drop. I’m using the same Drag and Drop operation for both widgets(1) that needs to be dragged, onto drop(1), I compare the ID and if it matches I accept drop. My problem is that I can’t figure out how to make the drop accept 2 drops. I managed to find a way how to place the red square on the “orange” one, but it only accepts one, I’m guessing this is because the value is returned once, and never keeps any track of it. I don’t know how do I keep track of it, and make it accept both red squares to be dropped onto. Please help. Thanks.
Nevermind! Figured it out. Used a variable to store it and a Switch on Int, to make it work.