Quote:
Originally Posted by Codein
I agree with this and I have done since it was last requested but was given this explanation in a round about way...
|
Maybe Stefan could just real-time translate child objects to work with an associative array syntax. Lua kind of does it as well:
NPC Code:
local arr = { x = 30, y = 40 };
print(arr["x"] .. ", " .. arr.y); -- "30, 40"