How to insert HTML element in Unity3d

Good day everyone,

How can I insert items like date selection (calendar widget), drop down box (countries selection) and radio button in unity3d?

Basically are mobile friendly HTML elements :slight_smile:

Thanks for the pointers

1 Like

lol, you’d have to recreate them in the UI, either using the built in Unity defaults or using the UI Extensions set of controls (which actually has a working date example now in code, will be included in the next asset update)
Otherwise, it’s roll up your sleeves and do it yourself.

If you’re doing WebGL builds (since you didn’t mention a platform), it might be possible to pop out the the HTML layer and use a common JS file to interop between Unity and the renderer, but I’ve not seen this work other than on MS platforms.