diff --git a/lib/hooks.cpp b/lib/hooks.cpp index 0fe22cc..d64514e 100644 --- a/lib/hooks.cpp +++ b/lib/hooks.cpp @@ -750,17 +750,17 @@ MxResult MxTransitionManager::InterceptStartTransition(TransitionType animationT animationType = NO_ANIMATION; } else if (animation_type == "Dissolve") { animationType = DISSOLVE; - } else if (animation_type == "Pixelation") { - animationType = PIXELATION; - } else if (animation_type == "Vertical Wipe") { - animationType = VERTICAL_WIPE; + } else if (animation_type == "Mosaic") { + animationType = MOSAIC; + } else if (animation_type == "Wipe Down") { + animationType = WIPE_DOWN; } else if (animation_type == "Window") { animationType = WINDOW; } else if (animation_type == "Random") { animationType = (TransitionType)(rand() % 4 + 2); - // The Pixelation animation runs much faster by nature than the other animations, + // The Mosaic animation runs much faster by nature than the other animations, // this magic is to make the speed inconsistency feel less jarring - if (animationType == PIXELATION && speed < 30) { + if (animationType == MOSAIC && speed < 30) { speed += 25; } } diff --git a/lib/hooks.h b/lib/hooks.h index 1f85a1a..6d4df03 100644 --- a/lib/hooks.h +++ b/lib/hooks.h @@ -80,8 +80,8 @@ enum TransitionType NOT_TRANSITIONING = 0, NO_ANIMATION = 1, DISSOLVE = 2, - PIXELATION = 3, - VERTICAL_WIPE = 4, + MOSAIC = 3, + WIPE_DOWN = 4, WINDOW = 5, BROKEN = 6 }; diff --git a/src/patchgrid.cpp b/src/patchgrid.cpp index 94d6fdc..f7a8bca 100644 --- a/src/patchgrid.cpp +++ b/src/patchgrid.cpp @@ -185,8 +185,8 @@ PatchGrid::PatchGrid() vector animationList; animationList.push_back("No Animation"); animationList.push_back("Dissolve"); - animationList.push_back("Pixelation"); - animationList.push_back("Vertical Wipe"); + animationList.push_back("Mosaic"); + animationList.push_back("Wipe Down"); animationList.push_back("Window"); animationList.push_back("Random"); AddPatch("TransitionType",