Skip to main content

Installing Playable Plugin

This page outlines step-by-step instructions to be followed when installing Playable Plugin into a new or existing Unity project.

Please use the latest version of Playable Plugin:

Download Playable Plugin

Requirements

Playable Plugin has the following system requirements:

  • Unity Personal or Pro. Supported Versions: 2020.3.16 or higher, 2021.3 LTS.
  • MacOS or Windows
  • .NET 4.7 or later
  • .NET developer pack 4.7

For more information, please review the list of dependencies for Luna.

Installation

We recommend the use of the Unity Package Manager over manual installation in order to avoid issues.

Installing via Package Manager (Unity 2020 or newer)

Warning

Package Manager UI of Unity stores links to external packages using absolute paths. This is un-portable and will break once the project is opened on another developer's machine.

Installing the Playable Plugin in Unity 2020.3 or newer can be done using the Package Manager. To get it installed into a project, please follow the following steps:

  1. Unzip the Playable Plugin release file anywhere you like on your machine
  2. Open the Package Manager by navigating to Window > Package Manager in main Unity menu: set-up-install-luna-window-package-manager
  3. In Package Manager, hit the + button and choose Add package from disk. Now select package.json from scripts folder within luna folder you unzipped Luna to in step 1.

Once finished! Feel free to open Unity editor with your project and jump to initial setup.

Manual Installation

Manual installation

In order to install Luna it is required to amend Packages/manifest.json file pointing Unity to a folder with Luna package manifest, so that Unity can discover and install Luna's editor extension. This can be done by following the below steps:

  1. Make sure Unity editor is shut down for the project
  2. Unzip Luna release file to any folder on your machine
    PRO TIP
    Best is to keep Luna folder somewhere next to your projects, so that you can always reference Luna folder relatively to a project folder.
  3. Open Packages/manifest.json file with any text editor
  4. Add a key "uk.lunalabs.luna" with the value of "file:RELATIVE_PATH_TO_LUNA_FOLDER/scripts/" under "dependencies" (root) key. Please mind the RELATIVE_PATH_TO_LUNA_FOLDER should be relative to Packages folder of your project. Your JSON file should look like the below:

set-up-install-luna-manifest-json

Example

Let's imagine the following preconditions:

  • Your project sits at /Users/john/Work/MyUnityProject
  • You put Luna next to your project, at /Users/john/Work/Luna

This way, your manifest.json reference should contain an entry with file:../../Luna/scripts

You are done! Feel free to open Unity editor with your project and jump to initial setup.