removed references to project

This commit is contained in:
Silas Bartha 2024-08-23 21:37:22 -04:00
parent f3e8e5b379
commit 2ee4a0ba8a
Signed by: soaos
GPG Key ID: 9BD3DCC0D56A09B2
6 changed files with 5 additions and 22 deletions

View File

@ -19,7 +19,7 @@ it can be configured with the "level" of dithering to perform (i.e. the size of
![level 2](level_2.png)
![level 4](level_4.png)
i wrote this plugin to enhance the performance of my ongoing [white (I)](@/projects/white_I/index.md) project
i wrote this plugin to enhance the performance of my ongoing game project
originally i did all the dithering on the CPU, and while it was not a huge performance drain due to the screen size being relatively small in the terminal, i figured it would be a good idea to convert it into a shader to take advantage of the GPU and parallelism

View File

@ -10,4 +10,4 @@ crates = ["bevy_headless_render"]
this plugin is pretty simple, it just allows you to set up a render texture to be extracted for use on the CPU every frame
i made this plugin as part of the [white (I)](@/projects/white_I/index.md) project super early on when i needed a copy of the rendered frame in the main world to be rendered as braille to the screen
i made this plugin as part of a game project super early on when i needed a copy of the rendered frame in the main world to be rendered as braille to the screen

View File

@ -23,6 +23,6 @@ there's also an option to enable *adaptive outlines*, so that darker areas get o
![adaptive](threshold_10_adaptive.png)
i created this effect to improve visual contrast in my [white (I)](@/projects/white_I/index.md) project, which is why i haven't added support for different colors
i created this effect to improve visual contrast in my game project, which is why i haven't added support for different colors
you're free to add it yourself though, probably wouldn't be too hard

View File

@ -21,7 +21,7 @@ this plugin manages a `TerminalInput` resource which keeps track of pressed keys
this plugin also has facilities for creating and rendering ratatui widgets
here's an example of a dialog box and option selection widget i've implemented in my [white (I)](@/projects/white_I/index.md) project
here's an example of a dialog box and option selection widget i've implemented in one of my WIP projects
![dialog widget](dialog.png)

View File

@ -1,17 +0,0 @@
+++
title = "white (I)"
description = "an experimental, terminal-based, 3D filesystem adventure"
[taxonomies]
languages = ["rust"]
categories = ["game"]
[extra]
wip = true
+++
i plan on making the source for this game available closer to once it's finished
this is probably the most ambitious undertaking i've ever undertook
<br/>
i'll fill out this page with some screenshots soon, but this project drove the creation of a lot of the bevy plugins i've made

View File

@ -8,7 +8,7 @@
background-clip: text;
color: transparent;
animation: rainbow_animation 1s ease-in-out infinite;
background-size: 400% 100%;
background-size: 600% 100%;
}
@keyframes rainbow_animation {