C# Exports

Introduction to exports

In Godot, class members can be exported. This means their value gets saved along with the resource (such as the scene) they’re attached to. They will also be available for editing in the property editor. Exporting is done by using the [Export] attribute.

  1. public class ExportExample : Spatial
  2. {
  3. [Export]
  4. private int Number = 5;
  5. }

In that example the value 5 will be saved, and after building the current project it will be visible in the property editor. This way, artists and game designers can modify values that later influence how the program runs. For this, a special export syntax is provided.

Exporting can only be done with built-in types or objects derived from the Resource class.

Note

Exporting properties can also be done in GDScript, for information on that see GDScript exports.

Basic use

Exporting can work with and without setting a default value. For int and float 0 will then be used as the default.

  1. [Export]
  2. private int Number;

Export works with resource types.

  1. [Export]
  2. private Texture CharacterFace;
  3. [Export]
  4. private PackedScene SceneFile;

There are many resource types that can be used this way, try e.g. the following to list them:

  1. [Export]
  2. private Resource Resource;

Strings as paths

Property hints can be used to export strings as paths

String as a path to a file.

  1. [Export(PropertyHint.File)]
  2. private string GameFile;

String as a path to a directory.

  1. [Export(PropertyHint.Dir)]
  2. private string GameDirectory;

String as a path to a file, custom filter provided as hint.

  1. [Export(PropertyHint.File, "*.txt,")]
  2. private string GameFile;

Using paths in the global filesystem is also possible, but only in scripts in tool mode.

String as a path to a PNG file in the global filesystem.

  1. [Export(PropertyHint.GlobalFile, "*.png")]
  2. private string ToolImage;

String as a path to a directory in the global filesystem.

  1. [Export(PropertyHint.GlobalDir)]
  2. private string ToolDir;

The multiline annotation tells the editor to show a large input field for editing over multiple lines.

  1. [Export(PropertyHint.MultilineText)]
  2. private string Text;

Limiting editor input ranges

Using the range property hint allows you to limit what can be input as a value using the editor.

Allow integer values from 0 to 20.

  1. [Export(PropertyHint.Range, "0,20,")]
  2. private int Number;

Allow integer values from -10 to 20.

  1. [Export(PropertyHint.Range, "-10,20,")]
  2. private int Number;

Allow floats from -10 to 20 and snap the value to multiples of 0.2.

  1. [Export(PropertyHint.Range, "-10,20,0.2")]
  2. private float Number;

If you add the hints “or_greater” and/or “or_lesser” you can go above or below the limits when adjusting the value by typing it instead of using the slider.

  1. [Export(PropertyHint.Range, "0,100,1,or_greater,or_lesser")]
  2. private int Number;

Allow values ‘y = exp(x)’ where ‘y’ varies between 100 and 1000 while snapping to steps of 20. The editor will present a slider for easily editing the value. This only works with floats.

  1. [Export(PropertyHint.ExpRange, "100,1000,20")]
  2. private float Number;

Floats with easing hint

Display a visual representation of the ‘ease()’ function when editing.

  1. [Export(PropertyHint.ExpEasing)]
  2. private float TransitionSpeed;

Colors

Regular color given as red-green-blue-alpha value.

  1. [Export]
  2. private Color Col;

Color given as red-green-blue value (alpha will always be 1).

  1. [Export(PropertyHint.ColorNoAlpha)]
  2. private Color Col;

Nodes

Nodes can’t be directly exported. Instead you need to export a node path, then use that node path with GetNode().

  1. [Export]
  2. private NodePath MyNodePath;
  3. private Label MyNode;
  4. public override void _Ready()
  5. {
  6. MyNode = GetNode<Label>(MyNodePath);
  7. }

Resources

  1. [Export]
  2. private Resource Resource;

In the Inspector, you can then drag and drop a resource file from the FileSystem dock into the variable slot.

Opening the inspector dropdown may result in an extremely long list of possible classes to create, however. Therefore, if you specify an extension of Resource such as:

  1. [Export]
  2. private AnimationNode Resource;

The drop-down menu will be limited to AnimationNode and all its inherited classes.

It must be noted that even if the script is not being run while in the editor, the exported properties are still editable. This can be used in conjunction with a script in “tool” mode.

Exporting bit flags

Integers used as bit flags can store multiple true/false (boolean) values in one property. By using the Flags property hint, they can be set from the editor.

  1. // Set any of the given flags from the editor.
  2. [Export(PropertyHint.Flags, "Fire,Water,Earth,Wind")]
  3. private int SpellElements = 0;

You must provide a string description for each flag. In this example, Fire has value 1, Water has value 2, Earth has value 4 and Wind corresponds to value 8. Usually, constants should be defined accordingly (e.g. private const int ElementWind = 8 and so on).

Export annotations are also provided for the physics and render layers defined in the project settings.

  1. [Export(PropertyHint.Layers2dPhysics)]
  2. private int Layers2dPhysics;
  3. [Export(PropertyHint.Layers2dRender)]
  4. private int Layers2dRender;
  5. [Export(PropertyHint.Layers3dPhysics)]
  6. private int layers3dPhysics;
  7. [Export(PropertyHint.Layers3dRender)]
  8. private int layers3dRender;

Using bit flags requires some understanding of bitwise operations. If in doubt, use boolean variables instead.

Exporting arrays

Exported arrays should be initialized empty.

  1. [Export]
  2. private Vector3[] Vector3s = new Vector3[0];
  3. [Export]
  4. private String[] String = new String[0];

You can omit the default value, but then it would be null if not assigned.

  1. [Export]
  2. private int[] Numbers;

Arrays with specified types which inherit from resource can be set by drag-and-dropping multiple files from the FileSystem dock.

  1. [Export]
  2. private Texture[] Textures;
  3. [Export]
  4. private PackedScene[] Scenes;

Arrays where the default value includes run-time values can’t be exported.

  1. private int Number = 1;
  2. private int[] SeveralNumbers = {Number,2,3};

Setting exported variables from a tool script

When changing an exported variable’s value from a script in Tool mode, the value in the inspector won’t be updated automatically. To update it, call property_list_changed_notify() after setting the exported variable’s value.

Advanced exports

Not every type of export can be provided on the level of the language itself to avoid unnecessary design complexity. The following describes some more or less common exporting features which can be implemented with a low-level API.

Before reading further, you should get familiar with the way properties are handled and how they can be customized with _set(), _get(), and _get_property_list() methods as described in Accessing data or logic from an object.

See also

For binding properties using the above methods in C++, see Binding properties using _set/_get/_get_property_list.

Warning

The script must operate in the tool mode so the above methods can work from within the editor.