Skip to content

Commit 4afbe37

Browse files
committed
Ground, Logs, and Fire, oh my!
_Added anti-aliasing post processes options to pass to pxlNav on init, along with cleaning up how many post-process layers are running by default. _Ground shader mixes multiple textures now, getting a better dirt texture than noise. Also hill texture blending, moss around trees, and depth tone. _Log flame flickering tightened in on the flame itself. The animated red embers of the logs themselves. _Fire looks better, doesn't look like an explosion contained in a bag anymore. _Camera adjustments angles as well _Fixed box layout on mobile on pages
1 parent 71bdd05 commit 4afbe37

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1476
-1218
lines changed

Build/pxlNav.min.js

Lines changed: 212 additions & 212 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Build/pxlRooms/CampfireEnvironment/CampfireEnvironment.js

Lines changed: 303 additions & 257 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Build/pxlRooms/SaltFlatsEnvironment/SaltFlatsEnvironment.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Public/favicon.ico

1.12 KB
Binary file not shown.

Public/index.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@
297297
<div>
298298
</div>
299299
<div class="rightFooter">
300-
<a href="https://github.com/ProcStack" target="_blank">ProcStack</a> / <a href="https://www.youtube.com/@trancorwd" target="_blank">Trancor</a> / <a href="mailto:trancor@metal-asylum.net" target="_blank">Kevin Edzenga</a>; 2024
300+
<a href="https://github.com/ProcStack" target="_blank">ProcStack</a> / <a href="https://www.youtube.com/@trancorwd" target="_blank">Trancor</a> / <a href="mailto:trancor@metal-asylum.net" target="_blank">Kevin Edzenga</a><span class="squashInLowRes">; 2024</span>
301301
</div>
302302
</div>
303303
</div>

Public/js/ProcPages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ export class ProcPages {
310310
}else if( !this.resObjsVis && buttonWidthAgr < navBarThreshold ){
311311
this.resObjsVis = true;
312312
this.resBasedObjs.forEach( (obj)=>{
313-
obj.style.display = "block";
313+
obj.style.display = "contents";
314314
});
315315
}
316316

Public/js/ProckStackGitio.js

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// For `pxlNav` scripting, the entry-point is `./Source/js/pxlNavCore.js`
1010
//
1111

12-
import { pxlNav, pxlNavVersion, VERBOSE_LEVEL } from './pxlNav.js';
12+
import { pxlNav, pxlNavVersion, VERBOSE_LEVEL, PXLNAV_OPTIONS, ANTI_ALIASING } from './pxlNav.js';
1313
import { ProcPages } from './ProcPages.js';
1414
import { BlogManager } from './BlogManager.js';
1515

@@ -18,6 +18,10 @@ import { BlogManager } from './BlogManager.js';
1818
// Options are - NONE, ERROR, WARN, INFO
1919
const verbose = VERBOSE_LEVEL.ERROR;
2020

21+
// Anti-aliasing level
22+
// Options are - NONE, LOW, MEDIUM, HIGH
23+
const antiAliasing = ANTI_ALIASING.LOW;
24+
2125
// The Title of your Project
2226
// This will be displayed on the
2327
const projectTitle = "procstack.github.io";
@@ -54,9 +58,12 @@ procBlog.showEntry(-1);
5458

5559
// -- -- -- -- --
5660

61+
let pxlNavOptions = Object.assign({},PXLNAV_OPTIONS);
62+
pxlNavOptions.verbose = verbose;
63+
pxlNavOptions.antiAliasing = antiAliasing;
5764

5865
// Create the pxlNav environment manager
59-
const pxlNavr = new pxlNav( verbose, projectTitle, pxlRoomRootPath, procPages.curRoom, bootRoomList );
66+
const pxlNavr = new pxlNav( pxlNavOptions, projectTitle, pxlRoomRootPath, procPages.curRoom, bootRoomList );
6067

6168
// -- -- -- -- --
6269

Public/style/gitPage_initStyle.css

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
justify-self: baseline;
66
pointer-events: none;
77
position: fixed;
8-
top: max(6vh,6vw);
9-
left: max(max(5vh,5vw), 50vw - 900px);
8+
top: max( 30px, max(6vh,6vw));
9+
left: max(min(6vh,6vw), 50vw - 900px);
10+
max-width: calc( 100vw - max(5vh,5vw) );
1011
z-index: 1;
1112
border-radius: 5px;
1213
}
@@ -38,19 +39,19 @@
3839

3940
.initPage_footerBar{
4041
background: linear-gradient(90deg, rgba(57, 37, 4, 0.35), rgba(34, 22, 2, 0.1), rgba(34, 22, 2, 0), rgba(34, 22, 2, 0.0), rgba(34, 22, 2, 0.1), rgba(57, 37, 4, 0.35));
41-
color: #a66817
42+
color: #cc8324;
4243
}
4344

4445
.initPage_footerBar a {
45-
color: #a66817;
46+
color: #cc8324;
4647
}
4748

4849
.initPage_footerBar a:hover {
49-
color: #b36f16;
50+
color: #ffb95e;
5051
}
5152

5253
.initPage_footerBar a:active {
53-
color: #6b420c;
54+
color: #dea254;
5455
}
5556

5657

Public/style/gitPage_mainStyle.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ text-shadow: 1px 1.5px 4px #252525;
143143
max-height: 0vh;
144144
overflow: hidden;
145145
position: fixed;
146-
width: 85vw;
146+
left: 0px;
147+
width: 100vw;
147148
max-width: 1600px;
148149
height: 100vh;
149150
pointer-events: none;

Public/style/gitPage_pxlNavStyle.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22

33
.gitPxlNavPageStyle{
4-
background-color: rgba(53, 48, 13, 0.19);
4+
background-color: rgba(43, 37, 11, 0.58);
55
text-shadow: 2px 2px 3px rgba(0, 0, 0, .75);
66
border: 1px solid rgba(67, 60, 21, 0.445);
77
pointer-events: auto;
@@ -17,16 +17,16 @@
1717
}
1818

1919
.gitPxlNavPageStyle::-webkit-scrollbar-track {
20-
background: rgba(53, 48, 11, 0.31);
20+
background: rgba(66, 54, 14, 0.31);
2121
}
2222

2323
.gitPxlNavPageStyle::-webkit-scrollbar-thumb {
2424
cursor: grab;
25-
background-color: rgb(93 78 11);
26-
border: 2px solid rgba(100, 82, 9, 0.6);
25+
background-color: rgb(78 66 9);
26+
border: 2px solid rgba(90, 73, 6, 0.6);
2727
}
2828
.gitPxlNavPageStyle::-webkit-scrollbar-thumb:hover {
29-
background-color: rgb(143, 120, 16);
29+
background-color: rgb(143, 113, 16);
3030
border: 2px solid rgba(131, 107, 11, 0.636);
3131
}
3232

0 commit comments

Comments
 (0)