sf :: RenderWindow什么都不呈现

时间:2016-05-14 07:18:15

标签: c++11 sfml

我基本上要做的是重写this lesson,将代码放入不同的文件夹并添加Box2D支持。在创建EGameRenderWindow类之前,一切都很好。现在clear没有呈现任何内容,但调用了RenderWindow方法。

我的代码lives here,我不知道我对IgniteRDD对象做错了什么。

1 个答案:

答案 0 :(得分:4)

clear清空屏幕以显示任何内容。

要在每个帧上正确渲染,您需要遵循以下模式:

window.clear(); // clear drawn objects from previous frame
// window.draw(...); all the things for this frame
window.display(); // actually show drawn frame on screen