Difference between revisions of "HowTo:Make Splash Screens"
(entered more information) |
|||
Line 1: | Line 1: | ||
{{attention}} | {{attention}} | ||
− | = Making Splash | + | = Making Your Splash Screen = |
− | The following information | + | The following information explains how to make the splash screens that appear while Vega Strike is loading. These screens are also used occasionally within the base backgrounds. |
− | + | == Create the Necessary Files == | |
− | + | You will need to create the following files for your splash screen: | |
− | == | ||
=== Picture === | === Picture === | ||
− | Size - 1024 x 1024 pixels | + | Create your picture in any image editor. The only requirements are: |
+ | * Picture Size - 1024 x 1024 pixels (or larger, but always power of 2); | ||
+ | * Format - .jpg or .png; | ||
+ | * Name - splash_(name).jpg/.png. | ||
=== Animation File === | === Animation File === | ||
− | + | Using a text editor, create an .ani file (name format is <code>splash_(name).ani</code>) with the following entries: | |
.3 .3 | .3 .3 | ||
1 1000 | 1 1000 | ||
− | splash_(name). | + | (picture name) |
+ | |||
+ | === Animation Directory === | ||
+ | * Under the ..\animations subdirectory of Vega Strike create a new subdirectory; | ||
+ | * Name the new subdirectory using the same name as the animation file above <code>splash_(name).ani</code>; | ||
+ | * Place the .ani file and picture file(s) created earlier into the directory. | ||
− | + | See your ..\animations\ subdirectory for examples. | |
− | == | + | == Edit <code>vegastrike.config</code> == |
− | + | Edit your <code>vegastrike.config</code> file in any text editor. | |
− | * | + | * Search for the <graphics> section; |
+ | * Find the line <code> <var name="splash_screen" value="</code>; | ||
+ | * Insert the name of your new splash directory into the list already there. | ||
− | + | = How it Will Work = | |
+ | Vega Strike will randomly select a splash screen animation from the list in <code>vegastrike.config</code> while loading and display it on your screen until play commences. | ||
− | == | + | == See Also == |
[http://vegastrike.sourceforge.net/forums/viewtopic.php?t=838 Forum Link] | [http://vegastrike.sourceforge.net/forums/viewtopic.php?t=838 Forum Link] |
Revision as of 01:24, 30 March 2005
Contents
Making Your Splash Screen
The following information explains how to make the splash screens that appear while Vega Strike is loading. These screens are also used occasionally within the base backgrounds.
Create the Necessary Files
You will need to create the following files for your splash screen:
Picture
Create your picture in any image editor. The only requirements are:
- Picture Size - 1024 x 1024 pixels (or larger, but always power of 2);
- Format - .jpg or .png;
- Name - splash_(name).jpg/.png.
Animation File
Using a text editor, create an .ani file (name format is splash_(name).ani
) with the following entries:
.3 .3 1 1000 (picture name)
Animation Directory
- Under the ..\animations subdirectory of Vega Strike create a new subdirectory;
- Name the new subdirectory using the same name as the animation file above
splash_(name).ani
; - Place the .ani file and picture file(s) created earlier into the directory.
See your ..\animations\ subdirectory for examples.
Edit vegastrike.config
Edit your vegastrike.config
file in any text editor.
- Search for the <graphics> section;
- Find the line
<var name="splash_screen" value="
; - Insert the name of your new splash directory into the list already there.
How it Will Work
Vega Strike will randomly select a splash screen animation from the list in vegastrike.config
while loading and display it on your screen until play commences.