Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Asset Forge

Create your own 3D models and 2D sprites! · By Kenney

Asset Forge basic Linux setup Sticky

A topic by ThGaloot created Oct 09, 2020 Views: 664 Replies: 8
Viewing posts 1 to 5

Summary

Hi, I thought I would take the time an write up a quick guide on setting up Asset Forge on Linux so that there is a desktop entry.

Install Asset Forge

  1. Download Asset Forge.
  2. Extract Asset Forge form zip file.
  3. Place Asset Forge directory in /opt directory in the root.

Here is a command snippet for unzipping into /opt/ directory (correct file name if needed):

`sudo unzip /{DIRECTORY_TO_ASSET_FORGE_ZIP}/Asset\ Forge\ 2.1.0\ Linux\ \(Deluxe\).zip -d /opt/Asset\ Forge`

Desktop Icon

Now we have to get a desktop icon for Asset Forge. You will find a good one within the /opt/Asset Forge/Asset Forge_Data/Resources/ directory.

  1. Find the UnityPlayer.png within the /opt/Asset Forge/Asset Forge_Data/Resources/ directory.
  2. Copy and place the png file inside of /usr/share/pixmaps/.
  3. Rename file in /usr/share/pixmaps/ to "io.assetforge.png".

Here's another command snippet on how to do this:

`sudo cp /opt/Asset\ Forge/Asset\ Forge_Data/Resources/UnityPlayer.png /usr/share/pixmaps/io.assetforge.png`

Desktop Entry

The last step is to create the desktop entry file (.desktop). Follow the snippet below as a template; it should be accurate if you decided to follow these step exactly. If you had anything done differently, make sure to adjust the desktop entry file to those changes.

1. Copy the following text and place inside of text.

```

 [Desktop Entry]
 Version=2.1
 Type=Application
 Name=Asset Forge
 GenericName=Asset Forge 2.1
 Comment=Create 3D models and 2D sprites using building blocks. 

Exec=/opt/Asset\ Forge/Asset\ Forge.x86_64
 Categories=Graphics;
 Icon=io.assetforge.png
 Terminal=false
 StartupNotify=true

```

2. Rename the extension of the text file to a ".desktop" file (the file can be name "io.assetforge.desktop").

3. Move the file to the /usr/share/applications/ directory.

Code snippet to move desktop entry file:

`sudo mv /{DIRECTORY_TO_FILE}/io.assetforge.desktop /usr/share/applications/`

Gnome Users

You may need to restart your computer or desktop environment to get this to work properly. If you are running Gnome, then press the macro alt+f2 and enter "r" to restart Gnome.

Thanks for writing this, I'm sure Linux users will find this very helpful! I've stickied the thread so it's easy to find in the future.

Thanks Kenny! These commands could also be placed inside of a shell script for easy set up.

if you don't have admin rights or want a less complex way to "install"

right click desktop, select create launcher (if your DM doesn't have this option, poke around in setting most modern display managers have this facility)

in the dialog presented (I'm using xfce so exact details might differ)

fill in name, asset forge!

click to the right of command text field, in the file dialogue navigate to where you extracted asset forge and select Asset Forge.x86_64

click the button that says no icon (labelled icon) and select image files on the dropdown to select a file image instead of a system icon, navigate to Asset Forge_Data/Resources/ and select the asset forge png

you can leave working directory, comment and so forth blank

finally click create and you're done.

Would you be willing to provide instructions on this for Gnome? I haven't been able to find anything about this being an option in Gnome. I wrote these instructions thinking it would work on most distros, but if this is a better solution I don't want to pull people away from this.

haven't used gnome in years, since they decided they knew better how my computer should work... so sorry no idea about gnome...

Lol I guess we'll leave this for the KDE users and the Gnome users will have to follow the original post.

oooh there's many more games in town than just KDE and Gnome, both of which suffer from a sense of over importance and bloat !

This also can work by just having you .desktop file pointing to where Asset Forge is. It doesn't really have to be in any special place, just make sure it's executable and you can launch anything with a .desktop file from anywhere.