Skip to content

Commit

Permalink
Ooops, helps to check it in
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielJoyce committed Feb 6, 2024
1 parent c261a04 commit f82d553
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
.DS_Store
.idea/*
.parcel-cache
app/index.html
app/sculptgl.js
cache/*
dist
build
Expand Down
40 changes: 40 additions & 0 deletions app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!doctype html>
<html lang='en'>

<head>
<meta charset='utf-8' />
<meta name='description' content='Sculpt NG is a small sculpting application powered by JavaScript and webGL.'>
<meta name='author' content='stéphane GINIER'>
<meta name='mobile-web-app-capable' content='yes'>
<meta name='apple-mobile-web-app-capable' content='yes'>

<title> Sculpt NG - A WebGL sculpting app </title>

<link rel='stylesheet' type='text/css' href='https://fonts.googleapis.com/css?family=Open+Sans:400,600'>
<link rel='stylesheet' type='text/css' href='./css/yagui.css' />

<script>
'use strict';

window.addEventListener('load', function () {
var app = new window.SculptGL();
app.start();
});
</script>
</head>

<body oncontextmenu='return false;'>
<input type='file' id='fileopen' multiple style='display: none' />
<input type='file' id='backgroundopen' style='display: none' />
<input type='file' id='alphaopen' style='display: none' />
<input type='file' id='textureopen' style='display: none' />
<input type='file' id='matcapopen' style='display: none' />

<div id='viewport'>
<canvas id='canvas'></canvas>
</div>

<script src='./js/main.js' type="module"></script>
</body>

</html>

0 comments on commit f82d553

Please sign in to comment.