Skip to content

Commit cd0cf2c

Browse files
committed
Added Lua.GetObject to simplify extensions
1 parent 393d1ab commit cd0cf2c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Core/LuaInterface/Lua.cs

+8
Original file line numberDiff line numberDiff line change
@@ -592,6 +592,14 @@ internal object getObject(string[] remainingPath)
592592
return returnValue;
593593
}
594594

595+
/*
596+
* Gets an any type global variable
597+
*/
598+
public object GetObject(string fullPath)
599+
{
600+
return this[fullPath];
601+
}
602+
595603
/*
596604
* Gets a numeric global variable
597605
*/

0 commit comments

Comments
 (0)