rename to soaos.dev
This commit is contained in:
parent
52402d0f97
commit
5995114551
@ -1,5 +1,5 @@
|
|||||||
# The URL the site will be built for
|
# The URL the site will be built for
|
||||||
base_url = "https://exvacuum.dev"
|
base_url = "https://soaos.dev"
|
||||||
|
|
||||||
# Whether to automatically compile all Sass files in the sass directory
|
# Whether to automatically compile all Sass files in the sass directory
|
||||||
compile_sass = true
|
compile_sass = true
|
||||||
|
@ -8,8 +8,8 @@ title = "hello"
|
|||||||
- [projects](@/projects/_index.md)
|
- [projects](@/projects/_index.md)
|
||||||
- [blog](@/blog/_index.md)
|
- [blog](@/blog/_index.md)
|
||||||
- [some stuff i like](@/stuff_i_like/_index.md)
|
- [some stuff i like](@/stuff_i_like/_index.md)
|
||||||
- [git](https://git.exvacuum.dev)
|
- [git](https://git.soaos.dev)
|
||||||
- [forum](https://forum.exvacuum.dev)
|
- [forum](https://forum.soaos.dev)
|
||||||
|
|
||||||
find me in other places
|
find me in other places
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ i wanted to create a "blacklight" effect, where specific lights could reveal par
|
|||||||
|
|
||||||
i wrote this shader in wgsl for a [bevy engine](https://bevyengine.org) project, but it should translate easily to other shading languages
|
i wrote this shader in wgsl for a [bevy engine](https://bevyengine.org) project, but it should translate easily to other shading languages
|
||||||
|
|
||||||
the finished shader can be found as part of [this repo](https://github.com/exvacuum/bevy_blacklight_material)
|
the finished shader can be found as part of [this repo](https://github.com/soaosdev/bevy_blacklight_material)
|
||||||
## shader inputs
|
## shader inputs
|
||||||
|
|
||||||
for this shader, i wanted the following features:
|
for this shader, i wanted the following features:
|
||||||
@ -165,7 +165,7 @@ fn fragment(
|
|||||||
|
|
||||||
and with that, the shader is pretty much complete
|
and with that, the shader is pretty much complete
|
||||||
|
|
||||||
you can view the full completed shader code [here](https://github.com/exvacuum/bevy_blacklight_material/blob/master/assets/shaders/blacklight_material.wgsl)
|
you can view the full completed shader code [here](https://github.com/soaosdev/bevy_blacklight_material/blob/master/assets/shaders/blacklight_material.wgsl)
|
||||||
|
|
||||||
have fun!
|
have fun!
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ mons_math/src/
|
|||||||
├── vec3.c
|
├── vec3.c
|
||||||
└── vec4.c
|
└── vec4.c
|
||||||
```
|
```
|
||||||
(i won't get into implementation details too much in this post in the interest of brevity, but all the code is available on my [git server](https://git.exvacuum.dev/mons/))
|
(i won't get into implementation details too much in this post in the interest of brevity, but all the code is available on my [git server](https://git.soaos.dev/mons/))
|
||||||
|
|
||||||
i found writing the matrix and vector operations super satisfying in spite of the repetition for different dimensionalities
|
i found writing the matrix and vector operations super satisfying in spite of the repetition for different dimensionalities
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title = "bevy_blacklight_material"
|
|||||||
categories = ["bevy plugin"]
|
categories = ["bevy plugin"]
|
||||||
languages = ["rust", "wgsl"]
|
languages = ["rust", "wgsl"]
|
||||||
[extra]
|
[extra]
|
||||||
github = ["exvacuum/bevy_blacklight_material"]
|
github = ["soaos/bevy_blacklight_material"]
|
||||||
crates = ["bevy_blacklight_material"]
|
crates = ["bevy_blacklight_material"]
|
||||||
git = ["bevy_blacklight_material"]
|
git = ["bevy_blacklight_material"]
|
||||||
+++
|
+++
|
||||||
|
@ -4,7 +4,7 @@ title = "bevy_dither_post_process"
|
|||||||
categories = ["bevy plugin"]
|
categories = ["bevy plugin"]
|
||||||
languages = ["rust", "wgsl"]
|
languages = ["rust", "wgsl"]
|
||||||
[extra]
|
[extra]
|
||||||
github = ["exvacuum/bevy_dither_post_process"]
|
github = ["soaosdev/bevy_dither_post_process"]
|
||||||
crates = ["bevy_dither_post_process"]
|
crates = ["bevy_dither_post_process"]
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title = "bevy_headless_render"
|
|||||||
categories = ["bevy plugin"]
|
categories = ["bevy plugin"]
|
||||||
languages = ["rust"]
|
languages = ["rust"]
|
||||||
[extra]
|
[extra]
|
||||||
github = ["exvacuum/bevy_headless_render"]
|
github = ["soaosdev/bevy_headless_render"]
|
||||||
crates = ["bevy_headless_render"]
|
crates = ["bevy_headless_render"]
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ title = "bevy_outline_post_process"
|
|||||||
categories = ["bevy plugin"]
|
categories = ["bevy plugin"]
|
||||||
languages = ["rust", "wgsl"]
|
languages = ["rust", "wgsl"]
|
||||||
[extra]
|
[extra]
|
||||||
github = ["exvacuum/bevy_outline_post_process"]
|
github = ["soaosdev/bevy_outline_post_process"]
|
||||||
crates = ["bevy_outline_post_process"]
|
crates = ["bevy_outline_post_process"]
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ draft = true
|
|||||||
categories = ["bevy plugin"]
|
categories = ["bevy plugin"]
|
||||||
languages = ["rust", "wgsl"]
|
languages = ["rust", "wgsl"]
|
||||||
[extra]
|
[extra]
|
||||||
# github = ["exvacuum/bevy_blacklight_material"]
|
github = ["soaosdev/bevy_rustysynth"]
|
||||||
# crates = ["bevy_blacklight_material"]
|
crates = ["bevy_rustysynth"]
|
||||||
# git = ["bevy_blacklight_material"]
|
git = ["bevy_rustysynth"]
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ categories = ["bevy plugin"]
|
|||||||
languages = ["rust"]
|
languages = ["rust"]
|
||||||
[extra]
|
[extra]
|
||||||
very_cool = true
|
very_cool = true
|
||||||
github = ["exvacuum/bevy_terminal_display"]
|
github = ["soaosdev/bevy_terminal_display"]
|
||||||
crates = ["bevy_terminal_display"]
|
crates = ["bevy_terminal_display"]
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ categories = ["utility"]
|
|||||||
languages = ["rust"]
|
languages = ["rust"]
|
||||||
[extra]
|
[extra]
|
||||||
finished = "november 2023"
|
finished = "november 2023"
|
||||||
github = ["exvacuum/pomd", "exvacuum/pomc"]
|
github = ["soaosdev/pomd", "soaosdev/pomc"]
|
||||||
crates = ["pomd", "pomc"]
|
crates = ["pomd", "pomc"]
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
exvacuum.dev
|
soaos.dev
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
<p>
|
<p>
|
||||||
git:
|
git:
|
||||||
{% for repo in page.extra.git %}
|
{% for repo in page.extra.git %}
|
||||||
<a href="https://git.exvacuum.dev/{{ repo }}" target="_blank">{{ repo }}</a>
|
<a href="https://git.soaos.dev/{{ repo }}" target="_blank">{{ repo }}</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user