3

有効にしましsetIsTouchEnabled(true);たが、cocos2d-android でタッチ開始とタッチ終了を検出できません。

私のゲームレイヤーは

 public class GameLayer extends CCColorLayer
 {
   protected CCLabel _label;

   public static CCScene scene()
   {
    CCScene scene = CCScene.node();
    GameLayer layer = new GameLayer(ccColor4B.ccc4(90, 90, 255, 255));
    layer.getLabel();

    scene.addChild(layer);
    return scene;

}

public CCLabel getLabel()
{
    return _label;

}

protected GameLayer(ccColor4B color)
{
    super(color);
    this.setIsTouchEnabled(true);
    CGSize winSize = CCDirector.sharedDirector().displaySize();
    Context context = CCDirector.sharedDirector().getActivity();
    _label = CCLabel.makeLabel("Tap On Me to START the game", "DroidSans", 32);
    _label.setColor(ccColor3B.ccBLACK);
    _label.setPosition(winSize.width/2, winSize.height/2);

    addChild(_label);

}

@Override
public boolean ccTouchesBegan(MotionEvent event)
{

    CGRect projectileRect = CGRect.make(_label.getPosition().x,_label.getPosition().y, _label.getContentSize().width,_label.getContentSize().height);
    CGPoint touchLocation = CGPoint.ccp(event.getX(), event.getY());
    CGRect targetRect = CGRect.make(event.getX(), event.getY(), 20, 20);
    System.out.print(":touch Points are - :"+projectileRect+" _  -  _ "+touchLocation+" _  -  _ "+targetRect);
    if (CGRect.intersects(projectileRect, targetRect))
    {
        System.err.print(": This is intersect function from App :");
    }
    return true;

}

@Override
public boolean ccTouchesEnded(MotionEvent event)
{
    // Choose one of the touches to work with
    CGPoint location = CCDirector.sharedDirector().convertToGL(CGPoint.ccp(50, 200));
    System.out.printf("Got touch ", location);
    CGSize winSize = CCDirector.sharedDirector().displaySize();

    return true;

}
 }

誰かが私が間違っているところを理解できますか? エラーが発生せず、logcat でログがトレースされません

4

2 に答える 2

0

あなたのコードは良いです.System.out.println()関数を使用してテキストをコンソールに出力するだけですSystem.out.printf(), System.err.print(). それらを置き換えると、テキストがコンソールに表示されました。

これ:

System.out.print(":touch Points are - :"+projectileRect+" _  -  _ "+touchLocation+" _  -  _ "+targetRect);

への変更:

System.out.println(":touch Points are - :"+projectileRect+" _  -  _ "+touchLocation+" _  -  _ "+targetRect);

この:

System.err.print(": This is intersect function from App :"); 

への変更:

System.out.println(": This is intersect function from App :");

そしてこれも:

System.out.printf("Got touch ", location);

への変更:

System.out.println("Got touch " + location);
于 2014-04-18T18:17:01.903 に答える
0

これをコンストラクターに追加する必要があります。

this.setIsTouchEnabled(true);
于 2014-10-16T08:22:09.203 に答える