As good practice, I declare my functions so that they can be in any order within my LUA code.
Like this:
[blockcode]
local MyFunction
– many many lines of LUA code
function MyFunction()
print (“my function”)
end
[/blockcode]
In 1.6, if I double click MyFunction, it focuses at the MyFunction declaration [local MyFunction], not the actual function code [function MyFunction()]. Even if I select to go to source.
This behavior is undesirable and different than it was in 1.3. [import]uid: 13784 topic_id: 28775 reply_id: 328775[/import]