bevy_mod_debugdump 0.13.0

Visualization tools for bevy
Documentation
1
2
3
4
5
6
7
8
9
10
11
.PHONY: docs
docs:
	cargo run --example generate_docs
	ls docs/schedule/{light,dark}/*.dot docs/render/{light,dark}/*.dot | xargs -I '{}' dot -Tsvg '{}' -o '{}.svg'

	./docs/generate_readme.sh

.PHONY: compare
compare:
	cargo run --example compare
	ls compare/*.dot | xargs -I '{}' dot -Tsvg '{}' -o '{}.svg'