Ashasekayi (Talk | contribs) |
|||
Line 3: | Line 3: | ||
==Fields== | ==Fields== | ||
{{ScriptFunction|string|Key|{ get; }|The key this message was sent with}} | {{ScriptFunction|string|Key|{ get; }|The key this message was sent with}} | ||
− | {{ScriptFunction|IDictionary(object,object)|Message|{ get; }|The message body which was sent}} | + | {{ScriptFunction|IDictionary(object,object)|Message|{ get; }|The message body which was sent|5=<i>-- This function gets used by other objects that are subscribed to the network</i><br> |
+ | gotAMessage = function(arguments)<br> | ||
+ | textValue.UIText.Text = "Got a message with the argument " .. arguments.Message["someArgument"];<br> | ||
+ | end<br><br> | ||
+ | -- View SubscribeToNetwork in [[Scripting/SNetwork]] for full script example.}} | ||
+ | |||
{{Scripting Navbox}} | {{Scripting Navbox}} |
The SNetworkMessage class contains a network message sent by another script
The key this message was sent with
The message body which was sent
gotAMessage = function(arguments)
textValue.UIText.Text = "Got a message with the argument " .. arguments.Message["someArgument"];
end
|