[jasper/world/studio] Change Person TS template type to V5
Some checks failed
Build / build (push) Failing after 1m10s

This commit is contained in:
Gary Talent 2025-01-22 23:22:01 -06:00
parent d4a691bcc2
commit c0fc18cee0

View File

@ -33,10 +33,10 @@ static class: public studio::Module {
ox::Vector<ox::UniquePtr<studio::ItemTemplate>> out;
// Person TileSheet
{
ngfx::TileSheetV4 ts;
ngfx::TileSheetV5 ts;
ts.bpp = 4;
auto const addSheet = [&ts](
ngfx::TileSheetV4::SubSheet &ss,
ngfx::TileSheetV5::SubSheet &ss,
ox::StringParam name,
int const cols,
int const rows) -> auto& {
@ -52,7 +52,7 @@ static class: public studio::Module {
addSheetSet("Back");
addSheetSet("Left");
addSheetSet("Right");
out.emplace_back(ox::make<studio::ItemTemplateT<ngfx::TileSheetV4>>(
out.emplace_back(ox::make<studio::ItemTemplateT<ngfx::TileSheetV5>>(
"Jasper World Person",
std::move(ts)));
}