You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Darryl Pogue 429a87e530 Fix syntax warning about assert 1 month ago
.github/workflows Fix missed action version update. 2 months ago
cmake Update all dependency libraries to current. 7 months ago
installer Change installer from WiX to NSIS. 2 years ago
korlib Merge pull request #272 from Hoikas/ci2 3 years ago
korman Fix syntax warning about assert 1 month ago
.editorconfig Add .editorconfig and update .gitignore for VS Code. 4 years ago
.gitignore Add .editorconfig and update .gitignore for VS Code. 4 years ago
CMakeLists.txt Bump version to 0.17-pre. 2 months ago
COPYING Blender addon skeleton 12 years ago
README.md Remove outdated information from the README. 2 months ago
build.ps1 Fix `build.ps1 -Dev`. 1 year ago
release.ps1 Fix release publishing failure. 2 months ago

README.md

Korman

An open source, GPLv3 Blender addon for creating ages for Cyan Worlds' proprietary Plasma engine and its open source variant, CyanWorlds.com Engine. For more information, visit https://guildofwriters.org

Dependencies

  • Blender - 3D modeling software
  • libHSPlasma - Universal Plasma library used for manipulating data

Building

Korman is written primarily in Python and therefore requires little in the way of compiling. However, Korman depends on the libHSPlasma Python bindings called "PyHSPlasma". Therefore, you will need to compile libHSPlasma with python bindings for the platform of your choice. A helper script has been provided to compile PyHSPlasma and all dependency libraries for you on Windows. To build Korman for rapid development, run ./build.ps1 -Dev -BlenderDir "<path to blender 2.79>"

Installing

Copy the korman directory into Blender's addons directory. You must enable the addon in Blender's User Preferences window. Korman is listed as a System addon. Switch the render engine to Korman and enjoy!

Zen of Korman

  • Korman should be intuitive and discoverable.
  • Mapping Korman features to Plasma features 1:1 is not desirable.
  • Hide annoying details and make age building fun!
  • Any Python traceback seen by the user is a bug.
  • Korman is written in Python, not C. The code should reflect that fact.
  • Avoid "it's better to ask for forgiveness" try... except blocks.
  • Spaces over tabs.
  • Break lines around 100 columns (it's OK if your log message exceeds that however).