mirror of
https://github.com/RPG-Research/bcirpg.git
synced 2024-04-16 14:23:01 +00:00
21 lines
358 B
HTML
21 lines
358 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Hello World</title>
|
||
|
</head>
|
||
|
<script src="pixi/pixi.min.js"></script>
|
||
|
|
||
|
<body>
|
||
|
<script type="text/javascript">
|
||
|
let type = "WebGL"
|
||
|
if (!PIXI.utils.isWebGLSupported()) {
|
||
|
type = "canvas"
|
||
|
}
|
||
|
|
||
|
PIXI.utils.sayHello(type)
|
||
|
</script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|