Add TODO to finish Rom::LoadLinkGraphics and GraphicsEditor display
This commit is contained in:
@@ -349,14 +349,19 @@ absl::Status GraphicsEditor::UpdateLinkGfxView() {
|
|||||||
const auto link_gfx_offset = 0x80000;
|
const auto link_gfx_offset = 0x80000;
|
||||||
const auto link_gfx_length = 0x7000;
|
const auto link_gfx_length = 0x7000;
|
||||||
|
|
||||||
// Load Links graphics from the ROM
|
// TODO: Finish Rom::LoadLinkGraphics and implement this
|
||||||
RETURN_IF_ERROR(rom()->LoadLinkGraphics());
|
if (ImGui::Button("Load Link Graphics (Experimental)")) {
|
||||||
|
if (rom()->is_loaded()) {
|
||||||
|
// Load Links graphics from the ROM
|
||||||
|
rom()->LoadLinkGraphics();
|
||||||
|
|
||||||
// Split it into the pose data frames
|
// Split it into the pose data frames
|
||||||
// Create an animation step display for the poses
|
// Create an animation step display for the poses
|
||||||
// Allow the user to modify the frames used in an anim step
|
// Allow the user to modify the frames used in an anim step
|
||||||
// LinkOAM_AnimationSteps:
|
// LinkOAM_AnimationSteps:
|
||||||
// #_0D85FB
|
// #_0D85FB
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
END_TAB_ITEM()
|
END_TAB_ITEM()
|
||||||
return absl::OkStatus();
|
return absl::OkStatus();
|
||||||
|
|||||||
Reference in New Issue
Block a user