-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata-html.html
More file actions
46 lines (43 loc) · 1.4 KB
/
metadata-html.html
File metadata and controls
46 lines (43 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Metadata Test Scene</title>
<meta name="scene:id" content="metadata_html_scene">
<meta name="scene:name" content="Metadata Test Scene">
<meta name="scene:author" content="HTML Author">
<meta name="scene:rating" content="MODERATE">
<meta name="scene:thumbnail" content="https://blazium-games.github.io/DDDBrowserExamples/assets/icon.jpg">
<meta name="scene:world:id" content="html_world">
<meta name="scene:world:position" content="999,888,777">
<script id="blazium-scene" type="application/vnd.blazium.scene+json">
{
"name": "Metadata Test Scene",
"version": "1.0",
"schemaVersion": "1.0",
"description": "Scene for testing metadata parsing",
"assets": [
{
"id": "model1",
"type": "model",
"uri": "https://blazium-games.github.io/DDDBrowserExamples/assets/capsule.obj",
"mediaType": "model/obj"
}
],
"instances": [
{
"id": "instance1",
"asset": "model1",
"position": {"x": 0.0, "y": 0.0, "z": 0.0},
"rotation": {"x": 0.0, "y": 0.0, "z": 0.0},
"scale": {"x": 1.0, "y": 1.0, "z": 1.0}
}
]
}
</script>
</head>
<body>
<h1>Metadata Test Scene</h1>
<p>Scene for testing metadata parsing from HTML and JSON.</p>
</body>
</html>