Game Development Community

Movies in TGB

by Kevin James · in Torque Game Builder · 03/20/2007 (6:36 pm) · 3 replies

Is there any way to import movies into TGB? I've been using TGB for a while now and I realize there would probably be a "Movie" tab in the toolbar if TGB had such functionality, but I want to be sure before I possibly invest a lot of time into video editing programs.

Thank ya!

About the author

Computer security, digital forensics, and platform jumper enthusiast. shells.myw3b.net/~syreal/


#1
03/20/2007 (6:50 pm)
Oh jees. Just saw the "Cinematics" thread on the first page. That's great about "Theora" but I don't have enough time to learn, download or whatever I need to do to get it working.
#2
03/20/2007 (9:51 pm)
Check out this link for info.
#3
03/21/2007 (10:00 am)
I can hear the audio, but the video doesn't show up:

function startGame(%level)
{
   Canvas.setContent(mainScreenGui);
   Canvas.setCursor(DefaultCursor);    
//
   moveMap.push();
//
   if( isFile( %level ) || isFile( %level @ ".dso"))
      sceneWindow2D.loadLevel(%level);
//
   new GuiTheoraCtrl(MyVideo) {
       profile = "GuiDefaultProfile";
       horizSizing = "relative";
       vertSizing = "relative";
       position = "0 0";
       extent = "320 240";
       minExtent = "8 2";
       visible = "1";
       done = "0";
       stopOnSleep = "1";
       backgroundColor = "0 0 0 255";
    };
//
    MyVideo.setFile("BulletText/data/video/test.ogg");

}