Skip to content

Graphical Editor to create BehaviorTrees. Compliant with BehaviorTree.CPP

Notifications You must be signed in to change notification settings

ah-forklib/Groot-Windows

 
 

Repository files navigation

Groot for Windows

Build Groot on Windows and MinGW-x64

# Change to Your Qt path (line 12)
vim CMakeLists.txt

set PATH=D:\Development\Qt\5.15.2\mingw81_64\bin;%PATH%
mkdir build
cd build

cmake .. -G "MinGW Makefiles"
make -j8

Note

  • Allow to define your owned builtin models and styles in customized.xml.
<root>
    <TreeNodesModel>
        <Decorator ID="IgnoreAndFailure"/>
        <Decorator ID="IgnoreAndSuccess"/>
    </TreeNodesModel>
    <TreeNodesStyle>
        <Decorator ID="IgnoreAndFailure">
            <icon>svg/failure.svg</icon>
            <caption_color>#ff2222</caption_color>
        </Decorator>
        <Decorator ID="IgnoreAndSuccess">
            <icon>svg/success.svg</icon>
            <caption_color>#00FF00</caption_color>
        </Decorator>
    </TreeNodesStyle>
</root>

About

Graphical Editor to create BehaviorTrees. Compliant with BehaviorTree.CPP

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 90.5%
  • M4 2.7%
  • CMake 2.6%
  • C 1.3%
  • Makefile 1.2%
  • Shell 1.1%
  • Other 0.6%