mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 07:11:43 +00:00
Screenshot stuff...looks nicer to me. Added another shot.
This commit is contained in:
parent
2a78547778
commit
0ddae9d04f
3 changed files with 29 additions and 6 deletions
BIN
img/screenshots/dlights-quad-rocket.jpg
Normal file
BIN
img/screenshots/dlights-quad-rocket.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.2 KiB |
BIN
img/screenshots/dlights-quad-rocket.png
Normal file
BIN
img/screenshots/dlights-quad-rocket.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 422 KiB |
|
@ -1,17 +1,40 @@
|
|||
<? // Preamble
|
||||
$pageName = "Page Name";
|
||||
$pageName = "Screenshots";
|
||||
$focused = "none"; // Dock icon name to gets a border
|
||||
require "parts/preamble.php"; // Load most of document
|
||||
|
||||
function screenshot ($name, $caption)
|
||||
{
|
||||
echo '<A href="/img/screenshots/' . $name . '.png">';
|
||||
echo '<IMG src="/img/screenshots/' . $name . '.jpg" alt="fullsize" border="2">';
|
||||
echo '<TR>' .
|
||||
' <TD>';
|
||||
echo '<P align="center"><A href="/img/screenshots/' . $name . '.png">';
|
||||
echo '<IMG src="/img/screenshots/' . $name . '.jpg" alt="View at full size" border="1">';
|
||||
echo '</A>';
|
||||
echo "<P>$caption</P>";
|
||||
echo "<P>$caption";
|
||||
echo ' </TD>' .
|
||||
'</TR>';
|
||||
}
|
||||
?>
|
||||
<P>Finally! Here are some screen captures of QuakeForge in action, showing off
|
||||
some of the things we've done to this beast. None of these shots are
|
||||
gamma-modified or doctored, they are what you actually see in the game.
|
||||
|
||||
screenshot ('wateralpha-0.3', 'Elderworld pool in id1vis with r_wateralpha 0.3');
|
||||
|
||||
|
||||
<P>
|
||||
<TABLE width="100%" cellSpacing="0" cellPadding="0" border="0">
|
||||
<TR vAlign="top">
|
||||
<TD><?
|
||||
tableBoxHeader (featureBgColor, featureHeadColor);
|
||||
tableTitle ('QuakeForge: Newtree', 1, featureHeadColor);
|
||||
|
||||
screenshot ('wateralpha-0.3', 'The Elder World pool, with a watervised map and with r_wateralpha 0.3. If you look closely, you can see the partially fullbright texture on the nail box below.');
|
||||
screenshot ('dlights-quad-rocket', 'This one really shows off dynamic lighting and fullbrights. The player has quad damage, causing them to give off a blue dynamic light. A rocket is exploding after hitting a wall, and in the background you see the fullbrights on the exit glowing bright red.');
|
||||
// put more here
|
||||
|
||||
tableBoxFooter ();
|
||||
?></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<?
|
||||
require "parts/postamble.php"; // Finish this sucker up
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue