# Accessing via Blueprint

{% hint style="success" %}
verified: 2025-11-20 version: v39
{% endhint %}

## Getting data for a property

Live config settings can be retrieved in blueprint via the `Get Live Config Value` nodes. For convenience, it is recommended to use the typed variants as this automatically casts the setting value to the appropriate type.

<figure><img src="https://1456550285-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FoWTlPaoHd1McSakqMigu%2Fuploads%2Fgit-blob-da90bdfe4e9f9ec476f088e9f7202363cf5cc2b1%2Fimage.png?alt=media" alt=""><figcaption></figcaption></figure>

To retrieve a setting you must specify the `Config Type`, which dictates the Live Config category your setting falls under, and the `Attribute Name`, which is a `.`-delimited string path to your Live Config value. For instance, the following node:

<figure><img src="https://1456550285-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FoWTlPaoHd1McSakqMigu%2Fuploads%2Fgit-blob-e6292967bfe60664d406f9cb32ec2c3eadb0a8ae%2Fimage.png?alt=media" alt=""><figcaption></figcaption></figure>

queries the following value from the `game.json` config.

```
{
    "Activities": 
    {
        "MaxActivitiesPerPlayer": 5
    }
}
```

You must also specify a `Value on Failure` on your query, which is a value the node will fallback to if the config setting could not be queried (this can happen if you have a mismatched type, an incorrect config/attribute name, or if the setting has been deprecated altogether).

## Listening to property updates

To handle live config values live-updating, the recommended way to listen in-game is by using the `ListenToLiveConfigUpdates` helper function. This triggers the `ConfigUpdatedDelegate` once LiveConfig is ready, or triggers automatically if LiveConfig is already ready, and then also triggers for subsequent updates. You can use this to therefore initialize and update any state that depends on live config values.

By default this node will listen to live config updates from any config type. If you want to only listen to updates for a particular type (e.g. if you know you only care about `Game` config values), you can specify this in the `ConfigToListenTo` field.

<figure><img src="https://1456550285-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FoWTlPaoHd1McSakqMigu%2Fuploads%2Fgit-blob-450d406afa570c97ed933e26f2cfd22c9eeb0ad0%2Fimage.png?alt=media" alt=""><figcaption></figcaption></figure>
