Unity: Difference between revisions

From Game Making Tools Wiki
(Link to Guide:Unity_3D#Exporting)
(More notes on the linux version)
Line 15: Line 15:
* [https://aur.archlinux.org/packages/unity-editor/ unity-editor] and [https://aur.archlinux.org/packages/unity-editor-beta/ unity-editor-beta] in the Arch User Repository.
* [https://aur.archlinux.org/packages/unity-editor/ unity-editor] and [https://aur.archlinux.org/packages/unity-editor-beta/ unity-editor-beta] in the Arch User Repository.


Note that when installing through the AUR I had to use a different /tmp folder as it wasn't large enough:
Note that when installing through the AUR I had to use a different temporary folder as it wasn't large enough:


<pre>yaourt -S PACKAGENAME --tmp /home/USERNAME/tmp/yaourt</pre>
<pre>yaourt -S unity-editor --tmp /home/USERNAME/tmp</pre>
 
I also did it on a drive I shared with Windows once (FAT32) but then I had to set a bunch of permissions after it was installed which was a bit annoying! You need quite a bit of free space to do all the downloading and building, maybe ~10GB+


==Extending==
==Extending==

Revision as of 06:19, 22 November 2016

Unity 3D
Release date: Current
Made by: Unity Technologies
Runs on: Linux
Mac OS
Windows
Exports to: Browser
Linux
Mac OS
Windows


Unity 3D is a popular, free game making tool. There's lots of support availible online, and you can do quite a bit without even having to bother with JavaScript or C# :) It's real easy to just plonk some primitives or free models in and be able to walk round and have things effected by physics :)

Linux

There is actually a GNU/Linux version of Unity 3D available, but it can be a little hidden! They only officially support Ubuntu, but . You also have the option of using it in WINE (via Play On WINE is easier).

Note that when installing through the AUR I had to use a different temporary folder as it wasn't large enough:

yaourt -S unity-editor --tmp /home/USERNAME/tmp

I also did it on a drive I shared with Windows once (FAT32) but then I had to set a bunch of permissions after it was installed which was a bit annoying! You need quite a bit of free space to do all the downloading and building, maybe ~10GB+

Extending

Add-ons and things for adding more features to Unity 3D

Asset store things

Interface add-ons

See Also

Export Options

More: Exporting in the guides section.

Links

  • Unity 3D in the guides section: help with scripting, finding things in the UI, etc.