how to open the application call to call a phone number from unity? C#
Need to make a call from a button(as link)
How coud i do?
Thanks very much!
Starting with this as a starting point, a link that looks like “tel:1234567890” should be handled by your phone. Combine that with Application.OpenURL, this should probably work:
Application.OpenURL("tel:1234567890");
(haven’t tested)
1 Like