显示图像的数组,需要制作另一种方法,该方法采用参数NUM来排序显示的图片数量

时间:2013-02-22 14:34:37

标签: arrays parameters

我在标题中解释得非常可怕,我道歉,对java很新,并且还不太了解其中的一些。

反正

我的猫动画运行到屏幕中间,划伤两次,然后继续运行到最后,无论如何要写一个方法,它将采取INT NUM并使猫抓x次?不知道该怎么做。

非常感谢任何帮助

这是我目前的代码

/** Run the animation. */
public void nekoRun() {
    moveIn();
    scratch();
    //scratch2(5);
    moveOut();
}

/* Move Neko to the centre of the panel. */
private void moveIn() {
    for (int i = 0; i < getWidth()/2; i+=10) {
        xPos = i;
        // swap images
        if (currentImage == nekoPics[0]) 
            currentImage = nekoPics[1];
        else 
            currentImage = nekoPics[0];
        repaint();
        pause(150);
    }   
}
    //neko stops and scratches in the middle of the panel twice
private void scratch() {
    for (int i = 0; i < 10; i++)  {


        // Swap images.
        currentImageIndex = nextImageList[currentImageIndex];
        currentImage = nekoPics[currentImageIndex];


            repaint();
            pause(150);
        }
}
//Neko runs to the end of the panel
private void moveOut() {
    for (int i = xPos; i < getWidth(); i+=10) {
        xPos = i;
        // swap images
        if (currentImage == nekoPics[0]) 
            currentImage = nekoPics[1];

        else 
            currentImage = nekoPics[0];
        repaint();
        pause(150);
    }   
}

0 个答案:

没有答案