TrueVision3D:Common Problems

From GPWiki

(Redirected from TrueVision3D:CommonProblems)

Files:GUITutorial_warn.gif The Game Programming Wiki has moved! Files:GUITutorial_warn.gif

The wiki is now hosted by GameDev.NET at wiki.gamedev.net. All gpwiki.org content has been moved to the new server.

However, the GPWiki forums are still active! Come say hello.

Back to TrueVision3D

Initialization Problems

1) Input/Keys/Mouse do not work

This is usually because Init(True, True) was not called after creating this object. This Enables the inputfactory.

2) VSync is not working

This problem is commonly because of not calling it before init3d fullscreen/windowed is called. The following functions (and possibly others) need to be called before initializing the window:

  • TVEngine.SetDebugFile
  • TVEngine.SetVSync
  • TVEngine.SetAntialiasing

Back to TrueVision3D