Cocos2d-3.x_创建3D精灵,播放模型动画

#ifndef __HELLOWORLD_SCENE_H__
#define __HELLOWORLD_SCENE_H__

#include "cocos2d.h"
#include "Ball.h"

USING_NS_CC;


class HelloWorld : public cocos2d::Layer
{
public:
    static cocos2d::Scene* createScene();

    virtual bool init();

    CREATE_FUNC(HelloWorld);

private:

};

#endif // __HELLOWORLD_SCENE_H__
#include "HelloWorldScene.h"

Scene* HelloWorld::createScene()
{
    auto scene = Scene::create();
    auto layer = HelloWorld::create();
    scene->addChild(layer);

    return scene;
}

bool HelloWorld::init()
{
    if ( !Layer::init() )
    {
        return false;
    }
    
	Size visibleSize = Director::getInstance()->getVisibleSize();
    Vec2 origin = Director::getInstance()->getVisibleOrigin();

	// 根据模型和纹理生成3D精灵
	auto sprite = Sprite3D::create("tortoise.c3b");
	sprite->setPosition(visibleSize / 2.0);
	sprite->setScale(0.3f);
	this->addChild(sprite);

	// 给3D精灵自定义动作:在1秒钟之内,环绕x轴和y轴旋转45度,z轴不动
	//sprite->runAction(RepeatForever::create(RotateBy::create(1.0f,Vec3(45,45,0))));

	// 播放模型动画
	auto animation = Animation3D::create("tortoise.c3b");
	auto animate = Animate3D::create(animation);
	// 播放一次模型动画
	//sprite->runAction(animate);
	// 永远播放模型动画
	sprite->runAction(RepeatForever::create(animate));

    return true;
}

相关文章

操作步骤 1、创建cocos2d-x工程 2、新建 Scene1.cpp Scene1.h Scene1.h代码 #ifndef __SCENE1_H__#defi...
开发环境:OS(WINDOWS 8.1 X64 企业版) cocos2d-x 2.2.1 vs2010 想给vs安装上cocos的模版,执行Install...
把创建项目做成一个批处理,当创建项目时可以省时省力很多。 操作步骤 1、在 E:cocos2d-x-2.2.1toolspr...
https://www.cnblogs.com/JiaoQing/p/3906780.html 四个响应函数 1 EventListenerPhysicsContact* evC...
转载于 http://www.cnblogs.com/kenkofox/p/3926797.html 熟悉js的dom事件或者flash事件的,基本都能立...
ScrollView(滚动容器)加载大量item时会导致游戏界面的卡顿,严重时整个界面会出现卡死的情况。最近项...