Settings

Project-wide, local, and referenced settings

You can configure and customize Quillscript's behavior through a myriad of settings.

There are 3 methods you can use to set custom settings: Plugin Settings, Script Local Settings, Settings Asset.


Plugin Settings

You can find these settings at:

Edit > Project Settings > Game > Quillscript 

These are project-wide public settings. Here you can customize default settings for the entire project, but it's not recommended for most cases, since its public nature, they are stored in .ini config files and are open for editing. This method should be avoided unless this is the desired behavior.


Script Local Settings

You can find these settings in your Script Asset:

These are local settings for the given Script Asset only and do not contain all available settings, but only those related to Script play.

They have precedence over any other project settings and are enforced when in contradiction with settings from other sources. This should be used when the given script runs on different settings from the rest of the project.


Settings Asset

This is the preferable method to create project-wide settings because it's protected from user editing. It is also more versatile, since you can have multiple assets with different setups and easily change between them during runtime.

You can create this asset using Quillscript's content browser menu:

It contains the same settings in Plugin Settings, but asset settings take precedence over it.

To set a Settings Asset as the current in-use settings:

Last updated