How to start Unity scene from an Android Activity?

  • Replies:2
ezzah khawar
  • Forum posts: 1

May 26, 2017, 6:00:49 PM via Website

I want to develop an android app that contains a Button. On pressing the button a Unity 3D scene should open.
Please help

Reply
Felix NM
  • Forum posts: 1

Aug 9, 2018, 7:05:22 AM via Website

did you ever solve this.?.

Reply
AlexMsr
  • Forum posts: 27

Jan 3, 2020, 11:24:38 PM via Website

For exemple, this method can help you to start solving your problem.
Te best way to study - practise, so try to solve it by yourself.
void ButtonClicked(int buttonNo)
{
//Output this to console when the Button3 is clicked
Debug.Log("Button clicked = " + buttonNo);
}

Reply