From 9e47b072191526a3bca1ccf12c9c6331046736cf Mon Sep 17 00:00:00 2001 From: David Capello Date: Wed, 9 Jan 2019 20:40:47 -0300 Subject: [PATCH] Add TODO for --sheet-type --- src/app/cli/cli_processor.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/cli/cli_processor.cpp b/src/app/cli/cli_processor.cpp index c468ef9e6..30fb127a1 100644 --- a/src/app/cli/cli_processor.cpp +++ b/src/app/cli/cli_processor.cpp @@ -183,7 +183,11 @@ void CliProcessor::process(Context* ctx) if (m_exporter) m_exporter->setTextureHeight(strtol(value.value().c_str(), NULL, 0)); } - // --sheet-pack + // --sheet-type + // TODO Implement this parameter (never documented, but it's + // shown in --help), anyway some work needed to move the + // sprite sheet size calculation from ExportSpriteSheetCommand + // to DocExporter else if (opt == &m_options.sheetType()) { if (value.value() == "horizontal") sheetType = SpriteSheetType::Horizontal;