How to change sprite pivot point when you click on it ?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Fixed

Hi! I’m trying to make the system drag and drop system, like in papers please , but when I click on a sprite and I move it, the cursor is placed in the zero coordinates of the pivot point (0,0), but I need when clicking on the sprite the coordinates of the pivot is changed to the coordinates of the mouse click,how to do it? Ill try

var s = get_node("my_sprite")
s.set_offset(Vector2(0,32))

but it drops error for me.

:bust_in_silhouette: Reply From: Eric Ellingson

have you tried just doing:

var s = get_node("my_sprite")
s.offset = Vector2(0, 32)

Also, if you could provide the specific error that would be helpful