Icon Creation: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
[[Category:TODO]]
[[Category:TODO]]
[[Place Holder until complete]]


Short Breakdown:
The Steam games window supports an icon to be added in front of your mod. This icon is a .TGA (Targa) file consisting of:


You need a .TGA (Targa) file consisting of
* 16x16 pixels
* 24-Bit colors
* No RLE Compression


16x16 pixels
It can be placed anywhere in your mod's directory, but you will also need to add this parameter to the gameinfo.txt file to tell Steam where it is:
32-Bits
No Compression
An active alpha channel


It should be placed either directly in the resource folder or in a sub-directory.
  icon "path/to/icon"
 
You will also need to add this parameter to the gameinfo.txt file:
 
  <code>icon "path/to/icon"</code>

Revision as of 17:50, 21 June 2008


The Steam games window supports an icon to be added in front of your mod. This icon is a .TGA (Targa) file consisting of:

  • 16x16 pixels
  • 24-Bit colors
  • No RLE Compression

It can be placed anywhere in your mod's directory, but you will also need to add this parameter to the gameinfo.txt file to tell Steam where it is:

icon		"path/to/icon"