Sprite: Difference between revisions
Jump to navigation
Jump to search
(→Creation: Transparent sprites!) |
(→Creation: Size restriction not true, however, Hammer wasn't displaying the sprite properly until I reloaded the program.) |
||
Line 33: | Line 33: | ||
** the sprite exists only briefly, is NotSolid, ... player cannot inspect it too closely. | ** the sprite exists only briefly, is NotSolid, ... player cannot inspect it too closely. | ||
* [[SPR]] file format... | * [[SPR]] file format... | ||
* If using a texture that is intended to be transparent, | * If using a texture that is intended to be transparent, be sure to close Hammer and restart it before compiling. Hammer likes to only half-load new sprite textures and won't display them as transparent. | ||
* | * Sprite textures may also have any shade of gray (red, green, and blue values identical) interpreted as being transparent. Have not extensively tested, but it has worked in at least two cases (light_glow01 and a custom one). | ||
* VTF: [[Vtex compile parameters]] "clamps", "clampt". note: [[env_sprite_oriented]] #angles ... | * VTF: [[Vtex compile parameters]] "clamps", "clampt". note: [[env_sprite_oriented]] #angles ... | ||
* VMT: [[Shaders_in_Sprites\]] | * VMT: [[Shaders_in_Sprites\]] | ||
[[Category:Level Design]] | [[Category:Level Design]] |
Revision as of 08:49, 6 September 2010
In source, a Sprite is a rendered world object with some very special geometrickery. The sprite itself is a (static or animated) 2D image that looks 3D when viewed Normally (ie perpendicular to its surface). The trick is to make sure the player always views the sprite normally; which usually means rotating the sprite about its origin so it is always facing the Player. Obviously in multiplayer this rotation in World would not work, so the sprite is rotated only in the Player View.
Although their usefulness is severely limited, sprites are significantly "cheaper" to render than models or brushwork, and can also achieve convincing effects that would be impractical to model in 3D.
- Lighting: Sprites cannot cast or receive any kind of shadows, nor reflect cubemaps.
- Physics: Sprites cannot be Solid to anything.
Sprite entities
Placement
Todo: ... general usage guidelines ... configuring sprite entities in Hammer.
- See Render Modes.
- See Attachments and Movement hierarchy.
Creation
Todo: ...guidelines/checklist for designing & implementing sprites.
- Design guidelines.
- the image inside the sprite already depicts a three dimensional object;
- the animation is constantly changing or depicts rotation;
- the depicted object has a similar appearance from many common viewing angles (such as something spherical);
- the viewer accepts that the depicted object only has one perspective (such as small plants or leaves).
- the sprite exists only briefly, is NotSolid, ... player cannot inspect it too closely.
- SPR file format...
- If using a texture that is intended to be transparent, be sure to close Hammer and restart it before compiling. Hammer likes to only half-load new sprite textures and won't display them as transparent.
- Sprite textures may also have any shade of gray (red, green, and blue values identical) interpreted as being transparent. Have not extensively tested, but it has worked in at least two cases (light_glow01 and a custom one).
- VTF: Vtex compile parameters "clamps", "clampt". note: env_sprite_oriented #angles ...
- VMT: Shaders_in_Sprites\