disabled animation stuff

This commit is contained in:
2024-06-05 14:44:13 +02:00
parent 81cef9ce0b
commit bbb8e3d84c

View File

@@ -181,16 +181,16 @@ public class FitnessActivity extends RobotActivity implements RobotLifecycleCall
if ( videoView.isPlaying() )
{
QiContext qiContext = null;
Animation animationarmraise = AnimationBuilder.with(qiContext) // Create the builder with the context.
.withResources(R.raw.armraise) // Set the animation resource.
.build(); // Build the animation.
// QiContext qiContext = null;
// Animation animationarmraise = AnimationBuilder.with(qiContext) // Create the builder with the context.
// .withResources(R.raw.armraise) // Set the animation resource.
// .build(); // Build the animation.
//
// animate = AnimateBuilder.with(qiContext) // Create the builder with the context.
// .withAnimation(animationarmraise) // Set the animation.
// .build(); // Build the animate action.
animate = AnimateBuilder.with(qiContext) // Create the builder with the context.
.withAnimation(animationarmraise) // Set the animation.
.build(); // Build the animate action.
Future<Void> animateFuture = animate.async().run();
// Future<Void> animateFuture = animate.async().run();
}
else
{