Meteor-Unity
3
A C#-based SDK for connecting Unity to Meteor servers
|
Methods are remote functions that Meteor clients can invoke. Use Method.Call to call a method by name with the specified arguments. Returns a Method object. You must call More...
Methods are remote functions that Meteor clients can invoke. Use Method.Call to call a method by name with the specified arguments. Returns a Method object. You must call
yield return (Coroutine)instance;
inside an IEnumerator/Coroutine function to actually execute the call. You can also call ExecuteAsync
on the method instance to execute asynchronously outside of an IEnumerator. The name of the method to call corresponds to the key in your Meteor.Methods({key: function value()})
statement.
Examples: