sesmajster
sesmajster

Reputation: 762

Unity3D game on raspberry pi 3 b+

I want to make a simple 2D game in Unity3D and run it on my raspberry pi 3 b+. I read some topics where they achieved this using android emulator on rbPi but all info is outdated (2016). I'm wondering what are my options at this point? Can I run my unity project on Raspbian? Do I have to use emulators? Can I run it on Windows 10 IoT?

I'd like to use it on Raspbian if there is any chance.

The performance should not be a problem as it is a simple 2D game with few buttons and data.

Upvotes: 1

Views: 2103

Answers (1)

zambari
zambari

Reputation: 5035

Unfortunately, there is no way to run Unity3D engine on the raspberry using raspian, as the linux builds only support x86/x64 architecture, and do not support ARM.

You can in theory install Android on your raspberry and run it that way (its not an emulation, you need an actual android install) but its convoluted quite 'hacky'

Upvotes: 2

Related Questions