Expensive: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Kestrelguy (talk | contribs) m (added language bar.) |
||
Line 1: | Line 1: | ||
In game design, an | {{lang|Expensive}}[[Category:Glossary]] | ||
In game design, an [[expensive]] entity/effect/function/whatever is one that takes an unusually long time to process at runtime. As an example, in Source, expensive-to-draw entities include [[Adding Water|water]] and [[lighting|dynamic light sources]]. | |||
Care must be taken when implementing expensive concepts, and if possible they should be avoided or | Care must be taken when implementing expensive concepts, and if possible, they should be avoided or optimized. On the other hand, if you have an area that is otherwise very cheap to draw, you have enough leeway to add something more expensive. | ||
==See | ==See Also == | ||
*[[Budget]] | *[[Budget]] | ||
*[[Cheap]] | *[[Cheap]] | ||
*[[Free]] | *[[Free]] | ||
Revision as of 15:55, 19 May 2022
In game design, an expensive entity/effect/function/whatever is one that takes an unusually long time to process at runtime. As an example, in Source, expensive-to-draw entities include water and dynamic light sources.
Care must be taken when implementing expensive concepts, and if possible, they should be avoided or optimized. On the other hand, if you have an area that is otherwise very cheap to draw, you have enough leeway to add something more expensive.