Fixed gen_blumen_lumen to output sculpture spec again, and updated readme.
This commit is contained in:
parent
b470a63ec5
commit
4765301c22
11
README.md
11
README.md
|
@ -2,10 +2,13 @@
|
|||
![Lumenarium Banner](./docs/images/splash.png)
|
||||
|
||||
## 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
|
||||
1. Run build_meta.bat
|
||||
2. Run build.bat
|
||||
3. Launch win32_foldhaus.exe (locaated in the build folder)
|
||||
Building Lumenarium requires having MSVC installed (sorry, Windows only for now!).
|
||||
1. clone the repo onto your computer
|
||||
2. Run the appropriate build batch file
|
||||
- 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?
|
||||
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.
|
||||
|
|
|
@ -216,8 +216,8 @@ int main(int ArgCount, char** Args)
|
|||
F2.BloomOuterChannels = BloomOuterChannels;
|
||||
StripCount += BuildFlower(&OutputBuffer, F2);
|
||||
|
||||
//printf("%.*s\n", (u32)OutputBuffer.Length, OutputBuffer.Str);
|
||||
printf("%d\n", StripCount);
|
||||
printf("%.*s\n", (u32)OutputBuffer.Length, OutputBuffer.Str);
|
||||
//printf("%d\n", StripCount);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue