Difference between revisions of "Lua:PrecacheModel"
From Fortress Forever Wiki
Jump to navigationJump to search (New page: ==PrecacheModel(string)== All sounds and models use in Source must be ''precached'', or loaded into memory when the map loads. The engine will automatically precache assets that are found ...) |
(No difference)
|
Latest revision as of 20:17, 12 May 2009
PrecacheModel(string)
All sounds and models use in Source must be precached, or loaded into memory when the map loads. The engine will automatically precache assets that are found in Hammer, but it doesn't know about those referenced in lua. Trying to use sounds or models that were not precached will result in an error.
See Lua:Precache and info_ff_script:precache.
Example
function genericbackpack:precache( )
-- precache sounds
PrecacheSound("Item.Materialize")
PrecacheSound("HealthKit.Touch")
-- precache models
PrecacheModel("models/items/healthkit.mdl")
end