Refactoring, FFmpeg updates

This commit is contained in:
2025-11-03 00:16:05 -05:00
parent 62cd94ca78
commit 1e35910b0a
65 changed files with 2322 additions and 2236 deletions
+8
View File
@@ -123,4 +123,12 @@ namespace anm2ed::anm2
{
delay = glm::clamp(++delay, FRAME_DELAY_MIN, FRAME_DELAY_MAX);
}
bool Frame::is_visible(Type type)
{
if (type == anm2::TRIGGER)
return isVisible && eventID > -1;
else
return isVisible;
}
}