From 7997e4685dc8998e53f85cf0e7f90aac8f894193 Mon Sep 17 00:00:00 2001 From: Kyzentun Date: Wed, 30 Apr 2014 17:05:07 -0600 Subject: [PATCH] Updated docs for GetChild and GetChildren. --- Docs/Luadoc/LuaDocumentation.xml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Docs/Luadoc/LuaDocumentation.xml b/Docs/Luadoc/LuaDocumentation.xml index a7efd3f91f..56802a61b6 100644 --- a/Docs/Luadoc/LuaDocumentation.xml +++ b/Docs/Luadoc/LuaDocumentation.xml @@ -1289,10 +1289,15 @@ save yourself some time, copy this for undocumented things: Sets the field of view for the ActorFrame. - Returns the child with a name of sName. + Returns the child with a name of sName.
+ If there are multiple children with that name, returns an array of those children.
+ The table also acts as a pass through layer, function calls pass through to the last child of that name.
- Returns a table of all the children in the ActorFrame. + Returns a table of all the children in the ActorFrame.
+ The table is indexed by the names of the children.
+ If there are multiple children with the same name, the entry for that name is an array of those children.
+ The table also acts as a pass through layer, function calls pass through to the last child of that name.
Gets the ActorFrame's Draw function.