Free: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
In game design, an '''free''' entity/effect/function/whatever is one that does not have any impact on run-time performance at all.
In game design, an '''free''' entity/effect/function/whatever is one that does not have any impact on run-time performance at all.


This is only the case when an operation would be carried out anyway; where rather than ''adding'' data, your actions ''replace'' that which already exists. The best examples of this in Source are static, un-named [[Lighting|lights]].
This is only the case when an operation would be carried out anyway; where rather than ''adding'' data, your actions ''replace'' that which already exists. The best examples of this in Source are static, un-named [[Lighting|lights]] and [[Skybox_(2D)|2D skyboxes]].


==See also ==
==See also ==

Revision as of 16:23, 19 September 2011

In game design, an free entity/effect/function/whatever is one that does not have any impact on run-time performance at all.

This is only the case when an operation would be carried out anyway; where rather than adding data, your actions replace that which already exists. The best examples of this in Source are static, un-named lights and 2D skyboxes.

See also