Skip to content

joshrickert/ink-unity-integration

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

ink-Unity integration

This Unity package allows you to integrate inkle's ink narrative scripting language with Unity, and provides tools to help quickly test your stories in-editor.

Features:

  • Running ink in game: Allows usage of JSON-compiled ink files in Unity via the included ink-engine.dll.

  • Auto Compilation: Instantly creates and updates a JSON story file when a .ink is updated. Errors in your .ink script are displayed as errors in Unity's own console.

  • Ink Player: Provides a powerful player window for playing and debugging stories.

  • Inspector tools: Provides an icon for ink files, and a custom inspector that provides information about a file.

Getting started

  • Download the latest Unity package release, and add to your Unity project.
  • Select one of the sample .ink stories included in the package. In Unity's Inspector window, you should see a Play button. Click it to open the ink player window, useful for playing (previewing) ink stories.

For more information on ink, see the documentation in the main ink repo. For convenience, the package also creates an (Ink > Help) menu option.

To keep up to date with the latest news about ink sign up for the mailing list.

Customisation

This package has been designed to be modular. You can delete many of the folders to remove functionality without causing errors.

You should never delete the DLL folder (although you may delete the windows/mac dlls if you are sure no team members are on a certain platform)

Using ink in game your game.

The ink player is the core feature of this package; the minimal requirements to actually run a compiled JSON story file is the ink-engine.dll library.

Ink Player

The Ink Player (Ink > Player Window) allows you to play stories in an editor window, and provides functionality to edit variables on the fly, save and load states, and divert.

To play a story, drag in a compiled ink story TextAsset.

Automatic compilation

Ink files must be compiled to JSON before they can be used in-game.

This package provides tools to automate this process when a .ink file is edited.

Disabling auto-compilation: You might want to have manual control over ink compilation. If this is the case, you can safely delete the InkPostProcessor class.

Manual compilation: If you have disabled auto-compilation, you can manually compile ink using the Ink > Compile All menu item, via the inspector of an ink file, or using the functions in the InkCompiler class.

Inspector Tools

This package also replaces the icon for ink files to make them easier to spot, and populates the inspector for a selected ink file.

The Inspector: To replace the inspector for ink files, we've created a system that allows you to provide a custom inspector for any file. If this conflicts with existing behaviour in your project, you can delete the Ink Inspector folder altogether.

Updating Ink manually

The ink git repo is updated far more frequently than this asset store package.

If you're interested in keeping up-to-date with cutting edge features, you can download the latest releases from the GitHub repo.

FAQ

  • Is the Linux Unity Editor supported?

    We haven't implemented it, although it should be easy enough by running inklecate.exe with mono. Take a look at InkCompiler.cs if you want to add it.

  • What happened to Newtonsoft.Json.Net? Do I still need my API compatibility set to .NET 2.0?

    We removed our dependency on Newtonsoft.Json.Net, so you can keep (or revert) your API compatibility to .NET 2.0 Subset, if you're upgrading your ink Unity integration plugin.

License

ink and this package is released under the MIT license. Although we don't require attribution, we'd love to know if you decide to use ink a project! Let us know on Twitter or by email.

Newtonsoft's Json.NET is included, and also has the MIT License.

The MIT License (MIT)

Copyright (c) 2016 inkle Ltd.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Unity integration for the open source ink narrative scripting language.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%