IChat interface
Plugin-facing chat service. MessageReceived fires on the main (Unity) thread; Send is fire-and-forget — failures are logged, never thrown.
public interface IChatMembers
Section titled “Members”| name | description |
|---|---|
| RecentMessages { get; } | Most recent messages received since the last login (capped by framework; exact cap may vary). |
| event MessageReceived | Fires on the Unity main thread each time a new chat message is received. |
| Send(…) | Sends text to the specified target channel. Fire-and-forget; failures are logged, never thrown. |
See Also
Section titled “See Also”- namespace Stellar.Abstractions.Services