-
Notifications
You must be signed in to change notification settings - Fork 36
Using FUSEE in Visual Studio Code
❌ Outdated
- Install .NET Core 3.1 (https://dotnet.microsoft.com/download/dotnet-core/3.1)
- Install Visual Studio Code (https://code.visualstudio.com/)
- Install the C# extension for Visul Studio Code (https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp)
dotnet tool install -g Fusee.Tools.CmdLine
dotnet new -i Fusee.Template.dotnet
fusee install
💡 Note: If
fusee install
throws an error about the Blender installation, you can either direct it by using the-i
argument, or you can install the Blender addon manually by using theio_export_fus.zip
in the latest release. If you don't have Blender installed just ignore this error, Fusee will run perfectly fine without it. Blender is just used to create/export 3D-models for the use in Fusee.
dotnet tool install -g Fusee.Tools.CmdLine
set PATH=%PATH%;%USERPROFILE%\.dotnet\tools
dotnet new -i Fusee.Template.dotnet
fusee install
Run these commands every time you log onto a machine.
- Install .NET Core 3.1 (https://dotnet.microsoft.com/download/dotnet-core/3.1)
- Install Visual Studio Code (https://code.visualstudio.com/)
- Install the C# extension for Visul Studio Code (https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp)
dotnet tool install -g Fusee.Tools.CmdLine
On HFU Pcs you in addition have to set PATH=%PATH%;%USERPROFILE%\.dotnet\tools
dotnet tool uninstall -g Fusee.Tools.CmdLine
dotnet tool update -g Fusee.Tools.CmdLine
fusee
and follow the help text.
dotnet new -i Fusee.Template.dotnet
dotnet new -u Fusee.Template.dotnet
mkdir <YourProjectName>
cd <YourProjectName>
dotnet new fusee
code .
dotnet new --update-check
dotnet new --update-apply
Run dotnet add package Fusee.Desktop
in the same directory as the csproj file. You can optionally force it to use a certain version with the --version
switch.
Install Fusee command line tool.
fusee install -b
Alternatively you can download the latest Blender addon directly from our latest release, the file you want is io_export_fus.zip. Install it through the Blender addon dialog.
Install Fusee command line tool.
fusee install -bu
In Visual Studio Code press Ctrl
+Shift
+B
select 'Pack Fusee app as fuz file'. You can find the fuz file in your build directory (usualy 'bin/Debug').
Upload the .fuz file to your webspace and link it with a fusee URI scheme handler e.g.: fusee://mywebspace.com/myfuseeapp.fuz
.
- Using FUSEE
- Tutorials
- Examples
- In-Depth Topics
- Input and Input Devices
- The Rendering Pipeline
- Render Layer
- Camera
- Textures
- FUSEE Exporter Blender Add on
- Assets
- Lighting & Materials
- Serialization and protobuf-net
- ImGui
- Blazor/WebAssembly
- Miscellaneous
- Developing FUSEE