Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public static class Vector3Extension
  2. {
  3. public string ToCustomString(this Vector3 vector)
  4. {
  5. return string.Format("{0}, {1}, {2}", vector.x.ToString(), vector.y.ToString(), vector.z.ToString());
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement