Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Wobble.Tests/Localization/Strings.bg.resx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@
<data name="Screen_EasingAnimations" xml:space="preserve">
<value>Анимации за ускоряване</value>
</data>
<data name="Screen_AnimationTiming" xml:space="preserve">
<value>Време на анимациите</value>
</data>
<data name="Screen_ImGui" xml:space="preserve">
<value>Imgui</value>
</data>
Expand Down
3 changes: 3 additions & 0 deletions Wobble.Tests/Localization/Strings.resx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@
<data name="Screen_EasingAnimations" xml:space="preserve">
<value>Easing Animations</value>
</data>
<data name="Screen_AnimationTiming" xml:space="preserve">
<value>Animation Timing</value>
</data>
<data name="Screen_ImGui" xml:space="preserve">
<value>Imgui</value>
</data>
Expand Down
2 changes: 2 additions & 0 deletions Wobble.Tests/Screens/Selection/TestScreenRegistry.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using Wobble.Screens;
using Wobble.Tests.Screens.Tests.AnimationTiming;
using Wobble.Tests.Screens.Tests.Audio;
using Wobble.Tests.Screens.Tests.Background;
using Wobble.Tests.Screens.Tests.BlurContainer;
Expand Down Expand Up @@ -89,6 +90,7 @@ internal static class TestScreenRegistry
new TestScreenDescriptor(LayoutMotion, "Screen_DrawableScaling", () => new TestDrawableScalingScreen()),
new TestScreenDescriptor(LayoutMotion, "Screen_Scaling", () => new TestScalingScreen()),
new TestScreenDescriptor(LayoutMotion, "Screen_EasingAnimations", () => new TestEasingAnimationsScreen()),
new TestScreenDescriptor(LayoutMotion, "Screen_AnimationTiming", () => new TestAnimationTimingScreen()),
new TestScreenDescriptor(LayoutMotion, "Screen_Scrolling", () => new TestScrollContainerScreen()),
new TestScreenDescriptor(LayoutMotion, "Screen_MarqueeSpriteText", () => new TestMarqueeSpriteTextScreen()),
new TestScreenDescriptor(LayoutMotion, "Screen_FlexContainer", () => new TestFlexContainerScreen()),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using Wobble.Screens;

namespace Wobble.Tests.Screens.Tests.AnimationTiming
{
public class TestAnimationTimingScreen : Screen
{
public sealed override ScreenView View { get; protected set; }

public TestAnimationTimingScreen() => View = new TestAnimationTimingScreenView(this);

public override void OnActivated() => ((TestAnimationTimingScreenView) View).Activate();
}
}
Loading