School project. Pop up with video from web?

I’m working on a project for my college that is a tour of our campus. I’m using unity3 and scripting in javascript. I’m really terrible at coding but I will be as descriptive as I can.

My teacher wants me to make a popup in unity that will show up when you walk into a trigger. From there, a window will pop up showing a button to access a video from a website. He then wants Unity to pull the video from the website and open it in the popup.

I have no idea where to start, any help will be very appreciated. Thank you.

Hello.

Maybe you should start with making a terrain and a character (f.e. you could use a capsule). then give him the ability to move first through writting a script and add it to the capsule (f.e. like that).

As Trigger you can use a Cube or anything. Enable “Trigger” in the properties of the mesh and disable the “MeshRenderer” to make the trigger invisible. Use another script for the mesh. There you can use the “OnTriggerEnter”-method.

When you enter the trigger you have to pop up your window. Maybe you should look into some GUI functions.

For displaying a webpage inside a game I found this:

Source 1, Source 2, Source 3

I hope I was able to help you.

Regards.