Built-In Styles
The following internal stylesheet is always loaded by RetroCapture:
/* load display style classes */
.paint_class gradient com.retrologic.cap.GradientPaintStyle
.paint_class grid com.retrologic.cap.GridPaintStyle
.warp_class twist com.retrologic.cap.TwistWarpStyle
.glyph_class script com.retrologic.cap.ScriptGlyphStyle
/* create a variant of this paint style */
.paint grey_gradient extends gradient {
color = C0C0C0;
background = 404040;
}
/* define the default 'lite' image style */
.image lite {
width = 140;
height = 80;
length = 6;
paint = grey_gradient;
warp =
twist { transparency = 0.6; glyph = script; xoffset = -8; yoffset = -8 },
twist { transparency = 0.3; glyph = script }; /* inline variants */
}
.image gradientfade {
fade = true;
width = 140;
height = 80;
length = 6;
paint = grey_gradient;
warp =
twist { transparency = 0.6; glyph = script; xoffset = -8; yoffset = -8 },
twist { transparency = 0.3; glyph = script }; /* inline variants */
}
.image gridfade {
fade = true;
width = 140;
height = 80;
length = 6;
paint = grid { color = 555555; random = true };
warp = twist { transparency = 0.3; glyph = script };
}
|