2D Demo Scene
Play around with the simple demo scene to quickly understand the drag and drop function.
Last updated
Was this helpful?
Play around with the simple demo scene to quickly understand the drag and drop function.
Last updated
Was this helpful?
Path = [Assets/DragAndDrop/DemoScene/Simple Drag and Drop/DemoScene.unity]
You can simply add a new custom Drag and Drop Event in the inspector! Yeah!
Example Function Usage:
For more advance usage, you can write your own drop function by simply inherient the DropSlot script.
For example in the demo scene, we write a DropSlotDemo script which inherent the DropSlot, then override the OnDrop function.
You can get the info of the drag object by casting the DropObj.m_ObjInfoComponent.
Then, do whatever you want.
For example, we call an Initialize function which replace the slot image to the draggable object image.