Subsystems
Subsystem names in UnrealSharp
// This WorldSubsystem supports Tick aswell. UTickableWorldSubsystem doesn't exist in UnrealSharp.
UWorldSubsystem => UCSWorldSubsystem
UGameInstanceSubsystem => UCSGameInstanceSubsystem
UEngineSubsystem => UCSEngineSubsystem
ULocalPlayerSubsystem => UCSLocalPlayerSubsystemGetting Subsystems
GetWorldSubsystem<UMyWorldSubsystem>();
GetGameInstanceSubsystem<UMyGameInstanceSubsystem>();
GetLocalPlayerSubsystem<UMyLocalPlayerSubsystem>(OwningPlayerController);
GetEngineSubsystem<UMyEngineSubsystem>();World Subsystem Example
Last updated