I have loaded a collection proxy but I receive no input on the scripts inside the proxy even if I have input focus on the loader object. I also receive no input on the loader object.
This is the script that loads the proxy:
function init(self)
msg.post(".", "acquire_input_focus")
msg.post("/game#level1", "load")
end
function on_message(self, message_id, message, sender)
if message_id == hash("proxy_loaded") then
msg.post(sender, "enable")
end
end
And this is a script on an object in the proxy:
function init(self)
msg.post(".", "acquire_input_focus")
end