Skip to content
/ zeno_addon_wizard Public template

quick start for developing zeno-based projects

License

Notifications You must be signed in to change notification settings

zenustech/zeno_addon_wizard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ZENO Addon Wizard

Demo project showing on how to add custom nodes to ZENO.

Setup

First of all, run this command:

git submodule update --init --recursive

To fetch ZENO which is included a submodule.

The following command installs a git alias named pullall that automates these two steps.

git config --global alias.pullall '!f(){ git pull "$@" && git submodule update --init --recursive; }; f'

Afterwards, simply write

git pullall

to fetch the latest version of ZENO

Build

  • Linux
cmake -B build
cmake --build build --parallel
  • Windows
cmake -B build -DCMAKE_BUILD_TYPE=Release

Then open build/zeno_addon_wizard.sln in Visual Studio 2019, and switch to Release mode in build configurations, then run Build -> Build All.

IMPORTANT: In MSVC, Release mode must always be active when building ZENO, since MSVC uses different allocators in Release and Debug mode. If a DLL of Release mode and a DLL in Debug mode are linked together in Windows, it will crash when passing STL objects.

Run

./run.py

Then open graphs/MyPrimitiveOps.zsg and click Run.

Coding

The YourProject/ is a demo project for showing how to add custom nodes in ZENO with its C++ API.

See MyPrimitiveOps.cpp for custom primitive operation. See CustomNumber.cpp for defining custom object.

Let me know if you need more demos here by opening an issue.

About

quick start for developing zeno-based projects

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •