You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
changing filenames so that they will show up GitHub's repo this is in reference to GitHub PR #4780 #jira UE-60136 GitHub 4780 : Proposed HTML5 Changes #rb none #rn [CL 4214064 by Nick Shin in Dev-Mobile branch]
48 lines
2.0 KiB
HTML
48 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<!--
|
|
HTML code used with Epic Games HTML5 projects
|
|
|
|
much of this is for UE4 development purposes.
|
|
|
|
to create a custom HTML file for your project:
|
|
- make a copy of this file - or make one from scratch
|
|
- and put it in: "your project folder"/Build/HTML/GameX.html.template
|
|
-->
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<title>%SHORTNAME%</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<link href="%PROJECTNAME%.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="wrapper" id="mainarea">
|
|
<div class="alert alert-warning centered-axis-xy" style="min-height: 20px; display:none;" role="alert" id="compilingmessage">
|
|
<div id='loadTasks'> </div>
|
|
</div>
|
|
<canvas id="canvas" class="emscripten" oncontextmenu="event.preventDefault()" style="display:none;">
|
|
</div>
|
|
<div class="row buttonarea text-center" id="buttonrow">
|
|
<div class="col-sm-2 text-center"></div>
|
|
<div class="col-sm-2 text-center"><button type="button" class="btn btn-primary" onclick="Module['pauseMainLoop']();">Pause</button></div>
|
|
<div class="col-sm-2 text-center"><button type="button" class="btn btn-primary" onclick="Module['resumeMainLoop']();">Resume</button></div>
|
|
<div class="col-sm-2 text-center"></div>
|
|
<div class="col-sm-2 text-center"><button type="button" class="btn btn-primary" id='clear_indexeddb' onclick="deleteIndexedDBStorage();">Clear IndexedDB</button></div>
|
|
<div class="col-sm-2 text-center"><button type="button" class="btn btn-primary" id="fullscreen_request">FullScreen</button></div>
|
|
<div class="col-sm-2 text-center"></div>
|
|
<div class="col-sm-2 text-center"></div>
|
|
</div>
|
|
<div class="texthalf text-normal jumbotron " id="logwindow" style='display:none'></div>
|
|
|
|
<script src="%PROJECTNAME%.UE4.js"></script>
|
|
</body>
|
|
</html>
|