Skip to content

Commit

Permalink
tidied repo a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
hamaluik committed Jul 1, 2017
2 parents febf382 + 8212e9a commit b7a96d9
Show file tree
Hide file tree
Showing 28 changed files with 3,261 additions and 164 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.vscode

# Created by https://www.gitignore.io/api/osx,linux,windows,visualstudiocode

Expand Down Expand Up @@ -71,4 +72,4 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk

# End of https://www.gitignore.io/api/osx,linux,windows,visualstudiocode
# End of https://www.gitignore.io/api/osx,linux,windows,visualstudiocode
7 changes: 0 additions & 7 deletions .vscode/settings.json

This file was deleted.

6 changes: 0 additions & 6 deletions .vscode/tasks.json

This file was deleted.

27 changes: 27 additions & 0 deletions samples/bin/threed_collision.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<html>

<head>
<title>Headbutt 3D Collisions</title>
<style>
html,
body {
width: 100%;
height: 100%;
margin: 0;
}

canvas {
display: block;
width: 100%;
height: 100%;
}
</style>
</head>

<body>
<canvas id='canvas'></canvas>
<script src="http://cdnjs.cloudflare.com/ajax/libs/three.js/r73/three.js"></script>
<script src="threed_collision.js"></script>
</body>

</html>
Loading

0 comments on commit b7a96d9

Please sign in to comment.