MaikKlein / unreal-rust

Rust integration for Unreal Engine 5
Apache License 2.0
2.11k stars 77 forks source link

Get rid of URustGameModeBase #5

Open MaikKlein opened 2 years ago

MaikKlein commented 2 years ago

Right now unreal-rust uses URustGameModeBase to hook up into the engine. GameModes in unreal are quite opinionated, maybe we can hook into the engine at an earlier time?

Create our own UWorld/GameInstance?

ameaninglessname commented 2 years ago

How about a component inside GameMode, or a UWorld/GameInstance subsystem?

MaikKlein commented 2 years ago

Thanks, I'll investigate but subsystems do sound like what I was looking for.