
《Ogre 3D 1.7 Beginner's Guide》
seamanj
这个作者很懒,什么都没留下…
展开
-
第二章 OGRE中的平移与旋转
#include "ExampleApplication.h"class Example1:public ExampleApplication{public: void createScene() { //1 begin/* Ogre::Entity* ent=mSceneMgr->createEntity("MyEntity","Sinbad.mesh"); mScene原创 2013-04-02 00:26:11 · 1748 阅读 · 0 评论 -
第十章 OGRE中的粒子系统
#include #include "ExampleApplication.h"class Example25FrameListener:public Ogre::FrameListener{public: Example25FrameListener(Ogre::SceneNode* node,RenderWindow* win,Ogre::Camera* cam,Ogre::En原创 2013-04-12 21:34:47 · 1247 阅读 · 0 评论 -
第八章 OGRE中合成器(也就是传说中的image-based rendering)以及如何在OGRE中对着色器的uniform变量传值
第1个例子main.cpp文件#include "ExampleApplication.h"//8 beginclass CompositorListener1:public Ogre::CompositorInstance::Listener{public: //9 begin CompositorListener1() { number=25.0f; }原创 2013-04-12 00:00:07 · 1502 阅读 · 0 评论 -
第七章 OGRE中的材质以及shader
#include "ExampleApplication.h"class Example:public ExampleApplication{ void createScene() { //1 begin //Ogre::ManualObject* manual=mSceneMgr->createManualObject("Quad"); //1.1 begin //ma原创 2013-04-05 01:24:19 · 1679 阅读 · 0 评论 -
第六章 OGRE中场景管理器、资源加载、manualObject的使用
#include "ExampleApplication.h"class Example41:public ExampleApplication{public: void createScene() { //1 begin //std::coutgetTypeName()getName()<<std::endl; //1 end //One important task原创 2013-04-03 23:22:05 · 1458 阅读 · 0 评论 -
第五章 OGRE中的动画及打印出所有动作的名字
#include "ExampleApplication.h"class Example25FrameListener:public Ogre::FrameListener{public: Example25FrameListener(Ogre::SceneNode* node,RenderWindow* win,Ogre::Camera* cam/*1 begin*/,Ogre::Ent原创 2013-04-03 20:35:35 · 978 阅读 · 0 评论 -
第三章 OGRE中的光照,阴影,摄像机和视口
#include "ExampleApplication.h"class Example3:public ExampleApplication{public: void createScene() { /* //1 begin Ogre::Plane plane(Vector3::UNIT_Y,-10); Ogre::MeshManager::getSingleton()原创 2013-04-02 21:48:18 · 1356 阅读 · 0 评论 -
第四章 OGRE中的帧监听、鼠标键盘控制、绘画模式、计时器
#include "ExampleApplication.h"//2 beginclass Example25FrameListener:public Ogre::FrameListener{public: //2.2 begin/* Example25FrameListener(Ogre::SceneNode* node) { _node=node; }*/ //2.原创 2013-04-03 00:21:23 · 1481 阅读 · 0 评论 -
第一章 第一个OGRE应用程序
#include "ExampleApplication.h"class Example1:public ExampleApplication{public: void createScene() { //1 begin Ogre::Entity* ent=mSceneMgr->createEntity("MyEntity","Sinbad.mesh"); mSceneMgr-原创 2013-04-01 19:58:50 · 1082 阅读 · 0 评论 -
第九章 OGRE中的整个流程
第1个例子://1 begin#include "Ogre.h"int main(){ Ogre::Root* root=new Ogre::Root("plugins_d.cfg"); //The default value is plugins.cfg,which is true for the release folder of the Ogre 3D SDK,but ou原创 2013-04-12 03:32:22 · 1137 阅读 · 0 评论