Cleanup of the elements exposed to the console

This commit is contained in:
Lukas Joergensen 2017-12-10 18:57:46 +01:00
parent 74b7e4cd89
commit 3bc46a8376
8 changed files with 12 additions and 12 deletions

View file

@ -848,13 +848,13 @@ void afxChoreographer::unregisterParticlePool(afxParticlePool* pool)
//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~~//
DefineEngineMethod( afxChoreographer, setRanking, void, ( unsigned int ranking ),,
DefineEngineMethod( afxChoreographer, setRanking, void, ( U32 ranking ),,
"Set a ranking value (0-255) for the choreographer.\n" )
{
object->setRanking((U8)ranking);
}
DefineEngineMethod( afxChoreographer, setLevelOfDetail, void, ( unsigned int lod ),,
DefineEngineMethod( afxChoreographer, setLevelOfDetail, void, ( U32 lod ),,
"Set a level-of-detail value (0-255) for the choreographer.\n" )
{
object->setLevelOfDetail((U8)lod);