
Panda3d
文章平均质量分 73
TinyHum
本人unity QQ群:291633884
展开
-
Panda3d,MSVC下编译第一个窗口应用
官网上第一个窗口代码是这样的,#include "pandaFramework.h"#include "pandaSystem.h"int main(int argc, char *argv[]) { //open a new window framework PandaFramework framework; framework.open_framework(argc原创 2013-02-02 17:19:50 · 2508 阅读 · 0 评论 -
Panda3d编译
在官网上,先有这么一段Note that in the past, it was very difficult to build Panda3D. Things have improved. It is now fairly straightforward to download and compile panda. In particular, this is a sensibl原创 2013-02-01 19:21:49 · 2799 阅读 · 1 评论 -
Panda3d,使用MSVC debug
这一篇基于文章Panda3d,MSVC下编译第一个窗口应用。在第一个应用上,如果我们在main.cpp上下断点,然后按下F5启用debug的话,断点会被禁用,也就没有办法进行调试,因为整个工程的配置是按照Panda3d官网的要求,用了Release的开发模式(按照官网说法,Debug模式能编译过,但是运行的时候会因为不知名的原因crash)。以下是我配置的方式,用来激活断点:1、重原创 2013-02-05 14:01:28 · 1839 阅读 · 0 评论