Guide 21
Lithium.Services.IComponentServiceEvent
Scene event contract notified after a component service is mounted.
This page is generated from the public C# symbols in src/game/sandbox/Code.
IComponentServiceEvent
Status: Stable
Signature
C#
public interface IComponentServiceEvent : ISceneEvent<IComponentServiceEvent>Description
Scene event contract notified after a component service is mounted.
Example
C#
IComponentServiceEvent? contract = null;Members
OnServiceMounted
Status: Stable
Signature
C#
void OnServiceMounted(ComponentService service)Description
Handles a component service that has just been mounted into the scene.
Example
C#
var result = instance.OnServiceMounted(service);