twins
Version:
Digital twin PoC demo
42 lines (37 loc) • 944 B
HTML
<!-- SPDX-License-Identifier: MPL-2.0 -->
<!--
Copyright 2018-present Samsung Electronics France SAS, and other contributors
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/
-->
<html lang="en">
<head>
<meta name="viewport" content="transparent-background">
<meta charset="utf-8"/>
<script src="https://aframe.io/releases/0.8.2/aframe.min.js"></script>
<script type="text/javascript"
src="https://cdn.jsdelivr.net/gh/rzr/aframe-webthing@0.0.2/src/aframe-webthing.js">
</script>
<script src="index.js"></script>
</head>
<body>
<a-scene>
<a-entity
rotation="0 145 0"
>
<a-entity
robot
webthing="properties:robot"
></a-entity>
</a-entity>
<a-entity
position="-4 3 10"
>
<a-camera>
</a-camera>
</a-entity>
</a-scene>
</body>
</html>