Fixed gen_blumen_lumen to output sculpture spec again, and updated readme.

This commit is contained in:
PS 2021-02-28 14:35:14 -08:00
parent b470a63ec5
commit 4765301c22
2 changed files with 13 additions and 10 deletions

View File

@ -2,10 +2,13 @@
![Lumenarium Banner](./docs/images/splash.png) ![Lumenarium Banner](./docs/images/splash.png)
## Build Lumenarium ## Build Lumenarium
Building Lumenarium requires having MSVC installed (sorry, Windows only for now!). At the moment, there are bunch of errors from the meta program but the program will still compile Building Lumenarium requires having MSVC installed (sorry, Windows only for now!).
1. Run build_meta.bat 1. clone the repo onto your computer
2. Run build.bat 2. Run the appropriate build batch file
3. Launch win32_foldhaus.exe (locaated in the build folder) - for Windows: use `build\build_app_msvc_win32_debug.bat`
- other platforms coming soon
3. `cd <repo location>/app_run_tree`
4. `win32_msvc\debug\win32_foldhaus.exe`
## What Is Lumenarium? ## What Is Lumenarium?
Lumenarium is our custom build light and motion control software. It allows us to design light and motion patterns for our sculptures, visualize the output long before the sculpture is built, and iterate in real time to achieve the best visual results quickly. Lumenarium is our custom build light and motion control software. It allows us to design light and motion patterns for our sculptures, visualize the output long before the sculpture is built, and iterate in real time to achieve the best visual results quickly.

View File

@ -216,8 +216,8 @@ int main(int ArgCount, char** Args)
F2.BloomOuterChannels = BloomOuterChannels; F2.BloomOuterChannels = BloomOuterChannels;
StripCount += BuildFlower(&OutputBuffer, F2); StripCount += BuildFlower(&OutputBuffer, F2);
//printf("%.*s\n", (u32)OutputBuffer.Length, OutputBuffer.Str); printf("%.*s\n", (u32)OutputBuffer.Length, OutputBuffer.Str);
printf("%d\n", StripCount); //printf("%d\n", StripCount);
return 0; return 0;
} }