Exemplo n.º 1
0
void CC3Light::initWithName( const std::string& aName )
{
	initWithName( aName, nextLightIndex() );
}
Exemplo n.º 2
0
void CC3Billboard::initWithName( const std::string& aName, CCNode* a2DNode )
{
	initWithName( aName );
	setBillboard( a2DNode );
}
Exemplo n.º 3
0
void CC3Light::initWithLightIndex( GLuint ltIndx )
{
	return initWithName( "", ltIndx );
}
Exemplo n.º 4
0
	bool CCAnimation::initWithName(const char *pszName, CCMutableArray<CCSpriteFrame*> *pFrames)
	{
		return initWithName(pszName, 0, pFrames);
	}
Exemplo n.º 5
0
	bool CCAnimation::initWithName(const char *pszName, float fDelay)
	{
		return initWithName(pszName, fDelay, NULL);
	}
Exemplo n.º 6
0
	bool CCAnimation::initWithName(const char *pszName)
	{
		return initWithName(pszName, 0, NULL);
	}
Exemplo n.º 7
0
void CC3EnvironmentNode::initWithTexture( CC3Texture* texture )
{
	return initWithName( texture->getName(), texture );
}