mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-06 23:14:19 +00:00
Applet Package: clean up and split the applet download package, it should be much easier for noobs to pick it up now and less confusing.
This commit is contained in:
parent
94fa701973
commit
af6dc3d5b5
4 changed files with 125 additions and 60 deletions
67
applet/basic/basicapplet.html
Normal file
67
applet/basic/basicapplet.html
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>AppletLoader</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<applet code="org.lwjgl.util.applet.AppletLoader" archive="lwjgl_util_applet.jar" codebase="." width="640" height="480">
|
||||
|
||||
<!-- The following tags are mandatory -->
|
||||
|
||||
<!-- Name of Applet, will be used as name of directory it is saved in, and will uniquely identify it in cache -->
|
||||
<param name="al_title" value="appletloadertest">
|
||||
|
||||
<!-- Main Applet Class -->
|
||||
<param name="al_main" value="org.lwjgl.test.applet.GearsApplet">
|
||||
|
||||
<!-- logo to paint while loading, will be centered -->
|
||||
<param name="al_logo" value="appletlogo.png">
|
||||
|
||||
<!-- progressbar to paint while loading. Will be painted on top of logo, width clipped to percentage done -->
|
||||
<param name="al_progressbar" value="appletprogress.gif">
|
||||
|
||||
<!-- List of Jars to add to classpath -->
|
||||
<param name="al_jars" value="lwjgl_applet.jar, lwjgl.jar, jinput.jar, lwjgl_util.jar">
|
||||
|
||||
<!-- signed windows natives jar in a jar -->
|
||||
<param name="al_windows" value="windows_natives.jar">
|
||||
|
||||
<!-- signed linux natives jar in a jar -->
|
||||
<param name="al_linux" value="linux_natives.jar">
|
||||
|
||||
<!-- signed mac osx natives jar in a jar -->
|
||||
<param name="al_mac" value="macosx_natives.jar">
|
||||
|
||||
<!-- signed solaris natives jar in a jar -->
|
||||
<param name="al_solaris" value="solaris_natives.jar">
|
||||
|
||||
<!-- Tags under here are optional -->
|
||||
|
||||
<!-- Version of Applet, important otherwise applet won't be cached, version change will update applet, must be int or float -->
|
||||
<!-- <param name="al_version" value="0.1"> -->
|
||||
|
||||
<!-- whether to use cache - defaults to true -->
|
||||
<!-- <param name="al_cache" value="true"> -->
|
||||
|
||||
<!-- background color to paint with, defaults to white -->
|
||||
<!-- <param name="boxbgcolor" value="#000000"> -->
|
||||
|
||||
<!-- foreground color to paint with, defaults to black -->
|
||||
<!-- <param name="boxfgcolor" value="#ffffff"> -->
|
||||
|
||||
<!-- whether to run in debug mode -->
|
||||
<!-- <param name="al_debug" value="true"> -->
|
||||
|
||||
<!-- whether to prepend host to cache path - defaults to true -->
|
||||
<!-- <param name="al_prepend_host" value="true"> -->
|
||||
|
||||
<param name="separate_jvm" value="true">
|
||||
</applet>
|
||||
|
||||
<p>
|
||||
if <code>al_debug</code> is true the applet will load and extract resources with a delay, to be able to see the loader process.
|
||||
</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue