72 lines
3.4 KiB
HTML
72 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Nothin' Fancy</title>
|
|
<meta name="author" content="Grayson Riffe">
|
|
<meta name="description" content="3D game engine">
|
|
<meta name="theme-color" content="#d0c000">
|
|
<meta name="og:image" content="/nf/nflogo.png">
|
|
|
|
<link rel="icon" href="favicon.png" type="image/png">
|
|
<link rel="stylesheet" href="/style.css">
|
|
|
|
<script src="/transitions.js" defer></script>
|
|
</head>
|
|
<body style="--headercolor: var(--nfheadercolor); --maincolor: #ebdd4daa; --articlecolor: #c2b52999;">
|
|
<div class="background" style="--background: url('/nf/nfbackground.jpg');"></div>
|
|
|
|
<header>
|
|
<div class="logo">
|
|
<img src="/logo.png" alt="Grayson Riffe">
|
|
</div>
|
|
<nav>
|
|
<div><a href="/">Home</a></div>
|
|
<div class="dropdown-container"><a href="#">Portfolio</a>
|
|
<div class="dropdown">
|
|
<div class="selectedpage"><a href="#">Nothin' Fancy</a></div>
|
|
<div><a href="/winchat/">WinChat</a></div>
|
|
</div>
|
|
</div>
|
|
<div><a href="/resume/" class="notransition">Resume</a></div>
|
|
<div><a href="/about/">About</a></div>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<div class="centeredimage">
|
|
<img src="nflogo.png" alt="Engine Logo">
|
|
</div>
|
|
<article>
|
|
<h1>Nothin' Fancy</h1>
|
|
<p>
|
|
Nothin' Fancy (or NF) is a 3D game engine / visualizer for Windows built with MSVC. I ultimately want to use my engine to create a game I can release on Steam for free.
|
|
|
|
The first revision was developed in 2021 as an experimental project for learning. It has a number of cool features including an asset system complete with model cooking, an easy way to create a UI, material texture support including normal maps, and even a physics engine, but it is still missing a number of important features.
|
|
|
|
I worked on this project during my senior year of high school, and it is the result of about 4 months of constant work.
|
|
</p>
|
|
</article>
|
|
<div class="space"></div>
|
|
<article>
|
|
<h2>Revision 2</h2>
|
|
<p>
|
|
A second revision was needed after I realized how much I could improve my first revision using everything I had learned along the way.
|
|
|
|
This project is still in development, but I plan to include every feature present in the first revision along with other notable features such as networking and Steamworks API integration. It will also include major internal changes such as the switch from OpenGL to DirectX 11.
|
|
|
|
This project is still in development, and I plan to include notable features such as networking and Steam API integration. It runs with Direct3D 11 and 90% of everything is written by me.
|
|
|
|
This section will be updated when a version is available to download.
|
|
The source is on GitHub <a href="https://github.com/graysonriffe/NothinFancy" class="notransition">here</a> (look under the develop branch).
|
|
</p>
|
|
</article>
|
|
<footer>
|
|
Copyright 2023 Grayson Riffe
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
</html> |