An easy to use Unity 3D library for creating illustrated Interactive Fiction games and more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3.6 KiB

About FungusLua

[TOC]

FungusLua is a simple way to embed Lua scripting into your Unity project. Lua is an easy to learn scripting language so it's a great way to empower artists, writers and designers to use more of the power of Unity.

At its core, FungusLua allows you to control any Unity object from Lua script. It has useful utilities for using %Fungus flowcharts and dialogs, persisting variables between scene loads, localization, and working with the Unity Test Tools.

We made FungusLua in response to requests from the %Fungus community for a way to script %Fungus commands from a text file or spreadsheet. We figured that if people are going to be writing commands in text files, why not go all the way and add a powerful embedded scripting language?

FungusLua comes as part of the %Fungus asset available on the Unity Asset Store.

Platform Compatibility

%Fungus Lua should work on most platforms supported by Unity, however the MoonSharp Lua library we use has known compatibility issues on some platforms.

  • WebGL: The application builds ok, but executing a Lua script causes a runtime exception. The author of MoonSharp is aware of this issue. Note: %Fungus still works fine in WebGL as long as you don't use any FungusLua features.
  • Windows Store (.net scripting backend): Both %Fungus and MoonSharp fail to compile. You can however use the IL2CPP scripting backend instead so we're not planning to fix this.

Tutorial Video

This video shows how to use many of the features available in FungusLua. It's more of a demonstration than a step-by-step tutorial, but hopefully between this video, the docs and the forums you'll have enough to figure it all out :)

@htmlonly

@endhtmlonly

FungusLua without Fungus

FungusLua can easily be used on its own if you don't need the rest of the functionality in %Fungus.

  1. In the project window, move the %Fungus/Thirdparty/FungusLua folder up to the root of the project.
  2. Delete the %Fungus and FungusExamples folders.

The Tools > %Fungus menu will now only show options for creating FungusLua objects. Obviously you won't be able to use %Fungus functions like say(), menu(), etc. anymore, but you can still use LuaEnvironment, LuaBindings, LuaScript to add Lua scripting to your game.

About Lua

Lua is a powerful, fast, lightweight, embeddable scripting language. It is a popular language for game development and supporting user modding. The standard resource for learning Lua is Programming in Lua.

Lua logo

About MoonSharp

MoonSharp is an open source implementation of the Lua scripting language written entirely in C#.

MoonSharp Logo

FungusLua is essentially a set of wrapper components built on top of MoonSharp which make it easier to use Lua scripting directly in the Unity editor. MoonSharp does all the hard work really and is a completely awesome project :)

The MoonSharp tutorials and MoonSharp forum are great resources to learn how MoonSharp works, especially for more advanced usage.