0

嗨所以我正在尝试创建一个 if 语句......如果精灵被触摸......那么就会发生一些事情

但是,由于某种原因,我收到了预期的已识别错误,并且我一生都无法弄清楚为什么?

感谢您提供的任何帮助和知识meKKInput* input = [KKInput sharedInput];

KKInput* input = [KKInput sharedInput];

if([input isAnyTouchOnNode:kan touchPhase:[KKTouchPhaseAny]])
    {
        for ( int x = 105.0f; x < 100000 ; ++x)
        {
            for ( int y = 50.0f; y < 100000 ; ++y)
            {
                kan.position = CGPointMake((x),(y));
            }

        }
    }
4

1 回答 1

1

KKTouchPhaseAny必须删除(可能是枚举)周围的方括号。

于 2012-08-10T21:42:47.987 回答