Skip to content

Commit b3bfe70

Browse files
committed
Experiment simpler website paths without about subdir and renames, simplify readme
1 parent 74c262c commit b3bfe70

8 files changed

Lines changed: 20 additions & 40 deletions

File tree

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
.cache
2-
*.pyc
32
site
4-
website/index.md

readme.md

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,17 @@
11
<div align="center">
2-
<img src="https://raw.githubusercontent.com/BrokenSource/ShaderFlow/main/website/assets/logo.png" width="210">
2+
<img src="https://raw.githubusercontent.com/BrokenSource/ShaderFlow/main/website/assets/logo.png" width="180">
33
<h1>ShaderFlow</h1>
44
<span>Modular shader engine designed for simplicity and speed</span>
55
<br>
66
<br>
77
<a href="https://pypi.org/project/shaderflow/"><img src="https://img.shields.io/pypi/v/shaderflow?label=PyPI&color=blue"></a>
88
<a href="https://pypi.org/project/shaderflow/"><img src="https://img.shields.io/pypi/dw/shaderflow?label=%E2%86%93&color=blue"></a>
9-
<a href="https://github.com/BrokenSource/ShaderFlow/releases/"><img src="https://img.shields.io/github/v/release/BrokenSource/ShaderFlow?label=Pyaket&color=light-green"></a>
10-
<a href="https://github.com/BrokenSource/ShaderFlow/releases/"><img src="https://img.shields.io/github/downloads/BrokenSource/ShaderFlow/total?label=%E2%86%93&color=light-green"></a>
119
<a href="https://github.com/BrokenSource/ShaderFlow/stargazers"><img src="https://img.shields.io/github/stars/BrokenSource/ShaderFlow?label=Stars&style=flat&color=orange"></a>
1210
<a href="https://discord.gg/KjqvcYwRHm"><img src="https://img.shields.io/discord/1184696441298485370?label=Discord&style=flat&color=purple"></a>
1311
<br>
14-
<b>
15-
Links •
16-
<a href="https://github.com/BrokenSource/ShaderFlow/">GitHub</a> •
17-
<a href="https://shaders.tremeschin.com/">Documentation</a> •
18-
<a href="https://github.com/sponsors/Tremeschin/">Support</a> •
19-
<a href="https://shaders.tremeschin.com/about/license/">License</a>
20-
</b>
21-
<br>
2212
<sub><small>⭐️ Consider starring the project to help it grow! ⭐️</small></sub>
23-
<br>
24-
<br>
2513
</div>
2614

27-
<video src="https://github.com/user-attachments/assets/100939e1-b246-4b5a-a46d-99cda4a901b7" controls></video>
28-
2915
## 🔥 Description
3016

3117
**ShaderFlow** is a platform for creating and exporting GLSL shaders scenes to videos or realtime previews, with a modularity similar to manim and shadertoy's simplicity.
@@ -35,7 +21,10 @@
3521
- [x] **Camera** module using quaternions, generic for Ray Marching, 2D, VR scenes
3622
- [x] **Audio** reactive processing for music visualizers, FFTs already in natural scale
3723
- [x] **Commercial** use allowed and encouraged, simply pick a [❤️ Sponsorship](https://github.com/sponsors/Tremeschin/) tier!
38-
- [x] No watermarks, unlimited usage, portable executables made with [📦 Pyaket](https://pyaket.tremeschin.com/)
24+
25+
Example music visualizer scene:
26+
27+
<video src="https://github.com/user-attachments/assets/100939e1-b246-4b5a-a46d-99cda4a901b7" controls></video>
3928

4029
## 📦 Getting Started
4130

website/about/examples.md

Lines changed: 0 additions & 14 deletions
This file was deleted.
File renamed without changes.

website/get/docker.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ icon: material/docker
77

88
ShaderFlow provides prebuilt images at [ghcr.io/brokensource/shaderflow](https://ghcr.io/brokensource/shaderflow) with working OpenGL support for rendering scenes in reproducible environments - ideal for expensive or long pipelines in the cloud, mass exporting videos, or general automation.
99

10-
:warning: **Make sure** to follow the project's [licensing](../about/license.md) on commercial use!
11-
1210
<small><b>Note:</b> Dockerfiles are made in [BrokenSource/Containers](https://github.com/BrokenSource/Containers)</small>
1311

1412
## Runtime
File renamed without changes.

website/show/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
title: Showcase
33
---
44

5+
After activating the Virtual Environment on `.venv`:
6+
7+
- Run `shaderflow` to see all available scenes
8+
- Run `shaderflow (scene)` to see commands of a scene
9+
- Run `shaderflow (scene) main` to run a specific scene
10+
- Run `shaderflow (scene) main --help` for scene options
11+
12+
Go for the Python file listed in the output for examples!
13+
514
[Example Scripts](https://github.com/BrokenSource/ShaderFlow/tree/main/examples){.md-button .md-button--primary}
615

716
Also check out [⭐️ Pianola](https://github.com/BrokenSource/Pianola) and [⭐️ DepthFlow](https://github.com/BrokenSource/DepthFlow) projects!

zensical.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,27 @@ nav = [
1111
{Origin = "https://tremeschin.com/"},
1212
{Home = [
1313
"index.md",
14-
"about/changelog.md",
15-
"about/license.md",
14+
"changelog.md",
15+
"license.md",
1616
]},
17-
{Installation = [
17+
{Get = [
1818
"get/pypi.md",
1919
# "get/pyaket.md",
2020
"get/source.md",
2121
"get/docker.md",
2222
]},
23-
{Examples = [
23+
{Show = [
2424
"show/index.md",
2525
]},
26-
{Documentation = [
26+
{Docs = [
2727
"docs/index.md",
2828
"docs/module.md",
2929
"docs/scene.md",
3030
"docs/camera.md",
3131
"docs/shader.md",
3232
"docs/texture.md",
3333
]},
34-
{Questions = [
34+
{FAQ = [
3535
"faq/index.md",
3636
{Base = [
3737
"faq/general.md",

0 commit comments

Comments
 (0)