首页 > 编程知识 正文

如何修改鼠标案,win如何修改鼠标片

时间:2023-05-05 18:01:15 阅读:213119 作者:1979

win32的api实在太麻烦了,但是glView里面有个setCursorVisible的方法,可是借此实现同样的效果。

AppDelegate.cpp中:

glview = GLViewImpl::createWithFullScreen("123465");glview->setCursorVisible(false);director->setOpenGLView(glview);

自己的layer中:

//鼠标指针auto cursor = Sprite::create("cursor_nor.png");this->_cursor = Node::create();this->_cursor->addChild(cursor);this->addChild(this->_cursor,10000);auto listenerMouse = EventListenerMouse::create(); listenerMouse->onMouseMove = [&](cocos2d::EventMouse* event) { Point mouse = event->getLocation(); mouse.y = 1024 - mouse.y; this->_cursor->setPosition(Point(mouse.x+20,mouse.y-30)); }; listenerMouse->onMouseDown = [&](cocos2d::EventMouse* event) { this->_cursor->removeAllChildren(); auto cursor = Sprite::create("cursor_pre.png"); this->_cursor->addChild(cursor); }; listenerMouse->onMouseUp = [&](cocos2d::EventMouse* event) { this->_cursor->removeAllChildren(); auto cursor = Sprite::create("cursor_nor.png"); this->_cursor->addChild(cursor); }; this->_eventDispatcher->addEventListenerWithFixedPriority(listenerMouse, 1);

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。