mirror of https://github.com/axmolengine/axmol.git
Merge https://github.com/cocos2d/cocos2d-x into iss781_cocosdenshion
This commit is contained in:
commit
837e5048d2
|
@ -835,6 +835,18 @@ void CCDirector::setContentScaleFactor(CGFloat scaleFactor)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CCNode* CCDirector::getNotificationNode()
|
||||||
|
{
|
||||||
|
return m_pNotificationNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CCDirector::setNotificationNode(CCNode *node)
|
||||||
|
{
|
||||||
|
CC_SAFE_RELEASE(m_pNotificationNode);
|
||||||
|
m_pNotificationNode = node;
|
||||||
|
CC_SAFE_RETAIN(m_pNotificationNode);
|
||||||
|
}
|
||||||
|
|
||||||
void CCDirector::applyOrientation(void)
|
void CCDirector::applyOrientation(void)
|
||||||
{
|
{
|
||||||
CCSize s = m_obWinSizeInPixels;
|
CCSize s = m_obWinSizeInPixels;
|
||||||
|
|
|
@ -35,7 +35,6 @@ THE SOFTWARE.
|
||||||
#include "CCGeometry.h"
|
#include "CCGeometry.h"
|
||||||
#include "CCEGLView.h"
|
#include "CCEGLView.h"
|
||||||
#include "CCGL.h"
|
#include "CCGL.h"
|
||||||
#include "CCNode.h"
|
|
||||||
|
|
||||||
namespace cocos2d {
|
namespace cocos2d {
|
||||||
|
|
||||||
|
@ -139,6 +138,7 @@ class CCLabelTTF;
|
||||||
class CCScene;
|
class CCScene;
|
||||||
class CCEGLView;
|
class CCEGLView;
|
||||||
class CCProjectionProtocol;
|
class CCProjectionProtocol;
|
||||||
|
class CCNode;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@brief Class that creates and handle the main Window and manages how
|
@brief Class that creates and handle the main Window and manages how
|
||||||
|
@ -216,14 +216,8 @@ public:
|
||||||
Useful to hook a notification object, like CCNotifications (http://github.com/manucorporat/CCNotifications)
|
Useful to hook a notification object, like CCNotifications (http://github.com/manucorporat/CCNotifications)
|
||||||
@since v0.99.5
|
@since v0.99.5
|
||||||
*/
|
*/
|
||||||
inline CCNode* getNotificationNode() { return m_pNotificationNode; }
|
CCNode* getNotificationNode();
|
||||||
inline void setNotificationNode(CCNode *node)
|
void setNotificationNode(CCNode *node);
|
||||||
{
|
|
||||||
CC_SAFE_RELEASE(m_pNotificationNode);
|
|
||||||
m_pNotificationNode = node;
|
|
||||||
CC_SAFE_RETAIN(m_pNotificationNode);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// window size
|
// window size
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue