lordvcs
lordvcs

Reputation: 2952

Is it possible to embed a game created with Unreal Engine into a flutter mobile application?

Is it possible to embed a game created using the unreal engine in a flutter application, so that once I open the flutter application, I can navigate to a particular page to start the game and also communicate between flutter app and the Unreal Engine game?

I found that its possible to embed unity in flutter https://pub.dev/packages/flutter_unity_widget. This is what I am looking for but with the Unreal Engine. Is it possible to do the same with the Unreal Engine?

Upvotes: 17

Views: 7147

Answers (2)

Antonio Miñano
Antonio Miñano

Reputation: 1

yes, you can create an AAR library with obb, unreal engine libraries and unreal java autogenerated code for android and attach in flutter with Platform Channels

Upvotes: -1

Daren Palmer
Daren Palmer

Reputation: 152

I hate to be the bearer of bad news but...

...From the research I've done, no it isn't possible. The recommended way of doing game dev in Flutter is by using the Flame game engine. Unfortunately, the tutorial on the repo seems to be a bit outdated but here's one that should be better. However, this seems like a complex but potential solution to your problem, here's the tutorial that the repo is based on.

To be clear, there is no native way to run UE games in Flutter

Upvotes: 1

Related Questions