Particles manifest.txt: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(→‎Example: fikst)
No edit summary
Line 1: Line 1:
= Overview =
A plain-text file in <code><game dir>/particles/</code> that lists all [[PCF]] files that a mod/game is to access. A PCF not listed in this file will not be loaded by the engine.
A txt File that list's all the Current particles files that a mod or Game will currently use. You must specify a particle in this list in order for it to be used in-game. Be sure to include this file Under the ''Particle Folder'' in your game directory.


= Example =
== Example ==


  particles_manifest
  particles_manifest
  {
  {
  "file" "particles/error.pcf"
  file particles/error.pcf
  "file" "particles/fire_01.pcf"
  file particles/fire_01.pcf
  "file" "particles/burning_fx.pcf"
  file particles/burning_fx.pcf
  "file" "particles/explosions.pcf"
  file particles/explosions.pcf
  "file" "particles/muzzleflashes.pcf"
  file particles/muzzleflashes.pcf
  "file" "particles/rockettrail.pcf"
  file particles/rockettrail.pcf
  "file" "particles/achievement.pcf"
  file particles/achievement.pcf
  }
  }
[[Category:Glossary]]

Revision as of 10:51, 3 July 2008

A plain-text file in <game dir>/particles/ that lists all PCF files that a mod/game is to access. A PCF not listed in this file will not be loaded by the engine.

Example

particles_manifest
{
	file	particles/error.pcf
	file	particles/fire_01.pcf
	file	particles/burning_fx.pcf
	file	particles/explosions.pcf
	file	particles/muzzleflashes.pcf
	file	particles/rockettrail.pcf
	file	particles/achievement.pcf
}