首页 > 代码库 > cocos3 射线
cocos3 射线
auto listener=EventListenerTouchOneByOne::create(); listener->onTouchBegan=[this,visibleSize](Touch* touch,Event* event){ auto sp=Sprite::create("ray.png"); auto v=150; auto s=touch->getLocation(); auto length=sqrt(s.x*s.x+s.y*s.y); auto action=MoveBy::create(2,Point(1000*s.x/length,1000*s.y/length)); sp->runAction(action); sp->setRotation(-CC_RADIANS_TO_DEGREES(asin(s.y/length))); sp->setPosition(0,0); addChild(sp); return false; }; Director::getInstance()->getEventDispatcher()->addEventListenerWithSceneGraphPriority(listener,this);
cocos3 射线
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。