将缓动函数应用于 PathModifier?

发布于 2024-12-25 22:10:32 字数 693 浏览 0 评论 0原文

在 AndEngine 中我以这种方式定义了一个 PathModifier

          public static IEaseFunction EASEFUNCTION;
                EASEFUNCTION =EaseSineInOut.getInstance();
                float[] coordinatesX = new float[300], coordinatesY = new float[300];
    for (int i=0; i<300; i++){
        coordinatesX[i] = i;
        coordinatesY[i] = (float)(20 * (Math.sin((-0.10 * coordinatesX[i]))));
        System.out.println(coordinatesX[i]);
        System.out.println(coordinatesY[i]);
    }
    PathModifier path = new PathModifier(10, coordinatesX, coordinatesY, EASEFUNCTION);

它是一个数学函数。我想将 EASEFunction 应用于我创建的 PathModifier。构造函数存在,但在这种情况下没有一个 EASEFunction 不起作用。出什么问题了?

In AndEngine I defined a PathModifier in this way

          public static IEaseFunction EASEFUNCTION;
                EASEFUNCTION =EaseSineInOut.getInstance();
                float[] coordinatesX = new float[300], coordinatesY = new float[300];
    for (int i=0; i<300; i++){
        coordinatesX[i] = i;
        coordinatesY[i] = (float)(20 * (Math.sin((-0.10 * coordinatesX[i]))));
        System.out.println(coordinatesX[i]);
        System.out.println(coordinatesY[i]);
    }
    PathModifier path = new PathModifier(10, coordinatesX, coordinatesY, EASEFUNCTION);

It's a mathematical function. I wanna to apply an EASEFunction to the PathModifier created by me. The constructor exists but none of the EASEFunctions don't works in this case. What's going wrong ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

他夏了夏天 2025-01-01 22:10:32

您需要首先创建 Path 对象,然后将其传递给 PathModifier 构造函数。

这会起作用:

Path path = new Path(coordinatesX, coordinatesY);
PathModifier modifier = new PathModifier(10, path, EaseSineInOut.getInstance());

我强烈建议您下载 AndEngine 的源代码,这样您就可以快速轻松地修复此类小问题。

You need to create the Path object first, then pass it to the PathModifier constructor.

This will work:

Path path = new Path(coordinatesX, coordinatesY);
PathModifier modifier = new PathModifier(10, path, EaseSineInOut.getInstance());

I highly recommend you to download AndEngine's source code, so you can fix such small issues fast and with ease.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文