Skinning How To/Skin the viewer

From Second Life Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Introduction

This is a basic guide to skinning the Second Life viewer. Generally, creating a new skin for the viewer typically involves two steps:

  1. Recoloring the texture files (buttons, icons, toolbar, etc).
  2. Recoloring the viewer elements set in colors.xml (text color, window color, etc).

Recoloring

Texture files

  • The viewer's texture files are located in \SecondLife\skins\[SKIN]\textures (where [SKIN] is the particular viewer skin).

Almost all the files you need to edit are in the Targa (.tga) format and must be opened with an image editor to be changed. These are named after their functions:

  • icn_* files are icons.
  • ff_* files related to the friends list.
  • inv_folder* files are inventory folders.
  • inv_item* files are inventory items.

Etc.

  • NOTE: This folder also contains files in the Jpeg2000 (.j2c) format. These are the OI HUD and miscellaneous viewer files. You will never need to edit them, except if you want to change the login screen (startup_logo.j2c). To do so, you need to have a program that can save Jpeg2000 Codestream files (any program that can write .j2c or .j2k files; the two extensions are interchangeable).

To recolor an image:

  1. Open it in your image editor.
  2. Apply a color mask.
  3. Save it, overwriting the original image.

This process is unique to the program you're using, but Yukiko Omegamu has provided a video tutorial for Photoshop.

Viewer colors

All non-texture colors in the viewer are set in the xml file colors_base.xml. This file is located in \SecondLife\skins\[SKIN]\.

Colors are set using the following format:

value="[RED],[GREEN],[BUE],[OPACITY]"

...where R,G,B,Opacity are each in the range 0-255. For opacity, 128 is half opacity (ergo, half transparent).

(Note: Opacity is also sometimes called the Alpha value. See this tutorial for a more detailed explanation of RGB).

Editing colors.xml

Editing colors_base.xml is not recommended, as any typo will cause the viewer to crash on startup. Instead, edits should be made in colors.xml, which can be found in the same folder. There are two ways to do so:

  1. Copy the entries you want to edit from colors_base.xml into colors.xml, then change them there.
  2. Use the fully commented colors.xml file on the wiki.


Editing other stuff