-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
hexterminal
committed
Dec 12, 2024
0 parents
commit 293ade3
Showing
103 changed files
with
8,270 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
bgeninja.sublime-project | ||
bgeninja.sublime-workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
<link rel="icon" type="image/x-icon" href="../../img/bgeninja.ico"> | ||
<title>No such page dude</title> | ||
</head> | ||
<body> | ||
<div class="nah"> | ||
<h1 title="four zero four">404</h1> | ||
<p><a href="https://chrisbradleyjones.itch.io/" target="_blank" title="go ahead, play my games">yo dawg</a> the page you're trying to visit <span title="ye bro you gotta check some other stuff">aint real</span></p> | ||
</div> | ||
<style> | ||
.nah{ | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
text-align: center; | ||
align-items: center; | ||
color: whitesmoke; | ||
background: #222; | ||
padding: 0px; | ||
-webkit-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
} | ||
|
||
.nah a{ | ||
text-decoration-color: none; | ||
text-decoration: none; | ||
color: whitesmoke; | ||
cursor: default; | ||
} | ||
|
||
.nah span{ | ||
cursor: no-drop; | ||
} | ||
|
||
.nah h1{ | ||
margin: 0px; | ||
transition: 1s; | ||
text-shadow: 0px 0px 5px black; | ||
font-weight: bolder; | ||
font-size: 5rem; | ||
} | ||
|
||
.nah h1:hover{ | ||
text-shadow: 0px 0px 10px azure; | ||
} | ||
</style> | ||
</body> | ||
</html> |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# BGENinja | ||
Hi, this is a tutorial for the game engine [UPBGE](https://upbge.org/) and [Range Engine](https://rangeengine.tech/). | ||
Project files are available in this site too. | ||
Making changes as fast as possible. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
<link rel="icon" type="image/x-icon" href="img/bgeninja.ico"> | ||
<title>BGENinja - About</title> | ||
</head> | ||
<body> | ||
<div class="dawg-serious"> | ||
<h1>About</h1> | ||
<p> | ||
Hi I'm Chris the developer of this website, | ||
I created this site just to be an alternative to <u>tutorialsforblender3d.com</u> which was dead for long time and was a pretty good site for game engine tutorials. | ||
I use <a href='https://kitsuystudio.itch.io/upbge-026' target="_blank" title="You gotta check this one out if u still wanted to experiment with UPBGE 2.5+, there were lots of fixes. I mean, A LOT.">UPBGE 2.6</a> series and <a href="https://rangeengine.tech/" title="This is some real work on the graphics, bugs, new feature implementations, etc." target="_blank">RanGE</a>. | ||
</p> | ||
<div class="divide"></div> | ||
<h3>Contact</h3> | ||
<p> | ||
If you would like to contribute you can do it, but please read <a href="contribute.html" target="_blank">this</a>. | ||
Here is where you can contact me. | ||
</p> | ||
<ul> | ||
<li><a href="mailto:chrisbradleyjones@proton.me" target="_blank">Mail</a></li> | ||
<li><a href="https://discord.com/users/800750244831952936" target="_blank">Discord</a> (More active)</li> | ||
</ul> | ||
</div> | ||
<style> | ||
/* ============ ABOUT.HTML ============ */ | ||
body{ | ||
margin: 0px 2rem 0px; | ||
} | ||
|
||
h3{ | ||
margin: 20px auto 0px; | ||
} | ||
|
||
.dawg-serious a{ | ||
text-decoration-color: navajowhite; | ||
color: navajowhite; | ||
} | ||
|
||
.divide{ | ||
margin-top: 30px; | ||
border: 1px solid darkgray; | ||
width: 50vw; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
@media screen and (orientation: portrait) and (max-width: 1080px){ | ||
.divide{ | ||
width: 75vw; | ||
} | ||
} | ||
</style> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"folders": | ||
[ | ||
{ | ||
"path": ".", | ||
}, | ||
], | ||
} |
Oops, something went wrong.