decompiler: allow jak 3 texture and model extraction (#3080)

Added some hacks and stubs to allow extracting textures and models.
This commit is contained in:
Hat Kid
2023-10-12 01:32:12 +02:00
committed by GitHub
parent 6285c61662
commit 5be46c9852
27 changed files with 370 additions and 32 deletions
+7 -1
View File
@@ -42,8 +42,14 @@ std::vector<std::string> jak2_slots = {
"cas-toxic-slime-scroll-dest",
};
}
std::vector<std::string> jak3_slots = {};
} // namespace
const std::vector<std::string>& jak2_animated_texture_slots() {
return jak2_slots;
}
const std::vector<std::string>& jak3_animated_texture_slots() {
return jak3_slots;
}