-
Notifications
You must be signed in to change notification settings - Fork 0
/
10-TextComponent.html
32 lines (32 loc) · 997 Bytes
/
10-TextComponent.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Component</title>
<script src="https://aframe.io/releases/1.0.4/aframe.min.js"></script>
</head>
<body>
<a-scene>
<!-- 3D text, default color: white -->
<!-- <a-text
value="Lorem ipsum"
color="#00ffff"
position="0 1.5 -2"
></a-text> -->
<!-- If we use a-entity, the size looks smaller due to wrapCount -->
<a-entity
text="
value:If we use a-entity,\nthe size looks smaller due to wrapCount;
color:#0000ff;
wrapCount:11;
font:./fonts/Raleway-Semibold-msdf.json;
align:center;
negate:false"
position="0 1.5 -2"
geometry="primitive:plane;width:auto;height:auto"
material="color:#cccccc"
></a-entity>
</a-scene>
</body>
</html>