mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-26 07:52:50 -05:00
18 lines
519 B
HTML
18 lines
519 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Video Motion Test Playground</title>
|
|
</head>
|
|
<body>
|
|
<!-- FPS counter, Syntax highlighter, Blocks, Renderer -->
|
|
<script src="./vendor.js"></script>
|
|
<!-- Storage module -->
|
|
<script src="./scratch-storage.js"></script>
|
|
<!-- Stage rendering -->
|
|
<script src="./scratch-render.js"></script>
|
|
<!-- Extension -->
|
|
<script src="./video-sensing-extension-debug.js"></script>
|
|
<!-- Motion -->
|
|
<script src="./video-sensing.js"></script>
|
|
</body>
|
|
</html>
|