Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you are new to Unity, we recommend exploring some of Unity's interactive tutorials to familiarise yourself with the Unity interface and concepts before continuing. More information on Unity can be found at their Learn Site.

Pages within this section

Child pages (Children Display)
alltrue
styleh3

Project Setup

Package Import

It is recommended that you first import the camera package into a new Unity project, this helps eliminate potential issues during installation. To import the camera package from within the Unity Editor go to Assets > Import Package > Custom Package and open the file with the ‘.unitypackage’ extension, included in the zip folder.

Input Settings

The Igloo camera package requires some custom Input settings to be compatible with an Xbox controller. This can be done one of two ways;

...

Code Block
languagejson
{ "scopedRegistries": 
  [
    { 
      "name": "Unity NuGet", 
      "url": "https://unitynuget-registry.azurewebsites.net", 
      "scopes": [ "org.nuget" ] 
    } 
  ], 
  "dependencies": 
  { 
    "org.nuget.system.memory": "4.5.3",    

Universal Rendering Pipeline (Toolkit Version 1.0 - 1.21)

If using URP a custom scripting define IGLOO_URP must be added to your player settings.

...

Universal Rendering Pipeline (Toolkit Version 1.21-1+)

When using URP in the later toolkit version, it is not necessary to add scripting defines. This is handled automatically by the Igloo Assembly Reference within the Toolkit’s root folder. More information regarding this file, and what it means for extending the Igloo Toolkit can be found HERE.

...