Home   Help Search Login Register  

Author Topic: Cut Scene Logos? eg TV,  (Read 484 times)

0 Members and 1 Guest are viewing this topic.

Dave3D

  • Guest
Cut Scene Logos? eg TV,
« on: 26 Jul 2003, 22:34:42 »
I want to create a logo for my mission. I have a working of the .paa file picture i now just want to know how to place it on the middle of the screen at the start of the mission???

Thanks Dave :)

Offline Zombie

  • Members
  • *
  • Beware the night, the zombie walks among you
    • USI
Re:Cut Scene Logos? eg TV,
« Reply #1 on: 27 Jul 2003, 13:56:32 »
This is how I do it, put these commands in your description.ext:
class RscTitles
{
   titles[]={starttext1,starttext2};
   
   class starttext1
   {
        idd=-1;
        movingEnable=0;
        duration=17;
        fadein=2;
      fadeout=2;
        name="starttext1";
        controls[]={"Screen"};
        
        class Screen : RscStdText
        {
             style=48;
         text="your_paanamehere.paa";
         colorBackground[]={0,0,0,1};
         // across screen
             x=0;
         // up screen
         y=0;
         // pic width
         w=1;
         // pic height
         h=1;
         };
      };

BTW, credit for the above ggoes to rfox7, when you find something that works, shamelessly use it yourself!