- Home /
Would 64 bit Unity engine elements work in a 32 bit OS machine?
I have several questions that fulfill my main question.
Would 32 bit plugins work on a 64 bit Unity installation?
If I were to export a game made with a 64 bit Unity engine, would the 64 bit plugins work on a 32 bit operating system machine?
Would making a game in the 64 bit Unity installation be 100 percent compatible with 32 bit OS machines?
Would 32 bit assets work on a 64 bit Unity installation and vice versa?
Is it better to work with a 32 bit Unity installation for full compatibility with 32 bit machines?
Thank you for reading!
Answer by tanoshimi · Jan 29, 2017 at 02:07 PM
What exactly do you mean by a "32 bit plugin"? Most Unity plugins are simply scripts, so you compile them from source when you build your game and they'll target the right architecture automatically. If you mean a pre-compiled native DLL, that will have to match the architecture of your target platform.
No.
Yes, assuming you set the target architecture as 32bit in the build settings.
Again, what do you mean by a "32 bit asset"? An asset can be a C# script, a shader, a model, a texture - none of these are architecture-specific and will work exactly the same on x86/x64.
No, see the answer to 3.) above.
I had previously assumed that working in Unity using a 64 bit system would have incompatibilities for 32 bit operating systems. I was wrong. Thank you for your answer!
Your answer
Follow this Question
Related Questions
32bit and 64 bit plugin environment 1 Answer
Any number that exceeds 32 bits crashes game 1 Answer
Problems with 64-bit systems 0 Answers
Can 32bit Unity editor make 64bit games? 0 Answers