mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-19 19:35:26 +00:00
Merge pull request #2133 from lukaspj/console-function-errors
Fix minor errors in console function definitions
This commit is contained in:
commit
1ef75b411c
5 changed files with 5 additions and 5 deletions
|
|
@ -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 "
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue