Expensive: Difference between revisions
Jump to navigation
Jump to search
Thunder4ik (talk | contribs) m (→top: Unicodifying, added stub tag) |
(badly moved multipage) |
||
Line 1: | Line 1: | ||
{{ | {{LanguageBar}} | ||
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 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 also == | |||
*[[Budget]] | |||
*[[Cheap]] | |||
*[[Free]] | |||
[[Category:Glossary]] | [[Category:Glossary]] |
Revision as of 06:09, 14 July 2024
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.
See also