Remote Configuration

Manage your game settings remotely without releasing updates, allowing for dynamic adjustments and feature toggling.

Support

Check if remote configuration is supported to manage game settings without releasing updates.

bridge.remote_config.is_supported()

Load Values

Load configuration settings from the server to dynamically adjust game parameters based on real-time data.

local bridge = require("bridge.bridge")

function init(self)
    local options = {
        yandex = {
            clientFeatures = { -- optional parameter
                { name = "levels", value = "5" }
            }
        }
    }

    bridge.remote_config.get(options, function (_, data)
        -- success
    end, function ()
        -- error
    end)
end

Last updated