更新整理

This commit is contained in:
GG Z
2025-04-24 20:56:44 +08:00
parent 155cef46f8
commit 5b6d67b571
813 changed files with 14437 additions and 12362 deletions

View File

@@ -9,17 +9,17 @@ internal class AnimationFactorToValueConverter : IMultiValueConverter
{
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
if(values[0] is not double completeValue)
if (values[0] is not double completeValue)
{
return 0.0;
}
if(values[1] is not double factor)
if (values[1] is not double factor)
{
return 0.0;
}
if(parameter is "negative")
if (parameter is "negative")
{
factor = -factor;
}