Skip to content

🎉 Cut looping behaviors

Latest
Compare
Choose a tag to compare
@MathisFederico MathisFederico released this 04 Feb 19:17
· 6 commits to main since this release

Add boolean option to cut looping behaviors and redirect them to alternatives.

Examples:

Uncutted

unrolled_graph = unroll_graph(gather_wood.graph)

GatherWood

Cutted

unrolled_graph = unroll_graph(gather_wood.graph, cut_looping_alternatives=True)

GatherWoodCut

Uncutted

unrolled_graph = unroll_graph(get_new_axe.graph)

GetNewAxe

Cutted

unrolled_graph = unroll_graph(get_new_axe.graph, cut_looping_alternatives=True)

GetNewAxeCut