Skip to content
Christoph Mueller edited this page Mar 24, 2016 · 22 revisions

#Prerequisites

#Get FUSEE There are three different ways to akquire the FUSEE sources: Download, Clone or Fork FUSEE.

##Download FUSEE The easiest way to take a short look at FUSEE. You will not be notified about changes in the FUSEE sources, nor will you be able to receive incremental changes. If a new version of FUSEE turns up, you will need to download, unzip and build the entire FUSEE library from scratch.

  • Browse https://github.com/FUSEEProjectTeam/Fusee
  • Hit the Donload ZIP button
  • Uncompress the downloaded ZIP file with some decent unzipper (e.g. 7zip). The built-in Windows decompressor will not work as it marks the deflated dll files contained within the ZIP file as unsafe. As a result the Web build will not work.

##Clone FUSEE The recommended way if you want to create your own projects on top of FUSEE. This way you will be able to synchronize your local copy to the latest changes on GitHub. Changes will be delivered incrementally to your local machine by using the Sync button in GitHub Desktop.

  • Open Chrome or Firefox (Edge will not work). Login with your GitHub account and browse to https://github.com/FUSEEProjectTeam/Fusee.
  • Open the GitHub Desktop application.
  • From your browser's URL-Address line, drag the small greenish icon with the lock symbol next to the URL to the empty GitHub Desktop Window. Drag-From area in Chrome Drag-From area in Firefox
  • The GitHub Desktop window will show a message like "Drop to clone FUSEE". Drop it!
  • Specify a local directory on your hard disk where FUSEE will be installed.

##Fork FUSEE Alternative for ADVANCED Users: If you are planning to edit the FUSEE source code or contribute to the FUSEE engine (and not only try using it) consider to [fork] (https://help.github.com/articles/fork-a-repo/) the repository.


Whichever way you chose to get the FUSEE sources, after getting them you must create a system variable named FuseeRoot and set it to the directory chosen above with a trailing Backslash.

Create a system variable FuseeRoot

#Build FUSEE

  • Identify your local FUSEE installation directory. Will be called [FuseeRoot] from now on.

  • Open [FuseeRoot]\src\Fusee.Engine.Simple.sln in Visual Studio (e.g. by double-clicking it).

  • Set the following Configuration to be "Active":

    • Active Solution Configuration: "Debug"
    • Active Solution Platform: "x86"
    • Startup Project: "Fusee.Engine.Examples.Simple.Desktop" Visual Studio Active Settings
  • Build the solution (Menu: Build -> Build Solution) or directly start the Example (Start button). FUSEE and the Simple Desktop application will build and run.

    Fusee Simple Desktop Screenshot

  • You may also want to try building the Simple Example for Web and for Android

##Web

  • Select the Startup Project to be "Fusee.Engine.Examples.Simple.Web"
  • Build the solution (Menu: Build -> Build Solution) or directly start the Example (Start button). FUSEE and the simple example will be built as a web application and started in your default browser (Chrome works best).

Fusee Simple Web Screenshot

##Android

  • Connect an appropriate Android Device (Android 4.4 or higher, OpenGL ES 2.0 or higher) or configure a local Android emulator with the appropriate capabilities.
  • Select the Startup Project to be "Fusee.Engine.Examples.Simple.Android"
  • Build the solution (Menu: Build -> Build Solution) or directly start the Example Fusee Simple Android Screenshot
  • Select the Android device (or emulator) to start using the options given under the Start button. FUSEE and the simple example will be built for Android and started on the specified device.

Fusee Simple Android Screenshot

Clone this wiki locally