OGRE中Any 类型的实现
摘要:【OGRE中Any类型的实现】 OGRE中实现了一个class Any,使用Any 可以在上下文中传递任意类型的数据。其本质实现原理就是通过指针。 Any 只包含一个成员变量,类型为 placeholder* 的 mContent。因为每个Any实例只包含一个统一类型为 placeholder的指针
阅读全文
OGRE Tutorials 1
摘要:【Guide to building OGRE】 1、Preparing the build environment You should now create a build directory for Ogre somewhere outside Ogre's sources. This is
阅读全文
OGRE
摘要:【编译 OGRE C#】 1、官网下载 OGRE 源码。 2、打开CMake,指定好OGRE目录,以及生成目标目录。 3、将 CMake/Modules 目录下的 FindSwig.cmake 中的 find_program(swig NAMES ) 加上本地 PATH。如: 注意 swig 版本选
阅读全文