back to home
C# Library
Using Jetbrains Rider
Step 1. Create a GitHub token with the read:packages scope here.
Step 2. Go to Tools > NuGet > Show NuGet Sources.
Step 3. On Feeds tab, press on "plus" button on the "New feed" row.
Step 4. In "New feed" window enter the following:
Name: computer graphics course
URL: https://nuget.pkg.github.com/computer-graphics-course/index.json
User: <your github username>
Password: <token from step 1>
Step 5. Switch to Packages tab. Enter SceneFormat into the search field.
Step 6. In the pane to the right install the package by clicking on a button with a plus sign. You can install library updates any time here too.
Step 7. Use code from this snippet to read or write scene format files.
Using dotnet cli
Step 1. Create a GitHub token with the read:packages scope here.
Step 2. Add a nuget source:
dotnet nuget add source "https://nuget.pkg.github.com/computer-graphics-course/index.json" --name "SceneFormat GitHub" --username "<your github username>" --password "<token from step 1>"
Step 3. Install SceneFormat dependency. Check this page for the latest version available.
Step 4. Use code from this snippet to read or write scene format files.