Skip to content

Instantly share code, notes, and snippets.

@seferciogluecce
Created November 14, 2019 19:10
Show Gist options
  • Save seferciogluecce/6181945284ccf3b40cabbb303652b71b to your computer and use it in GitHub Desktop.
Save seferciogluecce/6181945284ccf3b40cabbb303652b71b to your computer and use it in GitHub Desktop.
using UnityEngine;
public class MoveToRelease : MonoBehaviour
{
Vector2 MinPos;
Vector2 MaxPos;
Vector2 mousePos;
void Start()
{
Vector2 Size = GetComponent<SpriteRenderer>().bounds.extents;
MinPos = (Vector2)Camera.main.ViewportToWorldPoint(new Vector2(0, 0)) + Size;
MaxPos = (Vector2)Camera.main.ViewportToWorldPoint(new Vector2(1, 1)) - Size;
}
void Update()
{
if (Input.GetMouseButtonUp(0))
{
mousePos = (Input.mousePosition);
Vector2 targetPos= new Vector2(Camera.main.ScreenToWorldPoint(mousePos).x, Camera.main.ScreenToWorldPoint(mousePos).y);
targetPos.x = Mathf.Clamp(targetPos.x, MinPos.x, MaxPos.x);
targetPos.y = Mathf.Clamp(targetPos.y, MinPos.y, MaxPos.y);
transform.position = targetPos;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment