Merge pull request #2133 from lukaspj/console-function-errors

Fix minor errors in console function definitions
This commit is contained in:
Areloch 2018-01-10 13:52:33 -06:00 committed by GitHub
commit 1ef75b411c
5 changed files with 5 additions and 5 deletions

View file

@ -1209,7 +1209,7 @@ DefineEngineMethod( Item, isRotating, bool, (),,
return object->isRotating();
}
DefineEngineMethod( Item, setCollisionTimeout, bool, (S32 ignoreColObj),(NULL),
DefineEngineMethod( Item, setCollisionTimeout, bool, (S32 ignoreColObj),,
"@brief Temporarily disable collisions against a specific ShapeBase object.\n\n"
"This is useful to prevent a player from immediately picking up an Item they have "

View file

@ -4405,7 +4405,7 @@ DefineEngineMethod( ShapeBase, getEyeTransform, TransformF, (),,
return mat;
}
DefineEngineMethod( ShapeBase, getLookAtPoint, const char*, ( F32 distance, S32 typeMask ), ( 2000, 0xFFFFFFFF ),
DefineEngineMethod( ShapeBase, getLookAtPoint, const char*, ( F32 distance, U32 typeMask ), ( 2000, 0xFFFFFFFF ),
"@brief Get the world position this object is looking at.\n\n"
"Casts a ray from the eye and returns information about what the ray hits.\n"