mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-28 02:53:49 +00:00
Fixed type inference for nulls in console functions
This commit is contained in:
parent
0ab089468f
commit
3f6c269f6a
17 changed files with 29 additions and 22 deletions
|
|
@ -1602,7 +1602,7 @@ DefineEngineFunction( containerSearchCurrRadiusDist, F32, ( bool useClientContai
|
|||
|
||||
//TODO: make RayInfo an API type
|
||||
DefineEngineFunction( containerRayCast, const char*,
|
||||
( Point3F start, Point3F end, U32 mask, SceneObject *pExempt, bool useClientContainer ), ( NULL, false ),
|
||||
( Point3F start, Point3F end, U32 mask, SceneObject *pExempt, bool useClientContainer ), ( nullAsType<SceneObject*>(), false ),
|
||||
"@brief Cast a ray from start to end, checking for collision against items matching mask.\n\n"
|
||||
|
||||
"If pExempt is specified, then it is temporarily excluded from collision checks (For "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue