Mass: Difference between revisions
From The DarkMod Wiki
Jump to navigationJump to search
add |
added note about 0 masses |
||
Line 3: | Line 3: | ||
The ''mass'' spawnarg sets the mass of an entity. This is only useful for moveables, e.g. not necessary for static entities. | The ''mass'' spawnarg sets the mass of an entity. This is only useful for moveables, e.g. not necessary for static entities. | ||
The mass | The mass is specified in '''kilograms''' and should be roughly the real mass of such an item. Realistic masses are the foundation of believable physics in game. | ||
Note: you cannot enter zero mass values, the code will not accept this. The reason is that the inverse of the mass is needed for physics calculations, and zero masses would result in divisions by zero. | |||
== Examples == | == Examples == |
Revision as of 07:00, 16 June 2008
Description
The mass spawnarg sets the mass of an entity. This is only useful for moveables, e.g. not necessary for static entities.
The mass is specified in kilograms and should be roughly the real mass of such an item. Realistic masses are the foundation of believable physics in game.
Note: you cannot enter zero mass values, the code will not accept this. The reason is that the inverse of the mass is needed for physics calculations, and zero masses would result in divisions by zero.
Examples
For instance, a carrot would have
"mass" "0.1"
to denote it weights 100 gr.