UNPKG

@vatom/3d-face

Version:

This vAtom face can plug into the SDKs to render 3D content in either binary glTF or V3D format.

29 lines (23 loc) 697 B
<!DOCTYPE html> <html> <head> <title>3D renderer</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" /> <style> html, body { background-color: transparent; margin: 0px; padding: 0px; overflow: hidden; } </style> </head> <body> <!-- This web app simulates the 3D face running inside of the Web SDK. This allows us to to reuse the WebGL code to render 3D vatoms on the mobile platforms as well. --> <!-- Code --> <script src='Face3D.min.js'></script> <script src='Vatom.js'></script> <script src='main.js'></script> </body> </html>