KIND Library
Library assets allow content creators to develop script code which can be shared between multiple assets. A library asset is loaded into a session only once, by the first asset to reference it, and all subsequent assets are given a reference to the same library. This enables a clean form of inter-asset communication, because the library can act as a coordinator for data or messages between the assets. A library is typically made to achieve a particular task- where several independent tasks are desired, separate library assets should be created. This allows assets to use only the script code that they require while being isolated from any unrelated script code.
The simplest way to reference a particular library from an asset script is to use the "script-include-table" tag in that asset's config.txt file. This causes the asset to become dependant on the library, and makes it possible to directly include the library's scripts from the asset's script file(s). The asset may use World.GetLibrary() to get a reference to the library, as demonstrated here.
Contents |
KIND Hierarchy
Parent Classes
Child Classes
Supported Tags
Each Library asset supports the following tags. Each tag is shown here with its default value.
kind "library" always-load-in-global-context 0 controlset NULLKUID tni-library-name "" soundscript
always-load-in-global-context
- Type: bool
- Desc: If true, this library is always loaded to the global script context.
controlset
- Type: KUID
- Desc: Specifies a controlset asset to link to this library.
tni-library-name
- Type: string
- Desc: Specifies a filename for a TrainzNativeInterface plugin DLL associated with this asset.
soundscript
- Type: Soundscript Container
- Desc: Specifies a list of sounds which the library may play from script.
Example Config.txt
Sample config.txt file for a library asset, with the Standard Tags excluded for brevity:
kind "library" script "LibraryScript.gs" class "LibraryClass"
Downloads
Attach sample files here?