武将类:
武将所需要的动作为:行走,攻击,受伤,死亡 以及 他们的动画
在攻击函数中,要根据点击屏幕的位置调整炮筒的角度
voID General::attact(Vec2 endPos) //点击屏幕的位置{ //调整炮筒角度.. Node* pd = _rootNode->getChildByname("b5"); Vec2 pdPos = pd->convertToWorldspace(Vec2(0,0)); Vec2 dtPos = endPos - pdPos; _rotation = CC_radians_TO_degrees(Vec2::angle(dtPos,Vec2(1,1))); if (dtPos.y / dtPos.x > 1) _rotation = -_rotation; pd->setRotation(_rotation); scheduleOnce(schedule_selector(General::walk),0.05f);}总结
以上是内存溢出为你收集整理的工作总结2(随时修改)全部内容,希望文章能够帮你解决工作总结2(随时修改)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)