I’m quite new to C# and Unity so please, be tolerative, it’s probably a very obvious question ![]()
When I create a Vector (Vector2 in this case) like that:
Vector2 Position = new Vector2(0, 0);
should I delete it when it’s not used to prevent the memory leak?
And if so, how can I do that? I can’t use Destroy() for sure.