class MAGES::Recorder::Utilities::UserAvatarDelegator::Evt¶
Overview¶
Represents a change regarding user’s connection/disconnection. More…
class Evt { public: // properties EvtType Type; int Actor; string Name; GameObject GameObject; // methods Evt(EvtType typ, int actor, GameObject go, string name = null); };
Detailed Documentation¶
Represents a change regarding user’s connection/disconnection.
Properties¶
EvtType Type
Gets the event type.
int Actor
Gets the actor of the event.
string Name
Gets the name, if available.
GameObject GameObject
Gets the associated gameobject of the event.
Methods¶
Evt(EvtType typ, int actor, GameObject go, string name = null)
Initializes a new instance of the Evt class.
Parameters:
typ |
The type. |
actor |
The actor. |
go |
The gameobject. |
name |
The name. |