From 98d8807adb11bfdd629b2fb4851b26362981c8b6 Mon Sep 17 00:00:00 2001
From: Silas Bartha
Date: Tue, 10 Dec 2024 16:20:45 -0500
Subject: Blacklight Material Page
---
content/blog/blacklight_shader/index.md | 2 ++
content/projects/bevy_blacklight_material/index.md | 16 ++++++++++++++++
content/projects/bevy_rustysynth/index.md | 12 ++++++++++++
templates/project-page.html | 8 ++++++++
4 files changed, 38 insertions(+)
create mode 100644 content/projects/bevy_blacklight_material/index.md
create mode 100644 content/projects/bevy_rustysynth/index.md
diff --git a/content/blog/blacklight_shader/index.md b/content/blog/blacklight_shader/index.md
index 9a5423a..156c813 100644
--- a/content/blog/blacklight_shader/index.md
+++ b/content/blog/blacklight_shader/index.md
@@ -1,6 +1,8 @@
+++
title = "creating a blacklight shader"
date = 2024-11-29
+[taxonomies]
+projects = ["bevy_blacklight_material"]
+++
today i wanted to take a bit of time to write about a shader i implemented for my in-progress game project (more on that soon™)
diff --git a/content/projects/bevy_blacklight_material/index.md b/content/projects/bevy_blacklight_material/index.md
new file mode 100644
index 0000000..8437a19
--- /dev/null
+++ b/content/projects/bevy_blacklight_material/index.md
@@ -0,0 +1,16 @@
++++
+title = "bevy_blacklight_material"
+[taxonomies]
+categories = ["bevy plugin"]
+languages = ["rust", "wgsl"]
+[extra]
+github = ["exvacuum/bevy_blacklight_material"]
+crates = ["bevy_blacklight_material"]
+git = ["bevy_blacklight_material"]
++++
+
+this plugin for the [bevy](https://bevyengine.org) engine provides a "blacklight" material which is visible based on the properties of specially-marked spotlights.
+
+i wrote this one day, i kind of forget why.
+
+probably for a puzzle in my upcoming game project.
diff --git a/content/projects/bevy_rustysynth/index.md b/content/projects/bevy_rustysynth/index.md
new file mode 100644
index 0000000..18a2fe1
--- /dev/null
+++ b/content/projects/bevy_rustysynth/index.md
@@ -0,0 +1,12 @@
++++
+title = "bevy_rustysynth"
+draft = true
+[taxonomies]
+categories = ["bevy plugin"]
+languages = ["rust", "wgsl"]
+[extra]
+# github = ["exvacuum/bevy_blacklight_material"]
+# crates = ["bevy_blacklight_material"]
+# git = ["bevy_blacklight_material"]
++++
+
diff --git a/templates/project-page.html b/templates/project-page.html
index c024b10..e932c2c 100644
--- a/templates/project-page.html
+++ b/templates/project-page.html
@@ -26,6 +26,14 @@
{% endfor %}
{% endif %}
+{% if page.extra.git %}
+
+ git:
+ {% for repo in page.extra.git %}
+ {{ repo }}
+ {% endfor %}
+
+{% endif %}
{% if page.extra.github %}
github:
--
cgit v1.2.3