File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed
Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change 1-
1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < title > Simple Game Engine</ title >
6+ < link rel ="stylesheet " href ="style.css ">
7+ </ head >
8+ < body >
9+ < canvas id ="gameCanvas "> </ canvas >
10+ < div id ="controls ">
11+ < select id ="objectType ">
12+ < option value ="cube "> Cube</ option >
13+ < option value ="sphere "> Sphere</ option >
14+ < option value ="plane "> Plane</ option >
15+ </ select >
16+ < button id ="addObject "> Add Object</ button >
17+ < button id ="exportGame "> Export Game</ button >
18+ </ div >
19+ < script src ="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js "> </ script >
20+ < script src ="js/engine.js "> </ script >
21+ < script src ="js/renderer.js "> </ script >
22+ < script src ="js/sceneManager.js "> </ script >
23+ < script src ="js/inputHandler.js "> </ script >
24+ < script src ="js/exportGame.js "> </ script >
25+ < script src ="js/uiHandler.js "> </ script >
26+ </ body >
27+ </ html >
You can’t perform that action at this time.
0 commit comments