-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.html
More file actions
49 lines (42 loc) · 1.27 KB
/
test.html
File metadata and controls
49 lines (42 loc) · 1.27 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
46
47
48
49
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>p5.js example</title>
<style>
@font-face {
font-family: openhuninn;
src: url(assets/jf-openhuninn-1.1/jf-openhuninn-1.1.ttf);
}
body {
padding: 0;
margin: 0;
height: 100vh;
display: flex;
/* This centers our sketch horizontally. */
justify-content: center;
/* This centers our sketch vertically. */
align-items: center;
}
</style>
<script src="p5/p5.js"></script>
<!-- <script src="../addons/p5.sound.js"></script> -->
<script src="lib/config.js"></script>
<script src="lib/fonts.js"></script>
<script src="lib/faster_tint_for_p5.js"></script>
<script src="lib/transform_tracker.js"></script>
<script src="lib/pubsub.js"></script>
<script src="lib/sprite_loader.js"></script>
<script src="lib/scene_object.js"></script>
<script src="lib/text_object.js"></script>
<script src="lib/helper.js"></script>
<script src="lib/character.js"></script>
<script src="test/scale_test.js"></script>
<script src="test/text_node_test.js"></script>
<script src="test/index.js"></script>
</head>
<body>
<div id=p5-container></div>
</body>
</html>