Drag 2D objects in Unity - using the mouse to move sprites.

Опубликовано: 27 Июль 2022
на канале: Firnox
12,224
162

Nearly all 2D games require you to click or touch to drag objects around the scene. E.g., in a jigsaw game. This tutorial shows two methods for doing this within Unity.

The first method is a script which you can attach to any object you wish to move. This utilises the OnMouseDown and OnMouseUp methods.

The second is to create a central manager for moveable objects. This will cast a ray using Physics2D.Raycast when you press the mouse button to detect objects. It uses a layer mask to determine which objects in the scene can be moved.

Code is available on GitHub: https://github.com/Firnox/Drag2D

Contents:
0:00 Introduction
0:20 Per-object drag script
2:24 Centrally controlled dragging